@meshery/schemas 0.8.59 → 0.8.61

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.
@@ -28,6 +28,10 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
28
28
  getAcademyAdminSummary: _reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, object, "api", unknown>;
29
29
  getAcademyAdminRegistrations: _reduxjs_toolkit_query.QueryDefinition<GetAcademyAdminRegistrationsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetAcademyAdminRegistrationsApiResponse, "api", unknown>;
30
30
  getCertificateById: _reduxjs_toolkit_query.QueryDefinition<GetCertificateByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetCertificateByIdApiResponse, "api", unknown>;
31
+ getInvitation: _reduxjs_toolkit_query.QueryDefinition<GetInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationApiResponse, "api", unknown>;
32
+ updateInvitation: _reduxjs_toolkit_query.MutationDefinition<UpdateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, UpdateInvitationApiResponse, "api", unknown>;
33
+ getInvitations: _reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationsApiResponse, "api", unknown>;
34
+ createInvitation: _reduxjs_toolkit_query.MutationDefinition<CreateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateInvitationApiResponse, "api", unknown>;
31
35
  }, "api", never, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
32
36
 
33
37
  type ImportDesignApiResponse = {
@@ -432,7 +436,7 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
432
436
  title: string;
433
437
  /** Description of the learning path */
434
438
  description: string;
435
- /** Optional banner image */
439
+ /** Filename of the banner image, which should be placed in the same directory as the _index.md file */
436
440
  banner?: string | null;
437
441
  /** Canonical URL for the learning path */
438
442
  permalink: string;
@@ -485,9 +489,9 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
485
489
  permalink: string;
486
490
  /** Course description */
487
491
  description: string;
488
- /** Order of the course in the list */
492
+ /** A numeric value to determine the display order. A smaller number appears first. If not specified, items will be sorted alphabetically by title. */
489
493
  weight?: number;
490
- /** Optional banner image */
494
+ /** Filename of the banner image, which should be placed in the same directory as the _index.md file */
491
495
  banner?: string | null;
492
496
  /** Type of the content (e.g., learning-path, challenge, certification) */
493
497
  type?: "learning-path" | "challenge" | "certification";
@@ -875,6 +879,208 @@ type GetCertificateByIdApiArg = {
875
879
  /** The ID of the certificate to retrieve */
876
880
  certificateId: string;
877
881
  };
882
+ type GetInvitationApiResponse = {
883
+ /** Unique identifier for the invitation , is also used as the invitation code */
884
+ id: string;
885
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
886
+ ownerId: string;
887
+ /** Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain, a organization can only have one default invitation */
888
+ isDefault?: boolean;
889
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
890
+ name: string;
891
+ /** Description of the invitation, which can be used to provide additional information about the invitation, null or empty string means the invitation does not have a description */
892
+ description: string;
893
+ emails: string[];
894
+ /** ID of the organization to which the user is invited */
895
+ orgId: string;
896
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
897
+ expiresAt: string;
898
+ /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
899
+ quota: number;
900
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
901
+ acceptedBy: string[];
902
+ roles: string[];
903
+ teams: string[];
904
+ /** Status of the invitation, where enabled means the invitation is active and can be used, disabled means the invitation is no longer valid and is temporarily inactive, disabled invitations can be re-enabled later. */
905
+ status: "enabled" | "disabled";
906
+ /** Timestamp when the invitation was created */
907
+ createdAt: string;
908
+ /** Timestamp when the invitation was last updated */
909
+ updatedAt: string;
910
+ /** Timestamp when the invitation was deleted, if applicable */
911
+ deletedAt: string;
912
+ };
913
+ type GetInvitationApiArg = {
914
+ /** The ID of the invitation to retrieve */
915
+ id: string;
916
+ };
917
+ type UpdateInvitationApiResponse = {
918
+ /** Unique identifier for the invitation , is also used as the invitation code */
919
+ id: string;
920
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
921
+ ownerId: string;
922
+ /** Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain, a organization can only have one default invitation */
923
+ isDefault?: boolean;
924
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
925
+ name: string;
926
+ /** Description of the invitation, which can be used to provide additional information about the invitation, null or empty string means the invitation does not have a description */
927
+ description: string;
928
+ emails: string[];
929
+ /** ID of the organization to which the user is invited */
930
+ orgId: string;
931
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
932
+ expiresAt: string;
933
+ /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
934
+ quota: number;
935
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
936
+ acceptedBy: string[];
937
+ roles: string[];
938
+ teams: string[];
939
+ /** Status of the invitation, where enabled means the invitation is active and can be used, disabled means the invitation is no longer valid and is temporarily inactive, disabled invitations can be re-enabled later. */
940
+ status: "enabled" | "disabled";
941
+ /** Timestamp when the invitation was created */
942
+ createdAt: string;
943
+ /** Timestamp when the invitation was last updated */
944
+ updatedAt: string;
945
+ /** Timestamp when the invitation was deleted, if applicable */
946
+ deletedAt: string;
947
+ };
948
+ type UpdateInvitationApiArg = {
949
+ /** The ID of the invitation to update */
950
+ id: string;
951
+ body: {
952
+ /** Unique identifier for the invitation , is also used as the invitation code */
953
+ id: string;
954
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
955
+ ownerId: string;
956
+ /** Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain, a organization can only have one default invitation */
957
+ isDefault?: boolean;
958
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
959
+ name: string;
960
+ /** Description of the invitation, which can be used to provide additional information about the invitation, null or empty string means the invitation does not have a description */
961
+ description: string;
962
+ emails: string[];
963
+ /** ID of the organization to which the user is invited */
964
+ orgId: string;
965
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
966
+ expiresAt: string;
967
+ /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
968
+ quota: number;
969
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
970
+ acceptedBy: string[];
971
+ roles: string[];
972
+ teams: string[];
973
+ /** Status of the invitation, where enabled means the invitation is active and can be used, disabled means the invitation is no longer valid and is temporarily inactive, disabled invitations can be re-enabled later. */
974
+ status: "enabled" | "disabled";
975
+ /** Timestamp when the invitation was created */
976
+ createdAt: string;
977
+ /** Timestamp when the invitation was last updated */
978
+ updatedAt: string;
979
+ /** Timestamp when the invitation was deleted, if applicable */
980
+ deletedAt: string;
981
+ };
982
+ };
983
+ type GetInvitationsApiResponse = {
984
+ /** List of invitations */
985
+ Data: {
986
+ /** Unique identifier for the invitation , is also used as the invitation code */
987
+ id: string;
988
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
989
+ ownerId: string;
990
+ /** Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain, a organization can only have one default invitation */
991
+ isDefault?: boolean;
992
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
993
+ name: string;
994
+ /** Description of the invitation, which can be used to provide additional information about the invitation, null or empty string means the invitation does not have a description */
995
+ description: string;
996
+ emails: string[];
997
+ /** ID of the organization to which the user is invited */
998
+ orgId: string;
999
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1000
+ expiresAt: string;
1001
+ /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1002
+ quota: number;
1003
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1004
+ acceptedBy: string[];
1005
+ roles: string[];
1006
+ teams: string[];
1007
+ /** Status of the invitation, where enabled means the invitation is active and can be used, disabled means the invitation is no longer valid and is temporarily inactive, disabled invitations can be re-enabled later. */
1008
+ status: "enabled" | "disabled";
1009
+ /** Timestamp when the invitation was created */
1010
+ createdAt: string;
1011
+ /** Timestamp when the invitation was last updated */
1012
+ updatedAt: string;
1013
+ /** Timestamp when the invitation was deleted, if applicable */
1014
+ deletedAt: string;
1015
+ }[];
1016
+ /** Total number of invitations available */
1017
+ Total: number;
1018
+ };
1019
+ type GetInvitationsApiArg = void;
1020
+ type CreateInvitationApiResponse = {
1021
+ /** Unique identifier for the invitation , is also used as the invitation code */
1022
+ id: string;
1023
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
1024
+ ownerId: string;
1025
+ /** Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain, a organization can only have one default invitation */
1026
+ isDefault?: boolean;
1027
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
1028
+ name: string;
1029
+ /** Description of the invitation, which can be used to provide additional information about the invitation, null or empty string means the invitation does not have a description */
1030
+ description: string;
1031
+ emails: string[];
1032
+ /** ID of the organization to which the user is invited */
1033
+ orgId: string;
1034
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1035
+ expiresAt: string;
1036
+ /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1037
+ quota: number;
1038
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1039
+ acceptedBy: string[];
1040
+ roles: string[];
1041
+ teams: string[];
1042
+ /** Status of the invitation, where enabled means the invitation is active and can be used, disabled means the invitation is no longer valid and is temporarily inactive, disabled invitations can be re-enabled later. */
1043
+ status: "enabled" | "disabled";
1044
+ /** Timestamp when the invitation was created */
1045
+ createdAt: string;
1046
+ /** Timestamp when the invitation was last updated */
1047
+ updatedAt: string;
1048
+ /** Timestamp when the invitation was deleted, if applicable */
1049
+ deletedAt: string;
1050
+ };
1051
+ type CreateInvitationApiArg = {
1052
+ body: {
1053
+ /** Unique identifier for the invitation , is also used as the invitation code */
1054
+ id: string;
1055
+ /** ID of the user who created the invitation, this is used to track who created the invitation and can be used for auditing purposes */
1056
+ ownerId: string;
1057
+ /** Indicates whether the invitation is a default invitation (open invite), which can be used to assign users when signing up from fqdn or custom domain, a organization can only have one default invitation */
1058
+ isDefault?: boolean;
1059
+ /** Name of the invitation, which can be used to identify the invitation, required and cant be empty string, */
1060
+ name: string;
1061
+ /** Description of the invitation, which can be used to provide additional information about the invitation, null or empty string means the invitation does not have a description */
1062
+ description: string;
1063
+ emails: string[];
1064
+ /** ID of the organization to which the user is invited */
1065
+ orgId: string;
1066
+ /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1067
+ expiresAt: string;
1068
+ /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1069
+ quota: number;
1070
+ /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1071
+ acceptedBy: string[];
1072
+ roles: string[];
1073
+ teams: string[];
1074
+ /** Status of the invitation, where enabled means the invitation is active and can be used, disabled means the invitation is no longer valid and is temporarily inactive, disabled invitations can be re-enabled later. */
1075
+ status: "enabled" | "disabled";
1076
+ /** Timestamp when the invitation was created */
1077
+ createdAt: string;
1078
+ /** Timestamp when the invitation was last updated */
1079
+ updatedAt: string;
1080
+ /** Timestamp when the invitation was deleted, if applicable */
1081
+ deletedAt: string;
1082
+ };
1083
+ };
878
1084
  declare const useImportDesignMutation: <R extends Record<string, any> = ({
879
1085
  requestId?: undefined;
880
1086
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -5089,5 +5295,653 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
5089
5295
  }) | undefined) => [R][R extends any ? 0 : never] & {
5090
5296
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetCertificateByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetCertificateByIdApiResponse, "api", unknown>>;
5091
5297
  };
