@vendure/admin-ui 3.2.3 → 3.3.0
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/core/common/generated-types.d.ts +64 -0
- package/core/common/version.d.ts +1 -1
- package/fesm2022/vendure-admin-ui-catalog.mjs +109 -109
- package/fesm2022/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-core.mjs +687 -678
- package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-customer.mjs +43 -43
- package/fesm2022/vendure-admin-ui-customer.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-dashboard.mjs +41 -41
- package/fesm2022/vendure-admin-ui-dashboard.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-login.mjs +10 -10
- package/fesm2022/vendure-admin-ui-login.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-marketing.mjs +10 -10
- package/fesm2022/vendure-admin-ui-marketing.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-order.mjs +133 -133
- package/fesm2022/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-react.mjs +15 -15
- package/fesm2022/vendure-admin-ui-react.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-settings.mjs +109 -109
- package/fesm2022/vendure-admin-ui-settings.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-system.mjs +107 -15
- package/fesm2022/vendure-admin-ui-system.mjs.map +1 -1
- package/package.json +9 -9
- package/static/i18n-messages/ar.json +115 -99
- package/static/i18n-messages/cs.json +214 -198
- package/static/i18n-messages/de.json +20 -4
- package/static/i18n-messages/en.json +19 -7
- package/static/i18n-messages/es.json +20 -4
- package/static/i18n-messages/fa.json +20 -4
- package/static/i18n-messages/fr.json +51 -35
- package/static/i18n-messages/he.json +20 -4
- package/static/i18n-messages/hr.json +20 -4
- package/static/i18n-messages/it.json +20 -4
- package/static/i18n-messages/ja.json +20 -8
- package/static/i18n-messages/nb.json +25 -7
- package/static/i18n-messages/ne.json +31 -15
- package/static/i18n-messages/pl.json +20 -4
- package/static/i18n-messages/pt_BR.json +18 -2
- package/static/i18n-messages/pt_PT.json +20 -5
- package/static/i18n-messages/ru.json +20 -4
- package/static/i18n-messages/sv.json +34 -11
- package/static/i18n-messages/tr.json +829 -813
- package/static/i18n-messages/uk.json +20 -4
- package/static/i18n-messages/zh_Hans.json +240 -224
- package/static/i18n-messages/zh_Hant.json +421 -405
- package/system/components/scheduled-tasks/scheduled-task-list.component.d.ts +18 -0
- package/system/public_api.d.ts +1 -0
- package/system/system.module.d.ts +4 -3
|
@@ -2796,6 +2796,7 @@ export type Mutation = {
|
|
|
2796
2796
|
requestCompleted: Scalars['Int']['output'];
|
|
2797
2797
|
requestStarted: Scalars['Int']['output'];
|
|
2798
2798
|
runPendingSearchIndexUpdates: Success;
|
|
2799
|
+
runScheduledTask: Success;
|
|
2799
2800
|
setActiveChannel: UserStatus;
|
|
2800
2801
|
setAsLoggedIn: UserStatus;
|
|
2801
2802
|
setAsLoggedOut: UserStatus;
|
|
@@ -2870,6 +2871,7 @@ export type Mutation = {
|
|
|
2870
2871
|
updateProvince: Province;
|
|
2871
2872
|
/** Update an existing Role */
|
|
2872
2873
|
updateRole: Role;
|
|
2874
|
+
updateScheduledTask: ScheduledTask;
|
|
2873
2875
|
/** Update an existing Seller */
|
|
2874
2876
|
updateSeller: Seller;
|
|
2875
2877
|
/** Update an existing ShippingMethod */
|
|
@@ -3257,6 +3259,9 @@ export type MutationRemoveShippingMethodsFromChannelArgs = {
|
|
|
3257
3259
|
export type MutationRemoveStockLocationsFromChannelArgs = {
|
|
3258
3260
|
input: RemoveStockLocationsFromChannelInput;
|
|
3259
3261
|
};
|
|
3262
|
+
export type MutationRunScheduledTaskArgs = {
|
|
3263
|
+
id: Scalars['String']['input'];
|
|
3264
|
+
};
|
|
3260
3265
|
export type MutationSetActiveChannelArgs = {
|
|
3261
3266
|
channelId: Scalars['ID']['input'];
|
|
3262
3267
|
};
|
|
@@ -3404,6 +3409,9 @@ export type MutationUpdateProvinceArgs = {
|
|
|
3404
3409
|
export type MutationUpdateRoleArgs = {
|
|
3405
3410
|
input: UpdateRoleInput;
|
|
3406
3411
|
};
|
|
3412
|
+
export type MutationUpdateScheduledTaskArgs = {
|
|
3413
|
+
input: UpdateScheduledTaskInput;
|
|
3414
|
+
};
|
|
3407
3415
|
export type MutationUpdateSellerArgs = {
|
|
3408
3416
|
input: UpdateSellerInput;
|
|
3409
3417
|
};
|
|
@@ -4599,6 +4607,7 @@ export type Query = {
|
|
|
4599
4607
|
provinces: ProvinceList;
|
|
4600
4608
|
role?: Maybe<Role>;
|
|
4601
4609
|
roles: RoleList;
|
|
4610
|
+
scheduledTasks: Array<ScheduledTask>;
|
|
4602
4611
|
search: SearchResponse;
|
|
4603
4612
|
seller?: Maybe<Seller>;
|
|
4604
4613
|
sellers: SellerList;
|
|
@@ -5015,6 +5024,18 @@ export type Sale = Node & StockMovement & {
|
|
|
5015
5024
|
type: StockMovementType;
|
|
5016
5025
|
updatedAt: Scalars['DateTime']['output'];
|
|
5017
5026
|
};
|
|
5027
|
+
export type ScheduledTask = {
|
|
5028
|
+
__typename?: 'ScheduledTask';
|
|
5029
|
+
description: Scalars['String']['output'];
|
|
5030
|
+
enabled: Scalars['Boolean']['output'];
|
|
5031
|
+
id: Scalars['String']['output'];
|
|
5032
|
+
isRunning: Scalars['Boolean']['output'];
|
|
5033
|
+
lastExecutedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5034
|
+
lastResult?: Maybe<Scalars['JSON']['output']>;
|
|
5035
|
+
nextExecutionAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5036
|
+
schedule: Scalars['String']['output'];
|
|
5037
|
+
scheduleDescription: Scalars['String']['output'];
|
|
5038
|
+
};
|
|
5018
5039
|
export type SearchInput = {
|
|
5019
5040
|
collectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5020
5041
|
collectionSlug?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5868,6 +5889,10 @@ export type UpdateRoleInput = {
|
|
|
5868
5889
|
id: Scalars['ID']['input'];
|
|
5869
5890
|
permissions?: InputMaybe<Array<Permission>>;
|
|
5870
5891
|
};
|
|
5892
|
+
export type UpdateScheduledTaskInput = {
|
|
5893
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5894
|
+
id: Scalars['String']['input'];
|
|
5895
|
+
};
|
|
5871
5896
|
export type UpdateSellerInput = {
|
|
5872
5897
|
customFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
5873
5898
|
id: Scalars['ID']['input'];
|
|
@@ -20361,6 +20386,42 @@ export type ZoneListItemFragment = {
|
|
|
20361
20386
|
updatedAt: any;
|
|
20362
20387
|
name: string;
|
|
20363
20388
|
};
|
|
20389
|
+
export type GetAllScheduledTasksQueryVariables = Exact<{
|
|
20390
|
+
[key: string]: never;
|
|
20391
|
+
}>;
|
|
20392
|
+
export type GetAllScheduledTasksQuery = {
|
|
20393
|
+
scheduledTasks: Array<{
|
|
20394
|
+
__typename?: 'ScheduledTask';
|
|
20395
|
+
id: string;
|
|
20396
|
+
description: string;
|
|
20397
|
+
schedule: string;
|
|
20398
|
+
scheduleDescription: string;
|
|
20399
|
+
lastExecutedAt?: any | null;
|
|
20400
|
+
nextExecutionAt?: any | null;
|
|
20401
|
+
isRunning: boolean;
|
|
20402
|
+
lastResult?: any | null;
|
|
20403
|
+
enabled: boolean;
|
|
20404
|
+
}>;
|
|
20405
|
+
};
|
|
20406
|
+
export type ToggleScheduledTaskEnabledMutationVariables = Exact<{
|
|
20407
|
+
input: UpdateScheduledTaskInput;
|
|
20408
|
+
}>;
|
|
20409
|
+
export type ToggleScheduledTaskEnabledMutation = {
|
|
20410
|
+
updateScheduledTask: {
|
|
20411
|
+
__typename?: 'ScheduledTask';
|
|
20412
|
+
id: string;
|
|
20413
|
+
enabled: boolean;
|
|
20414
|
+
};
|
|
20415
|
+
};
|
|
20416
|
+
export type RunTaskMutationVariables = Exact<{
|
|
20417
|
+
id: Scalars['String']['input'];
|
|
20418
|
+
}>;
|
|
20419
|
+
export type RunTaskMutation = {
|
|
20420
|
+
runScheduledTask: {
|
|
20421
|
+
__typename?: 'Success';
|
|
20422
|
+
success: boolean;
|
|
20423
|
+
};
|
|
20424
|
+
};
|
|
20364
20425
|
export declare const ProductListQueryProductFragmentFragmentDoc: DocumentNode<ProductListQueryProductFragmentFragment, unknown>;
|
|
20365
20426
|
export declare const ProductVariantPriceFragmentDoc: DocumentNode<ProductVariantPriceFragment, unknown>;
|
|
20366
20427
|
export declare const ProductOptionFragmentDoc: DocumentNode<ProductOptionFragment, unknown>;
|
|
@@ -20712,4 +20773,7 @@ export declare const GetTaxRateDetailDocument: DocumentNode<GetTaxRateDetailQuer
|
|
|
20712
20773
|
export declare const GetTaxRateListDocument: DocumentNode<GetTaxRateListQuery, GetTaxRateListQueryVariables>;
|
|
20713
20774
|
export declare const GetZoneDetailDocument: DocumentNode<GetZoneDetailQuery, GetZoneDetailQueryVariables>;
|
|
20714
20775
|
export declare const GetZoneListDocument: DocumentNode<GetZoneListQuery, GetZoneListQueryVariables>;
|
|
20776
|
+
export declare const GetAllScheduledTasksDocument: DocumentNode<GetAllScheduledTasksQuery, GetAllScheduledTasksQueryVariables>;
|
|
20777
|
+
export declare const ToggleScheduledTaskEnabledDocument: DocumentNode<ToggleScheduledTaskEnabledMutation, ToggleScheduledTaskEnabledMutationVariables>;
|
|
20778
|
+
export declare const RunTaskDocument: DocumentNode<RunTaskMutation, RunTaskMutationVariables>;
|
|
20715
20779
|
export {};
|
package/core/common/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ADMIN_UI_VERSION = "3.
|
|
1
|
+
export declare const ADMIN_UI_VERSION = "3.3.0";
|