@meshery/schemas 0.8.76 → 0.8.77
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 +255 -81
- package/dist/cloudApi.d.ts +255 -81
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/mesheryApi.d.mts +88 -88
- package/dist/mesheryApi.d.ts +88 -88
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -9,6 +9,7 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
|
|
|
9
9
|
postApiEntitlementSubscriptionsBySubscriptionIdCancel: _reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, (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", PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, "api", unknown>;
|
|
10
10
|
postApiEntitlementSubscriptionsCreate: _reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsCreateApiArg, (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", PostApiEntitlementSubscriptionsCreateApiResponse, "api", unknown>;
|
|
11
11
|
postApiEntitlementSubscriptionsBySubscriptionIdUpgrade: _reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg, (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", PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse, "api", unknown>;
|
|
12
|
+
postApiEntitlementSubscriptionsBySubscriptionIdUpgradePreview: _reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg, (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", object, "api", unknown>;
|
|
12
13
|
postApiEntitlementSubscriptionsWebhooks: _reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsWebhooksApiArg, (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>;
|
|
13
14
|
getPlans: _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", GetPlansApiResponse, "api", unknown>;
|
|
14
15
|
getFeatures: _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>;
|
|
@@ -234,6 +235,18 @@ type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg = {
|
|
|
234
235
|
new_plan_id?: string;
|
|
235
236
|
};
|
|
236
237
|
};
|
|
238
|
+
type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiResponse =
|
|
239
|
+
/** status 200 Preview of the upgraded subscription invoice */ object;
|
|
240
|
+
type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg = {
|
|
241
|
+
/** Subscription ID */
|
|
242
|
+
subscriptionId: string;
|
|
243
|
+
body: {
|
|
244
|
+
/** Old Plan id that is being changed */
|
|
245
|
+
old_plan_id?: string;
|
|
246
|
+
/** New Plan id that is being changed to */
|
|
247
|
+
new_plan_id?: string;
|
|
248
|
+
};
|
|
249
|
+
};
|
|
237
250
|
type PostApiEntitlementSubscriptionsWebhooksApiResponse = unknown;
|
|
238
251
|
type PostApiEntitlementSubscriptionsWebhooksApiArg = {
|
|
239
252
|
body: object;
|
|
@@ -1899,10 +1912,10 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
1899
1912
|
isSuccess: false;
|
|
1900
1913
|
isError: true;
|
|
1901
1914
|
})) => R) | undefined;
|
|
1902
|
-
fixedCacheKey?: string | undefined;
|
|
1915
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
1903
1916
|
} | undefined) => readonly [(arg: ImportDesignApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<ImportDesignApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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", ImportDesignApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
1904
1917
|
originalArgs?: ImportDesignApiArg | undefined;
|
|
1905
|
-
reset: () => void;
|
|
1918
|
+
reset: () => void;
|
|
1906
1919
|
}];
|
|
1907
1920
|
declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
1908
1921
|
requestId?: undefined;
|
|
@@ -2060,14 +2073,14 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
2060
2073
|
isSuccess: false;
|
|
2061
2074
|
isError: true;
|
|
2062
2075
|
})) => R) | undefined;
|
|
2063
|
-
fixedCacheKey?: string | undefined;
|
|
2076
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
2064
2077
|
} | undefined) => readonly [(arg: RegisterMeshmodelsApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<RegisterMeshmodelsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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", RegisterMeshmodelsApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2065
2078
|
originalArgs?: RegisterMeshmodelsApiArg | undefined;
|
|
2066
|
-
reset: () => void;
|
|
2079
|
+
reset: () => void;
|
|
2067
2080
|
}];
|
|
2068
2081
|
declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
|
|
2069
|
-
error?: undefined;
|
|
2070
2082
|
data?: undefined;
|
|
2083
|
+
error?: undefined;
|
|
2071
2084
|
fulfilledTimeStamp?: undefined;
|
|
2072
2085
|
originalArgs?: undefined;
|
|
2073
2086
|
requestId?: undefined;
|
|
@@ -2148,8 +2161,8 @@ declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
|
|
|
2148
2161
|
} & {
|
|
2149
2162
|
skip?: boolean | undefined;
|
|
2150
2163
|
selectFromResult?: ((state: ({
|
|
2151
|
-
error?: undefined;
|
|
2152
2164
|
data?: undefined;
|
|
2165
|
+
error?: undefined;
|
|
2153
2166
|
fulfilledTimeStamp?: undefined;
|
|
2154
2167
|
originalArgs?: undefined;
|
|
2155
2168
|
requestId?: undefined;
|
|
@@ -2384,10 +2397,10 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
|
|
|
2384
2397
|
isSuccess: false;
|
|
2385
2398
|
isError: true;
|
|
2386
2399
|
})) => R) | undefined;
|
|
2387
|
-
fixedCacheKey?: string | undefined;
|
|
2400
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
2388
2401
|
} | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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", PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2389
2402
|
originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
|
|
2390
|
-
reset: () => void;
|
|
2403
|
+
reset: () => void;
|
|
2391
2404
|
}];
|
|
2392
2405
|
declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Record<string, any> = ({
|
|
2393
2406
|
requestId?: undefined;
|
|
@@ -2545,10 +2558,10 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
|
|
|
2545
2558
|
isSuccess: false;
|
|
2546
2559
|
isError: true;
|
|
2547
2560
|
})) => R) | undefined;
|
|
2548
|
-
fixedCacheKey?: string | undefined;
|
|
2561
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
2549
2562
|
} | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsCreateApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsCreateApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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", PostApiEntitlementSubscriptionsCreateApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2550
2563
|
originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
|
|
2551
|
-
reset: () => void;
|
|
2564
|
+
reset: () => void;
|
|
2552
2565
|
}];
|
|
2553
2566
|
declare const usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradeMutation: <R extends Record<string, any> = ({
|
|
2554
2567
|
requestId?: undefined;
|
|
@@ -2706,10 +2719,171 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradeMutation:
|
|
|
2706
2719
|
isSuccess: false;
|
|
2707
2720
|
isError: true;
|
|
2708
2721
|
})) => R) | undefined;
|
|
2709
|
-
fixedCacheKey?: string | undefined;
|
|
2722
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
2710
2723
|
} | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg, (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", PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2711
2724
|
originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg | undefined;
|
|
2712
|
-
reset: () => void;
|
|
2725
|
+
reset: () => void;
|
|
2726
|
+
}];
|
|
2727
|
+
declare const usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewMutation: <R extends Record<string, any> = ({
|
|
2728
|
+
requestId?: undefined;
|
|
2729
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2730
|
+
data?: undefined;
|
|
2731
|
+
error?: undefined;
|
|
2732
|
+
endpointName?: string | undefined;
|
|
2733
|
+
startedTimeStamp?: undefined;
|
|
2734
|
+
fulfilledTimeStamp?: undefined;
|
|
2735
|
+
} & {
|
|
2736
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2737
|
+
isUninitialized: true;
|
|
2738
|
+
isLoading: false;
|
|
2739
|
+
isSuccess: false;
|
|
2740
|
+
isError: false;
|
|
2741
|
+
}) | ({
|
|
2742
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2743
|
+
} & Omit<{
|
|
2744
|
+
requestId: string;
|
|
2745
|
+
data?: object | undefined;
|
|
2746
|
+
error?: unknown;
|
|
2747
|
+
endpointName: string;
|
|
2748
|
+
startedTimeStamp: number;
|
|
2749
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2750
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2751
|
+
requestId: string;
|
|
2752
|
+
data?: object | undefined;
|
|
2753
|
+
error?: unknown;
|
|
2754
|
+
endpointName: string;
|
|
2755
|
+
startedTimeStamp: number;
|
|
2756
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2757
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
2758
|
+
error: undefined;
|
|
2759
|
+
} & {
|
|
2760
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2761
|
+
isUninitialized: false;
|
|
2762
|
+
isLoading: false;
|
|
2763
|
+
isSuccess: true;
|
|
2764
|
+
isError: false;
|
|
2765
|
+
}) | ({
|
|
2766
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2767
|
+
} & {
|
|
2768
|
+
requestId: string;
|
|
2769
|
+
data?: object | undefined;
|
|
2770
|
+
error?: unknown;
|
|
2771
|
+
endpointName: string;
|
|
2772
|
+
startedTimeStamp: number;
|
|
2773
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2774
|
+
} & {
|
|
2775
|
+
data?: undefined;
|
|
2776
|
+
} & {
|
|
2777
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2778
|
+
isUninitialized: false;
|
|
2779
|
+
isLoading: true;
|
|
2780
|
+
isSuccess: false;
|
|
2781
|
+
isError: false;
|
|
2782
|
+
}) | ({
|
|
2783
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2784
|
+
} & Omit<{
|
|
2785
|
+
requestId: string;
|
|
2786
|
+
data?: object | undefined;
|
|
2787
|
+
error?: unknown;
|
|
2788
|
+
endpointName: string;
|
|
2789
|
+
startedTimeStamp: number;
|
|
2790
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2791
|
+
}, "error"> & Required<Pick<{
|
|
2792
|
+
requestId: string;
|
|
2793
|
+
data?: object | undefined;
|
|
2794
|
+
error?: unknown;
|
|
2795
|
+
endpointName: string;
|
|
2796
|
+
startedTimeStamp: number;
|
|
2797
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2798
|
+
}, "error">> & {
|
|
2799
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2800
|
+
isUninitialized: false;
|
|
2801
|
+
isLoading: false;
|
|
2802
|
+
isSuccess: false;
|
|
2803
|
+
isError: true;
|
|
2804
|
+
})>(options?: {
|
|
2805
|
+
selectFromResult?: ((state: ({
|
|
2806
|
+
requestId?: undefined;
|
|
2807
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2808
|
+
data?: undefined;
|
|
2809
|
+
error?: undefined;
|
|
2810
|
+
endpointName?: string | undefined;
|
|
2811
|
+
startedTimeStamp?: undefined;
|
|
2812
|
+
fulfilledTimeStamp?: undefined;
|
|
2813
|
+
} & {
|
|
2814
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2815
|
+
isUninitialized: true;
|
|
2816
|
+
isLoading: false;
|
|
2817
|
+
isSuccess: false;
|
|
2818
|
+
isError: false;
|
|
2819
|
+
}) | ({
|
|
2820
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2821
|
+
} & Omit<{
|
|
2822
|
+
requestId: string;
|
|
2823
|
+
data?: object | undefined;
|
|
2824
|
+
error?: unknown;
|
|
2825
|
+
endpointName: string;
|
|
2826
|
+
startedTimeStamp: number;
|
|
2827
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2828
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2829
|
+
requestId: string;
|
|
2830
|
+
data?: object | undefined;
|
|
2831
|
+
error?: unknown;
|
|
2832
|
+
endpointName: string;
|
|
2833
|
+
startedTimeStamp: number;
|
|
2834
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2835
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
2836
|
+
error: undefined;
|
|
2837
|
+
} & {
|
|
2838
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2839
|
+
isUninitialized: false;
|
|
2840
|
+
isLoading: false;
|
|
2841
|
+
isSuccess: true;
|
|
2842
|
+
isError: false;
|
|
2843
|
+
}) | ({
|
|
2844
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2845
|
+
} & {
|
|
2846
|
+
requestId: string;
|
|
2847
|
+
data?: object | undefined;
|
|
2848
|
+
error?: unknown;
|
|
2849
|
+
endpointName: string;
|
|
2850
|
+
startedTimeStamp: number;
|
|
2851
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2852
|
+
} & {
|
|
2853
|
+
data?: undefined;
|
|
2854
|
+
} & {
|
|
2855
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2856
|
+
isUninitialized: false;
|
|
2857
|
+
isLoading: true;
|
|
2858
|
+
isSuccess: false;
|
|
2859
|
+
isError: false;
|
|
2860
|
+
}) | ({
|
|
2861
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2862
|
+
} & Omit<{
|
|
2863
|
+
requestId: string;
|
|
2864
|
+
data?: object | undefined;
|
|
2865
|
+
error?: unknown;
|
|
2866
|
+
endpointName: string;
|
|
2867
|
+
startedTimeStamp: number;
|
|
2868
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2869
|
+
}, "error"> & Required<Pick<{
|
|
2870
|
+
requestId: string;
|
|
2871
|
+
data?: object | undefined;
|
|
2872
|
+
error?: unknown;
|
|
2873
|
+
endpointName: string;
|
|
2874
|
+
startedTimeStamp: number;
|
|
2875
|
+
fulfilledTimeStamp?: number | undefined;
|
|
2876
|
+
}, "error">> & {
|
|
2877
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2878
|
+
isUninitialized: false;
|
|
2879
|
+
isLoading: false;
|
|
2880
|
+
isSuccess: false;
|
|
2881
|
+
isError: true;
|
|
2882
|
+
})) => R) | undefined;
|
|
2883
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
2884
|
+
} | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg, (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", object, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2885
|
+
originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg | undefined;
|
|
2886
|
+
reset: () => void;
|
|
2713
2887
|
}];
|
|
2714
2888
|
declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Record<string, any> = ({
|
|
2715
2889
|
requestId?: undefined;
|
|
@@ -2867,14 +3041,14 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
|
|
|
2867
3041
|
isSuccess: false;
|
|
2868
3042
|
isError: true;
|
|
2869
3043
|
})) => R) | undefined;
|
|
2870
|
-
fixedCacheKey?: string | undefined;
|
|
3044
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
2871
3045
|
} | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsWebhooksApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsWebhooksApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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> & {
|
|
2872
3046
|
originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
|
|
2873
|
-
reset: () => void;
|
|
3047
|
+
reset: () => void;
|
|
2874
3048
|
}];
|
|
2875
3049
|
declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
2876
|
-
error?: undefined;
|
|
2877
3050
|
data?: undefined;
|
|
3051
|
+
error?: undefined;
|
|
2878
3052
|
fulfilledTimeStamp?: undefined;
|
|
2879
3053
|
originalArgs?: undefined;
|
|
2880
3054
|
requestId?: undefined;
|
|
@@ -2955,8 +3129,8 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
|
2955
3129
|
} & {
|
|
2956
3130
|
skip?: boolean | undefined;
|
|
2957
3131
|
selectFromResult?: ((state: ({
|
|
2958
|
-
error?: undefined;
|
|
2959
3132
|
data?: undefined;
|
|
3133
|
+
error?: undefined;
|
|
2960
3134
|
fulfilledTimeStamp?: undefined;
|
|
2961
3135
|
originalArgs?: undefined;
|
|
2962
3136
|
requestId?: undefined;
|
|
@@ -3036,8 +3210,8 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
|
3036
3210
|
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", GetPlansApiResponse, "api", unknown>>;
|
|
3037
3211
|
};
|
|
3038
3212
|
declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
|
|
3039
|
-
error?: undefined;
|
|
3040
3213
|
data?: undefined;
|
|
3214
|
+
error?: undefined;
|
|
3041
3215
|
fulfilledTimeStamp?: undefined;
|
|
3042
3216
|
originalArgs?: undefined;
|
|
3043
3217
|
requestId?: undefined;
|
|
@@ -3118,8 +3292,8 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
|
|
|
3118
3292
|
} & {
|
|
3119
3293
|
skip?: boolean | undefined;
|
|
3120
3294
|
selectFromResult?: ((state: ({
|
|
3121
|
-
error?: undefined;
|
|
3122
3295
|
data?: undefined;
|
|
3296
|
+
error?: undefined;
|
|
3123
3297
|
fulfilledTimeStamp?: undefined;
|
|
3124
3298
|
originalArgs?: undefined;
|
|
3125
3299
|
requestId?: undefined;
|
|
@@ -3199,8 +3373,8 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
|
|
|
3199
3373
|
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>>;
|
|
3200
3374
|
};
|
|
3201
3375
|
declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any> = ({
|
|
3202
|
-
error?: undefined;
|
|
3203
3376
|
data?: undefined;
|
|
3377
|
+
error?: undefined;
|
|
3204
3378
|
fulfilledTimeStamp?: undefined;
|
|
3205
3379
|
originalArgs?: undefined;
|
|
3206
3380
|
requestId?: undefined;
|
|
@@ -3281,8 +3455,8 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
3281
3455
|
} & {
|
|
3282
3456
|
skip?: boolean | undefined;
|
|
3283
3457
|
selectFromResult?: ((state: ({
|
|
3284
|
-
error?: undefined;
|
|
3285
3458
|
data?: undefined;
|
|
3459
|
+
error?: undefined;
|
|
3286
3460
|
fulfilledTimeStamp?: undefined;
|
|
3287
3461
|
originalArgs?: undefined;
|
|
3288
3462
|
requestId?: undefined;
|
|
@@ -3362,8 +3536,8 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
|
|
|
3362
3536
|
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>>;
|
|
3363
3537
|
};
|
|
3364
3538
|
declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
3365
|
-
error?: undefined;
|
|
3366
3539
|
data?: undefined;
|
|
3540
|
+
error?: undefined;
|
|
3367
3541
|
fulfilledTimeStamp?: undefined;
|
|
3368
3542
|
originalArgs?: undefined;
|
|
3369
3543
|
requestId?: undefined;
|
|
@@ -3444,8 +3618,8 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
3444
3618
|
} & {
|
|
3445
3619
|
skip?: boolean | undefined;
|
|
3446
3620
|
selectFromResult?: ((state: ({
|
|
3447
|
-
error?: undefined;
|
|
3448
3621
|
data?: undefined;
|
|
3622
|
+
error?: undefined;
|
|
3449
3623
|
fulfilledTimeStamp?: undefined;
|
|
3450
3624
|
originalArgs?: undefined;
|
|
3451
3625
|
requestId?: undefined;
|
|
@@ -3680,14 +3854,14 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3680
3854
|
isSuccess: false;
|
|
3681
3855
|
isError: true;
|
|
3682
3856
|
})) => R) | undefined;
|
|
3683
|
-
fixedCacheKey?: string | undefined;
|
|
3857
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
3684
3858
|
} | 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> & {
|
|
3685
3859
|
originalArgs?: PostApiWorkspacesApiArg | undefined;
|
|
3686
|
-
reset: () => void;
|
|
3860
|
+
reset: () => void;
|
|
3687
3861
|
}];
|
|
3688
3862
|
declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
3689
|
-
error?: undefined;
|
|
3690
3863
|
data?: undefined;
|
|
3864
|
+
error?: undefined;
|
|
3691
3865
|
fulfilledTimeStamp?: undefined;
|
|
3692
3866
|
originalArgs?: undefined;
|
|
3693
3867
|
requestId?: undefined;
|
|
@@ -3768,8 +3942,8 @@ declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
|
3768
3942
|
} & {
|
|
3769
3943
|
skip?: boolean | undefined;
|
|
3770
3944
|
selectFromResult?: ((state: ({
|
|
3771
|
-
error?: undefined;
|
|
3772
3945
|
data?: undefined;
|
|
3946
|
+
error?: undefined;
|
|
3773
3947
|
fulfilledTimeStamp?: undefined;
|
|
3774
3948
|
originalArgs?: undefined;
|
|
3775
3949
|
requestId?: undefined;
|
|
@@ -4004,10 +4178,10 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
4004
4178
|
isSuccess: false;
|
|
4005
4179
|
isError: true;
|
|
4006
4180
|
})) => R) | undefined;
|
|
4007
|
-
fixedCacheKey?: string | undefined;
|
|
4181
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
4008
4182
|
} | 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> & {
|
|
4009
4183
|
originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
|
|
4010
|
-
reset: () => void;
|
|
4184
|
+
reset: () => void;
|
|
4011
4185
|
}];
|
|
4012
4186
|
declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
4013
4187
|
requestId?: undefined;
|
|
@@ -4165,10 +4339,10 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
4165
4339
|
isSuccess: false;
|
|
4166
4340
|
isError: true;
|
|
4167
4341
|
})) => R) | undefined;
|
|
4168
|
-
fixedCacheKey?: string | undefined;
|
|
4342
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
4169
4343
|
} | 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> & {
|
|
4170
4344
|
originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
|
|
4171
|
-
reset: () => void;
|
|
4345
|
+
reset: () => void;
|
|
4172
4346
|
}];
|
|
4173
4347
|
declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
4174
4348
|
requestId?: undefined;
|
|
@@ -4326,14 +4500,14 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
4326
4500
|
isSuccess: false;
|
|
4327
4501
|
isError: true;
|
|
4328
4502
|
})) => R) | undefined;
|
|
4329
|
-
fixedCacheKey?: string | undefined;
|
|
4503
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
4330
4504
|
} | 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> & {
|
|
4331
4505
|
originalArgs?: CreateEnvironmentApiArg | undefined;
|
|
4332
|
-
reset: () => void;
|
|
4506
|
+
reset: () => void;
|
|
4333
4507
|
}];
|
|
4334
4508
|
declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
4335
|
-
error?: undefined;
|
|
4336
4509
|
data?: undefined;
|
|
4510
|
+
error?: undefined;
|
|
4337
4511
|
fulfilledTimeStamp?: undefined;
|
|
4338
4512
|
originalArgs?: undefined;
|
|
4339
4513
|
requestId?: undefined;
|
|
@@ -4414,8 +4588,8 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
4414
4588
|
} & {
|
|
4415
4589
|
skip?: boolean | undefined;
|
|
4416
4590
|
selectFromResult?: ((state: ({
|
|
4417
|
-
error?: undefined;
|
|
4418
4591
|
data?: undefined;
|
|
4592
|
+
error?: undefined;
|
|
4419
4593
|
fulfilledTimeStamp?: undefined;
|
|
4420
4594
|
originalArgs?: undefined;
|
|
4421
4595
|
requestId?: undefined;
|
|
@@ -4495,8 +4669,8 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
4495
4669
|
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>>;
|
|
4496
4670
|
};
|
|
4497
4671
|
declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
4498
|
-
error?: undefined;
|
|
4499
4672
|
data?: undefined;
|
|
4673
|
+
error?: undefined;
|
|
4500
4674
|
fulfilledTimeStamp?: undefined;
|
|
4501
4675
|
originalArgs?: undefined;
|
|
4502
4676
|
requestId?: undefined;
|
|
@@ -4577,8 +4751,8 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4577
4751
|
} & {
|
|
4578
4752
|
skip?: boolean | undefined;
|
|
4579
4753
|
selectFromResult?: ((state: ({
|
|
4580
|
-
error?: undefined;
|
|
4581
4754
|
data?: undefined;
|
|
4755
|
+
error?: undefined;
|
|
4582
4756
|
fulfilledTimeStamp?: undefined;
|
|
4583
4757
|
originalArgs?: undefined;
|
|
4584
4758
|
requestId?: undefined;
|
|
@@ -4813,14 +4987,14 @@ declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any>
|
|
|
4813
4987
|
isSuccess: false;
|
|
4814
4988
|
isError: true;
|
|
4815
4989
|
})) => R) | undefined;
|
|
4816
|
-
fixedCacheKey?: string | undefined;
|
|
4990
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
4817
4991
|
} | 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> & {
|
|
4818
4992
|
originalArgs?: CreateAcademyCurriculaApiArg | undefined;
|
|
4819
|
-
reset: () => void;
|
|
4993
|
+
reset: () => void;
|
|
4820
4994
|
}];
|
|
4821
4995
|
declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
4822
|
-
error?: undefined;
|
|
4823
4996
|
data?: undefined;
|
|
4997
|
+
error?: undefined;
|
|
4824
4998
|
fulfilledTimeStamp?: undefined;
|
|
4825
4999
|
originalArgs?: undefined;
|
|
4826
5000
|
requestId?: undefined;
|
|
@@ -4901,8 +5075,8 @@ declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4901
5075
|
} & {
|
|
4902
5076
|
skip?: boolean | undefined;
|
|
4903
5077
|
selectFromResult?: ((state: ({
|
|
4904
|
-
error?: undefined;
|
|
4905
5078
|
data?: undefined;
|
|
5079
|
+
error?: undefined;
|
|
4906
5080
|
fulfilledTimeStamp?: undefined;
|
|
4907
5081
|
originalArgs?: undefined;
|
|
4908
5082
|
requestId?: undefined;
|
|
@@ -4982,8 +5156,8 @@ declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
4982
5156
|
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>>;
|
|
4983
5157
|
};
|
|
4984
5158
|
declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string, any> = ({
|
|
4985
|
-
error?: undefined;
|
|
4986
5159
|
data?: undefined;
|
|
5160
|
+
error?: undefined;
|
|
4987
5161
|
fulfilledTimeStamp?: undefined;
|
|
4988
5162
|
originalArgs?: undefined;
|
|
4989
5163
|
requestId?: undefined;
|
|
@@ -5064,8 +5238,8 @@ declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string,
|
|
|
5064
5238
|
} & {
|
|
5065
5239
|
skip?: boolean | undefined;
|
|
5066
5240
|
selectFromResult?: ((state: ({
|
|
5067
|
-
error?: undefined;
|
|
5068
5241
|
data?: undefined;
|
|
5242
|
+
error?: undefined;
|
|
5069
5243
|
fulfilledTimeStamp?: undefined;
|
|
5070
5244
|
originalArgs?: undefined;
|
|
5071
5245
|
requestId?: undefined;
|
|
@@ -5300,10 +5474,10 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
5300
5474
|
isSuccess: false;
|
|
5301
5475
|
isError: true;
|
|
5302
5476
|
})) => R) | undefined;
|
|
5303
|
-
fixedCacheKey?: string | undefined;
|
|
5477
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
5304
5478
|
} | 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> & {
|
|
5305
5479
|
originalArgs?: RegisterToAcademyContentApiArg | undefined;
|
|
5306
|
-
reset: () => void;
|
|
5480
|
+
reset: () => void;
|
|
5307
5481
|
}];
|
|
5308
5482
|
declare const useUpdateAcademyCurriculaByIdMutation: <R extends Record<string, any> = ({
|
|
5309
5483
|
requestId?: undefined;
|
|
@@ -5461,10 +5635,10 @@ declare const useUpdateAcademyCurriculaByIdMutation: <R extends Record<string, a
|
|
|
5461
5635
|
isSuccess: false;
|
|
5462
5636
|
isError: true;
|
|
5463
5637
|
})) => R) | undefined;
|
|
5464
|
-
fixedCacheKey?: string | undefined;
|
|
5638
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
5465
5639
|
} | 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> & {
|
|
5466
5640
|
originalArgs?: UpdateAcademyCurriculaByIdApiArg | undefined;
|
|
5467
|
-
reset: () => void;
|
|
5641
|
+
reset: () => void;
|
|
5468
5642
|
}];
|
|
5469
5643
|
declare const useDeleteAcademyCurriculaByIdMutation: <R extends Record<string, any> = ({
|
|
5470
5644
|
requestId?: undefined;
|
|
@@ -5622,14 +5796,14 @@ declare const useDeleteAcademyCurriculaByIdMutation: <R extends Record<string, a
|
|
|
5622
5796
|
isSuccess: false;
|
|
5623
5797
|
isError: true;
|
|
5624
5798
|
})) => R) | undefined;
|
|
5625
|
-
fixedCacheKey?: string | undefined;
|
|
5799
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
5626
5800
|
} | 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> & {
|
|
5627
5801
|
originalArgs?: DeleteAcademyCurriculaByIdApiArg | undefined;
|
|
5628
|
-
reset: () => void;
|
|
5802
|
+
reset: () => void;
|
|
5629
5803
|
}];
|
|
5630
5804
|
declare const useGetAcademyCurriculaByIdQuery: <R extends Record<string, any> = ({
|
|
5631
|
-
error?: undefined;
|
|
5632
5805
|
data?: undefined;
|
|
5806
|
+
error?: undefined;
|
|
5633
5807
|
fulfilledTimeStamp?: undefined;
|
|
5634
5808
|
originalArgs?: undefined;
|
|
5635
5809
|
requestId?: undefined;
|
|
@@ -5710,8 +5884,8 @@ declare const useGetAcademyCurriculaByIdQuery: <R extends Record<string, any> =
|
|
|
5710
5884
|
} & {
|
|
5711
5885
|
skip?: boolean | undefined;
|
|
5712
5886
|
selectFromResult?: ((state: ({
|
|
5713
|
-
error?: undefined;
|
|
5714
5887
|
data?: undefined;
|
|
5888
|
+
error?: undefined;
|
|
5715
5889
|
fulfilledTimeStamp?: undefined;
|
|
5716
5890
|
originalArgs?: undefined;
|
|
5717
5891
|
requestId?: undefined;
|
|
@@ -5791,8 +5965,8 @@ declare const useGetAcademyCurriculaByIdQuery: <R extends Record<string, any> =
|
|
|
5791
5965
|
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>>;
|
|
5792
5966
|
};
|
|
5793
5967
|
declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
|
|
5794
|
-
error?: undefined;
|
|
5795
5968
|
data?: undefined;
|
|
5969
|
+
error?: undefined;
|
|
5796
5970
|
fulfilledTimeStamp?: undefined;
|
|
5797
5971
|
originalArgs?: undefined;
|
|
5798
5972
|
requestId?: undefined;
|
|
@@ -5873,8 +6047,8 @@ declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<s
|
|
|
5873
6047
|
} & {
|
|
5874
6048
|
skip?: boolean | undefined;
|
|
5875
6049
|
selectFromResult?: ((state: ({
|
|
5876
|
-
error?: undefined;
|
|
5877
6050
|
data?: undefined;
|
|
6051
|
+
error?: undefined;
|
|
5878
6052
|
fulfilledTimeStamp?: undefined;
|
|
5879
6053
|
originalArgs?: undefined;
|
|
5880
6054
|
requestId?: undefined;
|
|
@@ -6109,10 +6283,10 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
|
|
|
6109
6283
|
isSuccess: false;
|
|
6110
6284
|
isError: true;
|
|
6111
6285
|
})) => R) | undefined;
|
|
6112
|
-
fixedCacheKey?: string | undefined;
|
|
6286
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
6113
6287
|
} | undefined) => readonly [(arg: UpdateCurrentItemInProgressTrackerApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateCurrentItemInProgressTrackerApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
6114
6288
|
originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
|
|
6115
|
-
reset: () => void;
|
|
6289
|
+
reset: () => void;
|
|
6116
6290
|
}];
|
|
6117
6291
|
declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
6118
6292
|
requestId?: undefined;
|
|
@@ -6270,14 +6444,14 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
|
6270
6444
|
isSuccess: false;
|
|
6271
6445
|
isError: true;
|
|
6272
6446
|
})) => R) | undefined;
|
|
6273
|
-
fixedCacheKey?: string | undefined;
|
|
6447
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
6274
6448
|
} | undefined) => readonly [(arg: SubmitQuizApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<SubmitQuizApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
6275
6449
|
originalArgs?: SubmitQuizApiArg | undefined;
|
|
6276
|
-
reset: () => void;
|
|
6450
|
+
reset: () => void;
|
|
6277
6451
|
}];
|
|
6278
6452
|
declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
|
|
6279
|
-
error?: undefined;
|
|
6280
6453
|
data?: undefined;
|
|
6454
|
+
error?: undefined;
|
|
6281
6455
|
fulfilledTimeStamp?: undefined;
|
|
6282
6456
|
originalArgs?: undefined;
|
|
6283
6457
|
requestId?: undefined;
|
|
@@ -6358,8 +6532,8 @@ declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = (
|
|
|
6358
6532
|
} & {
|
|
6359
6533
|
skip?: boolean | undefined;
|
|
6360
6534
|
selectFromResult?: ((state: ({
|
|
6361
|
-
error?: undefined;
|
|
6362
6535
|
data?: undefined;
|
|
6536
|
+
error?: undefined;
|
|
6363
6537
|
fulfilledTimeStamp?: undefined;
|
|
6364
6538
|
originalArgs?: undefined;
|
|
6365
6539
|
requestId?: undefined;
|
|
@@ -6439,8 +6613,8 @@ declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = (
|
|
|
6439
6613
|
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", object, "api", unknown>>;
|
|
6440
6614
|
};
|
|
6441
6615
|
declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, any> = ({
|
|
6442
|
-
error?: undefined;
|
|
6443
6616
|
data?: undefined;
|
|
6617
|
+
error?: undefined;
|
|
6444
6618
|
fulfilledTimeStamp?: undefined;
|
|
6445
6619
|
originalArgs?: undefined;
|
|
6446
6620
|
requestId?: undefined;
|
|
@@ -6521,8 +6695,8 @@ declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, an
|
|
|
6521
6695
|
} & {
|
|
6522
6696
|
skip?: boolean | undefined;
|
|
6523
6697
|
selectFromResult?: ((state: ({
|
|
6524
|
-
error?: undefined;
|
|
6525
6698
|
data?: undefined;
|
|
6699
|
+
error?: undefined;
|
|
6526
6700
|
fulfilledTimeStamp?: undefined;
|
|
6527
6701
|
originalArgs?: undefined;
|
|
6528
6702
|
requestId?: undefined;
|
|
@@ -6602,8 +6776,8 @@ declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, an
|
|
|
6602
6776
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetAcademyAdminRegistrationsApiArg, (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", GetAcademyAdminRegistrationsApiResponse, "api", unknown>>;
|
|
6603
6777
|
};
|
|
6604
6778
|
declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
|
|
6605
|
-
error?: undefined;
|
|
6606
6779
|
data?: undefined;
|
|
6780
|
+
error?: undefined;
|
|
6607
6781
|
fulfilledTimeStamp?: undefined;
|
|
6608
6782
|
originalArgs?: undefined;
|
|
6609
6783
|
requestId?: undefined;
|
|
@@ -6684,8 +6858,8 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
|
|
|
6684
6858
|
} & {
|
|
6685
6859
|
skip?: boolean | undefined;
|
|
6686
6860
|
selectFromResult?: ((state: ({
|
|
6687
|
-
error?: undefined;
|
|
6688
6861
|
data?: undefined;
|
|
6862
|
+
error?: undefined;
|
|
6689
6863
|
fulfilledTimeStamp?: undefined;
|
|
6690
6864
|
originalArgs?: undefined;
|
|
6691
6865
|
requestId?: undefined;
|
|
@@ -6765,8 +6939,8 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
|
|
|
6765
6939
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetCertificateByIdApiArg, (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", GetCertificateByIdApiResponse, "api", unknown>>;
|
|
6766
6940
|
};
|
|
6767
6941
|
declare const useGetInvitationQuery: <R extends Record<string, any> = ({
|
|
6768
|
-
error?: undefined;
|
|
6769
6942
|
data?: undefined;
|
|
6943
|
+
error?: undefined;
|
|
6770
6944
|
fulfilledTimeStamp?: undefined;
|
|
6771
6945
|
originalArgs?: undefined;
|
|
6772
6946
|
requestId?: undefined;
|
|
@@ -6847,8 +7021,8 @@ declare const useGetInvitationQuery: <R extends Record<string, any> = ({
|
|
|
6847
7021
|
} & {
|
|
6848
7022
|
skip?: boolean | undefined;
|
|
6849
7023
|
selectFromResult?: ((state: ({
|
|
6850
|
-
error?: undefined;
|
|
6851
7024
|
data?: undefined;
|
|
7025
|
+
error?: undefined;
|
|
6852
7026
|
fulfilledTimeStamp?: undefined;
|
|
6853
7027
|
originalArgs?: undefined;
|
|
6854
7028
|
requestId?: undefined;
|
|
@@ -7083,10 +7257,10 @@ declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
|
|
|
7083
7257
|
isSuccess: false;
|
|
7084
7258
|
isError: true;
|
|
7085
7259
|
})) => R) | undefined;
|
|
7086
|
-
fixedCacheKey?: string | undefined;
|
|
7260
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
7087
7261
|
} | undefined) => readonly [(arg: DeleteInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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> & {
|
|
7088
7262
|
originalArgs?: DeleteInvitationApiArg | undefined;
|
|
7089
|
-
reset: () => void;
|
|
7263
|
+
reset: () => void;
|
|
7090
7264
|
}];
|
|
7091
7265
|
declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
|
|
7092
7266
|
requestId?: undefined;
|
|
@@ -7244,14 +7418,14 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
7244
7418
|
isSuccess: false;
|
|
7245
7419
|
isError: true;
|
|
7246
7420
|
})) => R) | undefined;
|
|
7247
|
-
fixedCacheKey?: string | undefined;
|
|
7421
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
7248
7422
|
} | undefined) => readonly [(arg: UpdateInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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", UpdateInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
7249
7423
|
originalArgs?: UpdateInvitationApiArg | undefined;
|
|
7250
|
-
reset: () => void;
|
|
7424
|
+
reset: () => void;
|
|
7251
7425
|
}];
|
|
7252
7426
|
declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
7253
|
-
error?: undefined;
|
|
7254
7427
|
data?: undefined;
|
|
7428
|
+
error?: undefined;
|
|
7255
7429
|
fulfilledTimeStamp?: undefined;
|
|
7256
7430
|
originalArgs?: undefined;
|
|
7257
7431
|
requestId?: undefined;
|
|
@@ -7332,8 +7506,8 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
|
7332
7506
|
} & {
|
|
7333
7507
|
skip?: boolean | undefined;
|
|
7334
7508
|
selectFromResult?: ((state: ({
|
|
7335
|
-
error?: undefined;
|
|
7336
7509
|
data?: undefined;
|
|
7510
|
+
error?: undefined;
|
|
7337
7511
|
fulfilledTimeStamp?: undefined;
|
|
7338
7512
|
originalArgs?: undefined;
|
|
7339
7513
|
requestId?: undefined;
|
|
@@ -7568,10 +7742,10 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
7568
7742
|
isSuccess: false;
|
|
7569
7743
|
isError: true;
|
|
7570
7744
|
})) => R) | undefined;
|
|
7571
|
-
fixedCacheKey?: string | undefined;
|
|
7745
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
7572
7746
|
} | undefined) => readonly [(arg: CreateInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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", CreateInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
7573
7747
|
originalArgs?: CreateInvitationApiArg | undefined;
|
|
7574
|
-
reset: () => void;
|
|
7748
|
+
reset: () => void;
|
|
7575
7749
|
}];
|
|
7576
7750
|
declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
|
|
7577
7751
|
requestId?: undefined;
|
|
@@ -7729,10 +7903,10 @@ declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
|
|
|
7729
7903
|
isSuccess: false;
|
|
7730
7904
|
isError: true;
|
|
7731
7905
|
})) => R) | undefined;
|
|
7732
|
-
fixedCacheKey?: string | undefined;
|
|
7906
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
7733
7907
|
} | undefined) => readonly [(arg: AcceptInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<AcceptInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "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", AcceptInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
7734
7908
|
originalArgs?: AcceptInvitationApiArg | undefined;
|
|
7735
|
-
reset: () => void;
|
|
7909
|
+
reset: () => void;
|
|
7736
7910
|
}];
|
|
7737
7911
|
declare const useDeleteBadgeByIdMutation: <R extends Record<string, any> = ({
|
|
7738
7912
|
requestId?: undefined;
|
|
@@ -7890,14 +8064,14 @@ declare const useDeleteBadgeByIdMutation: <R extends Record<string, any> = ({
|
|
|
7890
8064
|
isSuccess: false;
|
|
7891
8065
|
isError: true;
|
|
7892
8066
|
})) => R) | undefined;
|
|
7893
|
-
fixedCacheKey?: string | undefined;
|
|
8067
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
7894
8068
|
} | undefined) => readonly [(arg: DeleteBadgeByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteBadgeByIdApiArg, (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> & {
|
|
7895
8069
|
originalArgs?: DeleteBadgeByIdApiArg | undefined;
|
|
7896
|
-
reset: () => void;
|
|
8070
|
+
reset: () => void;
|
|
7897
8071
|
}];
|
|
7898
8072
|
declare const useGetBadgeByIdQuery: <R extends Record<string, any> = ({
|
|
7899
|
-
error?: undefined;
|
|
7900
8073
|
data?: undefined;
|
|
8074
|
+
error?: undefined;
|
|
7901
8075
|
fulfilledTimeStamp?: undefined;
|
|
7902
8076
|
originalArgs?: undefined;
|
|
7903
8077
|
requestId?: undefined;
|
|
@@ -7978,8 +8152,8 @@ declare const useGetBadgeByIdQuery: <R extends Record<string, any> = ({
|
|
|
7978
8152
|
} & {
|
|
7979
8153
|
skip?: boolean | undefined;
|
|
7980
8154
|
selectFromResult?: ((state: ({
|
|
7981
|
-
error?: undefined;
|
|
7982
8155
|
data?: undefined;
|
|
8156
|
+
error?: undefined;
|
|
7983
8157
|
fulfilledTimeStamp?: undefined;
|
|
7984
8158
|
originalArgs?: undefined;
|
|
7985
8159
|
requestId?: undefined;
|
|
@@ -8214,10 +8388,10 @@ declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = (
|
|
|
8214
8388
|
isSuccess: false;
|
|
8215
8389
|
isError: true;
|
|
8216
8390
|
})) => R) | undefined;
|
|
8217
|
-
fixedCacheKey?: string | undefined;
|
|
8391
|
+
fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
|
|
8218
8392
|
} | undefined) => readonly [(arg: CreateOrUpdateBadgeApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateOrUpdateBadgeApiArg, (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", CreateOrUpdateBadgeApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
8219
8393
|
originalArgs?: CreateOrUpdateBadgeApiArg | undefined;
|
|
8220
|
-
reset: () => void;
|
|
8394
|
+
reset: () => void;
|
|
8221
8395
|
}];
|
|
8222
8396
|
|
|
8223
|
-
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 PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse, 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, usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradeMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateAcademyCurriculaByIdMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };
|
|
8397
|
+
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 PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiResponse, 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, usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradeMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateAcademyCurriculaByIdMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };
|