@meshery/schemas 0.8.61 → 0.8.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cloudApi.d.mts +471 -107
- package/dist/cloudApi.d.ts +471 -107
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/index.d.mts +279 -69
- package/dist/index.d.ts +279 -69
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/mesheryApi.d.mts +88 -88
- package/dist/mesheryApi.d.ts +88 -88
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
897
|
+
org_id: string;
|
|
896
898
|
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
897
|
-
|
|
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
|
-
quota
|
|
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
|
-
|
|
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
|
-
|
|
909
|
+
created_at: string;
|
|
908
910
|
/** Timestamp when the invitation was last updated */
|
|
909
|
-
|
|
911
|
+
updated_at: string;
|
|
910
912
|
/** Timestamp when the invitation was deleted, if applicable */
|
|
911
|
-
|
|
913
|
+
deleted_at: string;
|
|
912
914
|
};
|
|
913
915
|
type GetInvitationApiArg = {
|
|
914
|
-
/** The ID of the invitation
|
|
915
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
937
|
+
org_id: string;
|
|
931
938
|
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
932
|
-
|
|
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
|
-
quota
|
|
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
|
-
|
|
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
|
-
|
|
949
|
+
created_at: string;
|
|
943
950
|
/** Timestamp when the invitation was last updated */
|
|
944
|
-
|
|
951
|
+
updated_at: string;
|
|
945
952
|
/** Timestamp when the invitation was deleted, if applicable */
|
|
946
|
-
|
|
953
|
+
deleted_at: string;
|
|
947
954
|
};
|
|
948
955
|
type UpdateInvitationApiArg = {
|
|
949
|
-
/** The ID of the invitation
|
|
950
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
971
|
+
org_id: string;
|
|
965
972
|
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
966
|
-
|
|
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
|
-
quota
|
|
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
|
-
|
|
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
|
-
|
|
983
|
+
created_at: string;
|
|
977
984
|
/** Timestamp when the invitation was last updated */
|
|
978
|
-
|
|
985
|
+
updated_at: string;
|
|
979
986
|
/** Timestamp when the invitation was deleted, if applicable */
|
|
980
|
-
|
|
987
|
+
deleted_at: string;
|
|
981
988
|
};
|
|
982
989
|
};
|
|
983
990
|
type GetInvitationsApiResponse = {
|
|
984
991
|
/** List of invitations */
|
|
985
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1005
|
+
org_id: string;
|
|
999
1006
|
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
1000
|
-
|
|
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
|
-
quota
|
|
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
|
-
|
|
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
|
-
|
|
1017
|
+
created_at: string;
|
|
1011
1018
|
/** Timestamp when the invitation was last updated */
|
|
1012
|
-
|
|
1019
|
+
updated_at: string;
|
|
1013
1020
|
/** Timestamp when the invitation was deleted, if applicable */
|
|
1014
|
-
|
|
1021
|
+
deleted_at: string;
|
|
1015
1022
|
}[];
|
|
1016
1023
|
/** Total number of invitations available */
|
|
1017
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1040
|
+
org_id: string;
|
|
1034
1041
|
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
1035
|
-
|
|
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
|
-
quota
|
|
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
|
-
|
|
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
|
-
|
|
1052
|
+
created_at: string;
|
|
1046
1053
|
/** Timestamp when the invitation was last updated */
|
|
1047
|
-
|
|
1054
|
+
updated_at: string;
|
|
1048
1055
|
/** Timestamp when the invitation was deleted, if applicable */
|
|
1049
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1072
|
+
org_id: string;
|
|
1066
1073
|
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
1067
|
-
|
|
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
|
-
quota
|
|
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
|
-
|
|
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
|
-
|
|
1084
|
+
created_at: string;
|
|
1078
1085
|
/** Timestamp when the invitation was last updated */
|
|
1079
|
-
|
|
1086
|
+
updated_at: string;
|
|
1080
1087
|
/** Timestamp when the invitation was deleted, if applicable */
|
|
1081
|
-
|
|
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,15 +1439,15 @@ 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;
|
|
1404
1446
|
reset: () => void;
|
|
1405
1447
|
}];
|
|
1406
1448
|
declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
|
|
1407
|
-
data?: undefined;
|
|
1408
1449
|
error?: undefined;
|
|
1450
|
+
data?: undefined;
|
|
1409
1451
|
fulfilledTimeStamp?: undefined;
|
|
1410
1452
|
originalArgs?: undefined;
|
|
1411
1453
|
requestId?: undefined;
|
|
@@ -1486,8 +1528,8 @@ declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
|
|
|
1486
1528
|
} & {
|
|
1487
1529
|
skip?: boolean | undefined;
|
|
1488
1530
|
selectFromResult?: ((state: ({
|
|
1489
|
-
data?: undefined;
|
|
1490
1531
|
error?: undefined;
|
|
1532
|
+
data?: undefined;
|
|
1491
1533
|
fulfilledTimeStamp?: undefined;
|
|
1492
1534
|
originalArgs?: undefined;
|
|
1493
1535
|
requestId?: 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,15 +2085,15 @@ 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;
|
|
2050
2092
|
reset: () => void;
|
|
2051
2093
|
}];
|
|
2052
2094
|
declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
2053
|
-
data?: undefined;
|
|
2054
2095
|
error?: undefined;
|
|
2096
|
+
data?: undefined;
|
|
2055
2097
|
fulfilledTimeStamp?: undefined;
|
|
2056
2098
|
originalArgs?: undefined;
|
|
2057
2099
|
requestId?: undefined;
|
|
@@ -2132,8 +2174,8 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
|
2132
2174
|
} & {
|
|
2133
2175
|
skip?: boolean | undefined;
|
|
2134
2176
|
selectFromResult?: ((state: ({
|
|
2135
|
-
data?: undefined;
|
|
2136
2177
|
error?: undefined;
|
|
2178
|
+
data?: undefined;
|
|
2137
2179
|
fulfilledTimeStamp?: undefined;
|
|
2138
2180
|
originalArgs?: undefined;
|
|
2139
2181
|
requestId?: undefined;
|
|
@@ -2213,8 +2255,8 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
|
2213
2255
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetPlansApiResponse, "api", unknown>>;
|
|
2214
2256
|
};
|
|
2215
2257
|
declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
|
|
2216
|
-
data?: undefined;
|
|
2217
2258
|
error?: undefined;
|
|
2259
|
+
data?: undefined;
|
|
2218
2260
|
fulfilledTimeStamp?: undefined;
|
|
2219
2261
|
originalArgs?: undefined;
|
|
2220
2262
|
requestId?: undefined;
|
|
@@ -2295,8 +2337,8 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
|
|
|
2295
2337
|
} & {
|
|
2296
2338
|
skip?: boolean | undefined;
|
|
2297
2339
|
selectFromResult?: ((state: ({
|
|
2298
|
-
data?: undefined;
|
|
2299
2340
|
error?: undefined;
|
|
2341
|
+
data?: undefined;
|
|
2300
2342
|
fulfilledTimeStamp?: undefined;
|
|
2301
2343
|
originalArgs?: undefined;
|
|
2302
2344
|
requestId?: undefined;
|
|
@@ -2376,8 +2418,8 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
|
|
|
2376
2418
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetFeaturesApiResponse, "api", unknown>>;
|
|
2377
2419
|
};
|
|
2378
2420
|
declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any> = ({
|
|
2379
|
-
data?: undefined;
|
|
2380
2421
|
error?: undefined;
|
|
2422
|
+
data?: undefined;
|
|
2381
2423
|
fulfilledTimeStamp?: undefined;
|
|
2382
2424
|
originalArgs?: undefined;
|
|
2383
2425
|
requestId?: undefined;
|
|
@@ -2458,8 +2500,8 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2458
2500
|
} & {
|
|
2459
2501
|
skip?: boolean | undefined;
|
|
2460
2502
|
selectFromResult?: ((state: ({
|
|
2461
|
-
data?: undefined;
|
|
2462
2503
|
error?: undefined;
|
|
2504
|
+
data?: undefined;
|
|
2463
2505
|
fulfilledTimeStamp?: undefined;
|
|
2464
2506
|
originalArgs?: undefined;
|
|
2465
2507
|
requestId?: undefined;
|
|
@@ -2539,8 +2581,8 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2539
2581
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetFeaturesByOrganizationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetFeaturesByOrganizationApiResponse, "api", unknown>>;
|
|
2540
2582
|
};
|
|
2541
2583
|
declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
2542
|
-
data?: undefined;
|
|
2543
2584
|
error?: undefined;
|
|
2585
|
+
data?: undefined;
|
|
2544
2586
|
fulfilledTimeStamp?: undefined;
|
|
2545
2587
|
originalArgs?: undefined;
|
|
2546
2588
|
requestId?: undefined;
|
|
@@ -2621,8 +2663,8 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2621
2663
|
} & {
|
|
2622
2664
|
skip?: boolean | undefined;
|
|
2623
2665
|
selectFromResult?: ((state: ({
|
|
2624
|
-
data?: undefined;
|
|
2625
2666
|
error?: undefined;
|
|
2667
|
+
data?: undefined;
|
|
2626
2668
|
fulfilledTimeStamp?: undefined;
|
|
2627
2669
|
originalArgs?: undefined;
|
|
2628
2670
|
requestId?: undefined;
|
|
@@ -2856,15 +2898,15 @@ 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;
|
|
2863
2905
|
reset: () => void;
|
|
2864
2906
|
}];
|
|
2865
2907
|
declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
2866
|
-
data?: undefined;
|
|
2867
2908
|
error?: undefined;
|
|
2909
|
+
data?: undefined;
|
|
2868
2910
|
fulfilledTimeStamp?: undefined;
|
|
2869
2911
|
originalArgs?: undefined;
|
|
2870
2912
|
requestId?: undefined;
|
|
@@ -2945,8 +2987,8 @@ declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
|
2945
2987
|
} & {
|
|
2946
2988
|
skip?: boolean | undefined;
|
|
2947
2989
|
selectFromResult?: ((state: ({
|
|
2948
|
-
data?: undefined;
|
|
2949
2990
|
error?: undefined;
|
|
2991
|
+
data?: undefined;
|
|
2950
2992
|
fulfilledTimeStamp?: undefined;
|
|
2951
2993
|
originalArgs?: undefined;
|
|
2952
2994
|
requestId?: 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,15 +3544,15 @@ 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;
|
|
3509
3551
|
reset: () => void;
|
|
3510
3552
|
}];
|
|
3511
3553
|
declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
3512
|
-
data?: undefined;
|
|
3513
3554
|
error?: undefined;
|
|
3555
|
+
data?: undefined;
|
|
3514
3556
|
fulfilledTimeStamp?: undefined;
|
|
3515
3557
|
originalArgs?: undefined;
|
|
3516
3558
|
requestId?: undefined;
|
|
@@ -3591,8 +3633,8 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3591
3633
|
} & {
|
|
3592
3634
|
skip?: boolean | undefined;
|
|
3593
3635
|
selectFromResult?: ((state: ({
|
|
3594
|
-
data?: undefined;
|
|
3595
3636
|
error?: undefined;
|
|
3637
|
+
data?: undefined;
|
|
3596
3638
|
fulfilledTimeStamp?: undefined;
|
|
3597
3639
|
originalArgs?: undefined;
|
|
3598
3640
|
requestId?: undefined;
|
|
@@ -3672,8 +3714,8 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3672
3714
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetEnvironmentsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetEnvironmentsApiResponse, "api", unknown>>;
|
|
3673
3715
|
};
|
|
3674
3716
|
declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
3675
|
-
data?: undefined;
|
|
3676
3717
|
error?: undefined;
|
|
3718
|
+
data?: undefined;
|
|
3677
3719
|
fulfilledTimeStamp?: undefined;
|
|
3678
3720
|
originalArgs?: undefined;
|
|
3679
3721
|
requestId?: undefined;
|
|
@@ -3754,8 +3796,8 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
3754
3796
|
} & {
|
|
3755
3797
|
skip?: boolean | undefined;
|
|
3756
3798
|
selectFromResult?: ((state: ({
|
|
3757
|
-
data?: undefined;
|
|
3758
3799
|
error?: undefined;
|
|
3800
|
+
data?: undefined;
|
|
3759
3801
|
fulfilledTimeStamp?: undefined;
|
|
3760
3802
|
originalArgs?: undefined;
|
|
3761
3803
|
requestId?: undefined;
|
|
@@ -3835,8 +3877,8 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
3835
3877
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetMyAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>;
|
|
3836
3878
|
};
|
|
3837
3879
|
declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
3838
|
-
data?: undefined;
|
|
3839
3880
|
error?: undefined;
|
|
3881
|
+
data?: undefined;
|
|
3840
3882
|
fulfilledTimeStamp?: undefined;
|
|
3841
3883
|
originalArgs?: undefined;
|
|
3842
3884
|
requestId?: undefined;
|
|
@@ -3917,8 +3959,8 @@ declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
3917
3959
|
} & {
|
|
3918
3960
|
skip?: boolean | undefined;
|
|
3919
3961
|
selectFromResult?: ((state: ({
|
|
3920
|
-
data?: undefined;
|
|
3921
3962
|
error?: undefined;
|
|
3963
|
+
data?: undefined;
|
|
3922
3964
|
fulfilledTimeStamp?: undefined;
|
|
3923
3965
|
originalArgs?: undefined;
|
|
3924
3966
|
requestId?: undefined;
|
|
@@ -3998,8 +4040,8 @@ declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
3998
4040
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>;
|
|
3999
4041
|
};
|
|
4000
4042
|
declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string, any> = ({
|
|
4001
|
-
data?: undefined;
|
|
4002
4043
|
error?: undefined;
|
|
4044
|
+
data?: undefined;
|
|
4003
4045
|
fulfilledTimeStamp?: undefined;
|
|
4004
4046
|
originalArgs?: undefined;
|
|
4005
4047
|
requestId?: undefined;
|
|
@@ -4080,8 +4122,8 @@ declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string,
|
|
|
4080
4122
|
} & {
|
|
4081
4123
|
skip?: boolean | undefined;
|
|
4082
4124
|
selectFromResult?: ((state: ({
|
|
4083
|
-
data?: undefined;
|
|
4084
4125
|
error?: undefined;
|
|
4126
|
+
data?: undefined;
|
|
4085
4127
|
fulfilledTimeStamp?: undefined;
|
|
4086
4128
|
originalArgs?: undefined;
|
|
4087
4129
|
requestId?: undefined;
|
|
@@ -4315,15 +4357,15 @@ 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;
|
|
4322
4364
|
reset: () => void;
|
|
4323
4365
|
}];
|
|
4324
4366
|
declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
|
|
4325
|
-
data?: undefined;
|
|
4326
4367
|
error?: undefined;
|
|
4368
|
+
data?: undefined;
|
|
4327
4369
|
fulfilledTimeStamp?: undefined;
|
|
4328
4370
|
originalArgs?: undefined;
|
|
4329
4371
|
requestId?: undefined;
|
|
@@ -4404,8 +4446,8 @@ declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<s
|
|
|
4404
4446
|
} & {
|
|
4405
4447
|
skip?: boolean | undefined;
|
|
4406
4448
|
selectFromResult?: ((state: ({
|
|
4407
|
-
data?: undefined;
|
|
4408
4449
|
error?: undefined;
|
|
4450
|
+
data?: undefined;
|
|
4409
4451
|
fulfilledTimeStamp?: undefined;
|
|
4410
4452
|
originalArgs?: undefined;
|
|
4411
4453
|
requestId?: 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,15 +4842,15 @@ 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;
|
|
4807
4849
|
reset: () => void;
|
|
4808
4850
|
}];
|
|
4809
4851
|
declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
|
|
4810
|
-
data?: undefined;
|
|
4811
4852
|
error?: undefined;
|
|
4853
|
+
data?: undefined;
|
|
4812
4854
|
fulfilledTimeStamp?: undefined;
|
|
4813
4855
|
originalArgs?: undefined;
|
|
4814
4856
|
requestId?: undefined;
|
|
@@ -4889,8 +4931,8 @@ declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = (
|
|
|
4889
4931
|
} & {
|
|
4890
4932
|
skip?: boolean | undefined;
|
|
4891
4933
|
selectFromResult?: ((state: ({
|
|
4892
|
-
data?: undefined;
|
|
4893
4934
|
error?: undefined;
|
|
4935
|
+
data?: undefined;
|
|
4894
4936
|
fulfilledTimeStamp?: undefined;
|
|
4895
4937
|
originalArgs?: undefined;
|
|
4896
4938
|
requestId?: undefined;
|
|
@@ -4970,8 +5012,8 @@ declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = (
|
|
|
4970
5012
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, object, "api", unknown>>;
|
|
4971
5013
|
};
|
|
4972
5014
|
declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, any> = ({
|
|
4973
|
-
data?: undefined;
|
|
4974
5015
|
error?: undefined;
|
|
5016
|
+
data?: undefined;
|
|
4975
5017
|
fulfilledTimeStamp?: undefined;
|
|
4976
5018
|
originalArgs?: undefined;
|
|
4977
5019
|
requestId?: undefined;
|
|
@@ -5052,8 +5094,8 @@ declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, an
|
|
|
5052
5094
|
} & {
|
|
5053
5095
|
skip?: boolean | undefined;
|
|
5054
5096
|
selectFromResult?: ((state: ({
|
|
5055
|
-
data?: undefined;
|
|
5056
5097
|
error?: undefined;
|
|
5098
|
+
data?: undefined;
|
|
5057
5099
|
fulfilledTimeStamp?: undefined;
|
|
5058
5100
|
originalArgs?: undefined;
|
|
5059
5101
|
requestId?: undefined;
|
|
@@ -5133,8 +5175,8 @@ declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, an
|
|
|
5133
5175
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetAcademyAdminRegistrationsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetAcademyAdminRegistrationsApiResponse, "api", unknown>>;
|
|
5134
5176
|
};
|
|
5135
5177
|
declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
|
|
5136
|
-
data?: undefined;
|
|
5137
5178
|
error?: undefined;
|
|
5179
|
+
data?: undefined;
|
|
5138
5180
|
fulfilledTimeStamp?: undefined;
|
|
5139
5181
|
originalArgs?: undefined;
|
|
5140
5182
|
requestId?: undefined;
|
|
@@ -5215,8 +5257,8 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
|
|
|
5215
5257
|
} & {
|
|
5216
5258
|
skip?: boolean | undefined;
|
|
5217
5259
|
selectFromResult?: ((state: ({
|
|
5218
|
-
data?: undefined;
|
|
5219
5260
|
error?: undefined;
|
|
5261
|
+
data?: undefined;
|
|
5220
5262
|
fulfilledTimeStamp?: undefined;
|
|
5221
5263
|
originalArgs?: undefined;
|
|
5222
5264
|
requestId?: undefined;
|
|
@@ -5296,8 +5338,8 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
|
|
|
5296
5338
|
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>>;
|
|
5297
5339
|
};
|
|
5298
5340
|
declare const useGetInvitationQuery: <R extends Record<string, any> = ({
|
|
5299
|
-
data?: undefined;
|
|
5300
5341
|
error?: undefined;
|
|
5342
|
+
data?: undefined;
|
|
5301
5343
|
fulfilledTimeStamp?: undefined;
|
|
5302
5344
|
originalArgs?: undefined;
|
|
5303
5345
|
requestId?: undefined;
|
|
@@ -5378,8 +5420,8 @@ declare const useGetInvitationQuery: <R extends Record<string, any> = ({
|
|
|
5378
5420
|
} & {
|
|
5379
5421
|
skip?: boolean | undefined;
|
|
5380
5422
|
selectFromResult?: ((state: ({
|
|
5381
|
-
data?: undefined;
|
|
5382
5423
|
error?: undefined;
|
|
5424
|
+
data?: undefined;
|
|
5383
5425
|
fulfilledTimeStamp?: undefined;
|
|
5384
5426
|
originalArgs?: undefined;
|
|
5385
5427
|
requestId?: 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,15 +5816,15 @@ 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;
|
|
5620
5823
|
reset: () => void;
|
|
5621
5824
|
}];
|
|
5622
5825
|
declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
5623
|
-
data?: undefined;
|
|
5624
5826
|
error?: undefined;
|
|
5827
|
+
data?: undefined;
|
|
5625
5828
|
fulfilledTimeStamp?: undefined;
|
|
5626
5829
|
originalArgs?: undefined;
|
|
5627
5830
|
requestId?: undefined;
|
|
@@ -5702,8 +5905,8 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5702
5905
|
} & {
|
|
5703
5906
|
skip?: boolean | undefined;
|
|
5704
5907
|
selectFromResult?: ((state: ({
|
|
5705
|
-
data?: undefined;
|
|
5706
5908
|
error?: undefined;
|
|
5909
|
+
data?: undefined;
|
|
5707
5910
|
fulfilledTimeStamp?: undefined;
|
|
5708
5911
|
originalArgs?: undefined;
|
|
5709
5912
|
requestId?: 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 };
|