@meshery/schemas 0.8.60 → 0.8.61

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.
@@ -28,6 +28,8 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
28
28
  getAcademyAdminSummary: _reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, object, "api", unknown>;
29
29
  getAcademyAdminRegistrations: _reduxjs_toolkit_query.QueryDefinition<GetAcademyAdminRegistrationsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetAcademyAdminRegistrationsApiResponse, "api", unknown>;
30
30
  getCertificateById: _reduxjs_toolkit_query.QueryDefinition<GetCertificateByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetCertificateByIdApiResponse, "api", unknown>;
31
+ getInvitation: _reduxjs_toolkit_query.QueryDefinition<GetInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationApiResponse, "api", unknown>;
32
+ updateInvitation: _reduxjs_toolkit_query.MutationDefinition<UpdateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, UpdateInvitationApiResponse, "api", unknown>;
31
33
  getInvitations: _reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationsApiResponse, "api", unknown>;
32
34
  createInvitation: _reduxjs_toolkit_query.MutationDefinition<CreateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateInvitationApiResponse, "api", unknown>;
33
35
  }, "api", never, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
@@ -434,7 +436,7 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
434
436
  title: string;
435
437
  /** Description of the learning path */
436
438
  description: string;
437
- /** Optional banner image */
439
+ /** Filename of the banner image, which should be placed in the same directory as the _index.md file */
438
440
  banner?: string | null;
439
441
  /** Canonical URL for the learning path */
440
442
  permalink: string;
@@ -487,9 +489,9 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
487
489
  permalink: string;
488
490
  /** Course description */
489
491
  description: string;
490
- /** Order of the course in the list */
492
+ /** A numeric value to determine the display order. A smaller number appears first. If not specified, items will be sorted alphabetically by title. */
491
493
  weight?: number;
492
- /** Optional banner image */
494
+ /** Filename of the banner image, which should be placed in the same directory as the _index.md file */
493
495
  banner?: string | null;
494
496
  /** Type of the content (e.g., learning-path, challenge, certification) */
495
497
  type?: "learning-path" | "challenge" | "certification";
@@ -877,11 +879,114 @@ type GetCertificateByIdApiArg = {
877
879
  /** The ID of the certificate to retrieve */
878
880
  certificateId: string;
879
881
  };
882
+ type GetInvitationApiResponse = {
883
+ /** Unique identifier for the invitation , is also used as the invitation code */
884
+ id: string;
885
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
886
+ ownerId: string;
887
+ /** 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, a organization can only have one default invitation */
888
+ isDefault?: boolean;
889
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
890
+ name: string;
891
+ /** Description of the invitation, which can be used to provide additional information about the invitation, null or empty string means the invitation does not have a description */
892
+ description: string;
893
+ emails: string[];
894
+ /** ID of the organization to which the user is invited */
895
+ orgId: string;
896
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
897
+ expiresAt: string;
898
+ /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
899
+ quota: number;
900
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
901
+ acceptedBy: string[];
902
+ roles: string[];
903
+ teams: string[];
904
+ /** Status of the invitation, where enabled means the invitation is active and can be used, disabled means the invitation is no longer valid and is temporarily inactive, disabled invitations can be re-enabled later. */
905
+ status: "enabled" | "disabled";
906
+ /** Timestamp when the invitation was created */
907
+ createdAt: string;
908
+ /** Timestamp when the invitation was last updated */
909
+ updatedAt: string;
910
+ /** Timestamp when the invitation was deleted, if applicable */
911
+ deletedAt: string;
912
+ };
913
+ type GetInvitationApiArg = {
914
+ /** The ID of the invitation to retrieve */
915
+ id: string;
916
+ };
917
+ type UpdateInvitationApiResponse = {
918
+ /** Unique identifier for the invitation , is also used as the invitation code */
919
+ id: string;
920
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
921
+ ownerId: string;
922
+ /** 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, a organization can only have one default invitation */
923
+ isDefault?: boolean;
924
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
925
+ name: string;
926
+ /** Description of the invitation, which can be used to provide additional information about the invitation, null or empty string means the invitation does not have a description */
927
+ description: string;
928
+ emails: string[];
929
+ /** ID of the organization to which the user is invited */
930
+ orgId: string;
931
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
932
+ expiresAt: string;
933
+ /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
934
+ quota: number;
935
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
936
+ acceptedBy: string[];
937
+ roles: string[];
938
+ teams: string[];
939
+ /** Status of the invitation, where enabled means the invitation is active and can be used, disabled means the invitation is no longer valid and is temporarily inactive, disabled invitations can be re-enabled later. */
940
+ status: "enabled" | "disabled";
941
+ /** Timestamp when the invitation was created */
942
+ createdAt: string;
943
+ /** Timestamp when the invitation was last updated */
944
+ updatedAt: string;
945
+ /** Timestamp when the invitation was deleted, if applicable */
946
+ deletedAt: string;
947
+ };
948
+ type UpdateInvitationApiArg = {
949
+ /** The ID of the invitation to update */
950
+ id: string;
951
+ body: {
952
+ /** Unique identifier for the invitation , is also used as the invitation code */
953
+ id: string;
954
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
955
+ ownerId: string;
956
+ /** 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, a organization can only have one default invitation */
957
+ isDefault?: boolean;
958
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
959
+ name: string;
960
+ /** Description of the invitation, which can be used to provide additional information about the invitation, null or empty string means the invitation does not have a description */
961
+ description: string;
962
+ emails: string[];
963
+ /** ID of the organization to which the user is invited */
964
+ orgId: string;
965
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
966
+ expiresAt: string;
967
+ /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
968
+ quota: number;
969
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
970
+ acceptedBy: string[];
971
+ roles: string[];
972
+ teams: string[];
973
+ /** Status of the invitation, where enabled means the invitation is active and can be used, disabled means the invitation is no longer valid and is temporarily inactive, disabled invitations can be re-enabled later. */
974
+ status: "enabled" | "disabled";
975
+ /** Timestamp when the invitation was created */
976
+ createdAt: string;
977
+ /** Timestamp when the invitation was last updated */
978
+ updatedAt: string;
979
+ /** Timestamp when the invitation was deleted, if applicable */
980
+ deletedAt: string;
981
+ };
982
+ };
880
983
  type GetInvitationsApiResponse = {
881
984
  /** List of invitations */
882
- Data?: {
985
+ Data: {
883
986
  /** Unique identifier for the invitation , is also used as the invitation code */
884
- id: any;
987
+ id: string;
988
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
989
+ ownerId: string;
885
990
  /** 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, a organization can only have one default invitation */
886
991
  isDefault?: boolean;
887
992
  /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
@@ -909,12 +1014,14 @@ type GetInvitationsApiResponse = {
909
1014
  deletedAt: string;
910
1015
  }[];
911
1016
  /** Total number of invitations available */
912
- TotalCount?: number;
1017
+ Total: number;
913
1018
  };
914
1019
  type GetInvitationsApiArg = void;
915
1020
  type CreateInvitationApiResponse = {
916
1021
  /** Unique identifier for the invitation , is also used as the invitation code */
917
- id: any;
1022
+ id: string;
1023
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
1024
+ ownerId: string;
918
1025
  /** 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, a organization can only have one default invitation */
919
1026
  isDefault?: boolean;
920
1027
  /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
@@ -944,7 +1051,9 @@ type CreateInvitationApiResponse = {
944
1051
  type CreateInvitationApiArg = {
945
1052
  body: {
946
1053
  /** Unique identifier for the invitation , is also used as the invitation code */
947
- id: any;
1054
+ id: string;
1055
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
1056
+ ownerId: string;
948
1057
  /** 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, a organization can only have one default invitation */
949
1058
  isDefault?: boolean;
950
1059
  /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
@@ -1128,10 +1237,9 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1128
1237
  isSuccess: false;
1129
1238
  isError: true;
1130
1239
  })) => R) | undefined;
1131
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1240
+ fixedCacheKey?: string | undefined;
1132
1241
  } | 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> & {
1133
1242
  originalArgs?: ImportDesignApiArg | undefined;
1134
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1135
1243
  reset: () => void;
1136
1244
  }];
1137
1245
  declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
@@ -1290,10 +1398,9 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
1290
1398
  isSuccess: false;
1291
1399
  isError: true;
1292
1400
  })) => R) | undefined;
1293
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1401
+ fixedCacheKey?: string | undefined;
1294
1402
  } | 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> & {
1295
1403
  originalArgs?: RegisterMeshmodelsApiArg | undefined;
1296
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1297
1404
  reset: () => void;
1298
1405
  }];
1299
1406
  declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
@@ -1615,10 +1722,9 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
1615
1722
  isSuccess: false;
1616
1723
  isError: true;
1617
1724
  })) => R) | undefined;
1618
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1725
+ fixedCacheKey?: string | undefined;
1619
1726
  } | 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> & {
1620
1727
  originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
1621
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1622
1728
  reset: () => void;
1623
1729
  }];
1624
1730
  declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Record<string, any> = ({
@@ -1777,10 +1883,9 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
1777
1883
  isSuccess: false;
1778
1884
  isError: true;
1779
1885
  })) => R) | undefined;
1780
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1886
+ fixedCacheKey?: string | undefined;
1781
1887
  } | 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> & {
1782
1888
  originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
1783
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1784
1889
  reset: () => void;
1785
1890
  }];
1786
1891
  declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Record<string, any> = ({
@@ -1939,10 +2044,9 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
1939
2044
  isSuccess: false;
1940
2045
  isError: true;
1941
2046
  })) => R) | undefined;
1942
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
2047
+ fixedCacheKey?: string | undefined;
1943
2048
  } | 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> & {
1944
2049
  originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
1945
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1946
2050
  reset: () => void;
1947
2051
  }];
1948
2052
  declare const useGetPlansQuery: <R extends Record<string, any> = ({
@@ -2753,10 +2857,9 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2753
2857
  isSuccess: false;
2754
2858
  isError: true;
2755
2859
  })) => R) | undefined;
2756
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
2860
+ fixedCacheKey?: string | undefined;
2757
2861
  } | 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> & {
2758
2862
  originalArgs?: PostApiWorkspacesApiArg | undefined;
2759
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
2760
2863
  reset: () => void;
2761
2864
  }];
2762
2865
  declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
@@ -3078,10 +3181,9 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3078
3181
  isSuccess: false;
3079
3182
  isError: true;
3080
3183
  })) => R) | undefined;
3081
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
3184
+ fixedCacheKey?: string | undefined;
3082
3185
  } | 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> & {
3083
3186
  originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
3084
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
3085
3187
  reset: () => void;
3086
3188
  }];
3087
3189
  declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
@@ -3240,10 +3342,9 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3240
3342
  isSuccess: false;
3241
3343
  isError: true;
3242
3344
  })) => R) | undefined;
3243
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
3345
+ fixedCacheKey?: string | undefined;
3244
3346
  } | 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> & {
3245
3347
  originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
3246
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
3247
3348
  reset: () => void;
3248
3349
  }];
3249
3350
  declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
@@ -3402,10 +3503,9 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3402
3503
  isSuccess: false;
3403
3504
  isError: true;
3404
3505
  })) => R) | undefined;
3405
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
3506
+ fixedCacheKey?: string | undefined;
3406
3507
  } | 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> & {
3407
3508
  originalArgs?: CreateEnvironmentApiArg | undefined;
3408
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
3409
3509
  reset: () => void;
3410
3510
  }];
3411
3511
  declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
@@ -4216,10 +4316,9 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
4216
4316
  isSuccess: false;
4217
4317
  isError: true;
4218
4318
  })) => R) | undefined;
4219
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
4319
+ fixedCacheKey?: string | undefined;
4220
4320
  } | 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> & {
4221
4321
  originalArgs?: RegisterToAcademyContentApiArg | undefined;
4222
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
4223
4322
  reset: () => void;
4224
4323
  }];
4225
4324
  declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
@@ -4541,10 +4640,9 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
4541
4640
  isSuccess: false;
4542
4641
  isError: true;
4543
4642
  })) => R) | undefined;
4544
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
4643
+ fixedCacheKey?: string | undefined;
4545
4644
  } | 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> & {
4546
4645
  originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
4547
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
4548
4646
  reset: () => void;
4549
4647
  }];
4550
4648
  declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
@@ -4703,10 +4801,9 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
4703
4801
  isSuccess: false;
4704
4802
  isError: true;
4705
4803
  })) => R) | undefined;
4706
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
4804
+ fixedCacheKey?: string | undefined;
4707
4805
  } | 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> & {
4708
4806
  originalArgs?: SubmitQuizApiArg | undefined;
4709
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
4710
4807
  reset: () => void;
4711
4808
  }];
4712
4809
  declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
@@ -5198,6 +5295,330 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
5198
5295
  }) | undefined) => [R][R extends any ? 0 : never] & {
5199
5296
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetCertificateByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetCertificateByIdApiResponse, "api", unknown>>;
5200
5297
  };
5298
+ declare const useGetInvitationQuery: <R extends Record<string, any> = ({
5299
+ data?: undefined;
5300
+ error?: undefined;
5301
+ fulfilledTimeStamp?: undefined;
5302
+ originalArgs?: undefined;
5303
+ requestId?: undefined;
5304
+ endpointName?: string | undefined;
5305
+ startedTimeStamp?: undefined;
5306
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5307
+ currentData?: GetInvitationApiResponse | undefined;
5308
+ isLoading: false;
5309
+ isFetching: false;
5310
+ isSuccess: false;
5311
+ isError: false;
5312
+ isUninitialized: true;
5313
+ } | {
5314
+ error?: unknown;
5315
+ fulfilledTimeStamp?: number | undefined;
5316
+ originalArgs?: GetInvitationApiArg | undefined;
5317
+ requestId?: string | undefined;
5318
+ endpointName?: string | undefined;
5319
+ startedTimeStamp?: number | undefined;
5320
+ status: _reduxjs_toolkit_query.QueryStatus;
5321
+ currentData?: GetInvitationApiResponse | undefined;
5322
+ isUninitialized: false;
5323
+ isSuccess: false;
5324
+ isError: false;
5325
+ isLoading: true;
5326
+ isFetching: boolean;
5327
+ data: undefined;
5328
+ } | {
5329
+ originalArgs?: GetInvitationApiArg | undefined;
5330
+ requestId?: string | undefined;
5331
+ endpointName?: string | undefined;
5332
+ startedTimeStamp?: number | undefined;
5333
+ status: _reduxjs_toolkit_query.QueryStatus;
5334
+ currentData?: GetInvitationApiResponse | undefined;
5335
+ isUninitialized: false;
5336
+ isLoading: false;
5337
+ isError: false;
5338
+ isSuccess: true;
5339
+ isFetching: true;
5340
+ error: undefined;
5341
+ data: GetInvitationApiResponse;
5342
+ fulfilledTimeStamp: number;
5343
+ } | {
5344
+ originalArgs?: GetInvitationApiArg | undefined;
5345
+ requestId?: string | undefined;
5346
+ endpointName?: string | undefined;
5347
+ startedTimeStamp?: number | undefined;
5348
+ status: _reduxjs_toolkit_query.QueryStatus;
5349
+ isUninitialized: false;
5350
+ isLoading: false;
5351
+ isError: false;
5352
+ isSuccess: true;
5353
+ isFetching: false;
5354
+ error: undefined;
5355
+ data: GetInvitationApiResponse;
5356
+ fulfilledTimeStamp: number;
5357
+ currentData: GetInvitationApiResponse;
5358
+ } | {
5359
+ data?: GetInvitationApiResponse | undefined;
5360
+ fulfilledTimeStamp?: number | undefined;
5361
+ originalArgs?: GetInvitationApiArg | undefined;
5362
+ requestId?: string | undefined;
5363
+ endpointName?: string | undefined;
5364
+ startedTimeStamp?: number | undefined;
5365
+ status: _reduxjs_toolkit_query.QueryStatus;
5366
+ currentData?: GetInvitationApiResponse | undefined;
5367
+ isUninitialized: false;
5368
+ isLoading: false;
5369
+ isFetching: false;
5370
+ isSuccess: false;
5371
+ isError: true;
5372
+ error: unknown;
5373
+ }) & {
5374
+ status: _reduxjs_toolkit_query.QueryStatus;
5375
+ }>(arg: GetInvitationApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
5376
+ skip?: boolean | undefined;
5377
+ refetchOnMountOrArgChange?: number | boolean | undefined;
5378
+ } & {
5379
+ skip?: boolean | undefined;
5380
+ selectFromResult?: ((state: ({
5381
+ data?: undefined;
5382
+ error?: undefined;
5383
+ fulfilledTimeStamp?: undefined;
5384
+ originalArgs?: undefined;
5385
+ requestId?: undefined;
5386
+ endpointName?: string | undefined;
5387
+ startedTimeStamp?: undefined;
5388
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5389
+ currentData?: GetInvitationApiResponse | undefined;
5390
+ isLoading: false;
5391
+ isFetching: false;
5392
+ isSuccess: false;
5393
+ isError: false;
5394
+ isUninitialized: true;
5395
+ } | {
5396
+ error?: unknown;
5397
+ fulfilledTimeStamp?: number | undefined;
5398
+ originalArgs?: GetInvitationApiArg | undefined;
5399
+ requestId?: string | undefined;
5400
+ endpointName?: string | undefined;
5401
+ startedTimeStamp?: number | undefined;
5402
+ status: _reduxjs_toolkit_query.QueryStatus;
5403
+ currentData?: GetInvitationApiResponse | undefined;
5404
+ isUninitialized: false;
5405
+ isSuccess: false;
5406
+ isError: false;
5407
+ isLoading: true;
5408
+ isFetching: boolean;
5409
+ data: undefined;
5410
+ } | {
5411
+ originalArgs?: GetInvitationApiArg | undefined;
5412
+ requestId?: string | undefined;
5413
+ endpointName?: string | undefined;
5414
+ startedTimeStamp?: number | undefined;
5415
+ status: _reduxjs_toolkit_query.QueryStatus;
5416
+ currentData?: GetInvitationApiResponse | undefined;
5417
+ isUninitialized: false;
5418
+ isLoading: false;
5419
+ isError: false;
5420
+ isSuccess: true;
5421
+ isFetching: true;
5422
+ error: undefined;
5423
+ data: GetInvitationApiResponse;
5424
+ fulfilledTimeStamp: number;
5425
+ } | {
5426
+ originalArgs?: GetInvitationApiArg | undefined;
5427
+ requestId?: string | undefined;
5428
+ endpointName?: string | undefined;
5429
+ startedTimeStamp?: number | undefined;
5430
+ status: _reduxjs_toolkit_query.QueryStatus;
5431
+ isUninitialized: false;
5432
+ isLoading: false;
5433
+ isError: false;
5434
+ isSuccess: true;
5435
+ isFetching: false;
5436
+ error: undefined;
5437
+ data: GetInvitationApiResponse;
5438
+ fulfilledTimeStamp: number;
5439
+ currentData: GetInvitationApiResponse;
5440
+ } | {
5441
+ data?: GetInvitationApiResponse | undefined;
5442
+ fulfilledTimeStamp?: number | undefined;
5443
+ originalArgs?: GetInvitationApiArg | undefined;
5444
+ requestId?: string | undefined;
5445
+ endpointName?: string | undefined;
5446
+ startedTimeStamp?: number | undefined;
5447
+ status: _reduxjs_toolkit_query.QueryStatus;
5448
+ currentData?: GetInvitationApiResponse | undefined;
5449
+ isUninitialized: false;
5450
+ isLoading: false;
5451
+ isFetching: false;
5452
+ isSuccess: false;
5453
+ isError: true;
5454
+ error: unknown;
5455
+ }) & {
5456
+ status: _reduxjs_toolkit_query.QueryStatus;
5457
+ }) => R) | undefined;
5458
+ }) | undefined) => [R][R extends any ? 0 : never] & {
5459
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationApiResponse, "api", unknown>>;
5460
+ };
5461
+ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
5462
+ requestId?: undefined;
5463
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5464
+ data?: undefined;
5465
+ error?: undefined;
5466
+ endpointName?: string | undefined;
5467
+ startedTimeStamp?: undefined;
5468
+ fulfilledTimeStamp?: undefined;
5469
+ } & {
5470
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5471
+ isUninitialized: true;
5472
+ isLoading: false;
5473
+ isSuccess: false;
5474
+ isError: false;
5475
+ }) | ({
5476
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5477
+ } & Omit<{
5478
+ requestId: string;
5479
+ data?: UpdateInvitationApiResponse | undefined;
5480
+ error?: unknown;
5481
+ endpointName: string;
5482
+ startedTimeStamp: number;
5483
+ fulfilledTimeStamp?: number | undefined;
5484
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5485
+ requestId: string;
5486
+ data?: UpdateInvitationApiResponse | undefined;
5487
+ error?: unknown;
5488
+ endpointName: string;
5489
+ startedTimeStamp: number;
5490
+ fulfilledTimeStamp?: number | undefined;
5491
+ }, "data" | "fulfilledTimeStamp">> & {
5492
+ error: undefined;
5493
+ } & {
5494
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5495
+ isUninitialized: false;
5496
+ isLoading: false;
5497
+ isSuccess: true;
5498
+ isError: false;
5499
+ }) | ({
5500
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5501
+ } & {
5502
+ requestId: string;
5503
+ data?: UpdateInvitationApiResponse | undefined;
5504
+ error?: unknown;
5505
+ endpointName: string;
5506
+ startedTimeStamp: number;
5507
+ fulfilledTimeStamp?: number | undefined;
5508
+ } & {
5509
+ data?: undefined;
5510
+ } & {
5511
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5512
+ isUninitialized: false;
5513
+ isLoading: true;
5514
+ isSuccess: false;
5515
+ isError: false;
5516
+ }) | ({
5517
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5518
+ } & Omit<{
5519
+ requestId: string;
5520
+ data?: UpdateInvitationApiResponse | undefined;
5521
+ error?: unknown;
5522
+ endpointName: string;
5523
+ startedTimeStamp: number;
5524
+ fulfilledTimeStamp?: number | undefined;
5525
+ }, "error"> & Required<Pick<{
5526
+ requestId: string;
5527
+ data?: UpdateInvitationApiResponse | undefined;
5528
+ error?: unknown;
5529
+ endpointName: string;
5530
+ startedTimeStamp: number;
5531
+ fulfilledTimeStamp?: number | undefined;
5532
+ }, "error">> & {
5533
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5534
+ isUninitialized: false;
5535
+ isLoading: false;
5536
+ isSuccess: false;
5537
+ isError: true;
5538
+ })>(options?: {
5539
+ selectFromResult?: ((state: ({
5540
+ requestId?: undefined;
5541
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5542
+ data?: undefined;
5543
+ error?: undefined;
5544
+ endpointName?: string | undefined;
5545
+ startedTimeStamp?: undefined;
5546
+ fulfilledTimeStamp?: undefined;
5547
+ } & {
5548
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5549
+ isUninitialized: true;
5550
+ isLoading: false;
5551
+ isSuccess: false;
5552
+ isError: false;
5553
+ }) | ({
5554
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5555
+ } & Omit<{
5556
+ requestId: string;
5557
+ data?: UpdateInvitationApiResponse | undefined;
5558
+ error?: unknown;
5559
+ endpointName: string;
5560
+ startedTimeStamp: number;
5561
+ fulfilledTimeStamp?: number | undefined;
5562
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5563
+ requestId: string;
5564
+ data?: UpdateInvitationApiResponse | undefined;
5565
+ error?: unknown;
5566
+ endpointName: string;
5567
+ startedTimeStamp: number;
5568
+ fulfilledTimeStamp?: number | undefined;
5569
+ }, "data" | "fulfilledTimeStamp">> & {
5570
+ error: undefined;
5571
+ } & {
5572
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5573
+ isUninitialized: false;
5574
+ isLoading: false;
5575
+ isSuccess: true;
5576
+ isError: false;
5577
+ }) | ({
5578
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5579
+ } & {
5580
+ requestId: string;
5581
+ data?: UpdateInvitationApiResponse | undefined;
5582
+ error?: unknown;
5583
+ endpointName: string;
5584
+ startedTimeStamp: number;
5585
+ fulfilledTimeStamp?: number | undefined;
5586
+ } & {
5587
+ data?: undefined;
5588
+ } & {
5589
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5590
+ isUninitialized: false;
5591
+ isLoading: true;
5592
+ isSuccess: false;
5593
+ isError: false;
5594
+ }) | ({
5595
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5596
+ } & Omit<{
5597
+ requestId: string;
5598
+ data?: UpdateInvitationApiResponse | undefined;
5599
+ error?: unknown;
5600
+ endpointName: string;
5601
+ startedTimeStamp: number;
5602
+ fulfilledTimeStamp?: number | undefined;
5603
+ }, "error"> & Required<Pick<{
5604
+ requestId: string;
5605
+ data?: UpdateInvitationApiResponse | undefined;
5606
+ error?: unknown;
5607
+ endpointName: string;
5608
+ startedTimeStamp: number;
5609
+ fulfilledTimeStamp?: number | undefined;
5610
+ }, "error">> & {
5611
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5612
+ isUninitialized: false;
5613
+ isLoading: false;
5614
+ isSuccess: false;
5615
+ isError: true;
5616
+ })) => R) | undefined;
5617
+ fixedCacheKey?: string | undefined;
5618
+ } | 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> & {
5619
+ originalArgs?: UpdateInvitationApiArg | undefined;
5620
+ reset: () => void;
5621
+ }];
5201
5622
  declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
5202
5623
  data?: undefined;
5203
5624
  error?: undefined;
@@ -5517,11 +5938,10 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
5517
5938
  isSuccess: false;
5518
5939
  isError: true;
5519
5940
  })) => R) | undefined;
5520
- fixedCacheKey?: string | undefined; /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
5941
+ fixedCacheKey?: string | undefined;
5521
5942
  } | 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> & {
5522
5943
  originalArgs?: CreateInvitationApiArg | undefined;
5523
- /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
5524
5944
  reset: () => void;
5525
5945
  }];
5526
5946
 
5527
- export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, 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 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, injectedRtkApi as cloudApi, useCreateEnvironmentMutation, useCreateInvitationMutation, useDeleteApiWorkspacesByIdMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateCurrentItemInProgressTrackerMutation };
5947
+ export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, 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, useCreateEnvironmentMutation, useCreateInvitationMutation, useDeleteApiWorkspacesByIdMutation, 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 };