@meshery/schemas 0.8.74 → 0.8.75
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 +1570 -757
- package/dist/cloudApi.d.ts +1570 -757
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -24,6 +24,9 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
|
|
|
24
24
|
getAcademyCirricula: _reduxjs_toolkit_query.QueryDefinition<GetAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>;
|
|
25
25
|
getApiAcademyByTypeAndOrgIdSlug: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyByTypeAndOrgIdSlugApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetApiAcademyByTypeAndOrgIdSlugApiResponse, "api", unknown>;
|
|
26
26
|
registerToAcademyContent: _reduxjs_toolkit_query.MutationDefinition<RegisterToAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", RegisterToAcademyContentApiResponse, "api", unknown>;
|
|
27
|
+
updateAcademyCurriculaById: _reduxjs_toolkit_query.MutationDefinition<UpdateAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", UpdateAcademyCurriculaByIdApiResponse, "api", unknown>;
|
|
28
|
+
deleteAcademyCurriculaById: _reduxjs_toolkit_query.MutationDefinition<DeleteAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>;
|
|
29
|
+
getAcademyCurriculaById: _reduxjs_toolkit_query.QueryDefinition<GetAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetAcademyCurriculaByIdApiResponse, "api", unknown>;
|
|
27
30
|
getApiAcademyRegistrationsByContentId: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyRegistrationsByContentIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetApiAcademyRegistrationsByContentIdApiResponse, "api", unknown>;
|
|
28
31
|
updateCurrentItemInProgressTracker: _reduxjs_toolkit_query.MutationDefinition<UpdateCurrentItemInProgressTrackerApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", UpdateCurrentItemInProgressTrackerApiResponse, "api", unknown>;
|
|
29
32
|
submitQuiz: _reduxjs_toolkit_query.MutationDefinition<SubmitQuizApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", SubmitQuizApiResponse, "api", unknown>;
|
|
@@ -745,6 +748,331 @@ type RegisterToAcademyContentApiArg = {
|
|
|
745
748
|
content_type?: "learning-path" | "challenge" | "certification";
|
|
746
749
|
};
|
|
747
750
|
};
|
|
751
|
+
type UpdateAcademyCurriculaByIdApiResponse = /** status 200 updated the curricula */ {
|
|
752
|
+
/** Id of the cirricula */
|
|
753
|
+
id: string;
|
|
754
|
+
type: "learning-path" | "challenge" | "certification";
|
|
755
|
+
/** Organization ID that owns this learning path */
|
|
756
|
+
orgId: string;
|
|
757
|
+
/** Visibility of the cirricula */
|
|
758
|
+
visibility: "public" | "private";
|
|
759
|
+
/** Status of the cirricula */
|
|
760
|
+
status: "ready" | "archived" | "not_ready";
|
|
761
|
+
/** slug of the cirricula */
|
|
762
|
+
slug: string;
|
|
763
|
+
/** Level of the cirricula */
|
|
764
|
+
level: "beginner" | "intermediate" | "advanced";
|
|
765
|
+
/** ID of the badge to be awarded on completion of this curricula */
|
|
766
|
+
badge_id?: string;
|
|
767
|
+
/** ID of the invite associated with this cirricula */
|
|
768
|
+
invite_id?: string;
|
|
769
|
+
/** ID of the workspace to which this cirricula belongs */
|
|
770
|
+
workspace_id?: string;
|
|
771
|
+
/** When the cirricula item was created */
|
|
772
|
+
createdAt: string;
|
|
773
|
+
/** When the cirricula was last updated */
|
|
774
|
+
updatedAt: string;
|
|
775
|
+
/** Timestamp when the resource was deleted. */
|
|
776
|
+
deletedAt: string;
|
|
777
|
+
/** Additional metadata about the cirricula */
|
|
778
|
+
metadata: {
|
|
779
|
+
/** Title of the learning path */
|
|
780
|
+
title: string;
|
|
781
|
+
/** Description of the learning path */
|
|
782
|
+
description: string;
|
|
783
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
784
|
+
banner?: string | null;
|
|
785
|
+
/** Canonical URL for the learning path */
|
|
786
|
+
permalink: string;
|
|
787
|
+
certificate?: {
|
|
788
|
+
/** Unique identifier for the certificate */
|
|
789
|
+
id: string;
|
|
790
|
+
/** UUID of the organization that issued the certificate */
|
|
791
|
+
org_id: string;
|
|
792
|
+
/** ID of the recipient (user) who received the certificate */
|
|
793
|
+
recipient_id: string;
|
|
794
|
+
/** Name of the recipient (user) who received the certificate */
|
|
795
|
+
recipient_name: string;
|
|
796
|
+
/** Title of the certificate */
|
|
797
|
+
title: string;
|
|
798
|
+
/** Description of the certificate */
|
|
799
|
+
description: string;
|
|
800
|
+
/** List of issuing authorities for the certificate */
|
|
801
|
+
issuing_authorities: {
|
|
802
|
+
/** Name of the issuing authority */
|
|
803
|
+
name: string;
|
|
804
|
+
/** Role of the issuing authority */
|
|
805
|
+
role?: string;
|
|
806
|
+
/** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
|
|
807
|
+
signature_url?: string;
|
|
808
|
+
}[];
|
|
809
|
+
/** Date when the certificate was issued */
|
|
810
|
+
issued_date: string;
|
|
811
|
+
/** Date when the certificate expires (optional) */
|
|
812
|
+
expiration_date?: string;
|
|
813
|
+
};
|
|
814
|
+
/** List of children items in the top-level curricula */
|
|
815
|
+
children?: {
|
|
816
|
+
/** Unique identifier for the course */
|
|
817
|
+
id: string;
|
|
818
|
+
/** Title of the course */
|
|
819
|
+
title: string;
|
|
820
|
+
/** URL to the course content */
|
|
821
|
+
permalink: string;
|
|
822
|
+
/** Course description */
|
|
823
|
+
description: string;
|
|
824
|
+
/** A numeric value to determine the display order. A smaller number appears first. If not specified, items will be sorted alphabetically by title. */
|
|
825
|
+
weight?: number;
|
|
826
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
827
|
+
banner?: string | null;
|
|
828
|
+
/** Type of the content (e.g., learning-path, challenge, certification) */
|
|
829
|
+
type?: "learning-path" | "challenge" | "certification";
|
|
830
|
+
/** List of child nodes (sub-courses or modules) */
|
|
831
|
+
children?: object[];
|
|
832
|
+
}[];
|
|
833
|
+
[key: string]: any;
|
|
834
|
+
};
|
|
835
|
+
} & {
|
|
836
|
+
RegistrationCount: number;
|
|
837
|
+
Invitation?: {
|
|
838
|
+
/** Unique identifier for the invitation , is also used as the invitation code */
|
|
839
|
+
id: string;
|
|
840
|
+
/** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
|
|
841
|
+
owner_id: string;
|
|
842
|
+
/** 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 */
|
|
843
|
+
is_default?: boolean;
|
|
844
|
+
/** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
|
|
845
|
+
name: string;
|
|
846
|
+
/** 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 */
|
|
847
|
+
description: string;
|
|
848
|
+
emails: string[];
|
|
849
|
+
/** ID of the organization to which the user is invited */
|
|
850
|
+
org_id: string;
|
|
851
|
+
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
852
|
+
expires_at?: string;
|
|
853
|
+
/** 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 */
|
|
854
|
+
quota?: number;
|
|
855
|
+
/** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
|
|
856
|
+
accepted_by: string[];
|
|
857
|
+
roles: string[];
|
|
858
|
+
teams: string[];
|
|
859
|
+
/** 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. */
|
|
860
|
+
status: "enabled" | "disabled";
|
|
861
|
+
/** Timestamp when the invitation was created */
|
|
862
|
+
created_at: string;
|
|
863
|
+
/** Timestamp when the invitation was last updated */
|
|
864
|
+
updated_at: string;
|
|
865
|
+
/** Timestamp when the invitation was deleted, if applicable */
|
|
866
|
+
deleted_at: string;
|
|
867
|
+
};
|
|
868
|
+
};
|
|
869
|
+
type UpdateAcademyCurriculaByIdApiArg = {
|
|
870
|
+
/** The ID of the curricula */
|
|
871
|
+
id: string;
|
|
872
|
+
body: {
|
|
873
|
+
/** Type of the curricula */
|
|
874
|
+
type: "learning-path" | "challenge" | "certification";
|
|
875
|
+
/** Title of the curricula */
|
|
876
|
+
title: string;
|
|
877
|
+
/** Organization ID that owns this curricula */
|
|
878
|
+
orgId: string;
|
|
879
|
+
/** ID of the workspace to which this cirricula belongs */
|
|
880
|
+
workspace_id: string;
|
|
881
|
+
/** ID of the badge to be awarded on completion of this curricula */
|
|
882
|
+
badge_id?: string;
|
|
883
|
+
/** ID of the team associated with this curricula */
|
|
884
|
+
team_id: string;
|
|
885
|
+
/** Expiry time for curricula access */
|
|
886
|
+
access_expires_at?: string;
|
|
887
|
+
/** Current access status of the curricula */
|
|
888
|
+
access_status: "enabled" | "disabled";
|
|
889
|
+
/** Additional metadata about the cirricula */
|
|
890
|
+
metadata: {
|
|
891
|
+
/** Title of the learning path */
|
|
892
|
+
title: string;
|
|
893
|
+
/** Description of the learning path */
|
|
894
|
+
description: string;
|
|
895
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
896
|
+
banner?: string | null;
|
|
897
|
+
/** Canonical URL for the learning path */
|
|
898
|
+
permalink: string;
|
|
899
|
+
certificate?: {
|
|
900
|
+
/** Unique identifier for the certificate */
|
|
901
|
+
id: string;
|
|
902
|
+
/** UUID of the organization that issued the certificate */
|
|
903
|
+
org_id: string;
|
|
904
|
+
/** ID of the recipient (user) who received the certificate */
|
|
905
|
+
recipient_id: string;
|
|
906
|
+
/** Name of the recipient (user) who received the certificate */
|
|
907
|
+
recipient_name: string;
|
|
908
|
+
/** Title of the certificate */
|
|
909
|
+
title: string;
|
|
910
|
+
/** Description of the certificate */
|
|
911
|
+
description: string;
|
|
912
|
+
/** List of issuing authorities for the certificate */
|
|
913
|
+
issuing_authorities: {
|
|
914
|
+
/** Name of the issuing authority */
|
|
915
|
+
name: string;
|
|
916
|
+
/** Role of the issuing authority */
|
|
917
|
+
role?: string;
|
|
918
|
+
/** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
|
|
919
|
+
signature_url?: string;
|
|
920
|
+
}[];
|
|
921
|
+
/** Date when the certificate was issued */
|
|
922
|
+
issued_date: string;
|
|
923
|
+
/** Date when the certificate expires (optional) */
|
|
924
|
+
expiration_date?: string;
|
|
925
|
+
};
|
|
926
|
+
/** List of children items in the top-level curricula */
|
|
927
|
+
children?: {
|
|
928
|
+
/** Unique identifier for the course */
|
|
929
|
+
id: string;
|
|
930
|
+
/** Title of the course */
|
|
931
|
+
title: string;
|
|
932
|
+
/** URL to the course content */
|
|
933
|
+
permalink: string;
|
|
934
|
+
/** Course description */
|
|
935
|
+
description: string;
|
|
936
|
+
/** A numeric value to determine the display order. A smaller number appears first. If not specified, items will be sorted alphabetically by title. */
|
|
937
|
+
weight?: number;
|
|
938
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
939
|
+
banner?: string | null;
|
|
940
|
+
/** Type of the content (e.g., learning-path, challenge, certification) */
|
|
941
|
+
type?: "learning-path" | "challenge" | "certification";
|
|
942
|
+
/** List of child nodes (sub-courses or modules) */
|
|
943
|
+
children?: object[];
|
|
944
|
+
}[];
|
|
945
|
+
[key: string]: any;
|
|
946
|
+
};
|
|
947
|
+
};
|
|
948
|
+
};
|
|
949
|
+
type DeleteAcademyCurriculaByIdApiResponse = unknown;
|
|
950
|
+
type DeleteAcademyCurriculaByIdApiArg = {
|
|
951
|
+
/** The ID of the curricula */
|
|
952
|
+
id: string;
|
|
953
|
+
};
|
|
954
|
+
type GetAcademyCurriculaByIdApiResponse = /** status 200 A single curricula */ {
|
|
955
|
+
/** Id of the cirricula */
|
|
956
|
+
id: string;
|
|
957
|
+
type: "learning-path" | "challenge" | "certification";
|
|
958
|
+
/** Organization ID that owns this learning path */
|
|
959
|
+
orgId: string;
|
|
960
|
+
/** Visibility of the cirricula */
|
|
961
|
+
visibility: "public" | "private";
|
|
962
|
+
/** Status of the cirricula */
|
|
963
|
+
status: "ready" | "archived" | "not_ready";
|
|
964
|
+
/** slug of the cirricula */
|
|
965
|
+
slug: string;
|
|
966
|
+
/** Level of the cirricula */
|
|
967
|
+
level: "beginner" | "intermediate" | "advanced";
|
|
968
|
+
/** ID of the badge to be awarded on completion of this curricula */
|
|
969
|
+
badge_id?: string;
|
|
970
|
+
/** ID of the invite associated with this cirricula */
|
|
971
|
+
invite_id?: string;
|
|
972
|
+
/** ID of the workspace to which this cirricula belongs */
|
|
973
|
+
workspace_id?: string;
|
|
974
|
+
/** When the cirricula item was created */
|
|
975
|
+
createdAt: string;
|
|
976
|
+
/** When the cirricula was last updated */
|
|
977
|
+
updatedAt: string;
|
|
978
|
+
/** Timestamp when the resource was deleted. */
|
|
979
|
+
deletedAt: string;
|
|
980
|
+
/** Additional metadata about the cirricula */
|
|
981
|
+
metadata: {
|
|
982
|
+
/** Title of the learning path */
|
|
983
|
+
title: string;
|
|
984
|
+
/** Description of the learning path */
|
|
985
|
+
description: string;
|
|
986
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
987
|
+
banner?: string | null;
|
|
988
|
+
/** Canonical URL for the learning path */
|
|
989
|
+
permalink: string;
|
|
990
|
+
certificate?: {
|
|
991
|
+
/** Unique identifier for the certificate */
|
|
992
|
+
id: string;
|
|
993
|
+
/** UUID of the organization that issued the certificate */
|
|
994
|
+
org_id: string;
|
|
995
|
+
/** ID of the recipient (user) who received the certificate */
|
|
996
|
+
recipient_id: string;
|
|
997
|
+
/** Name of the recipient (user) who received the certificate */
|
|
998
|
+
recipient_name: string;
|
|
999
|
+
/** Title of the certificate */
|
|
1000
|
+
title: string;
|
|
1001
|
+
/** Description of the certificate */
|
|
1002
|
+
description: string;
|
|
1003
|
+
/** List of issuing authorities for the certificate */
|
|
1004
|
+
issuing_authorities: {
|
|
1005
|
+
/** Name of the issuing authority */
|
|
1006
|
+
name: string;
|
|
1007
|
+
/** Role of the issuing authority */
|
|
1008
|
+
role?: string;
|
|
1009
|
+
/** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
|
|
1010
|
+
signature_url?: string;
|
|
1011
|
+
}[];
|
|
1012
|
+
/** Date when the certificate was issued */
|
|
1013
|
+
issued_date: string;
|
|
1014
|
+
/** Date when the certificate expires (optional) */
|
|
1015
|
+
expiration_date?: string;
|
|
1016
|
+
};
|
|
1017
|
+
/** List of children items in the top-level curricula */
|
|
1018
|
+
children?: {
|
|
1019
|
+
/** Unique identifier for the course */
|
|
1020
|
+
id: string;
|
|
1021
|
+
/** Title of the course */
|
|
1022
|
+
title: string;
|
|
1023
|
+
/** URL to the course content */
|
|
1024
|
+
permalink: string;
|
|
1025
|
+
/** Course description */
|
|
1026
|
+
description: string;
|
|
1027
|
+
/** A numeric value to determine the display order. A smaller number appears first. If not specified, items will be sorted alphabetically by title. */
|
|
1028
|
+
weight?: number;
|
|
1029
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
1030
|
+
banner?: string | null;
|
|
1031
|
+
/** Type of the content (e.g., learning-path, challenge, certification) */
|
|
1032
|
+
type?: "learning-path" | "challenge" | "certification";
|
|
1033
|
+
/** List of child nodes (sub-courses or modules) */
|
|
1034
|
+
children?: object[];
|
|
1035
|
+
}[];
|
|
1036
|
+
[key: string]: any;
|
|
1037
|
+
};
|
|
1038
|
+
} & {
|
|
1039
|
+
RegistrationCount: number;
|
|
1040
|
+
Invitation?: {
|
|
1041
|
+
/** Unique identifier for the invitation , is also used as the invitation code */
|
|
1042
|
+
id: string;
|
|
1043
|
+
/** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
|
|
1044
|
+
owner_id: string;
|
|
1045
|
+
/** 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 */
|
|
1046
|
+
is_default?: boolean;
|
|
1047
|
+
/** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
|
|
1048
|
+
name: string;
|
|
1049
|
+
/** 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 */
|
|
1050
|
+
description: string;
|
|
1051
|
+
emails: string[];
|
|
1052
|
+
/** ID of the organization to which the user is invited */
|
|
1053
|
+
org_id: string;
|
|
1054
|
+
/** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
|
|
1055
|
+
expires_at?: string;
|
|
1056
|
+
/** 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 */
|
|
1057
|
+
quota?: number;
|
|
1058
|
+
/** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
|
|
1059
|
+
accepted_by: string[];
|
|
1060
|
+
roles: string[];
|
|
1061
|
+
teams: string[];
|
|
1062
|
+
/** 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. */
|
|
1063
|
+
status: "enabled" | "disabled";
|
|
1064
|
+
/** Timestamp when the invitation was created */
|
|
1065
|
+
created_at: string;
|
|
1066
|
+
/** Timestamp when the invitation was last updated */
|
|
1067
|
+
updated_at: string;
|
|
1068
|
+
/** Timestamp when the invitation was deleted, if applicable */
|
|
1069
|
+
deleted_at: string;
|
|
1070
|
+
};
|
|
1071
|
+
};
|
|
1072
|
+
type GetAcademyCurriculaByIdApiArg = {
|
|
1073
|
+
/** The ID of the curricula */
|
|
1074
|
+
id: string;
|
|
1075
|
+
};
|
|
748
1076
|
type GetApiAcademyRegistrationsByContentIdApiResponse =
|
|
749
1077
|
/** status 200 Registration data for the specified content */ {
|
|
750
1078
|
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
@@ -2644,18 +2972,181 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
|
|
|
2644
2972
|
isSuccess: true;
|
|
2645
2973
|
isFetching: false;
|
|
2646
2974
|
error: undefined;
|
|
2647
|
-
data: GetFeaturesApiResponse;
|
|
2975
|
+
data: GetFeaturesApiResponse;
|
|
2976
|
+
fulfilledTimeStamp: number;
|
|
2977
|
+
currentData: GetFeaturesApiResponse;
|
|
2978
|
+
} | {
|
|
2979
|
+
data?: GetFeaturesApiResponse | undefined;
|
|
2980
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2981
|
+
originalArgs?: void | undefined;
|
|
2982
|
+
requestId?: string | undefined;
|
|
2983
|
+
endpointName?: string | undefined;
|
|
2984
|
+
startedTimeStamp?: number | undefined;
|
|
2985
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2986
|
+
currentData?: GetFeaturesApiResponse | undefined;
|
|
2987
|
+
isUninitialized: false;
|
|
2988
|
+
isLoading: false;
|
|
2989
|
+
isFetching: false;
|
|
2990
|
+
isSuccess: false;
|
|
2991
|
+
isError: true;
|
|
2992
|
+
error: unknown;
|
|
2993
|
+
}) & {
|
|
2994
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2995
|
+
}) => R) | undefined;
|
|
2996
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2997
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetFeaturesApiResponse, "api", unknown>>;
|
|
2998
|
+
};
|
|
2999
|
+
declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any> = ({
|
|
3000
|
+
data?: undefined;
|
|
3001
|
+
error?: undefined;
|
|
3002
|
+
fulfilledTimeStamp?: undefined;
|
|
3003
|
+
originalArgs?: undefined;
|
|
3004
|
+
requestId?: undefined;
|
|
3005
|
+
endpointName?: string | undefined;
|
|
3006
|
+
startedTimeStamp?: undefined;
|
|
3007
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3008
|
+
currentData?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
3009
|
+
isLoading: false;
|
|
3010
|
+
isFetching: false;
|
|
3011
|
+
isSuccess: false;
|
|
3012
|
+
isError: false;
|
|
3013
|
+
isUninitialized: true;
|
|
3014
|
+
} | {
|
|
3015
|
+
error?: unknown;
|
|
3016
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3017
|
+
originalArgs?: GetFeaturesByOrganizationApiArg | undefined;
|
|
3018
|
+
requestId?: string | undefined;
|
|
3019
|
+
endpointName?: string | undefined;
|
|
3020
|
+
startedTimeStamp?: number | undefined;
|
|
3021
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3022
|
+
currentData?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
3023
|
+
isUninitialized: false;
|
|
3024
|
+
isSuccess: false;
|
|
3025
|
+
isError: false;
|
|
3026
|
+
isLoading: true;
|
|
3027
|
+
isFetching: boolean;
|
|
3028
|
+
data: undefined;
|
|
3029
|
+
} | {
|
|
3030
|
+
originalArgs?: GetFeaturesByOrganizationApiArg | undefined;
|
|
3031
|
+
requestId?: string | undefined;
|
|
3032
|
+
endpointName?: string | undefined;
|
|
3033
|
+
startedTimeStamp?: number | undefined;
|
|
3034
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3035
|
+
currentData?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
3036
|
+
isUninitialized: false;
|
|
3037
|
+
isLoading: false;
|
|
3038
|
+
isError: false;
|
|
3039
|
+
isSuccess: true;
|
|
3040
|
+
isFetching: true;
|
|
3041
|
+
error: undefined;
|
|
3042
|
+
data: GetFeaturesByOrganizationApiResponse;
|
|
3043
|
+
fulfilledTimeStamp: number;
|
|
3044
|
+
} | {
|
|
3045
|
+
originalArgs?: GetFeaturesByOrganizationApiArg | undefined;
|
|
3046
|
+
requestId?: string | undefined;
|
|
3047
|
+
endpointName?: string | undefined;
|
|
3048
|
+
startedTimeStamp?: number | undefined;
|
|
3049
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3050
|
+
isUninitialized: false;
|
|
3051
|
+
isLoading: false;
|
|
3052
|
+
isError: false;
|
|
3053
|
+
isSuccess: true;
|
|
3054
|
+
isFetching: false;
|
|
3055
|
+
error: undefined;
|
|
3056
|
+
data: GetFeaturesByOrganizationApiResponse;
|
|
3057
|
+
fulfilledTimeStamp: number;
|
|
3058
|
+
currentData: GetFeaturesByOrganizationApiResponse;
|
|
3059
|
+
} | {
|
|
3060
|
+
data?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
3061
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3062
|
+
originalArgs?: GetFeaturesByOrganizationApiArg | undefined;
|
|
3063
|
+
requestId?: string | undefined;
|
|
3064
|
+
endpointName?: string | undefined;
|
|
3065
|
+
startedTimeStamp?: number | undefined;
|
|
3066
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3067
|
+
currentData?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
3068
|
+
isUninitialized: false;
|
|
3069
|
+
isLoading: false;
|
|
3070
|
+
isFetching: false;
|
|
3071
|
+
isSuccess: false;
|
|
3072
|
+
isError: true;
|
|
3073
|
+
error: unknown;
|
|
3074
|
+
}) & {
|
|
3075
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3076
|
+
}>(arg: GetFeaturesByOrganizationApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
3077
|
+
skip?: boolean | undefined;
|
|
3078
|
+
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
3079
|
+
} & {
|
|
3080
|
+
skip?: boolean | undefined;
|
|
3081
|
+
selectFromResult?: ((state: ({
|
|
3082
|
+
data?: undefined;
|
|
3083
|
+
error?: undefined;
|
|
3084
|
+
fulfilledTimeStamp?: undefined;
|
|
3085
|
+
originalArgs?: undefined;
|
|
3086
|
+
requestId?: undefined;
|
|
3087
|
+
endpointName?: string | undefined;
|
|
3088
|
+
startedTimeStamp?: undefined;
|
|
3089
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3090
|
+
currentData?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
3091
|
+
isLoading: false;
|
|
3092
|
+
isFetching: false;
|
|
3093
|
+
isSuccess: false;
|
|
3094
|
+
isError: false;
|
|
3095
|
+
isUninitialized: true;
|
|
3096
|
+
} | {
|
|
3097
|
+
error?: unknown;
|
|
3098
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3099
|
+
originalArgs?: GetFeaturesByOrganizationApiArg | undefined;
|
|
3100
|
+
requestId?: string | undefined;
|
|
3101
|
+
endpointName?: string | undefined;
|
|
3102
|
+
startedTimeStamp?: number | undefined;
|
|
3103
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3104
|
+
currentData?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
3105
|
+
isUninitialized: false;
|
|
3106
|
+
isSuccess: false;
|
|
3107
|
+
isError: false;
|
|
3108
|
+
isLoading: true;
|
|
3109
|
+
isFetching: boolean;
|
|
3110
|
+
data: undefined;
|
|
3111
|
+
} | {
|
|
3112
|
+
originalArgs?: GetFeaturesByOrganizationApiArg | undefined;
|
|
3113
|
+
requestId?: string | undefined;
|
|
3114
|
+
endpointName?: string | undefined;
|
|
3115
|
+
startedTimeStamp?: number | undefined;
|
|
3116
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3117
|
+
currentData?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
3118
|
+
isUninitialized: false;
|
|
3119
|
+
isLoading: false;
|
|
3120
|
+
isError: false;
|
|
3121
|
+
isSuccess: true;
|
|
3122
|
+
isFetching: true;
|
|
3123
|
+
error: undefined;
|
|
3124
|
+
data: GetFeaturesByOrganizationApiResponse;
|
|
3125
|
+
fulfilledTimeStamp: number;
|
|
3126
|
+
} | {
|
|
3127
|
+
originalArgs?: GetFeaturesByOrganizationApiArg | undefined;
|
|
3128
|
+
requestId?: string | undefined;
|
|
3129
|
+
endpointName?: string | undefined;
|
|
3130
|
+
startedTimeStamp?: number | undefined;
|
|
3131
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3132
|
+
isUninitialized: false;
|
|
3133
|
+
isLoading: false;
|
|
3134
|
+
isError: false;
|
|
3135
|
+
isSuccess: true;
|
|
3136
|
+
isFetching: false;
|
|
3137
|
+
error: undefined;
|
|
3138
|
+
data: GetFeaturesByOrganizationApiResponse;
|
|
2648
3139
|
fulfilledTimeStamp: number;
|
|
2649
|
-
currentData:
|
|
3140
|
+
currentData: GetFeaturesByOrganizationApiResponse;
|
|
2650
3141
|
} | {
|
|
2651
|
-
data?:
|
|
3142
|
+
data?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
2652
3143
|
fulfilledTimeStamp?: number | undefined;
|
|
2653
|
-
originalArgs?:
|
|
3144
|
+
originalArgs?: GetFeaturesByOrganizationApiArg | undefined;
|
|
2654
3145
|
requestId?: string | undefined;
|
|
2655
3146
|
endpointName?: string | undefined;
|
|
2656
3147
|
startedTimeStamp?: number | undefined;
|
|
2657
3148
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2658
|
-
currentData?:
|
|
3149
|
+
currentData?: GetFeaturesByOrganizationApiResponse | undefined;
|
|
2659
3150
|
isUninitialized: false;
|
|
2660
3151
|
isLoading: false;
|
|
2661
3152
|
isFetching: false;
|
|
@@ -2666,9 +3157,9 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
|
|
|
2666
3157
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2667
3158
|
}) => R) | undefined;
|
|
2668
3159
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2669
|
-
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<
|
|
3160
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetFeaturesByOrganizationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetFeaturesByOrganizationApiResponse, "api", unknown>>;
|
|
2670
3161
|
};
|
|
2671
|
-
declare const
|
|
3162
|
+
declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
2672
3163
|
data?: undefined;
|
|
2673
3164
|
error?: undefined;
|
|
2674
3165
|
fulfilledTimeStamp?: undefined;
|
|
@@ -2677,7 +3168,7 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2677
3168
|
endpointName?: string | undefined;
|
|
2678
3169
|
startedTimeStamp?: undefined;
|
|
2679
3170
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2680
|
-
currentData?:
|
|
3171
|
+
currentData?: GetApiWorkspacesApiResponse | undefined;
|
|
2681
3172
|
isLoading: false;
|
|
2682
3173
|
isFetching: false;
|
|
2683
3174
|
isSuccess: false;
|
|
@@ -2686,12 +3177,12 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2686
3177
|
} | {
|
|
2687
3178
|
error?: unknown;
|
|
2688
3179
|
fulfilledTimeStamp?: number | undefined;
|
|
2689
|
-
originalArgs?:
|
|
3180
|
+
originalArgs?: void | undefined;
|
|
2690
3181
|
requestId?: string | undefined;
|
|
2691
3182
|
endpointName?: string | undefined;
|
|
2692
3183
|
startedTimeStamp?: number | undefined;
|
|
2693
3184
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2694
|
-
currentData?:
|
|
3185
|
+
currentData?: GetApiWorkspacesApiResponse | undefined;
|
|
2695
3186
|
isUninitialized: false;
|
|
2696
3187
|
isSuccess: false;
|
|
2697
3188
|
isError: false;
|
|
@@ -2699,22 +3190,22 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2699
3190
|
isFetching: boolean;
|
|
2700
3191
|
data: undefined;
|
|
2701
3192
|
} | {
|
|
2702
|
-
originalArgs?:
|
|
3193
|
+
originalArgs?: void | undefined;
|
|
2703
3194
|
requestId?: string | undefined;
|
|
2704
3195
|
endpointName?: string | undefined;
|
|
2705
3196
|
startedTimeStamp?: number | undefined;
|
|
2706
3197
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2707
|
-
currentData?:
|
|
3198
|
+
currentData?: GetApiWorkspacesApiResponse | undefined;
|
|
2708
3199
|
isUninitialized: false;
|
|
2709
3200
|
isLoading: false;
|
|
2710
3201
|
isError: false;
|
|
2711
3202
|
isSuccess: true;
|
|
2712
3203
|
isFetching: true;
|
|
2713
3204
|
error: undefined;
|
|
2714
|
-
data:
|
|
3205
|
+
data: GetApiWorkspacesApiResponse;
|
|
2715
3206
|
fulfilledTimeStamp: number;
|
|
2716
3207
|
} | {
|
|
2717
|
-
originalArgs?:
|
|
3208
|
+
originalArgs?: void | undefined;
|
|
2718
3209
|
requestId?: string | undefined;
|
|
2719
3210
|
endpointName?: string | undefined;
|
|
2720
3211
|
startedTimeStamp?: number | undefined;
|
|
@@ -2725,18 +3216,18 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2725
3216
|
isSuccess: true;
|
|
2726
3217
|
isFetching: false;
|
|
2727
3218
|
error: undefined;
|
|
2728
|
-
data:
|
|
3219
|
+
data: GetApiWorkspacesApiResponse;
|
|
2729
3220
|
fulfilledTimeStamp: number;
|
|
2730
|
-
currentData:
|
|
3221
|
+
currentData: GetApiWorkspacesApiResponse;
|
|
2731
3222
|
} | {
|
|
2732
|
-
data?:
|
|
3223
|
+
data?: GetApiWorkspacesApiResponse | undefined;
|
|
2733
3224
|
fulfilledTimeStamp?: number | undefined;
|
|
2734
|
-
originalArgs?:
|
|
3225
|
+
originalArgs?: void | undefined;
|
|
2735
3226
|
requestId?: string | undefined;
|
|
2736
3227
|
endpointName?: string | undefined;
|
|
2737
3228
|
startedTimeStamp?: number | undefined;
|
|
2738
3229
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2739
|
-
currentData?:
|
|
3230
|
+
currentData?: GetApiWorkspacesApiResponse | undefined;
|
|
2740
3231
|
isUninitialized: false;
|
|
2741
3232
|
isLoading: false;
|
|
2742
3233
|
isFetching: false;
|
|
@@ -2745,7 +3236,7 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2745
3236
|
error: unknown;
|
|
2746
3237
|
}) & {
|
|
2747
3238
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2748
|
-
}>(arg:
|
|
3239
|
+
}>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
2749
3240
|
skip?: boolean | undefined;
|
|
2750
3241
|
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
2751
3242
|
} & {
|
|
@@ -2759,7 +3250,7 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2759
3250
|
endpointName?: string | undefined;
|
|
2760
3251
|
startedTimeStamp?: undefined;
|
|
2761
3252
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2762
|
-
currentData?:
|
|
3253
|
+
currentData?: GetApiWorkspacesApiResponse | undefined;
|
|
2763
3254
|
isLoading: false;
|
|
2764
3255
|
isFetching: false;
|
|
2765
3256
|
isSuccess: false;
|
|
@@ -2768,12 +3259,12 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2768
3259
|
} | {
|
|
2769
3260
|
error?: unknown;
|
|
2770
3261
|
fulfilledTimeStamp?: number | undefined;
|
|
2771
|
-
originalArgs?:
|
|
3262
|
+
originalArgs?: void | undefined;
|
|
2772
3263
|
requestId?: string | undefined;
|
|
2773
3264
|
endpointName?: string | undefined;
|
|
2774
3265
|
startedTimeStamp?: number | undefined;
|
|
2775
3266
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2776
|
-
currentData?:
|
|
3267
|
+
currentData?: GetApiWorkspacesApiResponse | undefined;
|
|
2777
3268
|
isUninitialized: false;
|
|
2778
3269
|
isSuccess: false;
|
|
2779
3270
|
isError: false;
|
|
@@ -2781,22 +3272,22 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2781
3272
|
isFetching: boolean;
|
|
2782
3273
|
data: undefined;
|
|
2783
3274
|
} | {
|
|
2784
|
-
originalArgs?:
|
|
3275
|
+
originalArgs?: void | undefined;
|
|
2785
3276
|
requestId?: string | undefined;
|
|
2786
3277
|
endpointName?: string | undefined;
|
|
2787
3278
|
startedTimeStamp?: number | undefined;
|
|
2788
3279
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2789
|
-
currentData?:
|
|
3280
|
+
currentData?: GetApiWorkspacesApiResponse | undefined;
|
|
2790
3281
|
isUninitialized: false;
|
|
2791
3282
|
isLoading: false;
|
|
2792
3283
|
isError: false;
|
|
2793
3284
|
isSuccess: true;
|
|
2794
3285
|
isFetching: true;
|
|
2795
3286
|
error: undefined;
|
|
2796
|
-
data:
|
|
3287
|
+
data: GetApiWorkspacesApiResponse;
|
|
2797
3288
|
fulfilledTimeStamp: number;
|
|
2798
3289
|
} | {
|
|
2799
|
-
originalArgs?:
|
|
3290
|
+
originalArgs?: void | undefined;
|
|
2800
3291
|
requestId?: string | undefined;
|
|
2801
3292
|
endpointName?: string | undefined;
|
|
2802
3293
|
startedTimeStamp?: number | undefined;
|
|
@@ -2807,18 +3298,18 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2807
3298
|
isSuccess: true;
|
|
2808
3299
|
isFetching: false;
|
|
2809
3300
|
error: undefined;
|
|
2810
|
-
data:
|
|
3301
|
+
data: GetApiWorkspacesApiResponse;
|
|
2811
3302
|
fulfilledTimeStamp: number;
|
|
2812
|
-
currentData:
|
|
3303
|
+
currentData: GetApiWorkspacesApiResponse;
|
|
2813
3304
|
} | {
|
|
2814
|
-
data?:
|
|
3305
|
+
data?: GetApiWorkspacesApiResponse | undefined;
|
|
2815
3306
|
fulfilledTimeStamp?: number | undefined;
|
|
2816
|
-
originalArgs?:
|
|
3307
|
+
originalArgs?: void | undefined;
|
|
2817
3308
|
requestId?: string | undefined;
|
|
2818
3309
|
endpointName?: string | undefined;
|
|
2819
3310
|
startedTimeStamp?: number | undefined;
|
|
2820
3311
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2821
|
-
currentData?:
|
|
3312
|
+
currentData?: GetApiWorkspacesApiResponse | undefined;
|
|
2822
3313
|
isUninitialized: false;
|
|
2823
3314
|
isLoading: false;
|
|
2824
3315
|
isFetching: false;
|
|
@@ -2829,9 +3320,170 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
2829
3320
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2830
3321
|
}) => R) | undefined;
|
|
2831
3322
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2832
|
-
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<
|
|
3323
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetApiWorkspacesApiResponse, "api", unknown>>;
|
|
2833
3324
|
};
|
|
2834
|
-
declare const
|
|
3325
|
+
declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
3326
|
+
requestId?: undefined;
|
|
3327
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3328
|
+
data?: undefined;
|
|
3329
|
+
error?: undefined;
|
|
3330
|
+
endpointName?: string | undefined;
|
|
3331
|
+
startedTimeStamp?: undefined;
|
|
3332
|
+
fulfilledTimeStamp?: undefined;
|
|
3333
|
+
} & {
|
|
3334
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3335
|
+
isUninitialized: true;
|
|
3336
|
+
isLoading: false;
|
|
3337
|
+
isSuccess: false;
|
|
3338
|
+
isError: false;
|
|
3339
|
+
}) | ({
|
|
3340
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3341
|
+
} & Omit<{
|
|
3342
|
+
requestId: string;
|
|
3343
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3344
|
+
error?: unknown;
|
|
3345
|
+
endpointName: string;
|
|
3346
|
+
startedTimeStamp: number;
|
|
3347
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3348
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3349
|
+
requestId: string;
|
|
3350
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3351
|
+
error?: unknown;
|
|
3352
|
+
endpointName: string;
|
|
3353
|
+
startedTimeStamp: number;
|
|
3354
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3355
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
3356
|
+
error: undefined;
|
|
3357
|
+
} & {
|
|
3358
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3359
|
+
isUninitialized: false;
|
|
3360
|
+
isLoading: false;
|
|
3361
|
+
isSuccess: true;
|
|
3362
|
+
isError: false;
|
|
3363
|
+
}) | ({
|
|
3364
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3365
|
+
} & {
|
|
3366
|
+
requestId: string;
|
|
3367
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3368
|
+
error?: unknown;
|
|
3369
|
+
endpointName: string;
|
|
3370
|
+
startedTimeStamp: number;
|
|
3371
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3372
|
+
} & {
|
|
3373
|
+
data?: undefined;
|
|
3374
|
+
} & {
|
|
3375
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3376
|
+
isUninitialized: false;
|
|
3377
|
+
isLoading: true;
|
|
3378
|
+
isSuccess: false;
|
|
3379
|
+
isError: false;
|
|
3380
|
+
}) | ({
|
|
3381
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3382
|
+
} & Omit<{
|
|
3383
|
+
requestId: string;
|
|
3384
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3385
|
+
error?: unknown;
|
|
3386
|
+
endpointName: string;
|
|
3387
|
+
startedTimeStamp: number;
|
|
3388
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3389
|
+
}, "error"> & Required<Pick<{
|
|
3390
|
+
requestId: string;
|
|
3391
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3392
|
+
error?: unknown;
|
|
3393
|
+
endpointName: string;
|
|
3394
|
+
startedTimeStamp: number;
|
|
3395
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3396
|
+
}, "error">> & {
|
|
3397
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3398
|
+
isUninitialized: false;
|
|
3399
|
+
isLoading: false;
|
|
3400
|
+
isSuccess: false;
|
|
3401
|
+
isError: true;
|
|
3402
|
+
})>(options?: {
|
|
3403
|
+
selectFromResult?: ((state: ({
|
|
3404
|
+
requestId?: undefined;
|
|
3405
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3406
|
+
data?: undefined;
|
|
3407
|
+
error?: undefined;
|
|
3408
|
+
endpointName?: string | undefined;
|
|
3409
|
+
startedTimeStamp?: undefined;
|
|
3410
|
+
fulfilledTimeStamp?: undefined;
|
|
3411
|
+
} & {
|
|
3412
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3413
|
+
isUninitialized: true;
|
|
3414
|
+
isLoading: false;
|
|
3415
|
+
isSuccess: false;
|
|
3416
|
+
isError: false;
|
|
3417
|
+
}) | ({
|
|
3418
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3419
|
+
} & Omit<{
|
|
3420
|
+
requestId: string;
|
|
3421
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3422
|
+
error?: unknown;
|
|
3423
|
+
endpointName: string;
|
|
3424
|
+
startedTimeStamp: number;
|
|
3425
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3426
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3427
|
+
requestId: string;
|
|
3428
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3429
|
+
error?: unknown;
|
|
3430
|
+
endpointName: string;
|
|
3431
|
+
startedTimeStamp: number;
|
|
3432
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3433
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
3434
|
+
error: undefined;
|
|
3435
|
+
} & {
|
|
3436
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3437
|
+
isUninitialized: false;
|
|
3438
|
+
isLoading: false;
|
|
3439
|
+
isSuccess: true;
|
|
3440
|
+
isError: false;
|
|
3441
|
+
}) | ({
|
|
3442
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3443
|
+
} & {
|
|
3444
|
+
requestId: string;
|
|
3445
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3446
|
+
error?: unknown;
|
|
3447
|
+
endpointName: string;
|
|
3448
|
+
startedTimeStamp: number;
|
|
3449
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3450
|
+
} & {
|
|
3451
|
+
data?: undefined;
|
|
3452
|
+
} & {
|
|
3453
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3454
|
+
isUninitialized: false;
|
|
3455
|
+
isLoading: true;
|
|
3456
|
+
isSuccess: false;
|
|
3457
|
+
isError: false;
|
|
3458
|
+
}) | ({
|
|
3459
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3460
|
+
} & Omit<{
|
|
3461
|
+
requestId: string;
|
|
3462
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3463
|
+
error?: unknown;
|
|
3464
|
+
endpointName: string;
|
|
3465
|
+
startedTimeStamp: number;
|
|
3466
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3467
|
+
}, "error"> & Required<Pick<{
|
|
3468
|
+
requestId: string;
|
|
3469
|
+
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3470
|
+
error?: unknown;
|
|
3471
|
+
endpointName: string;
|
|
3472
|
+
startedTimeStamp: number;
|
|
3473
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3474
|
+
}, "error">> & {
|
|
3475
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3476
|
+
isUninitialized: false;
|
|
3477
|
+
isLoading: false;
|
|
3478
|
+
isSuccess: false;
|
|
3479
|
+
isError: true;
|
|
3480
|
+
})) => R) | undefined;
|
|
3481
|
+
fixedCacheKey?: string | undefined;
|
|
3482
|
+
} | 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, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", PostApiWorkspacesApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3483
|
+
originalArgs?: PostApiWorkspacesApiArg | undefined;
|
|
3484
|
+
reset: () => void;
|
|
3485
|
+
}];
|
|
3486
|
+
declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
2835
3487
|
data?: undefined;
|
|
2836
3488
|
error?: undefined;
|
|
2837
3489
|
fulfilledTimeStamp?: undefined;
|
|
@@ -2840,7 +3492,7 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2840
3492
|
endpointName?: string | undefined;
|
|
2841
3493
|
startedTimeStamp?: undefined;
|
|
2842
3494
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2843
|
-
currentData?:
|
|
3495
|
+
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2844
3496
|
isLoading: false;
|
|
2845
3497
|
isFetching: false;
|
|
2846
3498
|
isSuccess: false;
|
|
@@ -2849,12 +3501,12 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2849
3501
|
} | {
|
|
2850
3502
|
error?: unknown;
|
|
2851
3503
|
fulfilledTimeStamp?: number | undefined;
|
|
2852
|
-
originalArgs?:
|
|
3504
|
+
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
2853
3505
|
requestId?: string | undefined;
|
|
2854
3506
|
endpointName?: string | undefined;
|
|
2855
3507
|
startedTimeStamp?: number | undefined;
|
|
2856
3508
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2857
|
-
currentData?:
|
|
3509
|
+
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2858
3510
|
isUninitialized: false;
|
|
2859
3511
|
isSuccess: false;
|
|
2860
3512
|
isError: false;
|
|
@@ -2862,22 +3514,22 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2862
3514
|
isFetching: boolean;
|
|
2863
3515
|
data: undefined;
|
|
2864
3516
|
} | {
|
|
2865
|
-
originalArgs?:
|
|
3517
|
+
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
2866
3518
|
requestId?: string | undefined;
|
|
2867
3519
|
endpointName?: string | undefined;
|
|
2868
3520
|
startedTimeStamp?: number | undefined;
|
|
2869
3521
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2870
|
-
currentData?:
|
|
3522
|
+
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2871
3523
|
isUninitialized: false;
|
|
2872
3524
|
isLoading: false;
|
|
2873
3525
|
isError: false;
|
|
2874
3526
|
isSuccess: true;
|
|
2875
3527
|
isFetching: true;
|
|
2876
3528
|
error: undefined;
|
|
2877
|
-
data:
|
|
3529
|
+
data: GetApiWorkspacesByIdApiResponse;
|
|
2878
3530
|
fulfilledTimeStamp: number;
|
|
2879
3531
|
} | {
|
|
2880
|
-
originalArgs?:
|
|
3532
|
+
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
2881
3533
|
requestId?: string | undefined;
|
|
2882
3534
|
endpointName?: string | undefined;
|
|
2883
3535
|
startedTimeStamp?: number | undefined;
|
|
@@ -2888,18 +3540,18 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2888
3540
|
isSuccess: true;
|
|
2889
3541
|
isFetching: false;
|
|
2890
3542
|
error: undefined;
|
|
2891
|
-
data:
|
|
3543
|
+
data: GetApiWorkspacesByIdApiResponse;
|
|
2892
3544
|
fulfilledTimeStamp: number;
|
|
2893
|
-
currentData:
|
|
3545
|
+
currentData: GetApiWorkspacesByIdApiResponse;
|
|
2894
3546
|
} | {
|
|
2895
|
-
data?:
|
|
3547
|
+
data?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2896
3548
|
fulfilledTimeStamp?: number | undefined;
|
|
2897
|
-
originalArgs?:
|
|
3549
|
+
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
2898
3550
|
requestId?: string | undefined;
|
|
2899
3551
|
endpointName?: string | undefined;
|
|
2900
3552
|
startedTimeStamp?: number | undefined;
|
|
2901
3553
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2902
|
-
currentData?:
|
|
3554
|
+
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2903
3555
|
isUninitialized: false;
|
|
2904
3556
|
isLoading: false;
|
|
2905
3557
|
isFetching: false;
|
|
@@ -2908,7 +3560,7 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2908
3560
|
error: unknown;
|
|
2909
3561
|
}) & {
|
|
2910
3562
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2911
|
-
}>(arg:
|
|
3563
|
+
}>(arg: GetApiWorkspacesByIdApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
2912
3564
|
skip?: boolean | undefined;
|
|
2913
3565
|
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
2914
3566
|
} & {
|
|
@@ -2922,7 +3574,7 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2922
3574
|
endpointName?: string | undefined;
|
|
2923
3575
|
startedTimeStamp?: undefined;
|
|
2924
3576
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2925
|
-
currentData?:
|
|
3577
|
+
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2926
3578
|
isLoading: false;
|
|
2927
3579
|
isFetching: false;
|
|
2928
3580
|
isSuccess: false;
|
|
@@ -2931,12 +3583,12 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2931
3583
|
} | {
|
|
2932
3584
|
error?: unknown;
|
|
2933
3585
|
fulfilledTimeStamp?: number | undefined;
|
|
2934
|
-
originalArgs?:
|
|
3586
|
+
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
2935
3587
|
requestId?: string | undefined;
|
|
2936
3588
|
endpointName?: string | undefined;
|
|
2937
3589
|
startedTimeStamp?: number | undefined;
|
|
2938
3590
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2939
|
-
currentData?:
|
|
3591
|
+
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2940
3592
|
isUninitialized: false;
|
|
2941
3593
|
isSuccess: false;
|
|
2942
3594
|
isError: false;
|
|
@@ -2944,22 +3596,22 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2944
3596
|
isFetching: boolean;
|
|
2945
3597
|
data: undefined;
|
|
2946
3598
|
} | {
|
|
2947
|
-
originalArgs?:
|
|
3599
|
+
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
2948
3600
|
requestId?: string | undefined;
|
|
2949
3601
|
endpointName?: string | undefined;
|
|
2950
3602
|
startedTimeStamp?: number | undefined;
|
|
2951
3603
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2952
|
-
currentData?:
|
|
3604
|
+
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2953
3605
|
isUninitialized: false;
|
|
2954
3606
|
isLoading: false;
|
|
2955
3607
|
isError: false;
|
|
2956
3608
|
isSuccess: true;
|
|
2957
3609
|
isFetching: true;
|
|
2958
3610
|
error: undefined;
|
|
2959
|
-
data:
|
|
3611
|
+
data: GetApiWorkspacesByIdApiResponse;
|
|
2960
3612
|
fulfilledTimeStamp: number;
|
|
2961
3613
|
} | {
|
|
2962
|
-
originalArgs?:
|
|
3614
|
+
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
2963
3615
|
requestId?: string | undefined;
|
|
2964
3616
|
endpointName?: string | undefined;
|
|
2965
3617
|
startedTimeStamp?: number | undefined;
|
|
@@ -2970,18 +3622,18 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2970
3622
|
isSuccess: true;
|
|
2971
3623
|
isFetching: false;
|
|
2972
3624
|
error: undefined;
|
|
2973
|
-
data:
|
|
3625
|
+
data: GetApiWorkspacesByIdApiResponse;
|
|
2974
3626
|
fulfilledTimeStamp: number;
|
|
2975
|
-
currentData:
|
|
3627
|
+
currentData: GetApiWorkspacesByIdApiResponse;
|
|
2976
3628
|
} | {
|
|
2977
|
-
data?:
|
|
3629
|
+
data?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2978
3630
|
fulfilledTimeStamp?: number | undefined;
|
|
2979
|
-
originalArgs?:
|
|
3631
|
+
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
2980
3632
|
requestId?: string | undefined;
|
|
2981
3633
|
endpointName?: string | undefined;
|
|
2982
3634
|
startedTimeStamp?: number | undefined;
|
|
2983
3635
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2984
|
-
currentData?:
|
|
3636
|
+
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
2985
3637
|
isUninitialized: false;
|
|
2986
3638
|
isLoading: false;
|
|
2987
3639
|
isFetching: false;
|
|
@@ -2992,9 +3644,9 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
2992
3644
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
2993
3645
|
}) => R) | undefined;
|
|
2994
3646
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2995
|
-
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<
|
|
3647
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetApiWorkspacesByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetApiWorkspacesByIdApiResponse, "api", unknown>>;
|
|
2996
3648
|
};
|
|
2997
|
-
declare const
|
|
3649
|
+
declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
2998
3650
|
requestId?: undefined;
|
|
2999
3651
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3000
3652
|
data?: undefined;
|
|
@@ -3012,14 +3664,14 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3012
3664
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3013
3665
|
} & Omit<{
|
|
3014
3666
|
requestId: string;
|
|
3015
|
-
data?:
|
|
3667
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3016
3668
|
error?: unknown;
|
|
3017
3669
|
endpointName: string;
|
|
3018
3670
|
startedTimeStamp: number;
|
|
3019
3671
|
fulfilledTimeStamp?: number | undefined;
|
|
3020
3672
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3021
3673
|
requestId: string;
|
|
3022
|
-
data?:
|
|
3674
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3023
3675
|
error?: unknown;
|
|
3024
3676
|
endpointName: string;
|
|
3025
3677
|
startedTimeStamp: number;
|
|
@@ -3036,7 +3688,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3036
3688
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3037
3689
|
} & {
|
|
3038
3690
|
requestId: string;
|
|
3039
|
-
data?:
|
|
3691
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3040
3692
|
error?: unknown;
|
|
3041
3693
|
endpointName: string;
|
|
3042
3694
|
startedTimeStamp: number;
|
|
@@ -3053,14 +3705,14 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3053
3705
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3054
3706
|
} & Omit<{
|
|
3055
3707
|
requestId: string;
|
|
3056
|
-
data?:
|
|
3708
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3057
3709
|
error?: unknown;
|
|
3058
3710
|
endpointName: string;
|
|
3059
3711
|
startedTimeStamp: number;
|
|
3060
3712
|
fulfilledTimeStamp?: number | undefined;
|
|
3061
3713
|
}, "error"> & Required<Pick<{
|
|
3062
3714
|
requestId: string;
|
|
3063
|
-
data?:
|
|
3715
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3064
3716
|
error?: unknown;
|
|
3065
3717
|
endpointName: string;
|
|
3066
3718
|
startedTimeStamp: number;
|
|
@@ -3090,14 +3742,14 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3090
3742
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3091
3743
|
} & Omit<{
|
|
3092
3744
|
requestId: string;
|
|
3093
|
-
data?:
|
|
3745
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3094
3746
|
error?: unknown;
|
|
3095
3747
|
endpointName: string;
|
|
3096
3748
|
startedTimeStamp: number;
|
|
3097
3749
|
fulfilledTimeStamp?: number | undefined;
|
|
3098
3750
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3099
3751
|
requestId: string;
|
|
3100
|
-
data?:
|
|
3752
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3101
3753
|
error?: unknown;
|
|
3102
3754
|
endpointName: string;
|
|
3103
3755
|
startedTimeStamp: number;
|
|
@@ -3114,7 +3766,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3114
3766
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3115
3767
|
} & {
|
|
3116
3768
|
requestId: string;
|
|
3117
|
-
data?:
|
|
3769
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3118
3770
|
error?: unknown;
|
|
3119
3771
|
endpointName: string;
|
|
3120
3772
|
startedTimeStamp: number;
|
|
@@ -3131,14 +3783,14 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3131
3783
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3132
3784
|
} & Omit<{
|
|
3133
3785
|
requestId: string;
|
|
3134
|
-
data?:
|
|
3786
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3135
3787
|
error?: unknown;
|
|
3136
3788
|
endpointName: string;
|
|
3137
3789
|
startedTimeStamp: number;
|
|
3138
3790
|
fulfilledTimeStamp?: number | undefined;
|
|
3139
3791
|
}, "error"> & Required<Pick<{
|
|
3140
3792
|
requestId: string;
|
|
3141
|
-
data?:
|
|
3793
|
+
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3142
3794
|
error?: unknown;
|
|
3143
3795
|
endpointName: string;
|
|
3144
3796
|
startedTimeStamp: number;
|
|
@@ -3151,174 +3803,172 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3151
3803
|
isError: true;
|
|
3152
3804
|
})) => R) | undefined;
|
|
3153
3805
|
fixedCacheKey?: string | undefined;
|
|
3154
|
-
} | undefined) => readonly [(arg:
|
|
3155
|
-
originalArgs?:
|
|
3806
|
+
} | 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, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", PutApiWorkspacesByIdApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3807
|
+
originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
|
|
3156
3808
|
reset: () => void;
|
|
3157
3809
|
}];
|
|
3158
|
-
declare const
|
|
3810
|
+
declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
3811
|
+
requestId?: undefined;
|
|
3812
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3159
3813
|
data?: undefined;
|
|
3160
3814
|
error?: undefined;
|
|
3161
|
-
fulfilledTimeStamp?: undefined;
|
|
3162
|
-
originalArgs?: undefined;
|
|
3163
|
-
requestId?: undefined;
|
|
3164
3815
|
endpointName?: string | undefined;
|
|
3165
3816
|
startedTimeStamp?: undefined;
|
|
3817
|
+
fulfilledTimeStamp?: undefined;
|
|
3818
|
+
} & {
|
|
3166
3819
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3167
|
-
|
|
3820
|
+
isUninitialized: true;
|
|
3168
3821
|
isLoading: false;
|
|
3169
|
-
isFetching: false;
|
|
3170
3822
|
isSuccess: false;
|
|
3171
3823
|
isError: false;
|
|
3172
|
-
|
|
3173
|
-
|
|
3824
|
+
}) | ({
|
|
3825
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3826
|
+
} & Omit<{
|
|
3827
|
+
requestId: string;
|
|
3828
|
+
data?: unknown;
|
|
3174
3829
|
error?: unknown;
|
|
3830
|
+
endpointName: string;
|
|
3831
|
+
startedTimeStamp: number;
|
|
3175
3832
|
fulfilledTimeStamp?: number | undefined;
|
|
3176
|
-
|
|
3177
|
-
requestId
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
data: undefined;
|
|
3188
|
-
} | {
|
|
3189
|
-
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
3190
|
-
requestId?: string | undefined;
|
|
3191
|
-
endpointName?: string | undefined;
|
|
3192
|
-
startedTimeStamp?: number | undefined;
|
|
3193
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3194
|
-
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
3833
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3834
|
+
requestId: string;
|
|
3835
|
+
data?: unknown;
|
|
3836
|
+
error?: unknown;
|
|
3837
|
+
endpointName: string;
|
|
3838
|
+
startedTimeStamp: number;
|
|
3839
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3840
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
3841
|
+
error: undefined;
|
|
3842
|
+
} & {
|
|
3843
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3195
3844
|
isUninitialized: false;
|
|
3196
3845
|
isLoading: false;
|
|
3197
|
-
isError: false;
|
|
3198
3846
|
isSuccess: true;
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
endpointName
|
|
3207
|
-
startedTimeStamp
|
|
3208
|
-
|
|
3847
|
+
isError: false;
|
|
3848
|
+
}) | ({
|
|
3849
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3850
|
+
} & {
|
|
3851
|
+
requestId: string;
|
|
3852
|
+
data?: unknown;
|
|
3853
|
+
error?: unknown;
|
|
3854
|
+
endpointName: string;
|
|
3855
|
+
startedTimeStamp: number;
|
|
3856
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3857
|
+
} & {
|
|
3858
|
+
data?: undefined;
|
|
3859
|
+
} & {
|
|
3860
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3209
3861
|
isUninitialized: false;
|
|
3210
|
-
isLoading:
|
|
3862
|
+
isLoading: true;
|
|
3863
|
+
isSuccess: false;
|
|
3211
3864
|
isError: false;
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3865
|
+
}) | ({
|
|
3866
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3867
|
+
} & Omit<{
|
|
3868
|
+
requestId: string;
|
|
3869
|
+
data?: unknown;
|
|
3870
|
+
error?: unknown;
|
|
3871
|
+
endpointName: string;
|
|
3872
|
+
startedTimeStamp: number;
|
|
3220
3873
|
fulfilledTimeStamp?: number | undefined;
|
|
3221
|
-
|
|
3222
|
-
requestId
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3874
|
+
}, "error"> & Required<Pick<{
|
|
3875
|
+
requestId: string;
|
|
3876
|
+
data?: unknown;
|
|
3877
|
+
error?: unknown;
|
|
3878
|
+
endpointName: string;
|
|
3879
|
+
startedTimeStamp: number;
|
|
3880
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3881
|
+
}, "error">> & {
|
|
3882
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3227
3883
|
isUninitialized: false;
|
|
3228
3884
|
isLoading: false;
|
|
3229
|
-
isFetching: false;
|
|
3230
3885
|
isSuccess: false;
|
|
3231
3886
|
isError: true;
|
|
3232
|
-
|
|
3233
|
-
}) & {
|
|
3234
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3235
|
-
}>(arg: GetApiWorkspacesByIdApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
3236
|
-
skip?: boolean | undefined;
|
|
3237
|
-
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
3238
|
-
} & {
|
|
3239
|
-
skip?: boolean | undefined;
|
|
3887
|
+
})>(options?: {
|
|
3240
3888
|
selectFromResult?: ((state: ({
|
|
3889
|
+
requestId?: undefined;
|
|
3890
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3241
3891
|
data?: undefined;
|
|
3242
3892
|
error?: undefined;
|
|
3243
|
-
fulfilledTimeStamp?: undefined;
|
|
3244
|
-
originalArgs?: undefined;
|
|
3245
|
-
requestId?: undefined;
|
|
3246
3893
|
endpointName?: string | undefined;
|
|
3247
3894
|
startedTimeStamp?: undefined;
|
|
3895
|
+
fulfilledTimeStamp?: undefined;
|
|
3896
|
+
} & {
|
|
3248
3897
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3249
|
-
|
|
3898
|
+
isUninitialized: true;
|
|
3250
3899
|
isLoading: false;
|
|
3251
|
-
isFetching: false;
|
|
3252
3900
|
isSuccess: false;
|
|
3253
3901
|
isError: false;
|
|
3254
|
-
|
|
3255
|
-
|
|
3902
|
+
}) | ({
|
|
3903
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3904
|
+
} & Omit<{
|
|
3905
|
+
requestId: string;
|
|
3906
|
+
data?: unknown;
|
|
3256
3907
|
error?: unknown;
|
|
3908
|
+
endpointName: string;
|
|
3909
|
+
startedTimeStamp: number;
|
|
3257
3910
|
fulfilledTimeStamp?: number | undefined;
|
|
3258
|
-
|
|
3259
|
-
requestId
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
isError: false;
|
|
3267
|
-
isLoading: true;
|
|
3268
|
-
isFetching: boolean;
|
|
3269
|
-
data: undefined;
|
|
3270
|
-
} | {
|
|
3271
|
-
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
3272
|
-
requestId?: string | undefined;
|
|
3273
|
-
endpointName?: string | undefined;
|
|
3274
|
-
startedTimeStamp?: number | undefined;
|
|
3275
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3276
|
-
currentData?: GetApiWorkspacesByIdApiResponse | undefined;
|
|
3277
|
-
isUninitialized: false;
|
|
3278
|
-
isLoading: false;
|
|
3279
|
-
isError: false;
|
|
3280
|
-
isSuccess: true;
|
|
3281
|
-
isFetching: true;
|
|
3911
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3912
|
+
requestId: string;
|
|
3913
|
+
data?: unknown;
|
|
3914
|
+
error?: unknown;
|
|
3915
|
+
endpointName: string;
|
|
3916
|
+
startedTimeStamp: number;
|
|
3917
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3918
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
3282
3919
|
error: undefined;
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
} | {
|
|
3286
|
-
originalArgs?: GetApiWorkspacesByIdApiArg | undefined;
|
|
3287
|
-
requestId?: string | undefined;
|
|
3288
|
-
endpointName?: string | undefined;
|
|
3289
|
-
startedTimeStamp?: number | undefined;
|
|
3290
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3920
|
+
} & {
|
|
3921
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3291
3922
|
isUninitialized: false;
|
|
3292
3923
|
isLoading: false;
|
|
3293
|
-
isError: false;
|
|
3294
3924
|
isSuccess: true;
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3925
|
+
isError: false;
|
|
3926
|
+
}) | ({
|
|
3927
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3928
|
+
} & {
|
|
3929
|
+
requestId: string;
|
|
3930
|
+
data?: unknown;
|
|
3931
|
+
error?: unknown;
|
|
3932
|
+
endpointName: string;
|
|
3933
|
+
startedTimeStamp: number;
|
|
3934
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3935
|
+
} & {
|
|
3936
|
+
data?: undefined;
|
|
3937
|
+
} & {
|
|
3938
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3939
|
+
isUninitialized: false;
|
|
3940
|
+
isLoading: true;
|
|
3941
|
+
isSuccess: false;
|
|
3942
|
+
isError: false;
|
|
3943
|
+
}) | ({
|
|
3944
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3945
|
+
} & Omit<{
|
|
3946
|
+
requestId: string;
|
|
3947
|
+
data?: unknown;
|
|
3948
|
+
error?: unknown;
|
|
3949
|
+
endpointName: string;
|
|
3950
|
+
startedTimeStamp: number;
|
|
3302
3951
|
fulfilledTimeStamp?: number | undefined;
|
|
3303
|
-
|
|
3304
|
-
requestId
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3952
|
+
}, "error"> & Required<Pick<{
|
|
3953
|
+
requestId: string;
|
|
3954
|
+
data?: unknown;
|
|
3955
|
+
error?: unknown;
|
|
3956
|
+
endpointName: string;
|
|
3957
|
+
startedTimeStamp: number;
|
|
3958
|
+
fulfilledTimeStamp?: number | undefined;
|
|
3959
|
+
}, "error">> & {
|
|
3960
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3309
3961
|
isUninitialized: false;
|
|
3310
3962
|
isLoading: false;
|
|
3311
|
-
isFetching: false;
|
|
3312
3963
|
isSuccess: false;
|
|
3313
3964
|
isError: true;
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
3965
|
+
})) => R) | undefined;
|
|
3966
|
+
fixedCacheKey?: string | undefined;
|
|
3967
|
+
} | 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, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3968
|
+
originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
|
|
3969
|
+
reset: () => void;
|
|
3970
|
+
}];
|
|
3971
|
+
declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
3322
3972
|
requestId?: undefined;
|
|
3323
3973
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3324
3974
|
data?: undefined;
|
|
@@ -3336,14 +3986,14 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3336
3986
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3337
3987
|
} & Omit<{
|
|
3338
3988
|
requestId: string;
|
|
3339
|
-
data?:
|
|
3989
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3340
3990
|
error?: unknown;
|
|
3341
3991
|
endpointName: string;
|
|
3342
3992
|
startedTimeStamp: number;
|
|
3343
3993
|
fulfilledTimeStamp?: number | undefined;
|
|
3344
3994
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3345
3995
|
requestId: string;
|
|
3346
|
-
data?:
|
|
3996
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3347
3997
|
error?: unknown;
|
|
3348
3998
|
endpointName: string;
|
|
3349
3999
|
startedTimeStamp: number;
|
|
@@ -3360,7 +4010,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3360
4010
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3361
4011
|
} & {
|
|
3362
4012
|
requestId: string;
|
|
3363
|
-
data?:
|
|
4013
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3364
4014
|
error?: unknown;
|
|
3365
4015
|
endpointName: string;
|
|
3366
4016
|
startedTimeStamp: number;
|
|
@@ -3377,14 +4027,14 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3377
4027
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3378
4028
|
} & Omit<{
|
|
3379
4029
|
requestId: string;
|
|
3380
|
-
data?:
|
|
4030
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3381
4031
|
error?: unknown;
|
|
3382
4032
|
endpointName: string;
|
|
3383
4033
|
startedTimeStamp: number;
|
|
3384
4034
|
fulfilledTimeStamp?: number | undefined;
|
|
3385
4035
|
}, "error"> & Required<Pick<{
|
|
3386
4036
|
requestId: string;
|
|
3387
|
-
data?:
|
|
4037
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3388
4038
|
error?: unknown;
|
|
3389
4039
|
endpointName: string;
|
|
3390
4040
|
startedTimeStamp: number;
|
|
@@ -3414,14 +4064,14 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3414
4064
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3415
4065
|
} & Omit<{
|
|
3416
4066
|
requestId: string;
|
|
3417
|
-
data?:
|
|
4067
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3418
4068
|
error?: unknown;
|
|
3419
4069
|
endpointName: string;
|
|
3420
4070
|
startedTimeStamp: number;
|
|
3421
4071
|
fulfilledTimeStamp?: number | undefined;
|
|
3422
4072
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3423
4073
|
requestId: string;
|
|
3424
|
-
data?:
|
|
4074
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3425
4075
|
error?: unknown;
|
|
3426
4076
|
endpointName: string;
|
|
3427
4077
|
startedTimeStamp: number;
|
|
@@ -3438,7 +4088,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3438
4088
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3439
4089
|
} & {
|
|
3440
4090
|
requestId: string;
|
|
3441
|
-
data?:
|
|
4091
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3442
4092
|
error?: unknown;
|
|
3443
4093
|
endpointName: string;
|
|
3444
4094
|
startedTimeStamp: number;
|
|
@@ -3455,14 +4105,14 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3455
4105
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3456
4106
|
} & Omit<{
|
|
3457
4107
|
requestId: string;
|
|
3458
|
-
data?:
|
|
4108
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3459
4109
|
error?: unknown;
|
|
3460
4110
|
endpointName: string;
|
|
3461
4111
|
startedTimeStamp: number;
|
|
3462
4112
|
fulfilledTimeStamp?: number | undefined;
|
|
3463
4113
|
}, "error"> & Required<Pick<{
|
|
3464
4114
|
requestId: string;
|
|
3465
|
-
data?:
|
|
4115
|
+
data?: CreateEnvironmentApiResponse | undefined;
|
|
3466
4116
|
error?: unknown;
|
|
3467
4117
|
endpointName: string;
|
|
3468
4118
|
startedTimeStamp: number;
|
|
@@ -3475,172 +4125,337 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3475
4125
|
isError: true;
|
|
3476
4126
|
})) => R) | undefined;
|
|
3477
4127
|
fixedCacheKey?: string | undefined;
|
|
3478
|
-
} | undefined) => readonly [(arg:
|
|
3479
|
-
originalArgs?:
|
|
4128
|
+
} | 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, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", CreateEnvironmentApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4129
|
+
originalArgs?: CreateEnvironmentApiArg | undefined;
|
|
3480
4130
|
reset: () => void;
|
|
3481
4131
|
}];
|
|
3482
|
-
declare const
|
|
3483
|
-
requestId?: undefined;
|
|
3484
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4132
|
+
declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
3485
4133
|
data?: undefined;
|
|
3486
4134
|
error?: undefined;
|
|
4135
|
+
fulfilledTimeStamp?: undefined;
|
|
4136
|
+
originalArgs?: undefined;
|
|
4137
|
+
requestId?: undefined;
|
|
3487
4138
|
endpointName?: string | undefined;
|
|
3488
4139
|
startedTimeStamp?: undefined;
|
|
3489
|
-
fulfilledTimeStamp?: undefined;
|
|
3490
|
-
} & {
|
|
3491
4140
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3492
|
-
|
|
4141
|
+
currentData?: GetEnvironmentsApiResponse | undefined;
|
|
3493
4142
|
isLoading: false;
|
|
4143
|
+
isFetching: false;
|
|
3494
4144
|
isSuccess: false;
|
|
3495
4145
|
isError: false;
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
} & Omit<{
|
|
3499
|
-
requestId: string;
|
|
3500
|
-
data?: unknown;
|
|
3501
|
-
error?: unknown;
|
|
3502
|
-
endpointName: string;
|
|
3503
|
-
startedTimeStamp: number;
|
|
3504
|
-
fulfilledTimeStamp?: number | undefined;
|
|
3505
|
-
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3506
|
-
requestId: string;
|
|
3507
|
-
data?: unknown;
|
|
4146
|
+
isUninitialized: true;
|
|
4147
|
+
} | {
|
|
3508
4148
|
error?: unknown;
|
|
3509
|
-
endpointName: string;
|
|
3510
|
-
startedTimeStamp: number;
|
|
3511
4149
|
fulfilledTimeStamp?: number | undefined;
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
4150
|
+
originalArgs?: GetEnvironmentsApiArg | undefined;
|
|
4151
|
+
requestId?: string | undefined;
|
|
4152
|
+
endpointName?: string | undefined;
|
|
4153
|
+
startedTimeStamp?: number | undefined;
|
|
4154
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4155
|
+
currentData?: GetEnvironmentsApiResponse | undefined;
|
|
4156
|
+
isUninitialized: false;
|
|
4157
|
+
isSuccess: false;
|
|
4158
|
+
isError: false;
|
|
4159
|
+
isLoading: true;
|
|
4160
|
+
isFetching: boolean;
|
|
4161
|
+
data: undefined;
|
|
4162
|
+
} | {
|
|
4163
|
+
originalArgs?: GetEnvironmentsApiArg | undefined;
|
|
4164
|
+
requestId?: string | undefined;
|
|
4165
|
+
endpointName?: string | undefined;
|
|
4166
|
+
startedTimeStamp?: number | undefined;
|
|
4167
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4168
|
+
currentData?: GetEnvironmentsApiResponse | undefined;
|
|
3516
4169
|
isUninitialized: false;
|
|
3517
4170
|
isLoading: false;
|
|
4171
|
+
isError: false;
|
|
3518
4172
|
isSuccess: true;
|
|
4173
|
+
isFetching: true;
|
|
4174
|
+
error: undefined;
|
|
4175
|
+
data: GetEnvironmentsApiResponse;
|
|
4176
|
+
fulfilledTimeStamp: number;
|
|
4177
|
+
} | {
|
|
4178
|
+
originalArgs?: GetEnvironmentsApiArg | undefined;
|
|
4179
|
+
requestId?: string | undefined;
|
|
4180
|
+
endpointName?: string | undefined;
|
|
4181
|
+
startedTimeStamp?: number | undefined;
|
|
4182
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4183
|
+
isUninitialized: false;
|
|
4184
|
+
isLoading: false;
|
|
3519
4185
|
isError: false;
|
|
3520
|
-
|
|
3521
|
-
|
|
4186
|
+
isSuccess: true;
|
|
4187
|
+
isFetching: false;
|
|
4188
|
+
error: undefined;
|
|
4189
|
+
data: GetEnvironmentsApiResponse;
|
|
4190
|
+
fulfilledTimeStamp: number;
|
|
4191
|
+
currentData: GetEnvironmentsApiResponse;
|
|
4192
|
+
} | {
|
|
4193
|
+
data?: GetEnvironmentsApiResponse | undefined;
|
|
4194
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4195
|
+
originalArgs?: GetEnvironmentsApiArg | undefined;
|
|
4196
|
+
requestId?: string | undefined;
|
|
4197
|
+
endpointName?: string | undefined;
|
|
4198
|
+
startedTimeStamp?: number | undefined;
|
|
4199
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4200
|
+
currentData?: GetEnvironmentsApiResponse | undefined;
|
|
4201
|
+
isUninitialized: false;
|
|
4202
|
+
isLoading: false;
|
|
4203
|
+
isFetching: false;
|
|
4204
|
+
isSuccess: false;
|
|
4205
|
+
isError: true;
|
|
4206
|
+
error: unknown;
|
|
4207
|
+
}) & {
|
|
4208
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4209
|
+
}>(arg: GetEnvironmentsApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
4210
|
+
skip?: boolean | undefined;
|
|
4211
|
+
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
3522
4212
|
} & {
|
|
3523
|
-
|
|
3524
|
-
|
|
4213
|
+
skip?: boolean | undefined;
|
|
4214
|
+
selectFromResult?: ((state: ({
|
|
4215
|
+
data?: undefined;
|
|
4216
|
+
error?: undefined;
|
|
4217
|
+
fulfilledTimeStamp?: undefined;
|
|
4218
|
+
originalArgs?: undefined;
|
|
4219
|
+
requestId?: undefined;
|
|
4220
|
+
endpointName?: string | undefined;
|
|
4221
|
+
startedTimeStamp?: undefined;
|
|
4222
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4223
|
+
currentData?: GetEnvironmentsApiResponse | undefined;
|
|
4224
|
+
isLoading: false;
|
|
4225
|
+
isFetching: false;
|
|
4226
|
+
isSuccess: false;
|
|
4227
|
+
isError: false;
|
|
4228
|
+
isUninitialized: true;
|
|
4229
|
+
} | {
|
|
4230
|
+
error?: unknown;
|
|
4231
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4232
|
+
originalArgs?: GetEnvironmentsApiArg | undefined;
|
|
4233
|
+
requestId?: string | undefined;
|
|
4234
|
+
endpointName?: string | undefined;
|
|
4235
|
+
startedTimeStamp?: number | undefined;
|
|
4236
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4237
|
+
currentData?: GetEnvironmentsApiResponse | undefined;
|
|
4238
|
+
isUninitialized: false;
|
|
4239
|
+
isSuccess: false;
|
|
4240
|
+
isError: false;
|
|
4241
|
+
isLoading: true;
|
|
4242
|
+
isFetching: boolean;
|
|
4243
|
+
data: undefined;
|
|
4244
|
+
} | {
|
|
4245
|
+
originalArgs?: GetEnvironmentsApiArg | undefined;
|
|
4246
|
+
requestId?: string | undefined;
|
|
4247
|
+
endpointName?: string | undefined;
|
|
4248
|
+
startedTimeStamp?: number | undefined;
|
|
4249
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4250
|
+
currentData?: GetEnvironmentsApiResponse | undefined;
|
|
4251
|
+
isUninitialized: false;
|
|
4252
|
+
isLoading: false;
|
|
4253
|
+
isError: false;
|
|
4254
|
+
isSuccess: true;
|
|
4255
|
+
isFetching: true;
|
|
4256
|
+
error: undefined;
|
|
4257
|
+
data: GetEnvironmentsApiResponse;
|
|
4258
|
+
fulfilledTimeStamp: number;
|
|
4259
|
+
} | {
|
|
4260
|
+
originalArgs?: GetEnvironmentsApiArg | undefined;
|
|
4261
|
+
requestId?: string | undefined;
|
|
4262
|
+
endpointName?: string | undefined;
|
|
4263
|
+
startedTimeStamp?: number | undefined;
|
|
4264
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4265
|
+
isUninitialized: false;
|
|
4266
|
+
isLoading: false;
|
|
4267
|
+
isError: false;
|
|
4268
|
+
isSuccess: true;
|
|
4269
|
+
isFetching: false;
|
|
4270
|
+
error: undefined;
|
|
4271
|
+
data: GetEnvironmentsApiResponse;
|
|
4272
|
+
fulfilledTimeStamp: number;
|
|
4273
|
+
currentData: GetEnvironmentsApiResponse;
|
|
4274
|
+
} | {
|
|
4275
|
+
data?: GetEnvironmentsApiResponse | undefined;
|
|
4276
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4277
|
+
originalArgs?: GetEnvironmentsApiArg | undefined;
|
|
4278
|
+
requestId?: string | undefined;
|
|
4279
|
+
endpointName?: string | undefined;
|
|
4280
|
+
startedTimeStamp?: number | undefined;
|
|
4281
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4282
|
+
currentData?: GetEnvironmentsApiResponse | undefined;
|
|
4283
|
+
isUninitialized: false;
|
|
4284
|
+
isLoading: false;
|
|
4285
|
+
isFetching: false;
|
|
4286
|
+
isSuccess: false;
|
|
4287
|
+
isError: true;
|
|
4288
|
+
error: unknown;
|
|
4289
|
+
}) & {
|
|
4290
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4291
|
+
}) => R) | undefined;
|
|
4292
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
4293
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetEnvironmentsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetEnvironmentsApiResponse, "api", unknown>>;
|
|
4294
|
+
};
|
|
4295
|
+
declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
4296
|
+
data?: undefined;
|
|
4297
|
+
error?: undefined;
|
|
4298
|
+
fulfilledTimeStamp?: undefined;
|
|
4299
|
+
originalArgs?: undefined;
|
|
4300
|
+
requestId?: undefined;
|
|
4301
|
+
endpointName?: string | undefined;
|
|
4302
|
+
startedTimeStamp?: undefined;
|
|
4303
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4304
|
+
currentData?: unknown;
|
|
4305
|
+
isLoading: false;
|
|
4306
|
+
isFetching: false;
|
|
4307
|
+
isSuccess: false;
|
|
4308
|
+
isError: false;
|
|
4309
|
+
isUninitialized: true;
|
|
4310
|
+
} | {
|
|
3525
4311
|
error?: unknown;
|
|
3526
|
-
endpointName: string;
|
|
3527
|
-
startedTimeStamp: number;
|
|
3528
4312
|
fulfilledTimeStamp?: number | undefined;
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
4313
|
+
originalArgs?: GetMyAcademyCirriculaApiArg | undefined;
|
|
4314
|
+
requestId?: string | undefined;
|
|
4315
|
+
endpointName?: string | undefined;
|
|
4316
|
+
startedTimeStamp?: number | undefined;
|
|
4317
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4318
|
+
currentData?: unknown;
|
|
3533
4319
|
isUninitialized: false;
|
|
3534
|
-
isLoading: true;
|
|
3535
4320
|
isSuccess: false;
|
|
3536
4321
|
isError: false;
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
endpointName
|
|
3544
|
-
startedTimeStamp
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
4322
|
+
isLoading: true;
|
|
4323
|
+
isFetching: boolean;
|
|
4324
|
+
data: undefined;
|
|
4325
|
+
} | {
|
|
4326
|
+
originalArgs?: GetMyAcademyCirriculaApiArg | undefined;
|
|
4327
|
+
requestId?: string | undefined;
|
|
4328
|
+
endpointName?: string | undefined;
|
|
4329
|
+
startedTimeStamp?: number | undefined;
|
|
4330
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4331
|
+
currentData?: unknown;
|
|
4332
|
+
isUninitialized: false;
|
|
4333
|
+
isLoading: false;
|
|
4334
|
+
isError: false;
|
|
4335
|
+
isSuccess: true;
|
|
4336
|
+
isFetching: true;
|
|
4337
|
+
error: undefined;
|
|
4338
|
+
data: unknown;
|
|
4339
|
+
fulfilledTimeStamp: number;
|
|
4340
|
+
} | {
|
|
4341
|
+
originalArgs?: GetMyAcademyCirriculaApiArg | undefined;
|
|
4342
|
+
requestId?: string | undefined;
|
|
4343
|
+
endpointName?: string | undefined;
|
|
4344
|
+
startedTimeStamp?: number | undefined;
|
|
4345
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4346
|
+
isUninitialized: false;
|
|
4347
|
+
isLoading: false;
|
|
4348
|
+
isError: false;
|
|
4349
|
+
isSuccess: true;
|
|
4350
|
+
isFetching: false;
|
|
4351
|
+
error: undefined;
|
|
4352
|
+
data: unknown;
|
|
4353
|
+
fulfilledTimeStamp: number;
|
|
4354
|
+
currentData: unknown;
|
|
4355
|
+
} | {
|
|
3548
4356
|
data?: unknown;
|
|
3549
|
-
error?: unknown;
|
|
3550
|
-
endpointName: string;
|
|
3551
|
-
startedTimeStamp: number;
|
|
3552
4357
|
fulfilledTimeStamp?: number | undefined;
|
|
3553
|
-
|
|
3554
|
-
|
|
4358
|
+
originalArgs?: GetMyAcademyCirriculaApiArg | undefined;
|
|
4359
|
+
requestId?: string | undefined;
|
|
4360
|
+
endpointName?: string | undefined;
|
|
4361
|
+
startedTimeStamp?: number | undefined;
|
|
4362
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4363
|
+
currentData?: unknown;
|
|
3555
4364
|
isUninitialized: false;
|
|
3556
4365
|
isLoading: false;
|
|
4366
|
+
isFetching: false;
|
|
3557
4367
|
isSuccess: false;
|
|
3558
4368
|
isError: true;
|
|
3559
|
-
|
|
4369
|
+
error: unknown;
|
|
4370
|
+
}) & {
|
|
4371
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4372
|
+
}>(arg: GetMyAcademyCirriculaApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
4373
|
+
skip?: boolean | undefined;
|
|
4374
|
+
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
4375
|
+
} & {
|
|
4376
|
+
skip?: boolean | undefined;
|
|
3560
4377
|
selectFromResult?: ((state: ({
|
|
3561
|
-
requestId?: undefined;
|
|
3562
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3563
4378
|
data?: undefined;
|
|
3564
4379
|
error?: undefined;
|
|
4380
|
+
fulfilledTimeStamp?: undefined;
|
|
4381
|
+
originalArgs?: undefined;
|
|
4382
|
+
requestId?: undefined;
|
|
3565
4383
|
endpointName?: string | undefined;
|
|
3566
4384
|
startedTimeStamp?: undefined;
|
|
3567
|
-
fulfilledTimeStamp?: undefined;
|
|
3568
|
-
} & {
|
|
3569
4385
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3570
|
-
|
|
4386
|
+
currentData?: unknown;
|
|
3571
4387
|
isLoading: false;
|
|
4388
|
+
isFetching: false;
|
|
3572
4389
|
isSuccess: false;
|
|
3573
4390
|
isError: false;
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
} & Omit<{
|
|
3577
|
-
requestId: string;
|
|
3578
|
-
data?: unknown;
|
|
3579
|
-
error?: unknown;
|
|
3580
|
-
endpointName: string;
|
|
3581
|
-
startedTimeStamp: number;
|
|
3582
|
-
fulfilledTimeStamp?: number | undefined;
|
|
3583
|
-
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3584
|
-
requestId: string;
|
|
3585
|
-
data?: unknown;
|
|
4391
|
+
isUninitialized: true;
|
|
4392
|
+
} | {
|
|
3586
4393
|
error?: unknown;
|
|
3587
|
-
endpointName: string;
|
|
3588
|
-
startedTimeStamp: number;
|
|
3589
4394
|
fulfilledTimeStamp?: number | undefined;
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
4395
|
+
originalArgs?: GetMyAcademyCirriculaApiArg | undefined;
|
|
4396
|
+
requestId?: string | undefined;
|
|
4397
|
+
endpointName?: string | undefined;
|
|
4398
|
+
startedTimeStamp?: number | undefined;
|
|
4399
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4400
|
+
currentData?: unknown;
|
|
4401
|
+
isUninitialized: false;
|
|
4402
|
+
isSuccess: false;
|
|
4403
|
+
isError: false;
|
|
4404
|
+
isLoading: true;
|
|
4405
|
+
isFetching: boolean;
|
|
4406
|
+
data: undefined;
|
|
4407
|
+
} | {
|
|
4408
|
+
originalArgs?: GetMyAcademyCirriculaApiArg | undefined;
|
|
4409
|
+
requestId?: string | undefined;
|
|
4410
|
+
endpointName?: string | undefined;
|
|
4411
|
+
startedTimeStamp?: number | undefined;
|
|
4412
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4413
|
+
currentData?: unknown;
|
|
3594
4414
|
isUninitialized: false;
|
|
3595
4415
|
isLoading: false;
|
|
3596
|
-
isSuccess: true;
|
|
3597
4416
|
isError: false;
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
} & {
|
|
3610
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4417
|
+
isSuccess: true;
|
|
4418
|
+
isFetching: true;
|
|
4419
|
+
error: undefined;
|
|
4420
|
+
data: unknown;
|
|
4421
|
+
fulfilledTimeStamp: number;
|
|
4422
|
+
} | {
|
|
4423
|
+
originalArgs?: GetMyAcademyCirriculaApiArg | undefined;
|
|
4424
|
+
requestId?: string | undefined;
|
|
4425
|
+
endpointName?: string | undefined;
|
|
4426
|
+
startedTimeStamp?: number | undefined;
|
|
4427
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3611
4428
|
isUninitialized: false;
|
|
3612
|
-
isLoading:
|
|
3613
|
-
isSuccess: false;
|
|
4429
|
+
isLoading: false;
|
|
3614
4430
|
isError: false;
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
startedTimeStamp: number;
|
|
3623
|
-
fulfilledTimeStamp?: number | undefined;
|
|
3624
|
-
}, "error"> & Required<Pick<{
|
|
3625
|
-
requestId: string;
|
|
4431
|
+
isSuccess: true;
|
|
4432
|
+
isFetching: false;
|
|
4433
|
+
error: undefined;
|
|
4434
|
+
data: unknown;
|
|
4435
|
+
fulfilledTimeStamp: number;
|
|
4436
|
+
currentData: unknown;
|
|
4437
|
+
} | {
|
|
3626
4438
|
data?: unknown;
|
|
3627
|
-
error?: unknown;
|
|
3628
|
-
endpointName: string;
|
|
3629
|
-
startedTimeStamp: number;
|
|
3630
4439
|
fulfilledTimeStamp?: number | undefined;
|
|
3631
|
-
|
|
3632
|
-
|
|
4440
|
+
originalArgs?: GetMyAcademyCirriculaApiArg | undefined;
|
|
4441
|
+
requestId?: string | undefined;
|
|
4442
|
+
endpointName?: string | undefined;
|
|
4443
|
+
startedTimeStamp?: number | undefined;
|
|
4444
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4445
|
+
currentData?: unknown;
|
|
3633
4446
|
isUninitialized: false;
|
|
3634
4447
|
isLoading: false;
|
|
4448
|
+
isFetching: false;
|
|
3635
4449
|
isSuccess: false;
|
|
3636
4450
|
isError: true;
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
}
|
|
3643
|
-
|
|
4451
|
+
error: unknown;
|
|
4452
|
+
}) & {
|
|
4453
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4454
|
+
}) => R) | undefined;
|
|
4455
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
4456
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetMyAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>>;
|
|
4457
|
+
};
|
|
4458
|
+
declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any> = ({
|
|
3644
4459
|
requestId?: undefined;
|
|
3645
4460
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3646
4461
|
data?: undefined;
|
|
@@ -3658,14 +4473,14 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3658
4473
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3659
4474
|
} & Omit<{
|
|
3660
4475
|
requestId: string;
|
|
3661
|
-
data?:
|
|
4476
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3662
4477
|
error?: unknown;
|
|
3663
4478
|
endpointName: string;
|
|
3664
4479
|
startedTimeStamp: number;
|
|
3665
4480
|
fulfilledTimeStamp?: number | undefined;
|
|
3666
4481
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3667
4482
|
requestId: string;
|
|
3668
|
-
data?:
|
|
4483
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3669
4484
|
error?: unknown;
|
|
3670
4485
|
endpointName: string;
|
|
3671
4486
|
startedTimeStamp: number;
|
|
@@ -3682,7 +4497,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3682
4497
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3683
4498
|
} & {
|
|
3684
4499
|
requestId: string;
|
|
3685
|
-
data?:
|
|
4500
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3686
4501
|
error?: unknown;
|
|
3687
4502
|
endpointName: string;
|
|
3688
4503
|
startedTimeStamp: number;
|
|
@@ -3699,14 +4514,14 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3699
4514
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3700
4515
|
} & Omit<{
|
|
3701
4516
|
requestId: string;
|
|
3702
|
-
data?:
|
|
4517
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3703
4518
|
error?: unknown;
|
|
3704
4519
|
endpointName: string;
|
|
3705
4520
|
startedTimeStamp: number;
|
|
3706
4521
|
fulfilledTimeStamp?: number | undefined;
|
|
3707
4522
|
}, "error"> & Required<Pick<{
|
|
3708
4523
|
requestId: string;
|
|
3709
|
-
data?:
|
|
4524
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3710
4525
|
error?: unknown;
|
|
3711
4526
|
endpointName: string;
|
|
3712
4527
|
startedTimeStamp: number;
|
|
@@ -3736,14 +4551,14 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3736
4551
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3737
4552
|
} & Omit<{
|
|
3738
4553
|
requestId: string;
|
|
3739
|
-
data?:
|
|
4554
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3740
4555
|
error?: unknown;
|
|
3741
4556
|
endpointName: string;
|
|
3742
4557
|
startedTimeStamp: number;
|
|
3743
4558
|
fulfilledTimeStamp?: number | undefined;
|
|
3744
4559
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3745
4560
|
requestId: string;
|
|
3746
|
-
data?:
|
|
4561
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3747
4562
|
error?: unknown;
|
|
3748
4563
|
endpointName: string;
|
|
3749
4564
|
startedTimeStamp: number;
|
|
@@ -3760,7 +4575,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3760
4575
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3761
4576
|
} & {
|
|
3762
4577
|
requestId: string;
|
|
3763
|
-
data?:
|
|
4578
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3764
4579
|
error?: unknown;
|
|
3765
4580
|
endpointName: string;
|
|
3766
4581
|
startedTimeStamp: number;
|
|
@@ -3777,14 +4592,14 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3777
4592
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3778
4593
|
} & Omit<{
|
|
3779
4594
|
requestId: string;
|
|
3780
|
-
data?:
|
|
4595
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3781
4596
|
error?: unknown;
|
|
3782
4597
|
endpointName: string;
|
|
3783
4598
|
startedTimeStamp: number;
|
|
3784
4599
|
fulfilledTimeStamp?: number | undefined;
|
|
3785
4600
|
}, "error"> & Required<Pick<{
|
|
3786
4601
|
requestId: string;
|
|
3787
|
-
data?:
|
|
4602
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
3788
4603
|
error?: unknown;
|
|
3789
4604
|
endpointName: string;
|
|
3790
4605
|
startedTimeStamp: number;
|
|
@@ -3797,11 +4612,11 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3797
4612
|
isError: true;
|
|
3798
4613
|
})) => R) | undefined;
|
|
3799
4614
|
fixedCacheKey?: string | undefined;
|
|
3800
|
-
} | undefined) => readonly [(arg:
|
|
3801
|
-
originalArgs?:
|
|
4615
|
+
} | undefined) => readonly [(arg: CreateAcademyCurriculaApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateAcademyCurriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", CreateAcademyCurriculaApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4616
|
+
originalArgs?: CreateAcademyCurriculaApiArg | undefined;
|
|
3802
4617
|
reset: () => void;
|
|
3803
4618
|
}];
|
|
3804
|
-
declare const
|
|
4619
|
+
declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
3805
4620
|
data?: undefined;
|
|
3806
4621
|
error?: undefined;
|
|
3807
4622
|
fulfilledTimeStamp?: undefined;
|
|
@@ -3810,7 +4625,7 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3810
4625
|
endpointName?: string | undefined;
|
|
3811
4626
|
startedTimeStamp?: undefined;
|
|
3812
4627
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3813
|
-
currentData?:
|
|
4628
|
+
currentData?: unknown;
|
|
3814
4629
|
isLoading: false;
|
|
3815
4630
|
isFetching: false;
|
|
3816
4631
|
isSuccess: false;
|
|
@@ -3819,12 +4634,12 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3819
4634
|
} | {
|
|
3820
4635
|
error?: unknown;
|
|
3821
4636
|
fulfilledTimeStamp?: number | undefined;
|
|
3822
|
-
originalArgs?:
|
|
4637
|
+
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
3823
4638
|
requestId?: string | undefined;
|
|
3824
4639
|
endpointName?: string | undefined;
|
|
3825
4640
|
startedTimeStamp?: number | undefined;
|
|
3826
4641
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3827
|
-
currentData?:
|
|
4642
|
+
currentData?: unknown;
|
|
3828
4643
|
isUninitialized: false;
|
|
3829
4644
|
isSuccess: false;
|
|
3830
4645
|
isError: false;
|
|
@@ -3832,22 +4647,22 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3832
4647
|
isFetching: boolean;
|
|
3833
4648
|
data: undefined;
|
|
3834
4649
|
} | {
|
|
3835
|
-
originalArgs?:
|
|
4650
|
+
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
3836
4651
|
requestId?: string | undefined;
|
|
3837
4652
|
endpointName?: string | undefined;
|
|
3838
4653
|
startedTimeStamp?: number | undefined;
|
|
3839
4654
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3840
|
-
currentData?:
|
|
4655
|
+
currentData?: unknown;
|
|
3841
4656
|
isUninitialized: false;
|
|
3842
4657
|
isLoading: false;
|
|
3843
4658
|
isError: false;
|
|
3844
4659
|
isSuccess: true;
|
|
3845
4660
|
isFetching: true;
|
|
3846
4661
|
error: undefined;
|
|
3847
|
-
data:
|
|
4662
|
+
data: unknown;
|
|
3848
4663
|
fulfilledTimeStamp: number;
|
|
3849
4664
|
} | {
|
|
3850
|
-
originalArgs?:
|
|
4665
|
+
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
3851
4666
|
requestId?: string | undefined;
|
|
3852
4667
|
endpointName?: string | undefined;
|
|
3853
4668
|
startedTimeStamp?: number | undefined;
|
|
@@ -3858,18 +4673,18 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3858
4673
|
isSuccess: true;
|
|
3859
4674
|
isFetching: false;
|
|
3860
4675
|
error: undefined;
|
|
3861
|
-
data:
|
|
4676
|
+
data: unknown;
|
|
3862
4677
|
fulfilledTimeStamp: number;
|
|
3863
|
-
currentData:
|
|
4678
|
+
currentData: unknown;
|
|
3864
4679
|
} | {
|
|
3865
|
-
data?:
|
|
4680
|
+
data?: unknown;
|
|
3866
4681
|
fulfilledTimeStamp?: number | undefined;
|
|
3867
|
-
originalArgs?:
|
|
4682
|
+
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
3868
4683
|
requestId?: string | undefined;
|
|
3869
4684
|
endpointName?: string | undefined;
|
|
3870
4685
|
startedTimeStamp?: number | undefined;
|
|
3871
4686
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3872
|
-
currentData?:
|
|
4687
|
+
currentData?: unknown;
|
|
3873
4688
|
isUninitialized: false;
|
|
3874
4689
|
isLoading: false;
|
|
3875
4690
|
isFetching: false;
|
|
@@ -3878,7 +4693,7 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3878
4693
|
error: unknown;
|
|
3879
4694
|
}) & {
|
|
3880
4695
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3881
|
-
}>(arg:
|
|
4696
|
+
}>(arg: GetAcademyCirriculaApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
3882
4697
|
skip?: boolean | undefined;
|
|
3883
4698
|
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
3884
4699
|
} & {
|
|
@@ -3892,7 +4707,7 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3892
4707
|
endpointName?: string | undefined;
|
|
3893
4708
|
startedTimeStamp?: undefined;
|
|
3894
4709
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3895
|
-
currentData?:
|
|
4710
|
+
currentData?: unknown;
|
|
3896
4711
|
isLoading: false;
|
|
3897
4712
|
isFetching: false;
|
|
3898
4713
|
isSuccess: false;
|
|
@@ -3901,12 +4716,12 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3901
4716
|
} | {
|
|
3902
4717
|
error?: unknown;
|
|
3903
4718
|
fulfilledTimeStamp?: number | undefined;
|
|
3904
|
-
originalArgs?:
|
|
4719
|
+
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
3905
4720
|
requestId?: string | undefined;
|
|
3906
4721
|
endpointName?: string | undefined;
|
|
3907
4722
|
startedTimeStamp?: number | undefined;
|
|
3908
4723
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3909
|
-
currentData?:
|
|
4724
|
+
currentData?: unknown;
|
|
3910
4725
|
isUninitialized: false;
|
|
3911
4726
|
isSuccess: false;
|
|
3912
4727
|
isError: false;
|
|
@@ -3914,22 +4729,22 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3914
4729
|
isFetching: boolean;
|
|
3915
4730
|
data: undefined;
|
|
3916
4731
|
} | {
|
|
3917
|
-
originalArgs?:
|
|
4732
|
+
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
3918
4733
|
requestId?: string | undefined;
|
|
3919
4734
|
endpointName?: string | undefined;
|
|
3920
4735
|
startedTimeStamp?: number | undefined;
|
|
3921
4736
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3922
|
-
currentData?:
|
|
4737
|
+
currentData?: unknown;
|
|
3923
4738
|
isUninitialized: false;
|
|
3924
4739
|
isLoading: false;
|
|
3925
4740
|
isError: false;
|
|
3926
4741
|
isSuccess: true;
|
|
3927
4742
|
isFetching: true;
|
|
3928
4743
|
error: undefined;
|
|
3929
|
-
data:
|
|
4744
|
+
data: unknown;
|
|
3930
4745
|
fulfilledTimeStamp: number;
|
|
3931
4746
|
} | {
|
|
3932
|
-
originalArgs?:
|
|
4747
|
+
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
3933
4748
|
requestId?: string | undefined;
|
|
3934
4749
|
endpointName?: string | undefined;
|
|
3935
4750
|
startedTimeStamp?: number | undefined;
|
|
@@ -3940,18 +4755,18 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3940
4755
|
isSuccess: true;
|
|
3941
4756
|
isFetching: false;
|
|
3942
4757
|
error: undefined;
|
|
3943
|
-
data:
|
|
4758
|
+
data: unknown;
|
|
3944
4759
|
fulfilledTimeStamp: number;
|
|
3945
|
-
currentData:
|
|
4760
|
+
currentData: unknown;
|
|
3946
4761
|
} | {
|
|
3947
|
-
data?:
|
|
4762
|
+
data?: unknown;
|
|
3948
4763
|
fulfilledTimeStamp?: number | undefined;
|
|
3949
|
-
originalArgs?:
|
|
4764
|
+
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
3950
4765
|
requestId?: string | undefined;
|
|
3951
4766
|
endpointName?: string | undefined;
|
|
3952
4767
|
startedTimeStamp?: number | undefined;
|
|
3953
4768
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3954
|
-
currentData?:
|
|
4769
|
+
currentData?: unknown;
|
|
3955
4770
|
isUninitialized: false;
|
|
3956
4771
|
isLoading: false;
|
|
3957
4772
|
isFetching: false;
|
|
@@ -3962,9 +4777,9 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
3962
4777
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3963
4778
|
}) => R) | undefined;
|
|
3964
4779
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
3965
|
-
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<
|
|
4780
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>>;
|
|
3966
4781
|
};
|
|
3967
|
-
declare const
|
|
4782
|
+
declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string, any> = ({
|
|
3968
4783
|
data?: undefined;
|
|
3969
4784
|
error?: undefined;
|
|
3970
4785
|
fulfilledTimeStamp?: undefined;
|
|
@@ -3973,7 +4788,7 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
3973
4788
|
endpointName?: string | undefined;
|
|
3974
4789
|
startedTimeStamp?: undefined;
|
|
3975
4790
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3976
|
-
currentData?:
|
|
4791
|
+
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
3977
4792
|
isLoading: false;
|
|
3978
4793
|
isFetching: false;
|
|
3979
4794
|
isSuccess: false;
|
|
@@ -3982,12 +4797,12 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
3982
4797
|
} | {
|
|
3983
4798
|
error?: unknown;
|
|
3984
4799
|
fulfilledTimeStamp?: number | undefined;
|
|
3985
|
-
originalArgs?:
|
|
4800
|
+
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
3986
4801
|
requestId?: string | undefined;
|
|
3987
4802
|
endpointName?: string | undefined;
|
|
3988
4803
|
startedTimeStamp?: number | undefined;
|
|
3989
4804
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3990
|
-
currentData?:
|
|
4805
|
+
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
3991
4806
|
isUninitialized: false;
|
|
3992
4807
|
isSuccess: false;
|
|
3993
4808
|
isError: false;
|
|
@@ -3995,22 +4810,22 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
3995
4810
|
isFetching: boolean;
|
|
3996
4811
|
data: undefined;
|
|
3997
4812
|
} | {
|
|
3998
|
-
originalArgs?:
|
|
4813
|
+
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
3999
4814
|
requestId?: string | undefined;
|
|
4000
4815
|
endpointName?: string | undefined;
|
|
4001
4816
|
startedTimeStamp?: number | undefined;
|
|
4002
4817
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4003
|
-
currentData?:
|
|
4818
|
+
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
4004
4819
|
isUninitialized: false;
|
|
4005
4820
|
isLoading: false;
|
|
4006
4821
|
isError: false;
|
|
4007
4822
|
isSuccess: true;
|
|
4008
4823
|
isFetching: true;
|
|
4009
4824
|
error: undefined;
|
|
4010
|
-
data:
|
|
4825
|
+
data: GetApiAcademyByTypeAndOrgIdSlugApiResponse;
|
|
4011
4826
|
fulfilledTimeStamp: number;
|
|
4012
4827
|
} | {
|
|
4013
|
-
originalArgs?:
|
|
4828
|
+
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4014
4829
|
requestId?: string | undefined;
|
|
4015
4830
|
endpointName?: string | undefined;
|
|
4016
4831
|
startedTimeStamp?: number | undefined;
|
|
@@ -4021,18 +4836,18 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4021
4836
|
isSuccess: true;
|
|
4022
4837
|
isFetching: false;
|
|
4023
4838
|
error: undefined;
|
|
4024
|
-
data:
|
|
4839
|
+
data: GetApiAcademyByTypeAndOrgIdSlugApiResponse;
|
|
4025
4840
|
fulfilledTimeStamp: number;
|
|
4026
|
-
currentData:
|
|
4841
|
+
currentData: GetApiAcademyByTypeAndOrgIdSlugApiResponse;
|
|
4027
4842
|
} | {
|
|
4028
|
-
data?:
|
|
4843
|
+
data?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
4029
4844
|
fulfilledTimeStamp?: number | undefined;
|
|
4030
|
-
originalArgs?:
|
|
4845
|
+
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4031
4846
|
requestId?: string | undefined;
|
|
4032
4847
|
endpointName?: string | undefined;
|
|
4033
4848
|
startedTimeStamp?: number | undefined;
|
|
4034
4849
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4035
|
-
currentData?:
|
|
4850
|
+
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
4036
4851
|
isUninitialized: false;
|
|
4037
4852
|
isLoading: false;
|
|
4038
4853
|
isFetching: false;
|
|
@@ -4041,7 +4856,7 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4041
4856
|
error: unknown;
|
|
4042
4857
|
}) & {
|
|
4043
4858
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4044
|
-
}>(arg:
|
|
4859
|
+
}>(arg: GetApiAcademyByTypeAndOrgIdSlugApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
4045
4860
|
skip?: boolean | undefined;
|
|
4046
4861
|
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
4047
4862
|
} & {
|
|
@@ -4055,7 +4870,7 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4055
4870
|
endpointName?: string | undefined;
|
|
4056
4871
|
startedTimeStamp?: undefined;
|
|
4057
4872
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4058
|
-
currentData?:
|
|
4873
|
+
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
4059
4874
|
isLoading: false;
|
|
4060
4875
|
isFetching: false;
|
|
4061
4876
|
isSuccess: false;
|
|
@@ -4064,12 +4879,12 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4064
4879
|
} | {
|
|
4065
4880
|
error?: unknown;
|
|
4066
4881
|
fulfilledTimeStamp?: number | undefined;
|
|
4067
|
-
originalArgs?:
|
|
4882
|
+
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4068
4883
|
requestId?: string | undefined;
|
|
4069
4884
|
endpointName?: string | undefined;
|
|
4070
4885
|
startedTimeStamp?: number | undefined;
|
|
4071
4886
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4072
|
-
currentData?:
|
|
4887
|
+
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
4073
4888
|
isUninitialized: false;
|
|
4074
4889
|
isSuccess: false;
|
|
4075
4890
|
isError: false;
|
|
@@ -4077,22 +4892,22 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4077
4892
|
isFetching: boolean;
|
|
4078
4893
|
data: undefined;
|
|
4079
4894
|
} | {
|
|
4080
|
-
originalArgs?:
|
|
4895
|
+
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4081
4896
|
requestId?: string | undefined;
|
|
4082
4897
|
endpointName?: string | undefined;
|
|
4083
4898
|
startedTimeStamp?: number | undefined;
|
|
4084
4899
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4085
|
-
currentData?:
|
|
4900
|
+
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
4086
4901
|
isUninitialized: false;
|
|
4087
4902
|
isLoading: false;
|
|
4088
4903
|
isError: false;
|
|
4089
4904
|
isSuccess: true;
|
|
4090
4905
|
isFetching: true;
|
|
4091
4906
|
error: undefined;
|
|
4092
|
-
data:
|
|
4907
|
+
data: GetApiAcademyByTypeAndOrgIdSlugApiResponse;
|
|
4093
4908
|
fulfilledTimeStamp: number;
|
|
4094
4909
|
} | {
|
|
4095
|
-
originalArgs?:
|
|
4910
|
+
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4096
4911
|
requestId?: string | undefined;
|
|
4097
4912
|
endpointName?: string | undefined;
|
|
4098
4913
|
startedTimeStamp?: number | undefined;
|
|
@@ -4103,18 +4918,18 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4103
4918
|
isSuccess: true;
|
|
4104
4919
|
isFetching: false;
|
|
4105
4920
|
error: undefined;
|
|
4106
|
-
data:
|
|
4921
|
+
data: GetApiAcademyByTypeAndOrgIdSlugApiResponse;
|
|
4107
4922
|
fulfilledTimeStamp: number;
|
|
4108
|
-
currentData:
|
|
4923
|
+
currentData: GetApiAcademyByTypeAndOrgIdSlugApiResponse;
|
|
4109
4924
|
} | {
|
|
4110
|
-
data?:
|
|
4925
|
+
data?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
4111
4926
|
fulfilledTimeStamp?: number | undefined;
|
|
4112
|
-
originalArgs?:
|
|
4927
|
+
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4113
4928
|
requestId?: string | undefined;
|
|
4114
4929
|
endpointName?: string | undefined;
|
|
4115
4930
|
startedTimeStamp?: number | undefined;
|
|
4116
4931
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4117
|
-
currentData?:
|
|
4932
|
+
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
4118
4933
|
isUninitialized: false;
|
|
4119
4934
|
isLoading: false;
|
|
4120
4935
|
isFetching: false;
|
|
@@ -4125,9 +4940,9 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4125
4940
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4126
4941
|
}) => R) | undefined;
|
|
4127
4942
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
4128
|
-
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<
|
|
4943
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetApiAcademyByTypeAndOrgIdSlugApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetApiAcademyByTypeAndOrgIdSlugApiResponse, "api", unknown>>;
|
|
4129
4944
|
};
|
|
4130
|
-
declare const
|
|
4945
|
+
declare const useRegisterToAcademyContentMutation: <R extends Record<string, any> = ({
|
|
4131
4946
|
requestId?: undefined;
|
|
4132
4947
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4133
4948
|
data?: undefined;
|
|
@@ -4145,14 +4960,14 @@ declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any>
|
|
|
4145
4960
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4146
4961
|
} & Omit<{
|
|
4147
4962
|
requestId: string;
|
|
4148
|
-
data?:
|
|
4963
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4149
4964
|
error?: unknown;
|
|
4150
4965
|
endpointName: string;
|
|
4151
4966
|
startedTimeStamp: number;
|
|
4152
4967
|
fulfilledTimeStamp?: number | undefined;
|
|
4153
4968
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4154
4969
|
requestId: string;
|
|
4155
|
-
data?:
|
|
4970
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4156
4971
|
error?: unknown;
|
|
4157
4972
|
endpointName: string;
|
|
4158
4973
|
startedTimeStamp: number;
|
|
@@ -4169,7 +4984,7 @@ declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any>
|
|
|
4169
4984
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4170
4985
|
} & {
|
|
4171
4986
|
requestId: string;
|
|
4172
|
-
data?:
|
|
4987
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4173
4988
|
error?: unknown;
|
|
4174
4989
|
endpointName: string;
|
|
4175
4990
|
startedTimeStamp: number;
|
|
@@ -4186,14 +5001,14 @@ declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any>
|
|
|
4186
5001
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4187
5002
|
} & Omit<{
|
|
4188
5003
|
requestId: string;
|
|
4189
|
-
data?:
|
|
5004
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4190
5005
|
error?: unknown;
|
|
4191
5006
|
endpointName: string;
|
|
4192
5007
|
startedTimeStamp: number;
|
|
4193
5008
|
fulfilledTimeStamp?: number | undefined;
|
|
4194
5009
|
}, "error"> & Required<Pick<{
|
|
4195
5010
|
requestId: string;
|
|
4196
|
-
data?:
|
|
5011
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4197
5012
|
error?: unknown;
|
|
4198
5013
|
endpointName: string;
|
|
4199
5014
|
startedTimeStamp: number;
|
|
@@ -4219,402 +5034,237 @@ declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any>
|
|
|
4219
5034
|
isLoading: false;
|
|
4220
5035
|
isSuccess: false;
|
|
4221
5036
|
isError: false;
|
|
4222
|
-
}) | ({
|
|
4223
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4224
|
-
} & Omit<{
|
|
4225
|
-
requestId: string;
|
|
4226
|
-
data?:
|
|
4227
|
-
error?: unknown;
|
|
4228
|
-
endpointName: string;
|
|
4229
|
-
startedTimeStamp: number;
|
|
4230
|
-
fulfilledTimeStamp?: number | undefined;
|
|
4231
|
-
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4232
|
-
requestId: string;
|
|
4233
|
-
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4234
|
-
error?: unknown;
|
|
4235
|
-
endpointName: string;
|
|
4236
|
-
startedTimeStamp: number;
|
|
4237
|
-
fulfilledTimeStamp?: number | undefined;
|
|
4238
|
-
}, "data" | "fulfilledTimeStamp">> & {
|
|
4239
|
-
error: undefined;
|
|
4240
|
-
} & {
|
|
4241
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4242
|
-
isUninitialized: false;
|
|
4243
|
-
isLoading: false;
|
|
4244
|
-
isSuccess: true;
|
|
4245
|
-
isError: false;
|
|
4246
|
-
}) | ({
|
|
4247
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4248
|
-
} & {
|
|
4249
|
-
requestId: string;
|
|
4250
|
-
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4251
|
-
error?: unknown;
|
|
4252
|
-
endpointName: string;
|
|
4253
|
-
startedTimeStamp: number;
|
|
4254
|
-
fulfilledTimeStamp?: number | undefined;
|
|
4255
|
-
} & {
|
|
4256
|
-
data?: undefined;
|
|
4257
|
-
} & {
|
|
4258
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4259
|
-
isUninitialized: false;
|
|
4260
|
-
isLoading: true;
|
|
4261
|
-
isSuccess: false;
|
|
4262
|
-
isError: false;
|
|
4263
|
-
}) | ({
|
|
4264
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4265
|
-
} & Omit<{
|
|
4266
|
-
requestId: string;
|
|
4267
|
-
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4268
|
-
error?: unknown;
|
|
4269
|
-
endpointName: string;
|
|
4270
|
-
startedTimeStamp: number;
|
|
4271
|
-
fulfilledTimeStamp?: number | undefined;
|
|
4272
|
-
}, "error"> & Required<Pick<{
|
|
4273
|
-
requestId: string;
|
|
4274
|
-
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4275
|
-
error?: unknown;
|
|
4276
|
-
endpointName: string;
|
|
4277
|
-
startedTimeStamp: number;
|
|
4278
|
-
fulfilledTimeStamp?: number | undefined;
|
|
4279
|
-
}, "error">> & {
|
|
4280
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4281
|
-
isUninitialized: false;
|
|
4282
|
-
isLoading: false;
|
|
4283
|
-
isSuccess: false;
|
|
4284
|
-
isError: true;
|
|
4285
|
-
})) => R) | undefined;
|
|
4286
|
-
fixedCacheKey?: string | undefined;
|
|
4287
|
-
} | undefined) => readonly [(arg: CreateAcademyCurriculaApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateAcademyCurriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", CreateAcademyCurriculaApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4288
|
-
originalArgs?: CreateAcademyCurriculaApiArg | undefined;
|
|
4289
|
-
reset: () => void;
|
|
4290
|
-
}];
|
|
4291
|
-
declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
4292
|
-
data?: undefined;
|
|
4293
|
-
error?: undefined;
|
|
4294
|
-
fulfilledTimeStamp?: undefined;
|
|
4295
|
-
originalArgs?: undefined;
|
|
4296
|
-
requestId?: undefined;
|
|
4297
|
-
endpointName?: string | undefined;
|
|
4298
|
-
startedTimeStamp?: undefined;
|
|
4299
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4300
|
-
currentData?: unknown;
|
|
4301
|
-
isLoading: false;
|
|
4302
|
-
isFetching: false;
|
|
4303
|
-
isSuccess: false;
|
|
4304
|
-
isError: false;
|
|
4305
|
-
isUninitialized: true;
|
|
4306
|
-
} | {
|
|
4307
|
-
error?: unknown;
|
|
4308
|
-
fulfilledTimeStamp?: number | undefined;
|
|
4309
|
-
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
4310
|
-
requestId?: string | undefined;
|
|
4311
|
-
endpointName?: string | undefined;
|
|
4312
|
-
startedTimeStamp?: number | undefined;
|
|
4313
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4314
|
-
currentData?: unknown;
|
|
4315
|
-
isUninitialized: false;
|
|
4316
|
-
isSuccess: false;
|
|
4317
|
-
isError: false;
|
|
4318
|
-
isLoading: true;
|
|
4319
|
-
isFetching: boolean;
|
|
4320
|
-
data: undefined;
|
|
4321
|
-
} | {
|
|
4322
|
-
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
4323
|
-
requestId?: string | undefined;
|
|
4324
|
-
endpointName?: string | undefined;
|
|
4325
|
-
startedTimeStamp?: number | undefined;
|
|
4326
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4327
|
-
currentData?: unknown;
|
|
4328
|
-
isUninitialized: false;
|
|
4329
|
-
isLoading: false;
|
|
4330
|
-
isError: false;
|
|
4331
|
-
isSuccess: true;
|
|
4332
|
-
isFetching: true;
|
|
4333
|
-
error: undefined;
|
|
4334
|
-
data: unknown;
|
|
4335
|
-
fulfilledTimeStamp: number;
|
|
4336
|
-
} | {
|
|
4337
|
-
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
4338
|
-
requestId?: string | undefined;
|
|
4339
|
-
endpointName?: string | undefined;
|
|
4340
|
-
startedTimeStamp?: number | undefined;
|
|
4341
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4342
|
-
isUninitialized: false;
|
|
4343
|
-
isLoading: false;
|
|
4344
|
-
isError: false;
|
|
4345
|
-
isSuccess: true;
|
|
4346
|
-
isFetching: false;
|
|
4347
|
-
error: undefined;
|
|
4348
|
-
data: unknown;
|
|
4349
|
-
fulfilledTimeStamp: number;
|
|
4350
|
-
currentData: unknown;
|
|
4351
|
-
} | {
|
|
4352
|
-
data?: unknown;
|
|
4353
|
-
fulfilledTimeStamp?: number | undefined;
|
|
4354
|
-
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
4355
|
-
requestId?: string | undefined;
|
|
4356
|
-
endpointName?: string | undefined;
|
|
4357
|
-
startedTimeStamp?: number | undefined;
|
|
4358
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4359
|
-
currentData?: unknown;
|
|
4360
|
-
isUninitialized: false;
|
|
4361
|
-
isLoading: false;
|
|
4362
|
-
isFetching: false;
|
|
4363
|
-
isSuccess: false;
|
|
4364
|
-
isError: true;
|
|
4365
|
-
error: unknown;
|
|
4366
|
-
}) & {
|
|
4367
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4368
|
-
}>(arg: GetAcademyCirriculaApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
4369
|
-
skip?: boolean | undefined;
|
|
4370
|
-
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
4371
|
-
} & {
|
|
4372
|
-
skip?: boolean | undefined;
|
|
4373
|
-
selectFromResult?: ((state: ({
|
|
4374
|
-
data?: undefined;
|
|
4375
|
-
error?: undefined;
|
|
4376
|
-
fulfilledTimeStamp?: undefined;
|
|
4377
|
-
originalArgs?: undefined;
|
|
4378
|
-
requestId?: undefined;
|
|
4379
|
-
endpointName?: string | undefined;
|
|
4380
|
-
startedTimeStamp?: undefined;
|
|
4381
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4382
|
-
currentData?: unknown;
|
|
4383
|
-
isLoading: false;
|
|
4384
|
-
isFetching: false;
|
|
4385
|
-
isSuccess: false;
|
|
4386
|
-
isError: false;
|
|
4387
|
-
isUninitialized: true;
|
|
4388
|
-
} | {
|
|
5037
|
+
}) | ({
|
|
5038
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
5039
|
+
} & Omit<{
|
|
5040
|
+
requestId: string;
|
|
5041
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4389
5042
|
error?: unknown;
|
|
5043
|
+
endpointName: string;
|
|
5044
|
+
startedTimeStamp: number;
|
|
4390
5045
|
fulfilledTimeStamp?: number | undefined;
|
|
4391
|
-
|
|
4392
|
-
requestId
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4399
|
-
|
|
4400
|
-
|
|
4401
|
-
|
|
4402
|
-
data: undefined;
|
|
4403
|
-
} | {
|
|
4404
|
-
originalArgs?: GetAcademyCirriculaApiArg | undefined;
|
|
4405
|
-
requestId?: string | undefined;
|
|
4406
|
-
endpointName?: string | undefined;
|
|
4407
|
-
startedTimeStamp?: number | undefined;
|
|
4408
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4409
|
-
currentData?: unknown;
|
|
5046
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5047
|
+
requestId: string;
|
|
5048
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
5049
|
+
error?: unknown;
|
|
5050
|
+
endpointName: string;
|
|
5051
|
+
startedTimeStamp: number;
|
|
5052
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5053
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
5054
|
+
error: undefined;
|
|
5055
|
+
} & {
|
|
5056
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4410
5057
|
isUninitialized: false;
|
|
4411
5058
|
isLoading: false;
|
|
4412
|
-
isError: false;
|
|
4413
5059
|
isSuccess: true;
|
|
4414
|
-
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
|
|
4419
|
-
|
|
4420
|
-
|
|
4421
|
-
endpointName
|
|
4422
|
-
startedTimeStamp
|
|
4423
|
-
|
|
5060
|
+
isError: false;
|
|
5061
|
+
}) | ({
|
|
5062
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5063
|
+
} & {
|
|
5064
|
+
requestId: string;
|
|
5065
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
5066
|
+
error?: unknown;
|
|
5067
|
+
endpointName: string;
|
|
5068
|
+
startedTimeStamp: number;
|
|
5069
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5070
|
+
} & {
|
|
5071
|
+
data?: undefined;
|
|
5072
|
+
} & {
|
|
5073
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4424
5074
|
isUninitialized: false;
|
|
4425
|
-
isLoading:
|
|
5075
|
+
isLoading: true;
|
|
5076
|
+
isSuccess: false;
|
|
4426
5077
|
isError: false;
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
|
|
4432
|
-
|
|
4433
|
-
|
|
4434
|
-
|
|
5078
|
+
}) | ({
|
|
5079
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
5080
|
+
} & Omit<{
|
|
5081
|
+
requestId: string;
|
|
5082
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
5083
|
+
error?: unknown;
|
|
5084
|
+
endpointName: string;
|
|
5085
|
+
startedTimeStamp: number;
|
|
4435
5086
|
fulfilledTimeStamp?: number | undefined;
|
|
4436
|
-
|
|
4437
|
-
requestId
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
5087
|
+
}, "error"> & Required<Pick<{
|
|
5088
|
+
requestId: string;
|
|
5089
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
5090
|
+
error?: unknown;
|
|
5091
|
+
endpointName: string;
|
|
5092
|
+
startedTimeStamp: number;
|
|
5093
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5094
|
+
}, "error">> & {
|
|
5095
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4442
5096
|
isUninitialized: false;
|
|
4443
5097
|
isLoading: false;
|
|
4444
|
-
isFetching: false;
|
|
4445
5098
|
isSuccess: false;
|
|
4446
5099
|
isError: true;
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
5100
|
+
})) => R) | undefined;
|
|
5101
|
+
fixedCacheKey?: string | undefined;
|
|
5102
|
+
} | 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, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", RegisterToAcademyContentApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5103
|
+
originalArgs?: RegisterToAcademyContentApiArg | undefined;
|
|
5104
|
+
reset: () => void;
|
|
5105
|
+
}];
|
|
5106
|
+
declare const useUpdateAcademyCurriculaByIdMutation: <R extends Record<string, any> = ({
|
|
5107
|
+
requestId?: undefined;
|
|
5108
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4455
5109
|
data?: undefined;
|
|
4456
5110
|
error?: undefined;
|
|
4457
|
-
fulfilledTimeStamp?: undefined;
|
|
4458
|
-
originalArgs?: undefined;
|
|
4459
|
-
requestId?: undefined;
|
|
4460
5111
|
endpointName?: string | undefined;
|
|
4461
5112
|
startedTimeStamp?: undefined;
|
|
5113
|
+
fulfilledTimeStamp?: undefined;
|
|
5114
|
+
} & {
|
|
4462
5115
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4463
|
-
|
|
5116
|
+
isUninitialized: true;
|
|
4464
5117
|
isLoading: false;
|
|
4465
|
-
isFetching: false;
|
|
4466
5118
|
isSuccess: false;
|
|
4467
5119
|
isError: false;
|
|
4468
|
-
|
|
4469
|
-
|
|
5120
|
+
}) | ({
|
|
5121
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
5122
|
+
} & Omit<{
|
|
5123
|
+
requestId: string;
|
|
5124
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
4470
5125
|
error?: unknown;
|
|
5126
|
+
endpointName: string;
|
|
5127
|
+
startedTimeStamp: number;
|
|
4471
5128
|
fulfilledTimeStamp?: number | undefined;
|
|
4472
|
-
|
|
4473
|
-
requestId
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
data: undefined;
|
|
4484
|
-
} | {
|
|
4485
|
-
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4486
|
-
requestId?: string | undefined;
|
|
4487
|
-
endpointName?: string | undefined;
|
|
4488
|
-
startedTimeStamp?: number | undefined;
|
|
4489
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4490
|
-
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
5129
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5130
|
+
requestId: string;
|
|
5131
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
5132
|
+
error?: unknown;
|
|
5133
|
+
endpointName: string;
|
|
5134
|
+
startedTimeStamp: number;
|
|
5135
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5136
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
5137
|
+
error: undefined;
|
|
5138
|
+
} & {
|
|
5139
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4491
5140
|
isUninitialized: false;
|
|
4492
5141
|
isLoading: false;
|
|
4493
|
-
isError: false;
|
|
4494
5142
|
isSuccess: true;
|
|
4495
|
-
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
endpointName
|
|
4503
|
-
startedTimeStamp
|
|
4504
|
-
|
|
5143
|
+
isError: false;
|
|
5144
|
+
}) | ({
|
|
5145
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5146
|
+
} & {
|
|
5147
|
+
requestId: string;
|
|
5148
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
5149
|
+
error?: unknown;
|
|
5150
|
+
endpointName: string;
|
|
5151
|
+
startedTimeStamp: number;
|
|
5152
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5153
|
+
} & {
|
|
5154
|
+
data?: undefined;
|
|
5155
|
+
} & {
|
|
5156
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4505
5157
|
isUninitialized: false;
|
|
4506
|
-
isLoading:
|
|
5158
|
+
isLoading: true;
|
|
5159
|
+
isSuccess: false;
|
|
4507
5160
|
isError: false;
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
5161
|
+
}) | ({
|
|
5162
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
5163
|
+
} & Omit<{
|
|
5164
|
+
requestId: string;
|
|
5165
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
5166
|
+
error?: unknown;
|
|
5167
|
+
endpointName: string;
|
|
5168
|
+
startedTimeStamp: number;
|
|
4516
5169
|
fulfilledTimeStamp?: number | undefined;
|
|
4517
|
-
|
|
4518
|
-
requestId
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
5170
|
+
}, "error"> & Required<Pick<{
|
|
5171
|
+
requestId: string;
|
|
5172
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
5173
|
+
error?: unknown;
|
|
5174
|
+
endpointName: string;
|
|
5175
|
+
startedTimeStamp: number;
|
|
5176
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5177
|
+
}, "error">> & {
|
|
5178
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4523
5179
|
isUninitialized: false;
|
|
4524
5180
|
isLoading: false;
|
|
4525
|
-
isFetching: false;
|
|
4526
5181
|
isSuccess: false;
|
|
4527
5182
|
isError: true;
|
|
4528
|
-
|
|
4529
|
-
}) & {
|
|
4530
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4531
|
-
}>(arg: GetApiAcademyByTypeAndOrgIdSlugApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
4532
|
-
skip?: boolean | undefined;
|
|
4533
|
-
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
4534
|
-
} & {
|
|
4535
|
-
skip?: boolean | undefined;
|
|
5183
|
+
})>(options?: {
|
|
4536
5184
|
selectFromResult?: ((state: ({
|
|
4537
|
-
data?: undefined;
|
|
4538
|
-
error?: undefined;
|
|
4539
|
-
fulfilledTimeStamp?: undefined;
|
|
4540
|
-
originalArgs?: undefined;
|
|
4541
5185
|
requestId?: undefined;
|
|
4542
|
-
endpointName?: string | undefined;
|
|
4543
|
-
startedTimeStamp?: undefined;
|
|
4544
5186
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
isFetching: false;
|
|
4548
|
-
isSuccess: false;
|
|
4549
|
-
isError: false;
|
|
4550
|
-
isUninitialized: true;
|
|
4551
|
-
} | {
|
|
4552
|
-
error?: unknown;
|
|
4553
|
-
fulfilledTimeStamp?: number | undefined;
|
|
4554
|
-
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4555
|
-
requestId?: string | undefined;
|
|
4556
|
-
endpointName?: string | undefined;
|
|
4557
|
-
startedTimeStamp?: number | undefined;
|
|
4558
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
4559
|
-
currentData?: GetApiAcademyByTypeAndOrgIdSlugApiResponse | undefined;
|
|
4560
|
-
isUninitialized: false;
|
|
4561
|
-
isSuccess: false;
|
|
4562
|
-
isError: false;
|
|
4563
|
-
isLoading: true;
|
|
4564
|
-
isFetching: boolean;
|
|
4565
|
-
data: undefined;
|
|
4566
|
-
} | {
|
|
4567
|
-
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4568
|
-
requestId?: string | undefined;
|
|
5187
|
+
data?: undefined;
|
|
5188
|
+
error?: undefined;
|
|
4569
5189
|
endpointName?: string | undefined;
|
|
4570
|
-
startedTimeStamp?:
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
5190
|
+
startedTimeStamp?: undefined;
|
|
5191
|
+
fulfilledTimeStamp?: undefined;
|
|
5192
|
+
} & {
|
|
5193
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5194
|
+
isUninitialized: true;
|
|
4574
5195
|
isLoading: false;
|
|
5196
|
+
isSuccess: false;
|
|
4575
5197
|
isError: false;
|
|
4576
|
-
|
|
4577
|
-
|
|
5198
|
+
}) | ({
|
|
5199
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
5200
|
+
} & Omit<{
|
|
5201
|
+
requestId: string;
|
|
5202
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
5203
|
+
error?: unknown;
|
|
5204
|
+
endpointName: string;
|
|
5205
|
+
startedTimeStamp: number;
|
|
5206
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5207
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5208
|
+
requestId: string;
|
|
5209
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
5210
|
+
error?: unknown;
|
|
5211
|
+
endpointName: string;
|
|
5212
|
+
startedTimeStamp: number;
|
|
5213
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5214
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4578
5215
|
error: undefined;
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
} | {
|
|
4582
|
-
originalArgs?: GetApiAcademyByTypeAndOrgIdSlugApiArg | undefined;
|
|
4583
|
-
requestId?: string | undefined;
|
|
4584
|
-
endpointName?: string | undefined;
|
|
4585
|
-
startedTimeStamp?: number | undefined;
|
|
4586
|
-
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5216
|
+
} & {
|
|
5217
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4587
5218
|
isUninitialized: false;
|
|
4588
5219
|
isLoading: false;
|
|
4589
|
-
isError: false;
|
|
4590
5220
|
isSuccess: true;
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
5221
|
+
isError: false;
|
|
5222
|
+
}) | ({
|
|
5223
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5224
|
+
} & {
|
|
5225
|
+
requestId: string;
|
|
5226
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
5227
|
+
error?: unknown;
|
|
5228
|
+
endpointName: string;
|
|
5229
|
+
startedTimeStamp: number;
|
|
4598
5230
|
fulfilledTimeStamp?: number | undefined;
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
5231
|
+
} & {
|
|
5232
|
+
data?: undefined;
|
|
5233
|
+
} & {
|
|
5234
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
5235
|
+
isUninitialized: false;
|
|
5236
|
+
isLoading: true;
|
|
5237
|
+
isSuccess: false;
|
|
5238
|
+
isError: false;
|
|
5239
|
+
}) | ({
|
|
5240
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
5241
|
+
} & Omit<{
|
|
5242
|
+
requestId: string;
|
|
5243
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
5244
|
+
error?: unknown;
|
|
5245
|
+
endpointName: string;
|
|
5246
|
+
startedTimeStamp: number;
|
|
5247
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5248
|
+
}, "error"> & Required<Pick<{
|
|
5249
|
+
requestId: string;
|
|
5250
|
+
data?: UpdateAcademyCurriculaByIdApiResponse | undefined;
|
|
5251
|
+
error?: unknown;
|
|
5252
|
+
endpointName: string;
|
|
5253
|
+
startedTimeStamp: number;
|
|
5254
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5255
|
+
}, "error">> & {
|
|
5256
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4605
5257
|
isUninitialized: false;
|
|
4606
5258
|
isLoading: false;
|
|
4607
|
-
isFetching: false;
|
|
4608
5259
|
isSuccess: false;
|
|
4609
5260
|
isError: true;
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
declare const useRegisterToAcademyContentMutation: <R extends Record<string, any> = ({
|
|
5261
|
+
})) => R) | undefined;
|
|
5262
|
+
fixedCacheKey?: string | undefined;
|
|
5263
|
+
} | undefined) => readonly [(arg: UpdateAcademyCurriculaByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", UpdateAcademyCurriculaByIdApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5264
|
+
originalArgs?: UpdateAcademyCurriculaByIdApiArg | undefined;
|
|
5265
|
+
reset: () => void;
|
|
5266
|
+
}];
|
|
5267
|
+
declare const useDeleteAcademyCurriculaByIdMutation: <R extends Record<string, any> = ({
|
|
4618
5268
|
requestId?: undefined;
|
|
4619
5269
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4620
5270
|
data?: undefined;
|
|
@@ -4632,14 +5282,14 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4632
5282
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4633
5283
|
} & Omit<{
|
|
4634
5284
|
requestId: string;
|
|
4635
|
-
data?:
|
|
5285
|
+
data?: unknown;
|
|
4636
5286
|
error?: unknown;
|
|
4637
5287
|
endpointName: string;
|
|
4638
5288
|
startedTimeStamp: number;
|
|
4639
5289
|
fulfilledTimeStamp?: number | undefined;
|
|
4640
5290
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4641
5291
|
requestId: string;
|
|
4642
|
-
data?:
|
|
5292
|
+
data?: unknown;
|
|
4643
5293
|
error?: unknown;
|
|
4644
5294
|
endpointName: string;
|
|
4645
5295
|
startedTimeStamp: number;
|
|
@@ -4656,7 +5306,7 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4656
5306
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4657
5307
|
} & {
|
|
4658
5308
|
requestId: string;
|
|
4659
|
-
data?:
|
|
5309
|
+
data?: unknown;
|
|
4660
5310
|
error?: unknown;
|
|
4661
5311
|
endpointName: string;
|
|
4662
5312
|
startedTimeStamp: number;
|
|
@@ -4673,14 +5323,14 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4673
5323
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4674
5324
|
} & Omit<{
|
|
4675
5325
|
requestId: string;
|
|
4676
|
-
data?:
|
|
5326
|
+
data?: unknown;
|
|
4677
5327
|
error?: unknown;
|
|
4678
5328
|
endpointName: string;
|
|
4679
5329
|
startedTimeStamp: number;
|
|
4680
5330
|
fulfilledTimeStamp?: number | undefined;
|
|
4681
5331
|
}, "error"> & Required<Pick<{
|
|
4682
5332
|
requestId: string;
|
|
4683
|
-
data?:
|
|
5333
|
+
data?: unknown;
|
|
4684
5334
|
error?: unknown;
|
|
4685
5335
|
endpointName: string;
|
|
4686
5336
|
startedTimeStamp: number;
|
|
@@ -4710,14 +5360,14 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4710
5360
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4711
5361
|
} & Omit<{
|
|
4712
5362
|
requestId: string;
|
|
4713
|
-
data?:
|
|
5363
|
+
data?: unknown;
|
|
4714
5364
|
error?: unknown;
|
|
4715
5365
|
endpointName: string;
|
|
4716
5366
|
startedTimeStamp: number;
|
|
4717
5367
|
fulfilledTimeStamp?: number | undefined;
|
|
4718
5368
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4719
5369
|
requestId: string;
|
|
4720
|
-
data?:
|
|
5370
|
+
data?: unknown;
|
|
4721
5371
|
error?: unknown;
|
|
4722
5372
|
endpointName: string;
|
|
4723
5373
|
startedTimeStamp: number;
|
|
@@ -4734,7 +5384,7 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4734
5384
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4735
5385
|
} & {
|
|
4736
5386
|
requestId: string;
|
|
4737
|
-
data?:
|
|
5387
|
+
data?: unknown;
|
|
4738
5388
|
error?: unknown;
|
|
4739
5389
|
endpointName: string;
|
|
4740
5390
|
startedTimeStamp: number;
|
|
@@ -4751,14 +5401,14 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4751
5401
|
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4752
5402
|
} & Omit<{
|
|
4753
5403
|
requestId: string;
|
|
4754
|
-
data?:
|
|
5404
|
+
data?: unknown;
|
|
4755
5405
|
error?: unknown;
|
|
4756
5406
|
endpointName: string;
|
|
4757
5407
|
startedTimeStamp: number;
|
|
4758
5408
|
fulfilledTimeStamp?: number | undefined;
|
|
4759
5409
|
}, "error"> & Required<Pick<{
|
|
4760
5410
|
requestId: string;
|
|
4761
|
-
data?:
|
|
5411
|
+
data?: unknown;
|
|
4762
5412
|
error?: unknown;
|
|
4763
5413
|
endpointName: string;
|
|
4764
5414
|
startedTimeStamp: number;
|
|
@@ -4771,10 +5421,173 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4771
5421
|
isError: true;
|
|
4772
5422
|
})) => R) | undefined;
|
|
4773
5423
|
fixedCacheKey?: string | undefined;
|
|
4774
|
-
} | undefined) => readonly [(arg:
|
|
4775
|
-
originalArgs?:
|
|
5424
|
+
} | undefined) => readonly [(arg: DeleteAcademyCurriculaByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5425
|
+
originalArgs?: DeleteAcademyCurriculaByIdApiArg | undefined;
|
|
4776
5426
|
reset: () => void;
|
|
4777
5427
|
}];
|
|
5428
|
+
declare const useGetAcademyCurriculaByIdQuery: <R extends Record<string, any> = ({
|
|
5429
|
+
data?: undefined;
|
|
5430
|
+
error?: undefined;
|
|
5431
|
+
fulfilledTimeStamp?: undefined;
|
|
5432
|
+
originalArgs?: undefined;
|
|
5433
|
+
requestId?: undefined;
|
|
5434
|
+
endpointName?: string | undefined;
|
|
5435
|
+
startedTimeStamp?: undefined;
|
|
5436
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5437
|
+
currentData?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5438
|
+
isLoading: false;
|
|
5439
|
+
isFetching: false;
|
|
5440
|
+
isSuccess: false;
|
|
5441
|
+
isError: false;
|
|
5442
|
+
isUninitialized: true;
|
|
5443
|
+
} | {
|
|
5444
|
+
error?: unknown;
|
|
5445
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5446
|
+
originalArgs?: GetAcademyCurriculaByIdApiArg | undefined;
|
|
5447
|
+
requestId?: string | undefined;
|
|
5448
|
+
endpointName?: string | undefined;
|
|
5449
|
+
startedTimeStamp?: number | undefined;
|
|
5450
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5451
|
+
currentData?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5452
|
+
isUninitialized: false;
|
|
5453
|
+
isSuccess: false;
|
|
5454
|
+
isError: false;
|
|
5455
|
+
isLoading: true;
|
|
5456
|
+
isFetching: boolean;
|
|
5457
|
+
data: undefined;
|
|
5458
|
+
} | {
|
|
5459
|
+
originalArgs?: GetAcademyCurriculaByIdApiArg | undefined;
|
|
5460
|
+
requestId?: string | undefined;
|
|
5461
|
+
endpointName?: string | undefined;
|
|
5462
|
+
startedTimeStamp?: number | undefined;
|
|
5463
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5464
|
+
currentData?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5465
|
+
isUninitialized: false;
|
|
5466
|
+
isLoading: false;
|
|
5467
|
+
isError: false;
|
|
5468
|
+
isSuccess: true;
|
|
5469
|
+
isFetching: true;
|
|
5470
|
+
error: undefined;
|
|
5471
|
+
data: GetAcademyCurriculaByIdApiResponse;
|
|
5472
|
+
fulfilledTimeStamp: number;
|
|
5473
|
+
} | {
|
|
5474
|
+
originalArgs?: GetAcademyCurriculaByIdApiArg | undefined;
|
|
5475
|
+
requestId?: string | undefined;
|
|
5476
|
+
endpointName?: string | undefined;
|
|
5477
|
+
startedTimeStamp?: number | undefined;
|
|
5478
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5479
|
+
isUninitialized: false;
|
|
5480
|
+
isLoading: false;
|
|
5481
|
+
isError: false;
|
|
5482
|
+
isSuccess: true;
|
|
5483
|
+
isFetching: false;
|
|
5484
|
+
error: undefined;
|
|
5485
|
+
data: GetAcademyCurriculaByIdApiResponse;
|
|
5486
|
+
fulfilledTimeStamp: number;
|
|
5487
|
+
currentData: GetAcademyCurriculaByIdApiResponse;
|
|
5488
|
+
} | {
|
|
5489
|
+
data?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5490
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5491
|
+
originalArgs?: GetAcademyCurriculaByIdApiArg | undefined;
|
|
5492
|
+
requestId?: string | undefined;
|
|
5493
|
+
endpointName?: string | undefined;
|
|
5494
|
+
startedTimeStamp?: number | undefined;
|
|
5495
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5496
|
+
currentData?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5497
|
+
isUninitialized: false;
|
|
5498
|
+
isLoading: false;
|
|
5499
|
+
isFetching: false;
|
|
5500
|
+
isSuccess: false;
|
|
5501
|
+
isError: true;
|
|
5502
|
+
error: unknown;
|
|
5503
|
+
}) & {
|
|
5504
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5505
|
+
}>(arg: GetAcademyCurriculaByIdApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
5506
|
+
skip?: boolean | undefined;
|
|
5507
|
+
refetchOnMountOrArgChange?: number | boolean | undefined;
|
|
5508
|
+
} & {
|
|
5509
|
+
skip?: boolean | undefined;
|
|
5510
|
+
selectFromResult?: ((state: ({
|
|
5511
|
+
data?: undefined;
|
|
5512
|
+
error?: undefined;
|
|
5513
|
+
fulfilledTimeStamp?: undefined;
|
|
5514
|
+
originalArgs?: undefined;
|
|
5515
|
+
requestId?: undefined;
|
|
5516
|
+
endpointName?: string | undefined;
|
|
5517
|
+
startedTimeStamp?: undefined;
|
|
5518
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5519
|
+
currentData?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5520
|
+
isLoading: false;
|
|
5521
|
+
isFetching: false;
|
|
5522
|
+
isSuccess: false;
|
|
5523
|
+
isError: false;
|
|
5524
|
+
isUninitialized: true;
|
|
5525
|
+
} | {
|
|
5526
|
+
error?: unknown;
|
|
5527
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5528
|
+
originalArgs?: GetAcademyCurriculaByIdApiArg | undefined;
|
|
5529
|
+
requestId?: string | undefined;
|
|
5530
|
+
endpointName?: string | undefined;
|
|
5531
|
+
startedTimeStamp?: number | undefined;
|
|
5532
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5533
|
+
currentData?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5534
|
+
isUninitialized: false;
|
|
5535
|
+
isSuccess: false;
|
|
5536
|
+
isError: false;
|
|
5537
|
+
isLoading: true;
|
|
5538
|
+
isFetching: boolean;
|
|
5539
|
+
data: undefined;
|
|
5540
|
+
} | {
|
|
5541
|
+
originalArgs?: GetAcademyCurriculaByIdApiArg | undefined;
|
|
5542
|
+
requestId?: string | undefined;
|
|
5543
|
+
endpointName?: string | undefined;
|
|
5544
|
+
startedTimeStamp?: number | undefined;
|
|
5545
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5546
|
+
currentData?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5547
|
+
isUninitialized: false;
|
|
5548
|
+
isLoading: false;
|
|
5549
|
+
isError: false;
|
|
5550
|
+
isSuccess: true;
|
|
5551
|
+
isFetching: true;
|
|
5552
|
+
error: undefined;
|
|
5553
|
+
data: GetAcademyCurriculaByIdApiResponse;
|
|
5554
|
+
fulfilledTimeStamp: number;
|
|
5555
|
+
} | {
|
|
5556
|
+
originalArgs?: GetAcademyCurriculaByIdApiArg | undefined;
|
|
5557
|
+
requestId?: string | undefined;
|
|
5558
|
+
endpointName?: string | undefined;
|
|
5559
|
+
startedTimeStamp?: number | undefined;
|
|
5560
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5561
|
+
isUninitialized: false;
|
|
5562
|
+
isLoading: false;
|
|
5563
|
+
isError: false;
|
|
5564
|
+
isSuccess: true;
|
|
5565
|
+
isFetching: false;
|
|
5566
|
+
error: undefined;
|
|
5567
|
+
data: GetAcademyCurriculaByIdApiResponse;
|
|
5568
|
+
fulfilledTimeStamp: number;
|
|
5569
|
+
currentData: GetAcademyCurriculaByIdApiResponse;
|
|
5570
|
+
} | {
|
|
5571
|
+
data?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5572
|
+
fulfilledTimeStamp?: number | undefined;
|
|
5573
|
+
originalArgs?: GetAcademyCurriculaByIdApiArg | undefined;
|
|
5574
|
+
requestId?: string | undefined;
|
|
5575
|
+
endpointName?: string | undefined;
|
|
5576
|
+
startedTimeStamp?: number | undefined;
|
|
5577
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5578
|
+
currentData?: GetAcademyCurriculaByIdApiResponse | undefined;
|
|
5579
|
+
isUninitialized: false;
|
|
5580
|
+
isLoading: false;
|
|
5581
|
+
isFetching: false;
|
|
5582
|
+
isSuccess: false;
|
|
5583
|
+
isError: true;
|
|
5584
|
+
error: unknown;
|
|
5585
|
+
}) & {
|
|
5586
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5587
|
+
}) => R) | undefined;
|
|
5588
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5589
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetAcademyCurriculaByIdApiResponse, "api", unknown>>;
|
|
5590
|
+
};
|
|
4778
5591
|
declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
|
|
4779
5592
|
data?: undefined;
|
|
4780
5593
|
error?: undefined;
|
|
@@ -7205,4 +8018,4 @@ declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = (
|
|
|
7205
8018
|
reset: () => void;
|
|
7206
8019
|
}];
|
|
7207
8020
|
|
|
7208
|
-
export { type AcceptInvitationApiArg, type AcceptInvitationApiResponse, type CreateAcademyCurriculaApiArg, type CreateAcademyCurriculaApiResponse, type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type CreateOrUpdateBadgeApiArg, type CreateOrUpdateBadgeApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type DeleteBadgeByIdApiArg, type DeleteBadgeByIdApiResponse, 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 GetBadgeByIdApiArg, type GetBadgeByIdApiResponse, 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, addTagTypes, injectedRtkApi as cloudApi, useAcceptInvitationMutation, useCreateAcademyCurriculaMutation, useCreateEnvironmentMutation, useCreateInvitationMutation, useCreateOrUpdateBadgeMutation, useDeleteApiWorkspacesByIdMutation, useDeleteBadgeByIdMutation, useDeleteInvitationMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetBadgeByIdQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };
|
|
8021
|
+
export { type AcceptInvitationApiArg, type AcceptInvitationApiResponse, type CreateAcademyCurriculaApiArg, type CreateAcademyCurriculaApiResponse, type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type CreateOrUpdateBadgeApiArg, type CreateOrUpdateBadgeApiResponse, type DeleteAcademyCurriculaByIdApiArg, type DeleteAcademyCurriculaByIdApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type DeleteBadgeByIdApiArg, type DeleteBadgeByIdApiResponse, type DeleteInvitationApiArg, type DeleteInvitationApiResponse, type GetAcademyAdminRegistrationsApiArg, type GetAcademyAdminRegistrationsApiResponse, type GetAcademyAdminSummaryApiArg, type GetAcademyAdminSummaryApiResponse, type GetAcademyCirriculaApiArg, type GetAcademyCirriculaApiResponse, type GetAcademyCurriculaByIdApiArg, type GetAcademyCurriculaByIdApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetBadgeByIdApiArg, type GetBadgeByIdApiResponse, 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 UpdateAcademyCurriculaByIdApiArg, type UpdateAcademyCurriculaByIdApiResponse, type UpdateCurrentItemInProgressTrackerApiArg, type UpdateCurrentItemInProgressTrackerApiResponse, type UpdateInvitationApiArg, type UpdateInvitationApiResponse, addTagTypes, injectedRtkApi as cloudApi, useAcceptInvitationMutation, useCreateAcademyCurriculaMutation, useCreateEnvironmentMutation, useCreateInvitationMutation, useCreateOrUpdateBadgeMutation, useDeleteAcademyCurriculaByIdMutation, useDeleteApiWorkspacesByIdMutation, useDeleteBadgeByIdMutation, useDeleteInvitationMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetAcademyCurriculaByIdQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetBadgeByIdQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateAcademyCurriculaByIdMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };
|