@vendure/admin-ui 1.3.4 → 1.4.0-beta.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/bundles/vendure-admin-ui-catalog.umd.js +63 -155
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +1595 -168
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-customer.umd.js +79 -57
- package/bundles/vendure-admin-ui-customer.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-marketing.umd.js +11 -1
- package/bundles/vendure-admin-ui-marketing.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-order.umd.js +10 -2
- package/bundles/vendure-admin-ui-order.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-settings.umd.js +156 -153
- package/bundles/vendure-admin-ui-settings.umd.js.map +1 -1
- package/catalog/components/collection-detail/collection-detail.component.d.ts +0 -1
- package/catalog/components/collection-list/collection-list.component.d.ts +3 -0
- package/catalog/components/facet-detail/facet-detail.component.d.ts +0 -1
- package/catalog/components/product-detail/product-detail.component.d.ts +0 -1
- package/catalog/vendure-admin-ui-catalog.metadata.json +1 -1
- package/core/app.component.d.ts +1 -0
- package/core/common/base-detail.component.d.ts +42 -1
- package/core/common/base-entity-resolver.d.ts +28 -1
- package/core/common/base-list.component.d.ts +75 -1
- package/core/common/component-registry-types.d.ts +46 -0
- package/core/common/generated-types.d.ts +223 -23
- package/core/common/utilities/get-default-ui-language.d.ts +1 -0
- package/core/common/version.d.ts +1 -1
- package/core/components/app-shell/app-shell.component.d.ts +1 -1
- package/core/components/ui-language-switcher-dialog/ui-language-switcher-dialog.component.d.ts +17 -4
- package/core/components/user-menu/user-menu.component.d.ts +1 -1
- package/core/data/client-state/client-defaults.d.ts +1 -1
- package/core/data/definitions/client-definitions.d.ts +3 -1
- package/core/data/definitions/customer-definitions.d.ts +1 -0
- package/core/data/providers/client-data.service.d.ts +3 -1
- package/core/data/providers/data.service.d.ts +54 -12
- package/core/data/query-result.d.ts +11 -2
- package/core/providers/custom-detail-component/custom-detail-component-types.d.ts +25 -0
- package/core/providers/custom-detail-component/custom-detail-component.service.d.ts +15 -0
- package/core/providers/custom-field-component/custom-field-component.service.d.ts +3 -3
- package/core/providers/local-storage/local-storage.service.d.ts +1 -0
- package/core/providers/modal/modal.service.d.ts +41 -12
- package/core/providers/nav-builder/nav-builder-types.d.ts +19 -1
- package/core/providers/nav-builder/nav-builder.service.d.ts +14 -10
- package/core/providers/notification/notification.service.d.ts +37 -0
- package/core/public_api.d.ts +8 -0
- package/core/shared/components/action-bar-items/action-bar-items.component.d.ts +2 -1
- package/core/shared/components/asset-picker-dialog/asset-picker-dialog.component.d.ts +18 -0
- package/core/shared/components/asset-preview/asset-preview.component.d.ts +0 -1
- package/core/shared/components/chip/chip.component.d.ts +20 -0
- package/core/shared/components/currency-input/currency-input.component.d.ts +11 -0
- package/core/shared/components/custom-detail-component-host/custom-detail-component-host.component.d.ts +17 -0
- package/core/shared/components/data-table/data-table.component.d.ts +59 -0
- package/core/shared/components/datetime-picker/datetime-picker.component.d.ts +17 -0
- package/core/shared/components/dropdown/dropdown.component.d.ts +25 -0
- package/core/shared/components/facet-value-selector/facet-value-selector.component.d.ts +22 -0
- package/core/shared/components/modal-dialog/modal-dialog.component.d.ts +1 -1
- package/core/shared/components/object-tree/object-tree.component.d.ts +8 -0
- package/core/shared/components/order-state-label/order-state-label.component.d.ts +10 -0
- package/core/shared/components/product-selector/product-selector.component.d.ts +12 -0
- package/core/shared/components/rich-text-editor/rich-text-editor.component.d.ts +12 -1
- package/core/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.d.ts +21 -0
- package/core/shared/components/ui-extension-point/ui-extension-point.component.d.ts +15 -0
- package/core/shared/directives/if-multichannel.directive.d.ts +14 -0
- package/core/shared/directives/if-permissions.directive.d.ts +3 -0
- package/core/shared/dynamic-form-inputs/boolean-form-input/boolean-form-input.component.d.ts +7 -0
- package/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.d.ts +32 -0
- package/core/shared/dynamic-form-inputs/currency-form-input/currency-form-input.component.d.ts +7 -0
- package/core/shared/dynamic-form-inputs/customer-group-form-input/customer-group-form-input.component.d.ts +8 -0
- package/core/shared/dynamic-form-inputs/date-form-input/date-form-input.component.d.ts +7 -0
- package/core/shared/dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component.d.ts +8 -0
- package/core/shared/dynamic-form-inputs/number-form-input/number-form-input.component.d.ts +7 -0
- package/core/shared/dynamic-form-inputs/password-form-input/password-form-input.component.d.ts +7 -0
- package/core/shared/dynamic-form-inputs/product-selector-form-input/product-selector-form-input.component.d.ts +8 -0
- package/core/shared/dynamic-form-inputs/register-dynamic-input-components.d.ts +39 -2
- package/core/shared/dynamic-form-inputs/relation-form-input/relation-form-input.component.d.ts +9 -0
- package/core/shared/dynamic-form-inputs/rich-text-form-input/rich-text-form-input.component.d.ts +16 -0
- package/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.d.ts +8 -0
- package/core/shared/dynamic-form-inputs/text-form-input/text-form-input.component.d.ts +7 -0
- package/core/shared/dynamic-form-inputs/textarea-form-input/textarea-form-input.component.d.ts +7 -0
- package/core/shared/pipes/asset-preview.pipe.d.ts +14 -0
- package/core/shared/pipes/duration.pipe.d.ts +8 -0
- package/core/shared/pipes/file-size.pipe.d.ts +8 -0
- package/core/shared/pipes/has-permission.pipe.d.ts +3 -1
- package/core/shared/pipes/locale-currency-name.pipe.d.ts +8 -0
- package/core/shared/pipes/locale-currency.pipe.d.ts +12 -0
- package/core/shared/pipes/locale-date.pipe.d.ts +7 -0
- package/core/shared/pipes/locale-language-name.pipe.d.ts +9 -1
- package/core/shared/pipes/locale-region-name.pipe.d.ts +18 -0
- package/core/shared/pipes/time-ago.pipe.d.ts +8 -0
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/customer/components/customer-detail/customer-detail.component.d.ts +2 -3
- package/customer/components/customer-group-detail-dialog/customer-group-detail-dialog.component.d.ts +14 -3
- package/customer/vendure-admin-ui-customer.metadata.json +1 -1
- package/esm2015/catalog/catalog.module.js +29 -28
- package/esm2015/catalog/components/asset-detail/asset-detail.component.js +2 -10
- package/esm2015/catalog/components/collection-detail/collection-detail.component.js +3 -16
- package/esm2015/catalog/components/collection-list/collection-list.component.js +23 -5
- package/esm2015/catalog/components/facet-detail/facet-detail.component.js +3 -15
- package/esm2015/catalog/components/product-assets/product-assets.component.js +2 -2
- package/esm2015/catalog/components/product-detail/product-detail.component.js +5 -27
- package/esm2015/catalog/components/product-variants-list/product-variants-list.component.js +3 -3
- package/esm2015/catalog/components/update-product-option-dialog/update-product-option-dialog.component.js +2 -2
- package/esm2015/core/app.component.js +20 -2
- package/esm2015/core/common/base-detail.component.js +53 -1
- package/esm2015/core/common/base-entity-resolver.js +29 -2
- package/esm2015/core/common/base-list.component.js +76 -2
- package/esm2015/core/common/component-registry-types.js +1 -1
- package/esm2015/core/common/generated-types.js +1 -1
- package/esm2015/core/common/utilities/get-default-ui-language.js +9 -1
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/core/components/app-shell/app-shell.component.js +12 -7
- package/esm2015/core/components/main-nav/main-nav.component.js +2 -2
- package/esm2015/core/components/ui-language-switcher-dialog/ui-language-switcher-dialog.component.js +281 -5
- package/esm2015/core/components/user-menu/user-menu.component.js +3 -3
- package/esm2015/core/data/client-state/client-defaults.js +5 -2
- package/esm2015/core/data/client-state/client-resolvers.js +32 -33
- package/esm2015/core/data/definitions/client-definitions.js +18 -3
- package/esm2015/core/data/definitions/customer-definitions.js +21 -25
- package/esm2015/core/data/definitions/settings-definitions.js +27 -5
- package/esm2015/core/data/providers/client-data.service.js +15 -4
- package/esm2015/core/data/providers/data.service.js +44 -2
- package/esm2015/core/data/providers/settings-data.service.js +3 -3
- package/esm2015/core/data/query-result.js +14 -4
- package/esm2015/core/providers/custom-detail-component/custom-detail-component-types.js +2 -0
- package/esm2015/core/providers/custom-detail-component/custom-detail-component.service.js +44 -0
- package/esm2015/core/providers/custom-field-component/custom-field-component.service.js +6 -6
- package/esm2015/core/providers/local-storage/local-storage.service.js +1 -1
- package/esm2015/core/providers/modal/modal.service.js +20 -12
- package/esm2015/core/providers/nav-builder/nav-builder-types.js +1 -1
- package/esm2015/core/providers/nav-builder/nav-builder.service.js +15 -11
- package/esm2015/core/providers/notification/notification.service.js +24 -1
- package/esm2015/core/public_api.js +9 -1
- package/esm2015/core/shared/components/action-bar/action-bar.component.js +1 -1
- package/esm2015/core/shared/components/action-bar-items/action-bar-items.component.js +3 -3
- package/esm2015/core/shared/components/address-form/address-form.component.js +2 -2
- package/esm2015/core/shared/components/asset-picker-dialog/asset-picker-dialog.component.js +19 -1
- package/esm2015/core/shared/components/asset-preview/asset-preview.component.js +2 -6
- package/esm2015/core/shared/components/chip/chip.component.js +12 -1
- package/esm2015/core/shared/components/currency-input/currency-input.component.js +12 -1
- package/esm2015/core/shared/components/custom-detail-component-host/custom-detail-component-host.component.js +44 -0
- package/esm2015/core/shared/components/data-table/data-table.component.js +60 -1
- package/esm2015/core/shared/components/datetime-picker/datetime-picker.component.js +17 -1
- package/esm2015/core/shared/components/dropdown/dropdown.component.js +26 -1
- package/esm2015/core/shared/components/facet-value-selector/facet-value-selector.component.js +23 -1
- package/esm2015/core/shared/components/modal-dialog/modal-dialog.component.js +2 -2
- package/esm2015/core/shared/components/object-tree/object-tree.component.js +9 -1
- package/esm2015/core/shared/components/order-state-label/order-state-label.component.js +11 -1
- package/esm2015/core/shared/components/product-selector/product-selector.component.js +13 -1
- package/esm2015/core/shared/components/rich-text-editor/rich-text-editor.component.js +14 -3
- package/esm2015/core/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.js +46 -0
- package/esm2015/core/shared/components/title-input/title-input.component.js +1 -1
- package/esm2015/core/shared/components/ui-extension-point/ui-extension-point.component.js +31 -0
- package/esm2015/core/shared/directives/if-multichannel.directive.js +15 -1
- package/esm2015/core/shared/directives/if-permissions.directive.js +4 -1
- package/esm2015/core/shared/dynamic-form-inputs/boolean-form-input/boolean-form-input.component.js +8 -1
- package/esm2015/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.js +121 -0
- package/esm2015/core/shared/dynamic-form-inputs/currency-form-input/currency-form-input.component.js +8 -1
- package/esm2015/core/shared/dynamic-form-inputs/customer-group-form-input/customer-group-form-input.component.js +9 -1
- package/esm2015/core/shared/dynamic-form-inputs/date-form-input/date-form-input.component.js +8 -1
- package/esm2015/core/shared/dynamic-form-inputs/dynamic-form-input/dynamic-form-input.component.js +2 -1
- package/esm2015/core/shared/dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component.js +9 -1
- package/esm2015/core/shared/dynamic-form-inputs/number-form-input/number-form-input.component.js +8 -1
- package/esm2015/core/shared/dynamic-form-inputs/password-form-input/password-form-input.component.js +8 -1
- package/esm2015/core/shared/dynamic-form-inputs/product-selector-form-input/product-selector-form-input.component.js +9 -1
- package/esm2015/core/shared/dynamic-form-inputs/register-dynamic-input-components.js +42 -2
- package/esm2015/core/shared/dynamic-form-inputs/relation-form-input/relation-form-input.component.js +10 -1
- package/esm2015/core/shared/dynamic-form-inputs/rich-text-form-input/rich-text-form-input.component.js +20 -0
- package/esm2015/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.js +9 -1
- package/esm2015/core/shared/dynamic-form-inputs/text-form-input/text-form-input.component.js +8 -1
- package/esm2015/core/shared/dynamic-form-inputs/textarea-form-input/textarea-form-input.component.js +8 -1
- package/esm2015/core/shared/pipes/asset-preview.pipe.js +15 -1
- package/esm2015/core/shared/pipes/duration.pipe.js +9 -1
- package/esm2015/core/shared/pipes/file-size.pipe.js +9 -1
- package/esm2015/core/shared/pipes/has-permission.pipe.js +4 -2
- package/esm2015/core/shared/pipes/locale-base.pipe.js +7 -4
- package/esm2015/core/shared/pipes/locale-currency-name.pipe.js +9 -1
- package/esm2015/core/shared/pipes/locale-currency.pipe.js +13 -1
- package/esm2015/core/shared/pipes/locale-date.pipe.js +8 -1
- package/esm2015/core/shared/pipes/locale-language-name.pipe.js +10 -2
- package/esm2015/core/shared/pipes/locale-region-name.pipe.js +48 -0
- package/esm2015/core/shared/pipes/time-ago.pipe.js +9 -1
- package/esm2015/core/shared/shared.module.js +13 -1
- package/esm2015/customer/components/customer-detail/customer-detail.component.js +5 -16
- package/esm2015/customer/components/customer-group-detail-dialog/customer-group-detail-dialog.component.js +32 -3
- package/esm2015/customer/components/customer-group-list/customer-group-list.component.js +22 -18
- package/esm2015/marketing/components/promotion-detail/promotion-detail.component.js +9 -2
- package/esm2015/order/components/order-detail/order-detail.component.js +11 -3
- package/esm2015/settings/components/admin-detail/admin-detail.component.js +3 -14
- package/esm2015/settings/components/channel-detail/channel-detail.component.js +3 -14
- package/esm2015/settings/components/country-detail/country-detail.component.js +11 -3
- package/esm2015/settings/components/country-list/country-list.component.js +19 -7
- package/esm2015/settings/components/global-settings/global-settings.component.js +3 -14
- package/esm2015/settings/components/payment-method-detail/payment-method-detail.component.js +9 -2
- package/esm2015/settings/components/profile/profile.component.js +3 -14
- package/esm2015/settings/components/shipping-method-detail/shipping-method-detail.component.js +3 -16
- package/esm2015/settings/components/tax-category-detail/tax-category-detail.component.js +13 -3
- package/esm2015/settings/components/tax-rate-detail/tax-rate-detail.component.js +9 -2
- package/esm2015/settings/components/zone-detail-dialog/zone-detail-dialog.component.js +32 -3
- package/esm2015/settings/components/zone-list/zone-list.component.js +19 -8
- package/fesm2015/vendure-admin-ui-catalog.js +61 -98
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +1497 -134
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-customer.js +54 -34
- package/fesm2015/vendure-admin-ui-customer.js.map +1 -1
- package/fesm2015/vendure-admin-ui-marketing.js +8 -1
- package/fesm2015/vendure-admin-ui-marketing.js.map +1 -1
- package/fesm2015/vendure-admin-ui-order.js +10 -2
- package/fesm2015/vendure-admin-ui-order.js.map +1 -1
- package/fesm2015/vendure-admin-ui-settings.js +110 -85
- package/fesm2015/vendure-admin-ui-settings.js.map +1 -1
- package/marketing/components/promotion-detail/promotion-detail.component.d.ts +2 -1
- package/marketing/vendure-admin-ui-marketing.metadata.json +1 -1
- package/order/vendure-admin-ui-order.metadata.json +1 -1
- package/package.json +6 -5
- package/settings/components/admin-detail/admin-detail.component.d.ts +0 -1
- package/settings/components/channel-detail/channel-detail.component.d.ts +0 -1
- package/settings/components/country-detail/country-detail.component.d.ts +2 -1
- package/settings/components/country-list/country-list.component.d.ts +7 -2
- package/settings/components/global-settings/global-settings.component.d.ts +0 -1
- package/settings/components/payment-method-detail/payment-method-detail.component.d.ts +2 -1
- package/settings/components/profile/profile.component.d.ts +0 -1
- package/settings/components/shipping-method-detail/shipping-method-detail.component.d.ts +0 -1
- package/settings/components/tax-category-detail/tax-category-detail.component.d.ts +2 -1
- package/settings/components/tax-rate-detail/tax-rate-detail.component.d.ts +2 -1
- package/settings/components/zone-detail-dialog/zone-detail-dialog.component.d.ts +14 -3
- package/settings/components/zone-list/zone-list.component.d.ts +6 -2
- package/settings/vendure-admin-ui-settings.metadata.json +1 -1
- package/static/i18n-messages/cs.json +7 -0
- package/static/i18n-messages/de.json +7 -0
- package/static/i18n-messages/en.json +7 -0
- package/static/i18n-messages/es.json +8 -1
- package/static/i18n-messages/fr.json +7 -0
- package/static/i18n-messages/it.json +7 -0
- package/static/i18n-messages/pl.json +7 -0
- package/static/i18n-messages/pt_BR.json +7 -0
- package/static/i18n-messages/pt_PT.json +7 -0
- package/static/i18n-messages/ru.json +7 -0
- package/static/i18n-messages/uk.json +7 -0
- package/static/i18n-messages/zh_Hans.json +7 -0
- package/static/i18n-messages/zh_Hant.json +7 -0
- package/static/styles/theme/dark.scss +9 -0
- package/static/styles/theme/default.scss +8 -0
- package/static/theme.min.css +1 -1
|
@@ -245,6 +245,7 @@ export declare type BooleanCustomFieldConfig = CustomField & {
|
|
|
245
245
|
readonly?: Maybe<Scalars['Boolean']>;
|
|
246
246
|
internal?: Maybe<Scalars['Boolean']>;
|
|
247
247
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
248
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
248
249
|
};
|
|
249
250
|
export declare type BooleanOperators = {
|
|
250
251
|
eq?: Maybe<Scalars['Boolean']>;
|
|
@@ -439,6 +440,7 @@ export declare type Country = Node & {
|
|
|
439
440
|
name: Scalars['String'];
|
|
440
441
|
enabled: Scalars['Boolean'];
|
|
441
442
|
translations: Array<CountryTranslation>;
|
|
443
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
442
444
|
};
|
|
443
445
|
export declare type CountryFilterParameter = {
|
|
444
446
|
createdAt?: Maybe<DateOperators>;
|
|
@@ -484,6 +486,7 @@ export declare type CountryTranslationInput = {
|
|
|
484
486
|
id?: Maybe<Scalars['ID']>;
|
|
485
487
|
languageCode: LanguageCode;
|
|
486
488
|
name?: Maybe<Scalars['String']>;
|
|
489
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
487
490
|
};
|
|
488
491
|
export declare type CreateAddressInput = {
|
|
489
492
|
fullName?: Maybe<Scalars['String']>;
|
|
@@ -544,10 +547,12 @@ export declare type CreateCountryInput = {
|
|
|
544
547
|
code: Scalars['String'];
|
|
545
548
|
translations: Array<CountryTranslationInput>;
|
|
546
549
|
enabled: Scalars['Boolean'];
|
|
550
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
547
551
|
};
|
|
548
552
|
export declare type CreateCustomerGroupInput = {
|
|
549
553
|
name: Scalars['String'];
|
|
550
554
|
customerIds?: Maybe<Array<Scalars['ID']>>;
|
|
555
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
551
556
|
};
|
|
552
557
|
export declare type CreateCustomerInput = {
|
|
553
558
|
title?: Maybe<Scalars['String']>;
|
|
@@ -593,6 +598,7 @@ export declare type CreatePaymentMethodInput = {
|
|
|
593
598
|
enabled: Scalars['Boolean'];
|
|
594
599
|
checker?: Maybe<ConfigurableOperationInput>;
|
|
595
600
|
handler: ConfigurableOperationInput;
|
|
601
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
596
602
|
};
|
|
597
603
|
export declare type CreateProductInput = {
|
|
598
604
|
featuredAssetId?: Maybe<Scalars['ID']>;
|
|
@@ -644,6 +650,7 @@ export declare type CreatePromotionInput = {
|
|
|
644
650
|
perCustomerUsageLimit?: Maybe<Scalars['Int']>;
|
|
645
651
|
conditions: Array<ConfigurableOperationInput>;
|
|
646
652
|
actions: Array<ConfigurableOperationInput>;
|
|
653
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
647
654
|
};
|
|
648
655
|
export declare type CreatePromotionResult = Promotion | MissingConditionsError;
|
|
649
656
|
export declare type CreateRoleInput = {
|
|
@@ -666,6 +673,7 @@ export declare type CreateTagInput = {
|
|
|
666
673
|
export declare type CreateTaxCategoryInput = {
|
|
667
674
|
name: Scalars['String'];
|
|
668
675
|
isDefault?: Maybe<Scalars['Boolean']>;
|
|
676
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
669
677
|
};
|
|
670
678
|
export declare type CreateTaxRateInput = {
|
|
671
679
|
name: Scalars['String'];
|
|
@@ -674,10 +682,12 @@ export declare type CreateTaxRateInput = {
|
|
|
674
682
|
categoryId: Scalars['ID'];
|
|
675
683
|
zoneId: Scalars['ID'];
|
|
676
684
|
customerGroupId?: Maybe<Scalars['ID']>;
|
|
685
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
677
686
|
};
|
|
678
687
|
export declare type CreateZoneInput = {
|
|
679
688
|
name: Scalars['String'];
|
|
680
689
|
memberIds?: Maybe<Array<Scalars['ID']>>;
|
|
690
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
681
691
|
};
|
|
682
692
|
/**
|
|
683
693
|
* @description
|
|
@@ -1029,6 +1039,7 @@ export declare type CustomField = {
|
|
|
1029
1039
|
readonly?: Maybe<Scalars['Boolean']>;
|
|
1030
1040
|
internal?: Maybe<Scalars['Boolean']>;
|
|
1031
1041
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
1042
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1032
1043
|
};
|
|
1033
1044
|
export declare type CustomFieldConfig = StringCustomFieldConfig | LocaleStringCustomFieldConfig | IntCustomFieldConfig | FloatCustomFieldConfig | BooleanCustomFieldConfig | DateTimeCustomFieldConfig | RelationCustomFieldConfig | TextCustomFieldConfig;
|
|
1034
1045
|
export declare type CustomFields = {
|
|
@@ -1038,19 +1049,26 @@ export declare type CustomFields = {
|
|
|
1038
1049
|
Asset: Array<CustomFieldConfig>;
|
|
1039
1050
|
Channel: Array<CustomFieldConfig>;
|
|
1040
1051
|
Collection: Array<CustomFieldConfig>;
|
|
1052
|
+
Country: Array<CustomFieldConfig>;
|
|
1041
1053
|
Customer: Array<CustomFieldConfig>;
|
|
1054
|
+
CustomerGroup: Array<CustomFieldConfig>;
|
|
1042
1055
|
Facet: Array<CustomFieldConfig>;
|
|
1043
1056
|
FacetValue: Array<CustomFieldConfig>;
|
|
1044
1057
|
Fulfillment: Array<CustomFieldConfig>;
|
|
1045
1058
|
GlobalSettings: Array<CustomFieldConfig>;
|
|
1046
1059
|
Order: Array<CustomFieldConfig>;
|
|
1047
1060
|
OrderLine: Array<CustomFieldConfig>;
|
|
1061
|
+
PaymentMethod: Array<CustomFieldConfig>;
|
|
1048
1062
|
Product: Array<CustomFieldConfig>;
|
|
1049
1063
|
ProductOption: Array<CustomFieldConfig>;
|
|
1050
1064
|
ProductOptionGroup: Array<CustomFieldConfig>;
|
|
1051
1065
|
ProductVariant: Array<CustomFieldConfig>;
|
|
1052
|
-
|
|
1066
|
+
Promotion: Array<CustomFieldConfig>;
|
|
1053
1067
|
ShippingMethod: Array<CustomFieldConfig>;
|
|
1068
|
+
TaxCategory: Array<CustomFieldConfig>;
|
|
1069
|
+
TaxRate: Array<CustomFieldConfig>;
|
|
1070
|
+
User: Array<CustomFieldConfig>;
|
|
1071
|
+
Zone: Array<CustomFieldConfig>;
|
|
1054
1072
|
};
|
|
1055
1073
|
export declare type Customer = Node & {
|
|
1056
1074
|
__typename?: 'Customer';
|
|
@@ -1091,6 +1109,7 @@ export declare type CustomerGroup = Node & {
|
|
|
1091
1109
|
updatedAt: Scalars['DateTime'];
|
|
1092
1110
|
name: Scalars['String'];
|
|
1093
1111
|
customers: CustomerList;
|
|
1112
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
1094
1113
|
};
|
|
1095
1114
|
export declare type CustomerGroupCustomersArgs = {
|
|
1096
1115
|
options?: Maybe<CustomerListOptions>;
|
|
@@ -1177,6 +1196,7 @@ export declare type DateTimeCustomFieldConfig = CustomField & {
|
|
|
1177
1196
|
min?: Maybe<Scalars['String']>;
|
|
1178
1197
|
max?: Maybe<Scalars['String']>;
|
|
1179
1198
|
step?: Maybe<Scalars['Int']>;
|
|
1199
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1180
1200
|
};
|
|
1181
1201
|
export declare type DeleteAssetInput = {
|
|
1182
1202
|
assetId: Scalars['ID'];
|
|
@@ -1378,6 +1398,7 @@ export declare type FloatCustomFieldConfig = CustomField & {
|
|
|
1378
1398
|
min?: Maybe<Scalars['Float']>;
|
|
1379
1399
|
max?: Maybe<Scalars['Float']>;
|
|
1380
1400
|
step?: Maybe<Scalars['Float']>;
|
|
1401
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1381
1402
|
};
|
|
1382
1403
|
export declare type FulfillOrderInput = {
|
|
1383
1404
|
lines: Array<OrderLineInput>;
|
|
@@ -1523,6 +1544,7 @@ export declare type IntCustomFieldConfig = CustomField & {
|
|
|
1523
1544
|
min?: Maybe<Scalars['Int']>;
|
|
1524
1545
|
max?: Maybe<Scalars['Int']>;
|
|
1525
1546
|
step?: Maybe<Scalars['Int']>;
|
|
1547
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1526
1548
|
};
|
|
1527
1549
|
/** Returned if the user authentication credentials are not valid */
|
|
1528
1550
|
export declare type InvalidCredentialsError = ErrorResult & {
|
|
@@ -1968,6 +1990,7 @@ export declare type LocaleStringCustomFieldConfig = CustomField & {
|
|
|
1968
1990
|
internal?: Maybe<Scalars['Boolean']>;
|
|
1969
1991
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
1970
1992
|
pattern?: Maybe<Scalars['String']>;
|
|
1993
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1971
1994
|
};
|
|
1972
1995
|
export declare type LocalizedString = {
|
|
1973
1996
|
__typename?: 'LocalizedString';
|
|
@@ -2040,7 +2063,10 @@ export declare type Mutation = {
|
|
|
2040
2063
|
addCustomersToGroup: CustomerGroup;
|
|
2041
2064
|
addFulfillmentToOrder: AddFulfillmentToOrderResult;
|
|
2042
2065
|
/**
|
|
2043
|
-
* Used to manually create a new Payment against an Order.
|
|
2066
|
+
* Used to manually create a new Payment against an Order.
|
|
2067
|
+
* This can be used by an Administrator when an Order is in the ArrangingPayment state.
|
|
2068
|
+
*
|
|
2069
|
+
* It is also used when a completed Order
|
|
2044
2070
|
* has been modified (using `modifyOrder`) and the price has increased. The extra payment
|
|
2045
2071
|
* can then be manually arranged by the administrator, and the details used to create a new
|
|
2046
2072
|
* Payment.
|
|
@@ -2187,8 +2213,10 @@ export declare type Mutation = {
|
|
|
2187
2213
|
setAsLoggedIn: UserStatus;
|
|
2188
2214
|
setAsLoggedOut: UserStatus;
|
|
2189
2215
|
setContentLanguage: LanguageCode;
|
|
2216
|
+
setDisplayUiExtensionPoints: Scalars['Boolean'];
|
|
2190
2217
|
setOrderCustomFields?: Maybe<Order>;
|
|
2191
2218
|
setUiLanguage: LanguageCode;
|
|
2219
|
+
setUiLocale?: Maybe<Scalars['String']>;
|
|
2192
2220
|
setUiTheme: Scalars['String'];
|
|
2193
2221
|
settlePayment: SettlePaymentResult;
|
|
2194
2222
|
settleRefund: SettleRefundResult;
|
|
@@ -2489,12 +2517,18 @@ export declare type MutationSetAsLoggedInArgs = {
|
|
|
2489
2517
|
export declare type MutationSetContentLanguageArgs = {
|
|
2490
2518
|
languageCode: LanguageCode;
|
|
2491
2519
|
};
|
|
2520
|
+
export declare type MutationSetDisplayUiExtensionPointsArgs = {
|
|
2521
|
+
display: Scalars['Boolean'];
|
|
2522
|
+
};
|
|
2492
2523
|
export declare type MutationSetOrderCustomFieldsArgs = {
|
|
2493
2524
|
input: UpdateOrderInput;
|
|
2494
2525
|
};
|
|
2495
2526
|
export declare type MutationSetUiLanguageArgs = {
|
|
2496
2527
|
languageCode: LanguageCode;
|
|
2497
2528
|
};
|
|
2529
|
+
export declare type MutationSetUiLocaleArgs = {
|
|
2530
|
+
locale?: Maybe<Scalars['String']>;
|
|
2531
|
+
};
|
|
2498
2532
|
export declare type MutationSetUiThemeArgs = {
|
|
2499
2533
|
theme: Scalars['String'];
|
|
2500
2534
|
};
|
|
@@ -2954,6 +2988,7 @@ export declare type PaymentMethod = Node & {
|
|
|
2954
2988
|
enabled: Scalars['Boolean'];
|
|
2955
2989
|
checker?: Maybe<ConfigurableOperation>;
|
|
2956
2990
|
handler: ConfigurableOperation;
|
|
2991
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
2957
2992
|
};
|
|
2958
2993
|
export declare type PaymentMethodFilterParameter = {
|
|
2959
2994
|
createdAt?: Maybe<DateOperators>;
|
|
@@ -3460,6 +3495,7 @@ export declare type Promotion = Node & {
|
|
|
3460
3495
|
enabled: Scalars['Boolean'];
|
|
3461
3496
|
conditions: Array<ConfigurableOperation>;
|
|
3462
3497
|
actions: Array<ConfigurableOperation>;
|
|
3498
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
3463
3499
|
};
|
|
3464
3500
|
export declare type PromotionFilterParameter = {
|
|
3465
3501
|
createdAt?: Maybe<DateOperators>;
|
|
@@ -3775,6 +3811,7 @@ export declare type RelationCustomFieldConfig = CustomField & {
|
|
|
3775
3811
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
3776
3812
|
entity: Scalars['String'];
|
|
3777
3813
|
scalarFields: Array<Scalars['String']>;
|
|
3814
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
3778
3815
|
};
|
|
3779
3816
|
export declare type Release = Node & StockMovement & {
|
|
3780
3817
|
__typename?: 'Release';
|
|
@@ -4080,6 +4117,7 @@ export declare type StringCustomFieldConfig = CustomField & {
|
|
|
4080
4117
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
4081
4118
|
pattern?: Maybe<Scalars['String']>;
|
|
4082
4119
|
options?: Maybe<Array<StringFieldOption>>;
|
|
4120
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
4083
4121
|
};
|
|
4084
4122
|
export declare type StringFieldOption = {
|
|
4085
4123
|
__typename?: 'StringFieldOption';
|
|
@@ -4162,6 +4200,7 @@ export declare type TaxCategory = Node & {
|
|
|
4162
4200
|
updatedAt: Scalars['DateTime'];
|
|
4163
4201
|
name: Scalars['String'];
|
|
4164
4202
|
isDefault: Scalars['Boolean'];
|
|
4203
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4165
4204
|
};
|
|
4166
4205
|
export declare type TaxLine = {
|
|
4167
4206
|
__typename?: 'TaxLine';
|
|
@@ -4179,6 +4218,7 @@ export declare type TaxRate = Node & {
|
|
|
4179
4218
|
category: TaxCategory;
|
|
4180
4219
|
zone: Zone;
|
|
4181
4220
|
customerGroup?: Maybe<CustomerGroup>;
|
|
4221
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4182
4222
|
};
|
|
4183
4223
|
export declare type TaxRateFilterParameter = {
|
|
4184
4224
|
createdAt?: Maybe<DateOperators>;
|
|
@@ -4246,6 +4286,7 @@ export declare type TextCustomFieldConfig = CustomField & {
|
|
|
4246
4286
|
readonly?: Maybe<Scalars['Boolean']>;
|
|
4247
4287
|
internal?: Maybe<Scalars['Boolean']>;
|
|
4248
4288
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
4289
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
4249
4290
|
};
|
|
4250
4291
|
export declare type TransitionFulfillmentToStateResult = Fulfillment | FulfillmentStateTransitionError;
|
|
4251
4292
|
export declare type TransitionOrderToStateResult = Order | OrderStateTransitionError;
|
|
@@ -4253,8 +4294,10 @@ export declare type TransitionPaymentToStateResult = Payment | PaymentStateTrans
|
|
|
4253
4294
|
export declare type UiState = {
|
|
4254
4295
|
__typename?: 'UiState';
|
|
4255
4296
|
language: LanguageCode;
|
|
4297
|
+
locale?: Maybe<Scalars['String']>;
|
|
4256
4298
|
contentLanguage: LanguageCode;
|
|
4257
4299
|
theme: Scalars['String'];
|
|
4300
|
+
displayUiExtensionPoints: Scalars['Boolean'];
|
|
4258
4301
|
};
|
|
4259
4302
|
export declare type UpdateActiveAdministratorInput = {
|
|
4260
4303
|
firstName?: Maybe<Scalars['String']>;
|
|
@@ -4329,10 +4372,12 @@ export declare type UpdateCountryInput = {
|
|
|
4329
4372
|
code?: Maybe<Scalars['String']>;
|
|
4330
4373
|
translations?: Maybe<Array<CountryTranslationInput>>;
|
|
4331
4374
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
4375
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4332
4376
|
};
|
|
4333
4377
|
export declare type UpdateCustomerGroupInput = {
|
|
4334
4378
|
id: Scalars['ID'];
|
|
4335
4379
|
name?: Maybe<Scalars['String']>;
|
|
4380
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4336
4381
|
};
|
|
4337
4382
|
export declare type UpdateCustomerInput = {
|
|
4338
4383
|
id: Scalars['ID'];
|
|
@@ -4396,6 +4441,7 @@ export declare type UpdatePaymentMethodInput = {
|
|
|
4396
4441
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
4397
4442
|
checker?: Maybe<ConfigurableOperationInput>;
|
|
4398
4443
|
handler?: Maybe<ConfigurableOperationInput>;
|
|
4444
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4399
4445
|
};
|
|
4400
4446
|
export declare type UpdateProductInput = {
|
|
4401
4447
|
id: Scalars['ID'];
|
|
@@ -4444,6 +4490,7 @@ export declare type UpdatePromotionInput = {
|
|
|
4444
4490
|
perCustomerUsageLimit?: Maybe<Scalars['Int']>;
|
|
4445
4491
|
conditions?: Maybe<Array<ConfigurableOperationInput>>;
|
|
4446
4492
|
actions?: Maybe<Array<ConfigurableOperationInput>>;
|
|
4493
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4447
4494
|
};
|
|
4448
4495
|
export declare type UpdatePromotionResult = Promotion | MissingConditionsError;
|
|
4449
4496
|
export declare type UpdateRoleInput = {
|
|
@@ -4470,6 +4517,7 @@ export declare type UpdateTaxCategoryInput = {
|
|
|
4470
4517
|
id: Scalars['ID'];
|
|
4471
4518
|
name?: Maybe<Scalars['String']>;
|
|
4472
4519
|
isDefault?: Maybe<Scalars['Boolean']>;
|
|
4520
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4473
4521
|
};
|
|
4474
4522
|
export declare type UpdateTaxRateInput = {
|
|
4475
4523
|
id: Scalars['ID'];
|
|
@@ -4479,10 +4527,12 @@ export declare type UpdateTaxRateInput = {
|
|
|
4479
4527
|
categoryId?: Maybe<Scalars['ID']>;
|
|
4480
4528
|
zoneId?: Maybe<Scalars['ID']>;
|
|
4481
4529
|
customerGroupId?: Maybe<Scalars['ID']>;
|
|
4530
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4482
4531
|
};
|
|
4483
4532
|
export declare type UpdateZoneInput = {
|
|
4484
4533
|
id: Scalars['ID'];
|
|
4485
4534
|
name?: Maybe<Scalars['String']>;
|
|
4535
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4486
4536
|
};
|
|
4487
4537
|
export declare type User = Node & {
|
|
4488
4538
|
__typename?: 'User';
|
|
@@ -4518,6 +4568,7 @@ export declare type Zone = Node & {
|
|
|
4518
4568
|
updatedAt: Scalars['DateTime'];
|
|
4519
4569
|
name: Scalars['String'];
|
|
4520
4570
|
members: Array<Country>;
|
|
4571
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4521
4572
|
};
|
|
4522
4573
|
export declare type RoleFragment = ({
|
|
4523
4574
|
__typename?: 'Role';
|
|
@@ -4720,8 +4771,17 @@ export declare type SetAsLoggedOutMutation = {
|
|
|
4720
4771
|
};
|
|
4721
4772
|
export declare type SetUiLanguageMutationVariables = Exact<{
|
|
4722
4773
|
languageCode: LanguageCode;
|
|
4774
|
+
locale?: Maybe<Scalars['String']>;
|
|
4775
|
+
}>;
|
|
4776
|
+
export declare type SetUiLanguageMutation = Pick<Mutation, 'setUiLanguage' | 'setUiLocale'>;
|
|
4777
|
+
export declare type SetUiLocaleMutationVariables = Exact<{
|
|
4778
|
+
locale?: Maybe<Scalars['String']>;
|
|
4779
|
+
}>;
|
|
4780
|
+
export declare type SetUiLocaleMutation = Pick<Mutation, 'setUiLocale'>;
|
|
4781
|
+
export declare type SetDisplayUiExtensionPointsMutationVariables = Exact<{
|
|
4782
|
+
display: Scalars['Boolean'];
|
|
4723
4783
|
}>;
|
|
4724
|
-
export declare type
|
|
4784
|
+
export declare type SetDisplayUiExtensionPointsMutation = Pick<Mutation, 'setDisplayUiExtensionPoints'>;
|
|
4725
4785
|
export declare type SetContentLanguageMutationVariables = Exact<{
|
|
4726
4786
|
languageCode: LanguageCode;
|
|
4727
4787
|
}>;
|
|
@@ -4752,7 +4812,7 @@ export declare type GetUiStateQueryVariables = Exact<{
|
|
|
4752
4812
|
export declare type GetUiStateQuery = {
|
|
4753
4813
|
uiState: ({
|
|
4754
4814
|
__typename?: 'UiState';
|
|
4755
|
-
} & Pick<UiState, 'language' | 'contentLanguage' | 'theme'>);
|
|
4815
|
+
} & Pick<UiState, 'language' | 'locale' | 'contentLanguage' | 'theme' | 'displayUiExtensionPoints'>);
|
|
4756
4816
|
};
|
|
4757
4817
|
export declare type GetClientStateQueryVariables = Exact<{
|
|
4758
4818
|
[key: string]: never;
|
|
@@ -4766,7 +4826,7 @@ export declare type GetClientStateQuery = {
|
|
|
4766
4826
|
} & UserStatusFragment);
|
|
4767
4827
|
uiState: ({
|
|
4768
4828
|
__typename?: 'UiState';
|
|
4769
|
-
} & Pick<UiState, 'language' | 'contentLanguage' | 'theme'>);
|
|
4829
|
+
} & Pick<UiState, 'language' | 'locale' | 'contentLanguage' | 'theme' | 'displayUiExtensionPoints'>);
|
|
4770
4830
|
};
|
|
4771
4831
|
export declare type SetActiveChannelMutationVariables = Exact<{
|
|
4772
4832
|
channelId: Scalars['ID'];
|
|
@@ -4907,6 +4967,9 @@ export declare type CustomerFragment = ({
|
|
|
4907
4967
|
__typename?: 'Address';
|
|
4908
4968
|
} & AddressFragment)>>;
|
|
4909
4969
|
});
|
|
4970
|
+
export declare type CustomerGroupFragment = ({
|
|
4971
|
+
__typename?: 'CustomerGroup';
|
|
4972
|
+
} & Pick<CustomerGroup, 'id' | 'createdAt' | 'updatedAt' | 'name'>);
|
|
4910
4973
|
export declare type GetCustomerListQueryVariables = Exact<{
|
|
4911
4974
|
options?: Maybe<CustomerListOptions>;
|
|
4912
4975
|
}>;
|
|
@@ -4995,7 +5058,7 @@ export declare type CreateCustomerGroupMutationVariables = Exact<{
|
|
|
4995
5058
|
export declare type CreateCustomerGroupMutation = {
|
|
4996
5059
|
createCustomerGroup: ({
|
|
4997
5060
|
__typename?: 'CustomerGroup';
|
|
4998
|
-
} &
|
|
5061
|
+
} & CustomerGroupFragment);
|
|
4999
5062
|
};
|
|
5000
5063
|
export declare type UpdateCustomerGroupMutationVariables = Exact<{
|
|
5001
5064
|
input: UpdateCustomerGroupInput;
|
|
@@ -5003,7 +5066,7 @@ export declare type UpdateCustomerGroupMutationVariables = Exact<{
|
|
|
5003
5066
|
export declare type UpdateCustomerGroupMutation = {
|
|
5004
5067
|
updateCustomerGroup: ({
|
|
5005
5068
|
__typename?: 'CustomerGroup';
|
|
5006
|
-
} &
|
|
5069
|
+
} & CustomerGroupFragment);
|
|
5007
5070
|
};
|
|
5008
5071
|
export declare type DeleteCustomerGroupMutationVariables = Exact<{
|
|
5009
5072
|
id: Scalars['ID'];
|
|
@@ -5022,7 +5085,7 @@ export declare type GetCustomerGroupsQuery = {
|
|
|
5022
5085
|
} & Pick<CustomerGroupList, 'totalItems'> & {
|
|
5023
5086
|
items: Array<({
|
|
5024
5087
|
__typename?: 'CustomerGroup';
|
|
5025
|
-
} &
|
|
5088
|
+
} & CustomerGroupFragment)>;
|
|
5026
5089
|
});
|
|
5027
5090
|
};
|
|
5028
5091
|
export declare type GetCustomerGroupWithCustomersQueryVariables = Exact<{
|
|
@@ -5032,7 +5095,7 @@ export declare type GetCustomerGroupWithCustomersQueryVariables = Exact<{
|
|
|
5032
5095
|
export declare type GetCustomerGroupWithCustomersQuery = {
|
|
5033
5096
|
customerGroup?: Maybe<({
|
|
5034
5097
|
__typename?: 'CustomerGroup';
|
|
5035
|
-
} &
|
|
5098
|
+
} & {
|
|
5036
5099
|
customers: ({
|
|
5037
5100
|
__typename?: 'CustomerList';
|
|
5038
5101
|
} & Pick<CustomerList, 'totalItems'> & {
|
|
@@ -5040,7 +5103,7 @@ export declare type GetCustomerGroupWithCustomersQuery = {
|
|
|
5040
5103
|
__typename?: 'Customer';
|
|
5041
5104
|
} & Pick<Customer, 'id' | 'createdAt' | 'updatedAt' | 'emailAddress' | 'firstName' | 'lastName'>)>;
|
|
5042
5105
|
});
|
|
5043
|
-
})>;
|
|
5106
|
+
} & CustomerGroupFragment)>;
|
|
5044
5107
|
};
|
|
5045
5108
|
export declare type AddCustomersToGroupMutationVariables = Exact<{
|
|
5046
5109
|
groupId: Scalars['ID'];
|
|
@@ -5049,7 +5112,7 @@ export declare type AddCustomersToGroupMutationVariables = Exact<{
|
|
|
5049
5112
|
export declare type AddCustomersToGroupMutation = {
|
|
5050
5113
|
addCustomersToGroup: ({
|
|
5051
5114
|
__typename?: 'CustomerGroup';
|
|
5052
|
-
} &
|
|
5115
|
+
} & CustomerGroupFragment);
|
|
5053
5116
|
};
|
|
5054
5117
|
export declare type RemoveCustomersFromGroupMutationVariables = Exact<{
|
|
5055
5118
|
groupId: Scalars['ID'];
|
|
@@ -5058,7 +5121,7 @@ export declare type RemoveCustomersFromGroupMutationVariables = Exact<{
|
|
|
5058
5121
|
export declare type RemoveCustomersFromGroupMutation = {
|
|
5059
5122
|
removeCustomersFromGroup: ({
|
|
5060
5123
|
__typename?: 'CustomerGroup';
|
|
5061
|
-
} &
|
|
5124
|
+
} & CustomerGroupFragment);
|
|
5062
5125
|
};
|
|
5063
5126
|
export declare type GetCustomerHistoryQueryVariables = Exact<{
|
|
5064
5127
|
id: Scalars['ID'];
|
|
@@ -6294,7 +6357,7 @@ export declare type DeleteCountryMutation = {
|
|
|
6294
6357
|
};
|
|
6295
6358
|
export declare type ZoneFragment = ({
|
|
6296
6359
|
__typename?: 'Zone';
|
|
6297
|
-
} & Pick<Zone, 'id' | 'name'> & {
|
|
6360
|
+
} & Pick<Zone, 'id' | 'createdAt' | 'updatedAt' | 'name'> & {
|
|
6298
6361
|
members: Array<({
|
|
6299
6362
|
__typename?: 'Country';
|
|
6300
6363
|
} & CountryFragment)>;
|
|
@@ -6305,11 +6368,11 @@ export declare type GetZonesQueryVariables = Exact<{
|
|
|
6305
6368
|
export declare type GetZonesQuery = {
|
|
6306
6369
|
zones: Array<({
|
|
6307
6370
|
__typename?: 'Zone';
|
|
6308
|
-
} &
|
|
6371
|
+
} & {
|
|
6309
6372
|
members: Array<({
|
|
6310
6373
|
__typename?: 'Country';
|
|
6311
6374
|
} & Pick<Country, 'createdAt' | 'updatedAt' | 'id' | 'name' | 'code' | 'enabled'>)>;
|
|
6312
|
-
})>;
|
|
6375
|
+
} & ZoneFragment)>;
|
|
6313
6376
|
};
|
|
6314
6377
|
export declare type GetZoneQueryVariables = Exact<{
|
|
6315
6378
|
id: Scalars['ID'];
|
|
@@ -6623,7 +6686,7 @@ export declare type UpdateGlobalSettingsMutation = {
|
|
|
6623
6686
|
};
|
|
6624
6687
|
declare type CustomFieldConfig_BooleanCustomFieldConfig_Fragment = ({
|
|
6625
6688
|
__typename?: 'BooleanCustomFieldConfig';
|
|
6626
|
-
} & Pick<BooleanCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6689
|
+
} & Pick<BooleanCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6627
6690
|
description?: Maybe<Array<({
|
|
6628
6691
|
__typename?: 'LocalizedString';
|
|
6629
6692
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6633,7 +6696,7 @@ declare type CustomFieldConfig_BooleanCustomFieldConfig_Fragment = ({
|
|
|
6633
6696
|
});
|
|
6634
6697
|
declare type CustomFieldConfig_DateTimeCustomFieldConfig_Fragment = ({
|
|
6635
6698
|
__typename?: 'DateTimeCustomFieldConfig';
|
|
6636
|
-
} & Pick<DateTimeCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6699
|
+
} & Pick<DateTimeCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6637
6700
|
description?: Maybe<Array<({
|
|
6638
6701
|
__typename?: 'LocalizedString';
|
|
6639
6702
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6643,7 +6706,7 @@ declare type CustomFieldConfig_DateTimeCustomFieldConfig_Fragment = ({
|
|
|
6643
6706
|
});
|
|
6644
6707
|
declare type CustomFieldConfig_FloatCustomFieldConfig_Fragment = ({
|
|
6645
6708
|
__typename?: 'FloatCustomFieldConfig';
|
|
6646
|
-
} & Pick<FloatCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6709
|
+
} & Pick<FloatCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6647
6710
|
description?: Maybe<Array<({
|
|
6648
6711
|
__typename?: 'LocalizedString';
|
|
6649
6712
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6653,7 +6716,7 @@ declare type CustomFieldConfig_FloatCustomFieldConfig_Fragment = ({
|
|
|
6653
6716
|
});
|
|
6654
6717
|
declare type CustomFieldConfig_IntCustomFieldConfig_Fragment = ({
|
|
6655
6718
|
__typename?: 'IntCustomFieldConfig';
|
|
6656
|
-
} & Pick<IntCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6719
|
+
} & Pick<IntCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6657
6720
|
description?: Maybe<Array<({
|
|
6658
6721
|
__typename?: 'LocalizedString';
|
|
6659
6722
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6663,7 +6726,7 @@ declare type CustomFieldConfig_IntCustomFieldConfig_Fragment = ({
|
|
|
6663
6726
|
});
|
|
6664
6727
|
declare type CustomFieldConfig_LocaleStringCustomFieldConfig_Fragment = ({
|
|
6665
6728
|
__typename?: 'LocaleStringCustomFieldConfig';
|
|
6666
|
-
} & Pick<LocaleStringCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6729
|
+
} & Pick<LocaleStringCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6667
6730
|
description?: Maybe<Array<({
|
|
6668
6731
|
__typename?: 'LocalizedString';
|
|
6669
6732
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6673,7 +6736,7 @@ declare type CustomFieldConfig_LocaleStringCustomFieldConfig_Fragment = ({
|
|
|
6673
6736
|
});
|
|
6674
6737
|
declare type CustomFieldConfig_RelationCustomFieldConfig_Fragment = ({
|
|
6675
6738
|
__typename?: 'RelationCustomFieldConfig';
|
|
6676
|
-
} & Pick<RelationCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6739
|
+
} & Pick<RelationCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6677
6740
|
description?: Maybe<Array<({
|
|
6678
6741
|
__typename?: 'LocalizedString';
|
|
6679
6742
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6683,7 +6746,7 @@ declare type CustomFieldConfig_RelationCustomFieldConfig_Fragment = ({
|
|
|
6683
6746
|
});
|
|
6684
6747
|
declare type CustomFieldConfig_StringCustomFieldConfig_Fragment = ({
|
|
6685
6748
|
__typename?: 'StringCustomFieldConfig';
|
|
6686
|
-
} & Pick<StringCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6749
|
+
} & Pick<StringCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6687
6750
|
description?: Maybe<Array<({
|
|
6688
6751
|
__typename?: 'LocalizedString';
|
|
6689
6752
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6693,7 +6756,7 @@ declare type CustomFieldConfig_StringCustomFieldConfig_Fragment = ({
|
|
|
6693
6756
|
});
|
|
6694
6757
|
declare type CustomFieldConfig_TextCustomFieldConfig_Fragment = ({
|
|
6695
6758
|
__typename?: 'TextCustomFieldConfig';
|
|
6696
|
-
} & Pick<TextCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6759
|
+
} & Pick<TextCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6697
6760
|
description?: Maybe<Array<({
|
|
6698
6761
|
__typename?: 'LocalizedString';
|
|
6699
6762
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6875,6 +6938,23 @@ export declare type GetServerConfigQuery = {
|
|
|
6875
6938
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
6876
6939
|
__typename?: 'TextCustomFieldConfig';
|
|
6877
6940
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
6941
|
+
Country: Array<({
|
|
6942
|
+
__typename?: 'StringCustomFieldConfig';
|
|
6943
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
6944
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
6945
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
6946
|
+
__typename?: 'IntCustomFieldConfig';
|
|
6947
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
6948
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
6949
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
6950
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
6951
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
6952
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
6953
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
6954
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
6955
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
6956
|
+
__typename?: 'TextCustomFieldConfig';
|
|
6957
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
6878
6958
|
Customer: Array<({
|
|
6879
6959
|
__typename?: 'StringCustomFieldConfig';
|
|
6880
6960
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -6892,6 +6972,23 @@ export declare type GetServerConfigQuery = {
|
|
|
6892
6972
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
6893
6973
|
__typename?: 'TextCustomFieldConfig';
|
|
6894
6974
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
6975
|
+
CustomerGroup: Array<({
|
|
6976
|
+
__typename?: 'StringCustomFieldConfig';
|
|
6977
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
6978
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
6979
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
6980
|
+
__typename?: 'IntCustomFieldConfig';
|
|
6981
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
6982
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
6983
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
6984
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
6985
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
6986
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
6987
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
6988
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
6989
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
6990
|
+
__typename?: 'TextCustomFieldConfig';
|
|
6991
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
6895
6992
|
Facet: Array<({
|
|
6896
6993
|
__typename?: 'StringCustomFieldConfig';
|
|
6897
6994
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -6994,6 +7091,23 @@ export declare type GetServerConfigQuery = {
|
|
|
6994
7091
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
6995
7092
|
__typename?: 'TextCustomFieldConfig';
|
|
6996
7093
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7094
|
+
PaymentMethod: Array<({
|
|
7095
|
+
__typename?: 'StringCustomFieldConfig';
|
|
7096
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
7097
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
7098
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
7099
|
+
__typename?: 'IntCustomFieldConfig';
|
|
7100
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
7101
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7102
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7103
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7104
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7105
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7106
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7107
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7108
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7109
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7110
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
6997
7111
|
Product: Array<({
|
|
6998
7112
|
__typename?: 'StringCustomFieldConfig';
|
|
6999
7113
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -7062,6 +7176,23 @@ export declare type GetServerConfigQuery = {
|
|
|
7062
7176
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7063
7177
|
__typename?: 'TextCustomFieldConfig';
|
|
7064
7178
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7179
|
+
Promotion: Array<({
|
|
7180
|
+
__typename?: 'StringCustomFieldConfig';
|
|
7181
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
7182
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
7183
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
7184
|
+
__typename?: 'IntCustomFieldConfig';
|
|
7185
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
7186
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7187
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7188
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7189
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7190
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7191
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7192
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7193
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7194
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7195
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7065
7196
|
ShippingMethod: Array<({
|
|
7066
7197
|
__typename?: 'StringCustomFieldConfig';
|
|
7067
7198
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -7079,6 +7210,40 @@ export declare type GetServerConfigQuery = {
|
|
|
7079
7210
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7080
7211
|
__typename?: 'TextCustomFieldConfig';
|
|
7081
7212
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7213
|
+
TaxCategory: Array<({
|
|
7214
|
+
__typename?: 'StringCustomFieldConfig';
|
|
7215
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
7216
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
7217
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
7218
|
+
__typename?: 'IntCustomFieldConfig';
|
|
7219
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
7220
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7221
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7222
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7223
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7224
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7225
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7226
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7227
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7228
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7229
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7230
|
+
TaxRate: Array<({
|
|
7231
|
+
__typename?: 'StringCustomFieldConfig';
|
|
7232
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
7233
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
7234
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
7235
|
+
__typename?: 'IntCustomFieldConfig';
|
|
7236
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
7237
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7238
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7239
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7240
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7241
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7242
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7243
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7244
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7245
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7246
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7082
7247
|
User: Array<({
|
|
7083
7248
|
__typename?: 'StringCustomFieldConfig';
|
|
7084
7249
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -7096,6 +7261,23 @@ export declare type GetServerConfigQuery = {
|
|
|
7096
7261
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7097
7262
|
__typename?: 'TextCustomFieldConfig';
|
|
7098
7263
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7264
|
+
Zone: Array<({
|
|
7265
|
+
__typename?: 'StringCustomFieldConfig';
|
|
7266
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
7267
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
7268
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
7269
|
+
__typename?: 'IntCustomFieldConfig';
|
|
7270
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
7271
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7272
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7273
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7274
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7275
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7276
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7277
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7278
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7279
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7280
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7099
7281
|
});
|
|
7100
7282
|
});
|
|
7101
7283
|
});
|
|
@@ -7494,6 +7676,14 @@ export declare namespace SetUiLanguage {
|
|
|
7494
7676
|
type Variables = SetUiLanguageMutationVariables;
|
|
7495
7677
|
type Mutation = SetUiLanguageMutation;
|
|
7496
7678
|
}
|
|
7679
|
+
export declare namespace SetUiLocale {
|
|
7680
|
+
type Variables = SetUiLocaleMutationVariables;
|
|
7681
|
+
type Mutation = SetUiLocaleMutation;
|
|
7682
|
+
}
|
|
7683
|
+
export declare namespace SetDisplayUiExtensionPoints {
|
|
7684
|
+
type Variables = SetDisplayUiExtensionPointsMutationVariables;
|
|
7685
|
+
type Mutation = SetDisplayUiExtensionPointsMutation;
|
|
7686
|
+
}
|
|
7497
7687
|
export declare namespace SetContentLanguage {
|
|
7498
7688
|
type Variables = SetContentLanguageMutationVariables;
|
|
7499
7689
|
type Mutation = SetContentLanguageMutation;
|
|
@@ -7597,6 +7787,9 @@ export declare namespace Customer {
|
|
|
7597
7787
|
type User = (NonNullable<CustomerFragment['user']>);
|
|
7598
7788
|
type Addresses = NonNullable<(NonNullable<CustomerFragment['addresses']>)[number]>;
|
|
7599
7789
|
}
|
|
7790
|
+
export declare namespace CustomerGroup {
|
|
7791
|
+
type Fragment = CustomerGroupFragment;
|
|
7792
|
+
}
|
|
7600
7793
|
export declare namespace GetCustomerList {
|
|
7601
7794
|
type Variables = GetCustomerListQueryVariables;
|
|
7602
7795
|
type Query = GetCustomerListQuery;
|
|
@@ -8557,19 +8750,26 @@ export declare namespace GetServerConfig {
|
|
|
8557
8750
|
type Asset = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Asset']>)[number]>;
|
|
8558
8751
|
type Channel = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Channel']>)[number]>;
|
|
8559
8752
|
type Collection = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Collection']>)[number]>;
|
|
8753
|
+
type Country = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Country']>)[number]>;
|
|
8560
8754
|
type Customer = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Customer']>)[number]>;
|
|
8755
|
+
type CustomerGroup = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['CustomerGroup']>)[number]>;
|
|
8561
8756
|
type Facet = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Facet']>)[number]>;
|
|
8562
8757
|
type FacetValue = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['FacetValue']>)[number]>;
|
|
8563
8758
|
type Fulfillment = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Fulfillment']>)[number]>;
|
|
8564
8759
|
type _GlobalSettings = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['GlobalSettings']>)[number]>;
|
|
8565
8760
|
type Order = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Order']>)[number]>;
|
|
8566
8761
|
type OrderLine = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['OrderLine']>)[number]>;
|
|
8762
|
+
type PaymentMethod = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['PaymentMethod']>)[number]>;
|
|
8567
8763
|
type Product = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Product']>)[number]>;
|
|
8568
8764
|
type ProductOption = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['ProductOption']>)[number]>;
|
|
8569
8765
|
type ProductOptionGroup = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['ProductOptionGroup']>)[number]>;
|
|
8570
8766
|
type ProductVariant = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['ProductVariant']>)[number]>;
|
|
8767
|
+
type Promotion = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Promotion']>)[number]>;
|
|
8571
8768
|
type ShippingMethod = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['ShippingMethod']>)[number]>;
|
|
8769
|
+
type TaxCategory = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['TaxCategory']>)[number]>;
|
|
8770
|
+
type TaxRate = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['TaxRate']>)[number]>;
|
|
8572
8771
|
type User = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['User']>)[number]>;
|
|
8772
|
+
type Zone = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Zone']>)[number]>;
|
|
8573
8773
|
}
|
|
8574
8774
|
export declare namespace JobInfo {
|
|
8575
8775
|
type Fragment = JobInfoFragment;
|