@meshery/schemas 0.8.93 → 0.8.106

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.
@@ -377,6 +377,10 @@ type PostEvaluateApiResponse = {
377
377
  componentsCount: number;
378
378
  /** Number of relationships associated with the model. */
379
379
  relationshipsCount: number;
380
+ /** Timestamp when the resource was created. */
381
+ created_at?: string;
382
+ /** Timestamp when the resource was updated. */
383
+ updated_at?: string;
380
384
  };
381
385
  /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
382
386
  modelReference: {
@@ -595,6 +599,10 @@ type PostEvaluateApiResponse = {
595
599
  /** JSON schema of the object as defined by the registrant. */
596
600
  schema: string;
597
601
  };
602
+ /** Timestamp when the resource was created. */
603
+ created_at?: string;
604
+ /** Timestamp when the resource was updated. */
605
+ updated_at?: string;
598
606
  }[];
599
607
  /** Design-level preferences */
600
608
  preferences?: {
@@ -1038,6 +1046,10 @@ type PostEvaluateApiResponse = {
1038
1046
  }[];
1039
1047
  };
1040
1048
  }[];
1049
+ /** Timestamp when the resource was created. */
1050
+ created_at?: string;
1051
+ /** Timestamp when the resource was updated. */
1052
+ updated_at?: string;
1041
1053
  }[];
1042
1054
  };
1043
1055
  /** Hash of the input parameters and configuration used for this evaluation. Useful for identifying duplicate evaluations or caching results. */
@@ -1222,6 +1234,10 @@ type PostEvaluateApiArg = {
1222
1234
  componentsCount: number;
1223
1235
  /** Number of relationships associated with the model. */
1224
1236
  relationshipsCount: number;
1237
+ /** Timestamp when the resource was created. */
1238
+ created_at?: string;
1239
+ /** Timestamp when the resource was updated. */
1240
+ updated_at?: string;
1225
1241
  };
1226
1242
  /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
1227
1243
  modelReference: {
@@ -1440,6 +1456,10 @@ type PostEvaluateApiArg = {
1440
1456
  /** JSON schema of the object as defined by the registrant. */
1441
1457
  schema: string;
1442
1458
  };
1459
+ /** Timestamp when the resource was created. */
1460
+ created_at?: string;
1461
+ /** Timestamp when the resource was updated. */
1462
+ updated_at?: string;
1443
1463
  }[];
1444
1464
  /** Design-level preferences */
1445
1465
  preferences?: {
@@ -1883,6 +1903,10 @@ type PostEvaluateApiArg = {
1883
1903
  }[];
1884
1904
  };
1885
1905
  }[];
1906
+ /** Timestamp when the resource was created. */
1907
+ created_at?: string;
1908
+ /** Timestamp when the resource was updated. */
1909
+ updated_at?: string;
1886
1910
  }[];
1887
1911
  };
1888
1912
  options?: {
@@ -1900,6 +1924,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1900
1924
  error?: undefined;
1901
1925
  endpointName?: string | undefined;
1902
1926
  startedTimeStamp?: undefined;
1927
+ /** JSON ref to value from where patch should be applied. */
1903
1928
  fulfilledTimeStamp?: undefined;
1904
1929
  } & {
1905
1930
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -1910,32 +1935,31 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1910
1935
  }) | ({
1911
1936
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
1912
1937
  } & Omit<{
1913
- requestId: string; /** JSON ref to value from where patch should be applied. */
1938
+ requestId: string;
1914
1939
  data?: ImportDesignApiResponse | undefined;
1915
1940
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
1916
1941
  endpointName: string;
1917
1942
  startedTimeStamp: number;
1918
1943
  fulfilledTimeStamp?: number | undefined;
1919
1944
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
1920
- requestId: string; /** JSON ref to value from where patch should be applied. */
1945
+ requestId: string;
1921
1946
  data?: ImportDesignApiResponse | undefined;
1922
1947
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
1923
1948
  endpointName: string;
1924
1949
  startedTimeStamp: number;
1925
1950
  fulfilledTimeStamp?: number | undefined;
1926
1951
  }, "data" | "fulfilledTimeStamp">> & {
1927
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
1928
1952
  error: undefined;
1929
1953
  } & {
1930
1954
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
1931
1955
  isUninitialized: false;
1932
1956
  isLoading: false;
1933
1957
  isSuccess: true;
1934
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
1958
+ isError: false;
1935
1959
  }) | ({
1936
1960
  status: _reduxjs_toolkit_query.QueryStatus.pending;
1937
1961
  } & {
1938
- requestId: string; /** JSON ref to value from where patch should be applied. */
1962
+ requestId: string;
1939
1963
  data?: ImportDesignApiResponse | undefined;
1940
1964
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
1941
1965
  endpointName: string;
@@ -1945,21 +1969,21 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1945
1969
  data?: undefined;
1946
1970
  } & {
1947
1971
  status: _reduxjs_toolkit_query.QueryStatus.pending;
1948
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
1972
+ isUninitialized: false;
1949
1973
  isLoading: true;
1950
1974
  isSuccess: false;
1951
1975
  isError: false;
1952
1976
  }) | ({
1953
1977
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
1954
1978
  } & Omit<{
1955
- requestId: string; /** JSON ref to value from where patch should be applied. */
1979
+ requestId: string;
1956
1980
  data?: ImportDesignApiResponse | undefined;
1957
1981
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
1958
1982
  endpointName: string;
1959
1983
  startedTimeStamp: number;
1960
1984
  fulfilledTimeStamp?: number | undefined;
1961
1985
  }, "error"> & Required<Pick<{
1962
- requestId: string; /** JSON ref to value from where patch should be applied. */
1986
+ requestId: string;
1963
1987
  data?: ImportDesignApiResponse | undefined;
1964
1988
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
1965
1989
  endpointName: string;
@@ -1979,6 +2003,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1979
2003
  error?: undefined;
1980
2004
  endpointName?: string | undefined;
1981
2005
  startedTimeStamp?: undefined;
2006
+ /** JSON ref to value from where patch should be applied. */
1982
2007
  fulfilledTimeStamp?: undefined;
1983
2008
  } & {
1984
2009
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -1989,32 +2014,31 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1989
2014
  }) | ({
1990
2015
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
1991
2016
  } & Omit<{
1992
- requestId: string; /** JSON ref to value from where patch should be applied. */
2017
+ requestId: string;
1993
2018
  data?: ImportDesignApiResponse | undefined;
1994
2019
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
1995
2020
  endpointName: string;
1996
2021
  startedTimeStamp: number;
1997
2022
  fulfilledTimeStamp?: number | undefined;
1998
2023
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
1999
- requestId: string; /** JSON ref to value from where patch should be applied. */
2024
+ requestId: string;
2000
2025
  data?: ImportDesignApiResponse | undefined;
2001
2026
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2002
2027
  endpointName: string;
2003
2028
  startedTimeStamp: number;
2004
2029
  fulfilledTimeStamp?: number | undefined;
2005
2030
  }, "data" | "fulfilledTimeStamp">> & {
2006
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2007
2031
  error: undefined;
2008
2032
  } & {
2009
2033
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2010
2034
  isUninitialized: false;
2011
2035
  isLoading: false;
2012
2036
  isSuccess: true;
2013
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
2037
+ isError: false;
2014
2038
  }) | ({
2015
2039
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2016
2040
  } & {
2017
- requestId: string; /** JSON ref to value from where patch should be applied. */
2041
+ requestId: string;
2018
2042
  data?: ImportDesignApiResponse | undefined;
2019
2043
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2020
2044
  endpointName: string;
@@ -2024,21 +2048,21 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
2024
2048
  data?: undefined;
2025
2049
  } & {
2026
2050
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2027
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2051
+ isUninitialized: false;
2028
2052
  isLoading: true;
2029
2053
  isSuccess: false;
2030
2054
  isError: false;
2031
2055
  }) | ({
2032
2056
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2033
2057
  } & Omit<{
2034
- requestId: string; /** JSON ref to value from where patch should be applied. */
2058
+ requestId: string;
2035
2059
  data?: ImportDesignApiResponse | undefined;
2036
2060
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2037
2061
  endpointName: string;
2038
2062
  startedTimeStamp: number;
2039
2063
  fulfilledTimeStamp?: number | undefined;
2040
2064
  }, "error"> & Required<Pick<{
2041
- requestId: string; /** JSON ref to value from where patch should be applied. */
2065
+ requestId: string;
2042
2066
  data?: ImportDesignApiResponse | undefined;
2043
2067
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2044
2068
  endpointName: string;
@@ -2053,7 +2077,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
2053
2077
  })) => R) | undefined;
2054
2078
  fixedCacheKey?: string | undefined;
2055
2079
  } | 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>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", ImportDesignApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2056
- originalArgs?: ImportDesignApiArg | undefined;
2080
+ originalArgs?: ImportDesignApiArg | undefined; /** Version of the model as defined by the registrant. */
2057
2081
  reset: () => void;
2058
2082
  }];
2059
2083
  declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
@@ -2063,6 +2087,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2063
2087
  error?: undefined;
2064
2088
  endpointName?: string | undefined;
2065
2089
  startedTimeStamp?: undefined;
2090
+ /** JSON ref to value from where patch should be applied. */
2066
2091
  fulfilledTimeStamp?: undefined;
