@meshery/schemas 0.8.70 → 0.8.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cloudApi.d.mts +389 -18
- package/dist/cloudApi.d.ts +389 -18
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/mesheryApi.d.mts +82 -82
- package/dist/mesheryApi.d.ts +82 -82
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -19,6 +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
|
getMyAcademyCirricula: _reduxjs_toolkit_query.QueryDefinition<GetMyAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>;
|
|
22
|
+
createAcademyCurricula: _reduxjs_toolkit_query.MutationDefinition<CreateAcademyCurriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateAcademyCurriculaApiResponse, "api", unknown>;
|
|
22
23
|
getAcademyCirricula: _reduxjs_toolkit_query.QueryDefinition<GetAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>;
|
|
23
24
|
getApiAcademyByTypeAndOrgIdSlug: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyByTypeAndOrgIdSlugApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetApiAcademyByTypeAndOrgIdSlugApiResponse, "api", unknown>;
|
|
24
25
|
registerToAcademyContent: _reduxjs_toolkit_query.MutationDefinition<RegisterToAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, RegisterToAcademyContentApiResponse, "api", unknown>;
|
|
@@ -406,6 +407,209 @@ type GetMyAcademyCirriculaApiArg = {
|
|
|
406
407
|
/** Filter content by organization IDs */
|
|
407
408
|
orgId?: string[];
|
|
408
409
|
};
|
|
410
|
+
type CreateAcademyCurriculaApiResponse = {
|
|
411
|
+
/** Id of the cirricula */
|
|
412
|
+
id: string;
|
|
413
|
+
type: "learning-path" | "challenge" | "certification";
|
|
414
|
+
/** Organization ID that owns this learning path */
|
|
415
|
+
orgId: string;
|
|
416
|
+
/** Visibility of the cirricula */
|
|
417
|
+
visibility: "public" | "private";
|
|
418
|
+
/** Status of the cirricula */
|
|
419
|
+
status: "ready" | "archived" | "not_ready";
|
|
420
|
+
/** slug of the cirricula */
|
|
421
|
+
slug: string;
|
|
422
|
+
/** Level of the cirricula */
|
|
423
|
+
level: "beginner" | "intermediate" | "advanced";
|
|
424
|
+
/** ID of the badge to be awarded on completion of this curricula */
|
|
425
|
+
badge_id?: string;
|
|
426
|
+
/** ID of the invite associated with this cirricula */
|
|
427
|
+
invite_id?: string;
|
|
428
|
+
/** ID of the workspace to which this cirricula belongs */
|
|
429
|
+
workspace_id?: string;
|
|
430
|
+
/** When the cirricula item was created */
|
|
431
|
+
createdAt: string;
|
|
432
|
+
/** When the cirricula was last updated */
|
|
433
|
+
updatedAt: string;
|
|
434
|
+
/** Timestamp when the resource was deleted. */
|
|
435
|
+
deletedAt: string;
|
|
436
|
+
/** Additional metadata about the cirricula */
|
|
437
|
+
metadata: {
|
|
438
|
+
/** Title of the learning path */
|
|
439
|
+
title: string;
|
|
440
|
+
/** Description of the learning path */
|
|
441
|
+
description: string;
|
|
442
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
443
|
+
banner?: string | null;
|
|
444
|
+
/** Canonical URL for the learning path */
|
|
445
|
+
permalink: string;
|
|
446
|
+
badge?: {
|
|
447
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
448
|
+
id: string;
|
|
449
|
+
/** The ID of the organization in which this badge is available . */
|
|
450
|
+
org_id: string;
|
|
451
|
+
/** unique identifier for the badge ( auto generated ) */
|
|
452
|
+
label: string;
|
|
453
|
+
/** Concise descriptor for the badge or certificate. */
|
|
454
|
+
name: string;
|
|
455
|
+
/** A description of the milestone achieved, often including criteria for receiving this recognition. */
|
|
456
|
+
description: string;
|
|
457
|
+
/** URL to the badge image */
|
|
458
|
+
image_url: string;
|
|
459
|
+
/** Timestamp when the resource was created. */
|
|
460
|
+
created_at: string;
|
|
461
|
+
/** Timestamp when the resource was updated. */
|
|
462
|
+
updated_at: string;
|
|
463
|
+
/** Timestamp when the resource was deleted, if applicable */
|
|
464
|
+
deleted_at: string;
|
|
465
|
+
};
|
|
466
|
+
certificate?: {
|
|
467
|
+
/** Unique identifier for the certificate */
|
|
468
|
+
id: string;
|
|
469
|
+
/** UUID of the organization that issued the certificate */
|
|
470
|
+
org_id: string;
|
|
471
|
+
/** ID of the recipient (user) who received the certificate */
|
|
472
|
+
recipient_id: string;
|
|
473
|
+
/** Name of the recipient (user) who received the certificate */
|
|
474
|
+
recipient_name: string;
|
|
475
|
+
/** Title of the certificate */
|
|
476
|
+
title: string;
|
|
477
|
+
/** Description of the certificate */
|
|
478
|
+
description: string;
|
|
479
|
+
/** List of issuing authorities for the certificate */
|
|
480
|
+
issuing_authorities: {
|
|
481
|
+
/** Name of the issuing authority */
|
|
482
|
+
name: string;
|
|
483
|
+
/** Role of the issuing authority */
|
|
484
|
+
role?: string;
|
|
485
|
+
/** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
|
|
486
|
+
signature_url?: string;
|
|
487
|
+
}[];
|
|
488
|
+
/** Date when the certificate was issued */
|
|
489
|
+
issued_date: string;
|
|
490
|
+
/** Date when the certificate expires (optional) */
|
|
491
|
+
expiration_date?: string;
|
|
492
|
+
};
|
|
493
|
+
/** List of children items in the top-level curricula */
|
|
494
|
+
children?: {
|
|
495
|
+
/** Unique identifier for the course */
|
|
496
|
+
id: string;
|
|
497
|
+
/** Title of the course */
|
|
498
|
+
title: string;
|
|
499
|
+
/** URL to the course content */
|
|
500
|
+
permalink: string;
|
|
501
|
+
/** Course description */
|
|
502
|
+
description: string;
|
|
503
|
+
/** A numeric value to determine the display order. A smaller number appears first. If not specified, items will be sorted alphabetically by title. */
|
|
504
|
+
weight?: number;
|
|
505
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
506
|
+
banner?: string | null;
|
|
507
|
+
/** Type of the content (e.g., learning-path, challenge, certification) */
|
|
508
|
+
type?: "learning-path" | "challenge" | "certification";
|
|
509
|
+
/** List of child nodes (sub-courses or modules) */
|
|
510
|
+
children?: object[];
|
|
511
|
+
}[];
|
|
512
|
+
[key: string]: any;
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
type CreateAcademyCurriculaApiArg = {
|
|
516
|
+
body: {
|
|
517
|
+
/** Type of the curricula */
|
|
518
|
+
type: "learning-path" | "challenge" | "certification";
|
|
519
|
+
/** Title of the curricula */
|
|
520
|
+
title: string;
|
|
521
|
+
/** Organization ID that owns this curricula */
|
|
522
|
+
orgId: string;
|
|
523
|
+
/** ID of the workspace to which this cirricula belongs */
|
|
524
|
+
workspace_id: string;
|
|
525
|
+
/** ID of the badge to be awarded on completion of this curricula */
|
|
526
|
+
badge_id?: string;
|
|
527
|
+
/** ID of the team associated with this curricula */
|
|
528
|
+
team_id: string;
|
|
529
|
+
/** Expiry time for curricula access */
|
|
530
|
+
access_expires_at?: string;
|
|
531
|
+
/** Current access status of the curricula */
|
|
532
|
+
access_status: "enabled" | "disabled";
|
|
533
|
+
/** Additional metadata about the cirricula */
|
|
534
|
+
metadata: {
|
|
535
|
+
/** Title of the learning path */
|
|
536
|
+
title: string;
|
|
537
|
+
/** Description of the learning path */
|
|
538
|
+
description: string;
|
|
539
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
540
|
+
banner?: string | null;
|
|
541
|
+
/** Canonical URL for the learning path */
|
|
542
|
+
permalink: string;
|
|
543
|
+
badge?: {
|
|
544
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
545
|
+
id: string;
|
|
546
|
+
/** The ID of the organization in which this badge is available . */
|
|
547
|
+
org_id: string;
|
|
548
|
+
/** unique identifier for the badge ( auto generated ) */
|
|
549
|
+
label: string;
|
|
550
|
+
/** Concise descriptor for the badge or certificate. */
|
|
551
|
+
name: string;
|
|
552
|
+
/** A description of the milestone achieved, often including criteria for receiving this recognition. */
|
|
553
|
+
description: string;
|
|
554
|
+
/** URL to the badge image */
|
|
555
|
+
image_url: string;
|
|
556
|
+
/** Timestamp when the resource was created. */
|
|
557
|
+
created_at: string;
|
|
558
|
+
/** Timestamp when the resource was updated. */
|
|
559
|
+
updated_at: string;
|
|
560
|
+
/** Timestamp when the resource was deleted, if applicable */
|
|
561
|
+
deleted_at: string;
|
|
562
|
+
};
|
|
563
|
+
certificate?: {
|
|
564
|
+
/** Unique identifier for the certificate */
|
|
565
|
+
id: string;
|
|
566
|
+
/** UUID of the organization that issued the certificate */
|
|
567
|
+
org_id: string;
|
|
568
|
+
/** ID of the recipient (user) who received the certificate */
|
|
569
|
+
recipient_id: string;
|
|
570
|
+
/** Name of the recipient (user) who received the certificate */
|
|
571
|
+
recipient_name: string;
|
|
572
|
+
/** Title of the certificate */
|
|
573
|
+
title: string;
|
|
574
|
+
/** Description of the certificate */
|
|
575
|
+
description: string;
|
|
576
|
+
/** List of issuing authorities for the certificate */
|
|
577
|
+
issuing_authorities: {
|
|
578
|
+
/** Name of the issuing authority */
|
|
579
|
+
name: string;
|
|
580
|
+
/** Role of the issuing authority */
|
|
581
|
+
role?: string;
|
|
582
|
+
/** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
|
|
583
|
+
signature_url?: string;
|
|
584
|
+
}[];
|
|
585
|
+
/** Date when the certificate was issued */
|
|
586
|
+
issued_date: string;
|
|
587
|
+
/** Date when the certificate expires (optional) */
|
|
588
|
+
expiration_date?: string;
|
|
589
|
+
};
|
|
590
|
+
/** List of children items in the top-level curricula */
|
|
591
|
+
children?: {
|
|
592
|
+
/** Unique identifier for the course */
|
|
593
|
+
id: string;
|
|
594
|
+
/** Title of the course */
|
|
595
|
+
title: string;
|
|
596
|
+
/** URL to the course content */
|
|
597
|
+
permalink: string;
|
|
598
|
+
/** Course description */
|
|
599
|
+
description: string;
|
|
600
|
+
/** A numeric value to determine the display order. A smaller number appears first. If not specified, items will be sorted alphabetically by title. */
|
|
601
|
+
weight?: number;
|
|
602
|
+
/** Filename of the banner image, which should be placed in the same directory as the _index.md file */
|
|
603
|
+
banner?: string | null;
|
|
604
|
+
/** Type of the content (e.g., learning-path, challenge, certification) */
|
|
605
|
+
type?: "learning-path" | "challenge" | "certification";
|
|
606
|
+
/** List of child nodes (sub-courses or modules) */
|
|
607
|
+
children?: object[];
|
|
608
|
+
}[];
|
|
609
|
+
[key: string]: any;
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
};
|
|
409
613
|
type GetAcademyCirriculaApiResponse = unknown;
|
|
410
614
|
type GetAcademyCirriculaApiArg = {
|
|
411
615
|
/** Filter content by content types */
|
|
@@ -437,6 +641,12 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
|
|
|
437
641
|
slug: string;
|
|
438
642
|
/** Level of the cirricula */
|
|
439
643
|
level: "beginner" | "intermediate" | "advanced";
|
|
644
|
+
/** ID of the badge to be awarded on completion of this curricula */
|
|
645
|
+
badge_id?: string;
|
|
646
|
+
/** ID of the invite associated with this cirricula */
|
|
647
|
+
invite_id?: string;
|
|
648
|
+
/** ID of the workspace to which this cirricula belongs */
|
|
649
|
+
workspace_id?: string;
|
|
440
650
|
/** When the cirricula item was created */
|
|
441
651
|
createdAt: string;
|
|
442
652
|
/** When the cirricula was last updated */
|
|
@@ -1343,7 +1553,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
1343
1553
|
fixedCacheKey?: string | undefined;
|
|
1344
1554
|
} | undefined) => readonly [(arg: ImportDesignApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<ImportDesignApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, ImportDesignApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
1345
1555
|
originalArgs?: ImportDesignApiArg | undefined;
|
|
1346
|
-
reset: () => void;
|
|
1556
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
1347
1557
|
}];
|
|
1348
1558
|
declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
1349
1559
|
requestId?: undefined;
|
|
@@ -1504,7 +1714,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
1504
1714
|
fixedCacheKey?: string | undefined;
|
|
1505
1715
|
} | undefined) => readonly [(arg: RegisterMeshmodelsApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<RegisterMeshmodelsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, RegisterMeshmodelsApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
1506
1716
|
originalArgs?: RegisterMeshmodelsApiArg | undefined;
|
|
1507
|
-
reset: () => void;
|
|
1717
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
1508
1718
|
}];
|
|
1509
1719
|
declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
|
|
1510
1720
|
data?: undefined;
|
|
@@ -1828,7 +2038,7 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
|
|
|
1828
2038
|
fixedCacheKey?: string | undefined;
|
|
1829
2039
|
} | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
1830
2040
|
originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
|
|
1831
|
-
reset: () => void;
|
|
2041
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
1832
2042
|
}];
|
|
1833
2043
|
declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Record<string, any> = ({
|
|
1834
2044
|
requestId?: undefined;
|
|
@@ -1989,7 +2199,7 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
|
|
|
1989
2199
|
fixedCacheKey?: string | undefined;
|
|
1990
2200
|
} | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsCreateApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsCreateApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, PostApiEntitlementSubscriptionsCreateApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
1991
2201
|
originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
|
|
1992
|
-
reset: () => void;
|
|
2202
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
1993
2203
|
}];
|
|
1994
2204
|
declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Record<string, any> = ({
|
|
1995
2205
|
requestId?: undefined;
|
|
@@ -2150,7 +2360,7 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
|
|
|
2150
2360
|
fixedCacheKey?: string | undefined;
|
|
2151
2361
|
} | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsWebhooksApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsWebhooksApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2152
2362
|
originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
|
|
2153
|
-
reset: () => void;
|
|
2363
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
2154
2364
|
}];
|
|
2155
2365
|
declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
2156
2366
|
data?: undefined;
|
|
@@ -2963,7 +3173,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
2963
3173
|
fixedCacheKey?: string | undefined;
|
|
2964
3174
|
} | undefined) => readonly [(arg: PostApiWorkspacesApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiWorkspacesApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, PostApiWorkspacesApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2965
3175
|
originalArgs?: PostApiWorkspacesApiArg | undefined;
|
|
2966
|
-
reset: () => void;
|
|
3176
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
2967
3177
|
}];
|
|
2968
3178
|
declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
2969
3179
|
data?: undefined;
|
|
@@ -3287,7 +3497,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3287
3497
|
fixedCacheKey?: string | undefined;
|
|
3288
3498
|
} | undefined) => readonly [(arg: PutApiWorkspacesByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PutApiWorkspacesByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, PutApiWorkspacesByIdApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3289
3499
|
originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
|
|
3290
|
-
reset: () => void;
|
|
3500
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
3291
3501
|
}];
|
|
3292
3502
|
declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
3293
3503
|
requestId?: undefined;
|
|
@@ -3448,7 +3658,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3448
3658
|
fixedCacheKey?: string | undefined;
|
|
3449
3659
|
} | undefined) => readonly [(arg: DeleteApiWorkspacesByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteApiWorkspacesByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3450
3660
|
originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
|
|
3451
|
-
reset: () => void;
|
|
3661
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
3452
3662
|
}];
|
|
3453
3663
|
declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
3454
3664
|
requestId?: undefined;
|
|
@@ -3609,7 +3819,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3609
3819
|
fixedCacheKey?: string | undefined;
|
|
3610
3820
|
} | undefined) => readonly [(arg: CreateEnvironmentApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateEnvironmentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateEnvironmentApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3611
3821
|
originalArgs?: CreateEnvironmentApiArg | undefined;
|
|
3612
|
-
reset: () => void;
|
|
3822
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
3613
3823
|
}];
|
|
3614
3824
|
declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
3615
3825
|
data?: undefined;
|
|
@@ -3937,6 +4147,167 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
3937
4147
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
3938
4148
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetMyAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>;
|
|
3939
4149
|
};
|
|
4150
|
+
declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any> = ({
|
|
4151
|
+
requestId?: undefined;
|
|
4152
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4153
|
+
data?: undefined;
|
|
4154
|
+
error?: undefined;
|
|
4155
|
+
endpointName?: string | undefined;
|
|
4156
|
+
startedTimeStamp?: undefined;
|
|
4157
|
+
fulfilledTimeStamp?: undefined;
|
|
4158
|
+
} & {
|
|
4159
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4160
|
+
isUninitialized: true;
|
|
4161
|
+
isLoading: false;
|
|
4162
|
+
isSuccess: false;
|
|
4163
|
+
isError: false;
|
|
4164
|
+
}) | ({
|
|
4165
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4166
|
+
} & Omit<{
|
|
4167
|
+
requestId: string;
|
|
4168
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4169
|
+
error?: unknown;
|
|
4170
|
+
endpointName: string;
|
|
4171
|
+
startedTimeStamp: number;
|
|
4172
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4173
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4174
|
+
requestId: string;
|
|
4175
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4176
|
+
error?: unknown;
|
|
4177
|
+
endpointName: string;
|
|
4178
|
+
startedTimeStamp: number;
|
|
4179
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4180
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4181
|
+
error: undefined;
|
|
4182
|
+
} & {
|
|
4183
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4184
|
+
isUninitialized: false;
|
|
4185
|
+
isLoading: false;
|
|
4186
|
+
isSuccess: true;
|
|
4187
|
+
isError: false;
|
|
4188
|
+
}) | ({
|
|
4189
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4190
|
+
} & {
|
|
4191
|
+
requestId: string;
|
|
4192
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4193
|
+
error?: unknown;
|
|
4194
|
+
endpointName: string;
|
|
4195
|
+
startedTimeStamp: number;
|
|
4196
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4197
|
+
} & {
|
|
4198
|
+
data?: undefined;
|
|
4199
|
+
} & {
|
|
4200
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4201
|
+
isUninitialized: false;
|
|
4202
|
+
isLoading: true;
|
|
4203
|
+
isSuccess: false;
|
|
4204
|
+
isError: false;
|
|
4205
|
+
}) | ({
|
|
4206
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4207
|
+
} & Omit<{
|
|
4208
|
+
requestId: string;
|
|
4209
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4210
|
+
error?: unknown;
|
|
4211
|
+
endpointName: string;
|
|
4212
|
+
startedTimeStamp: number;
|
|
4213
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4214
|
+
}, "error"> & Required<Pick<{
|
|
4215
|
+
requestId: string;
|
|
4216
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4217
|
+
error?: unknown;
|
|
4218
|
+
endpointName: string;
|
|
4219
|
+
startedTimeStamp: number;
|
|
4220
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4221
|
+
}, "error">> & {
|
|
4222
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4223
|
+
isUninitialized: false;
|
|
4224
|
+
isLoading: false;
|
|
4225
|
+
isSuccess: false;
|
|
4226
|
+
isError: true;
|
|
4227
|
+
})>(options?: {
|
|
4228
|
+
selectFromResult?: ((state: ({
|
|
4229
|
+
requestId?: undefined;
|
|
4230
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4231
|
+
data?: undefined;
|
|
4232
|
+
error?: undefined;
|
|
4233
|
+
endpointName?: string | undefined;
|
|
4234
|
+
startedTimeStamp?: undefined;
|
|
4235
|
+
fulfilledTimeStamp?: undefined;
|
|
4236
|
+
} & {
|
|
4237
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4238
|
+
isUninitialized: true;
|
|
4239
|
+
isLoading: false;
|
|
4240
|
+
isSuccess: false;
|
|
4241
|
+
isError: false;
|
|
4242
|
+
}) | ({
|
|
4243
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4244
|
+
} & Omit<{
|
|
4245
|
+
requestId: string;
|
|
4246
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4247
|
+
error?: unknown;
|
|
4248
|
+
endpointName: string;
|
|
4249
|
+
startedTimeStamp: number;
|
|
4250
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4251
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4252
|
+
requestId: string;
|
|
4253
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4254
|
+
error?: unknown;
|
|
4255
|
+
endpointName: string;
|
|
4256
|
+
startedTimeStamp: number;
|
|
4257
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4258
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4259
|
+
error: undefined;
|
|
4260
|
+
} & {
|
|
4261
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
4262
|
+
isUninitialized: false;
|
|
4263
|
+
isLoading: false;
|
|
4264
|
+
isSuccess: true;
|
|
4265
|
+
isError: false;
|
|
4266
|
+
}) | ({
|
|
4267
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4268
|
+
} & {
|
|
4269
|
+
requestId: string;
|
|
4270
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4271
|
+
error?: unknown;
|
|
4272
|
+
endpointName: string;
|
|
4273
|
+
startedTimeStamp: number;
|
|
4274
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4275
|
+
} & {
|
|
4276
|
+
data?: undefined;
|
|
4277
|
+
} & {
|
|
4278
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
4279
|
+
isUninitialized: false;
|
|
4280
|
+
isLoading: true;
|
|
4281
|
+
isSuccess: false;
|
|
4282
|
+
isError: false;
|
|
4283
|
+
}) | ({
|
|
4284
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4285
|
+
} & Omit<{
|
|
4286
|
+
requestId: string;
|
|
4287
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4288
|
+
error?: unknown;
|
|
4289
|
+
endpointName: string;
|
|
4290
|
+
startedTimeStamp: number;
|
|
4291
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4292
|
+
}, "error"> & Required<Pick<{
|
|
4293
|
+
requestId: string;
|
|
4294
|
+
data?: CreateAcademyCurriculaApiResponse | undefined;
|
|
4295
|
+
error?: unknown;
|
|
4296
|
+
endpointName: string;
|
|
4297
|
+
startedTimeStamp: number;
|
|
4298
|
+
fulfilledTimeStamp?: number | undefined;
|
|
4299
|
+
}, "error">> & {
|
|
4300
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
4301
|
+
isUninitialized: false;
|
|
4302
|
+
isLoading: false;
|
|
4303
|
+
isSuccess: false;
|
|
4304
|
+
isError: true;
|
|
4305
|
+
})) => R) | undefined;
|
|
4306
|
+
fixedCacheKey?: string | undefined;
|
|
4307
|
+
} | undefined) => readonly [(arg: CreateAcademyCurriculaApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateAcademyCurriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateAcademyCurriculaApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4308
|
+
originalArgs?: CreateAcademyCurriculaApiArg | undefined;
|
|
4309
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
4310
|
+
}];
|
|
3940
4311
|
declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
3941
4312
|
data?: undefined;
|
|
3942
4313
|
error?: undefined;
|
|
@@ -4422,7 +4793,7 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4422
4793
|
fixedCacheKey?: string | undefined;
|
|
4423
4794
|
} | undefined) => readonly [(arg: RegisterToAcademyContentApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<RegisterToAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, RegisterToAcademyContentApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4424
4795
|
originalArgs?: RegisterToAcademyContentApiArg | undefined;
|
|
4425
|
-
reset: () => void;
|
|
4796
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
4426
4797
|
}];
|
|
4427
4798
|
declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
|
|
4428
4799
|
data?: undefined;
|
|
@@ -4746,7 +5117,7 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
|
|
|
4746
5117
|
fixedCacheKey?: string | undefined;
|
|
4747
5118
|
} | undefined) => readonly [(arg: UpdateCurrentItemInProgressTrackerApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateCurrentItemInProgressTrackerApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, UpdateCurrentItemInProgressTrackerApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4748
5119
|
originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
|
|
4749
|
-
reset: () => void;
|
|
5120
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
4750
5121
|
}];
|
|
4751
5122
|
declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
4752
5123
|
requestId?: undefined;
|
|
@@ -4907,7 +5278,7 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
|
4907
5278
|
fixedCacheKey?: string | undefined;
|
|
4908
5279
|
} | undefined) => readonly [(arg: SubmitQuizApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<SubmitQuizApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, SubmitQuizApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4909
5280
|
originalArgs?: SubmitQuizApiArg | undefined;
|
|
4910
|
-
reset: () => void;
|
|
5281
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
4911
5282
|
}];
|
|
4912
5283
|
declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
|
|
4913
5284
|
data?: undefined;
|
|
@@ -5720,7 +6091,7 @@ declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5720
6091
|
fixedCacheKey?: string | undefined;
|
|
5721
6092
|
} | undefined) => readonly [(arg: DeleteInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5722
6093
|
originalArgs?: DeleteInvitationApiArg | undefined;
|
|
5723
|
-
reset: () => void;
|
|
6094
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
5724
6095
|
}];
|
|
5725
6096
|
declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
|
|
5726
6097
|
requestId?: undefined;
|
|
@@ -5881,7 +6252,7 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5881
6252
|
fixedCacheKey?: string | undefined;
|
|
5882
6253
|
} | undefined) => readonly [(arg: UpdateInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, UpdateInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5883
6254
|
originalArgs?: UpdateInvitationApiArg | undefined;
|
|
5884
|
-
reset: () => void;
|
|
6255
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
5885
6256
|
}];
|
|
5886
6257
|
declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
5887
6258
|
data?: undefined;
|
|
@@ -6205,7 +6576,7 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
6205
6576
|
fixedCacheKey?: string | undefined;
|
|
6206
6577
|
} | undefined) => readonly [(arg: CreateInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
6207
6578
|
originalArgs?: CreateInvitationApiArg | undefined;
|
|
6208
|
-
reset: () => void;
|
|
6579
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
6209
6580
|
}];
|
|
6210
6581
|
declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
|
|
6211
6582
|
requestId?: undefined;
|
|
@@ -6366,7 +6737,7 @@ declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
|
|
|
6366
6737
|
fixedCacheKey?: string | undefined;
|
|
6367
6738
|
} | undefined) => readonly [(arg: AcceptInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<AcceptInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, AcceptInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
6368
6739
|
originalArgs?: AcceptInvitationApiArg | undefined;
|
|
6369
|
-
reset: () => void;
|
|
6740
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
6370
6741
|
}];
|
|
6371
6742
|
declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = ({
|
|
6372
6743
|
requestId?: undefined;
|
|
@@ -6527,7 +6898,7 @@ declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = (
|
|
|
6527
6898
|
fixedCacheKey?: string | undefined;
|
|
6528
6899
|
} | undefined) => readonly [(arg: CreateOrUpdateBadgeApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateOrUpdateBadgeApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateOrUpdateBadgeApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
6529
6900
|
originalArgs?: CreateOrUpdateBadgeApiArg | undefined;
|
|
6530
|
-
reset: () => void;
|
|
6901
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
6531
6902
|
}];
|
|
6532
6903
|
|
|
6533
|
-
export { type AcceptInvitationApiArg, type AcceptInvitationApiResponse, type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type CreateOrUpdateBadgeApiArg, type CreateOrUpdateBadgeApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type DeleteInvitationApiArg, type DeleteInvitationApiResponse, type GetAcademyAdminRegistrationsApiArg, type GetAcademyAdminRegistrationsApiResponse, type GetAcademyAdminSummaryApiArg, type GetAcademyAdminSummaryApiResponse, type GetAcademyCirriculaApiArg, type GetAcademyCirriculaApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetCertificateByIdApiArg, type GetCertificateByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type GetFeaturesApiArg, type GetFeaturesApiResponse, type GetFeaturesByOrganizationApiArg, type GetFeaturesByOrganizationApiResponse, type GetInvitationApiArg, type GetInvitationApiResponse, type GetInvitationsApiArg, type GetInvitationsApiResponse, type GetMyAcademyCirriculaApiArg, type GetMyAcademyCirriculaApiResponse, 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, type SubmitQuizApiArg, type SubmitQuizApiResponse, type UpdateCurrentItemInProgressTrackerApiArg, type UpdateCurrentItemInProgressTrackerApiResponse, type UpdateInvitationApiArg, type UpdateInvitationApiResponse, injectedRtkApi as cloudApi, useAcceptInvitationMutation, useCreateEnvironmentMutation, useCreateInvitationMutation, useCreateOrUpdateBadgeMutation, useDeleteApiWorkspacesByIdMutation, useDeleteInvitationMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };
|
|
6904
|
+
export { type AcceptInvitationApiArg, type AcceptInvitationApiResponse, type CreateAcademyCurriculaApiArg, type CreateAcademyCurriculaApiResponse, type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type CreateOrUpdateBadgeApiArg, type CreateOrUpdateBadgeApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type DeleteInvitationApiArg, type DeleteInvitationApiResponse, type GetAcademyAdminRegistrationsApiArg, type GetAcademyAdminRegistrationsApiResponse, type GetAcademyAdminSummaryApiArg, type GetAcademyAdminSummaryApiResponse, type GetAcademyCirriculaApiArg, type GetAcademyCirriculaApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetCertificateByIdApiArg, type GetCertificateByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type GetFeaturesApiArg, type GetFeaturesApiResponse, type GetFeaturesByOrganizationApiArg, type GetFeaturesByOrganizationApiResponse, type GetInvitationApiArg, type GetInvitationApiResponse, type GetInvitationsApiArg, type GetInvitationsApiResponse, type GetMyAcademyCirriculaApiArg, type GetMyAcademyCirriculaApiResponse, 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, type SubmitQuizApiArg, type SubmitQuizApiResponse, type UpdateCurrentItemInProgressTrackerApiArg, type UpdateCurrentItemInProgressTrackerApiResponse, type UpdateInvitationApiArg, type UpdateInvitationApiResponse, injectedRtkApi as cloudApi, useAcceptInvitationMutation, useCreateAcademyCurriculaMutation, useCreateEnvironmentMutation, useCreateInvitationMutation, useCreateOrUpdateBadgeMutation, useDeleteApiWorkspacesByIdMutation, useDeleteInvitationMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };
|