@meshery/schemas 0.8.69 → 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 +392 -38
- package/dist/cloudApi.d.ts +392 -38
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/index.d.mts +9 -15
- package/dist/index.d.ts +9 -15
- package/dist/index.js +1 -1
- package/dist/index.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 */
|
|
@@ -470,7 +680,7 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
|
|
|
470
680
|
created_at: string;
|
|
471
681
|
/** Timestamp when the resource was updated. */
|
|
472
682
|
updated_at: string;
|
|
473
|
-
/** Timestamp when the resource was deleted
|
|
683
|
+
/** Timestamp when the resource was deleted, if applicable */
|
|
474
684
|
deleted_at: string;
|
|
475
685
|
};
|
|
476
686
|
certificate?: {
|
|
@@ -1159,7 +1369,7 @@ type CreateOrUpdateBadgeApiResponse = {
|
|
|
1159
1369
|
created_at: string;
|
|
1160
1370
|
/** Timestamp when the resource was updated. */
|
|
1161
1371
|
updated_at: string;
|
|
1162
|
-
/** Timestamp when the resource was deleted
|
|
1372
|
+
/** Timestamp when the resource was deleted, if applicable */
|
|
1163
1373
|
deleted_at: string;
|
|
1164
1374
|
};
|
|
1165
1375
|
type CreateOrUpdateBadgeApiArg = {
|
|
@@ -1180,7 +1390,7 @@ type CreateOrUpdateBadgeApiArg = {
|
|
|
1180
1390
|
created_at: string;
|
|
1181
1391
|
/** Timestamp when the resource was updated. */
|
|
1182
1392
|
updated_at: string;
|
|
1183
|
-
/** Timestamp when the resource was deleted
|
|
1393
|
+
/** Timestamp when the resource was deleted, if applicable */
|
|
1184
1394
|
deleted_at: string;
|
|
1185
1395
|
};
|
|
1186
1396
|
};
|
|
@@ -1343,8 +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
|
-
/**
|
|
1347
|
-
reset: () => void;
|
|
1556
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
1348
1557
|
}];
|
|
1349
1558
|
declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
1350
1559
|
requestId?: undefined;
|
|
@@ -1505,8 +1714,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
1505
1714
|
fixedCacheKey?: string | undefined;
|
|
1506
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> & {
|
|
1507
1716
|
originalArgs?: RegisterMeshmodelsApiArg | undefined;
|
|
1508
|
-
/**
|
|
1509
|
-
reset: () => void;
|
|
1717
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
1510
1718
|
}];
|
|
1511
1719
|
declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
|
|
1512
1720
|
data?: undefined;
|
|
@@ -1830,8 +2038,7 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
|
|
|
1830
2038
|
fixedCacheKey?: string | undefined;
|
|
1831
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> & {
|
|
1832
2040
|
originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
|
|
1833
|
-
/**
|
|
1834
|
-
reset: () => void;
|
|
2041
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
1835
2042
|
}];
|
|
1836
2043
|
declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Record<string, any> = ({
|
|
1837
2044
|
requestId?: undefined;
|
|
@@ -1992,8 +2199,7 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
|
|
|
1992
2199
|
fixedCacheKey?: string | undefined;
|
|
1993
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> & {
|
|
1994
2201
|
originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
|
|
1995
|
-
/**
|
|
1996
|
-
reset: () => void;
|
|
2202
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
1997
2203
|
}];
|
|
1998
2204
|
declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Record<string, any> = ({
|
|
1999
2205
|
requestId?: undefined;
|
|
@@ -2154,8 +2360,7 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
|
|
|
2154
2360
|
fixedCacheKey?: string | undefined;
|
|
2155
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> & {
|
|
2156
2362
|
originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
|
|
2157
|
-
/**
|
|
2158
|
-
reset: () => void;
|
|
2363
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
2159
2364
|
}];
|
|
2160
2365
|
declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
2161
2366
|
data?: undefined;
|
|
@@ -2968,8 +3173,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
2968
3173
|
fixedCacheKey?: string | undefined;
|
|
2969
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> & {
|
|
2970
3175
|
originalArgs?: PostApiWorkspacesApiArg | undefined;
|
|
2971
|
-
/**
|
|
2972
|
-
reset: () => void;
|
|
3176
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
2973
3177
|
}];
|
|
2974
3178
|
declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
2975
3179
|
data?: undefined;
|
|
@@ -3293,8 +3497,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3293
3497
|
fixedCacheKey?: string | undefined;
|
|
3294
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> & {
|
|
3295
3499
|
originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
|
|
3296
|
-
/**
|
|
3297
|
-
reset: () => void;
|
|
3500
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
3298
3501
|
}];
|
|
3299
3502
|
declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
3300
3503
|
requestId?: undefined;
|
|
@@ -3455,8 +3658,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3455
3658
|
fixedCacheKey?: string | undefined;
|
|
3456
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> & {
|
|
3457
3660
|
originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
|
|
3458
|
-
/**
|
|
3459
|
-
reset: () => void;
|
|
3661
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
3460
3662
|
}];
|
|
3461
3663
|
declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
3462
3664
|
requestId?: undefined;
|
|
@@ -3617,8 +3819,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3617
3819
|
fixedCacheKey?: string | undefined;
|
|
3618
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> & {
|
|
3619
3821
|
originalArgs?: CreateEnvironmentApiArg | undefined;
|
|
3620
|
-
/**
|
|
3621
|
-
reset: () => void;
|
|
3822
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
3622
3823
|
}];
|
|
3623
3824
|
declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
3624
3825
|
data?: undefined;
|
|
@@ -3946,6 +4147,167 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
|
3946
4147
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
3947
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>>;
|
|
3948
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
|
+
}];
|
|
3949
4311
|
declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
|
|
3950
4312
|
data?: undefined;
|
|
3951
4313
|
error?: undefined;
|
|
@@ -4431,8 +4793,7 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4431
4793
|
fixedCacheKey?: string | undefined;
|
|
4432
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> & {
|
|
4433
4795
|
originalArgs?: RegisterToAcademyContentApiArg | undefined;
|
|
4434
|
-
/**
|
|
4435
|
-
reset: () => void;
|
|
4796
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
4436
4797
|
}];
|
|
4437
4798
|
declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
|
|
4438
4799
|
data?: undefined;
|
|
@@ -4756,8 +5117,7 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
|
|
|
4756
5117
|
fixedCacheKey?: string | undefined;
|
|
4757
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> & {
|
|
4758
5119
|
originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
|
|
4759
|
-
/**
|
|
4760
|
-
reset: () => void;
|
|
5120
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
4761
5121
|
}];
|
|
4762
5122
|
declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
4763
5123
|
requestId?: undefined;
|
|
@@ -4918,8 +5278,7 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
|
4918
5278
|
fixedCacheKey?: string | undefined;
|
|
4919
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> & {
|
|
4920
5280
|
originalArgs?: SubmitQuizApiArg | undefined;
|
|
4921
|
-
/**
|
|
4922
|
-
reset: () => void;
|
|
5281
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
4923
5282
|
}];
|
|
4924
5283
|
declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
|
|
4925
5284
|
data?: undefined;
|
|
@@ -5732,8 +6091,7 @@ declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5732
6091
|
fixedCacheKey?: string | undefined;
|
|
5733
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> & {
|
|
5734
6093
|
originalArgs?: DeleteInvitationApiArg | undefined;
|
|
5735
|
-
/**
|
|
5736
|
-
reset: () => void;
|
|
6094
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
5737
6095
|
}];
|
|
5738
6096
|
declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
|
|
5739
6097
|
requestId?: undefined;
|
|
@@ -5894,8 +6252,7 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5894
6252
|
fixedCacheKey?: string | undefined;
|
|
5895
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> & {
|
|
5896
6254
|
originalArgs?: UpdateInvitationApiArg | undefined;
|
|
5897
|
-
/**
|
|
5898
|
-
reset: () => void;
|
|
6255
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
5899
6256
|
}];
|
|
5900
6257
|
declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
5901
6258
|
data?: undefined;
|
|
@@ -6219,8 +6576,7 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
6219
6576
|
fixedCacheKey?: string | undefined;
|
|
6220
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> & {
|
|
6221
6578
|
originalArgs?: CreateInvitationApiArg | undefined;
|
|
6222
|
-
/**
|
|
6223
|
-
reset: () => void;
|
|
6579
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
6224
6580
|
}];
|
|
6225
6581
|
declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
|
|
6226
6582
|
requestId?: undefined;
|
|
@@ -6381,8 +6737,7 @@ declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
|
|
|
6381
6737
|
fixedCacheKey?: string | undefined;
|
|
6382
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> & {
|
|
6383
6739
|
originalArgs?: AcceptInvitationApiArg | undefined;
|
|
6384
|
-
/**
|
|
6385
|
-
reset: () => void;
|
|
6740
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
6386
6741
|
}];
|
|
6387
6742
|
declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = ({
|
|
6388
6743
|
requestId?: undefined;
|
|
@@ -6543,8 +6898,7 @@ declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = (
|
|
|
6543
6898
|
fixedCacheKey?: string | undefined;
|
|
6544
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> & {
|
|
6545
6900
|
originalArgs?: CreateOrUpdateBadgeApiArg | undefined;
|
|
6546
|
-
/**
|
|
6547
|
-
reset: () => void;
|
|
6901
|
+
reset: () => void; /** status 200 Registration data for the specified content */
|
|
6548
6902
|
}];
|
|
6549
6903
|
|
|
6550
|
-
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 };
|