2067
2092
  } & {
2068
2093
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2073,32 +2098,31 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2073
2098
  }) | ({
2074
2099
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2075
2100
  } & Omit<{
2076
- requestId: string; /** JSON ref to value from where patch should be applied. */
2101
+ requestId: string;
2077
2102
  data?: RegisterMeshmodelsApiResponse | undefined;
2078
2103
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2079
2104
  endpointName: string;
2080
2105
  startedTimeStamp: number;
2081
2106
  fulfilledTimeStamp?: number | undefined;
2082
2107
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2083
- requestId: string; /** JSON ref to value from where patch should be applied. */
2108
+ requestId: string;
2084
2109
  data?: RegisterMeshmodelsApiResponse | undefined;
2085
2110
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2086
2111
  endpointName: string;
2087
2112
  startedTimeStamp: number;
2088
2113
  fulfilledTimeStamp?: number | undefined;
2089
2114
  }, "data" | "fulfilledTimeStamp">> & {
2090
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2091
2115
  error: undefined;
2092
2116
  } & {
2093
2117
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2094
2118
  isUninitialized: false;
2095
2119
  isLoading: false;
2096
2120
  isSuccess: true;
2097
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
2121
+ isError: false;
2098
2122
  }) | ({
2099
2123
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2100
2124
  } & {
2101
- requestId: string; /** JSON ref to value from where patch should be applied. */
2125
+ requestId: string;
2102
2126
  data?: RegisterMeshmodelsApiResponse | undefined;
2103
2127
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2104
2128
  endpointName: string;
@@ -2108,21 +2132,21 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2108
2132
  data?: undefined;
2109
2133
  } & {
2110
2134
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2111
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2135
+ isUninitialized: false;
2112
2136
  isLoading: true;
2113
2137
  isSuccess: false;
2114
2138
  isError: false;
2115
2139
  }) | ({
2116
2140
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2117
2141
  } & Omit<{
2118
- requestId: string; /** JSON ref to value from where patch should be applied. */
2142
+ requestId: string;
2119
2143
  data?: RegisterMeshmodelsApiResponse | undefined;
2120
2144
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2121
2145
  endpointName: string;
2122
2146
  startedTimeStamp: number;
2123
2147
  fulfilledTimeStamp?: number | undefined;
2124
2148
  }, "error"> & Required<Pick<{
2125
- requestId: string; /** JSON ref to value from where patch should be applied. */
2149
+ requestId: string;
2126
2150
  data?: RegisterMeshmodelsApiResponse | undefined;
2127
2151
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2128
2152
  endpointName: string;
@@ -2142,6 +2166,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2142
2166
  error?: undefined;
2143
2167
  endpointName?: string | undefined;
2144
2168
  startedTimeStamp?: undefined;
2169
+ /** JSON ref to value from where patch should be applied. */
2145
2170
  fulfilledTimeStamp?: undefined;
2146
2171
  } & {
2147
2172
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2152,32 +2177,31 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2152
2177
  }) | ({
2153
2178
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2154
2179
  } & Omit<{
2155
- requestId: string; /** JSON ref to value from where patch should be applied. */
2180
+ requestId: string;
2156
2181
  data?: RegisterMeshmodelsApiResponse | undefined;
2157
2182
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2158
2183
  endpointName: string;
2159
2184
  startedTimeStamp: number;
2160
2185
  fulfilledTimeStamp?: number | undefined;
2161
2186
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2162
- requestId: string; /** JSON ref to value from where patch should be applied. */
2187
+ requestId: string;
2163
2188
  data?: RegisterMeshmodelsApiResponse | undefined;
2164
2189
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2165
2190
  endpointName: string;
2166
2191
  startedTimeStamp: number;
2167
2192
  fulfilledTimeStamp?: number | undefined;
2168
2193
  }, "data" | "fulfilledTimeStamp">> & {
2169
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2170
2194
  error: undefined;
2171
2195
  } & {
2172
2196
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2173
2197
  isUninitialized: false;
2174
2198
  isLoading: false;
2175
2199
  isSuccess: true;
2176
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
2200
+ isError: false;
2177
2201
  }) | ({
2178
2202
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2179
2203
  } & {
2180
- requestId: string; /** JSON ref to value from where patch should be applied. */
2204
+ requestId: string;
2181
2205
  data?: RegisterMeshmodelsApiResponse | undefined;
2182
2206
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2183
2207
  endpointName: string;
@@ -2187,21 +2211,21 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2187
2211
  data?: undefined;
2188
2212
  } & {
2189
2213
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2190
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2214
+ isUninitialized: false;
2191
2215
  isLoading: true;
2192
2216
  isSuccess: false;
2193
2217
  isError: false;
2194
2218
  }) | ({
2195
2219
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2196
2220
  } & Omit<{
2197
- requestId: string; /** JSON ref to value from where patch should be applied. */
2221
+ requestId: string;
2198
2222
  data?: RegisterMeshmodelsApiResponse | undefined;
2199
2223
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2200
2224
  endpointName: string;
2201
2225
  startedTimeStamp: number;
2202
2226
  fulfilledTimeStamp?: number | undefined;
2203
2227
  }, "error"> & Required<Pick<{
2204
- requestId: string; /** JSON ref to value from where patch should be applied. */
2228
+ requestId: string;
2205
2229
  data?: RegisterMeshmodelsApiResponse | undefined;
2206
2230
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2207
2231
  endpointName: string;
@@ -2216,7 +2240,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2216
2240
  })) => R) | undefined;
2217
2241
  fixedCacheKey?: string | undefined;
2218
2242
  } | 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>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", RegisterMeshmodelsApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2219
- originalArgs?: RegisterMeshmodelsApiArg | undefined;
2243
+ originalArgs?: RegisterMeshmodelsApiArg | undefined; /** Version of the model as defined by the registrant. */
2220
2244
  reset: () => void;
2221
2245
  }];
2222
2246
  declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
@@ -2389,6 +2413,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2389
2413
  error?: undefined;
2390
2414
  endpointName?: string | undefined;
2391
2415
  startedTimeStamp?: undefined;
2416
+ /** JSON ref to value from where patch should be applied. */
2392
2417
  fulfilledTimeStamp?: undefined;
2393
2418
  } & {
2394
2419
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2399,32 +2424,31 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2399
2424
  }) | ({
2400
2425
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2401
2426
  } & Omit<{
2402
- requestId: string; /** JSON ref to value from where patch should be applied. */
2427
+ requestId: string;
2403
2428
  data?: PostApiWorkspacesApiResponse | undefined;
2404
2429
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2405
2430
  endpointName: string;
2406
2431
  startedTimeStamp: number;
2407
2432
  fulfilledTimeStamp?: number | undefined;
2408
2433
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2409
- requestId: string; /** JSON ref to value from where patch should be applied. */
2434
+ requestId: string;
2410
2435
  data?: PostApiWorkspacesApiResponse | undefined;
2411
2436
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2412
2437
  endpointName: string;
2413
2438
  startedTimeStamp: number;
2414
2439
  fulfilledTimeStamp?: number | undefined;
2415
2440
  }, "data" | "fulfilledTimeStamp">> & {
2416
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2417
2441
  error: undefined;
2418
2442
  } & {
2419
2443
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2420
2444
  isUninitialized: false;
2421
2445
  isLoading: false;
2422
2446
  isSuccess: true;
2423
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
2447
+ isError: false;
2424
2448
  }) | ({
2425
2449
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2426
2450
  } & {
2427
- requestId: string; /** JSON ref to value from where patch should be applied. */
2451
+ requestId: string;
2428
2452
  data?: PostApiWorkspacesApiResponse | undefined;
2429
2453
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2430
2454
  endpointName: string;
@@ -2434,21 +2458,21 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2434
2458
  data?: undefined;
2435
2459
  } & {
2436
2460
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2437
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2461
+ isUninitialized: false;
2438
2462
  isLoading: true;
2439
2463
  isSuccess: false;
2440
2464
  isError: false;
2441
2465
  }) | ({
2442
2466
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2443
2467
  } & Omit<{
2444
- requestId: string; /** JSON ref to value from where patch should be applied. */
2468
+ requestId: string;
2445
2469
  data?: PostApiWorkspacesApiResponse | undefined;
2446
2470
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2447
2471
  endpointName: string;
2448
2472
  startedTimeStamp: number;
2449
2473
  fulfilledTimeStamp?: number | undefined;
2450
2474
  }, "error"> & Required<Pick<{
2451
- requestId: string; /** JSON ref to value from where patch should be applied. */
2475
+ requestId: string;
2452
2476
  data?: PostApiWorkspacesApiResponse | undefined;
2453
2477
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2454
2478
  endpointName: string;
@@ -2468,6 +2492,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2468
2492
  error?: undefined;
2469
2493
  endpointName?: string | undefined;
2470
2494
  startedTimeStamp?: undefined;
2495
+ /** JSON ref to value from where patch should be applied. */
2471
2496
  fulfilledTimeStamp?: undefined;
2472
2497
  } & {
2473
2498
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2478,32 +2503,31 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2478
2503
  }) | ({
2479
2504
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2480
2505
  } & Omit<{
2481
- requestId: string; /** JSON ref to value from where patch should be applied. */
2506
+ requestId: string;
2482
2507
  data?: PostApiWorkspacesApiResponse | undefined;
2483
2508
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2484
2509
  endpointName: string;
2485
2510
  startedTimeStamp: number;
2486
2511
  fulfilledTimeStamp?: number | undefined;
2487
2512
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2488
- requestId: string; /** JSON ref to value from where patch should be applied. */
2513
+ requestId: string;
2489
2514
  data?: PostApiWorkspacesApiResponse | undefined;
2490
2515
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2491
2516
  endpointName: string;
2492
2517
  startedTimeStamp: number;
2493
2518
  fulfilledTimeStamp?: number | undefined;
2494
2519
  }, "data" | "fulfilledTimeStamp">> & {
2495
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2496
2520
  error: undefined;
2497
2521
  } & {
2498
2522
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2499
2523
  isUninitialized: false;
2500
2524
  isLoading: false;
2501
2525
  isSuccess: true;
2502
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
2526
+ isError: false;
2503
2527
  }) | ({
2504
2528
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2505
2529
  } & {
2506
- requestId: string; /** JSON ref to value from where patch should be applied. */
2530
+ requestId: string;
2507
2531
  data?: PostApiWorkspacesApiResponse | undefined;
2508
2532
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2509
2533
  endpointName: string;
@@ -2513,21 +2537,21 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2513
2537
  data?: undefined;
2514
2538
  } & {
2515
2539
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2516
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2540
+ isUninitialized: false;
2517
2541
  isLoading: true;
2518
2542
  isSuccess: false;
2519
2543
  isError: false;
2520
2544
  }) | ({
2521
2545
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2522
2546
  } & Omit<{
2523
- requestId: string; /** JSON ref to value from where patch should be applied. */
2547
+ requestId: string;
2524
2548
  data?: PostApiWorkspacesApiResponse | undefined;
2525
2549
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2526
2550
  endpointName: string;
2527
2551
  startedTimeStamp: number;
2528
2552
  fulfilledTimeStamp?: number | undefined;
2529
2553
  }, "error"> & Required<Pick<{
2530
- requestId: string; /** JSON ref to value from where patch should be applied. */
2554
+ requestId: string;
2531
2555
  data?: PostApiWorkspacesApiResponse | undefined;
2532
2556
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2533
2557
  endpointName: string;
@@ -2542,7 +2566,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2542
2566
  })) => R) | undefined;
2543
2567
  fixedCacheKey?: string | undefined;
2544
2568
  } | 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>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", PostApiWorkspacesApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2545
- originalArgs?: PostApiWorkspacesApiArg | undefined;
2569
+ originalArgs?: PostApiWorkspacesApiArg | undefined; /** Version of the model as defined by the registrant. */
2546
2570
  reset: () => void;
2547
2571
  }];
2548
2572
  declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
@@ -2715,6 +2739,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
2715
2739
  error?: undefined;
2716
2740
  endpointName?: string | undefined;
2717
2741
  startedTimeStamp?: undefined;
2742
+ /** JSON ref to value from where patch should be applied. */
2718
2743
  fulfilledTimeStamp?: undefined;
