@meshery/schemas 0.1.1-2 → 0.1.1-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.
@@ -19,10 +19,7 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
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
21
  getApiAcademyContent: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>;
22
- getApiAcademyLearningPaths: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyLearningPathsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyLearningPathsApiResponse, "api", unknown>;
23
22
  getApiAcademyByTypeAndOrgIdSlug: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyByTypeAndOrgIdSlugApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyByTypeAndOrgIdSlugApiResponse, "api", unknown>;
24
- getApiAcademyChallenges: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyChallengesApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyChallengesApiResponse, "api", unknown>;
25
- getAcademyRegistrations: _reduxjs_toolkit_query.QueryDefinition<GetAcademyRegistrationsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetAcademyRegistrationsApiResponse, "api", unknown>;
26
23
  registerToAcademyContent: _reduxjs_toolkit_query.MutationDefinition<RegisterToAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, RegisterToAcademyContentApiResponse, "api", unknown>;
27
24
  getApiAcademyRegistrationsByContentId: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyRegistrationsByContentIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyRegistrationsByContentIdApiResponse, "api", unknown>;
28
25
  }, "api", never, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
@@ -392,15 +389,28 @@ type GetApiAcademyContentApiArg = {
392
389
  /** Search content by title */
393
390
  search?: string;
394
391
  };
395
- type GetApiAcademyLearningPathsApiResponse = {
396
- /** Total number of learning paths */
397
- total: number;
398
- data: {
399
- /** Id of the learning path */
400
- id: string;
401
- /** slug of the learning path */
402
- slug: string;
403
- type: "learning-path" | "challenge";
392
+ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
393
+ /** Id of the cirricula */
394
+ ID: string;
395
+ type: "learning-path" | "challenge" | "exam";
396
+ /** Organization ID that owns this learning path */
397
+ orgId: string;
398
+ /** Visibility of the cirricula */
399
+ visibility: "public" | "private";
400
+ /** Status of the cirricula */
401
+ status: "ready" | "archived" | "not_ready";
402
+ /** slug of the cirricula */
403
+ slug: string;
404
+ /** Level of the cirricula */
405
+ level: "beginner" | "intermediate" | "advanced";
406
+ /** When the cirricula item was created */
407
+ createdAt: string;
408
+ /** When the cirricula was last updated */
409
+ updatedAt: string;
410
+ /** Timestamp when the resource was deleted. */
411
+ deletedAt: string;
412
+ /** Additional metadata about the cirricula */
413
+ metadata: {
404
414
  /** Title of the learning path */
405
415
  title: string;
406
416
  /** Description of the learning path */
@@ -409,8 +419,6 @@ type GetApiAcademyLearningPathsApiResponse = {
409
419
  banner?: string | null;
410
420
  /** Canonical URL for the learning path */
411
421
  permalink: string;
412
- /** Organization ID that owns this learning path */
413
- orgId: string;
414
422
  /** List of courses in this learning path */
415
423
  courses?: {
416
424
  /** Title of the course */
@@ -424,58 +432,8 @@ type GetApiAcademyLearningPathsApiResponse = {
424
432
  /** Optional banner image */
425
433
  banner?: string | null;
426
434
  }[];
427
- }[];
428
- };
429
- type GetApiAcademyLearningPathsApiArg = {
430
- /** Filter learning paths by organization ID */
431
- orgId?: string;
432
- /** Search learning paths by title */
433
- search?: string;
434
- };
435
- type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
436
- /** Id of the learning path */
437
- id: string;
438
- /** slug of the learning path */
439
- slug: string;
440
- type: "learning-path" | "challenge";
441
- /** Title of the learning path */
442
- title: string;
443
- /** Description of the learning path */
444
- description: string;
445
- /** Optional banner image */
446
- banner?: string | null;
447
- /** Canonical URL for the learning path */
448
- permalink: string;
449
- /** Organization ID that owns this learning path */
450
- orgId: string;
451
- /** List of courses in this learning path */
452
- courses?: {
453
- /** Title of the course */
454
- title: string;
455
- /** URL to the course content */
456
- permalink: string;
457
- /** Course description */
458
- description?: string;
459
- /** Order of the course in the list */
460
- weight?: number;
461
- /** Optional banner image */
462
- banner?: string | null;
463
- }[];
464
- };
465
- type GetApiAcademyByTypeAndOrgIdSlugApiArg = {
466
- type: string;
467
- orgId: string;
468
- slug: string;
469
- };
470
- type GetApiAcademyChallengesApiResponse = {
471
- /** Total number of learning paths */
472
- total: number;
473
- data: {
474
- /** Id of the learning path */
475
- id: string;
476
- /** slug of the learning path */
477
- slug: string;
478
- type: "learning-path" | "challenge";
435
+ [key: string]: any;
436
+ } | {
479
437
  /** Title of the learning path */
480
438
  title: string;
481
439
  /** Description of the learning path */
@@ -484,8 +442,6 @@ type GetApiAcademyChallengesApiResponse = {
484
442
  banner?: string | null;
485
443
  /** Canonical URL for the learning path */
486
444
  permalink: string;
487
- /** Organization ID that owns this learning path */
488
- orgId: string;
489
445
  /** List of courses in this learning path */
490
446
  courses?: {
491
447
  /** Title of the course */
@@ -499,43 +455,13 @@ type GetApiAcademyChallengesApiResponse = {
499
455
  /** Optional banner image */
500
456
  banner?: string | null;
501
457
  }[];
502
- }[];
503
- };
504
- type GetApiAcademyChallengesApiArg = {
505
- /** Filter learning paths by organization ID */
506
- orgId?: string;
507
- /** Search learning paths by title */
508
- search?: string;
509
- };
510
- type GetAcademyRegistrationsApiResponse = {
511
- /** Total number of learning paths */
512
- total: number;
513
- data: {
514
- /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
515
- ID: string;
516
- /** ID of the organization */
517
- org_id: string;
518
- /** ID of the course content */
519
- content_id: string;
520
- /** ID of the user (foreign key to User) */
521
- user_id: string;
522
- /** Status of the user's course registration */
523
- status: "registered" | "in_progress" | "completed" | "failed" | "withdrawn";
524
- /** When the registration was updated */
525
- updated_at: string;
526
- /** When the registration was created */
527
- created_at: string;
528
- /** Timestamp when the resource was deleted. */
529
- deleted_at?: string;
530
- /** Additional metadata about the registration */
531
- metadata: {
532
- [key: string]: any;
533
- };
534
- }[];
458
+ [key: string]: any;
459
+ };
535
460
  };
536
- type GetAcademyRegistrationsApiArg = {
537
- /** filter by status */
538
- status: string;
461
+ type GetApiAcademyByTypeAndOrgIdSlugApiArg = {
462
+ type: string;
463
+ orgId: string;
464
+ slug: string;
539
465
  };
540
466
  type RegisterToAcademyContentApiResponse = {
541
467
  /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
@@ -563,7 +489,7 @@ type RegisterToAcademyContentApiArg = {
563
489
  body: {
564
490
  /** ID of the academy content to register for */
565
491
  content_id: string;
566
- content_type?: "learning-path" | "challenge";
492
+ content_type?: "learning-path" | "challenge" | "exam";
567
493
  };
568
494
  };
569
495
  type GetApiAcademyRegistrationsByContentIdApiResponse =
@@ -993,12 +919,12 @@ declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
993
919
  isError: true;
994
920
  error: unknown;
995
921
  }) & {
996
- status: _reduxjs_toolkit_query.QueryStatus;
922
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
997
923
  }>(arg: GetSubscriptionsApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
998
924
  skip?: boolean | undefined;
999
925
  refetchOnMountOrArgChange?: number | boolean | undefined;
1000
926
  } & {
1001
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
927
+ skip?: boolean | undefined;
1002
928
  selectFromResult?: ((state: ({
1003
929
  data?: undefined;
1004
930
  error?: undefined;
@@ -1075,7 +1001,7 @@ declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
1075
1001
  isError: true;
1076
1002
  error: unknown;
1077
1003
  }) & {
1078
- status: _reduxjs_toolkit_query.QueryStatus;
1004
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
1079
1005
  }) => R) | undefined;
1080
1006
  }) | undefined) => [R][R extends any ? 0 : never] & {
1081
1007
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetSubscriptionsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetSubscriptionsApiResponse, "api", unknown>>;
@@ -1639,12 +1565,12 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
1639
1565
  isError: true;
1640
1566
  error: unknown;
1641
1567
  }) & {
1642
- status: _reduxjs_toolkit_query.QueryStatus;
1568
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
1643
1569
  }>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
