You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/models.d.ts
+96-4Lines changed: 96 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -487,6 +487,14 @@ export namespace Models {
487
487
* Is attribute an array?
488
488
*/
489
489
array?: boolean;
490
+
/**
491
+
* Attribute creation date in ISO 8601 format.
492
+
*/
493
+
$createdAt: string;
494
+
/**
495
+
* Attribute update date in ISO 8601 format.
496
+
*/
497
+
$updatedAt: string;
490
498
/**
491
499
* Attribute size.
492
500
*/
@@ -524,6 +532,14 @@ export namespace Models {
524
532
* Is attribute an array?
525
533
*/
526
534
array?: boolean;
535
+
/**
536
+
* Attribute creation date in ISO 8601 format.
537
+
*/
538
+
$createdAt: string;
539
+
/**
540
+
* Attribute update date in ISO 8601 format.
541
+
*/
542
+
$updatedAt: string;
527
543
/**
528
544
* Minimum value to enforce for new documents.
529
545
*/
@@ -565,6 +581,14 @@ export namespace Models {
565
581
* Is attribute an array?
566
582
*/
567
583
array?: boolean;
584
+
/**
585
+
* Attribute creation date in ISO 8601 format.
586
+
*/
587
+
$createdAt: string;
588
+
/**
589
+
* Attribute update date in ISO 8601 format.
590
+
*/
591
+
$updatedAt: string;
568
592
/**
569
593
* Minimum value to enforce for new documents.
570
594
*/
@@ -606,6 +630,14 @@ export namespace Models {
606
630
* Is attribute an array?
607
631
*/
608
632
array?: boolean;
633
+
/**
634
+
* Attribute creation date in ISO 8601 format.
635
+
*/
636
+
$createdAt: string;
637
+
/**
638
+
* Attribute update date in ISO 8601 format.
639
+
*/
640
+
$updatedAt: string;
609
641
/**
610
642
* Default value for attribute when not provided. Cannot be set when attribute is required.
611
643
*/
@@ -639,6 +671,14 @@ export namespace Models {
639
671
* Is attribute an array?
640
672
*/
641
673
array?: boolean;
674
+
/**
675
+
* Attribute creation date in ISO 8601 format.
676
+
*/
677
+
$createdAt: string;
678
+
/**
679
+
* Attribute update date in ISO 8601 format.
680
+
*/
681
+
$updatedAt: string;
642
682
/**
643
683
* String format.
644
684
*/
@@ -676,6 +716,14 @@ export namespace Models {
676
716
* Is attribute an array?
677
717
*/
678
718
array?: boolean;
719
+
/**
720
+
* Attribute creation date in ISO 8601 format.
721
+
*/
722
+
$createdAt: string;
723
+
/**
724
+
* Attribute update date in ISO 8601 format.
725
+
*/
726
+
$updatedAt: string;
679
727
/**
680
728
* Array of elements in enumerated type.
681
729
*/
@@ -717,6 +765,14 @@ export namespace Models {
717
765
* Is attribute an array?
718
766
*/
719
767
array?: boolean;
768
+
/**
769
+
* Attribute creation date in ISO 8601 format.
770
+
*/
771
+
$createdAt: string;
772
+
/**
773
+
* Attribute update date in ISO 8601 format.
774
+
*/
775
+
$updatedAt: string;
720
776
/**
721
777
* String format.
722
778
*/
@@ -754,6 +810,14 @@ export namespace Models {
754
810
* Is attribute an array?
755
811
*/
756
812
array?: boolean;
813
+
/**
814
+
* Attribute creation date in ISO 8601 format.
815
+
*/
816
+
$createdAt: string;
817
+
/**
818
+
* Attribute update date in ISO 8601 format.
819
+
*/
820
+
$updatedAt: string;
757
821
/**
758
822
* String format.
759
823
*/
@@ -791,6 +855,14 @@ export namespace Models {
791
855
* Is attribute an array?
792
856
*/
793
857
array?: boolean;
858
+
/**
859
+
* Attribute creation date in ISO 8601 format.
860
+
*/
861
+
$createdAt: string;
862
+
/**
863
+
* Attribute update date in ISO 8601 format.
864
+
*/
865
+
$updatedAt: string;
794
866
/**
795
867
* ISO 8601 format.
796
868
*/
@@ -828,6 +900,14 @@ export namespace Models {
828
900
* Is attribute an array?
829
901
*/
830
902
array?: boolean;
903
+
/**
904
+
* Attribute creation date in ISO 8601 format.
905
+
*/
906
+
$createdAt: string;
907
+
/**
908
+
* Attribute update date in ISO 8601 format.
909
+
*/
910
+
$updatedAt: string;
831
911
/**
832
912
* The ID of the related collection.
833
913
*/
@@ -881,6 +961,14 @@ export namespace Models {
881
961
* Index orders.
882
962
*/
883
963
orders?: string[];
964
+
/**
965
+
* Index creation date in ISO 8601 format.
966
+
*/
967
+
$createdAt: string;
968
+
/**
969
+
* Index update date in ISO 8601 format.
970
+
*/
971
+
$updatedAt: string;
884
972
}
885
973
/**
886
974
* Document
@@ -1591,11 +1679,11 @@ export namespace Models {
1591
1679
*/
1592
1680
userId: string;
1593
1681
/**
1594
-
* User name.
1682
+
* User name. Hide this attribute by toggling membership privacy in the Console.
1595
1683
*/
1596
1684
userName: string;
1597
1685
/**
1598
-
* User email address.
1686
+
* User email address. Hide this attribute by toggling membership privacy in the Console.
1599
1687
*/
1600
1688
userEmail: string;
1601
1689
/**
@@ -1619,7 +1707,7 @@ export namespace Models {
1619
1707
*/
1620
1708
confirm: boolean;
1621
1709
/**
1622
-
* Multi factor authentication status, true if the user has MFA enabled or false otherwise.
1710
+
* Multi factor authentication status, true if the user has MFA enabled or false otherwise. Hide this attribute by toggling membership privacy in the Console.
0 commit comments