@meshery/schemas 1.3.26 → 1.3.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cloudApi.d.mts +21 -21
- package/dist/cloudApi.d.ts +21 -21
- package/dist/constructs/v1beta3/academy/Academy.d.ts +27 -27
- package/dist/constructs/v1beta3/academy/AcademySchema.js +1 -1
- package/dist/constructs/v1beta3/academy/AcademySchema.mjs +1 -1
- package/dist/constructs/v1beta3/invitation/Invitation.d.ts +63 -63
- package/dist/constructs/v1beta3/invitation/InvitationSchema.js +1 -1
- package/dist/constructs/v1beta3/invitation/InvitationSchema.mjs +1 -1
- package/package.json +1 -1
|
@@ -167,12 +167,12 @@ export interface components {
|
|
|
167
167
|
* Format: uuid
|
|
168
168
|
* @description Unique identifier for the invitation, also used as the invitation code.
|
|
169
169
|
*/
|
|
170
|
-
id: string;
|
|
170
|
+
readonly id: string;
|
|
171
171
|
/**
|
|
172
172
|
* Format: uuid
|
|
173
173
|
* @description ID of the user who created the invitation. Tracks who created the invitation for auditing purposes.
|
|
174
174
|
*/
|
|
175
|
-
owner: string;
|
|
175
|
+
readonly owner: string;
|
|
176
176
|
/** @description Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain. An organization can only have one default invitation. */
|
|
177
177
|
isDefault?: boolean;
|
|
178
178
|
/** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
|
|
@@ -180,21 +180,21 @@ export interface components {
|
|
|
180
180
|
/** @description Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
|
|
181
181
|
description: string;
|
|
182
182
|
/** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
|
|
183
|
-
emails: string[];
|
|
183
|
+
emails: string[] | null;
|
|
184
184
|
/**
|
|
185
185
|
* Format: uuid
|
|
186
186
|
* @description ID of the organization to which the user is invited.
|
|
187
187
|
*/
|
|
188
|
-
orgId: string;
|
|
188
|
+
readonly orgId: string;
|
|
189
189
|
/**
|
|
190
190
|
* Format: date-time
|
|
191
191
|
* @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
|
|
192
192
|
*/
|
|
193
|
-
expiresAt?: string;
|
|
193
|
+
expiresAt?: string | null;
|
|
194
194
|
/** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
|
|
195
195
|
quota?: number;
|
|
196
196
|
/** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
|
|
197
|
-
acceptedBy: string[];
|
|
197
|
+
readonly acceptedBy: string[];
|
|
198
198
|
/** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
|
|
199
199
|
roles: string[];
|
|
200
200
|
/** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
|
|
@@ -208,17 +208,17 @@ export interface components {
|
|
|
208
208
|
* Format: date-time
|
|
209
209
|
* @description Timestamp when the invitation was created.
|
|
210
210
|
*/
|
|
211
|
-
createdAt: string;
|
|
211
|
+
readonly createdAt: string;
|
|
212
212
|
/**
|
|
213
213
|
* Format: date-time
|
|
214
214
|
* @description Timestamp when the invitation was last updated.
|
|
215
215
|
*/
|
|
216
|
-
updatedAt: string;
|
|
216
|
+
readonly updatedAt: string;
|
|
217
217
|
/**
|
|
218
218
|
* Format: date-time
|
|
219
219
|
* @description Timestamp when the invitation was deleted, if applicable.
|
|
220
220
|
*/
|
|
221
|
-
deletedAt: string;
|
|
221
|
+
readonly deletedAt: string | null;
|
|
222
222
|
}[];
|
|
223
223
|
};
|
|
224
224
|
/** @description A signup request submitted for organization access. */
|
|
@@ -433,12 +433,12 @@ export interface components {
|
|
|
433
433
|
* Format: uuid
|
|
434
434
|
* @description Unique identifier for the invitation, also used as the invitation code.
|
|
435
435
|
*/
|
|
436
|
-
id: string;
|
|
436
|
+
readonly id: string;
|
|
437
437
|
/**
|
|
438
438
|
* Format: uuid
|
|
439
439
|
* @description ID of the user who created the invitation. Tracks who created the invitation for auditing purposes.
|
|
440
440
|
*/
|
|
441
|
-
owner: string;
|
|
441
|
+
readonly owner: string;
|
|
442
442
|
/** @description Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain. An organization can only have one default invitation. */
|
|
443
443
|
isDefault?: boolean;
|
|
444
444
|
/** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
|
|
@@ -446,21 +446,21 @@ export interface components {
|
|
|
446
446
|
/** @description Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
|
|
447
447
|
description: string;
|
|
448
448
|
/** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
|
|
449
|
-
emails: string[];
|
|
449
|
+
emails: string[] | null;
|
|
450
450
|
/**
|
|
451
451
|
* Format: uuid
|
|
452
452
|
* @description ID of the organization to which the user is invited.
|
|
453
453
|
*/
|
|
454
|
-
orgId: string;
|
|
454
|
+
readonly orgId: string;
|
|
455
455
|
/**
|
|
456
456
|
* Format: date-time
|
|
457
457
|
* @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
|
|
458
458
|
*/
|
|
459
|
-
expiresAt?: string;
|
|
459
|
+
expiresAt?: string | null;
|
|
460
460
|
/** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
|
|
461
461
|
quota?: number;
|
|
462
462
|
/** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
|
|
463
|
-
acceptedBy: string[];
|
|
463
|
+
readonly acceptedBy: string[];
|
|
464
464
|
/** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
|
|
465
465
|
roles: string[];
|
|
466
466
|
/** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
|
|
@@ -474,17 +474,17 @@ export interface components {
|
|
|
474
474
|
* Format: date-time
|
|
475
475
|
* @description Timestamp when the invitation was created.
|
|
476
476
|
*/
|
|
477
|
-
createdAt: string;
|
|
477
|
+
readonly createdAt: string;
|
|
478
478
|
/**
|
|
479
479
|
* Format: date-time
|
|
480
480
|
* @description Timestamp when the invitation was last updated.
|
|
481
481
|
*/
|
|
482
|
-
updatedAt: string;
|
|
482
|
+
readonly updatedAt: string;
|
|
483
483
|
/**
|
|
484
484
|
* Format: date-time
|
|
485
485
|
* @description Timestamp when the invitation was deleted, if applicable.
|
|
486
486
|
*/
|
|
487
|
-
deletedAt: string;
|
|
487
|
+
readonly deletedAt: string | null;
|
|
488
488
|
};
|
|
489
489
|
};
|
|
490
490
|
responses: {
|
|
@@ -560,12 +560,12 @@ export interface operations {
|
|
|
560
560
|
* Format: uuid
|
|
561
561
|
* @description Unique identifier for the invitation, also used as the invitation code.
|
|
562
562
|
*/
|
|
563
|
-
id: string;
|
|
563
|
+
readonly id: string;
|
|
564
564
|
/**
|
|
565
565
|
* Format: uuid
|
|
566
566
|
* @description ID of the user who created the invitation. Tracks who created the invitation for auditing purposes.
|
|
567
567
|
*/
|
|
568
|
-
owner: string;
|
|
568
|
+
readonly owner: string;
|
|
569
569
|
/** @description Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain. An organization can only have one default invitation. */
|
|
570
570
|
isDefault?: boolean;
|
|
571
571
|
/** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
|
|
@@ -573,21 +573,21 @@ export interface operations {
|
|
|
573
573
|
/** @description Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
|
|
574
574
|
description: string;
|
|
575
575
|
/** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
|
|
576
|
-
emails: string[];
|
|
576
|
+
emails: string[] | null;
|
|
577
577
|
/**
|
|
578
578
|
* Format: uuid
|
|
579
579
|
* @description ID of the organization to which the user is invited.
|
|
580
580
|
*/
|
|
581
|
-
orgId: string;
|
|
581
|
+
readonly orgId: string;
|
|
582
582
|
/**
|
|
583
583
|
* Format: date-time
|
|
584
584
|
* @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
|
|
585
585
|
*/
|
|
586
|
-
expiresAt?: string;
|
|
586
|
+
expiresAt?: string | null;
|
|
587
587
|
/** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
|
|
588
588
|
quota?: number;
|
|
589
589
|
/** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
|
|
590
|
-
acceptedBy: string[];
|
|
590
|
+
readonly acceptedBy: string[];
|
|
591
591
|
/** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
|
|
592
592
|
roles: string[];
|
|
593
593
|
/** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
|
|
@@ -601,17 +601,17 @@ export interface operations {
|
|
|
601
601
|
* Format: date-time
|
|
602
602
|
* @description Timestamp when the invitation was created.
|
|
603
603
|
*/
|
|
604
|
-
createdAt: string;
|
|
604
|
+
readonly createdAt: string;
|
|
605
605
|
/**
|
|
606
606
|
* Format: date-time
|
|
607
607
|
* @description Timestamp when the invitation was last updated.
|
|
608
608
|
*/
|
|
609
|
-
updatedAt: string;
|
|
609
|
+
readonly updatedAt: string;
|
|
610
610
|
/**
|
|
611
611
|
* Format: date-time
|
|
612
612
|
* @description Timestamp when the invitation was deleted, if applicable.
|
|
613
613
|
*/
|
|
614
|
-
deletedAt: string;
|
|
614
|
+
readonly deletedAt: string | null;
|
|
615
615
|
};
|
|
616
616
|
};
|
|
617
617
|
};
|
|
@@ -720,12 +720,12 @@ export interface operations {
|
|
|
720
720
|
* Format: uuid
|
|
721
721
|
* @description Unique identifier for the invitation, also used as the invitation code.
|
|
722
722
|
*/
|
|
723
|
-
id: string;
|
|
723
|
+
readonly id: string;
|
|
724
724
|
/**
|
|
725
725
|
* Format: uuid
|
|
726
726
|
* @description ID of the user who created the invitation. Tracks who created the invitation for auditing purposes.
|
|
727
727
|
*/
|
|
728
|
-
owner: string;
|
|
728
|
+
readonly owner: string;
|
|
729
729
|
/** @description Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain. An organization can only have one default invitation. */
|
|
730
730
|
isDefault?: boolean;
|
|
731
731
|
/** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
|
|
@@ -733,21 +733,21 @@ export interface operations {
|
|
|
733
733
|
/** @description Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
|
|
734
734
|
description: string;
|
|
735
735
|
/** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
|
|
736
|
-
emails: string[];
|
|
736
|
+
emails: string[] | null;
|
|
737
737
|
/**
|
|
738
738
|
* Format: uuid
|
|
739
739
|
* @description ID of the organization to which the user is invited.
|
|
740
740
|
*/
|
|
741
|
-
orgId: string;
|
|
741
|
+
readonly orgId: string;
|
|
742
742
|
/**
|
|
743
743
|
* Format: date-time
|
|
744
744
|
* @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
|
|
745
745
|
*/
|
|
746
|
-
expiresAt?: string;
|
|
746
|
+
expiresAt?: string | null;
|
|
747
747
|
/** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
|
|
748
748
|
quota?: number;
|
|
749
749
|
/** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
|
|
750
|
-
acceptedBy: string[];
|
|
750
|
+
readonly acceptedBy: string[];
|
|
751
751
|
/** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
|
|
752
752
|
roles: string[];
|
|
753
753
|
/** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
|
|
@@ -761,17 +761,17 @@ export interface operations {
|
|
|
761
761
|
* Format: date-time
|
|
762
762
|
* @description Timestamp when the invitation was created.
|
|
763
763
|
*/
|
|
764
|
-
createdAt: string;
|
|
764
|
+
readonly createdAt: string;
|
|
765
765
|
/**
|
|
766
766
|
* Format: date-time
|
|
767
767
|
* @description Timestamp when the invitation was last updated.
|
|
768
768
|
*/
|
|
769
|
-
updatedAt: string;
|
|
769
|
+
readonly updatedAt: string;
|
|
770
770
|
/**
|
|
771
771
|
* Format: date-time
|
|
772
772
|
* @description Timestamp when the invitation was deleted, if applicable.
|
|
773
773
|
*/
|
|
774
|
-
deletedAt: string;
|
|
774
|
+
readonly deletedAt: string | null;
|
|
775
775
|
};
|
|
776
776
|
};
|
|
777
777
|
};
|
|
@@ -909,12 +909,12 @@ export interface operations {
|
|
|
909
909
|
* Format: uuid
|
|
910
910
|
* @description Unique identifier for the invitation, also used as the invitation code.
|
|
911
911
|
*/
|
|
912
|
-
id: string;
|
|
912
|
+
readonly id: string;
|
|
913
913
|
/**
|
|
914
914
|
* Format: uuid
|
|
915
915
|
* @description ID of the user who created the invitation. Tracks who created the invitation for auditing purposes.
|
|
916
916
|
*/
|
|
917
|
-
owner: string;
|
|
917
|
+
readonly owner: string;
|
|
918
918
|
/** @description Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain. An organization can only have one default invitation. */
|
|
919
919
|
isDefault?: boolean;
|
|
920
920
|
/** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
|
|
@@ -922,21 +922,21 @@ export interface operations {
|
|
|
922
922
|
/** @description Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
|
|
923
923
|
description: string;
|
|
924
924
|
/** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
|
|
925
|
-
emails: string[];
|
|
925
|
+
emails: string[] | null;
|
|
926
926
|
/**
|
|
927
927
|
* Format: uuid
|
|
928
928
|
* @description ID of the organization to which the user is invited.
|
|
929
929
|
*/
|
|
930
|
-
orgId: string;
|
|
930
|
+
readonly orgId: string;
|
|
931
931
|
/**
|
|
932
932
|
* Format: date-time
|
|
933
933
|
* @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
|
|
934
934
|
*/
|
|
935
|
-
expiresAt?: string;
|
|
935
|
+
expiresAt?: string | null;
|
|
936
936
|
/** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
|
|
937
937
|
quota?: number;
|
|
938
938
|
/** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
|
|
939
|
-
acceptedBy: string[];
|
|
939
|
+
readonly acceptedBy: string[];
|
|
940
940
|
/** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
|
|
941
941
|
roles: string[];
|
|
942
942
|
/** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
|
|
@@ -950,17 +950,17 @@ export interface operations {
|
|
|
950
950
|
* Format: date-time
|
|
951
951
|
* @description Timestamp when the invitation was created.
|
|
952
952
|
*/
|
|
953
|
-
createdAt: string;
|
|
953
|
+
readonly createdAt: string;
|
|
954
954
|
/**
|
|
955
955
|
* Format: date-time
|
|
956
956
|
* @description Timestamp when the invitation was last updated.
|
|
957
957
|
*/
|
|
958
|
-
updatedAt: string;
|
|
958
|
+
readonly updatedAt: string;
|
|
959
959
|
/**
|
|
960
960
|
* Format: date-time
|
|
961
961
|
* @description Timestamp when the invitation was deleted, if applicable.
|
|
962
962
|
*/
|
|
963
|
-
deletedAt: string;
|
|
963
|
+
readonly deletedAt: string | null;
|
|
964
964
|
}[];
|
|
965
965
|
};
|
|
966
966
|
};
|
|
@@ -1058,12 +1058,12 @@ export interface operations {
|
|
|
1058
1058
|
* Format: uuid
|
|
1059
1059
|
* @description Unique identifier for the invitation, also used as the invitation code.
|
|
1060
1060
|
*/
|
|
1061
|
-
id: string;
|
|
1061
|
+
readonly id: string;
|
|
1062
1062
|
/**
|
|
1063
1063
|
* Format: uuid
|
|
1064
1064
|
* @description ID of the user who created the invitation. Tracks who created the invitation for auditing purposes.
|
|
1065
1065
|
*/
|
|
1066
|
-
owner: string;
|
|
1066
|
+
readonly owner: string;
|
|
1067
1067
|
/** @description Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain. An organization can only have one default invitation. */
|
|
1068
1068
|
isDefault?: boolean;
|
|
1069
1069
|
/** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
|
|
@@ -1071,21 +1071,21 @@ export interface operations {
|
|
|
1071
1071
|
/** @description Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
|
|
1072
1072
|
description: string;
|
|
1073
1073
|
/** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
|
|
1074
|
-
emails: string[];
|
|
1074
|
+
emails: string[] | null;
|
|
1075
1075
|
/**
|
|
1076
1076
|
* Format: uuid
|
|
1077
1077
|
* @description ID of the organization to which the user is invited.
|
|
1078
1078
|
*/
|
|
1079
|
-
orgId: string;
|
|
1079
|
+
readonly orgId: string;
|
|
1080
1080
|
/**
|
|
1081
1081
|
* Format: date-time
|
|
1082
1082
|
* @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
|
|
1083
1083
|
*/
|
|
1084
|
-
expiresAt?: string;
|
|
1084
|
+
expiresAt?: string | null;
|
|
1085
1085
|
/** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
|
|
1086
1086
|
quota?: number;
|
|
1087
1087
|
/** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
|
|
1088
|
-
acceptedBy: string[];
|
|
1088
|
+
readonly acceptedBy: string[];
|
|
1089
1089
|
/** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
|
|
1090
1090
|
roles: string[];
|
|
1091
1091
|
/** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
|
|
@@ -1099,17 +1099,17 @@ export interface operations {
|
|
|
1099
1099
|
* Format: date-time
|
|
1100
1100
|
* @description Timestamp when the invitation was created.
|
|
1101
1101
|
*/
|
|
1102
|
-
createdAt: string;
|
|
1102
|
+
readonly createdAt: string;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* Format: date-time
|
|
1105
1105
|
* @description Timestamp when the invitation was last updated.
|
|
1106
1106
|
*/
|
|
1107
|
-
updatedAt: string;
|
|
1107
|
+
readonly updatedAt: string;
|
|
1108
1108
|
/**
|
|
1109
1109
|
* Format: date-time
|
|
1110
1110
|
* @description Timestamp when the invitation was deleted, if applicable.
|
|
1111
1111
|
*/
|
|
1112
|
-
deletedAt: string;
|
|
1112
|
+
readonly deletedAt: string | null;
|
|
1113
1113
|
};
|
|
1114
1114
|
};
|
|
1115
1115
|
};
|
|
@@ -1165,12 +1165,12 @@ export interface operations {
|
|
|
1165
1165
|
* Format: uuid
|
|
1166
1166
|
* @description Unique identifier for the invitation, also used as the invitation code.
|
|
1167
1167
|
*/
|
|
1168
|
-
id: string;
|
|
1168
|
+
readonly id: string;
|
|
1169
1169
|
/**
|
|
1170
1170
|
* Format: uuid
|
|
1171
1171
|
* @description ID of the user who created the invitation. Tracks who created the invitation for auditing purposes.
|
|
1172
1172
|
*/
|
|
1173
|
-
owner: string;
|
|
1173
|
+
readonly owner: string;
|
|
1174
1174
|
/** @description Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain. An organization can only have one default invitation. */
|
|
1175
1175
|
isDefault?: boolean;
|
|
1176
1176
|
/** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
|
|
@@ -1178,21 +1178,21 @@ export interface operations {
|
|
|
1178
1178
|
/** @description Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
|
|
1179
1179
|
description: string;
|
|
1180
1180
|
/** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
|
|
1181
|
-
emails: string[];
|
|
1181
|
+
emails: string[] | null;
|
|
1182
1182
|
/**
|
|
1183
1183
|
* Format: uuid
|
|
1184
1184
|
* @description ID of the organization to which the user is invited.
|
|
1185
1185
|
*/
|
|
1186
|
-
orgId: string;
|
|
1186
|
+
readonly orgId: string;
|
|
1187
1187
|
/**
|
|
1188
1188
|
* Format: date-time
|
|
1189
1189
|
* @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
|
|
1190
1190
|
*/
|
|
1191
|
-
expiresAt?: string;
|
|
1191
|
+
expiresAt?: string | null;
|
|
1192
1192
|
/** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
|
|
1193
1193
|
quota?: number;
|
|
1194
1194
|
/** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
|
|
1195
|
-
acceptedBy: string[];
|
|
1195
|
+
readonly acceptedBy: string[];
|
|
1196
1196
|
/** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
|
|
1197
1197
|
roles: string[];
|
|
1198
1198
|
/** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
|
|
@@ -1206,17 +1206,17 @@ export interface operations {
|
|
|
1206
1206
|
* Format: date-time
|
|
1207
1207
|
* @description Timestamp when the invitation was created.
|
|
1208
1208
|
*/
|
|
1209
|
-
createdAt: string;
|
|
1209
|
+
readonly createdAt: string;
|
|
1210
1210
|
/**
|
|
1211
1211
|
* Format: date-time
|
|
1212
1212
|
* @description Timestamp when the invitation was last updated.
|
|
1213
1213
|
*/
|
|
1214
|
-
updatedAt: string;
|
|
1214
|
+
readonly updatedAt: string;
|
|
1215
1215
|
/**
|
|
1216
1216
|
* Format: date-time
|
|
1217
1217
|
* @description Timestamp when the invitation was deleted, if applicable.
|
|
1218
1218
|
*/
|
|
1219
|
-
deletedAt: string;
|
|
1219
|
+
readonly deletedAt: string | null;
|
|
1220
1220
|
};
|
|
1221
1221
|
};
|
|
1222
1222
|
};
|