1644
1570
  skip?: boolean | undefined;
1645
1571
  refetchOnMountOrArgChange?: number | boolean | undefined;
1646
1572
  } & {
1647
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
1573
+ skip?: boolean | undefined;
1648
1574
  selectFromResult?: ((state: ({
1649
1575
  data?: undefined;
1650
1576
  error?: undefined;
@@ -1721,7 +1647,7 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
1721
1647
  isError: true;
1722
1648
  error: unknown;
1723
1649
  }) & {
1724
- status: _reduxjs_toolkit_query.QueryStatus;
1650
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
1725
1651
  }) => R) | undefined;
1726
1652
  }) | undefined) => [R][R extends any ? 0 : never] & {
1727
1653
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetPlansApiResponse, "api", unknown>>;
@@ -1802,12 +1728,12 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
1802
1728
  isError: true;
1803
1729
  error: unknown;
1804
1730
  }) & {
1805
- status: _reduxjs_toolkit_query.QueryStatus;
1731
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
1806
1732
  }>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
1807
1733
  skip?: boolean | undefined;
1808
1734
  refetchOnMountOrArgChange?: number | boolean | undefined;
1809
1735
  } & {
1810
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
1736
+ skip?: boolean | undefined;
1811
1737
  selectFromResult?: ((state: ({
1812
1738
  data?: undefined;
1813
1739
  error?: undefined;
@@ -1884,7 +1810,7 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
1884
1810
  isError: true;
1885
1811
  error: unknown;
1886
1812
  }) & {
1887
- status: _reduxjs_toolkit_query.QueryStatus;
1813
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
1888
1814
  }) => R) | undefined;
1889
1815
  }) | undefined) => [R][R extends any ? 0 : never] & {
1890
1816
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetFeaturesApiResponse, "api", unknown>>;
@@ -1965,12 +1891,12 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
1965
1891
  isError: true;
1966
1892
  error: unknown;
1967
1893
  }) & {
1968
- status: _reduxjs_toolkit_query.QueryStatus;
1894
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
1969
1895
  }>(arg: GetFeaturesByOrganizationApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
1970
1896
  skip?: boolean | undefined;
1971
1897
  refetchOnMountOrArgChange?: number | boolean | undefined;
1972
1898
  } & {
1973
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
1899
+ skip?: boolean | undefined;
1974
1900
  selectFromResult?: ((state: ({
1975
1901
  data?: undefined;
1976
1902
  error?: undefined;
@@ -2047,7 +1973,7 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
2047
1973
  isError: true;
2048
1974
  error: unknown;
2049
1975
  }) & {
2050
- status: _reduxjs_toolkit_query.QueryStatus;
1976
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
2051
1977
  }) => R) | undefined;
2052
1978
  }) | undefined) => [R][R extends any ? 0 : never] & {
2053
1979
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetFeaturesByOrganizationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetFeaturesByOrganizationApiResponse, "api", unknown>>;
@@ -2128,12 +2054,12 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
2128
2054
  isError: true;
2129
2055
  error: unknown;
2130
2056
  }) & {
2131
- status: _reduxjs_toolkit_query.QueryStatus;
2057
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
2132
2058
  }>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
2133
2059
  skip?: boolean | undefined;
2134
2060
  refetchOnMountOrArgChange?: number | boolean | undefined;
2135
2061
  } & {
2136
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
2062
+ skip?: boolean | undefined;
2137
2063
  selectFromResult?: ((state: ({
2138
2064
  data?: undefined;
2139
2065
  error?: undefined;
@@ -2210,7 +2136,7 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
2210
2136
  isError: true;
2211
2137
  error: unknown;
2212
2138
  }) & {
2213
- status: _reduxjs_toolkit_query.QueryStatus;
2139
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
2214
2140
  }) => R) | undefined;
2215
2141
  }) | undefined) => [R][R extends any ? 0 : never] & {
2216
2142
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiWorkspacesApiResponse, "api", unknown>>;
@@ -2452,12 +2378,12 @@ declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
2452
2378
  isError: true;
2453
2379
  error: unknown;
2454
2380
  }) & {
2455
- status: _reduxjs_toolkit_query.QueryStatus;
2381
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
2456
2382
  }>(arg: GetApiWorkspacesByIdApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
2457
2383
  skip?: boolean | undefined;
2458
2384
  refetchOnMountOrArgChange?: number | boolean | undefined;
2459
2385
  } & {
2460
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
2386
+ skip?: boolean | undefined;
2461
2387
  selectFromResult?: ((state: ({
2462
2388
  data?: undefined;
2463
2389
  error?: undefined;
@@ -2534,7 +2460,7 @@ declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
2534
2460
  isError: true;
2535
2461
  error: unknown;
2536
2462
  }) & {
2537
- status: _reduxjs_toolkit_query.QueryStatus;
2463
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
2538
2464
  }) => R) | undefined;
2539
2465
  }) | undefined) => [R][R extends any ? 0 : never] & {
2540
2466
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetApiWorkspacesByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiWorkspacesByIdApiResponse, "api", unknown>>;
@@ -3098,12 +3024,12 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
3098
3024
  isError: true;
3099
3025
  error: unknown;
3100
3026
  }) & {
3101
- status: _reduxjs_toolkit_query.QueryStatus;
3027
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
3102
3028
  }>(arg: GetEnvironmentsApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
3103
3029
  skip?: boolean | undefined;
3104
3030
  refetchOnMountOrArgChange?: number | boolean | undefined;
3105
3031
  } & {
3106
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
3032
+ skip?: boolean | undefined;
3107
3033
  selectFromResult?: ((state: ({
3108
3034
  data?: undefined;
3109
3035
  error?: undefined;
@@ -3180,7 +3106,7 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
3180
3106
  isError: true;
3181
3107
  error: unknown;
3182
3108
  }) & {
3183
- status: _reduxjs_toolkit_query.QueryStatus;
3109
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
3184
3110
  }) => R) | undefined;
3185
3111
  }) | undefined) => [R][R extends any ? 0 : never] & {
3186
3112
  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>>;
@@ -3261,12 +3187,12 @@ declare const useGetApiAcademyContentQuery: <R extends Record<string, any> = ({
3261
3187
  isError: true;
3262
3188
  error: unknown;
3263
3189
  }) & {
3264
- status: _reduxjs_toolkit_query.QueryStatus;
3190
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
3265
3191
  }>(arg: GetApiAcademyContentApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
3266
3192
  skip?: boolean | undefined;
3267
3193
  refetchOnMountOrArgChange?: number | boolean | undefined;
3268
3194
  } & {
3269
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
3195
+ skip?: boolean | undefined;
3270
3196
  selectFromResult?: ((state: ({
3271
3197
  data?: undefined;
3272
3198
  error?: undefined;
@@ -3343,174 +3269,11 @@ declare const useGetApiAcademyContentQuery: <R extends Record<string, any> = ({
3343
3269
  isError: true;
3344
3270
  error: unknown;
3345
3271
  }) & {
3346
- status: _reduxjs_toolkit_query.QueryStatus;
3272
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
3347
3273
  }) => R) | undefined;
3348
3274
  }) | undefined) => [R][R extends any ? 0 : never] & {
3349
3275
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetApiAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>;
3350
3276
  };
3351
- declare const useGetApiAcademyLearningPathsQuery: <R extends Record<string, any> = ({
3352
- data?: undefined;
3353
- error?: undefined;
3354
- fulfilledTimeStamp?: undefined;
3355
- originalArgs?: undefined;
3356
- requestId?: undefined;
3357
- endpointName?: string | undefined;
3358
- startedTimeStamp?: undefined;
3359
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3360
- currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3361
- isLoading: false;
3362
- isFetching: false;
3363
- isSuccess: false;
3364
- isError: false;
3365
- isUninitialized: true;
3366
- } | {
3367
- error?: unknown;
3368
- fulfilledTimeStamp?: number | undefined;
3369
- originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3370
- requestId?: string | undefined;
3371
- endpointName?: string | undefined;
3372
- startedTimeStamp?: number | undefined;
3373
- status: _reduxjs_toolkit_query.QueryStatus;
3374
- currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3375
- isUninitialized: false;
3376
- isSuccess: false;
3377
- isError: false;
3378
- isLoading: true;
3379
- isFetching: boolean;
3380
- data: undefined;
3381
- } | {
3382
- originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3383
- requestId?: string | undefined;
3384
- endpointName?: string | undefined;
3385
- startedTimeStamp?: number | undefined;
3386
- status: _reduxjs_toolkit_query.QueryStatus;
3387
- currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3388
- isUninitialized: false;
3389
- isLoading: false;
3390
- isError: false;
3391
- isSuccess: true;
3392
- isFetching: true;
3393
- error: undefined;
3394
- data: GetApiAcademyLearningPathsApiResponse;
3395
- fulfilledTimeStamp: number;
3396
- } | {
3397
- originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3398
- requestId?: string | undefined;
3399
- endpointName?: string | undefined;
3400
- startedTimeStamp?: number | undefined;
3401
- status: _reduxjs_toolkit_query.QueryStatus;
3402
- isUninitialized: false;
3403
- isLoading: false;
3404
- isError: false;
3405
- isSuccess: true;
3406
- isFetching: false;
3407
- error: undefined;
3408
- data: GetApiAcademyLearningPathsApiResponse;
3409
- fulfilledTimeStamp: number;
3410
- currentData: GetApiAcademyLearningPathsApiResponse;
3411
- } | {
3412
- data?: GetApiAcademyLearningPathsApiResponse | undefined;
3413
- fulfilledTimeStamp?: number | undefined;
3414
- originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3415
- requestId?: string | undefined;
3416
- endpointName?: string | undefined;
3417
- startedTimeStamp?: number | undefined;
3418
- status: _reduxjs_toolkit_query.QueryStatus;
3419
- currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3420
- isUninitialized: false;
3421
- isLoading: false;
3422
- isFetching: false;
3423
- isSuccess: false;
3424
- isError: true;
3425
- error: unknown;
3426
- }) & {
3427
- status: _reduxjs_toolkit_query.QueryStatus;
3428
- }>(arg: GetApiAcademyLearningPathsApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
3429
- skip?: boolean | undefined;
3430
- refetchOnMountOrArgChange?: number | boolean | undefined;
3431
- } & {
3432
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
3433
- selectFromResult?: ((state: ({
3434
- data?: undefined;
3435
- error?: undefined;
3436
- fulfilledTimeStamp?: undefined;
3437
- originalArgs?: undefined;
3438
- requestId?: undefined;
3439
- endpointName?: string | undefined;
3440
- startedTimeStamp?: undefined;
3441
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3442
- currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3443
- isLoading: false;
3444
- isFetching: false;
3445
- isSuccess: false;
3446
- isError: false;
3447
- isUninitialized: true;
3448
- } | {
3449
- error?: unknown;
3450
- fulfilledTimeStamp?: number | undefined;
3451
- originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3452
- requestId?: string | undefined;
3453
- endpointName?: string | undefined;
3454
- startedTimeStamp?: number | undefined;
3455
- status: _reduxjs_toolkit_query.QueryStatus;
3456
- currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3457
- isUninitialized: false;
3458
- isSuccess: false;
3459
- isError: false;
3460
- isLoading: true;
3461
- isFetching: boolean;
3462
- data: undefined;
3463
- } | {
3464
- originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3465
- requestId?: string | undefined;
3466
- endpointName?: string | undefined;
3467
- startedTimeStamp?: number | undefined;
3468
- status: _reduxjs_toolkit_query.QueryStatus;
3469
- currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3470
- isUninitialized: false;
3471
- isLoading: false;
3472
- isError: false;
3473
- isSuccess: true;
3474
- isFetching: true;
3475
- error: undefined;
3476
- data: GetApiAcademyLearningPathsApiResponse;
3477
- fulfilledTimeStamp: number;
3478
- } | {
3479
- originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3480
- requestId?: string | undefined;
3481
- endpointName?: string | undefined;
3482
- startedTimeStamp?: number | undefined;
3483
- status: _reduxjs_toolkit_query.QueryStatus;
3484
- isUninitialized: false;
3485
- isLoading: false;
3486
- isError: false;
3487
- isSuccess: true;
3488
- isFetching: false;
3489
- error: undefined;
3490
- data: GetApiAcademyLearningPathsApiResponse;
3491
- fulfilledTimeStamp: number;
3492
- currentData: GetApiAcademyLearningPathsApiResponse;
3493
- } | {
3494
- data?: GetApiAcademyLearningPathsApiResponse | undefined;
3495
- fulfilledTimeStamp?: number | undefined;
3496
- originalArgs?: GetApiAcademyLearningPathsApiArg | undefined;
3497
- requestId?: string | undefined;
3498
- endpointName?: string | undefined;
3499
- startedTimeStamp?: number | undefined;
3500
- status: _reduxjs_toolkit_query.QueryStatus;
3501
- currentData?: GetApiAcademyLearningPathsApiResponse | undefined;
3502
- isUninitialized: false;
3503
- isLoading: false;
3504
- isFetching: false;
3505
- isSuccess: false;
3506
- isError: true;
3507
- error: unknown;
3508
- }) & {
3509
- status: _reduxjs_toolkit_query.QueryStatus;
3510
- }) => R) | undefined;
3511
- }) | undefined) => [R][R extends any ? 0 : never] & {
3512
- 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>>;
3513
- };
3514
3277
  declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string, any> = ({
3515
3278
  data?: undefined;
3516
3279
  error?: undefined;
@@ -3587,12 +3350,12 @@ declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string,
3587
3350
  isError: true;
3588
3351
  error: unknown;
3589
3352
  }) & {
3590
- status: _reduxjs_toolkit_query.QueryStatus;
3353
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
3591
3354
  }>(arg: GetApiAcademyByTypeAndOrgIdSlugApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
3592
3355
  skip?: boolean | undefined;
3593
3356
  refetchOnMountOrArgChange?: number | boolean | undefined;
3594
3357
  } & {
3595
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
3358
+ skip?: boolean | undefined;
3596
3359
  selectFromResult?: ((state: ({
3597
3360
  data?: undefined;
3598
3361
  error?: undefined;
@@ -3669,337 +3432,11 @@ declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string,
3669
3432
  isError: true;
3670
3433
  error: unknown;
3671
3434
  }) & {
3672
- status: _reduxjs_toolkit_query.QueryStatus;
3435
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
3673
3436
  }) => R) | undefined;
3674
3437
  }) | undefined) => [R][R extends any ? 0 : never] & {
3675
3438
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetApiAcademyByTypeAndOrgIdSlugApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyByTypeAndOrgIdSlugApiResponse, "api", unknown>>;
3676
3439
  };
3677
- declare const useGetApiAcademyChallengesQuery: <R extends Record<string, any> = ({
3678
- data?: undefined;
3679
- error?: undefined;
3680
- fulfilledTimeStamp?: undefined;
3681
- originalArgs?: undefined;
3682
- requestId?: undefined;
3683
- endpointName?: string | undefined;
3684
- startedTimeStamp?: undefined;
3685
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3686
- currentData?: GetApiAcademyChallengesApiResponse | undefined;
3687
- isLoading: false;
3688
- isFetching: false;
3689
- isSuccess: false;
3690
- isError: false;
3691
- isUninitialized: true;
3692
- } | {
3693
- error?: unknown;
3694
- fulfilledTimeStamp?: number | undefined;
3695
- originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3696
- requestId?: string | undefined;
3697
- endpointName?: string | undefined;
3698
- startedTimeStamp?: number | undefined;
3699
- status: _reduxjs_toolkit_query.QueryStatus;
3700
- currentData?: GetApiAcademyChallengesApiResponse | undefined;
3701
- isUninitialized: false;
3702
- isSuccess: false;
3703
- isError: false;
3704
- isLoading: true;
3705
- isFetching: boolean;
3706
- data: undefined;
3707
- } | {
3708
- originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3709
- requestId?: string | undefined;
3710
- endpointName?: string | undefined;
3711
- startedTimeStamp?: number | undefined;
3712
- status: _reduxjs_toolkit_query.QueryStatus;
3713
- currentData?: GetApiAcademyChallengesApiResponse | undefined;
3714
- isUninitialized: false;
3715
- isLoading: false;
3716
- isError: false;
3717
- isSuccess: true;
3718
- isFetching: true;
3719
- error: undefined;
3720
- data: GetApiAcademyChallengesApiResponse;
3721
- fulfilledTimeStamp: number;
3722
- } | {
3723
- originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3724
- requestId?: string | undefined;
3725
- endpointName?: string | undefined;
3726
- startedTimeStamp?: number | undefined;
3727
- status: _reduxjs_toolkit_query.QueryStatus;
3728
- isUninitialized: false;
3729
- isLoading: false;
3730
- isError: false;
3731
- isSuccess: true;
3732
- isFetching: false;
3733
- error: undefined;
3734
- data: GetApiAcademyChallengesApiResponse;
3735
- fulfilledTimeStamp: number;
3736
- currentData: GetApiAcademyChallengesApiResponse;
3737
- } | {
3738
- data?: GetApiAcademyChallengesApiResponse | undefined;
3739
- fulfilledTimeStamp?: number | undefined;
3740
- originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3741
- requestId?: string | undefined;
3742
- endpointName?: string | undefined;
3743
- startedTimeStamp?: number | undefined;
3744
- status: _reduxjs_toolkit_query.QueryStatus;
3745
- currentData?: GetApiAcademyChallengesApiResponse | undefined;
3746
- isUninitialized: false;
3747
- isLoading: false;
3748
- isFetching: false;
3749
- isSuccess: false;
3750
- isError: true;
3751
- error: unknown;
3752
- }) & {
3753
- status: _reduxjs_toolkit_query.QueryStatus;
3754
- }>(arg: GetApiAcademyChallengesApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
3755
- skip?: boolean | undefined;
3756
- refetchOnMountOrArgChange?: number | boolean | undefined;
3757
- } & {
3758
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
3759
- selectFromResult?: ((state: ({
3760
- data?: undefined;
3761
- error?: undefined;
3762
- fulfilledTimeStamp?: undefined;
3763
- originalArgs?: undefined;
3764
- requestId?: undefined;
3765
- endpointName?: string | undefined;
3766
- startedTimeStamp?: undefined;
3767
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3768
- currentData?: GetApiAcademyChallengesApiResponse | undefined;
3769
- isLoading: false;
3770
- isFetching: false;
3771
- isSuccess: false;
3772
- isError: false;
3773
- isUninitialized: true;
3774
- } | {
3775
- error?: unknown;
3776
- fulfilledTimeStamp?: number | undefined;
3777
- originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3778
- requestId?: string | undefined;
3779
- endpointName?: string | undefined;
3780
- startedTimeStamp?: number | undefined;
3781
- status: _reduxjs_toolkit_query.QueryStatus;
3782
- currentData?: GetApiAcademyChallengesApiResponse | undefined;
3783
- isUninitialized: false;
3784
- isSuccess: false;
3785
- isError: false;
3786
- isLoading: true;
3787
- isFetching: boolean;
3788
- data: undefined;
3789
- } | {
3790
- originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3791
- requestId?: string | undefined;
3792
- endpointName?: string | undefined;
3793
- startedTimeStamp?: number | undefined;
3794
- status: _reduxjs_toolkit_query.QueryStatus;
3795
- currentData?: GetApiAcademyChallengesApiResponse | undefined;
3796
- isUninitialized: false;
3797
- isLoading: false;
3798
- isError: false;
3799
- isSuccess: true;
3800
- isFetching: true;
3801
- error: undefined;
3802
- data: GetApiAcademyChallengesApiResponse;
3803
- fulfilledTimeStamp: number;
3804
- } | {
3805
- originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3806
- requestId?: string | undefined;
3807
- endpointName?: string | undefined;
3808
- startedTimeStamp?: number | undefined;
3809
- status: _reduxjs_toolkit_query.QueryStatus;
3810
- isUninitialized: false;
3811
- isLoading: false;
3812
- isError: false;
3813
- isSuccess: true;
3814
- isFetching: false;
3815
- error: undefined;
3816
- data: GetApiAcademyChallengesApiResponse;
3817
- fulfilledTimeStamp: number;
3818
- currentData: GetApiAcademyChallengesApiResponse;
3819
- } | {
3820
- data?: GetApiAcademyChallengesApiResponse | undefined;
3821
- fulfilledTimeStamp?: number | undefined;
3822
- originalArgs?: GetApiAcademyChallengesApiArg | undefined;
3823
- requestId?: string | undefined;
3824
- endpointName?: string | undefined;
3825
- startedTimeStamp?: number | undefined;
3826
- status: _reduxjs_toolkit_query.QueryStatus;
3827
- currentData?: GetApiAcademyChallengesApiResponse | undefined;
3828
- isUninitialized: false;
3829
- isLoading: false;
3830
- isFetching: false;
3831
- isSuccess: false;
3832
- isError: true;
3833
- error: unknown;
3834
- }) & {
3835
- status: _reduxjs_toolkit_query.QueryStatus;
3836
- }) => R) | undefined;
3837
- }) | undefined) => [R][R extends any ? 0 : never] & {
3838
- 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>>;
3839
- };
3840
- declare const useGetAcademyRegistrationsQuery: <R extends Record<string, any> = ({
3841
- data?: undefined;
3842
- error?: undefined;
3843
- fulfilledTimeStamp?: undefined;
3844
- originalArgs?: undefined;
3845
- requestId?: undefined;
3846
- endpointName?: string | undefined;
3847
- startedTimeStamp?: undefined;
3848
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3849
- currentData?: GetAcademyRegistrationsApiResponse | undefined;
3850
- isLoading: false;
3851
- isFetching: false;
3852
- isSuccess: false;
3853
- isError: false;
3854
- isUninitialized: true;
3855
- } | {
3856
- error?: unknown;
3857
- fulfilledTimeStamp?: number | undefined;
3858
- originalArgs?: GetAcademyRegistrationsApiArg | undefined;
3859
- requestId?: string | undefined;
3860
- endpointName?: string | undefined;
3861
- startedTimeStamp?: number | undefined;
3862
- status: _reduxjs_toolkit_query.QueryStatus;
3863
- currentData?: GetAcademyRegistrationsApiResponse | undefined;
3864
- isUninitialized: false;
3865
- isSuccess: false;
3866
- isError: false;
3867
- isLoading: true;
3868
- isFetching: boolean;
3869
- data: undefined;
3870
- } | {
3871
- originalArgs?: GetAcademyRegistrationsApiArg | undefined;
3872
- requestId?: string | undefined;
3873
- endpointName?: string | undefined;
3874
- startedTimeStamp?: number | undefined;
3875
- status: _reduxjs_toolkit_query.QueryStatus;
3876
- currentData?: GetAcademyRegistrationsApiResponse | undefined;
3877
- isUninitialized: false;
3878
- isLoading: false;
3879
- isError: false;
3880
- isSuccess: true;
3881
- isFetching: true;
3882
- error: undefined;
3883
- data: GetAcademyRegistrationsApiResponse;
3884
- fulfilledTimeStamp: number;
3885
- } | {
3886
- originalArgs?: GetAcademyRegistrationsApiArg | undefined;
3887
- requestId?: string | undefined;
3888
- endpointName?: string | undefined;
3889
- startedTimeStamp?: number | undefined;
3890
- status: _reduxjs_toolkit_query.QueryStatus;
3891
- isUninitialized: false;
3892
- isLoading: false;
3893
- isError: false;
3894
- isSuccess: true;
3895
- isFetching: false;
3896
- error: undefined;
3897
- data: GetAcademyRegistrationsApiResponse;
3898
- fulfilledTimeStamp: number;
3899
- currentData: GetAcademyRegistrationsApiResponse;
3900
- } | {
3901
- data?: GetAcademyRegistrationsApiResponse | undefined;
3902
- fulfilledTimeStamp?: number | undefined;
3903
- originalArgs?: GetAcademyRegistrationsApiArg | undefined;
3904
- requestId?: string | undefined;
3905
- endpointName?: string | undefined;
3906
- startedTimeStamp?: number | undefined;
3907
- status: _reduxjs_toolkit_query.QueryStatus;
3908
- currentData?: GetAcademyRegistrationsApiResponse | undefined;
3909
- isUninitialized: false;
3910
- isLoading: false;
3911
- isFetching: false;
3912
- isSuccess: false;
3913
- isError: true;
3914
- error: unknown;
3915
- }) & {
3916
- status: _reduxjs_toolkit_query.QueryStatus;
3917
- }>(arg: GetAcademyRegistrationsApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
3918
- skip?: boolean | undefined;
3919
- refetchOnMountOrArgChange?: number | boolean | undefined;
3920
- } & {
3921
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
3922
- selectFromResult?: ((state: ({
3923
- data?: undefined;
3924
- error?: undefined;
3925
- fulfilledTimeStamp?: undefined;
3926
- originalArgs?: undefined;
3927
- requestId?: undefined;
3928
- endpointName?: string | undefined;
3929
- startedTimeStamp?: undefined;
3930
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3931
- currentData?: GetAcademyRegistrationsApiResponse | undefined;
3932
- isLoading: false;
3933
- isFetching: false;
3934
- isSuccess: false;
3935
- isError: false;
3936
- isUninitialized: true;
3937
- } | {
3938
- error?: unknown;
3939
- fulfilledTimeStamp?: number | undefined;
3940
- originalArgs?: GetAcademyRegistrationsApiArg | undefined;
3941
- requestId?: string | undefined;
3942
- endpointName?: string | undefined;
3943
- startedTimeStamp?: number | undefined;
3944
- status: _reduxjs_toolkit_query.QueryStatus;
3945
- currentData?: GetAcademyRegistrationsApiResponse | undefined;
3946
- isUninitialized: false;
3947
- isSuccess: false;
3948
- isError: false;
3949
- isLoading: true;
3950
- isFetching: boolean;
3951
- data: undefined;
3952
- } | {
3953
- originalArgs?: GetAcademyRegistrationsApiArg | undefined;
3954
- requestId?: string | undefined;
3955
- endpointName?: string | undefined;
3956
- startedTimeStamp?: number | undefined;
3957
- status: _reduxjs_toolkit_query.QueryStatus;
3958
- currentData?: GetAcademyRegistrationsApiResponse | undefined;
3959
- isUninitialized: false;
3960
- isLoading: false;
3961
- isError: false;
3962
- isSuccess: true;
3963
- isFetching: true;
3964
- error: undefined;
3965
- data: GetAcademyRegistrationsApiResponse;
3966
- fulfilledTimeStamp: number;
3967
- } | {
3968
- originalArgs?: GetAcademyRegistrationsApiArg | undefined;
3969
- requestId?: string | undefined;
3970
- endpointName?: string | undefined;
3971
- startedTimeStamp?: number | undefined;
3972
- status: _reduxjs_toolkit_query.QueryStatus;
3973
- isUninitialized: false;
3974
- isLoading: false;
3975
- isError: false;
3976
- isSuccess: true;
3977
- isFetching: false;
3978
- error: undefined;
3979
- data: GetAcademyRegistrationsApiResponse;
3980
- fulfilledTimeStamp: number;
3981
- currentData: GetAcademyRegistrationsApiResponse;
3982
- } | {
3983
- data?: GetAcademyRegistrationsApiResponse | undefined;
3984
- fulfilledTimeStamp?: number | undefined;
3985
- originalArgs?: GetAcademyRegistrationsApiArg | undefined;
3986
- requestId?: string | undefined;
3987
- endpointName?: string | undefined;
3988
- startedTimeStamp?: number | undefined;
3989
- status: _reduxjs_toolkit_query.QueryStatus;
3990
- currentData?: GetAcademyRegistrationsApiResponse | undefined;
3991
- isUninitialized: false;
3992
- isLoading: false;
3993
- isFetching: false;
3994
- isSuccess: false;
3995
- isError: true;
3996
- error: unknown;
3997
- }) & {
3998
- status: _reduxjs_toolkit_query.QueryStatus;
3999
- }) => R) | undefined;
4000
- }) | undefined) => [R][R extends any ? 0 : never] & {
4001
- refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetAcademyRegistrationsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetAcademyRegistrationsApiResponse, "api", unknown>>;
4002
- };
4003
3440
  declare const useRegisterToAcademyContentMutation: <R extends Record<string, any> = ({
4004
3441
  requestId?: undefined;
4005
3442
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -4237,12 +3674,12 @@ declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<s
4237
3674
  isError: true;
4238
3675
  error: unknown;
4239
3676
  }) & {
4240
- status: _reduxjs_toolkit_query.QueryStatus;
3677
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
4241
3678
  }>(arg: GetApiAcademyRegistrationsByContentIdApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
4242
3679
  skip?: boolean | undefined;
4243
3680
  refetchOnMountOrArgChange?: number | boolean | undefined;
4244
3681
  } & {
4245
- skip?: boolean | undefined; /** Workspaces serve as a virtual space for your team-based work, allows you to control access and more, Provide a detailed description to clarify the purpose of this workspace. Remember you can changes description of workspace after it's creations too. Learn more about workspaces [here](https://docs.meshery.io/concepts/logical/workspaces) */
3682
+ skip?: boolean | undefined;
4246
3683
  selectFromResult?: ((state: ({
4247
3684
  data?: undefined;
4248
3685
  error?: undefined;
@@ -4319,10 +3756,10 @@ declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<s
4319
3756
  isError: true;
4320
3757
  error: unknown;
4321
3758
  }) & {
4322
- status: _reduxjs_toolkit_query.QueryStatus;
3759
+ status: _reduxjs_toolkit_query.QueryStatus; /** Course description */
4323
3760
  }) => R) | undefined;
4324
3761
  }) | undefined) => [R][R extends any ? 0 : never] & {
4325
3762
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetApiAcademyRegistrationsByContentIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyRegistrationsByContentIdApiResponse, "api", unknown>>;
4326
3763
  };
4327
3764
 
4328
- export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type GetAcademyRegistrationsApiArg, type GetAcademyRegistrationsApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyChallengesApiArg, type GetApiAcademyChallengesApiResponse, type GetApiAcademyContentApiArg, type GetApiAcademyContentApiResponse, type GetApiAcademyLearningPathsApiArg, type GetApiAcademyLearningPathsApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, 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, type RegisterToAcademyContentApiArg, type RegisterToAcademyContentApiResponse, injectedRtkApi as cloudApi, useCreateEnvironmentMutation, useDeleteApiWorkspacesByIdMutation, useGetAcademyRegistrationsQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyChallengesQuery, useGetApiAcademyContentQuery, useGetApiAcademyLearningPathsQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation };
3765
+ export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyContentApiArg, type GetApiAcademyContentApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, 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, type RegisterToAcademyContentApiArg, type RegisterToAcademyContentApiResponse, injectedRtkApi as cloudApi, useCreateEnvironmentMutation, useDeleteApiWorkspacesByIdMutation, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyContentQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation };