@meshery/schemas 0.8.66 → 0.8.68

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.
@@ -34,6 +34,7 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
34
34
  getInvitations: _reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationsApiResponse, "api", unknown>;
35
35
  createInvitation: _reduxjs_toolkit_query.MutationDefinition<CreateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateInvitationApiResponse, "api", unknown>;
36
36
  acceptInvitation: _reduxjs_toolkit_query.MutationDefinition<AcceptInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, AcceptInvitationApiResponse, "api", unknown>;
37
+ createOrUpdateBadge: _reduxjs_toolkit_query.MutationDefinition<CreateOrUpdateBadgeApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateOrUpdateBadgeApiResponse, "api", unknown>;
37
38
  }, "api", never, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
38
39
 
39
40
  type ImportDesignApiResponse = {
@@ -98,6 +99,8 @@ type GetSubscriptionsApiResponse = {
98
99
  name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
99
100
  cadence: "monthly" | "yearly";
100
101
  unit: "user" | "free";
102
+ /** Minimum number of units required for the plan */
103
+ minimum_units: number;
101
104
  /** Price per unit of the plan */
102
105
  price_per_unit: number;
103
106
  currency: "usd";
@@ -143,6 +146,8 @@ type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse =
143
146
  name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
144
147
  cadence: "monthly" | "yearly";
145
148
  unit: "user" | "free";
149
+ /** Minimum number of units required for the plan */
150
+ minimum_units: number;
146
151
  /** Price per unit of the plan */
147
152
  price_per_unit: number;
148
153
  currency: "usd";
@@ -192,6 +197,8 @@ type GetPlansApiResponse = {
192
197
  name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
193
198
  cadence: "monthly" | "yearly";
194
199
  unit: "user" | "free";
200
+ /** Minimum number of units required for the plan */
201
+ minimum_units: number;
195
202
  /** Price per unit of the plan */
196
203
  price_per_unit: number;
197
204
  currency: "usd";
@@ -209,6 +216,8 @@ type GetFeaturesApiResponse = {
209
216
  name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
210
217
  cadence: "monthly" | "yearly";
211
218
  unit: "user" | "free";
219
+ /** Minimum number of units required for the plan */
220
+ minimum_units: number;
212
221
  /** Price per unit of the plan */
213
222
  price_per_unit: number;
214
223
  currency: "usd";
@@ -233,6 +242,8 @@ type GetFeaturesByOrganizationApiResponse = {
233
242
  name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
234
243
  cadence: "monthly" | "yearly";
235
244
  unit: "user" | "free";
245
+ /** Minimum number of units required for the plan */
246
+ minimum_units: number;
236
247
  /** Price per unit of the plan */
237
248
  price_per_unit: number;
238
249
  currency: "usd";
@@ -443,16 +454,24 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
443
454
  /** Canonical URL for the learning path */
444
455
  permalink: string;
445
456
  badge?: {
457
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
458
+ id: string;
459
+ /** The ID of the organization in which this badge is available . */
460
+ org_id: string;
446
461
  /** unique identifier for the badge ( auto generated ) */
447
462
  label: string;
448
- /** Title of the badge */
449
- title: string;
450
- /** Description of the badge */
463
+ /** Concise descriptor for the badge or certificate. */
464
+ name: string;
465
+ /** A description of the milestone achieved, often including criteria for receiving this recognition. */
451
466
  description: string;
452
467
  /** URL to the badge image */
453
- png: string;
454
- /** URL to the badge SVG image */
455
- svg: string;
468
+ image_url: string;
469
+ /** Timestamp when the resource was created. */
470
+ created_at: string;
471
+ /** Timestamp when the resource was updated. */
472
+ updated_at: string;
473
+ /** Timestamp when the resource was deleted. */
474
+ deleted_at: string;
456
475
  };
457
476
  certificate?: {
458
477
  /** Unique identifier for the certificate */
@@ -1123,6 +1142,48 @@ type AcceptInvitationApiArg = {
1123
1142
  /** The ID of the invitation */
1124
1143
  invitationId: string;
1125
1144
  };
1145
+ type CreateOrUpdateBadgeApiResponse = {
1146
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
1147
+ id: string;
1148
+ /** The ID of the organization in which this badge is available . */
1149
+ org_id: string;
1150
+ /** unique identifier for the badge ( auto generated ) */
1151
+ label: string;
1152
+ /** Concise descriptor for the badge or certificate. */
1153
+ name: string;
1154
+ /** A description of the milestone achieved, often including criteria for receiving this recognition. */
1155
+ description: string;
1156
+ /** URL to the badge image */
1157
+ image_url: string;
1158
+ /** Timestamp when the resource was created. */
1159
+ created_at: string;
1160
+ /** Timestamp when the resource was updated. */
1161
+ updated_at: string;
1162
+ /** Timestamp when the resource was deleted. */
1163
+ deleted_at: string;
1164
+ };
1165
+ type CreateOrUpdateBadgeApiArg = {
1166
+ body: {
1167
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
1168
+ id: string;
1169
+ /** The ID of the organization in which this badge is available . */
1170
+ org_id: string;
1171
+ /** unique identifier for the badge ( auto generated ) */
1172
+ label: string;
1173
+ /** Concise descriptor for the badge or certificate. */
1174
+ name: string;
1175
+ /** A description of the milestone achieved, often including criteria for receiving this recognition. */
1176
+ description: string;
1177
+ /** URL to the badge image */
1178
+ image_url: string;
1179
+ /** Timestamp when the resource was created. */
1180
+ created_at: string;
1181
+ /** Timestamp when the resource was updated. */
1182
+ updated_at: string;
1183
+ /** Timestamp when the resource was deleted. */
1184
+ deleted_at: string;
1185
+ };
1186
+ };
1126
1187
  declare const useImportDesignMutation: <R extends Record<string, any> = ({
1127
1188
  requestId?: undefined;
1128
1189
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -1278,10 +1339,11 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1278
1339
  isLoading: false;
1279
1340
  isSuccess: false;
1280
1341
  isError: true;
1281
- })) => R) | undefined; /** Date when the certificate was issued */
1342
+ })) => R) | undefined;
1282
1343
  fixedCacheKey?: string | undefined;
1283
1344
  } | undefined) => readonly [(arg: ImportDesignApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<ImportDesignApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, ImportDesignApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
1284
1345
  originalArgs?: ImportDesignApiArg | undefined;
1346
+ /** Filter by content types */
1285
1347
  reset: () => void;
1286
1348
  }];
1287
1349
  declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
@@ -1439,10 +1501,11 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
1439
1501
  isLoading: false;
1440
1502
  isSuccess: false;
1441
1503
  isError: true;
1442
- })) => R) | undefined; /** Date when the certificate was issued */
1504
+ })) => R) | undefined;
1443
1505
  fixedCacheKey?: string | undefined;
1444
1506
  } | undefined) => readonly [(arg: RegisterMeshmodelsApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<RegisterMeshmodelsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, RegisterMeshmodelsApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
1445
1507
  originalArgs?: RegisterMeshmodelsApiArg | undefined;
1508
+ /** Filter by content types */
1446
1509
  reset: () => void;
1447
1510
  }];
1448
1511
  declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
@@ -1763,10 +1826,11 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
1763
1826
  isLoading: false;
1764
1827
  isSuccess: false;
1765
1828
  isError: true;
1766
- })) => R) | undefined; /** Date when the certificate was issued */
1829
+ })) => R) | undefined;
1767
1830
  fixedCacheKey?: string | undefined;
1768
1831
  } | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
1769
1832
  originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
1833
+ /** Filter by content types */
1770
1834
  reset: () => void;
1771
1835
  }];
1772
1836
  declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Record<string, any> = ({
@@ -1924,10 +1988,11 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
1924
1988
  isLoading: false;
1925
1989
  isSuccess: false;
1926
1990
  isError: true;
1927
- })) => R) | undefined; /** Date when the certificate was issued */
1991
+ })) => R) | undefined;
1928
1992
  fixedCacheKey?: string | undefined;
1929
1993
  } | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsCreateApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsCreateApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, PostApiEntitlementSubscriptionsCreateApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
1930
1994
  originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
1995
+ /** Filter by content types */
1931
1996
  reset: () => void;
1932
1997
  }];
1933
1998
  declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Record<string, any> = ({
@@ -2085,10 +2150,11 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
2085
2150
  isLoading: false;
2086
2151
  isSuccess: false;
2087
2152
  isError: true;
2088
- })) => R) | undefined; /** Date when the certificate was issued */
2153
+ })) => R) | undefined;
2089
2154
  fixedCacheKey?: string | undefined;
2090
2155
  } | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsWebhooksApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsWebhooksApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2091
2156
  originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
2157
+ /** Filter by content types */
2092
2158
  reset: () => void;
2093
2159
  }];
2094
2160
  declare const useGetPlansQuery: <R extends Record<string, any> = ({
@@ -2898,10 +2964,11 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2898
2964
  isLoading: false;
2899
2965
  isSuccess: false;
2900
2966
  isError: true;
2901
- })) => R) | undefined; /** Date when the certificate was issued */
2967
+ })) => R) | undefined;
2902
2968
  fixedCacheKey?: string | undefined;
2903
2969
  } | undefined) => readonly [(arg: PostApiWorkspacesApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiWorkspacesApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, PostApiWorkspacesApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2904
2970
  originalArgs?: PostApiWorkspacesApiArg | undefined;
2971
+ /** Filter by content types */
2905
2972
  reset: () => void;
2906
2973
  }];
2907
2974
  declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
@@ -3222,10 +3289,11 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3222
3289
  isLoading: false;
3223
3290
  isSuccess: false;
3224
3291
  isError: true;
3225
- })) => R) | undefined; /** Date when the certificate was issued */
3292
+ })) => R) | undefined;
3226
3293
  fixedCacheKey?: string | undefined;
3227
3294
  } | undefined) => readonly [(arg: PutApiWorkspacesByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PutApiWorkspacesByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, PutApiWorkspacesByIdApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
3228
3295
  originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
3296
+ /** Filter by content types */
3229
3297
  reset: () => void;
3230
3298
  }];
3231
3299
  declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
@@ -3383,10 +3451,11 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3383
3451
  isLoading: false;
3384
3452
  isSuccess: false;
3385
3453
  isError: true;
3386
- })) => R) | undefined; /** Date when the certificate was issued */
3454
+ })) => R) | undefined;
3387
3455
  fixedCacheKey?: string | undefined;
3388
3456
  } | undefined) => readonly [(arg: DeleteApiWorkspacesByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteApiWorkspacesByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
3389
3457
  originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
3458
+ /** Filter by content types */
3390
3459
  reset: () => void;
3391
3460
  }];
3392
3461
  declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
@@ -3544,10 +3613,11 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3544
3613
  isLoading: false;
3545
3614
  isSuccess: false;
3546
3615
  isError: true;
3547
- })) => R) | undefined; /** Date when the certificate was issued */
3616
+ })) => R) | undefined;
3548
3617
  fixedCacheKey?: string | undefined;
3549
3618
  } | undefined) => readonly [(arg: CreateEnvironmentApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateEnvironmentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateEnvironmentApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
3550
3619
  originalArgs?: CreateEnvironmentApiArg | undefined;
3620
+ /** Filter by content types */
3551
3621
  reset: () => void;
3552
3622
  }];
3553
3623
  declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
@@ -4357,10 +4427,11 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
4357
4427
  isLoading: false;
4358
4428
  isSuccess: false;
4359
4429
  isError: true;
4360
- })) => R) | undefined; /** Date when the certificate was issued */
4430
+ })) => R) | undefined;
4361
4431
  fixedCacheKey?: string | undefined;
4362
4432
  } | undefined) => readonly [(arg: RegisterToAcademyContentApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<RegisterToAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, RegisterToAcademyContentApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
4363
4433
  originalArgs?: RegisterToAcademyContentApiArg | undefined;
4434
+ /** Filter by content types */
4364
4435
  reset: () => void;
4365
4436
  }];
4366
4437
  declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
@@ -4681,10 +4752,11 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
4681
4752
  isLoading: false;
4682
4753
  isSuccess: false;
4683
4754
  isError: true;
4684
- })) => R) | undefined; /** Date when the certificate was issued */
4755
+ })) => R) | undefined;
4685
4756
  fixedCacheKey?: string | undefined;
4686
4757
  } | undefined) => readonly [(arg: UpdateCurrentItemInProgressTrackerApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateCurrentItemInProgressTrackerApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, UpdateCurrentItemInProgressTrackerApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
4687
4758
  originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
4759
+ /** Filter by content types */
4688
4760
  reset: () => void;
4689
4761
  }];
4690
4762
  declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
@@ -4842,10 +4914,11 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
4842
4914
  isLoading: false;