2719
2744
  } & {
2720
2745
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2725,32 +2750,31 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
2725
2750
  }) | ({
2726
2751
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2727
2752
  } & Omit<{
2728
- requestId: string; /** JSON ref to value from where patch should be applied. */
2753
+ requestId: string;
2729
2754
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2730
2755
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2731
2756
  endpointName: string;
2732
2757
  startedTimeStamp: number;
2733
2758
  fulfilledTimeStamp?: number | undefined;
2734
2759
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2735
- requestId: string; /** JSON ref to value from where patch should be applied. */
2760
+ requestId: string;
2736
2761
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2737
2762
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2738
2763
  endpointName: string;
2739
2764
  startedTimeStamp: number;
2740
2765
  fulfilledTimeStamp?: number | undefined;
2741
2766
  }, "data" | "fulfilledTimeStamp">> & {
2742
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2743
2767
  error: undefined;
2744
2768
  } & {
2745
2769
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2746
2770
  isUninitialized: false;
2747
2771
  isLoading: false;
2748
2772
  isSuccess: true;
2749
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
2773
+ isError: false;
2750
2774
  }) | ({
2751
2775
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2752
2776
  } & {
2753
- requestId: string; /** JSON ref to value from where patch should be applied. */
2777
+ requestId: string;
2754
2778
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2755
2779
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2756
2780
  endpointName: string;
@@ -2760,21 +2784,21 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
2760
2784
  data?: undefined;
2761
2785
  } & {
2762
2786
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2763
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2787
+ isUninitialized: false;
2764
2788
  isLoading: true;
2765
2789
  isSuccess: false;
2766
2790
  isError: false;
2767
2791
  }) | ({
2768
2792
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2769
2793
  } & Omit<{
2770
- requestId: string; /** JSON ref to value from where patch should be applied. */
2794
+ requestId: string;
2771
2795
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2772
2796
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2773
2797
  endpointName: string;
2774
2798
  startedTimeStamp: number;
2775
2799
  fulfilledTimeStamp?: number | undefined;
2776
2800
  }, "error"> & Required<Pick<{
2777
- requestId: string; /** JSON ref to value from where patch should be applied. */
2801
+ requestId: string;
2778
2802
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2779
2803
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2780
2804
  endpointName: string;
@@ -2794,6 +2818,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
2794
2818
  error?: undefined;
2795
2819
  endpointName?: string | undefined;
2796
2820
  startedTimeStamp?: undefined;
2821
+ /** JSON ref to value from where patch should be applied. */
2797
2822
  fulfilledTimeStamp?: undefined;
2798
2823
  } & {
2799
2824
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2804,32 +2829,31 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
2804
2829
  }) | ({
2805
2830
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2806
2831
  } & Omit<{
2807
- requestId: string; /** JSON ref to value from where patch should be applied. */
2832
+ requestId: string;
2808
2833
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2809
2834
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2810
2835
  endpointName: string;
2811
2836
  startedTimeStamp: number;
2812
2837
  fulfilledTimeStamp?: number | undefined;
2813
2838
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2814
- requestId: string; /** JSON ref to value from where patch should be applied. */
2839
+ requestId: string;
2815
2840
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2816
2841
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2817
2842
  endpointName: string;
2818
2843
  startedTimeStamp: number;
2819
2844
  fulfilledTimeStamp?: number | undefined;
2820
2845
  }, "data" | "fulfilledTimeStamp">> & {
2821
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2822
2846
  error: undefined;
2823
2847
  } & {
2824
2848
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2825
2849
  isUninitialized: false;
2826
2850
  isLoading: false;
2827
2851
  isSuccess: true;
2828
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
2852
+ isError: false;
2829
2853
  }) | ({
2830
2854
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2831
2855
  } & {
2832
- requestId: string; /** JSON ref to value from where patch should be applied. */
2856
+ requestId: string;
2833
2857
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2834
2858
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2835
2859
  endpointName: string;
@@ -2839,21 +2863,21 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
2839
2863
  data?: undefined;
2840
2864
  } & {
2841
2865
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2842
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2866
+ isUninitialized: false;
2843
2867
  isLoading: true;
2844
2868
  isSuccess: false;
2845
2869
  isError: false;
2846
2870
  }) | ({
2847
2871
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2848
2872
  } & Omit<{
2849
- requestId: string; /** JSON ref to value from where patch should be applied. */
2873
+ requestId: string;
2850
2874
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2851
2875
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2852
2876
  endpointName: string;
2853
2877
  startedTimeStamp: number;
2854
2878
  fulfilledTimeStamp?: number | undefined;
2855
2879
  }, "error"> & Required<Pick<{
2856
- requestId: string; /** JSON ref to value from where patch should be applied. */
2880
+ requestId: string;
2857
2881
  data?: PutApiWorkspacesByIdApiResponse | undefined;
2858
2882
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2859
2883
  endpointName: string;
@@ -2868,7 +2892,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
2868
2892
  })) => R) | undefined;
2869
2893
  fixedCacheKey?: string | undefined;
2870
2894
  } | 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>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", PutApiWorkspacesByIdApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2871
- originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
2895
+ originalArgs?: PutApiWorkspacesByIdApiArg | undefined; /** Version of the model as defined by the registrant. */
2872
2896
  reset: () => void;
2873
2897
  }];
2874
2898
  declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
@@ -2878,6 +2902,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
2878
2902
  error?: undefined;
2879
2903
  endpointName?: string | undefined;
2880
2904
  startedTimeStamp?: undefined;
2905
+ /** JSON ref to value from where patch should be applied. */
2881
2906
  fulfilledTimeStamp?: undefined;
