@meshery/schemas 0.0.3-1 → 0.0.3-3

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/README.md CHANGED
@@ -7,7 +7,7 @@ alt="Meshery Logo" width="70%" /></picture></a><br /><br /></p>
7
7
  <p align="center">
8
8
  <a href="https://hub.docker.com/r/meshery/meshery" alt="Docker pulls">
9
9
  <img src="https://img.shields.io/docker/pulls/meshery/meshery.svg" /></a>
10
- <a href="https://github.com/issues?q=is%3Aopen+is%3Aissue+archived%3Afalse+org%meshery+org%3Ameshery+org%3Aservice-mesh-performance+org%3Aservice-mesh-patterns+org%3A+label%3A%22help+wanted%22+" alt="GitHub issues by-label">
10
+ <a href="https://github.com/issues?q=is%3Aopen%20is%3Aissue%20archived%3Afalse%20(org%3Ameshery%20OR%20org%3Aservice-mesh-performance%20OR%20org%3Aservice-mesh-patterns%20OR%20org%3Ameshery-extensions)%20label%3A%22help%20wanted%22" alt="GitHub issues by-label">
11
11
  <img src="https://img.shields.io/github/issues/meshery/meshery/help%20wanted.svg?color=informational" /></a>
12
12
  <a href="https://github.com/meshery/meshery/blob/master/LICENSE" alt="LICENSE">
13
13
  <img src="https://img.shields.io/github/license/meshery/meshery?color=brightgreen" /></a>
@@ -82,7 +82,7 @@ Find out more on the <a href="https://meshery.io/community#meshmates">Meshery co
82
82
  ✔️ <em><strong>Explore more</strong></em> in the <a href="https://meshery.io/community#handbook">Community Handbook</a>.<br />
83
83
  </p>
84
84
  <p align="center">
85
- <i>Not sure where to start?</i> Grab an open issue with the <a href="https://github.com/issues?q=is%3Aopen+is%3Aissue+archived%3Afalse+org%meshery+org%3Ameshery+org%3Ameshery-extensions+org%3Aservice-mesh-performance+org%3Aservice-mesh-patterns+label%3A%22help+wanted%22">help-wanted label</a>.
85
+ <i>Not sure where to start?</i> Grab an open issue with the <a href="https://github.com/issues?q=is%3Aopen%20is%3Aissue%20archived%3Afalse%20(org%3Ameshery%20OR%20org%3Aservice-mesh-performance%20OR%20org%3Aservice-mesh-patterns%20OR%20org%3Ameshery-extensions)%20label%3A%22help%20wanted%22">help-wanted label</a>.
86
86
  </p>
87
87
  </div>
88
88
  <div>&nbsp;</div>
@@ -18,6 +18,8 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
18
18
  deleteApiWorkspacesById: _reduxjs_toolkit_query.MutationDefinition<DeleteApiWorkspacesByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>;
19
19
  createEnvironment: _reduxjs_toolkit_query.MutationDefinition<CreateEnvironmentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateEnvironmentApiResponse, "api", unknown>;
20
20
  getEnvironments: _reduxjs_toolkit_query.QueryDefinition<GetEnvironmentsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetEnvironmentsApiResponse, "api", unknown>;
21
+ getApiAcademyLearningPaths: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyLearningPathsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyLearningPathsApiResponse, "api", unknown>;
22
+ getApiAcademyChallenges: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyChallengesApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyChallengesApiResponse, "api", unknown>;
21
23
  }, "api", never, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
22
24
 
23
25
  type ImportDesignApiResponse = {
@@ -313,14 +315,19 @@ type DeleteApiWorkspacesByIdApiArg = {
313
315
  id: string;
314
316
  };
315
317
  type CreateEnvironmentApiResponse = {
316
- ID?: string;
317
- name?: string;
318
- description?: string;
319
- organization_id?: string;
318
+ /** ID */
319
+ id: string;
320
+ /** Environment name */
321
+ name: string;
322
+ /** Environment description */
323
+ description: string;
324
+ /** Environment organization ID */
325
+ organization_id: string;
326
+ /** Environment owner */
320
327
  owner?: string;
321
328
  created_at?: string;
329
+ metadata?: object;
322
330
  updated_at?: string;
323
- /** SQL null Timestamp to handle null values of time. */
324
331
  deleted_at?: string;
325
332
  };
326
333
  type CreateEnvironmentApiArg = {
@@ -339,14 +346,19 @@ type GetEnvironmentsApiResponse = {
339
346
  page_size?: number;
340
347
  total_count?: number;
341
348
  environments?: {
342
- ID?: string;
343
- name?: string;
344
- description?: string;
345
- organization_id?: string;
349
+ /** ID */
350
+ id: string;
351
+ /** Environment name */
352
+ name: string;
353
+ /** Environment description */
354
+ description: string;
355
+ /** Environment organization ID */
356
+ organization_id: string;
357
+ /** Environment owner */
346
358
  owner?: string;
347
359
  created_at?: string;
360
+ metadata?: object;
348
361
  updated_at?: string;
349
- /** SQL null Timestamp to handle null values of time. */
350
362
  deleted_at?: string;
351
363
  }[];
352
364
  };
@@ -362,6 +374,72 @@ type GetEnvironmentsApiArg = {
362
374
  /** User's organization ID */
363
375
  orgId: string;
364
376
  };
377
+ type GetApiAcademyLearningPathsApiResponse = {
378
+ /** Total number of learning paths */
379
+ total: number;
380
+ data: {
381
+ /** Title of the learning path */
382
+ title: string;
383
+ /** Description of the learning path */
384
+ description: string;
385
+ /** Optional banner image */
386
+ banner?: string | null;
387
+ /** Canonical URL for the learning path */
388
+ permalink: string;
389
+ /** Organization ID that owns this learning path */
390
+ orgId: string;
391
+ /** List of courses in this learning path */
392
+ courses?: {
393
+ /** Title of the course */
394
+ title: string;
395
+ /** URL to the course content */
396
+ permalink: string;
397
+ /** Course description */
398
+ description?: string;
399
+ /** Order of the course in the list */
400
+ order?: number;
401
+ }[];
402
+ }[];
403
+ };
404
+ type GetApiAcademyLearningPathsApiArg = {
405
+ /** Filter learning paths by organization ID */
406
+ orgId?: string;
407
+ /** Search learning paths by title */
408
+ search?: string;
409
+ };
410
+ type GetApiAcademyChallengesApiResponse = {
411
+ /** Total number of learning paths */
412
+ total: number;
413
+ data: {
414
+ /** Title of the learning path */
415
+ title: string;
416
+ /** Description of the learning path */
417
+ description: string;
418
+ /** Optional banner image */
419
+ banner?: string | null;
420
+ /** Canonical URL for the learning path */
421
+ permalink: string;
422
+ /** Organization ID that owns this learning path */
423
+ orgId: string;
424
+ /** List of courses in this learning path */
425
+ courses?: {
426
+ /** Title of the course */
427
+ title: string;
428
+ /** URL to the course content */
429
+ permalink: string;
430
+ /** Course description */
431
+ description?: string;
432
+ /** Order of the course in the list */
433
+ order?: number;
434
+ }[];
435
+ }[];
436
+ };
437
+ type GetApiAcademyChallengesApiArg = {
438
+ /** Filter learning paths by organization ID */
439
+ orgId?: string;
440
+ /** Search learning paths by title */
441
+ search?: string;
442
+ };
365
443
  declare const useImportDesignMutation: <R extends Record<string, any> = ({
366
444
  requestId?: undefined;
367
445
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2952,5 +3030,331 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
2952
3030
  }) | undefined) => [R][R extends any ? 0 : never] & {
2953
3031
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetEnvironmentsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetEnvironmentsApiResponse, "api", unknown>>;
2954
3032
  };
3033
+ declare const useGetApiAcademyLearningPathsQuery: <R extends Record<string, any> = ({
3034
+ data?: undefined;
3035
+ error?: undefined;
3036
+ fulfilledTimeStamp?: undefined;
3037
+ originalArgs?: undefined;
3038
+ requestId?: undefined;
3039
+ endpointName?: string | undefined;
3040
+ startedTimeStamp?: undefined;
3041
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3042
+ currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3043
+ isLoading: false;
3044
+ isFetching: false;
3045
+ isSuccess: false;
3046
+ isError: false;
3047
+ isUninitialized: true;
3048
+ } | {
3049
+ error?: unknown;
3050
+ fulfilledTimeStamp?: number | undefined;
3051
+ originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3052
+ requestId?: string | undefined;
3053
+ endpointName?: string | undefined;
3054
+ startedTimeStamp?: number | undefined;
3055
+ status: _reduxjs_toolkit_query.QueryStatus;
3056
+ currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3057
+ isUninitialized: false;
3058
+ isSuccess: false;
3059
+ isError: false;
3060
+ isLoading: true;
3061
+ isFetching: boolean;
3062
+ data: undefined;
3063
+ } | {
3064
+ originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3065
+ requestId?: string | undefined;
3066
+ endpointName?: string | undefined;
3067
+ startedTimeStamp?: number | undefined;
3068
+ status: _reduxjs_toolkit_query.QueryStatus;
3069
+ currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3070
+ isUninitialized: false;
3071
+ isLoading: false;
3072
+ isError: false;
3073
+ isSuccess: true;
3074
+ isFetching: true;
3075
+ error: undefined;
3076
+ data: GetApiAcademyLearningPathsApiResponse;
3077
+ fulfilledTimeStamp: number;
3078
+ } | {
3079
+ originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3080
+ requestId?: string | undefined;
3081
+ endpointName?: string | undefined;
3082
+ startedTimeStamp?: number | undefined;
3083
+ status: _reduxjs_toolkit_query.QueryStatus;
3084
+ isUninitialized: false;
3085
+ isLoading: false;
3086
+ isError: false;
3087
+ isSuccess: true;
3088
+ isFetching: false;
3089
+ error: undefined;
3090
+ data: GetApiAcademyLearningPathsApiResponse;
3091
+ fulfilledTimeStamp: number;
3092
+ currentData: GetApiAcademyLearningPathsApiResponse;
3093
+ } | {
3094
+ data?: GetApiAcademyLearningPathsApiResponse | undefined;
3095
+ fulfilledTimeStamp?: number | undefined;
3096
+ originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3097
+ requestId?: string | undefined;
3098
+ endpointName?: string | undefined;
3099
+ startedTimeStamp?: number | undefined;
3100
+ status: _reduxjs_toolkit_query.QueryStatus;
3101
+ currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3102
+ isUninitialized: false;
3103
+ isLoading: false;
3104
+ isFetching: false;
3105
+ isSuccess: false;
3106
+ isError: true;
3107
+ error: unknown;
3108
+ }) & {
3109
+ status: _reduxjs_toolkit_query.QueryStatus;
3110
+ }>(arg: GetApiAcademyLearningPathsApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
3111
+ skip?: boolean | undefined;
3112
+ refetchOnMountOrArgChange?: number | boolean | undefined;
3113
+ } & {
3114
+ skip?: boolean | undefined;
3115
+ selectFromResult?: ((state: ({
3116
+ data?: undefined;
3117
+ error?: undefined;
3118
+ fulfilledTimeStamp?: undefined;
3119
+ originalArgs?: undefined;
3120
+ requestId?: undefined;
3121
+ endpointName?: string | undefined;
3122
+ startedTimeStamp?: undefined;
3123
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3124
+ currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3125
+ isLoading: false;
3126
+ isFetching: false;
3127
+ isSuccess: false;
3128
+ isError: false;
3129
+ isUninitialized: true;
3130
+ } | {
3131
+ error?: unknown;
3132
+ fulfilledTimeStamp?: number | undefined;
3133
+ originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3134
+ requestId?: string | undefined;
3135
+ endpointName?: string | undefined;
3136
+ startedTimeStamp?: number | undefined;
3137
+ status: _reduxjs_toolkit_query.QueryStatus;
3138
+ currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3139
+ isUninitialized: false;
3140
+ isSuccess: false;
3141
+ isError: false;
3142
+ isLoading: true;
3143
+ isFetching: boolean;
3144
+ data: undefined;
3145
+ } | {
3146
+ originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3147
+ requestId?: string | undefined;
3148
+ endpointName?: string | undefined;
3149
+ startedTimeStamp?: number | undefined;
3150
+ status: _reduxjs_toolkit_query.QueryStatus;
3151
+ currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3152
+ isUninitialized: false;
3153
+ isLoading: false;
3154
+ isError: false;
3155
+ isSuccess: true;
3156
+ isFetching: true;
3157
+ error: undefined;
3158
+ data: GetApiAcademyLearningPathsApiResponse;
3159
+ fulfilledTimeStamp: number;
3160
+ } | {
3161
+ originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3162
+ requestId?: string | undefined;
3163
+ endpointName?: string | undefined;
3164
+ startedTimeStamp?: number | undefined;
3165
+ status: _reduxjs_toolkit_query.QueryStatus;
3166
+ isUninitialized: false;
3167
+ isLoading: false;
3168
+ isError: false;
3169
+ isSuccess: true;
3170
+ isFetching: false;
3171
+ error: undefined;
3172
+ data: GetApiAcademyLearningPathsApiResponse;
3173
+ fulfilledTimeStamp: number;
3174
+ currentData: GetApiAcademyLearningPathsApiResponse;
3175
+ } | {
3176
+ data?: GetApiAcademyLearningPathsApiResponse | undefined;
3177
+ fulfilledTimeStamp?: number | undefined;
3178
+ originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3179
+ requestId?: string | undefined;
3180
+ endpointName?: string | undefined;
3181
+ startedTimeStamp?: number | undefined;
3182
+ status: _reduxjs_toolkit_query.QueryStatus;
3183
+ currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3184
+ isUninitialized: false;
3185
+ isLoading: false;
3186
+ isFetching: false;
3187
+ isSuccess: false;
3188
+ isError: true;
3189
+ error: unknown;
3190
+ }) & {
3191
+ status: _reduxjs_toolkit_query.QueryStatus;
3192
+ }) => R) | undefined;
3193
+ }) | undefined) => [R][R extends any ? 0 : never] & {
3194
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetApiAcademyLearningPathsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyLearningPathsApiResponse, "api", unknown>>;
3195
+ };
3196
+ declare const useGetApiAcademyChallengesQuery: <R extends Record<string, any> = ({
3197
+ data?: undefined;
3198
+ error?: undefined;
3199
+ fulfilledTimeStamp?: undefined;
3200
+ originalArgs?: undefined;
3201
+ requestId?: undefined;
3202
+ endpointName?: string | undefined;
3203
+ startedTimeStamp?: undefined;
3204
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3205
+ currentData?: GetApiAcademyChallengesApiResponse | undefined;
3206
+ isLoading: false;
3207
+ isFetching: false;
3208
+ isSuccess: false;
3209
+ isError: false;
3210
+ isUninitialized: true;
3211
+ } | {
3212
+ error?: unknown;
3213
+ fulfilledTimeStamp?: number | undefined;
3214
+ originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3215
+ requestId?: string | undefined;
3216
+ endpointName?: string | undefined;
3217
+ startedTimeStamp?: number | undefined;
3218
+ status: _reduxjs_toolkit_query.QueryStatus;
3219
+ currentData?: GetApiAcademyChallengesApiResponse | undefined;
3220
+ isUninitialized: false;
3221
+ isSuccess: false;
3222
+ isError: false;
3223
+ isLoading: true;
3224
+ isFetching: boolean;
3225
+ data: undefined;
3226
+ } | {
3227
+ originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3228
+ requestId?: string | undefined;
3229
+ endpointName?: string | undefined;
3230
+ startedTimeStamp?: number | undefined;
3231
+ status: _reduxjs_toolkit_query.QueryStatus;
3232
+ currentData?: GetApiAcademyChallengesApiResponse | undefined;
3233
+ isUninitialized: false;
3234
+ isLoading: false;
3235
+ isError: false;
3236
+ isSuccess: true;
3237
+ isFetching: true;
3238
+ error: undefined;
3239
+ data: GetApiAcademyChallengesApiResponse;
3240
+ fulfilledTimeStamp: number;
3241
+ } | {
3242
+ originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3243
+ requestId?: string | undefined;
3244
+ endpointName?: string | undefined;
3245
+ startedTimeStamp?: number | undefined;
3246
+ status: _reduxjs_toolkit_query.QueryStatus;
3247
+ isUninitialized: false;
3248
+ isLoading: false;
3249
+ isError: false;
3250
+ isSuccess: true;
3251
+ isFetching: false;
3252
+ error: undefined;
3253
+ data: GetApiAcademyChallengesApiResponse;
3254
+ fulfilledTimeStamp: number;
3255
+ currentData: GetApiAcademyChallengesApiResponse;
3256
+ } | {
3257
+ data?: GetApiAcademyChallengesApiResponse | undefined;
3258
+ fulfilledTimeStamp?: number | undefined;
3259
+ originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3260
+ requestId?: string | undefined;
3261
+ endpointName?: string | undefined;
3262
+ startedTimeStamp?: number | undefined;
3263
+ status: _reduxjs_toolkit_query.QueryStatus;
3264
+ currentData?: GetApiAcademyChallengesApiResponse | undefined;
3265
+ isUninitialized: false;
3266
+ isLoading: false;
3267
+ isFetching: false;
3268
+ isSuccess: false;
3269
+ isError: true;
3270
+ error: unknown;
3271
+ }) & {
3272
+ status: _reduxjs_toolkit_query.QueryStatus;
3273
+ }>(arg: GetApiAcademyChallengesApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
3274
+ skip?: boolean | undefined;
3275
+ refetchOnMountOrArgChange?: number | boolean | undefined;
3276
+ } & {
3277
+ skip?: boolean | undefined;
3278
+ selectFromResult?: ((state: ({
3279
+ data?: undefined;
3280
+ error?: undefined;
3281
+ fulfilledTimeStamp?: undefined;
3282
+ originalArgs?: undefined;
3283
+ requestId?: undefined;
3284
+ endpointName?: string | undefined;
3285
+ startedTimeStamp?: undefined;
3286
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3287
+ currentData?: GetApiAcademyChallengesApiResponse | undefined;
3288
+ isLoading: false;
3289
+ isFetching: false;
3290
+ isSuccess: false;
3291
+ isError: false;
3292
+ isUninitialized: true;
3293
+ } | {
3294
+ error?: unknown;
3295
+ fulfilledTimeStamp?: number | undefined;
3296
+ originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3297
+ requestId?: string | undefined;
3298
+ endpointName?: string | undefined;
3299
+ startedTimeStamp?: number | undefined;
3300
+ status: _reduxjs_toolkit_query.QueryStatus;
3301
+ currentData?: GetApiAcademyChallengesApiResponse | undefined;
3302
+ isUninitialized: false;
3303
+ isSuccess: false;
3304
+ isError: false;
3305
+ isLoading: true;
3306
+ isFetching: boolean;
3307
+ data: undefined;
3308
+ } | {
3309
+ originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3310
+ requestId?: string | undefined;
3311
+ endpointName?: string | undefined;
3312
+ startedTimeStamp?: number | undefined;
3313
+ status: _reduxjs_toolkit_query.QueryStatus;
3314
+ currentData?: GetApiAcademyChallengesApiResponse | undefined;
3315
+ isUninitialized: false;
3316
+ isLoading: false;
3317
+ isError: false;
3318
+ isSuccess: true;
3319
+ isFetching: true;
3320
+ error: undefined;
3321
+ data: GetApiAcademyChallengesApiResponse;
3322
+ fulfilledTimeStamp: number;
3323
+ } | {
3324
+ originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3325
+ requestId?: string | undefined;
3326
+ endpointName?: string | undefined;
3327
+ startedTimeStamp?: number | undefined;
3328
+ status: _reduxjs_toolkit_query.QueryStatus;
3329
+ isUninitialized: false;
3330
+ isLoading: false;
3331
+ isError: false;
3332
+ isSuccess: true;
3333
+ isFetching: false;
3334
+ error: undefined;
3335
+ data: GetApiAcademyChallengesApiResponse;
3336
+ fulfilledTimeStamp: number;
3337
+ currentData: GetApiAcademyChallengesApiResponse;
3338
+ } | {
3339
+ data?: GetApiAcademyChallengesApiResponse | undefined;
3340
+ fulfilledTimeStamp?: number | undefined;
3341
+ originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3342
+ requestId?: string | undefined;
3343
+ endpointName?: string | undefined;
3344
+ startedTimeStamp?: number | undefined;
3345
+ status: _reduxjs_toolkit_query.QueryStatus;
3346
+ currentData?: GetApiAcademyChallengesApiResponse | undefined;
3347
+ isUninitialized: false;
3348
+ isLoading: false;
3349
+ isFetching: false;
3350
+ isSuccess: false;
3351
+ isError: true;
3352
+ error: unknown;
3353
+ }) & {
3354
+ status: _reduxjs_toolkit_query.QueryStatus;
3355
+ }) => R) | undefined;
3356
+ }) | undefined) => [R][R extends any ? 0 : never] & {
3357
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetApiAcademyChallengesApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyChallengesApiResponse, "api", unknown>>;
3358
+ };
2955
3359
 
2956
- export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type GetFeaturesApiArg, type GetFeaturesApiResponse, type GetFeaturesByOrganizationApiArg, type GetFeaturesByOrganizationApiResponse, type GetPlansApiArg, type GetPlansApiResponse, type GetSubscriptionsApiArg, type GetSubscriptionsApiResponse, type ImportDesignApiArg, type ImportDesignApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, type PostApiEntitlementSubscriptionsCreateApiArg, type PostApiEntitlementSubscriptionsCreateApiResponse, type PostApiEntitlementSubscriptionsWebhooksApiArg, type PostApiEntitlementSubscriptionsWebhooksApiResponse, type PostApiWorkspacesApiArg, type PostApiWorkspacesApiResponse, type PutApiWorkspacesByIdApiArg, type PutApiWorkspacesByIdApiResponse, type RegisterMeshmodelsApiArg, type RegisterMeshmodelsApiResponse, injectedRtkApi as cloudApi, useCreateEnvironmentMutation, useDeleteApiWorkspacesByIdMutation, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation };
3360
+ export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type GetApiAcademyChallengesApiArg, type GetApiAcademyChallengesApiResponse, type GetApiAcademyLearningPathsApiArg, type GetApiAcademyLearningPathsApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type GetFeaturesApiArg, type GetFeaturesApiResponse, type GetFeaturesByOrganizationApiArg, type GetFeaturesByOrganizationApiResponse, type GetPlansApiArg, type GetPlansApiResponse, type GetSubscriptionsApiArg, type GetSubscriptionsApiResponse, type ImportDesignApiArg, type ImportDesignApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, type PostApiEntitlementSubscriptionsCreateApiArg, type PostApiEntitlementSubscriptionsCreateApiResponse, type PostApiEntitlementSubscriptionsWebhooksApiArg, type PostApiEntitlementSubscriptionsWebhooksApiResponse, type PostApiWorkspacesApiArg, type PostApiWorkspacesApiResponse, type PutApiWorkspacesByIdApiArg, type PutApiWorkspacesByIdApiResponse, type RegisterMeshmodelsApiArg, type RegisterMeshmodelsApiResponse, injectedRtkApi as cloudApi, useCreateEnvironmentMutation, useDeleteApiWorkspacesByIdMutation, useGetApiAcademyChallengesQuery, useGetApiAcademyLearningPathsQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation };