@meshery/schemas 0.8.61 → 0.8.62

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.
@@ -29,9 +29,11 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
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
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
+ deleteInvitation: _reduxjs_toolkit_query.MutationDefinition<DeleteInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>;
32
33
  updateInvitation: _reduxjs_toolkit_query.MutationDefinition<UpdateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, UpdateInvitationApiResponse, "api", unknown>;
33
34
  getInvitations: _reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationsApiResponse, "api", unknown>;
34
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
+ acceptInvitation: _reduxjs_toolkit_query.MutationDefinition<AcceptInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, AcceptInvitationApiResponse, "api", unknown>;
35
37
  }, "api", never, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
36
38
 
37
39
  type ImportDesignApiResponse = {
@@ -883,204 +885,244 @@ type GetInvitationApiResponse = {
883
885
  /** Unique identifier for the invitation , is also used as the invitation code */
884
886
  id: string;
885
887
  /** 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;
888
+ owner_id: string;
887
889
  /** 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;
890
+ is_default?: boolean;
889
891
  /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
890
892
  name: string;
891
893
  /** 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
894
  description: string;
893
895
  emails: string[];
894
896
  /** ID of the organization to which the user is invited */
895
- orgId: string;
897
+ org_id: string;
896
898
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
897
- expiresAt: string;
899
+ expires_at: string;
898
900
  /** 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
901
  quota: number;
900
902
  /** 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[];
903
+ accepted_by: string[];
902
904
  roles: string[];
903
905
  teams: string[];
904
906
  /** 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
907
  status: "enabled" | "disabled";
906
908
  /** Timestamp when the invitation was created */
907
- createdAt: string;
909
+ created_at: string;
908
910
  /** Timestamp when the invitation was last updated */
909
- updatedAt: string;
911
+ updated_at: string;
910
912
  /** Timestamp when the invitation was deleted, if applicable */
911
- deletedAt: string;
913
+ deleted_at: string;
912
914
  };
913
915
  type GetInvitationApiArg = {
914
- /** The ID of the invitation to retrieve */
915
- id: string;
916
+ /** The ID of the invitation */
917
+ invitationId: string;
918
+ };
919
+ type DeleteInvitationApiResponse = unknown;
920
+ type DeleteInvitationApiArg = {
921
+ /** The ID of the invitation */
922
+ invitationId: string;
916
923
  };
917
924
  type UpdateInvitationApiResponse = {
918
925
  /** Unique identifier for the invitation , is also used as the invitation code */
919
926
  id: string;
920
927
  /** 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;
928
+ owner_id: string;
922
929
  /** 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;
930
+ is_default?: boolean;
924
931
  /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
925
932
  name: string;
926
933
  /** 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
934
  description: string;
928
935
  emails: string[];
929
936
  /** ID of the organization to which the user is invited */
930
- orgId: string;
937
+ org_id: string;
931
938
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
932
- expiresAt: string;
939
+ expires_at: string;
933
940
  /** 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
941
  quota: number;
935
942
  /** 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[];
943
+ accepted_by: string[];
937
944
  roles: string[];
938
945
  teams: string[];
939
946
  /** 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
947
  status: "enabled" | "disabled";
941
948
  /** Timestamp when the invitation was created */
942
- createdAt: string;
949
+ created_at: string;
943
950
  /** Timestamp when the invitation was last updated */
944
- updatedAt: string;
951
+ updated_at: string;
945
952
  /** Timestamp when the invitation was deleted, if applicable */
946
- deletedAt: string;
953
+ deleted_at: string;
947
954
  };
948
955
  type UpdateInvitationApiArg = {
949
- /** The ID of the invitation to update */
950
- id: string;
956
+ /** The ID of the invitation */
957
+ invitationId: string;
951
958
  body: {
952
959
  /** Unique identifier for the invitation , is also used as the invitation code */
953
960
  id: string;
954
961
  /** 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;
962
+ owner_id: string;
956
963
  /** 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;
964
+ is_default?: boolean;
958
965
  /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
959
966
  name: string;
960
967
  /** 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
968
  description: string;
962
969
  emails: string[];
963
970
  /** ID of the organization to which the user is invited */
964
- orgId: string;
971
+ org_id: string;
965
972
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
966
- expiresAt: string;
973
+ expires_at: string;
967
974
  /** 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
975
  quota: number;
969
976
  /** 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[];
977
+ accepted_by: string[];
971
978
  roles: string[];
972
979
  teams: string[];
973
980
  /** 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
981
  status: "enabled" | "disabled";
975
982
  /** Timestamp when the invitation was created */
976
- createdAt: string;
983
+ created_at: string;
977
984
  /** Timestamp when the invitation was last updated */
978
- updatedAt: string;
985
+ updated_at: string;
979
986
  /** Timestamp when the invitation was deleted, if applicable */
980
- deletedAt: string;
987
+ deleted_at: string;
981
988
  };
982
989
  };
983
990
  type GetInvitationsApiResponse = {
984
991
  /** List of invitations */
985
- Data: {
992
+ data: {
986
993
  /** Unique identifier for the invitation , is also used as the invitation code */
987
994
  id: string;
988
995
  /** 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;
996
+ owner_id: string;
990
997
  /** 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 */
991
- isDefault?: boolean;
998
+ is_default?: boolean;
992
999
  /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
993
1000
  name: string;
994
1001
  /** 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 */
995
1002
  description: string;
996
1003
  emails: string[];
997
1004
  /** ID of the organization to which the user is invited */
998
- orgId: string;
1005
+ org_id: string;
999
1006
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1000
- expiresAt: string;
1007
+ expires_at: string;
1001
1008
  /** 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 */
1002
1009
  quota: number;
1003
1010
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1004
- acceptedBy: string[];
1011
+ accepted_by: string[];
1005
1012
  roles: string[];
1006
1013
  teams: string[];
1007
1014
  /** 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. */
1008
1015
  status: "enabled" | "disabled";
1009
1016
  /** Timestamp when the invitation was created */
1010
- createdAt: string;
1017
+ created_at: string;
1011
1018
  /** Timestamp when the invitation was last updated */
1012
- updatedAt: string;
1019
+ updated_at: string;
1013
1020
  /** Timestamp when the invitation was deleted, if applicable */
1014
- deletedAt: string;
1021
+ deleted_at: string;
1015
1022
  }[];
1016
1023
  /** Total number of invitations available */
1017
- Total: number;
1024
+ total: number;
1018
1025
  };
1019
1026
  type GetInvitationsApiArg = void;
1020
1027
  type CreateInvitationApiResponse = {
1021
1028
  /** Unique identifier for the invitation , is also used as the invitation code */
1022
1029
  id: string;
1023
1030
  /** 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;
1031
+ owner_id: string;
1025
1032
  /** 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 */
1026
- isDefault?: boolean;
1033
+ is_default?: boolean;
1027
1034
  /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
1028
1035
  name: string;
1029
1036
  /** 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 */
1030
1037
  description: string;
1031
1038
  emails: string[];
1032
1039
  /** ID of the organization to which the user is invited */
1033
- orgId: string;
1040
+ org_id: string;
1034
1041
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1035
- expiresAt: string;
1042
+ expires_at: string;
1036
1043
  /** 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 */
1037
1044
  quota: number;
1038
1045
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1039
- acceptedBy: string[];
1046
+ accepted_by: string[];
1040
1047
  roles: string[];
1041
1048
  teams: string[];
1042
1049
  /** 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. */
1043
1050
  status: "enabled" | "disabled";
1044
1051
  /** Timestamp when the invitation was created */
1045
- createdAt: string;
1052
+ created_at: string;
1046
1053
  /** Timestamp when the invitation was last updated */
1047
- updatedAt: string;
1054
+ updated_at: string;
1048
1055
  /** Timestamp when the invitation was deleted, if applicable */
1049
- deletedAt: string;
1056
+ deleted_at: string;
1050
1057
  };
1051
1058
  type CreateInvitationApiArg = {
1052
1059
  body: {
1053
1060
  /** Unique identifier for the invitation , is also used as the invitation code */
1054
1061
  id: string;
1055
1062
  /** 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;
1063
+ owner_id: string;
1057
1064
  /** 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 */
1058
- isDefault?: boolean;
1065
+ is_default?: boolean;
1059
1066
  /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
1060
1067
  name: string;
1061
1068
  /** 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 */
1062
1069
  description: string;
1063
1070
  emails: string[];
1064
1071
  /** ID of the organization to which the user is invited */
1065
- orgId: string;
1072
+ org_id: string;
1066
1073
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1067
- expiresAt: string;
1074
+ expires_at: string;
1068
1075
  /** 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 */
1069
1076
  quota: number;
1070
1077
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1071
- acceptedBy: string[];
1078
+ accepted_by: string[];
1072
1079
  roles: string[];
1073
1080
  teams: string[];
1074
1081
  /** 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. */
1075
1082
  status: "enabled" | "disabled";
1076
1083
  /** Timestamp when the invitation was created */
1077
- createdAt: string;
1084
+ created_at: string;
1078
1085
  /** Timestamp when the invitation was last updated */
1079
- updatedAt: string;
1086
+ updated_at: string;
1080
1087
  /** Timestamp when the invitation was deleted, if applicable */
1081
- deletedAt: string;
1088
+ deleted_at: string;
1082
1089
  };
1083
1090
  };
1091
+ type AcceptInvitationApiResponse = {
1092
+ /** Unique identifier for the invitation , is also used as the invitation code */
1093
+ id: string;
1094
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
1095
+ owner_id: string;
1096
+ /** 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 */
1097
+ is_default?: boolean;
1098
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
1099
+ name: string;
1100
+ /** 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 */
1101
+ description: string;
1102
+ emails: string[];
1103
+ /** ID of the organization to which the user is invited */
1104
+ org_id: string;
1105
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1106
+ expires_at: string;
1107
+ /** 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 */
1108
+ quota: number;
1109
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1110
+ accepted_by: string[];
1111
+ roles: string[];
1112
+ teams: string[];
1113
+ /** 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. */
1114
+ status: "enabled" | "disabled";
1115
+ /** Timestamp when the invitation was created */
1116
+ created_at: string;
1117
+ /** Timestamp when the invitation was last updated */
1118
+ updated_at: string;
1119
+ /** Timestamp when the invitation was deleted, if applicable */
1120
+ deleted_at: string;
1121
+ };
1122
+ type AcceptInvitationApiArg = {
1123
+ /** The ID of the invitation */
1124
+ invitationId: string;
1125
+ };
1084
1126
  declare const useImportDesignMutation: <R extends Record<string, any> = ({
1085
1127
  requestId?: undefined;
1086
1128
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -1236,7 +1278,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1236
1278
  isLoading: false;
1237
1279
  isSuccess: false;
1238
1280
  isError: true;
1239
- })) => R) | undefined;
1281
+ })) => R) | undefined; /** Date when the certificate was issued */
1240
1282
  fixedCacheKey?: string | undefined;
1241
1283
  } | 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> & {
1242
1284
  originalArgs?: ImportDesignApiArg | undefined;
@@ -1397,7 +1439,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
1397
1439
  isLoading: false;
1398
1440
  isSuccess: false;
1399
1441
  isError: true;
1400
- })) => R) | undefined;
1442
+ })) => R) | undefined; /** Date when the certificate was issued */
1401
1443
  fixedCacheKey?: string | undefined;
1402
1444
  } | 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> & {
1403
1445
  originalArgs?: RegisterMeshmodelsApiArg | undefined;
@@ -1721,7 +1763,7 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
1721
1763
  isLoading: false;
1722
1764
  isSuccess: false;
1723
1765
  isError: true;
1724
- })) => R) | undefined;
1766
+ })) => R) | undefined; /** Date when the certificate was issued */
1725
1767
  fixedCacheKey?: string | undefined;
1726
1768
  } | 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> & {
1727
1769
  originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
@@ -1882,7 +1924,7 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
1882
1924
  isLoading: false;
1883
1925
  isSuccess: false;
1884
1926
  isError: true;
1885
- })) => R) | undefined;
1927
+ })) => R) | undefined; /** Date when the certificate was issued */
1886
1928
  fixedCacheKey?: string | undefined;
1887
1929
  } | 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> & {
1888
1930
  originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
@@ -2043,7 +2085,7 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
2043
2085
  isLoading: false;
2044
2086
  isSuccess: false;
2045
2087
  isError: true;
2046
- })) => R) | undefined;
2088
+ })) => R) | undefined; /** Date when the certificate was issued */
2047
2089
  fixedCacheKey?: string | undefined;
2048
2090
  } | 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> & {
2049
2091
  originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
@@ -2856,7 +2898,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2856
2898
  isLoading: false;
2857
2899
  isSuccess: false;
2858
2900
  isError: true;
2859
- })) => R) | undefined;
2901
+ })) => R) | undefined; /** Date when the certificate was issued */
2860
2902
  fixedCacheKey?: string | undefined;
2861
2903
  } | 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> & {
2862
2904
  originalArgs?: PostApiWorkspacesApiArg | undefined;
@@ -3180,7 +3222,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3180
3222
  isLoading: false;
3181
3223
  isSuccess: false;
3182
3224
  isError: true;
3183
- })) => R) | undefined;
3225
+ })) => R) | undefined; /** Date when the certificate was issued */
3184
3226
  fixedCacheKey?: string | undefined;
3185
3227
  } | 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> & {
3186
3228
  originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
@@ -3341,7 +3383,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3341
3383
  isLoading: false;
3342
3384
  isSuccess: false;
3343
3385
  isError: true;
3344
- })) => R) | undefined;
3386
+ })) => R) | undefined; /** Date when the certificate was issued */
3345
3387
  fixedCacheKey?: string | undefined;
3346
3388
  } | 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> & {
3347
3389
  originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
@@ -3502,7 +3544,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3502
3544
  isLoading: false;
3503
3545
  isSuccess: false;
3504
3546
  isError: true;
3505
- })) => R) | undefined;
3547
+ })) => R) | undefined; /** Date when the certificate was issued */
3506
3548
  fixedCacheKey?: string | undefined;
3507
3549
  } | 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> & {
3508
3550
  originalArgs?: CreateEnvironmentApiArg | undefined;
@@ -4315,7 +4357,7 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
4315
4357
  isLoading: false;
4316
4358
  isSuccess: false;
4317
4359
  isError: true;
4318
- })) => R) | undefined;
4360
+ })) => R) | undefined; /** Date when the certificate was issued */
4319
4361
  fixedCacheKey?: string | undefined;
4320
4362
  } | 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> & {
4321
4363
  originalArgs?: RegisterToAcademyContentApiArg | undefined;
@@ -4639,7 +4681,7 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
4639
4681
  isLoading: false;
4640
4682
  isSuccess: false;
4641
4683
  isError: true;
4642
- })) => R) | undefined;
4684
+ })) => R) | undefined; /** Date when the certificate was issued */
4643
4685
  fixedCacheKey?: string | undefined;
4644
4686
  } | 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> & {
4645
4687
  originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
@@ -4800,7 +4842,7 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
4800
4842
  isLoading: false;
4801
4843
  isSuccess: false;
4802
4844
  isError: true;
4803
- })) => R) | undefined;
4845
+ })) => R) | undefined; /** Date when the certificate was issued */
4804
4846
  fixedCacheKey?: string | undefined;
4805
4847
  } | 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> & {
4806
4848
  originalArgs?: SubmitQuizApiArg | undefined;
@@ -5458,6 +5500,167 @@ declare const useGetInvitationQuery: <R extends Record<string, any> = ({
5458
5500
  }) | undefined) => [R][R extends any ? 0 : never] & {
5459
5501
  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
5502
  };
5503
+ declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
5504
+ requestId?: undefined;
5505
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5506
+ data?: undefined;
5507
+ error?: undefined;
5508
+ endpointName?: string | undefined;
5509
+ startedTimeStamp?: undefined;
5510
+ fulfilledTimeStamp?: undefined;
5511
+ } & {
5512
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5513
+ isUninitialized: true;
5514
+ isLoading: false;
5515
+ isSuccess: false;
5516
+ isError: false;
5517
+ }) | ({
5518
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5519
+ } & Omit<{
5520
+ requestId: string;
5521
+ data?: unknown;
5522
+ error?: unknown;
5523
+ endpointName: string;
5524
+ startedTimeStamp: number;
5525
+ fulfilledTimeStamp?: number | undefined;
5526
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5527
+ requestId: string;
5528
+ data?: unknown;
5529
+ error?: unknown;
5530
+ endpointName: string;
5531
+ startedTimeStamp: number;
5532
+ fulfilledTimeStamp?: number | undefined;
5533
+ }, "data" | "fulfilledTimeStamp">> & {
5534
+ error: undefined;
5535
+ } & {
5536
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5537
+ isUninitialized: false;
5538
+ isLoading: false;
5539
+ isSuccess: true;
5540
+ isError: false;
5541
+ }) | ({
5542
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5543
+ } & {
5544
+ requestId: string;
5545
+ data?: unknown;
5546
+ error?: unknown;
5547
+ endpointName: string;
5548
+ startedTimeStamp: number;
5549
+ fulfilledTimeStamp?: number | undefined;
5550
+ } & {
5551
+ data?: undefined;
5552
+ } & {
5553
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5554
+ isUninitialized: false;
5555
+ isLoading: true;
5556
+ isSuccess: false;
5557
+ isError: false;
5558
+ }) | ({
5559
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5560
+ } & Omit<{
5561
+ requestId: string;
5562
+ data?: unknown;
5563
+ error?: unknown;
5564
+ endpointName: string;
5565
+ startedTimeStamp: number;
5566
+ fulfilledTimeStamp?: number | undefined;
5567
+ }, "error"> & Required<Pick<{
5568
+ requestId: string;
5569
+ data?: unknown;
5570
+ error?: unknown;
5571
+ endpointName: string;
5572
+ startedTimeStamp: number;
5573
+ fulfilledTimeStamp?: number | undefined;
5574
+ }, "error">> & {
5575
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5576
+ isUninitialized: false;
5577
+ isLoading: false;
5578
+ isSuccess: false;
5579
+ isError: true;
5580
+ })>(options?: {
5581
+ selectFromResult?: ((state: ({
5582
+ requestId?: undefined;
5583
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5584
+ data?: undefined;
5585
+ error?: undefined;
5586
+ endpointName?: string | undefined;
5587
+ startedTimeStamp?: undefined;
5588
+ fulfilledTimeStamp?: undefined;
5589
+ } & {
5590
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5591
+ isUninitialized: true;
5592
+ isLoading: false;
5593
+ isSuccess: false;
5594
+ isError: false;
5595
+ }) | ({
5596
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5597
+ } & Omit<{
5598
+ requestId: string;
5599
+ data?: unknown;
5600
+ error?: unknown;
5601
+ endpointName: string;
5602
+ startedTimeStamp: number;
5603
+ fulfilledTimeStamp?: number | undefined;
5604
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5605
+ requestId: string;
5606
+ data?: unknown;
5607
+ error?: unknown;
5608
+ endpointName: string;
5609
+ startedTimeStamp: number;
5610
+ fulfilledTimeStamp?: number | undefined;
5611
+ }, "data" | "fulfilledTimeStamp">> & {
5612
+ error: undefined;
5613
+ } & {
5614
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5615
+ isUninitialized: false;
5616
+ isLoading: false;
5617
+ isSuccess: true;
5618
+ isError: false;
5619
+ }) | ({
5620
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5621
+ } & {
5622
+ requestId: string;
5623
+ data?: unknown;
5624
+ error?: unknown;
5625
+ endpointName: string;
5626
+ startedTimeStamp: number;
5627
+ fulfilledTimeStamp?: number | undefined;
5628
+ } & {
5629
+ data?: undefined;
5630
+ } & {
5631
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5632
+ isUninitialized: false;
5633
+ isLoading: true;
5634
+ isSuccess: false;
5635
+ isError: false;
5636
+ }) | ({
5637
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5638
+ } & Omit<{
5639
+ requestId: string;
5640
+ data?: unknown;
5641
+ error?: unknown;
5642
+ endpointName: string;
5643
+ startedTimeStamp: number;
5644
+ fulfilledTimeStamp?: number | undefined;
5645
+ }, "error"> & Required<Pick<{
5646
+ requestId: string;
5647
+ data?: unknown;
5648
+ error?: unknown;
5649
+ endpointName: string;
5650
+ startedTimeStamp: number;
5651
+ fulfilledTimeStamp?: number | undefined;
5652
+ }, "error">> & {
5653
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5654
+ isUninitialized: false;
5655
+ isLoading: false;
5656
+ isSuccess: false;
5657
+ isError: true;
5658
+ })) => R) | undefined; /** Date when the certificate was issued */
5659
+ fixedCacheKey?: string | undefined;
5660
+ } | 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
+ originalArgs?: DeleteInvitationApiArg | undefined;
5662
+ reset: () => void;
5663
+ }];
5461
5664
  declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
5462
5665
  requestId?: undefined;
5463
5666
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -5613,7 +5816,7 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
5613
5816
  isLoading: false;
5614
5817
  isSuccess: false;
5615
5818
  isError: true;
5616
- })) => R) | undefined;
5819
+ })) => R) | undefined; /** Date when the certificate was issued */
5617
5820
  fixedCacheKey?: string | undefined;
5618
5821
  } | 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
5822
  originalArgs?: UpdateInvitationApiArg | undefined;
@@ -5937,11 +6140,172 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
5937
6140
  isLoading: false;
5938
6141
  isSuccess: false;
5939
6142
  isError: true;
5940
- })) => R) | undefined;
6143
+ })) => R) | undefined; /** Date when the certificate was issued */
5941
6144
  fixedCacheKey?: string | undefined;
5942
6145
  } | 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> & {
5943
6146
  originalArgs?: CreateInvitationApiArg | undefined;
5944
6147
  reset: () => void;
5945
6148
  }];
6149
+ declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
6150
+ requestId?: undefined;
6151
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
6152
+ data?: undefined;
6153
+ error?: undefined;
6154
+ endpointName?: string | undefined;
6155
+ startedTimeStamp?: undefined;
6156
+ fulfilledTimeStamp?: undefined;
6157
+ } & {
6158
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
6159
+ isUninitialized: true;
6160
+ isLoading: false;
6161
+ isSuccess: false;
6162
+ isError: false;
6163
+ }) | ({
6164
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
6165
+ } & Omit<{
6166
+ requestId: string;
6167
+ data?: AcceptInvitationApiResponse | undefined;
6168
+ error?: unknown;
6169
+ endpointName: string;
6170
+ startedTimeStamp: number;
6171
+ fulfilledTimeStamp?: number | undefined;
6172
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
6173
+ requestId: string;
6174
+ data?: AcceptInvitationApiResponse | undefined;
6175
+ error?: unknown;
6176
+ endpointName: string;
6177
+ startedTimeStamp: number;
6178
+ fulfilledTimeStamp?: number | undefined;
6179
+ }, "data" | "fulfilledTimeStamp">> & {
6180
+ error: undefined;
6181
+ } & {
6182
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
6183
+ isUninitialized: false;
6184
+ isLoading: false;
6185
+ isSuccess: true;
6186
+ isError: false;
6187
+ }) | ({
6188
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
6189
+ } & {
6190
+ requestId: string;
6191
+ data?: AcceptInvitationApiResponse | undefined;
6192
+ error?: unknown;
6193
+ endpointName: string;
6194
+ startedTimeStamp: number;
6195
+ fulfilledTimeStamp?: number | undefined;
6196
+ } & {
6197
+ data?: undefined;
6198
+ } & {
6199
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
6200
+ isUninitialized: false;
6201
+ isLoading: true;
6202
+ isSuccess: false;
6203
+ isError: false;
6204
+ }) | ({
6205
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
6206
+ } & Omit<{
6207
+ requestId: string;
6208
+ data?: AcceptInvitationApiResponse | undefined;
6209
+ error?: unknown;
6210
+ endpointName: string;
6211
+ startedTimeStamp: number;
6212
+ fulfilledTimeStamp?: number | undefined;
6213
+ }, "error"> & Required<Pick<{
6214
+ requestId: string;
6215
+ data?: AcceptInvitationApiResponse | undefined;
6216
+ error?: unknown;
6217
+ endpointName: string;
6218
+ startedTimeStamp: number;
6219
+ fulfilledTimeStamp?: number | undefined;
6220
+ }, "error">> & {
6221
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
6222
+ isUninitialized: false;
6223
+ isLoading: false;
6224
+ isSuccess: false;
6225
+ isError: true;
6226
+ })>(options?: {
6227
+ selectFromResult?: ((state: ({
6228
+ requestId?: undefined;
6229
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
6230
+ data?: undefined;
6231
+ error?: undefined;
6232
+ endpointName?: string | undefined;
6233
+ startedTimeStamp?: undefined;
6234
+ fulfilledTimeStamp?: undefined;
6235
+ } & {
6236
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
6237
+ isUninitialized: true;
6238
+ isLoading: false;
6239
+ isSuccess: false;
6240
+ isError: false;
6241
+ }) | ({
6242
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
6243
+ } & Omit<{
6244
+ requestId: string;
6245
+ data?: AcceptInvitationApiResponse | undefined;
6246
+ error?: unknown;
6247
+ endpointName: string;
6248
+ startedTimeStamp: number;
6249
+ fulfilledTimeStamp?: number | undefined;
6250
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
6251
+ requestId: string;
6252
+ data?: AcceptInvitationApiResponse | undefined;
6253
+ error?: unknown;
6254
+ endpointName: string;
6255
+ startedTimeStamp: number;
6256
+ fulfilledTimeStamp?: number | undefined;
6257
+ }, "data" | "fulfilledTimeStamp">> & {
6258
+ error: undefined;
6259
+ } & {
6260
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
6261
+ isUninitialized: false;
6262
+ isLoading: false;
6263
+ isSuccess: true;
6264
+ isError: false;
6265
+ }) | ({
6266
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
6267
+ } & {
6268
+ requestId: string;
6269
+ data?: AcceptInvitationApiResponse | undefined;
6270
+ error?: unknown;
6271
+ endpointName: string;
6272
+ startedTimeStamp: number;
6273
+ fulfilledTimeStamp?: number | undefined;
6274
+ } & {
6275
+ data?: undefined;
6276
+ } & {
6277
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
6278
+ isUninitialized: false;
6279
+ isLoading: true;
6280
+ isSuccess: false;
6281
+ isError: false;
6282
+ }) | ({
6283
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
6284
+ } & Omit<{
6285
+ requestId: string;
6286
+ data?: AcceptInvitationApiResponse | undefined;
6287
+ error?: unknown;
6288
+ endpointName: string;
6289
+ startedTimeStamp: number;
6290
+ fulfilledTimeStamp?: number | undefined;
6291
+ }, "error"> & Required<Pick<{
6292
+ requestId: string;
6293
+ data?: AcceptInvitationApiResponse | undefined;
6294
+ error?: unknown;
6295
+ endpointName: string;
6296
+ startedTimeStamp: number;
6297
+ fulfilledTimeStamp?: number | undefined;
6298
+ }, "error">> & {
6299
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
6300
+ isUninitialized: false;
6301
+ isLoading: false;
6302
+ isSuccess: false;
6303
+ isError: true;
6304
+ })) => R) | undefined; /** Date when the certificate was issued */
6305
+ fixedCacheKey?: string | undefined;
6306
+ } | 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
+ originalArgs?: AcceptInvitationApiArg | undefined;
6308
+ reset: () => void;
6309
+ }];
5946
6310
 
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 };
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 };