@meshery/schemas 0.8.47 → 0.8.49
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 +16 -0
- package/dist/cloudApi.d.ts +16 -0
- package/dist/index.d.mts +0 -100
- package/dist/index.d.ts +0 -100
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/dist/mesheryApi.d.mts +287 -235
- package/dist/mesheryApi.d.ts +287 -235
- package/package.json +1 -1
package/dist/mesheryApi.d.mts
CHANGED
|
@@ -305,8 +305,6 @@ type PostEvaluateApiResponse = {
|
|
|
305
305
|
}[];
|
|
306
306
|
/** Specifies the version of the schema used for the definition. */
|
|
307
307
|
schemaVersion: string;
|
|
308
|
-
/** Specifies the MeshSync deployment mode: 'operator' (standalone deployment) or 'embedded' (library). */
|
|
309
|
-
meshsync_deployment_mode?: "operator" | "embedded";
|
|
310
308
|
};
|
|
311
309
|
/** ID of the registrant. */
|
|
312
310
|
registrantId: string;
|
|
@@ -1543,8 +1541,6 @@ type PostEvaluateApiArg = {
|
|
|
1543
1541
|
}[];
|
|
1544
1542
|
/** Specifies the version of the schema used for the definition. */
|
|
1545
1543
|
schemaVersion: string;
|
|
1546
|
-
/** Specifies the MeshSync deployment mode: 'operator' (standalone deployment) or 'embedded' (library). */
|
|
1547
|
-
meshsync_deployment_mode?: "operator" | "embedded";
|
|
1548
1544
|
};
|
|
1549
1545
|
/** ID of the registrant. */
|
|
1550
1546
|
registrantId: string;
|
|
@@ -2680,70 +2676,74 @@ type PostEvaluateApiArg = {
|
|
|
2680
2676
|
};
|
|
2681
2677
|
declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
2682
2678
|
requestId?: undefined;
|
|
2683
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2679
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
2684
2680
|
data?: undefined;
|
|
2685
2681
|
error?: undefined;
|
|
2686
|
-
endpointName?: string | undefined;
|
|
2682
|
+
endpointName?: string | undefined;
|
|
2687
2683
|
startedTimeStamp?: undefined;
|
|
2688
2684
|
fulfilledTimeStamp?: undefined;
|
|
2689
2685
|
} & {
|
|
2690
2686
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2691
|
-
isUninitialized: true;
|
|
2692
|
-
isLoading: false;
|
|
2687
|
+
isUninitialized: true;
|
|
2688
|
+
isLoading: false; /** Description of the model. */
|
|
2693
2689
|
isSuccess: false;
|
|
2694
2690
|
isError: false;
|
|
2695
2691
|
}) | ({
|
|
2696
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2692
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2697
2693
|
} & Omit<{
|
|
2698
|
-
requestId: string;
|
|
2694
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2699
2695
|
data?: ImportDesignApiResponse | undefined;
|
|
2700
2696
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2701
2697
|
endpointName: string;
|
|
2702
2698
|
startedTimeStamp: number;
|
|
2703
2699
|
fulfilledTimeStamp?: number | undefined;
|
|
2704
2700
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2705
|
-
requestId: string;
|
|
2701
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2706
2702
|
data?: ImportDesignApiResponse | undefined;
|
|
2707
2703
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2708
2704
|
endpointName: string;
|
|
2709
2705
|
startedTimeStamp: number;
|
|
2710
2706
|
fulfilledTimeStamp?: number | undefined;
|
|
2711
2707
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
2712
|
-
error: undefined;
|
|
2708
|
+
error: undefined;
|
|
2713
2709
|
} & {
|
|
2714
2710
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2715
2711
|
isUninitialized: false;
|
|
2716
2712
|
isLoading: false;
|
|
2717
|
-
isSuccess: true;
|
|
2713
|
+
isSuccess: true;
|
|
2718
2714
|
isError: false;
|
|
2719
2715
|
}) | ({
|
|
2720
2716
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2721
2717
|
} & {
|
|
2722
|
-
requestId: string;
|
|
2718
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2723
2719
|
data?: ImportDesignApiResponse | undefined;
|
|
2724
2720
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2725
2721
|
endpointName: string;
|
|
2726
2722
|
startedTimeStamp: number;
|
|
2727
2723
|
fulfilledTimeStamp?: number | undefined;
|
|
2728
2724
|
} & {
|
|
2729
|
-
data?: undefined;
|
|
2725
|
+
data?: undefined;
|
|
2730
2726
|
} & {
|
|
2731
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2727
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
2732
2732
|
isUninitialized: false;
|
|
2733
2733
|
isLoading: true;
|
|
2734
2734
|
isSuccess: false;
|
|
2735
|
-
isError: false;
|
|
2735
|
+
isError: false;
|
|
2736
2736
|
}) | ({
|
|
2737
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2737
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
2738
2738
|
} & Omit<{
|
|
2739
|
-
requestId: string;
|
|
2739
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2740
2740
|
data?: ImportDesignApiResponse | undefined;
|
|
2741
2741
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2742
2742
|
endpointName: string;
|
|
2743
2743
|
startedTimeStamp: number;
|
|
2744
2744
|
fulfilledTimeStamp?: number | undefined;
|
|
2745
2745
|
}, "error"> & Required<Pick<{
|
|
2746
|
-
requestId: string;
|
|
2746
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2747
2747
|
data?: ImportDesignApiResponse | undefined;
|
|
2748
2748
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2749
2749
|
endpointName: string;
|
|
@@ -2758,70 +2758,74 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2758
2758
|
})>(options?: {
|
|
2759
2759
|
selectFromResult?: ((state: ({
|
|
2760
2760
|
requestId?: undefined;
|
|
2761
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2761
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
2762
2762
|
data?: undefined;
|
|
2763
2763
|
error?: undefined;
|
|
2764
|
-
endpointName?: string | undefined;
|
|
2764
|
+
endpointName?: string | undefined;
|
|
2765
2765
|
startedTimeStamp?: undefined;
|
|
2766
2766
|
fulfilledTimeStamp?: undefined;
|
|
2767
2767
|
} & {
|
|
2768
2768
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2769
|
-
isUninitialized: true;
|
|
2770
|
-
isLoading: false;
|
|
2769
|
+
isUninitialized: true;
|
|
2770
|
+
isLoading: false; /** Description of the model. */
|
|
2771
2771
|
isSuccess: false;
|
|
2772
2772
|
isError: false;
|
|
2773
2773
|
}) | ({
|
|
2774
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2774
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2775
2775
|
} & Omit<{
|
|
2776
|
-
requestId: string;
|
|
2776
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2777
2777
|
data?: ImportDesignApiResponse | undefined;
|
|
2778
2778
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2779
2779
|
endpointName: string;
|
|
2780
2780
|
startedTimeStamp: number;
|
|
2781
2781
|
fulfilledTimeStamp?: number | undefined;
|
|
2782
2782
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2783
|
-
requestId: string;
|
|
2783
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2784
2784
|
data?: ImportDesignApiResponse | undefined;
|
|
2785
2785
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2786
2786
|
endpointName: string;
|
|
2787
2787
|
startedTimeStamp: number;
|
|
2788
2788
|
fulfilledTimeStamp?: number | undefined;
|
|
2789
2789
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
2790
|
-
error: undefined;
|
|
2790
|
+
error: undefined;
|
|
2791
2791
|
} & {
|
|
2792
2792
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2793
2793
|
isUninitialized: false;
|
|
2794
2794
|
isLoading: false;
|
|
2795
|
-
isSuccess: true;
|
|
2795
|
+
isSuccess: true;
|
|
2796
2796
|
isError: false;
|
|
2797
2797
|
}) | ({
|
|
2798
2798
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2799
2799
|
} & {
|
|
2800
|
-
requestId: string;
|
|
2800
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2801
2801
|
data?: ImportDesignApiResponse | undefined;
|
|
2802
2802
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2803
2803
|
endpointName: string;
|
|
2804
2804
|
startedTimeStamp: number;
|
|
2805
2805
|
fulfilledTimeStamp?: number | undefined;
|
|
2806
2806
|
} & {
|
|
2807
|
-
data?: undefined;
|
|
2807
|
+
data?: undefined;
|
|
2808
2808
|
} & {
|
|
2809
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2809
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
2810
2814
|
isUninitialized: false;
|
|
2811
2815
|
isLoading: true;
|
|
2812
2816
|
isSuccess: false;
|
|
2813
|
-
isError: false;
|
|
2817
|
+
isError: false;
|
|
2814
2818
|
}) | ({
|
|
2815
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2819
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
2816
2820
|
} & Omit<{
|
|
2817
|
-
requestId: string;
|
|
2821
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2818
2822
|
data?: ImportDesignApiResponse | undefined;
|
|
2819
2823
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2820
2824
|
endpointName: string;
|
|
2821
2825
|
startedTimeStamp: number;
|
|
2822
2826
|
fulfilledTimeStamp?: number | undefined;
|
|
2823
2827
|
}, "error"> & Required<Pick<{
|
|
2824
|
-
requestId: string;
|
|
2828
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2825
2829
|
data?: ImportDesignApiResponse | undefined;
|
|
2826
2830
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2827
2831
|
endpointName: string;
|
|
@@ -2833,7 +2837,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2833
2837
|
isLoading: false;
|
|
2834
2838
|
isSuccess: false;
|
|
2835
2839
|
isError: true;
|
|
2836
|
-
})) => R) | undefined; /**
|
|
2840
|
+
})) => R) | undefined; /** Capabilities associated with the model */
|
|
2837
2841
|
fixedCacheKey?: string | undefined;
|
|
2838
2842
|
} | 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> & {
|
|
2839
2843
|
originalArgs?: ImportDesignApiArg | undefined;
|
|
@@ -2841,70 +2845,74 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
2841
2845
|
}];
|
|
2842
2846
|
declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
2843
2847
|
requestId?: undefined;
|
|
2844
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2848
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
2845
2849
|
data?: undefined;
|
|
2846
2850
|
error?: undefined;
|
|
2847
|
-
endpointName?: string | undefined;
|
|
2851
|
+
endpointName?: string | undefined;
|
|
2848
2852
|
startedTimeStamp?: undefined;
|
|
2849
2853
|
fulfilledTimeStamp?: undefined;
|
|
2850
2854
|
} & {
|
|
2851
2855
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2852
|
-
isUninitialized: true;
|
|
2853
|
-
isLoading: false;
|
|
2856
|
+
isUninitialized: true;
|
|
2857
|
+
isLoading: false; /** Description of the model. */
|
|
2854
2858
|
isSuccess: false;
|
|
2855
2859
|
isError: false;
|
|
2856
2860
|
}) | ({
|
|
2857
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2861
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2858
2862
|
} & Omit<{
|
|
2859
|
-
requestId: string;
|
|
2863
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2860
2864
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2861
2865
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2862
2866
|
endpointName: string;
|
|
2863
2867
|
startedTimeStamp: number;
|
|
2864
2868
|
fulfilledTimeStamp?: number | undefined;
|
|
2865
2869
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2866
|
-
requestId: string;
|
|
2870
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2867
2871
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2868
2872
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2869
2873
|
endpointName: string;
|
|
2870
2874
|
startedTimeStamp: number;
|
|
2871
2875
|
fulfilledTimeStamp?: number | undefined;
|
|
2872
2876
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
2873
|
-
error: undefined;
|
|
2877
|
+
error: undefined;
|
|
2874
2878
|
} & {
|
|
2875
2879
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2876
2880
|
isUninitialized: false;
|
|
2877
2881
|
isLoading: false;
|
|
2878
|
-
isSuccess: true;
|
|
2882
|
+
isSuccess: true;
|
|
2879
2883
|
isError: false;
|
|
2880
2884
|
}) | ({
|
|
2881
2885
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2882
2886
|
} & {
|
|
2883
|
-
requestId: string;
|
|
2887
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2884
2888
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2885
2889
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2886
2890
|
endpointName: string;
|
|
2887
2891
|
startedTimeStamp: number;
|
|
2888
2892
|
fulfilledTimeStamp?: number | undefined;
|
|
2889
2893
|
} & {
|
|
2890
|
-
data?: undefined;
|
|
2894
|
+
data?: undefined;
|
|
2891
2895
|
} & {
|
|
2892
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2896
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
2893
2901
|
isUninitialized: false;
|
|
2894
2902
|
isLoading: true;
|
|
2895
2903
|
isSuccess: false;
|
|
2896
|
-
isError: false;
|
|
2904
|
+
isError: false;
|
|
2897
2905
|
}) | ({
|
|
2898
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2906
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
2899
2907
|
} & Omit<{
|
|
2900
|
-
requestId: string;
|
|
2908
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2901
2909
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2902
2910
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2903
2911
|
endpointName: string;
|
|
2904
2912
|
startedTimeStamp: number;
|
|
2905
2913
|
fulfilledTimeStamp?: number | undefined;
|
|
2906
2914
|
}, "error"> & Required<Pick<{
|
|
2907
|
-
requestId: string;
|
|
2915
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2908
2916
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2909
2917
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2910
2918
|
endpointName: string;
|
|
@@ -2919,70 +2927,74 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
2919
2927
|
})>(options?: {
|
|
2920
2928
|
selectFromResult?: ((state: ({
|
|
2921
2929
|
requestId?: undefined;
|
|
2922
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2930
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
2923
2931
|
data?: undefined;
|
|
2924
2932
|
error?: undefined;
|
|
2925
|
-
endpointName?: string | undefined;
|
|
2933
|
+
endpointName?: string | undefined;
|
|
2926
2934
|
startedTimeStamp?: undefined;
|
|
2927
2935
|
fulfilledTimeStamp?: undefined;
|
|
2928
2936
|
} & {
|
|
2929
2937
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2930
|
-
isUninitialized: true;
|
|
2931
|
-
isLoading: false;
|
|
2938
|
+
isUninitialized: true;
|
|
2939
|
+
isLoading: false; /** Description of the model. */
|
|
2932
2940
|
isSuccess: false;
|
|
2933
2941
|
isError: false;
|
|
2934
2942
|
}) | ({
|
|
2935
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2943
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2936
2944
|
} & Omit<{
|
|
2937
|
-
requestId: string;
|
|
2945
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2938
2946
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2939
2947
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2940
2948
|
endpointName: string;
|
|
2941
2949
|
startedTimeStamp: number;
|
|
2942
2950
|
fulfilledTimeStamp?: number | undefined;
|
|
2943
2951
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2944
|
-
requestId: string;
|
|
2952
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2945
2953
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2946
2954
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2947
2955
|
endpointName: string;
|
|
2948
2956
|
startedTimeStamp: number;
|
|
2949
2957
|
fulfilledTimeStamp?: number | undefined;
|
|
2950
2958
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
2951
|
-
error: undefined;
|
|
2959
|
+
error: undefined;
|
|
2952
2960
|
} & {
|
|
2953
2961
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
2954
2962
|
isUninitialized: false;
|
|
2955
2963
|
isLoading: false;
|
|
2956
|
-
isSuccess: true;
|
|
2964
|
+
isSuccess: true;
|
|
2957
2965
|
isError: false;
|
|
2958
2966
|
}) | ({
|
|
2959
2967
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2960
2968
|
} & {
|
|
2961
|
-
requestId: string;
|
|
2969
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2962
2970
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2963
2971
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2964
2972
|
endpointName: string;
|
|
2965
2973
|
startedTimeStamp: number;
|
|
2966
2974
|
fulfilledTimeStamp?: number | undefined;
|
|
2967
2975
|
} & {
|
|
2968
|
-
data?: undefined;
|
|
2976
|
+
data?: undefined;
|
|
2969
2977
|
} & {
|
|
2970
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
2978
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
2971
2983
|
isUninitialized: false;
|
|
2972
2984
|
isLoading: true;
|
|
2973
2985
|
isSuccess: false;
|
|
2974
|
-
isError: false;
|
|
2986
|
+
isError: false;
|
|
2975
2987
|
}) | ({
|
|
2976
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
2988
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
2977
2989
|
} & Omit<{
|
|
2978
|
-
requestId: string;
|
|
2990
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2979
2991
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2980
2992
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2981
2993
|
endpointName: string;
|
|
2982
2994
|
startedTimeStamp: number;
|
|
2983
2995
|
fulfilledTimeStamp?: number | undefined;
|
|
2984
2996
|
}, "error"> & Required<Pick<{
|
|
2985
|
-
requestId: string;
|
|
2997
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
2986
2998
|
data?: RegisterMeshmodelsApiResponse | undefined;
|
|
2987
2999
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
2988
3000
|
endpointName: string;
|
|
@@ -2994,7 +3006,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
2994
3006
|
isLoading: false;
|
|
2995
3007
|
isSuccess: false;
|
|
2996
3008
|
isError: true;
|
|
2997
|
-
})) => R) | undefined; /**
|
|
3009
|
+
})) => R) | undefined; /** Capabilities associated with the model */
|
|
2998
3010
|
fixedCacheKey?: string | undefined;
|
|
2999
3011
|
} | 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> & {
|
|
3000
3012
|
originalArgs?: RegisterMeshmodelsApiArg | undefined;
|
|
@@ -3165,70 +3177,74 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
|
|
|
3165
3177
|
};
|
|
3166
3178
|
declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
3167
3179
|
requestId?: undefined;
|
|
3168
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3180
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
3169
3181
|
data?: undefined;
|
|
3170
3182
|
error?: undefined;
|
|
3171
|
-
endpointName?: string | undefined;
|
|
3183
|
+
endpointName?: string | undefined;
|
|
3172
3184
|
startedTimeStamp?: undefined;
|
|
3173
3185
|
fulfilledTimeStamp?: undefined;
|
|
3174
3186
|
} & {
|
|
3175
3187
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3176
|
-
isUninitialized: true;
|
|
3177
|
-
isLoading: false;
|
|
3188
|
+
isUninitialized: true;
|
|
3189
|
+
isLoading: false; /** Description of the model. */
|
|
3178
3190
|
isSuccess: false;
|
|
3179
3191
|
isError: false;
|
|
3180
3192
|
}) | ({
|
|
3181
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3193
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3182
3194
|
} & Omit<{
|
|
3183
|
-
requestId: string;
|
|
3195
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3184
3196
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3185
3197
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3186
3198
|
endpointName: string;
|
|
3187
3199
|
startedTimeStamp: number;
|
|
3188
3200
|
fulfilledTimeStamp?: number | undefined;
|
|
3189
3201
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3190
|
-
requestId: string;
|
|
3202
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3191
3203
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3192
3204
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3193
3205
|
endpointName: string;
|
|
3194
3206
|
startedTimeStamp: number;
|
|
3195
3207
|
fulfilledTimeStamp?: number | undefined;
|
|
3196
3208
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
3197
|
-
error: undefined;
|
|
3209
|
+
error: undefined;
|
|
3198
3210
|
} & {
|
|
3199
3211
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3200
3212
|
isUninitialized: false;
|
|
3201
3213
|
isLoading: false;
|
|
3202
|
-
isSuccess: true;
|
|
3214
|
+
isSuccess: true;
|
|
3203
3215
|
isError: false;
|
|
3204
3216
|
}) | ({
|
|
3205
3217
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3206
3218
|
} & {
|
|
3207
|
-
requestId: string;
|
|
3219
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3208
3220
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3209
3221
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3210
3222
|
endpointName: string;
|
|
3211
3223
|
startedTimeStamp: number;
|
|
3212
3224
|
fulfilledTimeStamp?: number | undefined;
|
|
3213
3225
|
} & {
|
|
3214
|
-
data?: undefined;
|
|
3226
|
+
data?: undefined;
|
|
3215
3227
|
} & {
|
|
3216
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3228
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
3217
3233
|
isUninitialized: false;
|
|
3218
3234
|
isLoading: true;
|
|
3219
3235
|
isSuccess: false;
|
|
3220
|
-
isError: false;
|
|
3236
|
+
isError: false;
|
|
3221
3237
|
}) | ({
|
|
3222
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3238
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
3223
3239
|
} & Omit<{
|
|
3224
|
-
requestId: string;
|
|
3240
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3225
3241
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3226
3242
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3227
3243
|
endpointName: string;
|
|
3228
3244
|
startedTimeStamp: number;
|
|
3229
3245
|
fulfilledTimeStamp?: number | undefined;
|
|
3230
3246
|
}, "error"> & Required<Pick<{
|
|
3231
|
-
requestId: string;
|
|
3247
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3232
3248
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3233
3249
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3234
3250
|
endpointName: string;
|
|
@@ -3243,70 +3259,74 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3243
3259
|
})>(options?: {
|
|
3244
3260
|
selectFromResult?: ((state: ({
|
|
3245
3261
|
requestId?: undefined;
|
|
3246
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3262
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
3247
3263
|
data?: undefined;
|
|
3248
3264
|
error?: undefined;
|
|
3249
|
-
endpointName?: string | undefined;
|
|
3265
|
+
endpointName?: string | undefined;
|
|
3250
3266
|
startedTimeStamp?: undefined;
|
|
3251
3267
|
fulfilledTimeStamp?: undefined;
|
|
3252
3268
|
} & {
|
|
3253
3269
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3254
|
-
isUninitialized: true;
|
|
3255
|
-
isLoading: false;
|
|
3270
|
+
isUninitialized: true;
|
|
3271
|
+
isLoading: false; /** Description of the model. */
|
|
3256
3272
|
isSuccess: false;
|
|
3257
3273
|
isError: false;
|
|
3258
3274
|
}) | ({
|
|
3259
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3275
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3260
3276
|
} & Omit<{
|
|
3261
|
-
requestId: string;
|
|
3277
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3262
3278
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3263
3279
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3264
3280
|
endpointName: string;
|
|
3265
3281
|
startedTimeStamp: number;
|
|
3266
3282
|
fulfilledTimeStamp?: number | undefined;
|
|
3267
3283
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3268
|
-
requestId: string;
|
|
3284
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3269
3285
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3270
3286
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3271
3287
|
endpointName: string;
|
|
3272
3288
|
startedTimeStamp: number;
|
|
3273
3289
|
fulfilledTimeStamp?: number | undefined;
|
|
3274
3290
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
3275
|
-
error: undefined;
|
|
3291
|
+
error: undefined;
|
|
3276
3292
|
} & {
|
|
3277
3293
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3278
3294
|
isUninitialized: false;
|
|
3279
3295
|
isLoading: false;
|
|
3280
|
-
isSuccess: true;
|
|
3296
|
+
isSuccess: true;
|
|
3281
3297
|
isError: false;
|
|
3282
3298
|
}) | ({
|
|
3283
3299
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3284
3300
|
} & {
|
|
3285
|
-
requestId: string;
|
|
3301
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3286
3302
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3287
3303
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3288
3304
|
endpointName: string;
|
|
3289
3305
|
startedTimeStamp: number;
|
|
3290
3306
|
fulfilledTimeStamp?: number | undefined;
|
|
3291
3307
|
} & {
|
|
3292
|
-
data?: undefined;
|
|
3308
|
+
data?: undefined;
|
|
3293
3309
|
} & {
|
|
3294
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3310
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
3295
3315
|
isUninitialized: false;
|
|
3296
3316
|
isLoading: true;
|
|
3297
3317
|
isSuccess: false;
|
|
3298
|
-
isError: false;
|
|
3318
|
+
isError: false;
|
|
3299
3319
|
}) | ({
|
|
3300
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3320
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
3301
3321
|
} & Omit<{
|
|
3302
|
-
requestId: string;
|
|
3322
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3303
3323
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3304
3324
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3305
3325
|
endpointName: string;
|
|
3306
3326
|
startedTimeStamp: number;
|
|
3307
3327
|
fulfilledTimeStamp?: number | undefined;
|
|
3308
3328
|
}, "error"> & Required<Pick<{
|
|
3309
|
-
requestId: string;
|
|
3329
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3310
3330
|
data?: PostApiWorkspacesApiResponse | undefined;
|
|
3311
3331
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3312
3332
|
endpointName: string;
|
|
@@ -3318,7 +3338,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
3318
3338
|
isLoading: false;
|
|
3319
3339
|
isSuccess: false;
|
|
3320
3340
|
isError: true;
|
|
3321
|
-
})) => R) | undefined; /**
|
|
3341
|
+
})) => R) | undefined; /** Capabilities associated with the model */
|
|
3322
3342
|
fixedCacheKey?: string | undefined;
|
|
3323
3343
|
} | 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> & {
|
|
3324
3344
|
originalArgs?: PostApiWorkspacesApiArg | undefined;
|
|
@@ -3489,70 +3509,74 @@ declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
|
3489
3509
|
};
|
|
3490
3510
|
declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
3491
3511
|
requestId?: undefined;
|
|
3492
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3512
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
3493
3513
|
data?: undefined;
|
|
3494
3514
|
error?: undefined;
|
|
3495
|
-
endpointName?: string | undefined;
|
|
3515
|
+
endpointName?: string | undefined;
|
|
3496
3516
|
startedTimeStamp?: undefined;
|
|
3497
3517
|
fulfilledTimeStamp?: undefined;
|
|
3498
3518
|
} & {
|
|
3499
3519
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3500
|
-
isUninitialized: true;
|
|
3501
|
-
isLoading: false;
|
|
3520
|
+
isUninitialized: true;
|
|
3521
|
+
isLoading: false; /** Description of the model. */
|
|
3502
3522
|
isSuccess: false;
|
|
3503
3523
|
isError: false;
|
|
3504
3524
|
}) | ({
|
|
3505
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3525
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3506
3526
|
} & Omit<{
|
|
3507
|
-
requestId: string;
|
|
3527
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3508
3528
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3509
3529
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3510
3530
|
endpointName: string;
|
|
3511
3531
|
startedTimeStamp: number;
|
|
3512
3532
|
fulfilledTimeStamp?: number | undefined;
|
|
3513
3533
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3514
|
-
requestId: string;
|
|
3534
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3515
3535
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3516
3536
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3517
3537
|
endpointName: string;
|
|
3518
3538
|
startedTimeStamp: number;
|
|
3519
3539
|
fulfilledTimeStamp?: number | undefined;
|
|
3520
3540
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
3521
|
-
error: undefined;
|
|
3541
|
+
error: undefined;
|
|
3522
3542
|
} & {
|
|
3523
3543
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3524
3544
|
isUninitialized: false;
|
|
3525
3545
|
isLoading: false;
|
|
3526
|
-
isSuccess: true;
|
|
3546
|
+
isSuccess: true;
|
|
3527
3547
|
isError: false;
|
|
3528
3548
|
}) | ({
|
|
3529
3549
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3530
3550
|
} & {
|
|
3531
|
-
requestId: string;
|
|
3551
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3532
3552
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3533
3553
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3534
3554
|
endpointName: string;
|
|
3535
3555
|
startedTimeStamp: number;
|
|
3536
3556
|
fulfilledTimeStamp?: number | undefined;
|
|
3537
3557
|
} & {
|
|
3538
|
-
data?: undefined;
|
|
3558
|
+
data?: undefined;
|
|
3539
3559
|
} & {
|
|
3540
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3560
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
3541
3565
|
isUninitialized: false;
|
|
3542
3566
|
isLoading: true;
|
|
3543
3567
|
isSuccess: false;
|
|
3544
|
-
isError: false;
|
|
3568
|
+
isError: false;
|
|
3545
3569
|
}) | ({
|
|
3546
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3570
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
3547
3571
|
} & Omit<{
|
|
3548
|
-
requestId: string;
|
|
3572
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3549
3573
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3550
3574
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3551
3575
|
endpointName: string;
|
|
3552
3576
|
startedTimeStamp: number;
|
|
3553
3577
|
fulfilledTimeStamp?: number | undefined;
|
|
3554
3578
|
}, "error"> & Required<Pick<{
|
|
3555
|
-
requestId: string;
|
|
3579
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3556
3580
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3557
3581
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3558
3582
|
endpointName: string;
|
|
@@ -3567,70 +3591,74 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3567
3591
|
})>(options?: {
|
|
3568
3592
|
selectFromResult?: ((state: ({
|
|
3569
3593
|
requestId?: undefined;
|
|
3570
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3594
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
3571
3595
|
data?: undefined;
|
|
3572
3596
|
error?: undefined;
|
|
3573
|
-
endpointName?: string | undefined;
|
|
3597
|
+
endpointName?: string | undefined;
|
|
3574
3598
|
startedTimeStamp?: undefined;
|
|
3575
3599
|
fulfilledTimeStamp?: undefined;
|
|
3576
3600
|
} & {
|
|
3577
3601
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3578
|
-
isUninitialized: true;
|
|
3579
|
-
isLoading: false;
|
|
3602
|
+
isUninitialized: true;
|
|
3603
|
+
isLoading: false; /** Description of the model. */
|
|
3580
3604
|
isSuccess: false;
|
|
3581
3605
|
isError: false;
|
|
3582
3606
|
}) | ({
|
|
3583
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3607
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3584
3608
|
} & Omit<{
|
|
3585
|
-
requestId: string;
|
|
3609
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3586
3610
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3587
3611
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3588
3612
|
endpointName: string;
|
|
3589
3613
|
startedTimeStamp: number;
|
|
3590
3614
|
fulfilledTimeStamp?: number | undefined;
|
|
3591
3615
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3592
|
-
requestId: string;
|
|
3616
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3593
3617
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3594
3618
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3595
3619
|
endpointName: string;
|
|
3596
3620
|
startedTimeStamp: number;
|
|
3597
3621
|
fulfilledTimeStamp?: number | undefined;
|
|
3598
3622
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
3599
|
-
error: undefined;
|
|
3623
|
+
error: undefined;
|
|
3600
3624
|
} & {
|
|
3601
3625
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3602
3626
|
isUninitialized: false;
|
|
3603
3627
|
isLoading: false;
|
|
3604
|
-
isSuccess: true;
|
|
3628
|
+
isSuccess: true;
|
|
3605
3629
|
isError: false;
|
|
3606
3630
|
}) | ({
|
|
3607
3631
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3608
3632
|
} & {
|
|
3609
|
-
requestId: string;
|
|
3633
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3610
3634
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3611
3635
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3612
3636
|
endpointName: string;
|
|
3613
3637
|
startedTimeStamp: number;
|
|
3614
3638
|
fulfilledTimeStamp?: number | undefined;
|
|
3615
3639
|
} & {
|
|
3616
|
-
data?: undefined;
|
|
3640
|
+
data?: undefined;
|
|
3617
3641
|
} & {
|
|
3618
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3642
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
3619
3647
|
isUninitialized: false;
|
|
3620
3648
|
isLoading: true;
|
|
3621
3649
|
isSuccess: false;
|
|
3622
|
-
isError: false;
|
|
3650
|
+
isError: false;
|
|
3623
3651
|
}) | ({
|
|
3624
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3652
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
3625
3653
|
} & Omit<{
|
|
3626
|
-
requestId: string;
|
|
3654
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3627
3655
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3628
3656
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3629
3657
|
endpointName: string;
|
|
3630
3658
|
startedTimeStamp: number;
|
|
3631
3659
|
fulfilledTimeStamp?: number | undefined;
|
|
3632
3660
|
}, "error"> & Required<Pick<{
|
|
3633
|
-
requestId: string;
|
|
3661
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3634
3662
|
data?: PutApiWorkspacesByIdApiResponse | undefined;
|
|
3635
3663
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3636
3664
|
endpointName: string;
|
|
@@ -3642,7 +3670,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3642
3670
|
isLoading: false;
|
|
3643
3671
|
isSuccess: false;
|
|
3644
3672
|
isError: true;
|
|
3645
|
-
})) => R) | undefined; /**
|
|
3673
|
+
})) => R) | undefined; /** Capabilities associated with the model */
|
|
3646
3674
|
fixedCacheKey?: string | undefined;
|
|
3647
3675
|
} | 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> & {
|
|
3648
3676
|
originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
|
|
@@ -3650,70 +3678,74 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3650
3678
|
}];
|
|
3651
3679
|
declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
3652
3680
|
requestId?: undefined;
|
|
3653
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3681
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
3654
3682
|
data?: undefined;
|
|
3655
3683
|
error?: undefined;
|
|
3656
|
-
endpointName?: string | undefined;
|
|
3684
|
+
endpointName?: string | undefined;
|
|
3657
3685
|
startedTimeStamp?: undefined;
|
|
3658
3686
|
fulfilledTimeStamp?: undefined;
|
|
3659
3687
|
} & {
|
|
3660
3688
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3661
|
-
isUninitialized: true;
|
|
3662
|
-
isLoading: false;
|
|
3689
|
+
isUninitialized: true;
|
|
3690
|
+
isLoading: false; /** Description of the model. */
|
|
3663
3691
|
isSuccess: false;
|
|
3664
3692
|
isError: false;
|
|
3665
3693
|
}) | ({
|
|
3666
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3694
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3667
3695
|
} & Omit<{
|
|
3668
|
-
requestId: string;
|
|
3696
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3669
3697
|
data?: unknown;
|
|
3670
3698
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3671
3699
|
endpointName: string;
|
|
3672
3700
|
startedTimeStamp: number;
|
|
3673
3701
|
fulfilledTimeStamp?: number | undefined;
|
|
3674
3702
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3675
|
-
requestId: string;
|
|
3703
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3676
3704
|
data?: unknown;
|
|
3677
3705
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3678
3706
|
endpointName: string;
|
|
3679
3707
|
startedTimeStamp: number;
|
|
3680
3708
|
fulfilledTimeStamp?: number | undefined;
|
|
3681
3709
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
3682
|
-
error: undefined;
|
|
3710
|
+
error: undefined;
|
|
3683
3711
|
} & {
|
|
3684
3712
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3685
3713
|
isUninitialized: false;
|
|
3686
3714
|
isLoading: false;
|
|
3687
|
-
isSuccess: true;
|
|
3715
|
+
isSuccess: true;
|
|
3688
3716
|
isError: false;
|
|
3689
3717
|
}) | ({
|
|
3690
3718
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3691
3719
|
} & {
|
|
3692
|
-
requestId: string;
|
|
3720
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3693
3721
|
data?: unknown;
|
|
3694
3722
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3695
3723
|
endpointName: string;
|
|
3696
3724
|
startedTimeStamp: number;
|
|
3697
3725
|
fulfilledTimeStamp?: number | undefined;
|
|
3698
3726
|
} & {
|
|
3699
|
-
data?: undefined;
|
|
3727
|
+
data?: undefined;
|
|
3700
3728
|
} & {
|
|
3701
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3729
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
3702
3734
|
isUninitialized: false;
|
|
3703
3735
|
isLoading: true;
|
|
3704
3736
|
isSuccess: false;
|
|
3705
|
-
isError: false;
|
|
3737
|
+
isError: false;
|
|
3706
3738
|
}) | ({
|
|
3707
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3739
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
3708
3740
|
} & Omit<{
|
|
3709
|
-
requestId: string;
|
|
3741
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3710
3742
|
data?: unknown;
|
|
3711
3743
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3712
3744
|
endpointName: string;
|
|
3713
3745
|
startedTimeStamp: number;
|
|
3714
3746
|
fulfilledTimeStamp?: number | undefined;
|
|
3715
3747
|
}, "error"> & Required<Pick<{
|
|
3716
|
-
requestId: string;
|
|
3748
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3717
3749
|
data?: unknown;
|
|
3718
3750
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3719
3751
|
endpointName: string;
|
|
@@ -3728,70 +3760,74 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3728
3760
|
})>(options?: {
|
|
3729
3761
|
selectFromResult?: ((state: ({
|
|
3730
3762
|
requestId?: undefined;
|
|
3731
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3763
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
3732
3764
|
data?: undefined;
|
|
3733
3765
|
error?: undefined;
|
|
3734
|
-
endpointName?: string | undefined;
|
|
3766
|
+
endpointName?: string | undefined;
|
|
3735
3767
|
startedTimeStamp?: undefined;
|
|
3736
3768
|
fulfilledTimeStamp?: undefined;
|
|
3737
3769
|
} & {
|
|
3738
3770
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3739
|
-
isUninitialized: true;
|
|
3740
|
-
isLoading: false;
|
|
3771
|
+
isUninitialized: true;
|
|
3772
|
+
isLoading: false; /** Description of the model. */
|
|
3741
3773
|
isSuccess: false;
|
|
3742
3774
|
isError: false;
|
|
3743
3775
|
}) | ({
|
|
3744
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3776
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3745
3777
|
} & Omit<{
|
|
3746
|
-
requestId: string;
|
|
3778
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3747
3779
|
data?: unknown;
|
|
3748
3780
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3749
3781
|
endpointName: string;
|
|
3750
3782
|
startedTimeStamp: number;
|
|
3751
3783
|
fulfilledTimeStamp?: number | undefined;
|
|
3752
3784
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3753
|
-
requestId: string;
|
|
3785
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3754
3786
|
data?: unknown;
|
|
3755
3787
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3756
3788
|
endpointName: string;
|
|
3757
3789
|
startedTimeStamp: number;
|
|
3758
3790
|
fulfilledTimeStamp?: number | undefined;
|
|
3759
3791
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
3760
|
-
error: undefined;
|
|
3792
|
+
error: undefined;
|
|
3761
3793
|
} & {
|
|
3762
3794
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3763
3795
|
isUninitialized: false;
|
|
3764
3796
|
isLoading: false;
|
|
3765
|
-
isSuccess: true;
|
|
3797
|
+
isSuccess: true;
|
|
3766
3798
|
isError: false;
|
|
3767
3799
|
}) | ({
|
|
3768
3800
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3769
3801
|
} & {
|
|
3770
|
-
requestId: string;
|
|
3802
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3771
3803
|
data?: unknown;
|
|
3772
3804
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3773
3805
|
endpointName: string;
|
|
3774
3806
|
startedTimeStamp: number;
|
|
3775
3807
|
fulfilledTimeStamp?: number | undefined;
|
|
3776
3808
|
} & {
|
|
3777
|
-
data?: undefined;
|
|
3809
|
+
data?: undefined;
|
|
3778
3810
|
} & {
|
|
3779
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3811
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
3780
3816
|
isUninitialized: false;
|
|
3781
3817
|
isLoading: true;
|
|
3782
3818
|
isSuccess: false;
|
|
3783
|
-
isError: false;
|
|
3819
|
+
isError: false;
|
|
3784
3820
|
}) | ({
|
|
3785
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3821
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
3786
3822
|
} & Omit<{
|
|
3787
|
-
requestId: string;
|
|
3823
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3788
3824
|
data?: unknown;
|
|
3789
3825
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3790
3826
|
endpointName: string;
|
|
3791
3827
|
startedTimeStamp: number;
|
|
3792
3828
|
fulfilledTimeStamp?: number | undefined;
|
|
3793
3829
|
}, "error"> & Required<Pick<{
|
|
3794
|
-
requestId: string;
|
|
3830
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3795
3831
|
data?: unknown;
|
|
3796
3832
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3797
3833
|
endpointName: string;
|
|
@@ -3803,7 +3839,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3803
3839
|
isLoading: false;
|
|
3804
3840
|
isSuccess: false;
|
|
3805
3841
|
isError: true;
|
|
3806
|
-
})) => R) | undefined; /**
|
|
3842
|
+
})) => R) | undefined; /** Capabilities associated with the model */
|
|
3807
3843
|
fixedCacheKey?: string | undefined;
|
|
3808
3844
|
} | 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> & {
|
|
3809
3845
|
originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
|
|
@@ -3811,70 +3847,74 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3811
3847
|
}];
|
|
3812
3848
|
declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
3813
3849
|
requestId?: undefined;
|
|
3814
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3850
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
3815
3851
|
data?: undefined;
|
|
3816
3852
|
error?: undefined;
|
|
3817
|
-
endpointName?: string | undefined;
|
|
3853
|
+
endpointName?: string | undefined;
|
|
3818
3854
|
startedTimeStamp?: undefined;
|
|
3819
3855
|
fulfilledTimeStamp?: undefined;
|
|
3820
3856
|
} & {
|
|
3821
3857
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3822
|
-
isUninitialized: true;
|
|
3823
|
-
isLoading: false;
|
|
3858
|
+
isUninitialized: true;
|
|
3859
|
+
isLoading: false; /** Description of the model. */
|
|
3824
3860
|
isSuccess: false;
|
|
3825
3861
|
isError: false;
|
|
3826
3862
|
}) | ({
|
|
3827
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3863
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3828
3864
|
} & Omit<{
|
|
3829
|
-
requestId: string;
|
|
3865
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3830
3866
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3831
3867
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3832
3868
|
endpointName: string;
|
|
3833
3869
|
startedTimeStamp: number;
|
|
3834
3870
|
fulfilledTimeStamp?: number | undefined;
|
|
3835
3871
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3836
|
-
requestId: string;
|
|
3872
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3837
3873
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3838
3874
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3839
3875
|
endpointName: string;
|
|
3840
3876
|
startedTimeStamp: number;
|
|
3841
3877
|
fulfilledTimeStamp?: number | undefined;
|
|
3842
3878
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
3843
|
-
error: undefined;
|
|
3879
|
+
error: undefined;
|
|
3844
3880
|
} & {
|
|
3845
3881
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3846
3882
|
isUninitialized: false;
|
|
3847
3883
|
isLoading: false;
|
|
3848
|
-
isSuccess: true;
|
|
3884
|
+
isSuccess: true;
|
|
3849
3885
|
isError: false;
|
|
3850
3886
|
}) | ({
|
|
3851
3887
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3852
3888
|
} & {
|
|
3853
|
-
requestId: string;
|
|
3889
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3854
3890
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3855
3891
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3856
3892
|
endpointName: string;
|
|
3857
3893
|
startedTimeStamp: number;
|
|
3858
3894
|
fulfilledTimeStamp?: number | undefined;
|
|
3859
3895
|
} & {
|
|
3860
|
-
data?: undefined;
|
|
3896
|
+
data?: undefined;
|
|
3861
3897
|
} & {
|
|
3862
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3898
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
3863
3903
|
isUninitialized: false;
|
|
3864
3904
|
isLoading: true;
|
|
3865
3905
|
isSuccess: false;
|
|
3866
|
-
isError: false;
|
|
3906
|
+
isError: false;
|
|
3867
3907
|
}) | ({
|
|
3868
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3908
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
3869
3909
|
} & Omit<{
|
|
3870
|
-
requestId: string;
|
|
3910
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3871
3911
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3872
3912
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3873
3913
|
endpointName: string;
|
|
3874
3914
|
startedTimeStamp: number;
|
|
3875
3915
|
fulfilledTimeStamp?: number | undefined;
|
|
3876
3916
|
}, "error"> & Required<Pick<{
|
|
3877
|
-
requestId: string;
|
|
3917
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3878
3918
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3879
3919
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3880
3920
|
endpointName: string;
|
|
@@ -3889,70 +3929,74 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3889
3929
|
})>(options?: {
|
|
3890
3930
|
selectFromResult?: ((state: ({
|
|
3891
3931
|
requestId?: undefined;
|
|
3892
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3932
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
3893
3933
|
data?: undefined;
|
|
3894
3934
|
error?: undefined;
|
|
3895
|
-
endpointName?: string | undefined;
|
|
3935
|
+
endpointName?: string | undefined;
|
|
3896
3936
|
startedTimeStamp?: undefined;
|
|
3897
3937
|
fulfilledTimeStamp?: undefined;
|
|
3898
3938
|
} & {
|
|
3899
3939
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3900
|
-
isUninitialized: true;
|
|
3901
|
-
isLoading: false;
|
|
3940
|
+
isUninitialized: true;
|
|
3941
|
+
isLoading: false; /** Description of the model. */
|
|
3902
3942
|
isSuccess: false;
|
|
3903
3943
|
isError: false;
|
|
3904
3944
|
}) | ({
|
|
3905
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3945
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3906
3946
|
} & Omit<{
|
|
3907
|
-
requestId: string;
|
|
3947
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3908
3948
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3909
3949
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3910
3950
|
endpointName: string;
|
|
3911
3951
|
startedTimeStamp: number;
|
|
3912
3952
|
fulfilledTimeStamp?: number | undefined;
|
|
3913
3953
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3914
|
-
requestId: string;
|
|
3954
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3915
3955
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3916
3956
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3917
3957
|
endpointName: string;
|
|
3918
3958
|
startedTimeStamp: number;
|
|
3919
3959
|
fulfilledTimeStamp?: number | undefined;
|
|
3920
3960
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
3921
|
-
error: undefined;
|
|
3961
|
+
error: undefined;
|
|
3922
3962
|
} & {
|
|
3923
3963
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
3924
3964
|
isUninitialized: false;
|
|
3925
3965
|
isLoading: false;
|
|
3926
|
-
isSuccess: true;
|
|
3966
|
+
isSuccess: true;
|
|
3927
3967
|
isError: false;
|
|
3928
3968
|
}) | ({
|
|
3929
3969
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3930
3970
|
} & {
|
|
3931
|
-
requestId: string;
|
|
3971
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3932
3972
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3933
3973
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3934
3974
|
endpointName: string;
|
|
3935
3975
|
startedTimeStamp: number;
|
|
3936
3976
|
fulfilledTimeStamp?: number | undefined;
|
|
3937
3977
|
} & {
|
|
3938
|
-
data?: undefined;
|
|
3978
|
+
data?: undefined;
|
|
3939
3979
|
} & {
|
|
3940
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
3980
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
3941
3985
|
isUninitialized: false;
|
|
3942
3986
|
isLoading: true;
|
|
3943
3987
|
isSuccess: false;
|
|
3944
|
-
isError: false;
|
|
3988
|
+
isError: false;
|
|
3945
3989
|
}) | ({
|
|
3946
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
3990
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
3947
3991
|
} & Omit<{
|
|
3948
|
-
requestId: string;
|
|
3992
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3949
3993
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3950
3994
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3951
3995
|
endpointName: string;
|
|
3952
3996
|
startedTimeStamp: number;
|
|
3953
3997
|
fulfilledTimeStamp?: number | undefined;
|
|
3954
3998
|
}, "error"> & Required<Pick<{
|
|
3955
|
-
requestId: string;
|
|
3999
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
3956
4000
|
data?: CreateEnvironmentApiResponse | undefined;
|
|
3957
4001
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
3958
4002
|
endpointName: string;
|
|
@@ -3964,7 +4008,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3964
4008
|
isLoading: false;
|
|
3965
4009
|
isSuccess: false;
|
|
3966
4010
|
isError: true;
|
|
3967
|
-
})) => R) | undefined; /**
|
|
4011
|
+
})) => R) | undefined; /** Capabilities associated with the model */
|
|
3968
4012
|
fixedCacheKey?: string | undefined;
|
|
3969
4013
|
} | 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> & {
|
|
3970
4014
|
originalArgs?: CreateEnvironmentApiArg | undefined;
|
|
@@ -4135,70 +4179,74 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
|
4135
4179
|
};
|
|
4136
4180
|
declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
4137
4181
|
requestId?: undefined;
|
|
4138
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4182
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
4139
4183
|
data?: undefined;
|
|
4140
4184
|
error?: undefined;
|
|
4141
|
-
endpointName?: string | undefined;
|
|
4185
|
+
endpointName?: string | undefined;
|
|
4142
4186
|
startedTimeStamp?: undefined;
|
|
4143
4187
|
fulfilledTimeStamp?: undefined;
|
|
4144
4188
|
} & {
|
|
4145
4189
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4146
|
-
isUninitialized: true;
|
|
4147
|
-
isLoading: false;
|
|
4190
|
+
isUninitialized: true;
|
|
4191
|
+
isLoading: false; /** Description of the model. */
|
|
4148
4192
|
isSuccess: false;
|
|
4149
4193
|
isError: false;
|
|
4150
4194
|
}) | ({
|
|
4151
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4195
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4152
4196
|
} & Omit<{
|
|
4153
|
-
requestId: string;
|
|
4197
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4154
4198
|
data?: PostEvaluateApiResponse | undefined;
|
|
4155
4199
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4156
4200
|
endpointName: string;
|
|
4157
4201
|
startedTimeStamp: number;
|
|
4158
4202
|
fulfilledTimeStamp?: number | undefined;
|
|
4159
4203
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4160
|
-
requestId: string;
|
|
4204
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4161
4205
|
data?: PostEvaluateApiResponse | undefined;
|
|
4162
4206
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4163
4207
|
endpointName: string;
|
|
4164
4208
|
startedTimeStamp: number;
|
|
4165
4209
|
fulfilledTimeStamp?: number | undefined;
|
|
4166
4210
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
4167
|
-
error: undefined;
|
|
4211
|
+
error: undefined;
|
|
4168
4212
|
} & {
|
|
4169
4213
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4170
4214
|
isUninitialized: false;
|
|
4171
4215
|
isLoading: false;
|
|
4172
|
-
isSuccess: true;
|
|
4216
|
+
isSuccess: true;
|
|
4173
4217
|
isError: false;
|
|
4174
4218
|
}) | ({
|
|
4175
4219
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4176
4220
|
} & {
|
|
4177
|
-
requestId: string;
|
|
4221
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4178
4222
|
data?: PostEvaluateApiResponse | undefined;
|
|
4179
4223
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4180
4224
|
endpointName: string;
|
|
4181
4225
|
startedTimeStamp: number;
|
|
4182
4226
|
fulfilledTimeStamp?: number | undefined;
|
|
4183
4227
|
} & {
|
|
4184
|
-
data?: undefined;
|
|
4228
|
+
data?: undefined;
|
|
4185
4229
|
} & {
|
|
4186
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4230
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
4187
4235
|
isUninitialized: false;
|
|
4188
4236
|
isLoading: true;
|
|
4189
4237
|
isSuccess: false;
|
|
4190
|
-
isError: false;
|
|
4238
|
+
isError: false;
|
|
4191
4239
|
}) | ({
|
|
4192
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4240
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
4193
4241
|
} & Omit<{
|
|
4194
|
-
requestId: string;
|
|
4242
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4195
4243
|
data?: PostEvaluateApiResponse | undefined;
|
|
4196
4244
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4197
4245
|
endpointName: string;
|
|
4198
4246
|
startedTimeStamp: number;
|
|
4199
4247
|
fulfilledTimeStamp?: number | undefined;
|
|
4200
4248
|
}, "error"> & Required<Pick<{
|
|
4201
|
-
requestId: string;
|
|
4249
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4202
4250
|
data?: PostEvaluateApiResponse | undefined;
|
|
4203
4251
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4204
4252
|
endpointName: string;
|
|
@@ -4213,70 +4261,74 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
|
4213
4261
|
})>(options?: {
|
|
4214
4262
|
selectFromResult?: ((state: ({
|
|
4215
4263
|
requestId?: undefined;
|
|
4216
|
-
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4264
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized; /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
|
|
4217
4265
|
data?: undefined;
|
|
4218
4266
|
error?: undefined;
|
|
4219
|
-
endpointName?: string | undefined;
|
|
4267
|
+
endpointName?: string | undefined;
|
|
4220
4268
|
startedTimeStamp?: undefined;
|
|
4221
4269
|
fulfilledTimeStamp?: undefined;
|
|
4222
4270
|
} & {
|
|
4223
4271
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4224
|
-
isUninitialized: true;
|
|
4225
|
-
isLoading: false;
|
|
4272
|
+
isUninitialized: true;
|
|
4273
|
+
isLoading: false; /** Description of the model. */
|
|
4226
4274
|
isSuccess: false;
|
|
4227
4275
|
isError: false;
|
|
4228
4276
|
}) | ({
|
|
4229
|
-
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4277
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4230
4278
|
} & Omit<{
|
|
4231
|
-
requestId: string;
|
|
4279
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4232
4280
|
data?: PostEvaluateApiResponse | undefined;
|
|
4233
4281
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4234
4282
|
endpointName: string;
|
|
4235
4283
|
startedTimeStamp: number;
|
|
4236
4284
|
fulfilledTimeStamp?: number | undefined;
|
|
4237
4285
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4238
|
-
requestId: string;
|
|
4286
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4239
4287
|
data?: PostEvaluateApiResponse | undefined;
|
|
4240
4288
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4241
4289
|
endpointName: string;
|
|
4242
4290
|
startedTimeStamp: number;
|
|
4243
4291
|
fulfilledTimeStamp?: number | undefined;
|
|
4244
4292
|
}, "data" | "fulfilledTimeStamp">> & {
|
|
4245
|
-
error: undefined;
|
|
4293
|
+
error: undefined;
|
|
4246
4294
|
} & {
|
|
4247
4295
|
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4248
4296
|
isUninitialized: false;
|
|
4249
4297
|
isLoading: false;
|
|
4250
|
-
isSuccess: true;
|
|
4298
|
+
isSuccess: true;
|
|
4251
4299
|
isError: false;
|
|
4252
4300
|
}) | ({
|
|
4253
4301
|
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4254
4302
|
} & {
|
|
4255
|
-
requestId: string;
|
|
4303
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4256
4304
|
data?: PostEvaluateApiResponse | undefined;
|
|
4257
4305
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4258
4306
|
endpointName: string;
|
|
4259
4307
|
startedTimeStamp: number;
|
|
4260
4308
|
fulfilledTimeStamp?: number | undefined;
|
|
4261
4309
|
} & {
|
|
4262
|
-
data?: undefined;
|
|
4310
|
+
data?: undefined;
|
|
4263
4311
|
} & {
|
|
4264
|
-
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4312
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending; /** Status of model, including:
|
|
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. */
|
|
4265
4317
|
isUninitialized: false;
|
|
4266
4318
|
isLoading: true;
|
|
4267
4319
|
isSuccess: false;
|
|
4268
|
-
isError: false;
|
|
4320
|
+
isError: false;
|
|
4269
4321
|
}) | ({
|
|
4270
|
-
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4322
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected; /** Version of the model as defined by the registrant. */
|
|
4271
4323
|
} & Omit<{
|
|
4272
|
-
requestId: string;
|
|
4324
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4273
4325
|
data?: PostEvaluateApiResponse | undefined;
|
|
4274
4326
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4275
4327
|
endpointName: string;
|
|
4276
4328
|
startedTimeStamp: number;
|
|
4277
4329
|
fulfilledTimeStamp?: number | undefined;
|
|
4278
4330
|
}, "error"> & Required<Pick<{
|
|
4279
|
-
requestId: string;
|
|
4331
|
+
requestId: string; /** Secondary color associated with the model. */
|
|
4280
4332
|
data?: PostEvaluateApiResponse | undefined;
|
|
4281
4333
|
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
|
|
4282
4334
|
endpointName: string;
|
|
@@ -4288,7 +4340,7 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
|
|
|
4288
4340
|
isLoading: false;
|
|
4289
4341
|
isSuccess: false;
|
|
4290
4342
|
isError: true;
|
|
4291
|
-
})) => R) | undefined; /**
|
|
4343
|
+
})) => R) | undefined; /** Capabilities associated with the model */
|
|
4292
4344
|
fixedCacheKey?: string | undefined;
|
|
4293
4345
|
} | 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> & {
|
|
4294
4346
|
originalArgs?: PostEvaluateApiArg | undefined;
|