2882
2907
  } & {
2883
2908
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2888,32 +2913,31 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
2888
2913
  }) | ({
2889
2914
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2890
2915
  } & Omit<{
2891
- requestId: string; /** JSON ref to value from where patch should be applied. */
2916
+ requestId: string;
2892
2917
  data?: unknown;
2893
2918
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2894
2919
  endpointName: string;
2895
2920
  startedTimeStamp: number;
2896
2921
  fulfilledTimeStamp?: number | undefined;
2897
2922
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2898
- requestId: string; /** JSON ref to value from where patch should be applied. */
2923
+ requestId: string;
2899
2924
  data?: unknown;
2900
2925
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2901
2926
  endpointName: string;
2902
2927
  startedTimeStamp: number;
2903
2928
  fulfilledTimeStamp?: number | undefined;
2904
2929
  }, "data" | "fulfilledTimeStamp">> & {
2905
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2906
2930
  error: undefined;
2907
2931
  } & {
2908
2932
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2909
2933
  isUninitialized: false;
2910
2934
  isLoading: false;
2911
2935
  isSuccess: true;
2912
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
2936
+ isError: false;
2913
2937
  }) | ({
2914
2938
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2915
2939
  } & {
2916
- requestId: string; /** JSON ref to value from where patch should be applied. */
2940
+ requestId: string;
2917
2941
  data?: unknown;
2918
2942
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2919
2943
  endpointName: string;
@@ -2923,21 +2947,21 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
2923
2947
  data?: undefined;
2924
2948
  } & {
2925
2949
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2926
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2950
+ isUninitialized: false;
2927
2951
  isLoading: true;
2928
2952
  isSuccess: false;
2929
2953
  isError: false;
2930
2954
  }) | ({
2931
2955
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2932
2956
  } & Omit<{
2933
- requestId: string; /** JSON ref to value from where patch should be applied. */
2957
+ requestId: string;
2934
2958
  data?: unknown;
2935
2959
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2936
2960
  endpointName: string;
2937
2961
  startedTimeStamp: number;
2938
2962
  fulfilledTimeStamp?: number | undefined;
2939
2963
  }, "error"> & Required<Pick<{
2940
- requestId: string; /** JSON ref to value from where patch should be applied. */
2964
+ requestId: string;
2941
2965
  data?: unknown;
2942
2966
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2943
2967
  endpointName: string;
@@ -2957,6 +2981,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
2957
2981
  error?: undefined;
2958
2982
  endpointName?: string | undefined;
2959
2983
  startedTimeStamp?: undefined;
2984
+ /** JSON ref to value from where patch should be applied. */
2960
2985
  fulfilledTimeStamp?: undefined;
2961
2986
  } & {
2962
2987
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2967,32 +2992,31 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
2967
2992
  }) | ({
2968
2993
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2969
2994
  } & Omit<{
2970
- requestId: string; /** JSON ref to value from where patch should be applied. */
2995
+ requestId: string;
2971
2996
  data?: unknown;
2972
2997
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2973
2998
  endpointName: string;
2974
2999
  startedTimeStamp: number;
2975
3000
  fulfilledTimeStamp?: number | undefined;
2976
3001
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2977
- requestId: string; /** JSON ref to value from where patch should be applied. */
3002
+ requestId: string;
2978
3003
  data?: unknown;
2979
3004
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2980
3005
  endpointName: string;
2981
3006
  startedTimeStamp: number;
2982
3007
  fulfilledTimeStamp?: number | undefined;
2983
3008
  }, "data" | "fulfilledTimeStamp">> & {
2984
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2985
3009
  error: undefined;
2986
3010
  } & {
2987
3011
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2988
3012
  isUninitialized: false;
2989
3013
  isLoading: false;
2990
3014
  isSuccess: true;
2991
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
3015
+ isError: false;
2992
3016
  }) | ({
2993
3017
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2994
3018
  } & {
2995
- requestId: string; /** JSON ref to value from where patch should be applied. */
3019
+ requestId: string;
2996
3020
  data?: unknown;
2997
3021
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2998
3022
  endpointName: string;
@@ -3002,21 +3026,21 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3002
3026
  data?: undefined;
3003
3027
  } & {
3004
3028
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3005
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3029
+ isUninitialized: false;
3006
3030
  isLoading: true;
3007
3031
  isSuccess: false;
3008
3032
  isError: false;
3009
3033
  }) | ({
3010
3034
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3011
3035
  } & Omit<{
3012
- requestId: string; /** JSON ref to value from where patch should be applied. */
3036
+ requestId: string;
3013
3037
  data?: unknown;
3014
3038
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3015
3039
  endpointName: string;
3016
3040
  startedTimeStamp: number;
3017
3041
  fulfilledTimeStamp?: number | undefined;
3018
3042
  }, "error"> & Required<Pick<{
3019
- requestId: string; /** JSON ref to value from where patch should be applied. */
3043
+ requestId: string;
3020
3044
  data?: unknown;
3021
3045
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3022
3046
  endpointName: string;
@@ -3031,7 +3055,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3031
3055
  })) => R) | undefined;
3032
3056
  fixedCacheKey?: string | undefined;
3033
3057
  } | 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>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", unknown, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
3034
- originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
3058
+ originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined; /** Version of the model as defined by the registrant. */
3035
3059
  reset: () => void;
3036
3060
  }];
3037
3061
  declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
@@ -3041,6 +3065,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3041
3065
  error?: undefined;
3042
3066
  endpointName?: string | undefined;
3043
3067
  startedTimeStamp?: undefined;
3068
+ /** JSON ref to value from where patch should be applied. */
3044
3069
  fulfilledTimeStamp?: undefined;
3045
3070
  } & {
3046
3071
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -3051,32 +3076,31 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3051
3076
  }) | ({
3052
3077
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3053
3078
  } & Omit<{
3054
- requestId: string; /** JSON ref to value from where patch should be applied. */
3079
+ requestId: string;
3055
3080
  data?: CreateEnvironmentApiResponse | undefined;
3056
3081
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3057
3082
  endpointName: string;
3058
3083
  startedTimeStamp: number;
3059
3084
  fulfilledTimeStamp?: number | undefined;
3060
3085
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3061
- requestId: string; /** JSON ref to value from where patch should be applied. */
3086
+ requestId: string;
3062
3087
  data?: CreateEnvironmentApiResponse | undefined;
3063
3088
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3064
3089
  endpointName: string;
3065
3090
  startedTimeStamp: number;
3066
3091
  fulfilledTimeStamp?: number | undefined;
3067
3092
  }, "data" | "fulfilledTimeStamp">> & {
3068
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3069
3093
  error: undefined;
3070
3094
  } & {
3071
3095
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3072
3096
  isUninitialized: false;
3073
3097
  isLoading: false;
3074
3098
  isSuccess: true;
3075
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
3099
+ isError: false;
3076
3100
  }) | ({
3077
3101
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3078
3102
  } & {
3079
- requestId: string; /** JSON ref to value from where patch should be applied. */
3103
+ requestId: string;
3080
3104
  data?: CreateEnvironmentApiResponse | undefined;
3081
3105
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3082
3106
  endpointName: string;
@@ -3086,21 +3110,21 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3086
3110
  data?: undefined;
3087
3111
  } & {
3088
3112
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3089
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3113
+ isUninitialized: false;
3090
3114
  isLoading: true;
3091
3115
  isSuccess: false;
3092
3116
  isError: false;
3093
3117
  }) | ({
3094
3118
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3095
3119
  } & Omit<{
3096
- requestId: string; /** JSON ref to value from where patch should be applied. */
3120
+ requestId: string;
3097
3121
  data?: CreateEnvironmentApiResponse | undefined;
3098
3122
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3099
3123
  endpointName: string;
3100
3124
  startedTimeStamp: number;
3101
3125
  fulfilledTimeStamp?: number | undefined;
3102
3126
  }, "error"> & Required<Pick<{
3103
- requestId: string; /** JSON ref to value from where patch should be applied. */
3127
+ requestId: string;
3104
3128
  data?: CreateEnvironmentApiResponse | undefined;
3105
3129
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3106
3130
  endpointName: string;
@@ -3120,6 +3144,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3120
3144
  error?: undefined;
3121
3145
  endpointName?: string | undefined;
3122
3146
  startedTimeStamp?: undefined;
3147
+ /** JSON ref to value from where patch should be applied. */
3123
3148
  fulfilledTimeStamp?: undefined;
3124
3149
  } & {
3125
3150
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -3130,32 +3155,31 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3130
3155
  }) | ({
3131
3156
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3132
3157
  } & Omit<{
3133
- requestId: string; /** JSON ref to value from where patch should be applied. */
3158
+ requestId: string;
3134
3159
  data?: CreateEnvironmentApiResponse | undefined;
3135
3160
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3136
3161
  endpointName: string;
3137
3162
  startedTimeStamp: number;
3138
3163
  fulfilledTimeStamp?: number | undefined;
3139
3164
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3140
- requestId: string; /** JSON ref to value from where patch should be applied. */
3165
+ requestId: string;
3141
3166
  data?: CreateEnvironmentApiResponse | undefined;
3142
3167
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3143
3168
  endpointName: string;
3144
3169
  startedTimeStamp: number;
3145
3170
  fulfilledTimeStamp?: number | undefined;
3146
3171
  }, "data" | "fulfilledTimeStamp">> & {
3147
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3148
3172
  error: undefined;
3149
3173
  } & {
3150
3174
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3151
3175
  isUninitialized: false;
3152
3176
  isLoading: false;
3153
3177
  isSuccess: true;
3154
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
3178
+ isError: false;
3155
3179
  }) | ({
3156
3180
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3157
3181
  } & {
3158
- requestId: string; /** JSON ref to value from where patch should be applied. */
3182
+ requestId: string;
3159
3183
  data?: CreateEnvironmentApiResponse | undefined;
3160
3184
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3161
3185
  endpointName: string;
@@ -3165,21 +3189,21 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3165
3189
  data?: undefined;
3166
3190
  } & {
3167
3191
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3168
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3192
+ isUninitialized: false;
3169
3193
  isLoading: true;
3170
3194
  isSuccess: false;
3171
3195
  isError: false;
3172
3196
  }) | ({
3173
3197
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3174
3198
  } & Omit<{
3175
- requestId: string; /** JSON ref to value from where patch should be applied. */
3199
+ requestId: string;
3176
3200
  data?: CreateEnvironmentApiResponse | undefined;
3177
3201
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3178
3202
  endpointName: string;
3179
3203
  startedTimeStamp: number;
3180
3204
  fulfilledTimeStamp?: number | undefined;
3181
3205
  }, "error"> & Required<Pick<{
3182
- requestId: string; /** JSON ref to value from where patch should be applied. */
3206
+ requestId: string;
3183
3207
  data?: CreateEnvironmentApiResponse | undefined;
3184
3208
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3185
3209
  endpointName: string;
@@ -3194,7 +3218,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3194
3218
  })) => R) | undefined;
3195
3219
  fixedCacheKey?: string | undefined;
3196
3220
  } | 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>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", CreateEnvironmentApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
3197
- originalArgs?: CreateEnvironmentApiArg | undefined;
3221
+ originalArgs?: CreateEnvironmentApiArg | undefined; /** Version of the model as defined by the registrant. */
3198
3222
  reset: () => void;
3199
3223
  }];
3200
3224
  declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
@@ -3367,6 +3391,7 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
3367
3391
  error?: undefined;
3368
3392
  endpointName?: string | undefined;
3369
3393
  startedTimeStamp?: undefined;
3394
+ /** JSON ref to value from where patch should be applied. */
3370
3395
  fulfilledTimeStamp?: undefined;
3371
3396
  } & {
3372
3397
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -3377,32 +3402,31 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
3377
3402
  }) | ({
3378
3403
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3379
3404
  } & Omit<{
3380
- requestId: string; /** JSON ref to value from where patch should be applied. */
3405
+ requestId: string;
3381
3406
  data?: PostEvaluateApiResponse | undefined;
3382
3407
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3383
3408
  endpointName: string;
3384
3409
  startedTimeStamp: number;
3385
3410
  fulfilledTimeStamp?: number | undefined;
3386
3411
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3387
- requestId: string; /** JSON ref to value from where patch should be applied. */
3412
+ requestId: string;
3388
3413
  data?: PostEvaluateApiResponse | undefined;
3389
3414
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3390
3415
  endpointName: string;
3391
3416
  startedTimeStamp: number;
3392
3417
  fulfilledTimeStamp?: number | undefined;
3393
3418
  }, "data" | "fulfilledTimeStamp">> & {
3394
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3395
3419
  error: undefined;
3396
3420
  } & {
3397
3421
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3398
3422
  isUninitialized: false;
3399
3423
  isLoading: false;
3400
3424
  isSuccess: true;
3401
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
3425
+ isError: false;
3402
3426
  }) | ({
3403
3427
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3404
3428
  } & {
3405
- requestId: string; /** JSON ref to value from where patch should be applied. */
3429
+ requestId: string;
3406
3430
  data?: PostEvaluateApiResponse | undefined;
3407
3431
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3408
3432
  endpointName: string;
@@ -3412,21 +3436,21 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
3412
3436
  data?: undefined;
3413
3437
  } & {
3414
3438
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3415
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3439
+ isUninitialized: false;
3416
3440
  isLoading: true;
3417
3441
  isSuccess: false;
3418
3442
  isError: false;
3419
3443
  }) | ({
3420
3444
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3421
3445
  } & Omit<{
3422
- requestId: string; /** JSON ref to value from where patch should be applied. */
3446
+ requestId: string;
3423
3447
  data?: PostEvaluateApiResponse | undefined;
3424
3448
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3425
3449
  endpointName: string;
3426
3450
  startedTimeStamp: number;
3427
3451
  fulfilledTimeStamp?: number | undefined;
3428
3452
  }, "error"> & Required<Pick<{
3429
- requestId: string; /** JSON ref to value from where patch should be applied. */
3453
+ requestId: string;
3430
3454
  data?: PostEvaluateApiResponse | undefined;
3431
3455
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3432
3456
  endpointName: string;
@@ -3446,6 +3470,7 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
3446
3470
  error?: undefined;
3447
3471
  endpointName?: string | undefined;
3448
3472
  startedTimeStamp?: undefined;
3473
+ /** JSON ref to value from where patch should be applied. */
3449
3474
  fulfilledTimeStamp?: undefined;
3450
3475
  } & {
3451
3476
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -3456,32 +3481,31 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
3456
3481
  }) | ({
3457
3482
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3458
3483
  } & Omit<{
3459
- requestId: string; /** JSON ref to value from where patch should be applied. */
3484
+ requestId: string;
3460
3485
  data?: PostEvaluateApiResponse | undefined;
3461
3486
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3462
3487
  endpointName: string;
3463
3488
  startedTimeStamp: number;
3464
3489
  fulfilledTimeStamp?: number | undefined;
3465
3490
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3466
- requestId: string; /** JSON ref to value from where patch should be applied. */
3491
+ requestId: string;
3467
3492
  data?: PostEvaluateApiResponse | undefined;
3468
3493
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3469
3494
  endpointName: string;
3470
3495
  startedTimeStamp: number;
3471
3496
  fulfilledTimeStamp?: number | undefined;
3472
3497
  }, "data" | "fulfilledTimeStamp">> & {
3473
- /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3474
3498
  error: undefined;
3475
3499
  } & {
3476
3500
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3477
3501
  isUninitialized: false;
3478
3502
  isLoading: false;
3479
3503
  isSuccess: true;
3480
- isError: false; /** Strategy criterion for determing how to match the values at mutator/mutated paths */
3504
+ isError: false;
3481
3505
  }) | ({
3482
3506
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3483
3507
  } & {
3484
- requestId: string; /** JSON ref to value from where patch should be applied. */
3508
+ requestId: string;
3485
3509
  data?: PostEvaluateApiResponse | undefined;
3486
3510
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3487
3511
  endpointName: string;
@@ -3491,21 +3515,21 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
3491
3515
  data?: undefined;
3492
3516
  } & {
3493
3517
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3494
- isUninitialized: false; /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3518
+ isUninitialized: false;
3495
3519
  isLoading: true;
3496
3520
  isSuccess: false;
3497
3521
  isError: false;
3498
3522
  }) | ({
3499
3523
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3500
3524
  } & Omit<{
3501
- requestId: string; /** JSON ref to value from where patch should be applied. */
3525
+ requestId: string;
3502
3526
  data?: PostEvaluateApiResponse | undefined;
3503
3527
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3504
3528
  endpointName: string;
3505
3529
  startedTimeStamp: number;
3506
3530
  fulfilledTimeStamp?: number | undefined;
3507
3531
  }, "error"> & Required<Pick<{
3508
- requestId: string; /** JSON ref to value from where patch should be applied. */
3532
+ requestId: string;
3509
3533
  data?: PostEvaluateApiResponse | undefined;
3510
3534
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3511
3535
  endpointName: string;
@@ -3520,7 +3544,7 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
3520
3544
  })) => R) | undefined;
3521
3545
  fixedCacheKey?: string | undefined;
3522
3546
  } | 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>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", PostEvaluateApiResponse, "mesheryRtkSchemasApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
3523
- originalArgs?: PostEvaluateApiArg | undefined;
3547
+ originalArgs?: PostEvaluateApiArg | undefined; /** Version of the model as defined by the registrant. */
3524
3548
  reset: () => void;
3525
3549
  }];
3526
3550