@meshery/schemas 0.8.67 → 0.8.69
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 +236 -7
- package/dist/cloudApi.d.ts +236 -7
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/index.d.mts +383 -19
- package/dist/index.d.ts +383 -19
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -34,6 +34,7 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
|
|
|
34
34
|
getInvitations: _reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetInvitationsApiResponse, "api", unknown>;
|
|
35
35
|
createInvitation: _reduxjs_toolkit_query.MutationDefinition<CreateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateInvitationApiResponse, "api", unknown>;
|
|
36
36
|
acceptInvitation: _reduxjs_toolkit_query.MutationDefinition<AcceptInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, AcceptInvitationApiResponse, "api", unknown>;
|
|
37
|
+
createOrUpdateBadge: _reduxjs_toolkit_query.MutationDefinition<CreateOrUpdateBadgeApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, CreateOrUpdateBadgeApiResponse, "api", unknown>;
|
|
37
38
|
}, "api", never, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
|
|
38
39
|
|
|
39
40
|
type ImportDesignApiResponse = {
|
|
@@ -453,16 +454,24 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
|
|
|
453
454
|
/** Canonical URL for the learning path */
|
|
454
455
|
permalink: string;
|
|
455
456
|
badge?: {
|
|
457
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
458
|
+
id: string;
|
|
459
|
+
/** The ID of the organization in which this badge is available . */
|
|
460
|
+
org_id: string;
|
|
456
461
|
/** unique identifier for the badge ( auto generated ) */
|
|
457
462
|
label: string;
|
|
458
|
-
/**
|
|
459
|
-
|
|
460
|
-
/**
|
|
463
|
+
/** Concise descriptor for the badge or certificate. */
|
|
464
|
+
name: string;
|
|
465
|
+
/** A description of the milestone achieved, often including criteria for receiving this recognition. */
|
|
461
466
|
description: string;
|
|
462
467
|
/** URL to the badge image */
|
|
463
|
-
|
|
464
|
-
/**
|
|
465
|
-
|
|
468
|
+
image_url: string;
|
|
469
|
+
/** Timestamp when the resource was created. */
|
|
470
|
+
created_at: string;
|
|
471
|
+
/** Timestamp when the resource was updated. */
|
|
472
|
+
updated_at: string;
|
|
473
|
+
/** Timestamp when the resource was deleted. */
|
|
474
|
+
deleted_at: string;
|
|
466
475
|
};
|
|
467
476
|
certificate?: {
|
|
468
477
|
/** Unique identifier for the certificate */
|
|
@@ -1133,6 +1142,48 @@ type AcceptInvitationApiArg = {
|
|
|
1133
1142
|
/** The ID of the invitation */
|
|
1134
1143
|
invitationId: string;
|
|
1135
1144
|
};
|
|
1145
|
+
type CreateOrUpdateBadgeApiResponse = {
|
|
1146
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
1147
|
+
id: string;
|
|
1148
|
+
/** The ID of the organization in which this badge is available . */
|
|
1149
|
+
org_id: string;
|
|
1150
|
+
/** unique identifier for the badge ( auto generated ) */
|
|
1151
|
+
label: string;
|
|
1152
|
+
/** Concise descriptor for the badge or certificate. */
|
|
1153
|
+
name: string;
|
|
1154
|
+
/** A description of the milestone achieved, often including criteria for receiving this recognition. */
|
|
1155
|
+
description: string;
|
|
1156
|
+
/** URL to the badge image */
|
|
1157
|
+
image_url: string;
|
|
1158
|
+
/** Timestamp when the resource was created. */
|
|
1159
|
+
created_at: string;
|
|
1160
|
+
/** Timestamp when the resource was updated. */
|
|
1161
|
+
updated_at: string;
|
|
1162
|
+
/** Timestamp when the resource was deleted. */
|
|
1163
|
+
deleted_at: string;
|
|
1164
|
+
};
|
|
1165
|
+
type CreateOrUpdateBadgeApiArg = {
|
|
1166
|
+
body: {
|
|
1167
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
1168
|
+
id: string;
|
|
1169
|
+
/** The ID of the organization in which this badge is available . */
|
|
1170
|
+
org_id: string;
|
|
1171
|
+
/** unique identifier for the badge ( auto generated ) */
|
|
1172
|
+
label: string;
|
|
1173
|
+
/** Concise descriptor for the badge or certificate. */
|
|
1174
|
+
name: string;
|
|
1175
|
+
/** A description of the milestone achieved, often including criteria for receiving this recognition. */
|
|
1176
|
+
description: string;
|
|
1177
|
+
/** URL to the badge image */
|
|
1178
|
+
image_url: string;
|
|
1179
|
+
/** Timestamp when the resource was created. */
|
|
1180
|
+
created_at: string;
|
|
1181
|
+
/** Timestamp when the resource was updated. */
|
|
1182
|
+
updated_at: string;
|
|
1183
|
+
/** Timestamp when the resource was deleted. */
|
|
1184
|
+
deleted_at: string;
|
|
1185
|
+
};
|
|
1186
|
+
};
|
|
1136
1187
|
declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
1137
1188
|
requestId?: undefined;
|
|
1138
1189
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
@@ -1292,6 +1343,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
|
|
|
1292
1343
|
fixedCacheKey?: string | undefined;
|
|
1293
1344
|
} | 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> & {
|
|
1294
1345
|
originalArgs?: ImportDesignApiArg | undefined;
|
|
1346
|
+
/** Filter by content types */
|
|
1295
1347
|
reset: () => void;
|
|
1296
1348
|
}];
|
|
1297
1349
|
declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
@@ -1453,6 +1505,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
|
|
|
1453
1505
|
fixedCacheKey?: string | undefined;
|
|
1454
1506
|
} | 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> & {
|
|
1455
1507
|
originalArgs?: RegisterMeshmodelsApiArg | undefined;
|
|
1508
|
+
/** Filter by content types */
|
|
1456
1509
|
reset: () => void;
|
|
1457
1510
|
}];
|
|
1458
1511
|
declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
|
|
@@ -1777,6 +1830,7 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
|
|
|
1777
1830
|
fixedCacheKey?: string | undefined;
|
|
1778
1831
|
} | 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> & {
|
|
1779
1832
|
originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
|
|
1833
|
+
/** Filter by content types */
|
|
1780
1834
|
reset: () => void;
|
|
1781
1835
|
}];
|
|
1782
1836
|
declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Record<string, any> = ({
|
|
@@ -1938,6 +1992,7 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
|
|
|
1938
1992
|
fixedCacheKey?: string | undefined;
|
|
1939
1993
|
} | 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> & {
|
|
1940
1994
|
originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
|
|
1995
|
+
/** Filter by content types */
|
|
1941
1996
|
reset: () => void;
|
|
1942
1997
|
}];
|
|
1943
1998
|
declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Record<string, any> = ({
|
|
@@ -2099,6 +2154,7 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
|
|
|
2099
2154
|
fixedCacheKey?: string | undefined;
|
|
2100
2155
|
} | 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> & {
|
|
2101
2156
|
originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
|
|
2157
|
+
/** Filter by content types */
|
|
2102
2158
|
reset: () => void;
|
|
2103
2159
|
}];
|
|
2104
2160
|
declare const useGetPlansQuery: <R extends Record<string, any> = ({
|
|
@@ -2912,6 +2968,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
|
|
|
2912
2968
|
fixedCacheKey?: string | undefined;
|
|
2913
2969
|
} | 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> & {
|
|
2914
2970
|
originalArgs?: PostApiWorkspacesApiArg | undefined;
|
|
2971
|
+
/** Filter by content types */
|
|
2915
2972
|
reset: () => void;
|
|
2916
2973
|
}];
|
|
2917
2974
|
declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
|
|
@@ -3236,6 +3293,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
|
|
|
3236
3293
|
fixedCacheKey?: string | undefined;
|
|
3237
3294
|
} | 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> & {
|
|
3238
3295
|
originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
|
|
3296
|
+
/** Filter by content types */
|
|
3239
3297
|
reset: () => void;
|
|
3240
3298
|
}];
|
|
3241
3299
|
declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
|
|
@@ -3397,6 +3455,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
|
|
|
3397
3455
|
fixedCacheKey?: string | undefined;
|
|
3398
3456
|
} | 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> & {
|
|
3399
3457
|
originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
|
|
3458
|
+
/** Filter by content types */
|
|
3400
3459
|
reset: () => void;
|
|
3401
3460
|
}];
|
|
3402
3461
|
declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
@@ -3558,6 +3617,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
|
|
|
3558
3617
|
fixedCacheKey?: string | undefined;
|
|
3559
3618
|
} | 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> & {
|
|
3560
3619
|
originalArgs?: CreateEnvironmentApiArg | undefined;
|
|
3620
|
+
/** Filter by content types */
|
|
3561
3621
|
reset: () => void;
|
|
3562
3622
|
}];
|
|
3563
3623
|
declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
|
|
@@ -4371,6 +4431,7 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
|
|
|
4371
4431
|
fixedCacheKey?: string | undefined;
|
|
4372
4432
|
} | 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> & {
|
|
4373
4433
|
originalArgs?: RegisterToAcademyContentApiArg | undefined;
|
|
4434
|
+
/** Filter by content types */
|
|
4374
4435
|
reset: () => void;
|
|
4375
4436
|
}];
|
|
4376
4437
|
declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
|
|
@@ -4695,6 +4756,7 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
|
|
|
4695
4756
|
fixedCacheKey?: string | undefined;
|
|
4696
4757
|
} | 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> & {
|
|
4697
4758
|
originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
|
|
4759
|
+
/** Filter by content types */
|
|
4698
4760
|
reset: () => void;
|
|
4699
4761
|
}];
|
|
4700
4762
|
declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
@@ -4856,6 +4918,7 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
|
|
|
4856
4918
|
fixedCacheKey?: string | undefined;
|
|
4857
4919
|
} | 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> & {
|
|
4858
4920
|
originalArgs?: SubmitQuizApiArg | undefined;
|
|
4921
|
+
/** Filter by content types */
|
|
4859
4922
|
reset: () => void;
|
|
4860
4923
|
}];
|
|
4861
4924
|
declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
|
|
@@ -5669,6 +5732,7 @@ declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5669
5732
|
fixedCacheKey?: string | undefined;
|
|
5670
5733
|
} | 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> & {
|
|
5671
5734
|
originalArgs?: DeleteInvitationApiArg | undefined;
|
|
5735
|
+
/** Filter by content types */
|
|
5672
5736
|
reset: () => void;
|
|
5673
5737
|
}];
|
|
5674
5738
|
declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
|
|
@@ -5830,6 +5894,7 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
5830
5894
|
fixedCacheKey?: string | undefined;
|
|
5831
5895
|
} | 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> & {
|
|
5832
5896
|
originalArgs?: UpdateInvitationApiArg | undefined;
|
|
5897
|
+
/** Filter by content types */
|
|
5833
5898
|
reset: () => void;
|
|
5834
5899
|
}];
|
|
5835
5900
|
declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
|
|
@@ -6154,6 +6219,7 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
|
|
|
6154
6219
|
fixedCacheKey?: string | undefined;
|
|
6155
6220
|
} | 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> & {
|
|
6156
6221
|
originalArgs?: CreateInvitationApiArg | undefined;
|
|
6222
|
+
/** Filter by content types */
|
|
6157
6223
|
reset: () => void;
|
|
6158
6224
|
}];
|
|
6159
6225
|
declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
|
|
@@ -6315,7 +6381,170 @@ declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
|
|
|
6315
6381
|
fixedCacheKey?: string | undefined;
|
|
6316
6382
|
} | 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> & {
|
|
6317
6383
|
originalArgs?: AcceptInvitationApiArg | undefined;
|
|
6384
|
+
/** Filter by content types */
|
|
6385
|
+
reset: () => void;
|
|
6386
|
+
}];
|
|
6387
|
+
declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = ({
|
|
6388
|
+
requestId?: undefined;
|
|
6389
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6390
|
+
data?: undefined;
|
|
6391
|
+
error?: undefined;
|
|
6392
|
+
endpointName?: string | undefined;
|
|
6393
|
+
startedTimeStamp?: undefined;
|
|
6394
|
+
fulfilledTimeStamp?: undefined;
|
|
6395
|
+
} & {
|
|
6396
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6397
|
+
isUninitialized: true;
|
|
6398
|
+
isLoading: false;
|
|
6399
|
+
isSuccess: false;
|
|
6400
|
+
isError: false;
|
|
6401
|
+
}) | ({
|
|
6402
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
6403
|
+
} & Omit<{
|
|
6404
|
+
requestId: string;
|
|
6405
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6406
|
+
error?: unknown;
|
|
6407
|
+
endpointName: string;
|
|
6408
|
+
startedTimeStamp: number;
|
|
6409
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6410
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6411
|
+
requestId: string;
|
|
6412
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6413
|
+
error?: unknown;
|
|
6414
|
+
endpointName: string;
|
|
6415
|
+
startedTimeStamp: number;
|
|
6416
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6417
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6418
|
+
error: undefined;
|
|
6419
|
+
} & {
|
|
6420
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
6421
|
+
isUninitialized: false;
|
|
6422
|
+
isLoading: false;
|
|
6423
|
+
isSuccess: true;
|
|
6424
|
+
isError: false;
|
|
6425
|
+
}) | ({
|
|
6426
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
6427
|
+
} & {
|
|
6428
|
+
requestId: string;
|
|
6429
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6430
|
+
error?: unknown;
|
|
6431
|
+
endpointName: string;
|
|
6432
|
+
startedTimeStamp: number;
|
|
6433
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6434
|
+
} & {
|
|
6435
|
+
data?: undefined;
|
|
6436
|
+
} & {
|
|
6437
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
6438
|
+
isUninitialized: false;
|
|
6439
|
+
isLoading: true;
|
|
6440
|
+
isSuccess: false;
|
|
6441
|
+
isError: false;
|
|
6442
|
+
}) | ({
|
|
6443
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
6444
|
+
} & Omit<{
|
|
6445
|
+
requestId: string;
|
|
6446
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6447
|
+
error?: unknown;
|
|
6448
|
+
endpointName: string;
|
|
6449
|
+
startedTimeStamp: number;
|
|
6450
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6451
|
+
}, "error"> & Required<Pick<{
|
|
6452
|
+
requestId: string;
|
|
6453
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6454
|
+
error?: unknown;
|
|
6455
|
+
endpointName: string;
|
|
6456
|
+
startedTimeStamp: number;
|
|
6457
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6458
|
+
}, "error">> & {
|
|
6459
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
6460
|
+
isUninitialized: false;
|
|
6461
|
+
isLoading: false;
|
|
6462
|
+
isSuccess: false;
|
|
6463
|
+
isError: true;
|
|
6464
|
+
})>(options?: {
|
|
6465
|
+
selectFromResult?: ((state: ({
|
|
6466
|
+
requestId?: undefined;
|
|
6467
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6468
|
+
data?: undefined;
|
|
6469
|
+
error?: undefined;
|
|
6470
|
+
endpointName?: string | undefined;
|
|
6471
|
+
startedTimeStamp?: undefined;
|
|
6472
|
+
fulfilledTimeStamp?: undefined;
|
|
6473
|
+
} & {
|
|
6474
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6475
|
+
isUninitialized: true;
|
|
6476
|
+
isLoading: false;
|
|
6477
|
+
isSuccess: false;
|
|
6478
|
+
isError: false;
|
|
6479
|
+
}) | ({
|
|
6480
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
6481
|
+
} & Omit<{
|
|
6482
|
+
requestId: string;
|
|
6483
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6484
|
+
error?: unknown;
|
|
6485
|
+
endpointName: string;
|
|
6486
|
+
startedTimeStamp: number;
|
|
6487
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6488
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6489
|
+
requestId: string;
|
|
6490
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6491
|
+
error?: unknown;
|
|
6492
|
+
endpointName: string;
|
|
6493
|
+
startedTimeStamp: number;
|
|
6494
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6495
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6496
|
+
error: undefined;
|
|
6497
|
+
} & {
|
|
6498
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
6499
|
+
isUninitialized: false;
|
|
6500
|
+
isLoading: false;
|
|
6501
|
+
isSuccess: true;
|
|
6502
|
+
isError: false;
|
|
6503
|
+
}) | ({
|
|
6504
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
6505
|
+
} & {
|
|
6506
|
+
requestId: string;
|
|
6507
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6508
|
+
error?: unknown;
|
|
6509
|
+
endpointName: string;
|
|
6510
|
+
startedTimeStamp: number;
|
|
6511
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6512
|
+
} & {
|
|
6513
|
+
data?: undefined;
|
|
6514
|
+
} & {
|
|
6515
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
6516
|
+
isUninitialized: false;
|
|
6517
|
+
isLoading: true;
|
|
6518
|
+
isSuccess: false;
|
|
6519
|
+
isError: false;
|
|
6520
|
+
}) | ({
|
|
6521
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
6522
|
+
} & Omit<{
|
|
6523
|
+
requestId: string;
|
|
6524
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6525
|
+
error?: unknown;
|
|
6526
|
+
endpointName: string;
|
|
6527
|
+
startedTimeStamp: number;
|
|
6528
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6529
|
+
}, "error"> & Required<Pick<{
|
|
6530
|
+
requestId: string;
|
|
6531
|
+
data?: CreateOrUpdateBadgeApiResponse | undefined;
|
|
6532
|
+
error?: unknown;
|
|
6533
|
+
endpointName: string;
|
|
6534
|
+
startedTimeStamp: number;
|
|
6535
|
+
fulfilledTimeStamp?: number | undefined;
|
|
6536
|
+
}, "error">> & {
|
|
6537
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
6538
|
+
isUninitialized: false;
|
|
6539
|
+
isLoading: false;
|
|
6540
|
+
isSuccess: false;
|
|
6541
|
+
isError: true;
|
|
6542
|
+
})) => R) | undefined;
|
|
6543
|
+
fixedCacheKey?: string | undefined;
|
|
6544
|
+
} | 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
|
+
originalArgs?: CreateOrUpdateBadgeApiArg | undefined;
|
|
6546
|
+
/** Filter by content types */
|
|
6318
6547
|
reset: () => void;
|
|
6319
6548
|
}];
|
|
6320
6549
|
|
|
6321
|
-
export { type AcceptInvitationApiArg, type AcceptInvitationApiResponse, type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, 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, 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 };
|
|
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 };
|