5298
+ declare const useGetInvitationQuery: <R extends Record<string, any> = ({
5299
+ data?: undefined;
5300
+ error?: undefined;
5301
+ fulfilledTimeStamp?: undefined;
5302
+ originalArgs?: undefined;
5303
+ requestId?: undefined;
5304
+ endpointName?: string | undefined;
5305
+ startedTimeStamp?: undefined;
5306
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5307
+ currentData?: GetInvitationApiResponse | undefined;
5308
+ isLoading: false;
5309
+ isFetching: false;
5310
+ isSuccess: false;
5311
+ isError: false;
5312
+ isUninitialized: true;
5313
+ } | {
5314
+ error?: unknown;
5315
+ fulfilledTimeStamp?: number | undefined;
5316
+ originalArgs?: GetInvitationApiArg | undefined;
5317
+ requestId?: string | undefined;
5318
+ endpointName?: string | undefined;
5319
+ startedTimeStamp?: number | undefined;
5320
+ status: _reduxjs_toolkit_query.QueryStatus;
5321
+ currentData?: GetInvitationApiResponse | undefined;
5322
+ isUninitialized: false;
5323
+ isSuccess: false;
5324
+ isError: false;
5325
+ isLoading: true;
5326
+ isFetching: boolean;
5327
+ data: undefined;
5328
+ } | {
5329
+ originalArgs?: GetInvitationApiArg | undefined;
5330
+ requestId?: string | undefined;
5331
+ endpointName?: string | undefined;
5332
+ startedTimeStamp?: number | undefined;
5333
+ status: _reduxjs_toolkit_query.QueryStatus;
5334
+ currentData?: GetInvitationApiResponse | undefined;
5335
+ isUninitialized: false;
5336
+ isLoading: false;
5337
+ isError: false;
5338
+ isSuccess: true;
5339
+ isFetching: true;
5340
+ error: undefined;
5341
+ data: GetInvitationApiResponse;
5342
+ fulfilledTimeStamp: number;
5343
+ } | {
5344
+ originalArgs?: GetInvitationApiArg | undefined;
5345
+ requestId?: string | undefined;
5346
+ endpointName?: string | undefined;
5347
+ startedTimeStamp?: number | undefined;
5348
+ status: _reduxjs_toolkit_query.QueryStatus;
5349
+ isUninitialized: false;
5350
+ isLoading: false;
5351
+ isError: false;
5352
+ isSuccess: true;
5353
+ isFetching: false;
5354
+ error: undefined;
5355
+ data: GetInvitationApiResponse;
5356
+ fulfilledTimeStamp: number;
5357
+ currentData: GetInvitationApiResponse;
5358
+ } | {
5359
+ data?: GetInvitationApiResponse | undefined;
5360
+ fulfilledTimeStamp?: number | undefined;
5361
+ originalArgs?: GetInvitationApiArg | undefined;
5362
+ requestId?: string | undefined;
5363
+ endpointName?: string | undefined;
5364
+ startedTimeStamp?: number | undefined;
5365
+ status: _reduxjs_toolkit_query.QueryStatus;
5366
+ currentData?: GetInvitationApiResponse | undefined;
5367
+ isUninitialized: false;
5368
+ isLoading: false;
5369
+ isFetching: false;
5370
+ isSuccess: false;
5371
+ isError: true;
5372
+ error: unknown;
5373
+ }) & {
5374
+ status: _reduxjs_toolkit_query.QueryStatus;
5375
+ }>(arg: GetInvitationApiArg | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
5376
+ skip?: boolean | undefined;
5377
+ refetchOnMountOrArgChange?: number | boolean | undefined;
5378
+ } & {
5379
+ skip?: boolean | undefined;
5380
+ selectFromResult?: ((state: ({
5381
+ data?: undefined;
5382
+ error?: undefined;
5383
+ fulfilledTimeStamp?: undefined;
5384
+ originalArgs?: undefined;
5385
+ requestId?: undefined;
5386
+ endpointName?: string | undefined;
5387
+ startedTimeStamp?: undefined;
5388
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5389
+ currentData?: GetInvitationApiResponse | undefined;
5390
+ isLoading: false;
5391
+ isFetching: false;
5392
+ isSuccess: false;
5393
+ isError: false;
5394
+ isUninitialized: true;
5395
+ } | {
5396
+ error?: unknown;
5397
+ fulfilledTimeStamp?: number | undefined;
5398
+ originalArgs?: GetInvitationApiArg | undefined;
5399
+ requestId?: string | undefined;
5400
+ endpointName?: string | undefined;
5401
+ startedTimeStamp?: number | undefined;
5402
+ status: _reduxjs_toolkit_query.QueryStatus;
5403
+ currentData?: GetInvitationApiResponse | undefined;
5404
+ isUninitialized: false;
5405
+ isSuccess: false;
5406
+ isError: false;
5407
+ isLoading: true;
5408
+ isFetching: boolean;
5409
+ data: undefined;
5410
+ } | {
5411
+ originalArgs?: GetInvitationApiArg | undefined;
5412
+ requestId?: string | undefined;
5413
+ endpointName?: string | undefined;
5414
+ startedTimeStamp?: number | undefined;
5415
+ status: _reduxjs_toolkit_query.QueryStatus;
5416
+ currentData?: GetInvitationApiResponse | undefined;
5417
+ isUninitialized: false;
5418
+ isLoading: false;
5419
+ isError: false;
5420
+ isSuccess: true;
5421
+ isFetching: true;
5422
+ error: undefined;
5423
+ data: GetInvitationApiResponse;
5424
+ fulfilledTimeStamp: number;
5425
+ } | {
5426
+ originalArgs?: GetInvitationApiArg | undefined;
5427
+ requestId?: string | undefined;
5428
+ endpointName?: string | undefined;
5429
+ startedTimeStamp?: number | undefined;
5430
+ status: _reduxjs_toolkit_query.QueryStatus;
5431
+ isUninitialized: false;
5432
+ isLoading: false;
5433
+ isError: false;
5434
+ isSuccess: true;
5435
+ isFetching: false;
5436
+ error: undefined;
5437
+ data: GetInvitationApiResponse;
5438
+ fulfilledTimeStamp: number;
5439
+ currentData: GetInvitationApiResponse;
5440
+ } | {
5441
+ data?: GetInvitationApiResponse | undefined;
5442
+ fulfilledTimeStamp?: number | undefined;
5443
+ originalArgs?: GetInvitationApiArg | undefined;
5444
+ requestId?: string | undefined;
5445
+ endpointName?: string | undefined;
5446
+ startedTimeStamp?: number | undefined;
5447
+ status: _reduxjs_toolkit_query.QueryStatus;
5448
+ currentData?: GetInvitationApiResponse | undefined;
5449
+ isUninitialized: false;
5450
+ isLoading: false;
5451
+ isFetching: false;
5452
+ isSuccess: false;
5453
+ isError: true;
5454
+ error: unknown;
5455
+ }) & {
5456
+ status: _reduxjs_toolkit_query.QueryStatus;
5457
+ }) => R) | undefined;
5458
+ }) | undefined) => [R][R extends any ? 0 : never] & {
5459
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationApiResponse, "api", unknown>>;
5460
+ };
5461
+ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
5462
+ requestId?: undefined;
5463
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5464
+ data?: undefined;
5465
+ error?: undefined;
5466
+ endpointName?: string | undefined;
5467
+ startedTimeStamp?: undefined;
5468
+ fulfilledTimeStamp?: undefined;
5469
+ } & {
5470
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5471
+ isUninitialized: true;
5472
+ isLoading: false;
5473
+ isSuccess: false;
5474
+ isError: false;
5475
+ }) | ({
5476
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5477
+ } & Omit<{
5478
+ requestId: string;
5479
+ data?: UpdateInvitationApiResponse | undefined;
5480
+ error?: unknown;
5481
+ endpointName: string;
5482
+ startedTimeStamp: number;
5483
+ fulfilledTimeStamp?: number | undefined;
5484
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5485
+ requestId: string;
5486
+ data?: UpdateInvitationApiResponse | undefined;
5487
+ error?: unknown;
5488
+ endpointName: string;
5489
+ startedTimeStamp: number;
5490
+ fulfilledTimeStamp?: number | undefined;
5491
+ }, "data" | "fulfilledTimeStamp">> & {
5492
+ error: undefined;
5493
+ } & {
5494
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5495
+ isUninitialized: false;
5496
+ isLoading: false;
5497
+ isSuccess: true;
5498
+ isError: false;
5499
+ }) | ({
5500
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5501
+ } & {
5502
+ requestId: string;
5503
+ data?: UpdateInvitationApiResponse | undefined;
5504
+ error?: unknown;
5505
+ endpointName: string;
5506
+ startedTimeStamp: number;
5507
+ fulfilledTimeStamp?: number | undefined;
5508
+ } & {
5509
+ data?: undefined;
5510
+ } & {
5511
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5512
+ isUninitialized: false;
5513
+ isLoading: true;
5514
+ isSuccess: false;
5515
+ isError: false;
5516
+ }) | ({
5517
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5518
+ } & Omit<{
5519
+ requestId: string;
5520
+ data?: UpdateInvitationApiResponse | undefined;
5521
+ error?: unknown;
5522
+ endpointName: string;
5523
+ startedTimeStamp: number;
5524
+ fulfilledTimeStamp?: number | undefined;
5525
+ }, "error"> & Required<Pick<{
5526
+ requestId: string;
5527
+ data?: UpdateInvitationApiResponse | undefined;
5528
+ error?: unknown;
5529
+ endpointName: string;
5530
+ startedTimeStamp: number;
5531
+ fulfilledTimeStamp?: number | undefined;
5532
+ }, "error">> & {
5533
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5534
+ isUninitialized: false;
5535
+ isLoading: false;
5536
+ isSuccess: false;
5537
+ isError: true;
5538
+ })>(options?: {
5539
+ selectFromResult?: ((state: ({
5540
+ requestId?: undefined;
5541
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5542
+ data?: undefined;
5543
+ error?: undefined;
5544
+ endpointName?: string | undefined;
5545
+ startedTimeStamp?: undefined;
5546
+ fulfilledTimeStamp?: undefined;
5547
+ } & {
5548
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5549
+ isUninitialized: true;
5550
+ isLoading: false;
5551
+ isSuccess: false;
5552
+ isError: false;
5553
+ }) | ({
5554
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5555
+ } & Omit<{
5556
+ requestId: string;
5557
+ data?: UpdateInvitationApiResponse | undefined;
5558
+ error?: unknown;
5559
+ endpointName: string;
5560
+ startedTimeStamp: number;
5561
+ fulfilledTimeStamp?: number | undefined;
5562
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5563
+ requestId: string;
5564
+ data?: UpdateInvitationApiResponse | undefined;
5565
+ error?: unknown;
5566
+ endpointName: string;
5567
+ startedTimeStamp: number;
5568
+ fulfilledTimeStamp?: number | undefined;
5569
+ }, "data" | "fulfilledTimeStamp">> & {
5570
+ error: undefined;
5571
+ } & {
5572
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5573
+ isUninitialized: false;
5574
+ isLoading: false;
5575
+ isSuccess: true;
5576
+ isError: false;
5577
+ }) | ({
5578
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5579
+ } & {
5580
+ requestId: string;
5581
+ data?: UpdateInvitationApiResponse | undefined;
5582
+ error?: unknown;
5583
+ endpointName: string;
5584
+ startedTimeStamp: number;
5585
+ fulfilledTimeStamp?: number | undefined;
5586
+ } & {
5587
+ data?: undefined;
5588
+ } & {
5589
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5590
+ isUninitialized: false;
5591
+ isLoading: true;
5592
+ isSuccess: false;
5593
+ isError: false;
5594
+ }) | ({
5595
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5596
+ } & Omit<{
5597
+ requestId: string;
5598
+ data?: UpdateInvitationApiResponse | undefined;
5599
+ error?: unknown;
5600
+ endpointName: string;
5601
+ startedTimeStamp: number;
5602
+ fulfilledTimeStamp?: number | undefined;
5603
+ }, "error"> & Required<Pick<{
5604
+ requestId: string;
5605
+ data?: UpdateInvitationApiResponse | undefined;
5606
+ error?: unknown;
5607
+ endpointName: string;
5608
+ startedTimeStamp: number;
5609
+ fulfilledTimeStamp?: number | undefined;
5610
+ }, "error">> & {
5611
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5612
+ isUninitialized: false;
5613
+ isLoading: false;
5614
+ isSuccess: false;
5615
+ isError: true;
5616
+ })) => R) | undefined;
5617
+ fixedCacheKey?: string | undefined;
5618
+ } | 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> & {
5619
+ originalArgs?: UpdateInvitationApiArg | undefined;
5620
+ reset: () => void;
5621
+ }];
5622
+ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
5623
+ data?: undefined;
5624
+ error?: undefined;
5625
+ fulfilledTimeStamp?: undefined;
5626
+ originalArgs?: undefined;
5627
+ requestId?: undefined;
5628
+ endpointName?: string | undefined;
5629
+ startedTimeStamp?: undefined;
5630
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5631
+ currentData?: GetInvitationsApiResponse | undefined;
5632
+ isLoading: false;
5633
+ isFetching: false;
5634
+ isSuccess: false;
5635
+ isError: false;
5636
+ isUninitialized: true;
5637
+ } | {
5638
+ error?: unknown;
5639
+ fulfilledTimeStamp?: number | undefined;
5640
+ originalArgs?: void | undefined;
5641
+ requestId?: string | undefined;
5642
+ endpointName?: string | undefined;
5643
+ startedTimeStamp?: number | undefined;
5644
+ status: _reduxjs_toolkit_query.QueryStatus;
5645
+ currentData?: GetInvitationsApiResponse | undefined;
5646
+ isUninitialized: false;
5647
+ isSuccess: false;
5648
+ isError: false;
5649
+ isLoading: true;
5650
+ isFetching: boolean;
5651
+ data: undefined;
5652
+ } | {
5653
+ originalArgs?: void | undefined;
5654
+ requestId?: string | undefined;
5655
+ endpointName?: string | undefined;
5656
+ startedTimeStamp?: number | undefined;
5657
+ status: _reduxjs_toolkit_query.QueryStatus;
5658
+ currentData?: GetInvitationsApiResponse | undefined;
5659
+ isUninitialized: false;
5660
+ isLoading: false;
5661
+ isError: false;
5662
+ isSuccess: true;
5663
+ isFetching: true;
5664
+ error: undefined;
5665
+ data: GetInvitationsApiResponse;
5666
+ fulfilledTimeStamp: number;
5667
+ } | {
5668
+ originalArgs?: void | undefined;
5669
+ requestId?: string | undefined;
5670
+ endpointName?: string | undefined;
5671
+ startedTimeStamp?: number | undefined;
5672
+ status: _reduxjs_toolkit_query.QueryStatus;
5673
+ isUninitialized: false;
5674
+ isLoading: false;
5675
+ isError: false;
5676
+ isSuccess: true;
5677
+ isFetching: false;
5678
+ error: undefined;
5679
+ data: GetInvitationsApiResponse;
5680
+ fulfilledTimeStamp: number;
5681
+ currentData: GetInvitationsApiResponse;
5682
+ } | {
5683
+ data?: GetInvitationsApiResponse | undefined;
5684
+ fulfilledTimeStamp?: number | undefined;
5685
+ originalArgs?: void | undefined;
5686
+ requestId?: string | undefined;
5687
+ endpointName?: string | undefined;
5688
+ startedTimeStamp?: number | undefined;
5689
+ status: _reduxjs_toolkit_query.QueryStatus;
5690
+ currentData?: GetInvitationsApiResponse | undefined;
5691
+ isUninitialized: false;
5692
+ isLoading: false;
5693
+ isFetching: false;
5694
+ isSuccess: false;
5695
+ isError: true;
5696
+ error: unknown;
5697
+ }) & {
5698
+ status: _reduxjs_toolkit_query.QueryStatus;
5699
+ }>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
5700
+ skip?: boolean | undefined;
5701
+ refetchOnMountOrArgChange?: number | boolean | undefined;
5702
+ } & {
5703
+ skip?: boolean | undefined;
5704
+ selectFromResult?: ((state: ({
5705
+ data?: undefined;
5706
+ error?: undefined;
5707
+ fulfilledTimeStamp?: undefined;
5708
+ originalArgs?: undefined;
5709
+ requestId?: undefined;
5710
+ endpointName?: string | undefined;
5711
+ startedTimeStamp?: undefined;
5712
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5713
+ currentData?: GetInvitationsApiResponse | undefined;
5714
+ isLoading: false;
5715
+ isFetching: false;
5716
+ isSuccess: false;
5717
+ isError: false;
5718
+ isUninitialized: true;
5719
+ } | {
5720
+ error?: unknown;
5721
+ fulfilledTimeStamp?: number | undefined;
5722
+ originalArgs?: void | undefined;
5723
+ requestId?: string | undefined;
5724
+ endpointName?: string | undefined;
5725
+ startedTimeStamp?: number | undefined;
5726
+ status: _reduxjs_toolkit_query.QueryStatus;
5727
+ currentData?: GetInvitationsApiResponse | undefined;
5728
+ isUninitialized: false;
5729
+ isSuccess: false;
5730
+ isError: false;
5731
+ isLoading: true;
5732
+ isFetching: boolean;
5733
+ data: undefined;
5734
+ } | {
5735
+ originalArgs?: void | undefined;
5736
+ requestId?: string | undefined;
5737
+ endpointName?: string | undefined;
5738
+ startedTimeStamp?: number | undefined;
5739
+ status: _reduxjs_toolkit_query.QueryStatus;
5740
+ currentData?: GetInvitationsApiResponse | undefined;
5741
+ isUninitialized: false;
5742
+ isLoading: false;
5743
+ isError: false;
5744
+ isSuccess: true;
5745
+ isFetching: true;
5746
+ error: undefined;
5747
+ data: GetInvitationsApiResponse;
5748
+ fulfilledTimeStamp: number;
5749
+ } | {
5750
+ originalArgs?: void | undefined;
5751
+ requestId?: string | undefined;
5752
+ endpointName?: string | undefined;
5753
+ startedTimeStamp?: number | undefined;
5754
+ status: _reduxjs_toolkit_query.QueryStatus;
5755
+ isUninitialized: false;
5756
+ isLoading: false;
5757
+ isError: false;
5758
+ isSuccess: true;
5759
+ isFetching: false;
5760
+ error: undefined;
5761
+ data: GetInvitationsApiResponse;
5762
+ fulfilledTimeStamp: number;
5763
+ currentData: GetInvitationsApiResponse;
5764
+ } | {
5765
+ data?: GetInvitationsApiResponse | undefined;
5766
+ fulfilledTimeStamp?: number | undefined;
5767
+ originalArgs?: void | undefined;
5768
+ requestId?: string | undefined;
5769
+ endpointName?: string | undefined;
5770
+ startedTimeStamp?: number | undefined;
5771
+ status: _reduxjs_toolkit_query.QueryStatus;
5772
+ currentData?: GetInvitationsApiResponse | undefined;
5773
+ isUninitialized: false;
5774
+ isLoading: false;
5775
+ isFetching: false;
5776
+ isSuccess: false;
5777
+ isError: true;
5778
+ error: unknown;
5779
+ }) & {
5780
+ status: _reduxjs_toolkit_query.QueryStatus;
5781
+ }) => R) | undefined;
5782
+ }) | undefined) => [R][R extends any ? 0 : never] & {
5783
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationsApiResponse, "api", unknown>>;
5784
+ };
5785
+ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
5786
+ requestId?: undefined;
5787
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5788
+ data?: undefined;
5789
+ error?: undefined;
5790
+ endpointName?: string | undefined;
5791
+ startedTimeStamp?: undefined;
5792
+ fulfilledTimeStamp?: undefined;
5793
+ } & {
5794
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5795
+ isUninitialized: true;
5796
+ isLoading: false;
5797
+ isSuccess: false;
5798
+ isError: false;
5799
+ }) | ({
5800
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5801
+ } & Omit<{
5802
+ requestId: string;
5803
+ data?: CreateInvitationApiResponse | undefined;
5804
+ error?: unknown;
5805
+ endpointName: string;
5806
+ startedTimeStamp: number;
5807
+ fulfilledTimeStamp?: number | undefined;
5808
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5809
+ requestId: string;
5810
+ data?: CreateInvitationApiResponse | undefined;
5811
+ error?: unknown;
5812
+ endpointName: string;
5813
+ startedTimeStamp: number;
5814
+ fulfilledTimeStamp?: number | undefined;
5815
+ }, "data" | "fulfilledTimeStamp">> & {
5816
+ error: undefined;
5817
+ } & {
5818
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5819
+ isUninitialized: false;
5820
+ isLoading: false;
5821
+ isSuccess: true;
5822
+ isError: false;
5823
+ }) | ({
5824
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5825
+ } & {
5826
+ requestId: string;
5827
+ data?: CreateInvitationApiResponse | undefined;
5828
+ error?: unknown;
5829
+ endpointName: string;
5830
+ startedTimeStamp: number;
5831
+ fulfilledTimeStamp?: number | undefined;
5832
+ } & {
5833
+ data?: undefined;
5834
+ } & {
5835
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5836
+ isUninitialized: false;
5837
+ isLoading: true;
5838
+ isSuccess: false;
5839
+ isError: false;
5840
+ }) | ({
5841
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5842
+ } & Omit<{
5843
+ requestId: string;
5844
+ data?: CreateInvitationApiResponse | undefined;
5845
+ error?: unknown;
5846
+ endpointName: string;
5847
+ startedTimeStamp: number;
5848
+ fulfilledTimeStamp?: number | undefined;
5849
+ }, "error"> & Required<Pick<{
5850
+ requestId: string;
5851
+ data?: CreateInvitationApiResponse | undefined;
5852
+ error?: unknown;
5853
+ endpointName: string;
5854
+ startedTimeStamp: number;
5855
+ fulfilledTimeStamp?: number | undefined;
5856
+ }, "error">> & {
5857
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5858
+ isUninitialized: false;
5859
+ isLoading: false;
5860
+ isSuccess: false;
5861
+ isError: true;
5862
+ })>(options?: {
5863
+ selectFromResult?: ((state: ({
5864
+ requestId?: undefined;
5865
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5866
+ data?: undefined;
5867
+ error?: undefined;
5868
+ endpointName?: string | undefined;
5869
+ startedTimeStamp?: undefined;
5870
+ fulfilledTimeStamp?: undefined;
5871
+ } & {
5872
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5873
+ isUninitialized: true;
5874
+ isLoading: false;
5875
+ isSuccess: false;
5876
+ isError: false;
5877
+ }) | ({
5878
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5879
+ } & Omit<{
5880
+ requestId: string;
5881
+ data?: CreateInvitationApiResponse | undefined;
5882
+ error?: unknown;
5883
+ endpointName: string;
5884
+ startedTimeStamp: number;
5885
+ fulfilledTimeStamp?: number | undefined;
5886
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5887
+ requestId: string;
5888
+ data?: CreateInvitationApiResponse | undefined;
5889
+ error?: unknown;
5890
+ endpointName: string;
5891
+ startedTimeStamp: number;
5892
+ fulfilledTimeStamp?: number | undefined;
5893
+ }, "data" | "fulfilledTimeStamp">> & {
5894
+ error: undefined;
5895
+ } & {
5896
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5897
+ isUninitialized: false;
5898
+ isLoading: false;
5899
+ isSuccess: true;
5900
+ isError: false;
5901
+ }) | ({
5902
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5903
+ } & {
5904
+ requestId: string;
5905
+ data?: CreateInvitationApiResponse | undefined;
5906
+ error?: unknown;
5907
+ endpointName: string;
5908
+ startedTimeStamp: number;
5909
+ fulfilledTimeStamp?: number | undefined;
5910
+ } & {
5911
+ data?: undefined;
5912
+ } & {
5913
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5914
+ isUninitialized: false;
5915
+ isLoading: true;
5916
+ isSuccess: false;
5917
+ isError: false;
5918
+ }) | ({
5919
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5920
+ } & Omit<{
5921
+ requestId: string;
5922
+ data?: CreateInvitationApiResponse | undefined;
5923
+ error?: unknown;
5924
+ endpointName: string;
5925
+ startedTimeStamp: number;
5926
+ fulfilledTimeStamp?: number | undefined;
5927
+ }, "error"> & Required<Pick<{
5928
+ requestId: string;
5929
+ data?: CreateInvitationApiResponse | undefined;
5930
+ error?: unknown;
5931
+ endpointName: string;
5932
+ startedTimeStamp: number;
5933
+ fulfilledTimeStamp?: number | undefined;
5934
+ }, "error">> & {
5935
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5936
+ isUninitialized: false;
5937
+ isLoading: false;
5938
+ isSuccess: false;
5939
+ isError: true;
5940
+ })) => R) | undefined;
5941
+ fixedCacheKey?: string | undefined;
5942
+ } | 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> & {
5943
+ originalArgs?: CreateInvitationApiArg | undefined;
5944
+ reset: () => void;
5945
+ }];
5092
5946
 
5093
- export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, 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 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, injectedRtkApi as cloudApi, useCreateEnvironmentMutation, useDeleteApiWorkspacesByIdMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateCurrentItemInProgressTrackerMutation };
5947
+ export { type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, 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, useCreateEnvironmentMutation, useCreateInvitationMutation, useDeleteApiWorkspacesByIdMutation, 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 };