@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.
@@ -4382,11 +4382,11 @@ type UpdateAcademyCurriculaByIdApiResponse = /** status 200 updated the curricul
4382
4382
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
4383
4383
  description: string;
4384
4384
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
4385
- emails: string[];
4385
+ emails: string[] | null;
4386
4386
  /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
4387
4387
  orgId: string;
4388
4388
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
4389
- expiresAt?: string;
4389
+ expiresAt?: string | null;
4390
4390
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
4391
4391
  quota?: number;
4392
4392
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -4402,7 +4402,7 @@ type UpdateAcademyCurriculaByIdApiResponse = /** status 200 updated the curricul
4402
4402
  /** Timestamp when the invitation was last updated. */
4403
4403
  updatedAt: string;
4404
4404
  /** Timestamp when the invitation was deleted, if applicable. */
4405
- deletedAt: string;
4405
+ deletedAt: string | null;
4406
4406
  };
4407
4407
  };
4408
4408
  type UpdateAcademyCurriculaByIdApiArg = {
@@ -4597,11 +4597,11 @@ type GetAcademyCurriculaByIdApiResponse = /** status 200 A single curricula */ {
4597
4597
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
4598
4598
  description: string;
4599
4599
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
4600
- emails: string[];
4600
+ emails: string[] | null;
4601
4601
  /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
4602
4602
  orgId: string;
4603
4603
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
4604
- expiresAt?: string;
4604
+ expiresAt?: string | null;
4605
4605
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
4606
4606
  quota?: number;
4607
4607
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -4617,7 +4617,7 @@ type GetAcademyCurriculaByIdApiResponse = /** status 200 A single curricula */ {
4617
4617
  /** Timestamp when the invitation was last updated. */
4618
4618
  updatedAt: string;
4619
4619
  /** Timestamp when the invitation was deleted, if applicable. */
4620
- deletedAt: string;
4620
+ deletedAt: string | null;
4621
4621
  };
4622
4622
  };
4623
4623
  type GetAcademyCurriculaByIdApiArg = {
@@ -10073,11 +10073,11 @@ type GetInvitationApiResponse = {
10073
10073
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10074
10074
  description: string;
10075
10075
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10076
- emails: string[];
10076
+ emails: string[] | null;
10077
10077
  /** ID of the organization to which the user is invited. */
10078
10078
  orgId: string;
10079
10079
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10080
- expiresAt?: string;
10080
+ expiresAt?: string | null;
10081
10081
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10082
10082
  quota?: number;
10083
10083
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10093,7 +10093,7 @@ type GetInvitationApiResponse = {
10093
10093
  /** Timestamp when the invitation was last updated. */
10094
10094
  updatedAt: string;
10095
10095
  /** Timestamp when the invitation was deleted, if applicable. */
10096
- deletedAt: string;
10096
+ deletedAt: string | null;
10097
10097
  };
10098
10098
  type GetInvitationApiArg = {
10099
10099
  /** The ID of the invitation. */
@@ -10116,11 +10116,11 @@ type UpdateInvitationApiResponse = {
10116
10116
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10117
10117
  description: string;
10118
10118
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10119
- emails: string[];
10119
+ emails: string[] | null;
10120
10120
  /** ID of the organization to which the user is invited. */
10121
10121
  orgId: string;
10122
10122
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10123
- expiresAt?: string;
10123
+ expiresAt?: string | null;
10124
10124
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10125
10125
  quota?: number;
10126
10126
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10136,7 +10136,7 @@ type UpdateInvitationApiResponse = {
10136
10136
  /** Timestamp when the invitation was last updated. */
10137
10137
  updatedAt: string;
10138
10138
  /** Timestamp when the invitation was deleted, if applicable. */
10139
- deletedAt: string;
10139
+ deletedAt: string | null;
10140
10140
  };
10141
10141
  type UpdateInvitationApiArg = {
10142
10142
  /** The ID of the invitation. */
@@ -10188,11 +10188,11 @@ type GetInvitationsApiResponse = {
10188
10188
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10189
10189
  description: string;
10190
10190
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10191
- emails: string[];
10191
+ emails: string[] | null;
10192
10192
  /** ID of the organization to which the user is invited. */
10193
10193
  orgId: string;
10194
10194
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10195
- expiresAt?: string;
10195
+ expiresAt?: string | null;
10196
10196
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10197
10197
  quota?: number;
10198
10198
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10208,7 +10208,7 @@ type GetInvitationsApiResponse = {
10208
10208
  /** Timestamp when the invitation was last updated. */
10209
10209
  updatedAt: string;
10210
10210
  /** Timestamp when the invitation was deleted, if applicable. */
10211
- deletedAt: string;
10211
+ deletedAt: string | null;
10212
10212
  }[];
10213
10213
  };
10214
10214
  type GetInvitationsApiArg = {
@@ -10235,11 +10235,11 @@ type CreateInvitationApiResponse = {
10235
10235
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10236
10236
  description: string;
10237
10237
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10238
- emails: string[];
10238
+ emails: string[] | null;
10239
10239
  /** ID of the organization to which the user is invited. */
10240
10240
  orgId: string;
10241
10241
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10242
- expiresAt?: string;
10242
+ expiresAt?: string | null;
10243
10243
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10244
10244
  quota?: number;
10245
10245
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10255,7 +10255,7 @@ type CreateInvitationApiResponse = {
10255
10255
  /** Timestamp when the invitation was last updated. */
10256
10256
  updatedAt: string;
10257
10257
  /** Timestamp when the invitation was deleted, if applicable. */
10258
- deletedAt: string;
10258
+ deletedAt: string | null;
10259
10259
  };
10260
10260
  type CreateInvitationApiArg = {
10261
10261
  body: {
@@ -10297,11 +10297,11 @@ type AcceptInvitationApiResponse = {
10297
10297
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10298
10298
  description: string;
10299
10299
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10300
- emails: string[];
10300
+ emails: string[] | null;
10301
10301
  /** ID of the organization to which the user is invited. */
10302
10302
  orgId: string;
10303
10303
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10304
- expiresAt?: string;
10304
+ expiresAt?: string | null;
10305
10305
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10306
10306
  quota?: number;
10307
10307
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10317,7 +10317,7 @@ type AcceptInvitationApiResponse = {
10317
10317
  /** Timestamp when the invitation was last updated. */
10318
10318
  updatedAt: string;
10319
10319
  /** Timestamp when the invitation was deleted, if applicable. */
10320
- deletedAt: string;
10320
+ deletedAt: string | null;
10321
10321
  };
10322
10322
  type AcceptInvitationApiArg = {
10323
10323
  /** The ID of the invitation. */
@@ -4382,11 +4382,11 @@ type UpdateAcademyCurriculaByIdApiResponse = /** status 200 updated the curricul
4382
4382
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
4383
4383
  description: string;
4384
4384
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
4385
- emails: string[];
4385
+ emails: string[] | null;
4386
4386
  /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
4387
4387
  orgId: string;
4388
4388
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
4389
- expiresAt?: string;
4389
+ expiresAt?: string | null;
4390
4390
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
4391
4391
  quota?: number;
4392
4392
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -4402,7 +4402,7 @@ type UpdateAcademyCurriculaByIdApiResponse = /** status 200 updated the curricul
4402
4402
  /** Timestamp when the invitation was last updated. */
4403
4403
  updatedAt: string;
4404
4404
  /** Timestamp when the invitation was deleted, if applicable. */
4405
- deletedAt: string;
4405
+ deletedAt: string | null;
4406
4406
  };
4407
4407
  };
4408
4408
  type UpdateAcademyCurriculaByIdApiArg = {
@@ -4597,11 +4597,11 @@ type GetAcademyCurriculaByIdApiResponse = /** status 200 A single curricula */ {
4597
4597
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
4598
4598
  description: string;
4599
4599
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
4600
- emails: string[];
4600
+ emails: string[] | null;
4601
4601
  /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
4602
4602
  orgId: string;
4603
4603
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
4604
- expiresAt?: string;
4604
+ expiresAt?: string | null;
4605
4605
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
4606
4606
  quota?: number;
4607
4607
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -4617,7 +4617,7 @@ type GetAcademyCurriculaByIdApiResponse = /** status 200 A single curricula */ {
4617
4617
  /** Timestamp when the invitation was last updated. */
4618
4618
  updatedAt: string;
4619
4619
  /** Timestamp when the invitation was deleted, if applicable. */
4620
- deletedAt: string;
4620
+ deletedAt: string | null;
4621
4621
  };
4622
4622
  };
4623
4623
  type GetAcademyCurriculaByIdApiArg = {
@@ -10073,11 +10073,11 @@ type GetInvitationApiResponse = {
10073
10073
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10074
10074
  description: string;
10075
10075
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10076
- emails: string[];
10076
+ emails: string[] | null;
10077
10077
  /** ID of the organization to which the user is invited. */
10078
10078
  orgId: string;
10079
10079
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10080
- expiresAt?: string;
10080
+ expiresAt?: string | null;
10081
10081
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10082
10082
  quota?: number;
10083
10083
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10093,7 +10093,7 @@ type GetInvitationApiResponse = {
10093
10093
  /** Timestamp when the invitation was last updated. */
10094
10094
  updatedAt: string;
10095
10095
  /** Timestamp when the invitation was deleted, if applicable. */
10096
- deletedAt: string;
10096
+ deletedAt: string | null;
10097
10097
  };
10098
10098
  type GetInvitationApiArg = {
10099
10099
  /** The ID of the invitation. */
@@ -10116,11 +10116,11 @@ type UpdateInvitationApiResponse = {
10116
10116
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10117
10117
  description: string;
10118
10118
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10119
- emails: string[];
10119
+ emails: string[] | null;
10120
10120
  /** ID of the organization to which the user is invited. */
10121
10121
  orgId: string;
10122
10122
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10123
- expiresAt?: string;
10123
+ expiresAt?: string | null;
10124
10124
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10125
10125
  quota?: number;
10126
10126
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10136,7 +10136,7 @@ type UpdateInvitationApiResponse = {
10136
10136
  /** Timestamp when the invitation was last updated. */
10137
10137
  updatedAt: string;
10138
10138
  /** Timestamp when the invitation was deleted, if applicable. */
10139
- deletedAt: string;
10139
+ deletedAt: string | null;
10140
10140
  };
10141
10141
  type UpdateInvitationApiArg = {
10142
10142
  /** The ID of the invitation. */
@@ -10188,11 +10188,11 @@ type GetInvitationsApiResponse = {
10188
10188
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10189
10189
  description: string;
10190
10190
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10191
- emails: string[];
10191
+ emails: string[] | null;
10192
10192
  /** ID of the organization to which the user is invited. */
10193
10193
  orgId: string;
10194
10194
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10195
- expiresAt?: string;
10195
+ expiresAt?: string | null;
10196
10196
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10197
10197
  quota?: number;
10198
10198
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10208,7 +10208,7 @@ type GetInvitationsApiResponse = {
10208
10208
  /** Timestamp when the invitation was last updated. */
10209
10209
  updatedAt: string;
10210
10210
  /** Timestamp when the invitation was deleted, if applicable. */
10211
- deletedAt: string;
10211
+ deletedAt: string | null;
10212
10212
  }[];
10213
10213
  };
10214
10214
  type GetInvitationsApiArg = {
@@ -10235,11 +10235,11 @@ type CreateInvitationApiResponse = {
10235
10235
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10236
10236
  description: string;
10237
10237
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10238
- emails: string[];
10238
+ emails: string[] | null;
10239
10239
  /** ID of the organization to which the user is invited. */
10240
10240
  orgId: string;
10241
10241
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10242
- expiresAt?: string;
10242
+ expiresAt?: string | null;
10243
10243
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10244
10244
  quota?: number;
10245
10245
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10255,7 +10255,7 @@ type CreateInvitationApiResponse = {
10255
10255
  /** Timestamp when the invitation was last updated. */
10256
10256
  updatedAt: string;
10257
10257
  /** Timestamp when the invitation was deleted, if applicable. */
10258
- deletedAt: string;
10258
+ deletedAt: string | null;
10259
10259
  };
10260
10260
  type CreateInvitationApiArg = {
10261
10261
  body: {
@@ -10297,11 +10297,11 @@ type AcceptInvitationApiResponse = {
10297
10297
  /** Description of the invitation, which can be used to provide additional context. Null or empty string means the invitation does not have a description. */
10298
10298
  description: string;
10299
10299
  /** Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
10300
- emails: string[];
10300
+ emails: string[] | null;
10301
10301
  /** ID of the organization to which the user is invited. */
10302
10302
  orgId: string;
10303
10303
  /** Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire. */
10304
- expiresAt?: string;
10304
+ expiresAt?: string | null;
10305
10305
  /** Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
10306
10306
  quota?: number;
10307
10307
  /** List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
@@ -10317,7 +10317,7 @@ type AcceptInvitationApiResponse = {
10317
10317
  /** Timestamp when the invitation was last updated. */
10318
10318
  updatedAt: string;
10319
10319
  /** Timestamp when the invitation was deleted, if applicable. */
10320
- deletedAt: string;
10320
+ deletedAt: string | null;
10321
10321
  };
10322
10322
  type AcceptInvitationApiArg = {
10323
10323
  /** The ID of the invitation. */
@@ -1063,12 +1063,12 @@ export interface components {
1063
1063
  * Format: uuid
1064
1064
  * @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
1065
1065
  */
1066
- id: string;
1066
+ readonly id: string;
1067
1067
  /**
1068
1068
  * Format: uuid
1069
1069
  * @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
1070
1070
  */
1071
- owner: string;
1071
+ readonly owner: string;
1072
1072
  /** @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. */
1073
1073
  isDefault?: boolean;
1074
1074
  /** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
@@ -1076,21 +1076,21 @@ export interface components {
1076
1076
  /** @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. */
1077
1077
  description: string;
1078
1078
  /** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
1079
- emails: string[];
1079
+ emails: string[] | null;
1080
1080
  /**
1081
1081
  * Format: uuid
1082
1082
  * @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
1083
1083
  */
1084
- orgId: string;
1084
+ readonly orgId: string;
1085
1085
  /**
1086
1086
  * Format: date-time
1087
1087
  * @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
1088
1088
  */
1089
- expiresAt?: string;
1089
+ expiresAt?: string | null;
1090
1090
  /** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
1091
1091
  quota?: number;
1092
1092
  /** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
1093
- acceptedBy: string[];
1093
+ readonly acceptedBy: string[];
1094
1094
  /** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
1095
1095
  roles: string[];
1096
1096
  /** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
@@ -1104,17 +1104,17 @@ export interface components {
1104
1104
  * Format: date-time
1105
1105
  * @description Timestamp when the invitation was created.
1106
1106
  */
1107
- createdAt: string;
1107
+ readonly createdAt: string;
1108
1108
  /**
1109
1109
  * Format: date-time
1110
1110
  * @description Timestamp when the invitation was last updated.
1111
1111
  */
1112
- updatedAt: string;
1112
+ readonly updatedAt: string;
1113
1113
  /**
1114
1114
  * Format: date-time
1115
1115
  * @description Timestamp when the invitation was deleted, if applicable.
1116
1116
  */
1117
- deletedAt: string;
1117
+ readonly deletedAt: string | null;
1118
1118
  };
1119
1119
  };
1120
1120
  CreateAcademyCurriculaRequest: {
@@ -6280,12 +6280,12 @@ export interface operations {
6280
6280
  * Format: uuid
6281
6281
  * @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
6282
6282
  */
6283
- id: string;
6283
+ readonly id: string;
6284
6284
  /**
6285
6285
  * Format: uuid
6286
6286
  * @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
6287
6287
  */
6288
- owner: string;
6288
+ readonly owner: string;
6289
6289
  /** @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. */
6290
6290
  isDefault?: boolean;
6291
6291
  /** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
@@ -6293,21 +6293,21 @@ export interface operations {
6293
6293
  /** @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. */
6294
6294
  description: string;
6295
6295
  /** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
6296
- emails: string[];
6296
+ emails: string[] | null;
6297
6297
  /**
6298
6298
  * Format: uuid
6299
6299
  * @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
6300
6300
  */
6301
- orgId: string;
6301
+ readonly orgId: string;
6302
6302
  /**
6303
6303
  * Format: date-time
6304
6304
  * @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
6305
6305
  */
6306
- expiresAt?: string;
6306
+ expiresAt?: string | null;
6307
6307
  /** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
6308
6308
  quota?: number;
6309
6309
  /** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
6310
- acceptedBy: string[];
6310
+ readonly acceptedBy: string[];
6311
6311
  /** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
6312
6312
  roles: string[];
6313
6313
  /** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
@@ -6321,17 +6321,17 @@ export interface operations {
6321
6321
  * Format: date-time
6322
6322
  * @description Timestamp when the invitation was created.
6323
6323
  */
6324
- createdAt: string;
6324
+ readonly createdAt: string;
6325
6325
  /**
6326
6326
  * Format: date-time
6327
6327
  * @description Timestamp when the invitation was last updated.
6328
6328
  */
6329
- updatedAt: string;
6329
+ readonly updatedAt: string;
6330
6330
  /**
6331
6331
  * Format: date-time
6332
6332
  * @description Timestamp when the invitation was deleted, if applicable.
6333
6333
  */
6334
- deletedAt: string;
6334
+ readonly deletedAt: string | null;
6335
6335
  };
6336
6336
  };
6337
6337
  };
@@ -6773,12 +6773,12 @@ export interface operations {
6773
6773
  * Format: uuid
6774
6774
  * @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
6775
6775
  */
6776
- id: string;
6776
+ readonly id: string;
6777
6777
  /**
6778
6778
  * Format: uuid
6779
6779
  * @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
6780
6780
  */
6781
- owner: string;
6781
+ readonly owner: string;
6782
6782
  /** @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. */
6783
6783
  isDefault?: boolean;
6784
6784
  /** @description Name of the invitation, which can be used to identify it. Required; cannot be an empty string. */
@@ -6786,21 +6786,21 @@ export interface operations {
6786
6786
  /** @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. */
6787
6787
  description: string;
6788
6788
  /** @description Email addresses or patterns for which the invitation is valid. Null means the invitation is valid for any email address. */
6789
- emails: string[];
6789
+ emails: string[] | null;
6790
6790
  /**
6791
6791
  * Format: uuid
6792
6792
  * @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
6793
6793
  */
6794
- orgId: string;
6794
+ readonly orgId: string;
6795
6795
  /**
6796
6796
  * Format: date-time
6797
6797
  * @description Timestamp when the invitation expires, if applicable. Null or empty means the invitation does not expire.
6798
6798
  */
6799
- expiresAt?: string;
6799
+ expiresAt?: string | null;
6800
6800
  /** @description Quota for the invitation; limits the number of users that can accept it. Null or empty means the invitation is unlimited. */
6801
6801
  quota?: number;
6802
6802
  /** @description List of user ids that have already accepted the invitation. Empty means the invitation has not been used yet. */
6803
- acceptedBy: string[];
6803
+ readonly acceptedBy: string[];
6804
6804
  /** @description Roles that the user will have when accepting the invitation. Empty means the invitation does not specify any roles. */
6805
6805
  roles: string[];
6806
6806
  /** @description Teams that the user will be added to when accepting the invitation. Empty means the invitation does not specify any teams. */
@@ -6814,17 +6814,17 @@ export interface operations {
6814
6814
  * Format: date-time
6815
6815
  * @description Timestamp when the invitation was created.
6816
6816
  */
6817
- createdAt: string;
6817
+ readonly createdAt: string;
6818
6818
  /**
6819
6819
  * Format: date-time
6820
6820
  * @description Timestamp when the invitation was last updated.
6821
6821
  */
6822
- updatedAt: string;
6822
+ readonly updatedAt: string;
6823
6823
  /**
6824
6824
  * Format: date-time
6825
6825
  * @description Timestamp when the invitation was deleted, if applicable.
6826
6826
  */
6827
- deletedAt: string;
6827
+ readonly deletedAt: string | null;
6828
6828
  };
6829
6829
  };
6830
6830
  };