4843
4915
  isSuccess: false;
4844
4916
  isError: true;
4845
- })) => R) | undefined; /** Date when the certificate was issued */
4917
+ })) => R) | undefined;
4846
4918
  fixedCacheKey?: string | undefined;
4847
4919
  } | undefined) => readonly [(arg: SubmitQuizApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<SubmitQuizApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, SubmitQuizApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
4848
4920
  originalArgs?: SubmitQuizApiArg | undefined;
4921
+ /** Filter by content types */
4849
4922
  reset: () => void;
4850
4923
  }];
4851
4924
  declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
@@ -5655,10 +5728,11 @@ declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
5655
5728
  isLoading: false;
5656
5729
  isSuccess: false;
5657
5730
  isError: true;
5658
- })) => R) | undefined; /** Date when the certificate was issued */
5731
+ })) => R) | undefined;
5659
5732
  fixedCacheKey?: string | undefined;
5660
5733
  } | undefined) => readonly [(arg: DeleteInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
5661
5734
  originalArgs?: DeleteInvitationApiArg | undefined;
5735
+ /** Filter by content types */
5662
5736
  reset: () => void;
5663
5737
  }];
5664
5738
  declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
@@ -5816,10 +5890,11 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
5816
5890
  isLoading: false;
5817
5891
  isSuccess: false;
5818
5892
  isError: true;
5819
- })) => R) | undefined; /** Date when the certificate was issued */
5893
+ })) => R) | undefined;
5820
5894
  fixedCacheKey?: string | undefined;
5821
5895
  } | undefined) => readonly [(arg: UpdateInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, UpdateInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
5822
5896
  originalArgs?: UpdateInvitationApiArg | undefined;
5897
+ /** Filter by content types */
5823
5898
  reset: () => void;
5824
5899
  }];
5825
5900
  declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
@@ -6140,10 +6215,11 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
6140
6215
  isLoading: false;
6141
6216
  isSuccess: false;
6142
6217
  isError: true;
6143
- })) => R) | undefined; /** Date when the certificate was issued */
6218
+ })) => R) | undefined;
6144
6219
  fixedCacheKey?: string | undefined;
6145
6220
  } | undefined) => readonly [(arg: CreateInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
6146
6221
  originalArgs?: CreateInvitationApiArg | undefined;
6222
+ /** Filter by content types */
6147
6223
  reset: () => void;
6148
6224
  }];
6149
6225
  declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
@@ -6301,11 +6377,174 @@ declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
6301
6377
  isLoading: false;
6302
6378
  isSuccess: false;
6303
6379
  isError: true;
6304
- })) => R) | undefined; /** Date when the certificate was issued */
6380
+ })) => R) | undefined;
6305
6381
  fixedCacheKey?: string | undefined;
6306
6382
  } | undefined) => readonly [(arg: AcceptInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<AcceptInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, AcceptInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
6307
6383
  originalArgs?: AcceptInvitationApiArg | undefined;
6384
+ /** Filter by content types */
6385
+ reset: () => void;
6386
+ }];
6387
+ declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = ({
6388
+ requestId?: undefined;
6389
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
6390
+ data?: undefined;
6391
+ error?: undefined;
6392
+ endpointName?: string | undefined;
6393
+ startedTimeStamp?: undefined;
6394
+ fulfilledTimeStamp?: undefined;
6395
+ } & {
6396
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
6397
+ isUninitialized: true;
6398
+ isLoading: false;
6399
+ isSuccess: false;
6400
+ isError: false;
6401
+ }) | ({
6402
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
6403
+ } & Omit<{
6404
+ requestId: string;
6405
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6406
+ error?: unknown;
6407
+ endpointName: string;
6408
+ startedTimeStamp: number;
6409
+ fulfilledTimeStamp?: number | undefined;
6410
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
6411
+ requestId: string;
6412
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6413
+ error?: unknown;
6414
+ endpointName: string;
6415
+ startedTimeStamp: number;
6416
+ fulfilledTimeStamp?: number | undefined;
6417
+ }, "data" | "fulfilledTimeStamp">> & {
6418
+ error: undefined;
6419
+ } & {
6420
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
6421
+ isUninitialized: false;
6422
+ isLoading: false;
6423
+ isSuccess: true;
6424
+ isError: false;
6425
+ }) | ({
6426
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
6427
+ } & {
6428
+ requestId: string;
6429
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6430
+ error?: unknown;
6431
+ endpointName: string;
6432
+ startedTimeStamp: number;
6433
+ fulfilledTimeStamp?: number | undefined;
6434
+ } & {
6435
+ data?: undefined;
6436
+ } & {
6437
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
6438
+ isUninitialized: false;
6439
+ isLoading: true;
6440
+ isSuccess: false;
6441
+ isError: false;
6442
+ }) | ({
6443
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
6444
+ } & Omit<{
6445
+ requestId: string;
6446
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6447
+ error?: unknown;
6448
+ endpointName: string;
6449
+ startedTimeStamp: number;
6450
+ fulfilledTimeStamp?: number | undefined;
6451
+ }, "error"> & Required<Pick<{
6452
+ requestId: string;
6453
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6454
+ error?: unknown;
6455
+ endpointName: string;
6456
+ startedTimeStamp: number;
6457
+ fulfilledTimeStamp?: number | undefined;
6458
+ }, "error">> & {
6459
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
6460
+ isUninitialized: false;
6461
+ isLoading: false;
6462
+ isSuccess: false;
6463
+ isError: true;
6464
+ })>(options?: {
6465
+ selectFromResult?: ((state: ({
6466
+ requestId?: undefined;
6467
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
6468
+ data?: undefined;
6469
+ error?: undefined;
6470
+ endpointName?: string | undefined;
6471
+ startedTimeStamp?: undefined;
6472
+ fulfilledTimeStamp?: undefined;
6473
+ } & {
6474
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
6475
+ isUninitialized: true;
6476
+ isLoading: false;
6477
+ isSuccess: false;
6478
+ isError: false;
6479
+ }) | ({
6480
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
6481
+ } & Omit<{
6482
+ requestId: string;
6483
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6484
+ error?: unknown;
6485
+ endpointName: string;
6486
+ startedTimeStamp: number;
6487
+ fulfilledTimeStamp?: number | undefined;
6488
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
6489
+ requestId: string;
6490
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6491
+ error?: unknown;
6492
+ endpointName: string;
6493
+ startedTimeStamp: number;
6494
+ fulfilledTimeStamp?: number | undefined;
6495
+ }, "data" | "fulfilledTimeStamp">> & {
6496
+ error: undefined;
6497
+ } & {
6498
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
6499
+ isUninitialized: false;
6500
+ isLoading: false;
6501
+ isSuccess: true;
6502
+ isError: false;
6503
+ }) | ({
6504
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
6505
+ } & {
6506
+ requestId: string;
6507
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6508
+ error?: unknown;
6509
+ endpointName: string;
6510
+ startedTimeStamp: number;
6511
+ fulfilledTimeStamp?: number | undefined;
6512
+ } & {
6513
+ data?: undefined;
6514
+ } & {
6515
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
6516
+ isUninitialized: false;
6517
+ isLoading: true;
6518
+ isSuccess: false;
6519
+ isError: false;
6520
+ }) | ({
6521
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
6522
+ } & Omit<{
6523
+ requestId: string;
6524
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6525
+ error?: unknown;
6526
+ endpointName: string;
6527
+ startedTimeStamp: number;
6528
+ fulfilledTimeStamp?: number | undefined;
6529
+ }, "error"> & Required<Pick<{
6530
+ requestId: string;
6531
+ data?: CreateOrUpdateBadgeApiResponse | undefined;
6532
+ error?: unknown;
6533
+ endpointName: string;
6534
+ startedTimeStamp: number;
6535
+ fulfilledTimeStamp?: number | undefined;
6536
+ }, "error">> & {
6537
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
6538
+ isUninitialized: false;
6539
+ isLoading: false;
6540
+ isSuccess: false;
6541
+ isError: true;
6542
+ })) => R) | undefined;
6543
+ fixedCacheKey?: string | undefined;
6544
+ } | undefined) => readonly [(arg: CreateOrUpdateBadgeApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateOrUpdateBadgeApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateOrUpdateBadgeApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
6545
+ originalArgs?: CreateOrUpdateBadgeApiArg | undefined;
6546
+ /** Filter by content types */
6308
6547
  reset: () => void;
6309
6548
  }];
6310
6549
 
6311
- export { type AcceptInvitationApiArg, type AcceptInvitationApiResponse, type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type DeleteInvitationApiArg, type DeleteInvitationApiResponse, type GetAcademyAdminRegistrationsApiArg, type GetAcademyAdminRegistrationsApiResponse, type GetAcademyAdminSummaryApiArg, type GetAcademyAdminSummaryApiResponse, type GetAcademyCirriculaApiArg, type GetAcademyCirriculaApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetCertificateByIdApiArg, type GetCertificateByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type GetFeaturesApiArg, type GetFeaturesApiResponse, type GetFeaturesByOrganizationApiArg, type GetFeaturesByOrganizationApiResponse, type GetInvitationApiArg, type GetInvitationApiResponse, type GetInvitationsApiArg, type GetInvitationsApiResponse, type GetMyAcademyCirriculaApiArg, type GetMyAcademyCirriculaApiResponse, type GetPlansApiArg, type GetPlansApiResponse, type GetSubscriptionsApiArg, type GetSubscriptionsApiResponse, type ImportDesignApiArg, type ImportDesignApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, type PostApiEntitlementSubscriptionsCreateApiArg, type PostApiEntitlementSubscriptionsCreateApiResponse, type PostApiEntitlementSubscriptionsWebhooksApiArg, type PostApiEntitlementSubscriptionsWebhooksApiResponse, type PostApiWorkspacesApiArg, type PostApiWorkspacesApiResponse, type PutApiWorkspacesByIdApiArg, type PutApiWorkspacesByIdApiResponse, type RegisterMeshmodelsApiArg, type RegisterMeshmodelsApiResponse, type RegisterToAcademyContentApiArg, type RegisterToAcademyContentApiResponse, type SubmitQuizApiArg, type SubmitQuizApiResponse, type UpdateCurrentItemInProgressTrackerApiArg, type UpdateCurrentItemInProgressTrackerApiResponse, type UpdateInvitationApiArg, type UpdateInvitationApiResponse, injectedRtkApi as cloudApi, useAcceptInvitationMutation, useCreateEnvironmentMutation, useCreateInvitationMutation, useDeleteApiWorkspacesByIdMutation, useDeleteInvitationMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };
6550
+ export { type AcceptInvitationApiArg, type AcceptInvitationApiResponse, type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type CreateOrUpdateBadgeApiArg, type CreateOrUpdateBadgeApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type DeleteInvitationApiArg, type DeleteInvitationApiResponse, type GetAcademyAdminRegistrationsApiArg, type GetAcademyAdminRegistrationsApiResponse, type GetAcademyAdminSummaryApiArg, type GetAcademyAdminSummaryApiResponse, type GetAcademyCirriculaApiArg, type GetAcademyCirriculaApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetCertificateByIdApiArg, type GetCertificateByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type GetFeaturesApiArg, type GetFeaturesApiResponse, type GetFeaturesByOrganizationApiArg, type GetFeaturesByOrganizationApiResponse, type GetInvitationApiArg, type GetInvitationApiResponse, type GetInvitationsApiArg, type GetInvitationsApiResponse, type GetMyAcademyCirriculaApiArg, type GetMyAcademyCirriculaApiResponse, type GetPlansApiArg, type GetPlansApiResponse, type GetSubscriptionsApiArg, type GetSubscriptionsApiResponse, type ImportDesignApiArg, type ImportDesignApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, type PostApiEntitlementSubscriptionsCreateApiArg, type PostApiEntitlementSubscriptionsCreateApiResponse, type PostApiEntitlementSubscriptionsWebhooksApiArg, type PostApiEntitlementSubscriptionsWebhooksApiResponse, type PostApiWorkspacesApiArg, type PostApiWorkspacesApiResponse, type PutApiWorkspacesByIdApiArg, type PutApiWorkspacesByIdApiResponse, type RegisterMeshmodelsApiArg, type RegisterMeshmodelsApiResponse, type RegisterToAcademyContentApiArg, type RegisterToAcademyContentApiResponse, type SubmitQuizApiArg, type SubmitQuizApiResponse, type UpdateCurrentItemInProgressTrackerApiArg, type UpdateCurrentItemInProgressTrackerApiResponse, type UpdateInvitationApiArg, type UpdateInvitationApiResponse, injectedRtkApi as cloudApi, useAcceptInvitationMutation, useCreateEnvironmentMutation, useCreateInvitationMutation, useCreateOrUpdateBadgeMutation, useDeleteApiWorkspacesByIdMutation, useDeleteInvitationMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };