@meshery/schemas 0.8.60 → 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.
- package/dist/cloudApi.d.mts +893 -109
- package/dist/cloudApi.d.ts +893 -109
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/index.d.mts +972 -160
- package/dist/index.d.ts +972 -160
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -28,8 +28,12 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
|
|
|
28
28
|
getAcademyAdminSummary: _reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, object, "api", unknown>;
|
|
29
29
|
getAcademyAdminRegistrations: _reduxjs_toolkit_query.QueryDefinition<GetAcademyAdminRegistrationsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetAcademyAdminRegistrationsApiResponse, "api", unknown>;
|
|
30
30
|
getCertificateById: _reduxjs_toolkit_query.QueryDefinition<GetCertificateByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetCertificateByIdApiResponse, "api", unknown>;
|
|
31
|
+
getInvitation: _reduxjs_toolkit_query.QueryDefinition<GetInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationApiResponse, "api", unknown>;
|
|
32
|
+
deleteInvitation: _reduxjs_toolkit_query.MutationDefinition<DeleteInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>;
|
|
33
|
+
updateInvitation: _reduxjs_toolkit_query.MutationDefinition<UpdateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, UpdateInvitationApiResponse, "api", unknown>;
|
|
31
34
|
getInvitations: _reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationsApiResponse, "api", unknown>;
|
|
32
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>;
|
|
33
37
|
}, "api", never, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
|
|
34
38
|
|
|
35
39
|
type ImportDesignApiResponse = {
|
|
@@ -434,7 +438,7 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
|
|
|
434
438
|
title: string;
|
|
435
439
|
/** Description of the learning path */
|
|
436
440
|
description: string;
|
|
437
|
-
/**
|
|
441
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
438
442
|
banner?: string | null;
|
|
439
443
|
/** Canonical URL for the learning path */
|
|
440
444
|
permalink: string;
|
|
@@ -487,9 +491,9 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
|
|
|
487
491
|
permalink: string;
|
|
488
492
|
/** Course description */
|
|
489
493
|
description: string;
|
|
490
|
-
/**
|
|
494
|
+
/** A numeric value to determine the display order. A smaller number appears first. If not specified, items will be sorted alphabetically by title. */
|
|
491
495
|
weight?: number;
|
|
492
|
-
/**
|
|
496
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
493
497
|
banner?: string | null;
|
|
494
498
|
/** Type of the content (e.g., learning-path, challenge, certification) */
|
|
495
499
|
type?: "learning-path" | "challenge" | "certification";
|
|
@@ -877,101 +881,248 @@ type GetCertificateByIdApiArg = {
|
|
|
877
881
|
/** The ID of the certificate to retrieve */
|
|
878
882
|
certificateId: string;
|
|
879
883
|
};
|
|
884
|
+
type GetInvitationApiResponse = {
|
|
885
|
+
/** Unique identifier for the invitation , is also used as the invitation code */
|
|
886
|
+
id: string;
|
|
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 */
|
|
888
|
+
owner_id: string;
|
|
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 */
|
|
890
|
+
is_default?: boolean;
|
|
891
|
+
/** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
|
|
892
|
+
name: string;
|
|
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 */
|
|
894
|
+
description: string;
|
|
895
|
+
emails: string[];
|
|
896
|
+
/** ID of the organization to which the user is invited */
|
|
897
|
+
org_id: string;
|
|
898
|
+
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
899
|
+
expires_at: string;
|
|
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 */
|
|
901
|
+
quota: number;
|
|
902
|
+
/** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
|
|
903
|
+
accepted_by: string[];
|
|
904
|
+
roles: string[];
|
|
905
|
+
teams: string[];
|
|
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. */
|
|
907
|
+
status: "enabled" | "disabled";
|
|
908
|
+
/** Timestamp when the invitation was created */
|
|
909
|
+
created_at: string;
|
|
910
|
+
/** Timestamp when the invitation was last updated */
|
|
911
|
+
updated_at: string;
|
|
912
|
+
/** Timestamp when the invitation was deleted, if applicable */
|
|
913
|
+
deleted_at: string;
|
|
914
|
+
};
|
|
915
|
+
type GetInvitationApiArg = {
|
|
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;
|
|
923
|
+
};
|
|
924
|
+
type UpdateInvitationApiResponse = {
|
|
925
|
+
/** Unique identifier for the invitation , is also used as the invitation code */
|
|
926
|
+
id: string;
|
|
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 */
|
|
928
|
+
owner_id: string;
|
|
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 */
|
|
930
|
+
is_default?: boolean;
|
|
931
|
+
/** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
|
|
932
|
+
name: string;
|
|
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 */
|
|
934
|
+
description: string;
|
|
935
|
+
emails: string[];
|
|
936
|
+
/** ID of the organization to which the user is invited */
|
|
937
|
+
org_id: string;
|
|
938
|
+
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
939
|
+
expires_at: string;
|
|
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 */
|
|
941
|
+
quota: number;
|
|
942
|
+
/** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
|
|
943
|
+
accepted_by: string[];
|
|
944
|
+
roles: string[];
|
|
945
|
+
teams: string[];
|
|
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. */
|
|
947
|
+
status: "enabled" | "disabled";
|
|
948
|
+
/** Timestamp when the invitation was created */
|
|
949
|
+
created_at: string;
|
|
950
|
+
/** Timestamp when the invitation was last updated */
|
|
951
|
+
updated_at: string;
|
|
952
|
+
/** Timestamp when the invitation was deleted, if applicable */
|
|
953
|
+
deleted_at: string;
|
|
954
|
+
};
|
|
955
|
+
type UpdateInvitationApiArg = {
|
|
956
|
+
/** The ID of the invitation */
|
|
957
|
+
invitationId: string;
|
|
958
|
+
body: {
|
|
959
|
+
/** Unique identifier for the invitation , is also used as the invitation code */
|
|
960
|
+
id: string;
|
|
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 */
|
|
962
|
+
owner_id: string;
|
|
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 */
|
|
964
|
+
is_default?: boolean;
|
|
965
|
+
/** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
|
|
966
|
+
name: string;
|
|
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 */
|
|
968
|
+
description: string;
|
|
969
|
+
emails: string[];
|
|
970
|
+
/** ID of the organization to which the user is invited */
|
|
971
|
+
org_id: string;
|
|
972
|
+
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
973
|
+
expires_at: string;
|
|
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 */
|
|
975
|
+
quota: number;
|
|
976
|
+
/** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
|
|
977
|
+
accepted_by: string[];
|
|
978
|
+
roles: string[];
|
|
979
|
+
teams: string[];
|
|
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. */
|
|
981
|
+
status: "enabled" | "disabled";
|
|
982
|
+
/** Timestamp when the invitation was created */
|
|
983
|
+
created_at: string;
|
|
984
|
+
/** Timestamp when the invitation was last updated */
|
|
985
|
+
updated_at: string;
|
|
986
|
+
/** Timestamp when the invitation was deleted, if applicable */
|
|
987
|
+
deleted_at: string;
|
|
988
|
+
};
|
|
989
|
+
};
|
|
880
990
|
type GetInvitationsApiResponse = {
|
|
881
991
|
/** List of invitations */
|
|
882
|
-
|
|
992
|
+
data: {
|
|
883
993
|
/** Unique identifier for the invitation , is also used as the invitation code */
|
|
884
|
-
id:
|
|
994
|
+
id: string;
|
|
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 */
|
|
996
|
+
owner_id: string;
|
|
885
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 */
|
|
886
|
-
|
|
998
|
+
is_default?: boolean;
|
|
887
999
|
/** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
|
|
888
1000
|
name: string;
|
|
889
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 */
|
|
890
1002
|
description: string;
|
|
891
1003
|
emails: string[];
|
|
892
1004
|
/** ID of the organization to which the user is invited */
|
|
893
|
-
|
|
1005
|
+
org_id: string;
|
|
894
1006
|
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
895
|
-
|
|
1007
|
+
expires_at: string;
|
|
896
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 */
|
|
897
1009
|
quota: number;
|
|
898
1010
|
/** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
|
|
899
|
-
|
|
1011
|
+
accepted_by: string[];
|
|
900
1012
|
roles: string[];
|
|
901
1013
|
teams: string[];
|
|
902
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. */
|
|
903
1015
|
status: "enabled" | "disabled";
|
|
904
1016
|
/** Timestamp when the invitation was created */
|
|
905
|
-
|
|
1017
|
+
created_at: string;
|
|
906
1018
|
/** Timestamp when the invitation was last updated */
|
|
907
|
-
|
|
1019
|
+
updated_at: string;
|
|
908
1020
|
/** Timestamp when the invitation was deleted, if applicable */
|
|
909
|
-
|
|
1021
|
+
deleted_at: string;
|
|
910
1022
|
}[];
|
|
911
1023
|
/** Total number of invitations available */
|
|
912
|
-
|
|
1024
|
+
total: number;
|
|
913
1025
|
};
|
|
914
1026
|
type GetInvitationsApiArg = void;
|
|
915
1027
|
type CreateInvitationApiResponse = {
|
|
916
1028
|
/** Unique identifier for the invitation , is also used as the invitation code */
|
|
917
|
-
id:
|
|
1029
|
+
id: string;
|
|
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 */
|
|
1031
|
+
owner_id: string;
|
|
918
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 */
|
|
919
|
-
|
|
1033
|
+
is_default?: boolean;
|
|
920
1034
|
/** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
|
|
921
1035
|
name: string;
|
|
922
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 */
|
|
923
1037
|
description: string;
|
|
924
1038
|
emails: string[];
|
|
925
1039
|
/** ID of the organization to which the user is invited */
|
|
926
|
-
|
|
1040
|
+
org_id: string;
|
|
927
1041
|
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
928
|
-
|
|
1042
|
+
expires_at: string;
|
|
929
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 */
|
|
930
1044
|
quota: number;
|
|
931
1045
|
/** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
|
|
932
|
-
|
|
1046
|
+
accepted_by: string[];
|
|
933
1047
|
roles: string[];
|
|
934
1048
|
teams: string[];
|
|
935
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. */
|
|
936
1050
|
status: "enabled" | "disabled";
|
|
937
1051
|
/** Timestamp when the invitation was created */
|
|
938
|
-
|
|
1052
|
+
created_at: string;
|
|
939
1053
|
/** Timestamp when the invitation was last updated */
|
|
940
|
-
|
|
1054
|
+
updated_at: string;
|
|
941
1055
|
/** Timestamp when the invitation was deleted, if applicable */
|
|
942
|
-
|
|
1056
|
+
deleted_at: string;
|
|
943
1057
|
};
|
|
944
1058
|
type CreateInvitationApiArg = {
|
|
945
1059
|
body: {
|
|
946
1060
|
/** Unique identifier for the invitation , is also used as the invitation code */
|
|
947
|
-
id:
|
|
1061
|
+
id: string;
|
|
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 */
|
|
1063
|
+
owner_id: string;
|
|
948
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 */
|
|
949
|
-
|
|
1065
|
+
is_default?: boolean;
|
|
950
1066
|
/** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
|
|
951
1067
|
name: string;
|
|
952
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 */
|
|
953
1069
|
description: string;
|
|
954
1070
|
emails: string[];
|
|
955
1071
|
/** ID of the organization to which the user is invited */
|
|
956
|
-
|
|
1072
|
+
org_id: string;
|
|
957
1073
|
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
958
|
-
|
|
1074
|
+
expires_at: string;
|
|
959
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 */
|
|
960
1076
|
quota: number;
|
|
961
1077
|
/** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
|
|
962
|
-
|
|
1078
|
+
accepted_by: string[];
|
|
963
1079
|
roles: string[];
|
|
964
1080
|
teams: string[];
|
|
965
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. */
|
|
966
1082
|
status: "enabled" | "disabled";
|
|
967
1083
|
/** Timestamp when the invitation was created */
|
|
968
|
-
|
|
1084
|
+
created_at: string;
|
|
969
1085
|
/** Timestamp when the invitation was last updated */
|
|
970
|
-
|
|
1086
|
+
updated_at: string;
|
|
971
1087
|
/** Timestamp when the invitation was deleted, if applicable */
|
|
972
|
-
|
|
1088
|
+
deleted_at: string;
|
|
973
1089
|
};
|
|
974
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
|
+
};
|
|
975
1126
|
declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
976
1127
|
requestId?: undefined;
|
|
977
1128
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
@@ -1127,11 +1278,10 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
1127
1278
|
isLoading: false;
|
|
1128
1279
|
isSuccess: false;
|
|
1129
1280
|
isError: true;
|
|
1130
|
-
})) => R) | undefined;
|
|
1131
|
-
fixedCacheKey?: string | undefined;
|
|
1281
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
1282
|
+
fixedCacheKey?: string | undefined;
|
|
1132
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> & {
|
|
1133
1284
|
originalArgs?: ImportDesignApiArg | undefined;
|
|
1134
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
1135
1285
|
reset: () => void;
|
|
1136
1286
|
}];
|
|
1137
1287
|
declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
@@ -1289,11 +1439,10 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
1289
1439
|
isLoading: false;
|
|
1290
1440
|
isSuccess: false;
|
|
1291
1441
|
isError: true;
|
|
1292
|
-
})) => R) | undefined;
|
|
1293
|
-
fixedCacheKey?: string | undefined;
|
|
1442
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
1443
|
+
fixedCacheKey?: string | undefined;
|
|
1294
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> & {
|
|
1295
1445
|
originalArgs?: RegisterMeshmodelsApiArg | undefined;
|
|
1296
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
1297
1446
|
reset: () => void;
|
|
1298
1447
|
}];
|
|
1299
1448
|
declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
|
|
@@ -1614,11 +1763,10 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
|
|
|
1614
1763
|
isLoading: false;
|
|
1615
1764
|
isSuccess: false;
|
|
1616
1765
|
isError: true;
|
|
1617
|
-
})) => R) | undefined;
|
|
1618
|
-
fixedCacheKey?: string | undefined;
|
|
1766
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
1767
|
+
fixedCacheKey?: string | undefined;
|
|
1619
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> & {
|
|
1620
1769
|
originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
|
|
1621
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
1622
1770
|
reset: () => void;
|
|
1623
1771
|
}];
|
|
1624
1772
|
declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Record<string, any> = ({
|
|
@@ -1776,11 +1924,10 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
|
|
|
1776
1924
|
isLoading: false;
|
|
1777
1925
|
isSuccess: false;
|
|
1778
1926
|
isError: true;
|
|
1779
|
-
})) => R) | undefined;
|
|
1780
|
-
fixedCacheKey?: string | undefined;
|
|
1927
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
1928
|
+
fixedCacheKey?: string | undefined;
|
|
1781
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> & {
|
|
1782
1930
|
originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
|
|
1783
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
1784
1931
|
reset: () => void;
|
|
1785
1932
|
}];
|
|
1786
1933
|
declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Record<string, any> = ({
|
|
@@ -1938,11 +2085,10 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
|
|
|
1938
2085
|
isLoading: false;
|
|
1939
2086
|
isSuccess: false;
|
|
1940
2087
|
isError: true;
|
|
1941
|
-
})) => R) | undefined;
|
|
1942
|
-
fixedCacheKey?: string | undefined;
|
|
2088
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
2089
|
+
fixedCacheKey?: string | undefined;
|
|
1943
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> & {
|
|
1944
2091
|
originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
|
|
1945
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
1946
2092
|
reset: () => void;
|
|
1947
2093
|
}];
|
|
1948
2094
|
declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
@@ -2752,11 +2898,10 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
2752
2898
|
isLoading: false;
|
|
2753
2899
|
isSuccess: false;
|
|
2754
2900
|
isError: true;
|
|
2755
|
-
})) => R) | undefined;
|
|
2756
|
-
fixedCacheKey?: string | undefined;
|
|
2901
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
2902
|
+
fixedCacheKey?: string | undefined;
|
|
2757
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> & {
|
|
2758
2904
|
originalArgs?: PostApiWorkspacesApiArg | undefined;
|
|
2759
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
2760
2905
|
reset: () => void;
|
|
2761
2906
|
}];
|
|
2762
2907
|
declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
@@ -3077,11 +3222,10 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3077
3222
|
isLoading: false;
|
|
3078
3223
|
isSuccess: false;
|
|
3079
3224
|
isError: true;
|
|
3080
|
-
})) => R) | undefined;
|
|
3081
|
-
fixedCacheKey?: string | undefined;
|
|
3225
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
3226
|
+
fixedCacheKey?: string | undefined;
|
|
3082
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> & {
|
|
3083
3228
|
originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
|
|
3084
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
3085
3229
|
reset: () => void;
|
|
3086
3230
|
}];
|
|
3087
3231
|
declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
@@ -3239,11 +3383,10 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3239
3383
|
isLoading: false;
|
|
3240
3384
|
isSuccess: false;
|
|
3241
3385
|
isError: true;
|
|
3242
|
-
})) => R) | undefined;
|
|
3243
|
-
fixedCacheKey?: string | undefined;
|
|
3386
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
3387
|
+
fixedCacheKey?: string | undefined;
|
|
3244
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> & {
|
|
3245
3389
|
originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
|
|
3246
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
3247
3390
|
reset: () => void;
|
|
3248
3391
|
}];
|
|
3249
3392
|
declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
@@ -3401,11 +3544,10 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3401
3544
|
isLoading: false;
|
|
3402
3545
|
isSuccess: false;
|
|
3403
3546
|
isError: true;
|
|
3404
|
-
})) => R) | undefined;
|
|
3405
|
-
fixedCacheKey?: string | undefined;
|
|
3547
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
3548
|
+
fixedCacheKey?: string | undefined;
|
|
3406
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> & {
|
|
3407
3550
|
originalArgs?: CreateEnvironmentApiArg | undefined;
|
|
3408
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
3409
3551
|
reset: () => void;
|
|
3410
3552
|
}];
|
|
3411
3553
|
declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
@@ -4215,11 +4357,10 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4215
4357
|
isLoading: false;
|
|
4216
4358
|
isSuccess: false;
|
|
4217
4359
|
isError: true;
|
|
4218
|
-
})) => R) | undefined;
|
|
4219
|
-
fixedCacheKey?: string | undefined;
|
|
4360
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
4361
|
+
fixedCacheKey?: string | undefined;
|
|
4220
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> & {
|
|
4221
4363
|
originalArgs?: RegisterToAcademyContentApiArg | undefined;
|
|
4222
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
4223
4364
|
reset: () => void;
|
|
4224
4365
|
}];
|
|
4225
4366
|
declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
|
|
@@ -4540,11 +4681,10 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
|
|
|
4540
4681
|
isLoading: false;
|
|
4541
4682
|
isSuccess: false;
|
|
4542
4683
|
isError: true;
|
|
4543
|
-
})) => R) | undefined;
|
|
4544
|
-
fixedCacheKey?: string | undefined;
|
|
4684
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
4685
|
+
fixedCacheKey?: string | undefined;
|
|
4545
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> & {
|
|
4546
4687
|
originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
|
|
4547
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
4548
4688
|
reset: () => void;
|
|
4549
4689
|
}];
|
|
4550
4690
|
declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
@@ -4702,11 +4842,10 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
|
4702
4842
|
isLoading: false;
|
|
4703
4843
|
isSuccess: false;
|
|
4704
4844
|
isError: true;
|
|
4705
|
-
})) => R) | undefined;
|
|
4706
|
-
fixedCacheKey?: string | undefined;
|
|
4845
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
4846
|
+
fixedCacheKey?: string | undefined;
|
|
4707
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> & {
|
|
4708
4848
|
originalArgs?: SubmitQuizApiArg | undefined;
|
|
4709
|
-
/** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
|
|
4710
4849
|
reset: () => void;
|
|
4711
4850
|
}];
|
|
4712
4851
|
declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
|
|
@@ -5198,7 +5337,7 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
|
|
|
5198
5337
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5199
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>>;
|
|
5200
5339
|
};
|
|
5201
|
-
declare const
|
|
5340
|
+
declare const useGetInvitationQuery: <R extends Record<string, any> = ({
|
|
5202
5341
|
data?: undefined;
|
|
5203
5342
|
error?: undefined;
|
|
5204
5343
|
fulfilledTimeStamp?: undefined;
|
|
@@ -5207,7 +5346,7 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5207
5346
|
endpointName?: string | undefined;
|
|
5208
5347
|
startedTimeStamp?: undefined;
|
|
5209
5348
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5210
|
-
currentData?:
|
|
5349
|
+
currentData?: GetInvitationApiResponse | undefined;
|
|
5211
5350
|
isLoading: false;
|
|
5212
5351
|
isFetching: false;
|
|
5213
5352
|
isSuccess: false;
|
|
@@ -5216,12 +5355,12 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5216
5355
|
} | {
|
|
5217
5356
|
error?: unknown;
|
|
5218
5357
|
fulfilledTimeStamp?: number | undefined;
|
|
5219
|
-
originalArgs?:
|
|
5358
|
+
originalArgs?: GetInvitationApiArg | undefined;
|
|
5220
5359
|
requestId?: string | undefined;
|
|
5221
5360
|
endpointName?: string | undefined;
|
|
5222
5361
|
startedTimeStamp?: number | undefined;
|
|
5223
5362
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5224
|
-
currentData?:
|
|
5363
|
+
currentData?: GetInvitationApiResponse | undefined;
|
|
5225
5364
|
isUninitialized: false;
|
|
5226
5365
|
isSuccess: false;
|
|
5227
5366
|
isError: false;
|
|
@@ -5229,22 +5368,22 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5229
5368
|
isFetching: boolean;
|
|
5230
5369
|
data: undefined;
|
|
5231
5370
|
} | {
|
|
5232
|
-
originalArgs?:
|
|
5371
|
+
originalArgs?: GetInvitationApiArg | undefined;
|
|
5233
5372
|
requestId?: string | undefined;
|
|
5234
5373
|
endpointName?: string | undefined;
|
|
5235
5374
|
startedTimeStamp?: number | undefined;
|
|
5236
5375
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5237
|
-
currentData?:
|
|
5376
|
+
currentData?: GetInvitationApiResponse | undefined;
|
|
5238
5377
|
isUninitialized: false;
|
|
5239
5378
|
isLoading: false;
|
|
5240
5379
|
isError: false;
|
|
5241
5380
|
isSuccess: true;
|
|
5242
5381
|
isFetching: true;
|
|
5243
5382
|
error: undefined;
|
|
5244
|
-
data:
|
|
5383
|
+
data: GetInvitationApiResponse;
|
|
5245
5384
|
fulfilledTimeStamp: number;
|
|
5246
5385
|
} | {
|
|
5247
|
-
originalArgs?:
|
|
5386
|
+
originalArgs?: GetInvitationApiArg | undefined;
|
|
5248
5387
|
requestId?: string | undefined;
|
|
5249
5388
|
endpointName?: string | undefined;
|
|
5250
5389
|
startedTimeStamp?: number | undefined;
|
|
@@ -5255,18 +5394,18 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5255
5394
|
isSuccess: true;
|
|
5256
5395
|
isFetching: false;
|
|
5257
5396
|
error: undefined;
|
|
5258
|
-
data:
|
|
5397
|
+
data: GetInvitationApiResponse;
|
|
5259
5398
|
fulfilledTimeStamp: number;
|
|
5260
|
-
currentData:
|
|
5399
|
+
currentData: GetInvitationApiResponse;
|
|
5261
5400
|
} | {
|
|
5262
|
-
data?:
|
|
5401
|
+
data?: GetInvitationApiResponse | undefined;
|
|
5263
5402
|
fulfilledTimeStamp?: number | undefined;
|
|
5264
|
-
originalArgs?:
|
|
5403
|
+
originalArgs?: GetInvitationApiArg | undefined;
|
|
5265
5404
|
requestId?: string | undefined;
|
|
5266
5405
|
endpointName?: string | undefined;
|
|
5267
5406
|
startedTimeStamp?: number | undefined;
|
|
5268
5407
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5269
|
-
currentData?:
|
|
5408
|
+
currentData?: GetInvitationApiResponse | undefined;
|
|
5270
5409
|
isUninitialized: false;
|
|
5271
5410
|
isLoading: false;
|
|
5272
5411
|
isFetching: false;
|
|
@@ -5275,7 +5414,7 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5275
5414
|
error: unknown;
|
|
5276
5415
|
}) & {
|
|
5277
5416
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5278
|
-
}>(arg:
|
|
5417
|
+
}>(arg: GetInvitationApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
5279
5418
|
skip?: boolean | undefined;
|
|
5280
5419
|
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
5281
5420
|
} & {
|
|
@@ -5289,7 +5428,7 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5289
5428
|
endpointName?: string | undefined;
|
|
5290
5429
|
startedTimeStamp?: undefined;
|
|
5291
5430
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5292
|
-
currentData?:
|
|
5431
|
+
currentData?: GetInvitationApiResponse | undefined;
|
|
5293
5432
|
isLoading: false;
|
|
5294
5433
|
isFetching: false;
|
|
5295
5434
|
isSuccess: false;
|
|
@@ -5298,12 +5437,12 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5298
5437
|
} | {
|
|
5299
5438
|
error?: unknown;
|
|
5300
5439
|
fulfilledTimeStamp?: number | undefined;
|
|
5301
|
-
originalArgs?:
|
|
5440
|
+
originalArgs?: GetInvitationApiArg | undefined;
|
|
5302
5441
|
requestId?: string | undefined;
|
|
5303
5442
|
endpointName?: string | undefined;
|
|
5304
5443
|
startedTimeStamp?: number | undefined;
|
|
5305
5444
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5306
|
-
currentData?:
|
|
5445
|
+
currentData?: GetInvitationApiResponse | undefined;
|
|
5307
5446
|
isUninitialized: false;
|
|
5308
5447
|
isSuccess: false;
|
|
5309
5448
|
isError: false;
|
|
@@ -5311,22 +5450,22 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5311
5450
|
isFetching: boolean;
|
|
5312
5451
|
data: undefined;
|
|
5313
5452
|
} | {
|
|
5314
|
-
originalArgs?:
|
|
5453
|
+
originalArgs?: GetInvitationApiArg | undefined;
|
|
5315
5454
|
requestId?: string | undefined;
|
|
5316
5455
|
endpointName?: string | undefined;
|
|
5317
5456
|
startedTimeStamp?: number | undefined;
|
|
5318
5457
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5319
|
-
currentData?:
|
|
5458
|
+
currentData?: GetInvitationApiResponse | undefined;
|
|
5320
5459
|
isUninitialized: false;
|
|
5321
5460
|
isLoading: false;
|
|
5322
5461
|
isError: false;
|
|
5323
5462
|
isSuccess: true;
|
|
5324
5463
|
isFetching: true;
|
|
5325
5464
|
error: undefined;
|
|
5326
|
-
data:
|
|
5465
|
+
data: GetInvitationApiResponse;
|
|
5327
5466
|
fulfilledTimeStamp: number;
|
|
5328
5467
|
} | {
|
|
5329
|
-
originalArgs?:
|
|
5468
|
+
originalArgs?: GetInvitationApiArg | undefined;
|
|
5330
5469
|
requestId?: string | undefined;
|
|
5331
5470
|
endpointName?: string | undefined;
|
|
5332
5471
|
startedTimeStamp?: number | undefined;
|
|
@@ -5337,18 +5476,18 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5337
5476
|
isSuccess: true;
|
|
5338
5477
|
isFetching: false;
|
|
5339
5478
|
error: undefined;
|
|
5340
|
-
data:
|
|
5479
|
+
data: GetInvitationApiResponse;
|
|
5341
5480
|
fulfilledTimeStamp: number;
|
|
5342
|
-
currentData:
|
|
5481
|
+
currentData: GetInvitationApiResponse;
|
|
5343
5482
|
} | {
|
|
5344
|
-
data?:
|
|
5483
|
+
data?: GetInvitationApiResponse | undefined;
|
|
5345
5484
|
fulfilledTimeStamp?: number | undefined;
|
|
5346
|
-
originalArgs?:
|
|
5485
|
+
originalArgs?: GetInvitationApiArg | undefined;
|
|
5347
5486
|
requestId?: string | undefined;
|
|
5348
5487
|
endpointName?: string | undefined;
|
|
5349
5488
|
startedTimeStamp?: number | undefined;
|
|
5350
5489
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5351
|
-
currentData?:
|
|
5490
|
+
currentData?: GetInvitationApiResponse | undefined;
|
|
5352
5491
|
isUninitialized: false;
|
|
5353
5492
|
isLoading: false;
|
|
5354
5493
|
isFetching: false;
|
|
@@ -5359,9 +5498,9 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
5359
5498
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5360
5499
|
}) => R) | undefined;
|
|
5361
5500
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5362
|
-
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<
|
|
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>>;
|
|
5363
5502
|
};
|
|
5364
|
-
declare const
|
|
5503
|
+
declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
|
|
5365
5504
|
requestId?: undefined;
|
|
5366
5505
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5367
5506
|
data?: undefined;
|
|
@@ -5379,14 +5518,14 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5379
5518
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
5380
5519
|
} & Omit<{
|
|
5381
5520
|
requestId: string;
|
|
5382
|
-
data?:
|
|
5521
|
+
data?: unknown;
|
|
5383
5522
|
error?: unknown;
|
|
5384
5523
|
endpointName: string;
|
|
5385
5524
|
startedTimeStamp: number;
|
|
5386
5525
|
fulfilledTimeStamp?: number | undefined;
|
|
5387
5526
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5388
5527
|
requestId: string;
|
|
5389
|
-
data?:
|
|
5528
|
+
data?: unknown;
|
|
5390
5529
|
error?: unknown;
|
|
5391
5530
|
endpointName: string;
|
|
5392
5531
|
startedTimeStamp: number;
|
|
@@ -5403,7 +5542,7 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5403
5542
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5404
5543
|
} & {
|
|
5405
5544
|
requestId: string;
|
|
5406
|
-
data?:
|
|
5545
|
+
data?: unknown;
|
|
5407
5546
|
error?: unknown;
|
|
5408
5547
|
endpointName: string;
|
|
5409
5548
|
startedTimeStamp: number;
|
|
@@ -5420,14 +5559,14 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5420
5559
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
5421
5560
|
} & Omit<{
|
|
5422
5561
|
requestId: string;
|
|
5423
|
-
data?:
|
|
5562
|
+
data?: unknown;
|
|
5424
5563
|
error?: unknown;
|
|
5425
5564
|
endpointName: string;
|
|
5426
5565
|
startedTimeStamp: number;
|
|
5427
5566
|
fulfilledTimeStamp?: number | undefined;
|
|
5428
5567
|
}, "error"> & Required<Pick<{
|
|
5429
5568
|
requestId: string;
|
|
5430
|
-
data?:
|
|
5569
|
+
data?: unknown;
|
|
5431
5570
|
error?: unknown;
|
|
5432
5571
|
endpointName: string;
|
|
5433
5572
|
startedTimeStamp: number;
|
|
@@ -5457,14 +5596,14 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5457
5596
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
5458
5597
|
} & Omit<{
|
|
5459
5598
|
requestId: string;
|
|
5460
|
-
data?:
|
|
5599
|
+
data?: unknown;
|
|
5461
5600
|
error?: unknown;
|
|
5462
5601
|
endpointName: string;
|
|
5463
5602
|
startedTimeStamp: number;
|
|
5464
5603
|
fulfilledTimeStamp?: number | undefined;
|
|
5465
5604
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5466
5605
|
requestId: string;
|
|
5467
|
-
data?:
|
|
5606
|
+
data?: unknown;
|
|
5468
5607
|
error?: unknown;
|
|
5469
5608
|
endpointName: string;
|
|
5470
5609
|
startedTimeStamp: number;
|
|
@@ -5481,7 +5620,7 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5481
5620
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5482
5621
|
} & {
|
|
5483
5622
|
requestId: string;
|
|
5484
|
-
data?:
|
|
5623
|
+
data?: unknown;
|
|
5485
5624
|
error?: unknown;
|
|
5486
5625
|
endpointName: string;
|
|
5487
5626
|
startedTimeStamp: number;
|
|
@@ -5498,14 +5637,14 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5498
5637
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
5499
5638
|
} & Omit<{
|
|
5500
5639
|
requestId: string;
|
|
5501
|
-
data?:
|
|
5640
|
+
data?: unknown;
|
|
5502
5641
|
error?: unknown;
|
|
5503
5642
|
endpointName: string;
|
|
5504
5643
|
startedTimeStamp: number;
|
|
5505
5644
|
fulfilledTimeStamp?: number | undefined;
|
|
5506
5645
|
}, "error"> & Required<Pick<{
|
|
5507
5646
|
requestId: string;
|
|
5508
|
-
data?:
|
|
5647
|
+
data?: unknown;
|
|
5509
5648
|
error?: unknown;
|
|
5510
5649
|
endpointName: string;
|
|
5511
5650
|
startedTimeStamp: number;
|
|
@@ -5516,12 +5655,657 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5516
5655
|
isLoading: false;
|
|
5517
5656
|
isSuccess: false;
|
|
5518
5657
|
isError: true;
|
|
5519
|
-
})) => R) | undefined;
|
|
5520
|
-
fixedCacheKey?: string | undefined;
|
|
5521
|
-
} | undefined) => readonly [(arg:
|
|
5522
|
-
originalArgs?:
|
|
5523
|
-
|
|
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
|
+
}];
|
|
5664
|
+
declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
|
|
5665
|
+
requestId?: undefined;
|
|
5666
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5667
|
+
data?: undefined;
|
|
5668
|
+
error?: undefined;
|
|
5669
|
+
endpointName?: string | undefined;
|
|
5670
|
+
startedTimeStamp?: undefined;
|
|
5671
|
+
fulfilledTimeStamp?: undefined;
|
|
5672
|
+
} & {
|
|
5673
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5674
|
+
isUninitialized: true;
|
|
5675
|
+
isLoading: false;
|
|
5676
|
+
isSuccess: false;
|
|
5677
|
+
isError: false;
|
|
5678
|
+
}) | ({
|
|
5679
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
5680
|
+
} & Omit<{
|
|
5681
|
+
requestId: string;
|
|
5682
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5683
|
+
error?: unknown;
|
|
5684
|
+
endpointName: string;
|
|
5685
|
+
startedTimeStamp: number;
|
|
5686
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5687
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5688
|
+
requestId: string;
|
|
5689
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5690
|
+
error?: unknown;
|
|
5691
|
+
endpointName: string;
|
|
5692
|
+
startedTimeStamp: number;
|
|
5693
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5694
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
5695
|
+
error: undefined;
|
|
5696
|
+
} & {
|
|
5697
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
5698
|
+
isUninitialized: false;
|
|
5699
|
+
isLoading: false;
|
|
5700
|
+
isSuccess: true;
|
|
5701
|
+
isError: false;
|
|
5702
|
+
}) | ({
|
|
5703
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5704
|
+
} & {
|
|
5705
|
+
requestId: string;
|
|
5706
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5707
|
+
error?: unknown;
|
|
5708
|
+
endpointName: string;
|
|
5709
|
+
startedTimeStamp: number;
|
|
5710
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5711
|
+
} & {
|
|
5712
|
+
data?: undefined;
|
|
5713
|
+
} & {
|
|
5714
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5715
|
+
isUninitialized: false;
|
|
5716
|
+
isLoading: true;
|
|
5717
|
+
isSuccess: false;
|
|
5718
|
+
isError: false;
|
|
5719
|
+
}) | ({
|
|
5720
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
5721
|
+
} & Omit<{
|
|
5722
|
+
requestId: string;
|
|
5723
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5724
|
+
error?: unknown;
|
|
5725
|
+
endpointName: string;
|
|
5726
|
+
startedTimeStamp: number;
|
|
5727
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5728
|
+
}, "error"> & Required<Pick<{
|
|
5729
|
+
requestId: string;
|
|
5730
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5731
|
+
error?: unknown;
|
|
5732
|
+
endpointName: string;
|
|
5733
|
+
startedTimeStamp: number;
|
|
5734
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5735
|
+
}, "error">> & {
|
|
5736
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
5737
|
+
isUninitialized: false;
|
|
5738
|
+
isLoading: false;
|
|
5739
|
+
isSuccess: false;
|
|
5740
|
+
isError: true;
|
|
5741
|
+
})>(options?: {
|
|
5742
|
+
selectFromResult?: ((state: ({
|
|
5743
|
+
requestId?: undefined;
|
|
5744
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5745
|
+
data?: undefined;
|
|
5746
|
+
error?: undefined;
|
|
5747
|
+
endpointName?: string | undefined;
|
|
5748
|
+
startedTimeStamp?: undefined;
|
|
5749
|
+
fulfilledTimeStamp?: undefined;
|
|
5750
|
+
} & {
|
|
5751
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5752
|
+
isUninitialized: true;
|
|
5753
|
+
isLoading: false;
|
|
5754
|
+
isSuccess: false;
|
|
5755
|
+
isError: false;
|
|
5756
|
+
}) | ({
|
|
5757
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
5758
|
+
} & Omit<{
|
|
5759
|
+
requestId: string;
|
|
5760
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5761
|
+
error?: unknown;
|
|
5762
|
+
endpointName: string;
|
|
5763
|
+
startedTimeStamp: number;
|
|
5764
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5765
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5766
|
+
requestId: string;
|
|
5767
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5768
|
+
error?: unknown;
|
|
5769
|
+
endpointName: string;
|
|
5770
|
+
startedTimeStamp: number;
|
|
5771
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5772
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
5773
|
+
error: undefined;
|
|
5774
|
+
} & {
|
|
5775
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
5776
|
+
isUninitialized: false;
|
|
5777
|
+
isLoading: false;
|
|
5778
|
+
isSuccess: true;
|
|
5779
|
+
isError: false;
|
|
5780
|
+
}) | ({
|
|
5781
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5782
|
+
} & {
|
|
5783
|
+
requestId: string;
|
|
5784
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5785
|
+
error?: unknown;
|
|
5786
|
+
endpointName: string;
|
|
5787
|
+
startedTimeStamp: number;
|
|
5788
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5789
|
+
} & {
|
|
5790
|
+
data?: undefined;
|
|
5791
|
+
} & {
|
|
5792
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5793
|
+
isUninitialized: false;
|
|
5794
|
+
isLoading: true;
|
|
5795
|
+
isSuccess: false;
|
|
5796
|
+
isError: false;
|
|
5797
|
+
}) | ({
|
|
5798
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
5799
|
+
} & Omit<{
|
|
5800
|
+
requestId: string;
|
|
5801
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5802
|
+
error?: unknown;
|
|
5803
|
+
endpointName: string;
|
|
5804
|
+
startedTimeStamp: number;
|
|
5805
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5806
|
+
}, "error"> & Required<Pick<{
|
|
5807
|
+
requestId: string;
|
|
5808
|
+
data?: UpdateInvitationApiResponse | undefined;
|
|
5809
|
+
error?: unknown;
|
|
5810
|
+
endpointName: string;
|
|
5811
|
+
startedTimeStamp: number;
|
|
5812
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5813
|
+
}, "error">> & {
|
|
5814
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
5815
|
+
isUninitialized: false;
|
|
5816
|
+
isLoading: false;
|
|
5817
|
+
isSuccess: false;
|
|
5818
|
+
isError: true;
|
|
5819
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
5820
|
+
fixedCacheKey?: string | undefined;
|
|
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> & {
|
|
5822
|
+
originalArgs?: UpdateInvitationApiArg | undefined;
|
|
5823
|
+
reset: () => void;
|
|
5824
|
+
}];
|
|
5825
|
+
declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
5826
|
+
data?: undefined;
|
|
5827
|
+
error?: undefined;
|
|
5828
|
+
fulfilledTimeStamp?: undefined;
|
|
5829
|
+
originalArgs?: undefined;
|
|
5830
|
+
requestId?: undefined;
|
|
5831
|
+
endpointName?: string | undefined;
|
|
5832
|
+
startedTimeStamp?: undefined;
|
|
5833
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5834
|
+
currentData?: GetInvitationsApiResponse | undefined;
|
|
5835
|
+
isLoading: false;
|
|
5836
|
+
isFetching: false;
|
|
5837
|
+
isSuccess: false;
|
|
5838
|
+
isError: false;
|
|
5839
|
+
isUninitialized: true;
|
|
5840
|
+
} | {
|
|
5841
|
+
error?: unknown;
|
|
5842
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5843
|
+
originalArgs?: void | undefined;
|
|
5844
|
+
requestId?: string | undefined;
|
|
5845
|
+
endpointName?: string | undefined;
|
|
5846
|
+
startedTimeStamp?: number | undefined;
|
|
5847
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5848
|
+
currentData?: GetInvitationsApiResponse | undefined;
|
|
5849
|
+
isUninitialized: false;
|
|
5850
|
+
isSuccess: false;
|
|
5851
|
+
isError: false;
|
|
5852
|
+
isLoading: true;
|
|
5853
|
+
isFetching: boolean;
|
|
5854
|
+
data: undefined;
|
|
5855
|
+
} | {
|
|
5856
|
+
originalArgs?: void | undefined;
|
|
5857
|
+
requestId?: string | undefined;
|
|
5858
|
+
endpointName?: string | undefined;
|
|
5859
|
+
startedTimeStamp?: number | undefined;
|
|
5860
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5861
|
+
currentData?: GetInvitationsApiResponse | undefined;
|
|
5862
|
+
isUninitialized: false;
|
|
5863
|
+
isLoading: false;
|
|
5864
|
+
isError: false;
|
|
5865
|
+
isSuccess: true;
|
|
5866
|
+
isFetching: true;
|
|
5867
|
+
error: undefined;
|
|
5868
|
+
data: GetInvitationsApiResponse;
|
|
5869
|
+
fulfilledTimeStamp: number;
|
|
5870
|
+
} | {
|
|
5871
|
+
originalArgs?: void | undefined;
|
|
5872
|
+
requestId?: string | undefined;
|
|
5873
|
+
endpointName?: string | undefined;
|
|
5874
|
+
startedTimeStamp?: number | undefined;
|
|
5875
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5876
|
+
isUninitialized: false;
|
|
5877
|
+
isLoading: false;
|
|
5878
|
+
isError: false;
|
|
5879
|
+
isSuccess: true;
|
|
5880
|
+
isFetching: false;
|
|
5881
|
+
error: undefined;
|
|
5882
|
+
data: GetInvitationsApiResponse;
|
|
5883
|
+
fulfilledTimeStamp: number;
|
|
5884
|
+
currentData: GetInvitationsApiResponse;
|
|
5885
|
+
} | {
|
|
5886
|
+
data?: GetInvitationsApiResponse | undefined;
|
|
5887
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5888
|
+
originalArgs?: void | undefined;
|
|
5889
|
+
requestId?: string | undefined;
|
|
5890
|
+
endpointName?: string | undefined;
|
|
5891
|
+
startedTimeStamp?: number | undefined;
|
|
5892
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5893
|
+
currentData?: GetInvitationsApiResponse | undefined;
|
|
5894
|
+
isUninitialized: false;
|
|
5895
|
+
isLoading: false;
|
|
5896
|
+
isFetching: false;
|
|
5897
|
+
isSuccess: false;
|
|
5898
|
+
isError: true;
|
|
5899
|
+
error: unknown;
|
|
5900
|
+
}) & {
|
|
5901
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5902
|
+
}>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
5903
|
+
skip?: boolean | undefined;
|
|
5904
|
+
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
5905
|
+
} & {
|
|
5906
|
+
skip?: boolean | undefined;
|
|
5907
|
+
selectFromResult?: ((state: ({
|
|
5908
|
+
data?: undefined;
|
|
5909
|
+
error?: undefined;
|
|
5910
|
+
fulfilledTimeStamp?: undefined;
|
|
5911
|
+
originalArgs?: undefined;
|
|
5912
|
+
requestId?: undefined;
|
|
5913
|
+
endpointName?: string | undefined;
|
|
5914
|
+
startedTimeStamp?: undefined;
|
|
5915
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5916
|
+
currentData?: GetInvitationsApiResponse | undefined;
|
|
5917
|
+
isLoading: false;
|
|
5918
|
+
isFetching: false;
|
|
5919
|
+
isSuccess: false;
|
|
5920
|
+
isError: false;
|
|
5921
|
+
isUninitialized: true;
|
|
5922
|
+
} | {
|
|
5923
|
+
error?: unknown;
|
|
5924
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5925
|
+
originalArgs?: void | undefined;
|
|
5926
|
+
requestId?: string | undefined;
|
|
5927
|
+
endpointName?: string | undefined;
|
|
5928
|
+
startedTimeStamp?: number | undefined;
|
|
5929
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5930
|
+
currentData?: GetInvitationsApiResponse | undefined;
|
|
5931
|
+
isUninitialized: false;
|
|
5932
|
+
isSuccess: false;
|
|
5933
|
+
isError: false;
|
|
5934
|
+
isLoading: true;
|
|
5935
|
+
isFetching: boolean;
|
|
5936
|
+
data: undefined;
|
|
5937
|
+
} | {
|
|
5938
|
+
originalArgs?: void | undefined;
|
|
5939
|
+
requestId?: string | undefined;
|
|
5940
|
+
endpointName?: string | undefined;
|
|
5941
|
+
startedTimeStamp?: number | undefined;
|
|
5942
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5943
|
+
currentData?: GetInvitationsApiResponse | undefined;
|
|
5944
|
+
isUninitialized: false;
|
|
5945
|
+
isLoading: false;
|
|
5946
|
+
isError: false;
|
|
5947
|
+
isSuccess: true;
|
|
5948
|
+
isFetching: true;
|
|
5949
|
+
error: undefined;
|
|
5950
|
+
data: GetInvitationsApiResponse;
|
|
5951
|
+
fulfilledTimeStamp: number;
|
|
5952
|
+
} | {
|
|
5953
|
+
originalArgs?: void | undefined;
|
|
5954
|
+
requestId?: string | undefined;
|
|
5955
|
+
endpointName?: string | undefined;
|
|
5956
|
+
startedTimeStamp?: number | undefined;
|
|
5957
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5958
|
+
isUninitialized: false;
|
|
5959
|
+
isLoading: false;
|
|
5960
|
+
isError: false;
|
|
5961
|
+
isSuccess: true;
|
|
5962
|
+
isFetching: false;
|
|
5963
|
+
error: undefined;
|
|
5964
|
+
data: GetInvitationsApiResponse;
|
|
5965
|
+
fulfilledTimeStamp: number;
|
|
5966
|
+
currentData: GetInvitationsApiResponse;
|
|
5967
|
+
} | {
|
|
5968
|
+
data?: GetInvitationsApiResponse | undefined;
|
|
5969
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5970
|
+
originalArgs?: void | undefined;
|
|
5971
|
+
requestId?: string | undefined;
|
|
5972
|
+
endpointName?: string | undefined;
|
|
5973
|
+
startedTimeStamp?: number | undefined;
|
|
5974
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5975
|
+
currentData?: GetInvitationsApiResponse | undefined;
|
|
5976
|
+
isUninitialized: false;
|
|
5977
|
+
isLoading: false;
|
|
5978
|
+
isFetching: false;
|
|
5979
|
+
isSuccess: false;
|
|
5980
|
+
isError: true;
|
|
5981
|
+
error: unknown;
|
|
5982
|
+
}) & {
|
|
5983
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5984
|
+
}) => R) | undefined;
|
|
5985
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5986
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationsApiResponse, "api", unknown>>;
|
|
5987
|
+
};
|
|
5988
|
+
declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
5989
|
+
requestId?: undefined;
|
|
5990
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5991
|
+
data?: undefined;
|
|
5992
|
+
error?: undefined;
|
|
5993
|
+
endpointName?: string | undefined;
|
|
5994
|
+
startedTimeStamp?: undefined;
|
|
5995
|
+
fulfilledTimeStamp?: undefined;
|
|
5996
|
+
} & {
|
|
5997
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5998
|
+
isUninitialized: true;
|
|
5999
|
+
isLoading: false;
|
|
6000
|
+
isSuccess: false;
|
|
6001
|
+
isError: false;
|
|
6002
|
+
}) | ({
|
|
6003
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
6004
|
+
} & Omit<{
|
|
6005
|
+
requestId: string;
|
|
6006
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6007
|
+
error?: unknown;
|
|
6008
|
+
endpointName: string;
|
|
6009
|
+
startedTimeStamp: number;
|
|
6010
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6011
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6012
|
+
requestId: string;
|
|
6013
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6014
|
+
error?: unknown;
|
|
6015
|
+
endpointName: string;
|
|
6016
|
+
startedTimeStamp: number;
|
|
6017
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6018
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6019
|
+
error: undefined;
|
|
6020
|
+
} & {
|
|
6021
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
6022
|
+
isUninitialized: false;
|
|
6023
|
+
isLoading: false;
|
|
6024
|
+
isSuccess: true;
|
|
6025
|
+
isError: false;
|
|
6026
|
+
}) | ({
|
|
6027
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
6028
|
+
} & {
|
|
6029
|
+
requestId: string;
|
|
6030
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6031
|
+
error?: unknown;
|
|
6032
|
+
endpointName: string;
|
|
6033
|
+
startedTimeStamp: number;
|
|
6034
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6035
|
+
} & {
|
|
6036
|
+
data?: undefined;
|
|
6037
|
+
} & {
|
|
6038
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
6039
|
+
isUninitialized: false;
|
|
6040
|
+
isLoading: true;
|
|
6041
|
+
isSuccess: false;
|
|
6042
|
+
isError: false;
|
|
6043
|
+
}) | ({
|
|
6044
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
6045
|
+
} & Omit<{
|
|
6046
|
+
requestId: string;
|
|
6047
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6048
|
+
error?: unknown;
|
|
6049
|
+
endpointName: string;
|
|
6050
|
+
startedTimeStamp: number;
|
|
6051
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6052
|
+
}, "error"> & Required<Pick<{
|
|
6053
|
+
requestId: string;
|
|
6054
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6055
|
+
error?: unknown;
|
|
6056
|
+
endpointName: string;
|
|
6057
|
+
startedTimeStamp: number;
|
|
6058
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6059
|
+
}, "error">> & {
|
|
6060
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
6061
|
+
isUninitialized: false;
|
|
6062
|
+
isLoading: false;
|
|
6063
|
+
isSuccess: false;
|
|
6064
|
+
isError: true;
|
|
6065
|
+
})>(options?: {
|
|
6066
|
+
selectFromResult?: ((state: ({
|
|
6067
|
+
requestId?: undefined;
|
|
6068
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6069
|
+
data?: undefined;
|
|
6070
|
+
error?: undefined;
|
|
6071
|
+
endpointName?: string | undefined;
|
|
6072
|
+
startedTimeStamp?: undefined;
|
|
6073
|
+
fulfilledTimeStamp?: undefined;
|
|
6074
|
+
} & {
|
|
6075
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6076
|
+
isUninitialized: true;
|
|
6077
|
+
isLoading: false;
|
|
6078
|
+
isSuccess: false;
|
|
6079
|
+
isError: false;
|
|
6080
|
+
}) | ({
|
|
6081
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
6082
|
+
} & Omit<{
|
|
6083
|
+
requestId: string;
|
|
6084
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6085
|
+
error?: unknown;
|
|
6086
|
+
endpointName: string;
|
|
6087
|
+
startedTimeStamp: number;
|
|
6088
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6089
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6090
|
+
requestId: string;
|
|
6091
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6092
|
+
error?: unknown;
|
|
6093
|
+
endpointName: string;
|
|
6094
|
+
startedTimeStamp: number;
|
|
6095
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6096
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6097
|
+
error: undefined;
|
|
6098
|
+
} & {
|
|
6099
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
6100
|
+
isUninitialized: false;
|
|
6101
|
+
isLoading: false;
|
|
6102
|
+
isSuccess: true;
|
|
6103
|
+
isError: false;
|
|
6104
|
+
}) | ({
|
|
6105
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
6106
|
+
} & {
|
|
6107
|
+
requestId: string;
|
|
6108
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6109
|
+
error?: unknown;
|
|
6110
|
+
endpointName: string;
|
|
6111
|
+
startedTimeStamp: number;
|
|
6112
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6113
|
+
} & {
|
|
6114
|
+
data?: undefined;
|
|
6115
|
+
} & {
|
|
6116
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
6117
|
+
isUninitialized: false;
|
|
6118
|
+
isLoading: true;
|
|
6119
|
+
isSuccess: false;
|
|
6120
|
+
isError: false;
|
|
6121
|
+
}) | ({
|
|
6122
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
6123
|
+
} & Omit<{
|
|
6124
|
+
requestId: string;
|
|
6125
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6126
|
+
error?: unknown;
|
|
6127
|
+
endpointName: string;
|
|
6128
|
+
startedTimeStamp: number;
|
|
6129
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6130
|
+
}, "error"> & Required<Pick<{
|
|
6131
|
+
requestId: string;
|
|
6132
|
+
data?: CreateInvitationApiResponse | undefined;
|
|
6133
|
+
error?: unknown;
|
|
6134
|
+
endpointName: string;
|
|
6135
|
+
startedTimeStamp: number;
|
|
6136
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6137
|
+
}, "error">> & {
|
|
6138
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
6139
|
+
isUninitialized: false;
|
|
6140
|
+
isLoading: false;
|
|
6141
|
+
isSuccess: false;
|
|
6142
|
+
isError: true;
|
|
6143
|
+
})) => R) | undefined; /** Date when the certificate was issued */
|
|
6144
|
+
fixedCacheKey?: string | undefined;
|
|
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> & {
|
|
6146
|
+
originalArgs?: CreateInvitationApiArg | undefined;
|
|
6147
|
+
reset: () => void;
|
|
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;
|
|
5524
6308
|
reset: () => void;
|
|
5525
6309
|
}];
|
|
5526
6310
|
|
|
5527
|
-
export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type GetAcademyAdminRegistrationsApiArg, type GetAcademyAdminRegistrationsApiResponse, type GetAcademyAdminSummaryApiArg, type GetAcademyAdminSummaryApiResponse, type GetAcademyCirriculaApiArg, type GetAcademyCirriculaApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetCertificateByIdApiArg, type GetCertificateByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type GetFeaturesApiArg, type GetFeaturesApiResponse, type GetFeaturesByOrganizationApiArg, type GetFeaturesByOrganizationApiResponse, type GetInvitationsApiArg, type GetInvitationsApiResponse, type GetMyAcademyCirriculaApiArg, type GetMyAcademyCirriculaApiResponse, type GetPlansApiArg, type GetPlansApiResponse, type GetSubscriptionsApiArg, type GetSubscriptionsApiResponse, type ImportDesignApiArg, type ImportDesignApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, type PostApiEntitlementSubscriptionsCreateApiArg, type PostApiEntitlementSubscriptionsCreateApiResponse, type PostApiEntitlementSubscriptionsWebhooksApiArg, type PostApiEntitlementSubscriptionsWebhooksApiResponse, type PostApiWorkspacesApiArg, type PostApiWorkspacesApiResponse, type PutApiWorkspacesByIdApiArg, type PutApiWorkspacesByIdApiResponse, type RegisterMeshmodelsApiArg, type RegisterMeshmodelsApiResponse, type RegisterToAcademyContentApiArg, type RegisterToAcademyContentApiResponse, type SubmitQuizApiArg, type SubmitQuizApiResponse, type UpdateCurrentItemInProgressTrackerApiArg, type UpdateCurrentItemInProgressTrackerApiResponse, injectedRtkApi as cloudApi, useCreateEnvironmentMutation, useCreateInvitationMutation, useDeleteApiWorkspacesByIdMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateCurrentItemInProgressTrackerMutation };
|
|
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 };
|