@meshery/schemas 0.0.3-4 → 0.1.0
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 +592 -1
- package/dist/cloudApi.d.ts +592 -1
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/mesheryApi.d.mts +431 -232
- package/dist/mesheryApi.d.ts +431 -232
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +3 -1
package/dist/mesheryApi.d.mts
CHANGED
|
@@ -13,6 +13,7 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.
|
|
|
13
13
|
createEnvironment: _reduxjs_toolkit_query.MutationDefinition<CreateEnvironmentApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, CreateEnvironmentApiResponse, "mesheryRtkSchemasApi", unknown>;
|
|
14
14
|
getEnvironments: _reduxjs_toolkit_query.QueryDefinition<GetEnvironmentsApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, GetEnvironmentsApiResponse, "mesheryRtkSchemasApi", unknown>;
|
|
15
15
|
postEvaluate: _reduxjs_toolkit_query.MutationDefinition<PostEvaluateApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, PostEvaluateApiResponse, "mesheryRtkSchemasApi", unknown>;
|
|
16
|
+
registerToAcademyContent: _reduxjs_toolkit_query.MutationDefinition<RegisterToAcademyContentApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, RegisterToAcademyContentApiResponse, "mesheryRtkSchemasApi", unknown>;
|
|
16
17
|
}, "mesheryRtkSchemasApi", never, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
|
|
17
18
|
|
|
18
19
|
type ImportDesignApiResponse = {
|
|
@@ -2674,31 +2675,60 @@ type PostEvaluateApiArg = {
|
|
|
2674
2675
|
};
|
|
2675
2676
|
};
|
|
2676
2677
|
};
|
|
2678
|
+
type RegisterToAcademyContentApiResponse = {
|
|
2679
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
2680
|
+
ID: string;
|
|
2681
|
+
/** ID of the organization */
|
|
2682
|
+
org_id: string;
|
|
2683
|
+
/** ID of the course content */
|
|
2684
|
+
content_id: string;
|
|
2685
|
+
/** ID of the user (foreign key to User) */
|
|
2686
|
+
user_id: string;
|
|
2687
|
+
/** Status of the user's course registration */
|
|
2688
|
+
status: "registered" | "in_progress" | "completed" | "failed" | "withdrawn";
|
|
2689
|
+
/** When the registration was updated */
|
|
2690
|
+
updated_at: string;
|
|
2691
|
+
/** When the registration was created */
|
|
2692
|
+
created_at: string;
|
|
2693
|
+
/** Timestamp when the resource was deleted. */
|
|
2694
|
+
deleted_at?: string;
|
|
2695
|
+
/** Additional metadata about the registration */
|
|
2696
|
+
metadata: {
|
|
2697
|
+
[key: string]: any;
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2700
|
+
type RegisterToAcademyContentApiArg = {
|
|
2701
|
+
body: {
|
|
2702
|
+
/** ID of the academy content to register for */
|
|
2703
|
+
content_id: string;
|
|
2704
|
+
content_type?: "learning-path" | "challenge";
|
|
2705
|
+
};
|
|
2706
|
+
};
|
|
2677
2707
|
declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
2678
2708
|
requestId?: undefined;
|
|
2679
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2709
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2680
2710
|
data?: undefined;
|
|
2681
2711
|
error?: undefined;
|
|
2682
2712
|
endpointName?: string | undefined;
|
|
2683
|
-
startedTimeStamp?: undefined;
|
|
2713
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
2684
2714
|
fulfilledTimeStamp?: undefined;
|
|
2685
2715
|
} & {
|
|
2686
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2716
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
2687
2717
|
isUninitialized: true;
|
|
2688
|
-
isLoading: false;
|
|
2718
|
+
isLoading: false;
|
|
2689
2719
|
isSuccess: false;
|
|
2690
2720
|
isError: false;
|
|
2691
2721
|
}) | ({
|
|
2692
2722
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2693
2723
|
} & Omit<{
|
|
2694
|
-
requestId: string;
|
|
2724
|
+
requestId: string;
|
|
2695
2725
|
data?: ImportDesignApiResponse | undefined;
|
|
2696
2726
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2697
2727
|
endpointName: string;
|
|
2698
2728
|
startedTimeStamp: number;
|
|
2699
2729
|
fulfilledTimeStamp?: number | undefined;
|
|
2700
2730
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2701
|
-
requestId: string;
|
|
2731
|
+
requestId: string;
|
|
2702
2732
|
data?: ImportDesignApiResponse | undefined;
|
|
2703
2733
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2704
2734
|
endpointName: string;
|
|
@@ -2711,11 +2741,15 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2711
2741
|
isUninitialized: false;
|
|
2712
2742
|
isLoading: false;
|
|
2713
2743
|
isSuccess: true;
|
|
2714
|
-
isError: false;
|
|
2744
|
+
isError: false; /** Status of model, including:
|
|
2745
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
2746
|
+
- maintenance: model is unavailable for a period of time.
|
|
2747
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
2748
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
2715
2749
|
}) | ({
|
|
2716
2750
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2717
2751
|
} & {
|
|
2718
|
-
requestId: string;
|
|
2752
|
+
requestId: string;
|
|
2719
2753
|
data?: ImportDesignApiResponse | undefined;
|
|
2720
2754
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2721
2755
|
endpointName: string;
|
|
@@ -2724,26 +2758,22 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2724
2758
|
} & {
|
|
2725
2759
|
data?: undefined;
|
|
2726
2760
|
} & {
|
|
2727
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2728
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
2729
|
-
- maintenance: model is unavailable for a period of time.
|
|
2730
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
2731
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
2761
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2732
2762
|
isUninitialized: false;
|
|
2733
2763
|
isLoading: true;
|
|
2734
2764
|
isSuccess: false;
|
|
2735
2765
|
isError: false;
|
|
2736
2766
|
}) | ({
|
|
2737
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2767
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2738
2768
|
} & Omit<{
|
|
2739
|
-
requestId: string;
|
|
2769
|
+
requestId: string;
|
|
2740
2770
|
data?: ImportDesignApiResponse | undefined;
|
|
2741
2771
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2742
2772
|
endpointName: string;
|
|
2743
2773
|
startedTimeStamp: number;
|
|
2744
2774
|
fulfilledTimeStamp?: number | undefined;
|
|
2745
2775
|
}, "error"> & Required<Pick<{
|
|
2746
|
-
requestId: string;
|
|
2776
|
+
requestId: string;
|
|
2747
2777
|
data?: ImportDesignApiResponse | undefined;
|
|
2748
2778
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2749
2779
|
endpointName: string;
|
|
@@ -2758,29 +2788,29 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2758
2788
|
})>(options?: {
|
|
2759
2789
|
selectFromResult?: ((state: ({
|
|
2760
2790
|
requestId?: undefined;
|
|
2761
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2791
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2762
2792
|
data?: undefined;
|
|
2763
2793
|
error?: undefined;
|
|
2764
2794
|
endpointName?: string | undefined;
|
|
2765
|
-
startedTimeStamp?: undefined;
|
|
2795
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
2766
2796
|
fulfilledTimeStamp?: undefined;
|
|
2767
2797
|
} & {
|
|
2768
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2798
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
2769
2799
|
isUninitialized: true;
|
|
2770
|
-
isLoading: false;
|
|
2800
|
+
isLoading: false;
|
|
2771
2801
|
isSuccess: false;
|
|
2772
2802
|
isError: false;
|
|
2773
2803
|
}) | ({
|
|
2774
2804
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2775
2805
|
} & Omit<{
|
|
2776
|
-
requestId: string;
|
|
2806
|
+
requestId: string;
|
|
2777
2807
|
data?: ImportDesignApiResponse | undefined;
|
|
2778
2808
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2779
2809
|
endpointName: string;
|
|
2780
2810
|
startedTimeStamp: number;
|
|
2781
2811
|
fulfilledTimeStamp?: number | undefined;
|
|
2782
2812
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2783
|
-
requestId: string;
|
|
2813
|
+
requestId: string;
|
|
2784
2814
|
data?: ImportDesignApiResponse | undefined;
|
|
2785
2815
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2786
2816
|
endpointName: string;
|
|
@@ -2793,11 +2823,15 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2793
2823
|
isUninitialized: false;
|
|
2794
2824
|
isLoading: false;
|
|
2795
2825
|
isSuccess: true;
|
|
2796
|
-
isError: false;
|
|
2826
|
+
isError: false; /** Status of model, including:
|
|
2827
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
2828
|
+
- maintenance: model is unavailable for a period of time.
|
|
2829
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
2830
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
2797
2831
|
}) | ({
|
|
2798
2832
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2799
2833
|
} & {
|
|
2800
|
-
requestId: string;
|
|
2834
|
+
requestId: string;
|
|
2801
2835
|
data?: ImportDesignApiResponse | undefined;
|
|
2802
2836
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2803
2837
|
endpointName: string;
|
|
@@ -2806,26 +2840,22 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2806
2840
|
} & {
|
|
2807
2841
|
data?: undefined;
|
|
2808
2842
|
} & {
|
|
2809
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2810
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
2811
|
-
- maintenance: model is unavailable for a period of time.
|
|
2812
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
2813
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
2843
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2814
2844
|
isUninitialized: false;
|
|
2815
2845
|
isLoading: true;
|
|
2816
2846
|
isSuccess: false;
|
|
2817
2847
|
isError: false;
|
|
2818
2848
|
}) | ({
|
|
2819
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2849
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2820
2850
|
} & Omit<{
|
|
2821
|
-
requestId: string;
|
|
2851
|
+
requestId: string;
|
|
2822
2852
|
data?: ImportDesignApiResponse | undefined;
|
|
2823
2853
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2824
2854
|
endpointName: string;
|
|
2825
2855
|
startedTimeStamp: number;
|
|
2826
2856
|
fulfilledTimeStamp?: number | undefined;
|
|
2827
2857
|
}, "error"> & Required<Pick<{
|
|
2828
|
-
requestId: string;
|
|
2858
|
+
requestId: string;
|
|
2829
2859
|
data?: ImportDesignApiResponse | undefined;
|
|
2830
2860
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2831
2861
|
endpointName: string;
|
|
@@ -2837,7 +2867,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2837
2867
|
isLoading: false;
|
|
2838
2868
|
isSuccess: false;
|
|
2839
2869
|
isError: true;
|
|
2840
|
-
})) => R) | undefined;
|
|
2870
|
+
})) => R) | undefined;
|
|
2841
2871
|
fixedCacheKey?: string | undefined;
|
|
2842
2872
|
} | undefined) => readonly [(arg: ImportDesignApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<ImportDesignApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, ImportDesignApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2843
2873
|
originalArgs?: ImportDesignApiArg | undefined;
|
|
@@ -2845,29 +2875,29 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2845
2875
|
}];
|
|
2846
2876
|
declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
2847
2877
|
requestId?: undefined;
|
|
2848
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2878
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2849
2879
|
data?: undefined;
|
|
2850
2880
|
error?: undefined;
|
|
2851
2881
|
endpointName?: string | undefined;
|
|
2852
|
-
startedTimeStamp?: undefined;
|
|
2882
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
2853
2883
|
fulfilledTimeStamp?: undefined;
|
|
2854
2884
|
} & {
|
|
2855
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2885
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
2856
2886
|
isUninitialized: true;
|
|
2857
|
-
isLoading: false;
|
|
2887
|
+
isLoading: false;
|
|
2858
2888
|
isSuccess: false;
|
|
2859
2889
|
isError: false;
|
|
2860
2890
|
}) | ({
|
|
2861
2891
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2862
2892
|
} & Omit<{
|
|
2863
|
-
requestId: string;
|
|
2893
|
+
requestId: string;
|
|
2864
2894
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2865
2895
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2866
2896
|
endpointName: string;
|
|
2867
2897
|
startedTimeStamp: number;
|
|
2868
2898
|
fulfilledTimeStamp?: number | undefined;
|
|
2869
2899
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2870
|
-
requestId: string;
|
|
2900
|
+
requestId: string;
|
|
2871
2901
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2872
2902
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2873
2903
|
endpointName: string;
|
|
@@ -2880,11 +2910,15 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
2880
2910
|
isUninitialized: false;
|
|
2881
2911
|
isLoading: false;
|
|
2882
2912
|
isSuccess: true;
|
|
2883
|
-
isError: false;
|
|
2913
|
+
isError: false; /** Status of model, including:
|
|
2914
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
2915
|
+
- maintenance: model is unavailable for a period of time.
|
|
2916
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
2917
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
2884
2918
|
}) | ({
|
|
2885
2919
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2886
2920
|
} & {
|
|
2887
|
-
requestId: string;
|
|
2921
|
+
requestId: string;
|
|
2888
2922
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2889
2923
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2890
2924
|
endpointName: string;
|
|
@@ -2893,26 +2927,22 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
2893
2927
|
} & {
|
|
2894
2928
|
data?: undefined;
|
|
2895
2929
|
} & {
|
|
2896
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2897
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
2898
|
-
- maintenance: model is unavailable for a period of time.
|
|
2899
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
2900
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
2930
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2901
2931
|
isUninitialized: false;
|
|
2902
2932
|
isLoading: true;
|
|
2903
2933
|
isSuccess: false;
|
|
2904
2934
|
isError: false;
|
|
2905
2935
|
}) | ({
|
|
2906
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2936
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2907
2937
|
} & Omit<{
|
|
2908
|
-
requestId: string;
|
|
2938
|
+
requestId: string;
|
|
2909
2939
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2910
2940
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2911
2941
|
endpointName: string;
|
|
2912
2942
|
startedTimeStamp: number;
|
|
2913
2943
|
fulfilledTimeStamp?: number | undefined;
|
|
2914
2944
|
}, "error"> & Required<Pick<{
|
|
2915
|
-
requestId: string;
|
|
2945
|
+
requestId: string;
|
|
2916
2946
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2917
2947
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2918
2948
|
endpointName: string;
|
|
@@ -2927,29 +2957,29 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
2927
2957
|
})>(options?: {
|
|
2928
2958
|
selectFromResult?: ((state: ({
|
|
2929
2959
|
requestId?: undefined;
|
|
2930
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2960
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2931
2961
|
data?: undefined;
|
|
2932
2962
|
error?: undefined;
|
|
2933
2963
|
endpointName?: string | undefined;
|
|
2934
|
-
startedTimeStamp?: undefined;
|
|
2964
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
2935
2965
|
fulfilledTimeStamp?: undefined;
|
|
2936
2966
|
} & {
|
|
2937
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2967
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
2938
2968
|
isUninitialized: true;
|
|
2939
|
-
isLoading: false;
|
|
2969
|
+
isLoading: false;
|
|
2940
2970
|
isSuccess: false;
|
|
2941
2971
|
isError: false;
|
|
2942
2972
|
}) | ({
|
|
2943
2973
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2944
2974
|
} & Omit<{
|
|
2945
|
-
requestId: string;
|
|
2975
|
+
requestId: string;
|
|
2946
2976
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2947
2977
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2948
2978
|
endpointName: string;
|
|
2949
2979
|
startedTimeStamp: number;
|
|
2950
2980
|
fulfilledTimeStamp?: number | undefined;
|
|
2951
2981
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2952
|
-
requestId: string;
|
|
2982
|
+
requestId: string;
|
|
2953
2983
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2954
2984
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2955
2985
|
endpointName: string;
|
|
@@ -2962,11 +2992,15 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
2962
2992
|
isUninitialized: false;
|
|
2963
2993
|
isLoading: false;
|
|
2964
2994
|
isSuccess: true;
|
|
2965
|
-
isError: false;
|
|
2995
|
+
isError: false; /** Status of model, including:
|
|
2996
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
2997
|
+
- maintenance: model is unavailable for a period of time.
|
|
2998
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
2999
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
2966
3000
|
}) | ({
|
|
2967
3001
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2968
3002
|
} & {
|
|
2969
|
-
requestId: string;
|
|
3003
|
+
requestId: string;
|
|
2970
3004
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2971
3005
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2972
3006
|
endpointName: string;
|
|
@@ -2975,26 +3009,22 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
2975
3009
|
} & {
|
|
2976
3010
|
data?: undefined;
|
|
2977
3011
|
} & {
|
|
2978
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2979
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
2980
|
-
- maintenance: model is unavailable for a period of time.
|
|
2981
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
2982
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3012
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2983
3013
|
isUninitialized: false;
|
|
2984
3014
|
isLoading: true;
|
|
2985
3015
|
isSuccess: false;
|
|
2986
3016
|
isError: false;
|
|
2987
3017
|
}) | ({
|
|
2988
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3018
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2989
3019
|
} & Omit<{
|
|
2990
|
-
requestId: string;
|
|
3020
|
+
requestId: string;
|
|
2991
3021
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2992
3022
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2993
3023
|
endpointName: string;
|
|
2994
3024
|
startedTimeStamp: number;
|
|
2995
3025
|
fulfilledTimeStamp?: number | undefined;
|
|
2996
3026
|
}, "error"> & Required<Pick<{
|
|
2997
|
-
requestId: string;
|
|
3027
|
+
requestId: string;
|
|
2998
3028
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2999
3029
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3000
3030
|
endpointName: string;
|
|
@@ -3006,7 +3036,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
3006
3036
|
isLoading: false;
|
|
3007
3037
|
isSuccess: false;
|
|
3008
3038
|
isError: true;
|
|
3009
|
-
})) => R) | undefined;
|
|
3039
|
+
})) => R) | undefined;
|
|
3010
3040
|
fixedCacheKey?: string | undefined;
|
|
3011
3041
|
} | undefined) => readonly [(arg: RegisterMeshmodelsApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<RegisterMeshmodelsApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, RegisterMeshmodelsApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3012
3042
|
originalArgs?: RegisterMeshmodelsApiArg | undefined;
|
|
@@ -3177,29 +3207,29 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
3177
3207
|
};
|
|
3178
3208
|
declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
3179
3209
|
requestId?: undefined;
|
|
3180
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3210
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3181
3211
|
data?: undefined;
|
|
3182
3212
|
error?: undefined;
|
|
3183
3213
|
endpointName?: string | undefined;
|
|
3184
|
-
startedTimeStamp?: undefined;
|
|
3214
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
3185
3215
|
fulfilledTimeStamp?: undefined;
|
|
3186
3216
|
} & {
|
|
3187
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3217
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
3188
3218
|
isUninitialized: true;
|
|
3189
|
-
isLoading: false;
|
|
3219
|
+
isLoading: false;
|
|
3190
3220
|
isSuccess: false;
|
|
3191
3221
|
isError: false;
|
|
3192
3222
|
}) | ({
|
|
3193
3223
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3194
3224
|
} & Omit<{
|
|
3195
|
-
requestId: string;
|
|
3225
|
+
requestId: string;
|
|
3196
3226
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3197
3227
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3198
3228
|
endpointName: string;
|
|
3199
3229
|
startedTimeStamp: number;
|
|
3200
3230
|
fulfilledTimeStamp?: number | undefined;
|
|
3201
3231
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3202
|
-
requestId: string;
|
|
3232
|
+
requestId: string;
|
|
3203
3233
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3204
3234
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3205
3235
|
endpointName: string;
|
|
@@ -3212,11 +3242,15 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3212
3242
|
isUninitialized: false;
|
|
3213
3243
|
isLoading: false;
|
|
3214
3244
|
isSuccess: true;
|
|
3215
|
-
isError: false;
|
|
3245
|
+
isError: false; /** Status of model, including:
|
|
3246
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3247
|
+
- maintenance: model is unavailable for a period of time.
|
|
3248
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
3249
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3216
3250
|
}) | ({
|
|
3217
3251
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3218
3252
|
} & {
|
|
3219
|
-
requestId: string;
|
|
3253
|
+
requestId: string;
|
|
3220
3254
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3221
3255
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3222
3256
|
endpointName: string;
|
|
@@ -3225,26 +3259,22 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3225
3259
|
} & {
|
|
3226
3260
|
data?: undefined;
|
|
3227
3261
|
} & {
|
|
3228
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3229
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3230
|
-
- maintenance: model is unavailable for a period of time.
|
|
3231
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
3232
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3262
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3233
3263
|
isUninitialized: false;
|
|
3234
3264
|
isLoading: true;
|
|
3235
3265
|
isSuccess: false;
|
|
3236
3266
|
isError: false;
|
|
3237
3267
|
}) | ({
|
|
3238
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3268
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3239
3269
|
} & Omit<{
|
|
3240
|
-
requestId: string;
|
|
3270
|
+
requestId: string;
|
|
3241
3271
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3242
3272
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3243
3273
|
endpointName: string;
|
|
3244
3274
|
startedTimeStamp: number;
|
|
3245
3275
|
fulfilledTimeStamp?: number | undefined;
|
|
3246
3276
|
}, "error"> & Required<Pick<{
|
|
3247
|
-
requestId: string;
|
|
3277
|
+
requestId: string;
|
|
3248
3278
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3249
3279
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3250
3280
|
endpointName: string;
|
|
@@ -3259,29 +3289,29 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3259
3289
|
})>(options?: {
|
|
3260
3290
|
selectFromResult?: ((state: ({
|
|
3261
3291
|
requestId?: undefined;
|
|
3262
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3292
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3263
3293
|
data?: undefined;
|
|
3264
3294
|
error?: undefined;
|
|
3265
3295
|
endpointName?: string | undefined;
|
|
3266
|
-
startedTimeStamp?: undefined;
|
|
3296
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
3267
3297
|
fulfilledTimeStamp?: undefined;
|
|
3268
3298
|
} & {
|
|
3269
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3299
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
3270
3300
|
isUninitialized: true;
|
|
3271
|
-
isLoading: false;
|
|
3301
|
+
isLoading: false;
|
|
3272
3302
|
isSuccess: false;
|
|
3273
3303
|
isError: false;
|
|
3274
3304
|
}) | ({
|
|
3275
3305
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3276
3306
|
} & Omit<{
|
|
3277
|
-
requestId: string;
|
|
3307
|
+
requestId: string;
|
|
3278
3308
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3279
3309
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3280
3310
|
endpointName: string;
|
|
3281
3311
|
startedTimeStamp: number;
|
|
3282
3312
|
fulfilledTimeStamp?: number | undefined;
|
|
3283
3313
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3284
|
-
requestId: string;
|
|
3314
|
+
requestId: string;
|
|
3285
3315
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3286
3316
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3287
3317
|
endpointName: string;
|
|
@@ -3294,11 +3324,15 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3294
3324
|
isUninitialized: false;
|
|
3295
3325
|
isLoading: false;
|
|
3296
3326
|
isSuccess: true;
|
|
3297
|
-
isError: false;
|
|
3327
|
+
isError: false; /** Status of model, including:
|
|
3328
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3329
|
+
- maintenance: model is unavailable for a period of time.
|
|
3330
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
3331
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3298
3332
|
}) | ({
|
|
3299
3333
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3300
3334
|
} & {
|
|
3301
|
-
requestId: string;
|
|
3335
|
+
requestId: string;
|
|
3302
3336
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3303
3337
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3304
3338
|
endpointName: string;
|
|
@@ -3307,26 +3341,22 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3307
3341
|
} & {
|
|
3308
3342
|
data?: undefined;
|
|
3309
3343
|
} & {
|
|
3310
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3311
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3312
|
-
- maintenance: model is unavailable for a period of time.
|
|
3313
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
3314
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3344
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3315
3345
|
isUninitialized: false;
|
|
3316
3346
|
isLoading: true;
|
|
3317
3347
|
isSuccess: false;
|
|
3318
3348
|
isError: false;
|
|
3319
3349
|
}) | ({
|
|
3320
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3350
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3321
3351
|
} & Omit<{
|
|
3322
|
-
requestId: string;
|
|
3352
|
+
requestId: string;
|
|
3323
3353
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3324
3354
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3325
3355
|
endpointName: string;
|
|
3326
3356
|
startedTimeStamp: number;
|
|
3327
3357
|
fulfilledTimeStamp?: number | undefined;
|
|
3328
3358
|
}, "error"> & Required<Pick<{
|
|
3329
|
-
requestId: string;
|
|
3359
|
+
requestId: string;
|
|
3330
3360
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3331
3361
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3332
3362
|
endpointName: string;
|
|
@@ -3338,7 +3368,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3338
3368
|
isLoading: false;
|
|
3339
3369
|
isSuccess: false;
|
|
3340
3370
|
isError: true;
|
|
3341
|
-
})) => R) | undefined;
|
|
3371
|
+
})) => R) | undefined;
|
|
3342
3372
|
fixedCacheKey?: string | undefined;
|
|
3343
3373
|
} | undefined) => readonly [(arg: PostApiWorkspacesApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiWorkspacesApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, PostApiWorkspacesApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3344
3374
|
originalArgs?: PostApiWorkspacesApiArg | undefined;
|
|
@@ -3509,29 +3539,29 @@ declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
|
3509
3539
|
};
|
|
3510
3540
|
declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
3511
3541
|
requestId?: undefined;
|
|
3512
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3542
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3513
3543
|
data?: undefined;
|
|
3514
3544
|
error?: undefined;
|
|
3515
3545
|
endpointName?: string | undefined;
|
|
3516
|
-
startedTimeStamp?: undefined;
|
|
3546
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
3517
3547
|
fulfilledTimeStamp?: undefined;
|
|
3518
3548
|
} & {
|
|
3519
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3549
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
3520
3550
|
isUninitialized: true;
|
|
3521
|
-
isLoading: false;
|
|
3551
|
+
isLoading: false;
|
|
3522
3552
|
isSuccess: false;
|
|
3523
3553
|
isError: false;
|
|
3524
3554
|
}) | ({
|
|
3525
3555
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3526
3556
|
} & Omit<{
|
|
3527
|
-
requestId: string;
|
|
3557
|
+
requestId: string;
|
|
3528
3558
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3529
3559
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3530
3560
|
endpointName: string;
|
|
3531
3561
|
startedTimeStamp: number;
|
|
3532
3562
|
fulfilledTimeStamp?: number | undefined;
|
|
3533
3563
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3534
|
-
requestId: string;
|
|
3564
|
+
requestId: string;
|
|
3535
3565
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3536
3566
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3537
3567
|
endpointName: string;
|
|
@@ -3544,11 +3574,15 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3544
3574
|
isUninitialized: false;
|
|
3545
3575
|
isLoading: false;
|
|
3546
3576
|
isSuccess: true;
|
|
3547
|
-
isError: false;
|
|
3577
|
+
isError: false; /** Status of model, including:
|
|
3578
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3579
|
+
- maintenance: model is unavailable for a period of time.
|
|
3580
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
3581
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3548
3582
|
}) | ({
|
|
3549
3583
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3550
3584
|
} & {
|
|
3551
|
-
requestId: string;
|
|
3585
|
+
requestId: string;
|
|
3552
3586
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3553
3587
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3554
3588
|
endpointName: string;
|
|
@@ -3557,26 +3591,22 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3557
3591
|
} & {
|
|
3558
3592
|
data?: undefined;
|
|
3559
3593
|
} & {
|
|
3560
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3561
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3562
|
-
- maintenance: model is unavailable for a period of time.
|
|
3563
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
3564
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3594
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3565
3595
|
isUninitialized: false;
|
|
3566
3596
|
isLoading: true;
|
|
3567
3597
|
isSuccess: false;
|
|
3568
3598
|
isError: false;
|
|
3569
3599
|
}) | ({
|
|
3570
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3600
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3571
3601
|
} & Omit<{
|
|
3572
|
-
requestId: string;
|
|
3602
|
+
requestId: string;
|
|
3573
3603
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3574
3604
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3575
3605
|
endpointName: string;
|
|
3576
3606
|
startedTimeStamp: number;
|
|
3577
3607
|
fulfilledTimeStamp?: number | undefined;
|
|
3578
3608
|
}, "error"> & Required<Pick<{
|
|
3579
|
-
requestId: string;
|
|
3609
|
+
requestId: string;
|
|
3580
3610
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3581
3611
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3582
3612
|
endpointName: string;
|
|
@@ -3591,29 +3621,29 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3591
3621
|
})>(options?: {
|
|
3592
3622
|
selectFromResult?: ((state: ({
|
|
3593
3623
|
requestId?: undefined;
|
|
3594
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3624
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3595
3625
|
data?: undefined;
|
|
3596
3626
|
error?: undefined;
|
|
3597
3627
|
endpointName?: string | undefined;
|
|
3598
|
-
startedTimeStamp?: undefined;
|
|
3628
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
3599
3629
|
fulfilledTimeStamp?: undefined;
|
|
3600
3630
|
} & {
|
|
3601
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3631
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
3602
3632
|
isUninitialized: true;
|
|
3603
|
-
isLoading: false;
|
|
3633
|
+
isLoading: false;
|
|
3604
3634
|
isSuccess: false;
|
|
3605
3635
|
isError: false;
|
|
3606
3636
|
}) | ({
|
|
3607
3637
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3608
3638
|
} & Omit<{
|
|
3609
|
-
requestId: string;
|
|
3639
|
+
requestId: string;
|
|
3610
3640
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3611
3641
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3612
3642
|
endpointName: string;
|
|
3613
3643
|
startedTimeStamp: number;
|
|
3614
3644
|
fulfilledTimeStamp?: number | undefined;
|
|
3615
3645
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3616
|
-
requestId: string;
|
|
3646
|
+
requestId: string;
|
|
3617
3647
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3618
3648
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3619
3649
|
endpointName: string;
|
|
@@ -3626,11 +3656,15 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3626
3656
|
isUninitialized: false;
|
|
3627
3657
|
isLoading: false;
|
|
3628
3658
|
isSuccess: true;
|
|
3629
|
-
isError: false;
|
|
3659
|
+
isError: false; /** Status of model, including:
|
|
3660
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3661
|
+
- maintenance: model is unavailable for a period of time.
|
|
3662
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
3663
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3630
3664
|
}) | ({
|
|
3631
3665
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3632
3666
|
} & {
|
|
3633
|
-
requestId: string;
|
|
3667
|
+
requestId: string;
|
|
3634
3668
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3635
3669
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3636
3670
|
endpointName: string;
|
|
@@ -3639,26 +3673,22 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3639
3673
|
} & {
|
|
3640
3674
|
data?: undefined;
|
|
3641
3675
|
} & {
|
|
3642
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3643
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3644
|
-
- maintenance: model is unavailable for a period of time.
|
|
3645
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
3646
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3676
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3647
3677
|
isUninitialized: false;
|
|
3648
3678
|
isLoading: true;
|
|
3649
3679
|
isSuccess: false;
|
|
3650
3680
|
isError: false;
|
|
3651
3681
|
}) | ({
|
|
3652
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3682
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3653
3683
|
} & Omit<{
|
|
3654
|
-
requestId: string;
|
|
3684
|
+
requestId: string;
|
|
3655
3685
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3656
3686
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3657
3687
|
endpointName: string;
|
|
3658
3688
|
startedTimeStamp: number;
|
|
3659
3689
|
fulfilledTimeStamp?: number | undefined;
|
|
3660
3690
|
}, "error"> & Required<Pick<{
|
|
3661
|
-
requestId: string;
|
|
3691
|
+
requestId: string;
|
|
3662
3692
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3663
3693
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3664
3694
|
endpointName: string;
|
|
@@ -3670,7 +3700,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3670
3700
|
isLoading: false;
|
|
3671
3701
|
isSuccess: false;
|
|
3672
3702
|
isError: true;
|
|
3673
|
-
})) => R) | undefined;
|
|
3703
|
+
})) => R) | undefined;
|
|
3674
3704
|
fixedCacheKey?: string | undefined;
|
|
3675
3705
|
} | undefined) => readonly [(arg: PutApiWorkspacesByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PutApiWorkspacesByIdApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, PutApiWorkspacesByIdApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3676
3706
|
originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
|
|
@@ -3678,29 +3708,29 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3678
3708
|
}];
|
|
3679
3709
|
declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
3680
3710
|
requestId?: undefined;
|
|
3681
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3711
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3682
3712
|
data?: undefined;
|
|
3683
3713
|
error?: undefined;
|
|
3684
3714
|
endpointName?: string | undefined;
|
|
3685
|
-
startedTimeStamp?: undefined;
|
|
3715
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
3686
3716
|
fulfilledTimeStamp?: undefined;
|
|
3687
3717
|
} & {
|
|
3688
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3718
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
3689
3719
|
isUninitialized: true;
|
|
3690
|
-
isLoading: false;
|
|
3720
|
+
isLoading: false;
|
|
3691
3721
|
isSuccess: false;
|
|
3692
3722
|
isError: false;
|
|
3693
3723
|
}) | ({
|
|
3694
3724
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3695
3725
|
} & Omit<{
|
|
3696
|
-
requestId: string;
|
|
3726
|
+
requestId: string;
|
|
3697
3727
|
data?: unknown;
|
|
3698
3728
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3699
3729
|
endpointName: string;
|
|
3700
3730
|
startedTimeStamp: number;
|
|
3701
3731
|
fulfilledTimeStamp?: number | undefined;
|
|
3702
3732
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3703
|
-
requestId: string;
|
|
3733
|
+
requestId: string;
|
|
3704
3734
|
data?: unknown;
|
|
3705
3735
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3706
3736
|
endpointName: string;
|
|
@@ -3713,11 +3743,15 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3713
3743
|
isUninitialized: false;
|
|
3714
3744
|
isLoading: false;
|
|
3715
3745
|
isSuccess: true;
|
|
3716
|
-
isError: false;
|
|
3746
|
+
isError: false; /** Status of model, including:
|
|
3747
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3748
|
+
- maintenance: model is unavailable for a period of time.
|
|
3749
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
3750
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3717
3751
|
}) | ({
|
|
3718
3752
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3719
3753
|
} & {
|
|
3720
|
-
requestId: string;
|
|
3754
|
+
requestId: string;
|
|
3721
3755
|
data?: unknown;
|
|
3722
3756
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3723
3757
|
endpointName: string;
|
|
@@ -3726,26 +3760,22 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3726
3760
|
} & {
|
|
3727
3761
|
data?: undefined;
|
|
3728
3762
|
} & {
|
|
3729
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3730
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3731
|
-
- maintenance: model is unavailable for a period of time.
|
|
3732
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
3733
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3763
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3734
3764
|
isUninitialized: false;
|
|
3735
3765
|
isLoading: true;
|
|
3736
3766
|
isSuccess: false;
|
|
3737
3767
|
isError: false;
|
|
3738
3768
|
}) | ({
|
|
3739
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3769
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3740
3770
|
} & Omit<{
|
|
3741
|
-
requestId: string;
|
|
3771
|
+
requestId: string;
|
|
3742
3772
|
data?: unknown;
|
|
3743
3773
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3744
3774
|
endpointName: string;
|
|
3745
3775
|
startedTimeStamp: number;
|
|
3746
3776
|
fulfilledTimeStamp?: number | undefined;
|
|
3747
3777
|
}, "error"> & Required<Pick<{
|
|
3748
|
-
requestId: string;
|
|
3778
|
+
requestId: string;
|
|
3749
3779
|
data?: unknown;
|
|
3750
3780
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3751
3781
|
endpointName: string;
|
|
@@ -3760,29 +3790,29 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3760
3790
|
})>(options?: {
|
|
3761
3791
|
selectFromResult?: ((state: ({
|
|
3762
3792
|
requestId?: undefined;
|
|
3763
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3793
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3764
3794
|
data?: undefined;
|
|
3765
3795
|
error?: undefined;
|
|
3766
3796
|
endpointName?: string | undefined;
|
|
3767
|
-
startedTimeStamp?: undefined;
|
|
3797
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
3768
3798
|
fulfilledTimeStamp?: undefined;
|
|
3769
3799
|
} & {
|
|
3770
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3800
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
3771
3801
|
isUninitialized: true;
|
|
3772
|
-
isLoading: false;
|
|
3802
|
+
isLoading: false;
|
|
3773
3803
|
isSuccess: false;
|
|
3774
3804
|
isError: false;
|
|
3775
3805
|
}) | ({
|
|
3776
3806
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3777
3807
|
} & Omit<{
|
|
3778
|
-
requestId: string;
|
|
3808
|
+
requestId: string;
|
|
3779
3809
|
data?: unknown;
|
|
3780
3810
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3781
3811
|
endpointName: string;
|
|
3782
3812
|
startedTimeStamp: number;
|
|
3783
3813
|
fulfilledTimeStamp?: number | undefined;
|
|
3784
3814
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3785
|
-
requestId: string;
|
|
3815
|
+
requestId: string;
|
|
3786
3816
|
data?: unknown;
|
|
3787
3817
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3788
3818
|
endpointName: string;
|
|
@@ -3795,11 +3825,15 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3795
3825
|
isUninitialized: false;
|
|
3796
3826
|
isLoading: false;
|
|
3797
3827
|
isSuccess: true;
|
|
3798
|
-
isError: false;
|
|
3828
|
+
isError: false; /** Status of model, including:
|
|
3829
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3830
|
+
- maintenance: model is unavailable for a period of time.
|
|
3831
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
3832
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3799
3833
|
}) | ({
|
|
3800
3834
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3801
3835
|
} & {
|
|
3802
|
-
requestId: string;
|
|
3836
|
+
requestId: string;
|
|
3803
3837
|
data?: unknown;
|
|
3804
3838
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3805
3839
|
endpointName: string;
|
|
@@ -3808,26 +3842,22 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3808
3842
|
} & {
|
|
3809
3843
|
data?: undefined;
|
|
3810
3844
|
} & {
|
|
3811
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3812
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3813
|
-
- maintenance: model is unavailable for a period of time.
|
|
3814
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
3815
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3845
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3816
3846
|
isUninitialized: false;
|
|
3817
3847
|
isLoading: true;
|
|
3818
3848
|
isSuccess: false;
|
|
3819
3849
|
isError: false;
|
|
3820
3850
|
}) | ({
|
|
3821
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3851
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3822
3852
|
} & Omit<{
|
|
3823
|
-
requestId: string;
|
|
3853
|
+
requestId: string;
|
|
3824
3854
|
data?: unknown;
|
|
3825
3855
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3826
3856
|
endpointName: string;
|
|
3827
3857
|
startedTimeStamp: number;
|
|
3828
3858
|
fulfilledTimeStamp?: number | undefined;
|
|
3829
3859
|
}, "error"> & Required<Pick<{
|
|
3830
|
-
requestId: string;
|
|
3860
|
+
requestId: string;
|
|
3831
3861
|
data?: unknown;
|
|
3832
3862
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3833
3863
|
endpointName: string;
|
|
@@ -3839,7 +3869,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3839
3869
|
isLoading: false;
|
|
3840
3870
|
isSuccess: false;
|
|
3841
3871
|
isError: true;
|
|
3842
|
-
})) => R) | undefined;
|
|
3872
|
+
})) => R) | undefined;
|
|
3843
3873
|
fixedCacheKey?: string | undefined;
|
|
3844
3874
|
} | undefined) => readonly [(arg: DeleteApiWorkspacesByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteApiWorkspacesByIdApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, unknown, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3845
3875
|
originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
|
|
@@ -3847,29 +3877,29 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3847
3877
|
}];
|
|
3848
3878
|
declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
3849
3879
|
requestId?: undefined;
|
|
3850
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3880
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3851
3881
|
data?: undefined;
|
|
3852
3882
|
error?: undefined;
|
|
3853
3883
|
endpointName?: string | undefined;
|
|
3854
|
-
startedTimeStamp?: undefined;
|
|
3884
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
3855
3885
|
fulfilledTimeStamp?: undefined;
|
|
3856
3886
|
} & {
|
|
3857
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3887
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
3858
3888
|
isUninitialized: true;
|
|
3859
|
-
isLoading: false;
|
|
3889
|
+
isLoading: false;
|
|
3860
3890
|
isSuccess: false;
|
|
3861
3891
|
isError: false;
|
|
3862
3892
|
}) | ({
|
|
3863
3893
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3864
3894
|
} & Omit<{
|
|
3865
|
-
requestId: string;
|
|
3895
|
+
requestId: string;
|
|
3866
3896
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3867
3897
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3868
3898
|
endpointName: string;
|
|
3869
3899
|
startedTimeStamp: number;
|
|
3870
3900
|
fulfilledTimeStamp?: number | undefined;
|
|
3871
3901
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3872
|
-
requestId: string;
|
|
3902
|
+
requestId: string;
|
|
3873
3903
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3874
3904
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3875
3905
|
endpointName: string;
|
|
@@ -3882,11 +3912,15 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3882
3912
|
isUninitialized: false;
|
|
3883
3913
|
isLoading: false;
|
|
3884
3914
|
isSuccess: true;
|
|
3885
|
-
isError: false;
|
|
3915
|
+
isError: false; /** Status of model, including:
|
|
3916
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3917
|
+
- maintenance: model is unavailable for a period of time.
|
|
3918
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
3919
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3886
3920
|
}) | ({
|
|
3887
3921
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3888
3922
|
} & {
|
|
3889
|
-
requestId: string;
|
|
3923
|
+
requestId: string;
|
|
3890
3924
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3891
3925
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3892
3926
|
endpointName: string;
|
|
@@ -3895,26 +3929,22 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3895
3929
|
} & {
|
|
3896
3930
|
data?: undefined;
|
|
3897
3931
|
} & {
|
|
3898
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3899
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3900
|
-
- maintenance: model is unavailable for a period of time.
|
|
3901
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
3902
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3932
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3903
3933
|
isUninitialized: false;
|
|
3904
3934
|
isLoading: true;
|
|
3905
3935
|
isSuccess: false;
|
|
3906
3936
|
isError: false;
|
|
3907
3937
|
}) | ({
|
|
3908
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3938
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3909
3939
|
} & Omit<{
|
|
3910
|
-
requestId: string;
|
|
3940
|
+
requestId: string;
|
|
3911
3941
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3912
3942
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3913
3943
|
endpointName: string;
|
|
3914
3944
|
startedTimeStamp: number;
|
|
3915
3945
|
fulfilledTimeStamp?: number | undefined;
|
|
3916
3946
|
}, "error"> & Required<Pick<{
|
|
3917
|
-
requestId: string;
|
|
3947
|
+
requestId: string;
|
|
3918
3948
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3919
3949
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3920
3950
|
endpointName: string;
|
|
@@ -3929,29 +3959,29 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3929
3959
|
})>(options?: {
|
|
3930
3960
|
selectFromResult?: ((state: ({
|
|
3931
3961
|
requestId?: undefined;
|
|
3932
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3962
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3933
3963
|
data?: undefined;
|
|
3934
3964
|
error?: undefined;
|
|
3935
3965
|
endpointName?: string | undefined;
|
|
3936
|
-
startedTimeStamp?: undefined;
|
|
3966
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
3937
3967
|
fulfilledTimeStamp?: undefined;
|
|
3938
3968
|
} & {
|
|
3939
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3969
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
3940
3970
|
isUninitialized: true;
|
|
3941
|
-
isLoading: false;
|
|
3971
|
+
isLoading: false;
|
|
3942
3972
|
isSuccess: false;
|
|
3943
3973
|
isError: false;
|
|
3944
3974
|
}) | ({
|
|
3945
3975
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3946
3976
|
} & Omit<{
|
|
3947
|
-
requestId: string;
|
|
3977
|
+
requestId: string;
|
|
3948
3978
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3949
3979
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3950
3980
|
endpointName: string;
|
|
3951
3981
|
startedTimeStamp: number;
|
|
3952
3982
|
fulfilledTimeStamp?: number | undefined;
|
|
3953
3983
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3954
|
-
requestId: string;
|
|
3984
|
+
requestId: string;
|
|
3955
3985
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3956
3986
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3957
3987
|
endpointName: string;
|
|
@@ -3964,11 +3994,15 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3964
3994
|
isUninitialized: false;
|
|
3965
3995
|
isLoading: false;
|
|
3966
3996
|
isSuccess: true;
|
|
3967
|
-
isError: false;
|
|
3997
|
+
isError: false; /** Status of model, including:
|
|
3998
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3999
|
+
- maintenance: model is unavailable for a period of time.
|
|
4000
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
4001
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
3968
4002
|
}) | ({
|
|
3969
4003
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3970
4004
|
} & {
|
|
3971
|
-
requestId: string;
|
|
4005
|
+
requestId: string;
|
|
3972
4006
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3973
4007
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3974
4008
|
endpointName: string;
|
|
@@ -3977,26 +4011,22 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3977
4011
|
} & {
|
|
3978
4012
|
data?: undefined;
|
|
3979
4013
|
} & {
|
|
3980
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3981
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
3982
|
-
- maintenance: model is unavailable for a period of time.
|
|
3983
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
3984
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
4014
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3985
4015
|
isUninitialized: false;
|
|
3986
4016
|
isLoading: true;
|
|
3987
4017
|
isSuccess: false;
|
|
3988
4018
|
isError: false;
|
|
3989
4019
|
}) | ({
|
|
3990
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4020
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3991
4021
|
} & Omit<{
|
|
3992
|
-
requestId: string;
|
|
4022
|
+
requestId: string;
|
|
3993
4023
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3994
4024
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3995
4025
|
endpointName: string;
|
|
3996
4026
|
startedTimeStamp: number;
|
|
3997
4027
|
fulfilledTimeStamp?: number | undefined;
|
|
3998
4028
|
}, "error"> & Required<Pick<{
|
|
3999
|
-
requestId: string;
|
|
4029
|
+
requestId: string;
|
|
4000
4030
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
4001
4031
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4002
4032
|
endpointName: string;
|
|
@@ -4008,7 +4038,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
4008
4038
|
isLoading: false;
|
|
4009
4039
|
isSuccess: false;
|
|
4010
4040
|
isError: true;
|
|
4011
|
-
})) => R) | undefined;
|
|
4041
|
+
})) => R) | undefined;
|
|
4012
4042
|
fixedCacheKey?: string | undefined;
|
|
4013
4043
|
} | undefined) => readonly [(arg: CreateEnvironmentApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateEnvironmentApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, CreateEnvironmentApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4014
4044
|
originalArgs?: CreateEnvironmentApiArg | undefined;
|
|
@@ -4179,29 +4209,29 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
4179
4209
|
};
|
|
4180
4210
|
declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
4181
4211
|
requestId?: undefined;
|
|
4182
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4212
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4183
4213
|
data?: undefined;
|
|
4184
4214
|
error?: undefined;
|
|
4185
4215
|
endpointName?: string | undefined;
|
|
4186
|
-
startedTimeStamp?: undefined;
|
|
4216
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
4187
4217
|
fulfilledTimeStamp?: undefined;
|
|
4188
4218
|
} & {
|
|
4189
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4219
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
4190
4220
|
isUninitialized: true;
|
|
4191
|
-
isLoading: false;
|
|
4221
|
+
isLoading: false;
|
|
4192
4222
|
isSuccess: false;
|
|
4193
4223
|
isError: false;
|
|
4194
4224
|
}) | ({
|
|
4195
4225
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4196
4226
|
} & Omit<{
|
|
4197
|
-
requestId: string;
|
|
4227
|
+
requestId: string;
|
|
4198
4228
|
data?: PostEvaluateApiResponse | undefined;
|
|
4199
4229
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4200
4230
|
endpointName: string;
|
|
4201
4231
|
startedTimeStamp: number;
|
|
4202
4232
|
fulfilledTimeStamp?: number | undefined;
|
|
4203
4233
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4204
|
-
requestId: string;
|
|
4234
|
+
requestId: string;
|
|
4205
4235
|
data?: PostEvaluateApiResponse | undefined;
|
|
4206
4236
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4207
4237
|
endpointName: string;
|
|
@@ -4214,11 +4244,15 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
|
4214
4244
|
isUninitialized: false;
|
|
4215
4245
|
isLoading: false;
|
|
4216
4246
|
isSuccess: true;
|
|
4217
|
-
isError: false;
|
|
4247
|
+
isError: false; /** Status of model, including:
|
|
4248
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
4249
|
+
- maintenance: model is unavailable for a period of time.
|
|
4250
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
4251
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
4218
4252
|
}) | ({
|
|
4219
4253
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4220
4254
|
} & {
|
|
4221
|
-
requestId: string;
|
|
4255
|
+
requestId: string;
|
|
4222
4256
|
data?: PostEvaluateApiResponse | undefined;
|
|
4223
4257
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4224
4258
|
endpointName: string;
|
|
@@ -4227,26 +4261,22 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
|
4227
4261
|
} & {
|
|
4228
4262
|
data?: undefined;
|
|
4229
4263
|
} & {
|
|
4230
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4231
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
4232
|
-
- maintenance: model is unavailable for a period of time.
|
|
4233
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
4234
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
4264
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4235
4265
|
isUninitialized: false;
|
|
4236
4266
|
isLoading: true;
|
|
4237
4267
|
isSuccess: false;
|
|
4238
4268
|
isError: false;
|
|
4239
4269
|
}) | ({
|
|
4240
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4270
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4241
4271
|
} & Omit<{
|
|
4242
|
-
requestId: string;
|
|
4272
|
+
requestId: string;
|
|
4243
4273
|
data?: PostEvaluateApiResponse | undefined;
|
|
4244
4274
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4245
4275
|
endpointName: string;
|
|
4246
4276
|
startedTimeStamp: number;
|
|
4247
4277
|
fulfilledTimeStamp?: number | undefined;
|
|
4248
4278
|
}, "error"> & Required<Pick<{
|
|
4249
|
-
requestId: string;
|
|
4279
|
+
requestId: string;
|
|
4250
4280
|
data?: PostEvaluateApiResponse | undefined;
|
|
4251
4281
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4252
4282
|
endpointName: string;
|
|
@@ -4261,29 +4291,29 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
|
4261
4291
|
})>(options?: {
|
|
4262
4292
|
selectFromResult?: ((state: ({
|
|
4263
4293
|
requestId?: undefined;
|
|
4264
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4294
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4265
4295
|
data?: undefined;
|
|
4266
4296
|
error?: undefined;
|
|
4267
4297
|
endpointName?: string | undefined;
|
|
4268
|
-
startedTimeStamp?: undefined;
|
|
4298
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
4269
4299
|
fulfilledTimeStamp?: undefined;
|
|
4270
4300
|
} & {
|
|
4271
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4301
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
4272
4302
|
isUninitialized: true;
|
|
4273
|
-
isLoading: false;
|
|
4303
|
+
isLoading: false;
|
|
4274
4304
|
isSuccess: false;
|
|
4275
4305
|
isError: false;
|
|
4276
4306
|
}) | ({
|
|
4277
4307
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4278
4308
|
} & Omit<{
|
|
4279
|
-
requestId: string;
|
|
4309
|
+
requestId: string;
|
|
4280
4310
|
data?: PostEvaluateApiResponse | undefined;
|
|
4281
4311
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4282
4312
|
endpointName: string;
|
|
4283
4313
|
startedTimeStamp: number;
|
|
4284
4314
|
fulfilledTimeStamp?: number | undefined;
|
|
4285
4315
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4286
|
-
requestId: string;
|
|
4316
|
+
requestId: string;
|
|
4287
4317
|
data?: PostEvaluateApiResponse | undefined;
|
|
4288
4318
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4289
4319
|
endpointName: string;
|
|
@@ -4296,11 +4326,15 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
|
4296
4326
|
isUninitialized: false;
|
|
4297
4327
|
isLoading: false;
|
|
4298
4328
|
isSuccess: true;
|
|
4299
|
-
isError: false;
|
|
4329
|
+
isError: false; /** Status of model, including:
|
|
4330
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
4331
|
+
- maintenance: model is unavailable for a period of time.
|
|
4332
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
4333
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
4300
4334
|
}) | ({
|
|
4301
4335
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4302
4336
|
} & {
|
|
4303
|
-
requestId: string;
|
|
4337
|
+
requestId: string;
|
|
4304
4338
|
data?: PostEvaluateApiResponse | undefined;
|
|
4305
4339
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4306
4340
|
endpointName: string;
|
|
@@ -4309,26 +4343,22 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
|
4309
4343
|
} & {
|
|
4310
4344
|
data?: undefined;
|
|
4311
4345
|
} & {
|
|
4312
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4313
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
4314
|
-
- maintenance: model is unavailable for a period of time.
|
|
4315
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
4316
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
4346
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4317
4347
|
isUninitialized: false;
|
|
4318
4348
|
isLoading: true;
|
|
4319
4349
|
isSuccess: false;
|
|
4320
4350
|
isError: false;
|
|
4321
4351
|
}) | ({
|
|
4322
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4352
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4323
4353
|
} & Omit<{
|
|
4324
|
-
requestId: string;
|
|
4354
|
+
requestId: string;
|
|
4325
4355
|
data?: PostEvaluateApiResponse | undefined;
|
|
4326
4356
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4327
4357
|
endpointName: string;
|
|
4328
4358
|
startedTimeStamp: number;
|
|
4329
4359
|
fulfilledTimeStamp?: number | undefined;
|
|
4330
4360
|
}, "error"> & Required<Pick<{
|
|
4331
|
-
requestId: string;
|
|
4361
|
+
requestId: string;
|
|
4332
4362
|
data?: PostEvaluateApiResponse | undefined;
|
|
4333
4363
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4334
4364
|
endpointName: string;
|
|
@@ -4340,11 +4370,180 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
|
4340
4370
|
isLoading: false;
|
|
4341
4371
|
isSuccess: false;
|
|
4342
4372
|
isError: true;
|
|
4343
|
-
})) => R) | undefined;
|
|
4373
|
+
})) => R) | undefined;
|
|
4344
4374
|
fixedCacheKey?: string | undefined;
|
|
4345
4375
|
} | undefined) => readonly [(arg: PostEvaluateApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostEvaluateApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, PostEvaluateApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4346
4376
|
originalArgs?: PostEvaluateApiArg | undefined;
|
|
4347
4377
|
reset: () => void;
|
|
4348
4378
|
}];
|
|
4379
|
+
declare const useRegisterToAcademyContentMutation: <R extends Record<string, any> = ({
|
|
4380
|
+
requestId?: undefined;
|
|
4381
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4382
|
+
data?: undefined;
|
|
4383
|
+
error?: undefined;
|
|
4384
|
+
endpointName?: string | undefined;
|
|
4385
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
4386
|
+
fulfilledTimeStamp?: undefined;
|
|
4387
|
+
} & {
|
|
4388
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
4389
|
+
isUninitialized: true;
|
|
4390
|
+
isLoading: false;
|
|
4391
|
+
isSuccess: false;
|
|
4392
|
+
isError: false;
|
|
4393
|
+
}) | ({
|
|
4394
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4395
|
+
} & Omit<{
|
|
4396
|
+
requestId: string;
|
|
4397
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4398
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4399
|
+
endpointName: string;
|
|
4400
|
+
startedTimeStamp: number;
|
|
4401
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4402
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4403
|
+
requestId: string;
|
|
4404
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4405
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4406
|
+
endpointName: string;
|
|
4407
|
+
startedTimeStamp: number;
|
|
4408
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4409
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4410
|
+
error: undefined;
|
|
4411
|
+
} & {
|
|
4412
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4413
|
+
isUninitialized: false;
|
|
4414
|
+
isLoading: false;
|
|
4415
|
+
isSuccess: true;
|
|
4416
|
+
isError: false; /** Status of model, including:
|
|
4417
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
4418
|
+
- maintenance: model is unavailable for a period of time.
|
|
4419
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
4420
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
4421
|
+
}) | ({
|
|
4422
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4423
|
+
} & {
|
|
4424
|
+
requestId: string;
|
|
4425
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4426
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4427
|
+
endpointName: string;
|
|
4428
|
+
startedTimeStamp: number;
|
|
4429
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4430
|
+
} & {
|
|
4431
|
+
data?: undefined;
|
|
4432
|
+
} & {
|
|
4433
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4434
|
+
isUninitialized: false;
|
|
4435
|
+
isLoading: true;
|
|
4436
|
+
isSuccess: false;
|
|
4437
|
+
isError: false;
|
|
4438
|
+
}) | ({
|
|
4439
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4440
|
+
} & Omit<{
|
|
4441
|
+
requestId: string;
|
|
4442
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4443
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4444
|
+
endpointName: string;
|
|
4445
|
+
startedTimeStamp: number;
|
|
4446
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4447
|
+
}, "error"> & Required<Pick<{
|
|
4448
|
+
requestId: string;
|
|
4449
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4450
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4451
|
+
endpointName: string;
|
|
4452
|
+
startedTimeStamp: number;
|
|
4453
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4454
|
+
}, "error">> & {
|
|
4455
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4456
|
+
isUninitialized: false;
|
|
4457
|
+
isLoading: false;
|
|
4458
|
+
isSuccess: false;
|
|
4459
|
+
isError: true;
|
|
4460
|
+
})>(options?: {
|
|
4461
|
+
selectFromResult?: ((state: ({
|
|
4462
|
+
requestId?: undefined;
|
|
4463
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4464
|
+
data?: undefined;
|
|
4465
|
+
error?: undefined;
|
|
4466
|
+
endpointName?: string | undefined;
|
|
4467
|
+
startedTimeStamp?: undefined; /** Version of the model as defined by the registrant. */
|
|
4468
|
+
fulfilledTimeStamp?: undefined;
|
|
4469
|
+
} & {
|
|
4470
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Version of the model definition. */
|
|
4471
|
+
isUninitialized: true;
|
|
4472
|
+
isLoading: false;
|
|
4473
|
+
isSuccess: false;
|
|
4474
|
+
isError: false;
|
|
4475
|
+
}) | ({
|
|
4476
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4477
|
+
} & Omit<{
|
|
4478
|
+
requestId: string;
|
|
4479
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4480
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4481
|
+
endpointName: string;
|
|
4482
|
+
startedTimeStamp: number;
|
|
4483
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4484
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4485
|
+
requestId: string;
|
|
4486
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4487
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4488
|
+
endpointName: string;
|
|
4489
|
+
startedTimeStamp: number;
|
|
4490
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4491
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4492
|
+
error: undefined;
|
|
4493
|
+
} & {
|
|
4494
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4495
|
+
isUninitialized: false;
|
|
4496
|
+
isLoading: false;
|
|
4497
|
+
isSuccess: true;
|
|
4498
|
+
isError: false; /** Status of model, including:
|
|
4499
|
+
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
4500
|
+
- maintenance: model is unavailable for a period of time.
|
|
4501
|
+
- enabled: model is available for use for all users of this Meshery Server.
|
|
4502
|
+
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
4503
|
+
}) | ({
|
|
4504
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4505
|
+
} & {
|
|
4506
|
+
requestId: string;
|
|
4507
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4508
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4509
|
+
endpointName: string;
|
|
4510
|
+
startedTimeStamp: number;
|
|
4511
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4512
|
+
} & {
|
|
4513
|
+
data?: undefined;
|
|
4514
|
+
} & {
|
|
4515
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4516
|
+
isUninitialized: false;
|
|
4517
|
+
isLoading: true;
|
|
4518
|
+
isSuccess: false;
|
|
4519
|
+
isError: false;
|
|
4520
|
+
}) | ({
|
|
4521
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4522
|
+
} & Omit<{
|
|
4523
|
+
requestId: string;
|
|
4524
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4525
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4526
|
+
endpointName: string;
|
|
4527
|
+
startedTimeStamp: number;
|
|
4528
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4529
|
+
}, "error"> & Required<Pick<{
|
|
4530
|
+
requestId: string;
|
|
4531
|
+
data?: RegisterToAcademyContentApiResponse | undefined;
|
|
4532
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4533
|
+
endpointName: string;
|
|
4534
|
+
startedTimeStamp: number;
|
|
4535
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4536
|
+
}, "error">> & {
|
|
4537
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4538
|
+
isUninitialized: false;
|
|
4539
|
+
isLoading: false;
|
|
4540
|
+
isSuccess: false;
|
|
4541
|
+
isError: true;
|
|
4542
|
+
})) => R) | undefined;
|
|
4543
|
+
fixedCacheKey?: string | undefined;
|
|
4544
|
+
} | undefined) => readonly [(arg: RegisterToAcademyContentApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<RegisterToAcademyContentApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, never, RegisterToAcademyContentApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4545
|
+
originalArgs?: RegisterToAcademyContentApiArg | undefined;
|
|
4546
|
+
reset: () => void;
|
|
4547
|
+
}];
|
|
4349
4548
|
|
|
4350
|
-
export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type ImportDesignApiArg, type ImportDesignApiResponse, type PostApiWorkspacesApiArg, type PostApiWorkspacesApiResponse, type PostEvaluateApiArg, type PostEvaluateApiResponse, type PutApiWorkspacesByIdApiArg, type PutApiWorkspacesByIdApiResponse, type RegisterMeshmodelsApiArg, type RegisterMeshmodelsApiResponse, injectedRtkApi as mesheryApi, useCreateEnvironmentMutation, useDeleteApiWorkspacesByIdMutation, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetEnvironmentsQuery, useImportDesignMutation, usePostApiWorkspacesMutation, usePostEvaluateMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation };
|
|
4549
|
+
export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type ImportDesignApiArg, type ImportDesignApiResponse, type PostApiWorkspacesApiArg, type PostApiWorkspacesApiResponse, type PostEvaluateApiArg, type PostEvaluateApiResponse, type PutApiWorkspacesByIdApiArg, type PutApiWorkspacesByIdApiResponse, type RegisterMeshmodelsApiArg, type RegisterMeshmodelsApiResponse, type RegisterToAcademyContentApiArg, type RegisterToAcademyContentApiResponse, injectedRtkApi as mesheryApi, useCreateEnvironmentMutation, useDeleteApiWorkspacesByIdMutation, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetEnvironmentsQuery, useImportDesignMutation, usePostApiWorkspacesMutation, usePostEvaluateMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation };
|