@vendure/admin-ui 1.3.2 → 1.4.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 +87 -162
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +2058 -426
- 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/facet-list/facet-list.component.d.ts +3 -5
- 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 +286 -27
- 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/definitions/settings-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/providers/settings-data.service.d.ts +3 -0
- 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/channel-assignment-control/channel-assignment-control.component.d.ts +2 -0
- 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/extension-host/extension-host.service.d.ts +3 -1
- 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 +10 -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 +12 -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 +40 -3
- 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 +9 -0
- package/core/shared/dynamic-form-inputs/text-form-input/text-form-input.component.d.ts +12 -3
- 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/collection-tree/collection-tree-node.component.js +1 -1
- package/esm2015/catalog/components/collection-tree/collection-tree.component.js +1 -1
- package/esm2015/catalog/components/facet-detail/facet-detail.component.js +3 -15
- package/esm2015/catalog/components/facet-list/facet-list.component.js +24 -9
- 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/catalog/components/variant-price-detail/variant-price-detail.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/introspection-result.js +249 -183
- 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 +50 -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 +12 -4
- 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/channel-assignment-control/channel-assignment-control.component.js +36 -22
- 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/extension-host/extension-host.component.js +3 -3
- package/esm2015/core/shared/components/extension-host/extension-host.service.js +16 -2
- 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 +11 -3
- 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 +48 -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 +125 -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 +21 -2
- 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 +29 -2
- 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 +14 -2
- package/esm2015/core/shared/dynamic-form-inputs/text-form-input/text-form-input.component.js +17 -2
- 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 +83 -102
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +1900 -362
- 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
|
@@ -85,6 +85,7 @@ export declare type Administrator = Node & {
|
|
|
85
85
|
customFields?: Maybe<Scalars['JSON']>;
|
|
86
86
|
};
|
|
87
87
|
export declare type AdministratorFilterParameter = {
|
|
88
|
+
id?: Maybe<IdOperators>;
|
|
88
89
|
createdAt?: Maybe<DateOperators>;
|
|
89
90
|
updatedAt?: Maybe<DateOperators>;
|
|
90
91
|
firstName?: Maybe<StringOperators>;
|
|
@@ -159,6 +160,7 @@ export declare type Asset = Node & {
|
|
|
159
160
|
customFields?: Maybe<Scalars['JSON']>;
|
|
160
161
|
};
|
|
161
162
|
export declare type AssetFilterParameter = {
|
|
163
|
+
id?: Maybe<IdOperators>;
|
|
162
164
|
createdAt?: Maybe<DateOperators>;
|
|
163
165
|
updatedAt?: Maybe<DateOperators>;
|
|
164
166
|
name?: Maybe<StringOperators>;
|
|
@@ -245,7 +247,9 @@ export declare type BooleanCustomFieldConfig = CustomField & {
|
|
|
245
247
|
readonly?: Maybe<Scalars['Boolean']>;
|
|
246
248
|
internal?: Maybe<Scalars['Boolean']>;
|
|
247
249
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
250
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
248
251
|
};
|
|
252
|
+
/** Operators for filtering on a Boolean field */
|
|
249
253
|
export declare type BooleanOperators = {
|
|
250
254
|
eq?: Maybe<Scalars['Boolean']>;
|
|
251
255
|
};
|
|
@@ -331,6 +335,7 @@ export declare type CollectionBreadcrumb = {
|
|
|
331
335
|
};
|
|
332
336
|
export declare type CollectionFilterParameter = {
|
|
333
337
|
isPrivate?: Maybe<BooleanOperators>;
|
|
338
|
+
id?: Maybe<IdOperators>;
|
|
334
339
|
createdAt?: Maybe<DateOperators>;
|
|
335
340
|
updatedAt?: Maybe<DateOperators>;
|
|
336
341
|
languageCode?: Maybe<StringOperators>;
|
|
@@ -439,8 +444,10 @@ export declare type Country = Node & {
|
|
|
439
444
|
name: Scalars['String'];
|
|
440
445
|
enabled: Scalars['Boolean'];
|
|
441
446
|
translations: Array<CountryTranslation>;
|
|
447
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
442
448
|
};
|
|
443
449
|
export declare type CountryFilterParameter = {
|
|
450
|
+
id?: Maybe<IdOperators>;
|
|
444
451
|
createdAt?: Maybe<DateOperators>;
|
|
445
452
|
updatedAt?: Maybe<DateOperators>;
|
|
446
453
|
languageCode?: Maybe<StringOperators>;
|
|
@@ -484,6 +491,7 @@ export declare type CountryTranslationInput = {
|
|
|
484
491
|
id?: Maybe<Scalars['ID']>;
|
|
485
492
|
languageCode: LanguageCode;
|
|
486
493
|
name?: Maybe<Scalars['String']>;
|
|
494
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
487
495
|
};
|
|
488
496
|
export declare type CreateAddressInput = {
|
|
489
497
|
fullName?: Maybe<Scalars['String']>;
|
|
@@ -544,10 +552,12 @@ export declare type CreateCountryInput = {
|
|
|
544
552
|
code: Scalars['String'];
|
|
545
553
|
translations: Array<CountryTranslationInput>;
|
|
546
554
|
enabled: Scalars['Boolean'];
|
|
555
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
547
556
|
};
|
|
548
557
|
export declare type CreateCustomerGroupInput = {
|
|
549
558
|
name: Scalars['String'];
|
|
550
559
|
customerIds?: Maybe<Array<Scalars['ID']>>;
|
|
560
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
551
561
|
};
|
|
552
562
|
export declare type CreateCustomerInput = {
|
|
553
563
|
title?: Maybe<Scalars['String']>;
|
|
@@ -593,6 +603,7 @@ export declare type CreatePaymentMethodInput = {
|
|
|
593
603
|
enabled: Scalars['Boolean'];
|
|
594
604
|
checker?: Maybe<ConfigurableOperationInput>;
|
|
595
605
|
handler: ConfigurableOperationInput;
|
|
606
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
596
607
|
};
|
|
597
608
|
export declare type CreateProductInput = {
|
|
598
609
|
featuredAssetId?: Maybe<Scalars['ID']>;
|
|
@@ -644,6 +655,7 @@ export declare type CreatePromotionInput = {
|
|
|
644
655
|
perCustomerUsageLimit?: Maybe<Scalars['Int']>;
|
|
645
656
|
conditions: Array<ConfigurableOperationInput>;
|
|
646
657
|
actions: Array<ConfigurableOperationInput>;
|
|
658
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
647
659
|
};
|
|
648
660
|
export declare type CreatePromotionResult = Promotion | MissingConditionsError;
|
|
649
661
|
export declare type CreateRoleInput = {
|
|
@@ -666,6 +678,7 @@ export declare type CreateTagInput = {
|
|
|
666
678
|
export declare type CreateTaxCategoryInput = {
|
|
667
679
|
name: Scalars['String'];
|
|
668
680
|
isDefault?: Maybe<Scalars['Boolean']>;
|
|
681
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
669
682
|
};
|
|
670
683
|
export declare type CreateTaxRateInput = {
|
|
671
684
|
name: Scalars['String'];
|
|
@@ -674,10 +687,12 @@ export declare type CreateTaxRateInput = {
|
|
|
674
687
|
categoryId: Scalars['ID'];
|
|
675
688
|
zoneId: Scalars['ID'];
|
|
676
689
|
customerGroupId?: Maybe<Scalars['ID']>;
|
|
690
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
677
691
|
};
|
|
678
692
|
export declare type CreateZoneInput = {
|
|
679
693
|
name: Scalars['String'];
|
|
680
694
|
memberIds?: Maybe<Array<Scalars['ID']>>;
|
|
695
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
681
696
|
};
|
|
682
697
|
/**
|
|
683
698
|
* @description
|
|
@@ -1029,6 +1044,7 @@ export declare type CustomField = {
|
|
|
1029
1044
|
readonly?: Maybe<Scalars['Boolean']>;
|
|
1030
1045
|
internal?: Maybe<Scalars['Boolean']>;
|
|
1031
1046
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
1047
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1032
1048
|
};
|
|
1033
1049
|
export declare type CustomFieldConfig = StringCustomFieldConfig | LocaleStringCustomFieldConfig | IntCustomFieldConfig | FloatCustomFieldConfig | BooleanCustomFieldConfig | DateTimeCustomFieldConfig | RelationCustomFieldConfig | TextCustomFieldConfig;
|
|
1034
1050
|
export declare type CustomFields = {
|
|
@@ -1038,19 +1054,26 @@ export declare type CustomFields = {
|
|
|
1038
1054
|
Asset: Array<CustomFieldConfig>;
|
|
1039
1055
|
Channel: Array<CustomFieldConfig>;
|
|
1040
1056
|
Collection: Array<CustomFieldConfig>;
|
|
1057
|
+
Country: Array<CustomFieldConfig>;
|
|
1041
1058
|
Customer: Array<CustomFieldConfig>;
|
|
1059
|
+
CustomerGroup: Array<CustomFieldConfig>;
|
|
1042
1060
|
Facet: Array<CustomFieldConfig>;
|
|
1043
1061
|
FacetValue: Array<CustomFieldConfig>;
|
|
1044
1062
|
Fulfillment: Array<CustomFieldConfig>;
|
|
1045
1063
|
GlobalSettings: Array<CustomFieldConfig>;
|
|
1046
1064
|
Order: Array<CustomFieldConfig>;
|
|
1047
1065
|
OrderLine: Array<CustomFieldConfig>;
|
|
1066
|
+
PaymentMethod: Array<CustomFieldConfig>;
|
|
1048
1067
|
Product: Array<CustomFieldConfig>;
|
|
1049
1068
|
ProductOption: Array<CustomFieldConfig>;
|
|
1050
1069
|
ProductOptionGroup: Array<CustomFieldConfig>;
|
|
1051
1070
|
ProductVariant: Array<CustomFieldConfig>;
|
|
1052
|
-
|
|
1071
|
+
Promotion: Array<CustomFieldConfig>;
|
|
1053
1072
|
ShippingMethod: Array<CustomFieldConfig>;
|
|
1073
|
+
TaxCategory: Array<CustomFieldConfig>;
|
|
1074
|
+
TaxRate: Array<CustomFieldConfig>;
|
|
1075
|
+
User: Array<CustomFieldConfig>;
|
|
1076
|
+
Zone: Array<CustomFieldConfig>;
|
|
1054
1077
|
};
|
|
1055
1078
|
export declare type Customer = Node & {
|
|
1056
1079
|
__typename?: 'Customer';
|
|
@@ -1076,6 +1099,7 @@ export declare type CustomerOrdersArgs = {
|
|
|
1076
1099
|
options?: Maybe<OrderListOptions>;
|
|
1077
1100
|
};
|
|
1078
1101
|
export declare type CustomerFilterParameter = {
|
|
1102
|
+
id?: Maybe<IdOperators>;
|
|
1079
1103
|
createdAt?: Maybe<DateOperators>;
|
|
1080
1104
|
updatedAt?: Maybe<DateOperators>;
|
|
1081
1105
|
title?: Maybe<StringOperators>;
|
|
@@ -1091,11 +1115,13 @@ export declare type CustomerGroup = Node & {
|
|
|
1091
1115
|
updatedAt: Scalars['DateTime'];
|
|
1092
1116
|
name: Scalars['String'];
|
|
1093
1117
|
customers: CustomerList;
|
|
1118
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
1094
1119
|
};
|
|
1095
1120
|
export declare type CustomerGroupCustomersArgs = {
|
|
1096
1121
|
options?: Maybe<CustomerListOptions>;
|
|
1097
1122
|
};
|
|
1098
1123
|
export declare type CustomerGroupFilterParameter = {
|
|
1124
|
+
id?: Maybe<IdOperators>;
|
|
1099
1125
|
createdAt?: Maybe<DateOperators>;
|
|
1100
1126
|
updatedAt?: Maybe<DateOperators>;
|
|
1101
1127
|
name?: Maybe<StringOperators>;
|
|
@@ -1150,6 +1176,7 @@ export declare type CustomerSortParameter = {
|
|
|
1150
1176
|
phoneNumber?: Maybe<SortOrder>;
|
|
1151
1177
|
emailAddress?: Maybe<SortOrder>;
|
|
1152
1178
|
};
|
|
1179
|
+
/** Operators for filtering on a DateTime field */
|
|
1153
1180
|
export declare type DateOperators = {
|
|
1154
1181
|
eq?: Maybe<Scalars['DateTime']>;
|
|
1155
1182
|
before?: Maybe<Scalars['DateTime']>;
|
|
@@ -1177,6 +1204,7 @@ export declare type DateTimeCustomFieldConfig = CustomField & {
|
|
|
1177
1204
|
min?: Maybe<Scalars['String']>;
|
|
1178
1205
|
max?: Maybe<Scalars['String']>;
|
|
1179
1206
|
step?: Maybe<Scalars['Int']>;
|
|
1207
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1180
1208
|
};
|
|
1181
1209
|
export declare type DeleteAssetInput = {
|
|
1182
1210
|
assetId: Scalars['ID'];
|
|
@@ -1274,6 +1302,7 @@ export declare type Facet = Node & {
|
|
|
1274
1302
|
};
|
|
1275
1303
|
export declare type FacetFilterParameter = {
|
|
1276
1304
|
isPrivate?: Maybe<BooleanOperators>;
|
|
1305
|
+
id?: Maybe<IdOperators>;
|
|
1277
1306
|
createdAt?: Maybe<DateOperators>;
|
|
1278
1307
|
updatedAt?: Maybe<DateOperators>;
|
|
1279
1308
|
languageCode?: Maybe<StringOperators>;
|
|
@@ -1378,6 +1407,7 @@ export declare type FloatCustomFieldConfig = CustomField & {
|
|
|
1378
1407
|
min?: Maybe<Scalars['Float']>;
|
|
1379
1408
|
max?: Maybe<Scalars['Float']>;
|
|
1380
1409
|
step?: Maybe<Scalars['Float']>;
|
|
1410
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1381
1411
|
};
|
|
1382
1412
|
export declare type FulfillOrderInput = {
|
|
1383
1413
|
lines: Array<OrderLineInput>;
|
|
@@ -1432,6 +1462,7 @@ export declare type HistoryEntry = Node & {
|
|
|
1432
1462
|
};
|
|
1433
1463
|
export declare type HistoryEntryFilterParameter = {
|
|
1434
1464
|
isPublic?: Maybe<BooleanOperators>;
|
|
1465
|
+
id?: Maybe<IdOperators>;
|
|
1435
1466
|
createdAt?: Maybe<DateOperators>;
|
|
1436
1467
|
updatedAt?: Maybe<DateOperators>;
|
|
1437
1468
|
type?: Maybe<StringOperators>;
|
|
@@ -1484,6 +1515,13 @@ export declare enum HistoryEntryType {
|
|
|
1484
1515
|
ORDER_COUPON_REMOVED = "ORDER_COUPON_REMOVED",
|
|
1485
1516
|
ORDER_MODIFIED = "ORDER_MODIFIED"
|
|
1486
1517
|
}
|
|
1518
|
+
/** Operators for filtering on an ID field */
|
|
1519
|
+
export declare type IdOperators = {
|
|
1520
|
+
eq?: Maybe<Scalars['String']>;
|
|
1521
|
+
notEq?: Maybe<Scalars['String']>;
|
|
1522
|
+
in?: Maybe<Array<Scalars['String']>>;
|
|
1523
|
+
notIn?: Maybe<Array<Scalars['String']>>;
|
|
1524
|
+
};
|
|
1487
1525
|
export declare type ImportInfo = {
|
|
1488
1526
|
__typename?: 'ImportInfo';
|
|
1489
1527
|
errors?: Maybe<Array<Scalars['String']>>;
|
|
@@ -1523,6 +1561,7 @@ export declare type IntCustomFieldConfig = CustomField & {
|
|
|
1523
1561
|
min?: Maybe<Scalars['Int']>;
|
|
1524
1562
|
max?: Maybe<Scalars['Int']>;
|
|
1525
1563
|
step?: Maybe<Scalars['Int']>;
|
|
1564
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1526
1565
|
};
|
|
1527
1566
|
/** Returned if the user authentication credentials are not valid */
|
|
1528
1567
|
export declare type InvalidCredentialsError = ErrorResult & {
|
|
@@ -1566,6 +1605,7 @@ export declare type JobBufferSize = {
|
|
|
1566
1605
|
size: Scalars['Int'];
|
|
1567
1606
|
};
|
|
1568
1607
|
export declare type JobFilterParameter = {
|
|
1608
|
+
id?: Maybe<IdOperators>;
|
|
1569
1609
|
createdAt?: Maybe<DateOperators>;
|
|
1570
1610
|
startedAt?: Maybe<DateOperators>;
|
|
1571
1611
|
settledAt?: Maybe<DateOperators>;
|
|
@@ -1968,6 +2008,7 @@ export declare type LocaleStringCustomFieldConfig = CustomField & {
|
|
|
1968
2008
|
internal?: Maybe<Scalars['Boolean']>;
|
|
1969
2009
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
1970
2010
|
pattern?: Maybe<Scalars['String']>;
|
|
2011
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
1971
2012
|
};
|
|
1972
2013
|
export declare type LocalizedString = {
|
|
1973
2014
|
__typename?: 'LocalizedString';
|
|
@@ -2040,7 +2081,10 @@ export declare type Mutation = {
|
|
|
2040
2081
|
addCustomersToGroup: CustomerGroup;
|
|
2041
2082
|
addFulfillmentToOrder: AddFulfillmentToOrderResult;
|
|
2042
2083
|
/**
|
|
2043
|
-
* Used to manually create a new Payment against an Order.
|
|
2084
|
+
* Used to manually create a new Payment against an Order.
|
|
2085
|
+
* This can be used by an Administrator when an Order is in the ArrangingPayment state.
|
|
2086
|
+
*
|
|
2087
|
+
* It is also used when a completed Order
|
|
2044
2088
|
* has been modified (using `modifyOrder`) and the price has increased. The extra payment
|
|
2045
2089
|
* can then be manually arranged by the administrator, and the details used to create a new
|
|
2046
2090
|
* Payment.
|
|
@@ -2187,8 +2231,10 @@ export declare type Mutation = {
|
|
|
2187
2231
|
setAsLoggedIn: UserStatus;
|
|
2188
2232
|
setAsLoggedOut: UserStatus;
|
|
2189
2233
|
setContentLanguage: LanguageCode;
|
|
2234
|
+
setDisplayUiExtensionPoints: Scalars['Boolean'];
|
|
2190
2235
|
setOrderCustomFields?: Maybe<Order>;
|
|
2191
2236
|
setUiLanguage: LanguageCode;
|
|
2237
|
+
setUiLocale?: Maybe<Scalars['String']>;
|
|
2192
2238
|
setUiTheme: Scalars['String'];
|
|
2193
2239
|
settlePayment: SettlePaymentResult;
|
|
2194
2240
|
settleRefund: SettleRefundResult;
|
|
@@ -2489,12 +2535,18 @@ export declare type MutationSetAsLoggedInArgs = {
|
|
|
2489
2535
|
export declare type MutationSetContentLanguageArgs = {
|
|
2490
2536
|
languageCode: LanguageCode;
|
|
2491
2537
|
};
|
|
2538
|
+
export declare type MutationSetDisplayUiExtensionPointsArgs = {
|
|
2539
|
+
display: Scalars['Boolean'];
|
|
2540
|
+
};
|
|
2492
2541
|
export declare type MutationSetOrderCustomFieldsArgs = {
|
|
2493
2542
|
input: UpdateOrderInput;
|
|
2494
2543
|
};
|
|
2495
2544
|
export declare type MutationSetUiLanguageArgs = {
|
|
2496
2545
|
languageCode: LanguageCode;
|
|
2497
2546
|
};
|
|
2547
|
+
export declare type MutationSetUiLocaleArgs = {
|
|
2548
|
+
locale?: Maybe<Scalars['String']>;
|
|
2549
|
+
};
|
|
2498
2550
|
export declare type MutationSetUiThemeArgs = {
|
|
2499
2551
|
theme: Scalars['String'];
|
|
2500
2552
|
};
|
|
@@ -2633,6 +2685,7 @@ export declare type NothingToRefundError = ErrorResult & {
|
|
|
2633
2685
|
errorCode: ErrorCode;
|
|
2634
2686
|
message: Scalars['String'];
|
|
2635
2687
|
};
|
|
2688
|
+
/** Operators for filtering on a Int or Float field */
|
|
2636
2689
|
export declare type NumberOperators = {
|
|
2637
2690
|
eq?: Maybe<Scalars['Float']>;
|
|
2638
2691
|
lt?: Maybe<Scalars['Float']>;
|
|
@@ -2722,6 +2775,7 @@ export declare type OrderAddress = {
|
|
|
2722
2775
|
};
|
|
2723
2776
|
export declare type OrderFilterParameter = {
|
|
2724
2777
|
customerLastName?: Maybe<StringOperators>;
|
|
2778
|
+
id?: Maybe<IdOperators>;
|
|
2725
2779
|
createdAt?: Maybe<DateOperators>;
|
|
2726
2780
|
updatedAt?: Maybe<DateOperators>;
|
|
2727
2781
|
orderPlacedAt?: Maybe<DateOperators>;
|
|
@@ -2759,7 +2813,7 @@ export declare type OrderItem = Node & {
|
|
|
2759
2813
|
/** The price of a single unit including discounts and tax */
|
|
2760
2814
|
discountedUnitPriceWithTax: Scalars['Int'];
|
|
2761
2815
|
/**
|
|
2762
|
-
* The actual unit price, taking into account both item discounts _and_ prorated (
|
|
2816
|
+
* The actual unit price, taking into account both item discounts _and_ prorated (proportionally-distributed)
|
|
2763
2817
|
* Order-level discounts. This value is the true economic value of the OrderItem, and is used in tax
|
|
2764
2818
|
* and refund calculations.
|
|
2765
2819
|
*/
|
|
@@ -2807,7 +2861,7 @@ export declare type OrderLine = Node & {
|
|
|
2807
2861
|
/** The price of a single unit including discounts and tax */
|
|
2808
2862
|
discountedUnitPriceWithTax: Scalars['Int'];
|
|
2809
2863
|
/**
|
|
2810
|
-
* The actual unit price, taking into account both item discounts _and_ prorated (
|
|
2864
|
+
* The actual unit price, taking into account both item discounts _and_ prorated (proportionally-distributed)
|
|
2811
2865
|
* Order-level discounts. This value is the true economic value of the OrderItem, and is used in tax
|
|
2812
2866
|
* and refund calculations.
|
|
2813
2867
|
*/
|
|
@@ -2819,14 +2873,14 @@ export declare type OrderLine = Node & {
|
|
|
2819
2873
|
taxRate: Scalars['Float'];
|
|
2820
2874
|
/** The total price of the line excluding tax and discounts. */
|
|
2821
2875
|
linePrice: Scalars['Int'];
|
|
2822
|
-
/** The total price of the line including tax
|
|
2876
|
+
/** The total price of the line including tax but excluding discounts. */
|
|
2823
2877
|
linePriceWithTax: Scalars['Int'];
|
|
2824
2878
|
/** The price of the line including discounts, excluding tax */
|
|
2825
2879
|
discountedLinePrice: Scalars['Int'];
|
|
2826
2880
|
/** The price of the line including discounts and tax */
|
|
2827
2881
|
discountedLinePriceWithTax: Scalars['Int'];
|
|
2828
2882
|
/**
|
|
2829
|
-
* The actual line price, taking into account both item discounts _and_ prorated (
|
|
2883
|
+
* The actual line price, taking into account both item discounts _and_ prorated (proportionally-distributed)
|
|
2830
2884
|
* Order-level discounts. This value is the true economic value of the OrderLine, and is used in tax
|
|
2831
2885
|
* and refund calculations.
|
|
2832
2886
|
*/
|
|
@@ -2954,8 +3008,10 @@ export declare type PaymentMethod = Node & {
|
|
|
2954
3008
|
enabled: Scalars['Boolean'];
|
|
2955
3009
|
checker?: Maybe<ConfigurableOperation>;
|
|
2956
3010
|
handler: ConfigurableOperation;
|
|
3011
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
2957
3012
|
};
|
|
2958
3013
|
export declare type PaymentMethodFilterParameter = {
|
|
3014
|
+
id?: Maybe<IdOperators>;
|
|
2959
3015
|
createdAt?: Maybe<DateOperators>;
|
|
2960
3016
|
updatedAt?: Maybe<DateOperators>;
|
|
2961
3017
|
name?: Maybe<StringOperators>;
|
|
@@ -2997,6 +3053,7 @@ export declare type PaymentMethodQuote = {
|
|
|
2997
3053
|
description: Scalars['String'];
|
|
2998
3054
|
isEligible: Scalars['Boolean'];
|
|
2999
3055
|
eligibilityMessage?: Maybe<Scalars['String']>;
|
|
3056
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
3000
3057
|
};
|
|
3001
3058
|
export declare type PaymentMethodSortParameter = {
|
|
3002
3059
|
id?: Maybe<SortOrder>;
|
|
@@ -3241,6 +3298,7 @@ export declare type ProductVariantListArgs = {
|
|
|
3241
3298
|
};
|
|
3242
3299
|
export declare type ProductFilterParameter = {
|
|
3243
3300
|
enabled?: Maybe<BooleanOperators>;
|
|
3301
|
+
id?: Maybe<IdOperators>;
|
|
3244
3302
|
createdAt?: Maybe<DateOperators>;
|
|
3245
3303
|
updatedAt?: Maybe<DateOperators>;
|
|
3246
3304
|
languageCode?: Maybe<StringOperators>;
|
|
@@ -3392,6 +3450,8 @@ export declare type ProductVariantFilterParameter = {
|
|
|
3392
3450
|
stockAllocated?: Maybe<NumberOperators>;
|
|
3393
3451
|
outOfStockThreshold?: Maybe<NumberOperators>;
|
|
3394
3452
|
useGlobalOutOfStockThreshold?: Maybe<BooleanOperators>;
|
|
3453
|
+
id?: Maybe<IdOperators>;
|
|
3454
|
+
productId?: Maybe<IdOperators>;
|
|
3395
3455
|
createdAt?: Maybe<DateOperators>;
|
|
3396
3456
|
updatedAt?: Maybe<DateOperators>;
|
|
3397
3457
|
languageCode?: Maybe<StringOperators>;
|
|
@@ -3460,8 +3520,10 @@ export declare type Promotion = Node & {
|
|
|
3460
3520
|
enabled: Scalars['Boolean'];
|
|
3461
3521
|
conditions: Array<ConfigurableOperation>;
|
|
3462
3522
|
actions: Array<ConfigurableOperation>;
|
|
3523
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
3463
3524
|
};
|
|
3464
3525
|
export declare type PromotionFilterParameter = {
|
|
3526
|
+
id?: Maybe<IdOperators>;
|
|
3465
3527
|
createdAt?: Maybe<DateOperators>;
|
|
3466
3528
|
updatedAt?: Maybe<DateOperators>;
|
|
3467
3529
|
startsAt?: Maybe<DateOperators>;
|
|
@@ -3775,6 +3837,7 @@ export declare type RelationCustomFieldConfig = CustomField & {
|
|
|
3775
3837
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
3776
3838
|
entity: Scalars['String'];
|
|
3777
3839
|
scalarFields: Array<Scalars['String']>;
|
|
3840
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
3778
3841
|
};
|
|
3779
3842
|
export declare type Release = Node & StockMovement & {
|
|
3780
3843
|
__typename?: 'Release';
|
|
@@ -3820,6 +3883,7 @@ export declare type Role = Node & {
|
|
|
3820
3883
|
channels: Array<Channel>;
|
|
3821
3884
|
};
|
|
3822
3885
|
export declare type RoleFilterParameter = {
|
|
3886
|
+
id?: Maybe<IdOperators>;
|
|
3823
3887
|
createdAt?: Maybe<DateOperators>;
|
|
3824
3888
|
updatedAt?: Maybe<DateOperators>;
|
|
3825
3889
|
code?: Maybe<StringOperators>;
|
|
@@ -3962,6 +4026,7 @@ export declare type ShippingMethod = Node & {
|
|
|
3962
4026
|
customFields?: Maybe<Scalars['JSON']>;
|
|
3963
4027
|
};
|
|
3964
4028
|
export declare type ShippingMethodFilterParameter = {
|
|
4029
|
+
id?: Maybe<IdOperators>;
|
|
3965
4030
|
createdAt?: Maybe<DateOperators>;
|
|
3966
4031
|
updatedAt?: Maybe<DateOperators>;
|
|
3967
4032
|
code?: Maybe<StringOperators>;
|
|
@@ -3996,6 +4061,7 @@ export declare type ShippingMethodQuote = {
|
|
|
3996
4061
|
description: Scalars['String'];
|
|
3997
4062
|
/** Any optional metadata returned by the ShippingCalculator in the ShippingCalculationResult */
|
|
3998
4063
|
metadata?: Maybe<Scalars['JSON']>;
|
|
4064
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
3999
4065
|
};
|
|
4000
4066
|
export declare type ShippingMethodSortParameter = {
|
|
4001
4067
|
id?: Maybe<SortOrder>;
|
|
@@ -4080,12 +4146,14 @@ export declare type StringCustomFieldConfig = CustomField & {
|
|
|
4080
4146
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
4081
4147
|
pattern?: Maybe<Scalars['String']>;
|
|
4082
4148
|
options?: Maybe<Array<StringFieldOption>>;
|
|
4149
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
4083
4150
|
};
|
|
4084
4151
|
export declare type StringFieldOption = {
|
|
4085
4152
|
__typename?: 'StringFieldOption';
|
|
4086
4153
|
value: Scalars['String'];
|
|
4087
4154
|
label?: Maybe<Array<LocalizedString>>;
|
|
4088
4155
|
};
|
|
4156
|
+
/** Operators for filtering on a String field */
|
|
4089
4157
|
export declare type StringOperators = {
|
|
4090
4158
|
eq?: Maybe<Scalars['String']>;
|
|
4091
4159
|
notEq?: Maybe<Scalars['String']>;
|
|
@@ -4128,6 +4196,7 @@ export declare type Tag = Node & {
|
|
|
4128
4196
|
value: Scalars['String'];
|
|
4129
4197
|
};
|
|
4130
4198
|
export declare type TagFilterParameter = {
|
|
4199
|
+
id?: Maybe<IdOperators>;
|
|
4131
4200
|
createdAt?: Maybe<DateOperators>;
|
|
4132
4201
|
updatedAt?: Maybe<DateOperators>;
|
|
4133
4202
|
value?: Maybe<StringOperators>;
|
|
@@ -4162,6 +4231,7 @@ export declare type TaxCategory = Node & {
|
|
|
4162
4231
|
updatedAt: Scalars['DateTime'];
|
|
4163
4232
|
name: Scalars['String'];
|
|
4164
4233
|
isDefault: Scalars['Boolean'];
|
|
4234
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4165
4235
|
};
|
|
4166
4236
|
export declare type TaxLine = {
|
|
4167
4237
|
__typename?: 'TaxLine';
|
|
@@ -4179,8 +4249,10 @@ export declare type TaxRate = Node & {
|
|
|
4179
4249
|
category: TaxCategory;
|
|
4180
4250
|
zone: Zone;
|
|
4181
4251
|
customerGroup?: Maybe<CustomerGroup>;
|
|
4252
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4182
4253
|
};
|
|
4183
4254
|
export declare type TaxRateFilterParameter = {
|
|
4255
|
+
id?: Maybe<IdOperators>;
|
|
4184
4256
|
createdAt?: Maybe<DateOperators>;
|
|
4185
4257
|
updatedAt?: Maybe<DateOperators>;
|
|
4186
4258
|
name?: Maybe<StringOperators>;
|
|
@@ -4246,6 +4318,7 @@ export declare type TextCustomFieldConfig = CustomField & {
|
|
|
4246
4318
|
readonly?: Maybe<Scalars['Boolean']>;
|
|
4247
4319
|
internal?: Maybe<Scalars['Boolean']>;
|
|
4248
4320
|
nullable?: Maybe<Scalars['Boolean']>;
|
|
4321
|
+
ui?: Maybe<Scalars['JSON']>;
|
|
4249
4322
|
};
|
|
4250
4323
|
export declare type TransitionFulfillmentToStateResult = Fulfillment | FulfillmentStateTransitionError;
|
|
4251
4324
|
export declare type TransitionOrderToStateResult = Order | OrderStateTransitionError;
|
|
@@ -4253,8 +4326,10 @@ export declare type TransitionPaymentToStateResult = Payment | PaymentStateTrans
|
|
|
4253
4326
|
export declare type UiState = {
|
|
4254
4327
|
__typename?: 'UiState';
|
|
4255
4328
|
language: LanguageCode;
|
|
4329
|
+
locale?: Maybe<Scalars['String']>;
|
|
4256
4330
|
contentLanguage: LanguageCode;
|
|
4257
4331
|
theme: Scalars['String'];
|
|
4332
|
+
displayUiExtensionPoints: Scalars['Boolean'];
|
|
4258
4333
|
};
|
|
4259
4334
|
export declare type UpdateActiveAdministratorInput = {
|
|
4260
4335
|
firstName?: Maybe<Scalars['String']>;
|
|
@@ -4329,10 +4404,12 @@ export declare type UpdateCountryInput = {
|
|
|
4329
4404
|
code?: Maybe<Scalars['String']>;
|
|
4330
4405
|
translations?: Maybe<Array<CountryTranslationInput>>;
|
|
4331
4406
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
4407
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4332
4408
|
};
|
|
4333
4409
|
export declare type UpdateCustomerGroupInput = {
|
|
4334
4410
|
id: Scalars['ID'];
|
|
4335
4411
|
name?: Maybe<Scalars['String']>;
|
|
4412
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4336
4413
|
};
|
|
4337
4414
|
export declare type UpdateCustomerInput = {
|
|
4338
4415
|
id: Scalars['ID'];
|
|
@@ -4396,6 +4473,7 @@ export declare type UpdatePaymentMethodInput = {
|
|
|
4396
4473
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
4397
4474
|
checker?: Maybe<ConfigurableOperationInput>;
|
|
4398
4475
|
handler?: Maybe<ConfigurableOperationInput>;
|
|
4476
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4399
4477
|
};
|
|
4400
4478
|
export declare type UpdateProductInput = {
|
|
4401
4479
|
id: Scalars['ID'];
|
|
@@ -4444,6 +4522,7 @@ export declare type UpdatePromotionInput = {
|
|
|
4444
4522
|
perCustomerUsageLimit?: Maybe<Scalars['Int']>;
|
|
4445
4523
|
conditions?: Maybe<Array<ConfigurableOperationInput>>;
|
|
4446
4524
|
actions?: Maybe<Array<ConfigurableOperationInput>>;
|
|
4525
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4447
4526
|
};
|
|
4448
4527
|
export declare type UpdatePromotionResult = Promotion | MissingConditionsError;
|
|
4449
4528
|
export declare type UpdateRoleInput = {
|
|
@@ -4470,6 +4549,7 @@ export declare type UpdateTaxCategoryInput = {
|
|
|
4470
4549
|
id: Scalars['ID'];
|
|
4471
4550
|
name?: Maybe<Scalars['String']>;
|
|
4472
4551
|
isDefault?: Maybe<Scalars['Boolean']>;
|
|
4552
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4473
4553
|
};
|
|
4474
4554
|
export declare type UpdateTaxRateInput = {
|
|
4475
4555
|
id: Scalars['ID'];
|
|
@@ -4479,10 +4559,12 @@ export declare type UpdateTaxRateInput = {
|
|
|
4479
4559
|
categoryId?: Maybe<Scalars['ID']>;
|
|
4480
4560
|
zoneId?: Maybe<Scalars['ID']>;
|
|
4481
4561
|
customerGroupId?: Maybe<Scalars['ID']>;
|
|
4562
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4482
4563
|
};
|
|
4483
4564
|
export declare type UpdateZoneInput = {
|
|
4484
4565
|
id: Scalars['ID'];
|
|
4485
4566
|
name?: Maybe<Scalars['String']>;
|
|
4567
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4486
4568
|
};
|
|
4487
4569
|
export declare type User = Node & {
|
|
4488
4570
|
__typename?: 'User';
|
|
@@ -4518,6 +4600,7 @@ export declare type Zone = Node & {
|
|
|
4518
4600
|
updatedAt: Scalars['DateTime'];
|
|
4519
4601
|
name: Scalars['String'];
|
|
4520
4602
|
members: Array<Country>;
|
|
4603
|
+
customFields?: Maybe<Scalars['JSON']>;
|
|
4521
4604
|
};
|
|
4522
4605
|
export declare type RoleFragment = ({
|
|
4523
4606
|
__typename?: 'Role';
|
|
@@ -4720,8 +4803,17 @@ export declare type SetAsLoggedOutMutation = {
|
|
|
4720
4803
|
};
|
|
4721
4804
|
export declare type SetUiLanguageMutationVariables = Exact<{
|
|
4722
4805
|
languageCode: LanguageCode;
|
|
4806
|
+
locale?: Maybe<Scalars['String']>;
|
|
4807
|
+
}>;
|
|
4808
|
+
export declare type SetUiLanguageMutation = Pick<Mutation, 'setUiLanguage' | 'setUiLocale'>;
|
|
4809
|
+
export declare type SetUiLocaleMutationVariables = Exact<{
|
|
4810
|
+
locale?: Maybe<Scalars['String']>;
|
|
4811
|
+
}>;
|
|
4812
|
+
export declare type SetUiLocaleMutation = Pick<Mutation, 'setUiLocale'>;
|
|
4813
|
+
export declare type SetDisplayUiExtensionPointsMutationVariables = Exact<{
|
|
4814
|
+
display: Scalars['Boolean'];
|
|
4723
4815
|
}>;
|
|
4724
|
-
export declare type
|
|
4816
|
+
export declare type SetDisplayUiExtensionPointsMutation = Pick<Mutation, 'setDisplayUiExtensionPoints'>;
|
|
4725
4817
|
export declare type SetContentLanguageMutationVariables = Exact<{
|
|
4726
4818
|
languageCode: LanguageCode;
|
|
4727
4819
|
}>;
|
|
@@ -4752,7 +4844,7 @@ export declare type GetUiStateQueryVariables = Exact<{
|
|
|
4752
4844
|
export declare type GetUiStateQuery = {
|
|
4753
4845
|
uiState: ({
|
|
4754
4846
|
__typename?: 'UiState';
|
|
4755
|
-
} & Pick<UiState, 'language' | 'contentLanguage' | 'theme'>);
|
|
4847
|
+
} & Pick<UiState, 'language' | 'locale' | 'contentLanguage' | 'theme' | 'displayUiExtensionPoints'>);
|
|
4756
4848
|
};
|
|
4757
4849
|
export declare type GetClientStateQueryVariables = Exact<{
|
|
4758
4850
|
[key: string]: never;
|
|
@@ -4766,7 +4858,7 @@ export declare type GetClientStateQuery = {
|
|
|
4766
4858
|
} & UserStatusFragment);
|
|
4767
4859
|
uiState: ({
|
|
4768
4860
|
__typename?: 'UiState';
|
|
4769
|
-
} & Pick<UiState, 'language' | 'contentLanguage' | 'theme'>);
|
|
4861
|
+
} & Pick<UiState, 'language' | 'locale' | 'contentLanguage' | 'theme' | 'displayUiExtensionPoints'>);
|
|
4770
4862
|
};
|
|
4771
4863
|
export declare type SetActiveChannelMutationVariables = Exact<{
|
|
4772
4864
|
channelId: Scalars['ID'];
|
|
@@ -4907,6 +4999,9 @@ export declare type CustomerFragment = ({
|
|
|
4907
4999
|
__typename?: 'Address';
|
|
4908
5000
|
} & AddressFragment)>>;
|
|
4909
5001
|
});
|
|
5002
|
+
export declare type CustomerGroupFragment = ({
|
|
5003
|
+
__typename?: 'CustomerGroup';
|
|
5004
|
+
} & Pick<CustomerGroup, 'id' | 'createdAt' | 'updatedAt' | 'name'>);
|
|
4910
5005
|
export declare type GetCustomerListQueryVariables = Exact<{
|
|
4911
5006
|
options?: Maybe<CustomerListOptions>;
|
|
4912
5007
|
}>;
|
|
@@ -4995,7 +5090,7 @@ export declare type CreateCustomerGroupMutationVariables = Exact<{
|
|
|
4995
5090
|
export declare type CreateCustomerGroupMutation = {
|
|
4996
5091
|
createCustomerGroup: ({
|
|
4997
5092
|
__typename?: 'CustomerGroup';
|
|
4998
|
-
} &
|
|
5093
|
+
} & CustomerGroupFragment);
|
|
4999
5094
|
};
|
|
5000
5095
|
export declare type UpdateCustomerGroupMutationVariables = Exact<{
|
|
5001
5096
|
input: UpdateCustomerGroupInput;
|
|
@@ -5003,7 +5098,7 @@ export declare type UpdateCustomerGroupMutationVariables = Exact<{
|
|
|
5003
5098
|
export declare type UpdateCustomerGroupMutation = {
|
|
5004
5099
|
updateCustomerGroup: ({
|
|
5005
5100
|
__typename?: 'CustomerGroup';
|
|
5006
|
-
} &
|
|
5101
|
+
} & CustomerGroupFragment);
|
|
5007
5102
|
};
|
|
5008
5103
|
export declare type DeleteCustomerGroupMutationVariables = Exact<{
|
|
5009
5104
|
id: Scalars['ID'];
|
|
@@ -5022,7 +5117,7 @@ export declare type GetCustomerGroupsQuery = {
|
|
|
5022
5117
|
} & Pick<CustomerGroupList, 'totalItems'> & {
|
|
5023
5118
|
items: Array<({
|
|
5024
5119
|
__typename?: 'CustomerGroup';
|
|
5025
|
-
} &
|
|
5120
|
+
} & CustomerGroupFragment)>;
|
|
5026
5121
|
});
|
|
5027
5122
|
};
|
|
5028
5123
|
export declare type GetCustomerGroupWithCustomersQueryVariables = Exact<{
|
|
@@ -5032,7 +5127,7 @@ export declare type GetCustomerGroupWithCustomersQueryVariables = Exact<{
|
|
|
5032
5127
|
export declare type GetCustomerGroupWithCustomersQuery = {
|
|
5033
5128
|
customerGroup?: Maybe<({
|
|
5034
5129
|
__typename?: 'CustomerGroup';
|
|
5035
|
-
} &
|
|
5130
|
+
} & {
|
|
5036
5131
|
customers: ({
|
|
5037
5132
|
__typename?: 'CustomerList';
|
|
5038
5133
|
} & Pick<CustomerList, 'totalItems'> & {
|
|
@@ -5040,7 +5135,7 @@ export declare type GetCustomerGroupWithCustomersQuery = {
|
|
|
5040
5135
|
__typename?: 'Customer';
|
|
5041
5136
|
} & Pick<Customer, 'id' | 'createdAt' | 'updatedAt' | 'emailAddress' | 'firstName' | 'lastName'>)>;
|
|
5042
5137
|
});
|
|
5043
|
-
})>;
|
|
5138
|
+
} & CustomerGroupFragment)>;
|
|
5044
5139
|
};
|
|
5045
5140
|
export declare type AddCustomersToGroupMutationVariables = Exact<{
|
|
5046
5141
|
groupId: Scalars['ID'];
|
|
@@ -5049,7 +5144,7 @@ export declare type AddCustomersToGroupMutationVariables = Exact<{
|
|
|
5049
5144
|
export declare type AddCustomersToGroupMutation = {
|
|
5050
5145
|
addCustomersToGroup: ({
|
|
5051
5146
|
__typename?: 'CustomerGroup';
|
|
5052
|
-
} &
|
|
5147
|
+
} & CustomerGroupFragment);
|
|
5053
5148
|
};
|
|
5054
5149
|
export declare type RemoveCustomersFromGroupMutationVariables = Exact<{
|
|
5055
5150
|
groupId: Scalars['ID'];
|
|
@@ -5058,7 +5153,7 @@ export declare type RemoveCustomersFromGroupMutationVariables = Exact<{
|
|
|
5058
5153
|
export declare type RemoveCustomersFromGroupMutation = {
|
|
5059
5154
|
removeCustomersFromGroup: ({
|
|
5060
5155
|
__typename?: 'CustomerGroup';
|
|
5061
|
-
} &
|
|
5156
|
+
} & CustomerGroupFragment);
|
|
5062
5157
|
};
|
|
5063
5158
|
export declare type GetCustomerHistoryQueryVariables = Exact<{
|
|
5064
5159
|
id: Scalars['ID'];
|
|
@@ -6294,7 +6389,7 @@ export declare type DeleteCountryMutation = {
|
|
|
6294
6389
|
};
|
|
6295
6390
|
export declare type ZoneFragment = ({
|
|
6296
6391
|
__typename?: 'Zone';
|
|
6297
|
-
} & Pick<Zone, 'id' | 'name'> & {
|
|
6392
|
+
} & Pick<Zone, 'id' | 'createdAt' | 'updatedAt' | 'name'> & {
|
|
6298
6393
|
members: Array<({
|
|
6299
6394
|
__typename?: 'Country';
|
|
6300
6395
|
} & CountryFragment)>;
|
|
@@ -6305,11 +6400,11 @@ export declare type GetZonesQueryVariables = Exact<{
|
|
|
6305
6400
|
export declare type GetZonesQuery = {
|
|
6306
6401
|
zones: Array<({
|
|
6307
6402
|
__typename?: 'Zone';
|
|
6308
|
-
} &
|
|
6403
|
+
} & {
|
|
6309
6404
|
members: Array<({
|
|
6310
6405
|
__typename?: 'Country';
|
|
6311
6406
|
} & Pick<Country, 'createdAt' | 'updatedAt' | 'id' | 'name' | 'code' | 'enabled'>)>;
|
|
6312
|
-
})>;
|
|
6407
|
+
} & ZoneFragment)>;
|
|
6313
6408
|
};
|
|
6314
6409
|
export declare type GetZoneQueryVariables = Exact<{
|
|
6315
6410
|
id: Scalars['ID'];
|
|
@@ -6429,6 +6524,25 @@ export declare type GetTaxRateListQuery = {
|
|
|
6429
6524
|
} & TaxRateFragment)>;
|
|
6430
6525
|
});
|
|
6431
6526
|
};
|
|
6527
|
+
export declare type GetTaxRateListSimpleQueryVariables = Exact<{
|
|
6528
|
+
options?: Maybe<TaxRateListOptions>;
|
|
6529
|
+
}>;
|
|
6530
|
+
export declare type GetTaxRateListSimpleQuery = {
|
|
6531
|
+
taxRates: ({
|
|
6532
|
+
__typename?: 'TaxRateList';
|
|
6533
|
+
} & Pick<TaxRateList, 'totalItems'> & {
|
|
6534
|
+
items: Array<({
|
|
6535
|
+
__typename?: 'TaxRate';
|
|
6536
|
+
} & Pick<TaxRate, 'id' | 'createdAt' | 'updatedAt' | 'name' | 'enabled' | 'value'> & {
|
|
6537
|
+
category: ({
|
|
6538
|
+
__typename?: 'TaxCategory';
|
|
6539
|
+
} & Pick<TaxCategory, 'id' | 'name'>);
|
|
6540
|
+
zone: ({
|
|
6541
|
+
__typename?: 'Zone';
|
|
6542
|
+
} & Pick<Zone, 'id' | 'name'>);
|
|
6543
|
+
})>;
|
|
6544
|
+
});
|
|
6545
|
+
};
|
|
6432
6546
|
export declare type GetTaxRateQueryVariables = Exact<{
|
|
6433
6547
|
id: Scalars['ID'];
|
|
6434
6548
|
}>;
|
|
@@ -6623,7 +6737,7 @@ export declare type UpdateGlobalSettingsMutation = {
|
|
|
6623
6737
|
};
|
|
6624
6738
|
declare type CustomFieldConfig_BooleanCustomFieldConfig_Fragment = ({
|
|
6625
6739
|
__typename?: 'BooleanCustomFieldConfig';
|
|
6626
|
-
} & Pick<BooleanCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6740
|
+
} & Pick<BooleanCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6627
6741
|
description?: Maybe<Array<({
|
|
6628
6742
|
__typename?: 'LocalizedString';
|
|
6629
6743
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6633,7 +6747,7 @@ declare type CustomFieldConfig_BooleanCustomFieldConfig_Fragment = ({
|
|
|
6633
6747
|
});
|
|
6634
6748
|
declare type CustomFieldConfig_DateTimeCustomFieldConfig_Fragment = ({
|
|
6635
6749
|
__typename?: 'DateTimeCustomFieldConfig';
|
|
6636
|
-
} & Pick<DateTimeCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6750
|
+
} & Pick<DateTimeCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6637
6751
|
description?: Maybe<Array<({
|
|
6638
6752
|
__typename?: 'LocalizedString';
|
|
6639
6753
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6643,7 +6757,7 @@ declare type CustomFieldConfig_DateTimeCustomFieldConfig_Fragment = ({
|
|
|
6643
6757
|
});
|
|
6644
6758
|
declare type CustomFieldConfig_FloatCustomFieldConfig_Fragment = ({
|
|
6645
6759
|
__typename?: 'FloatCustomFieldConfig';
|
|
6646
|
-
} & Pick<FloatCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6760
|
+
} & Pick<FloatCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6647
6761
|
description?: Maybe<Array<({
|
|
6648
6762
|
__typename?: 'LocalizedString';
|
|
6649
6763
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6653,7 +6767,7 @@ declare type CustomFieldConfig_FloatCustomFieldConfig_Fragment = ({
|
|
|
6653
6767
|
});
|
|
6654
6768
|
declare type CustomFieldConfig_IntCustomFieldConfig_Fragment = ({
|
|
6655
6769
|
__typename?: 'IntCustomFieldConfig';
|
|
6656
|
-
} & Pick<IntCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6770
|
+
} & Pick<IntCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6657
6771
|
description?: Maybe<Array<({
|
|
6658
6772
|
__typename?: 'LocalizedString';
|
|
6659
6773
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6663,7 +6777,7 @@ declare type CustomFieldConfig_IntCustomFieldConfig_Fragment = ({
|
|
|
6663
6777
|
});
|
|
6664
6778
|
declare type CustomFieldConfig_LocaleStringCustomFieldConfig_Fragment = ({
|
|
6665
6779
|
__typename?: 'LocaleStringCustomFieldConfig';
|
|
6666
|
-
} & Pick<LocaleStringCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6780
|
+
} & Pick<LocaleStringCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6667
6781
|
description?: Maybe<Array<({
|
|
6668
6782
|
__typename?: 'LocalizedString';
|
|
6669
6783
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6673,7 +6787,7 @@ declare type CustomFieldConfig_LocaleStringCustomFieldConfig_Fragment = ({
|
|
|
6673
6787
|
});
|
|
6674
6788
|
declare type CustomFieldConfig_RelationCustomFieldConfig_Fragment = ({
|
|
6675
6789
|
__typename?: 'RelationCustomFieldConfig';
|
|
6676
|
-
} & Pick<RelationCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6790
|
+
} & Pick<RelationCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6677
6791
|
description?: Maybe<Array<({
|
|
6678
6792
|
__typename?: 'LocalizedString';
|
|
6679
6793
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6683,7 +6797,7 @@ declare type CustomFieldConfig_RelationCustomFieldConfig_Fragment = ({
|
|
|
6683
6797
|
});
|
|
6684
6798
|
declare type CustomFieldConfig_StringCustomFieldConfig_Fragment = ({
|
|
6685
6799
|
__typename?: 'StringCustomFieldConfig';
|
|
6686
|
-
} & Pick<StringCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6800
|
+
} & Pick<StringCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6687
6801
|
description?: Maybe<Array<({
|
|
6688
6802
|
__typename?: 'LocalizedString';
|
|
6689
6803
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6693,7 +6807,7 @@ declare type CustomFieldConfig_StringCustomFieldConfig_Fragment = ({
|
|
|
6693
6807
|
});
|
|
6694
6808
|
declare type CustomFieldConfig_TextCustomFieldConfig_Fragment = ({
|
|
6695
6809
|
__typename?: 'TextCustomFieldConfig';
|
|
6696
|
-
} & Pick<TextCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable'> & {
|
|
6810
|
+
} & Pick<TextCustomFieldConfig, 'name' | 'type' | 'list' | 'readonly' | 'nullable' | 'ui'> & {
|
|
6697
6811
|
description?: Maybe<Array<({
|
|
6698
6812
|
__typename?: 'LocalizedString';
|
|
6699
6813
|
} & Pick<LocalizedString, 'languageCode' | 'value'>)>>;
|
|
@@ -6875,6 +6989,23 @@ export declare type GetServerConfigQuery = {
|
|
|
6875
6989
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
6876
6990
|
__typename?: 'TextCustomFieldConfig';
|
|
6877
6991
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
6992
|
+
Country: Array<({
|
|
6993
|
+
__typename?: 'StringCustomFieldConfig';
|
|
6994
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
6995
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
6996
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
6997
|
+
__typename?: 'IntCustomFieldConfig';
|
|
6998
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
6999
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7000
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7001
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7002
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7003
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7004
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7005
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7006
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7007
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7008
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
6878
7009
|
Customer: Array<({
|
|
6879
7010
|
__typename?: 'StringCustomFieldConfig';
|
|
6880
7011
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -6892,6 +7023,23 @@ export declare type GetServerConfigQuery = {
|
|
|
6892
7023
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
6893
7024
|
__typename?: 'TextCustomFieldConfig';
|
|
6894
7025
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7026
|
+
CustomerGroup: Array<({
|
|
7027
|
+
__typename?: 'StringCustomFieldConfig';
|
|
7028
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
7029
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
7030
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
7031
|
+
__typename?: 'IntCustomFieldConfig';
|
|
7032
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
7033
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7034
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7035
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7036
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7037
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7038
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7039
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7040
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7041
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7042
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
6895
7043
|
Facet: Array<({
|
|
6896
7044
|
__typename?: 'StringCustomFieldConfig';
|
|
6897
7045
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -6994,6 +7142,23 @@ export declare type GetServerConfigQuery = {
|
|
|
6994
7142
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
6995
7143
|
__typename?: 'TextCustomFieldConfig';
|
|
6996
7144
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7145
|
+
PaymentMethod: Array<({
|
|
7146
|
+
__typename?: 'StringCustomFieldConfig';
|
|
7147
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
7148
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
7149
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
7150
|
+
__typename?: 'IntCustomFieldConfig';
|
|
7151
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
7152
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7153
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7154
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7155
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7156
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7157
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7158
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7159
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7160
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7161
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
6997
7162
|
Product: Array<({
|
|
6998
7163
|
__typename?: 'StringCustomFieldConfig';
|
|
6999
7164
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -7062,6 +7227,23 @@ export declare type GetServerConfigQuery = {
|
|
|
7062
7227
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7063
7228
|
__typename?: 'TextCustomFieldConfig';
|
|
7064
7229
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7230
|
+
Promotion: 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)>;
|
|
7065
7247
|
ShippingMethod: Array<({
|
|
7066
7248
|
__typename?: 'StringCustomFieldConfig';
|
|
7067
7249
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -7079,6 +7261,40 @@ export declare type GetServerConfigQuery = {
|
|
|
7079
7261
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7080
7262
|
__typename?: 'TextCustomFieldConfig';
|
|
7081
7263
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7264
|
+
TaxCategory: 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)>;
|
|
7281
|
+
TaxRate: Array<({
|
|
7282
|
+
__typename?: 'StringCustomFieldConfig';
|
|
7283
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
7284
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
7285
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
7286
|
+
__typename?: 'IntCustomFieldConfig';
|
|
7287
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
7288
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7289
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7290
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7291
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7292
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7293
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7294
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7295
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7296
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7297
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7082
7298
|
User: Array<({
|
|
7083
7299
|
__typename?: 'StringCustomFieldConfig';
|
|
7084
7300
|
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
@@ -7096,6 +7312,23 @@ export declare type GetServerConfigQuery = {
|
|
|
7096
7312
|
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7097
7313
|
__typename?: 'TextCustomFieldConfig';
|
|
7098
7314
|
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7315
|
+
Zone: Array<({
|
|
7316
|
+
__typename?: 'StringCustomFieldConfig';
|
|
7317
|
+
} & CustomFields_StringCustomFieldConfig_Fragment) | ({
|
|
7318
|
+
__typename?: 'LocaleStringCustomFieldConfig';
|
|
7319
|
+
} & CustomFields_LocaleStringCustomFieldConfig_Fragment) | ({
|
|
7320
|
+
__typename?: 'IntCustomFieldConfig';
|
|
7321
|
+
} & CustomFields_IntCustomFieldConfig_Fragment) | ({
|
|
7322
|
+
__typename?: 'FloatCustomFieldConfig';
|
|
7323
|
+
} & CustomFields_FloatCustomFieldConfig_Fragment) | ({
|
|
7324
|
+
__typename?: 'BooleanCustomFieldConfig';
|
|
7325
|
+
} & CustomFields_BooleanCustomFieldConfig_Fragment) | ({
|
|
7326
|
+
__typename?: 'DateTimeCustomFieldConfig';
|
|
7327
|
+
} & CustomFields_DateTimeCustomFieldConfig_Fragment) | ({
|
|
7328
|
+
__typename?: 'RelationCustomFieldConfig';
|
|
7329
|
+
} & CustomFields_RelationCustomFieldConfig_Fragment) | ({
|
|
7330
|
+
__typename?: 'TextCustomFieldConfig';
|
|
7331
|
+
} & CustomFields_TextCustomFieldConfig_Fragment)>;
|
|
7099
7332
|
});
|
|
7100
7333
|
});
|
|
7101
7334
|
});
|
|
@@ -7494,6 +7727,14 @@ export declare namespace SetUiLanguage {
|
|
|
7494
7727
|
type Variables = SetUiLanguageMutationVariables;
|
|
7495
7728
|
type Mutation = SetUiLanguageMutation;
|
|
7496
7729
|
}
|
|
7730
|
+
export declare namespace SetUiLocale {
|
|
7731
|
+
type Variables = SetUiLocaleMutationVariables;
|
|
7732
|
+
type Mutation = SetUiLocaleMutation;
|
|
7733
|
+
}
|
|
7734
|
+
export declare namespace SetDisplayUiExtensionPoints {
|
|
7735
|
+
type Variables = SetDisplayUiExtensionPointsMutationVariables;
|
|
7736
|
+
type Mutation = SetDisplayUiExtensionPointsMutation;
|
|
7737
|
+
}
|
|
7497
7738
|
export declare namespace SetContentLanguage {
|
|
7498
7739
|
type Variables = SetContentLanguageMutationVariables;
|
|
7499
7740
|
type Mutation = SetContentLanguageMutation;
|
|
@@ -7597,6 +7838,9 @@ export declare namespace Customer {
|
|
|
7597
7838
|
type User = (NonNullable<CustomerFragment['user']>);
|
|
7598
7839
|
type Addresses = NonNullable<(NonNullable<CustomerFragment['addresses']>)[number]>;
|
|
7599
7840
|
}
|
|
7841
|
+
export declare namespace CustomerGroup {
|
|
7842
|
+
type Fragment = CustomerGroupFragment;
|
|
7843
|
+
}
|
|
7600
7844
|
export declare namespace GetCustomerList {
|
|
7601
7845
|
type Variables = GetCustomerListQueryVariables;
|
|
7602
7846
|
type Query = GetCustomerListQuery;
|
|
@@ -8378,6 +8622,14 @@ export declare namespace GetTaxRateList {
|
|
|
8378
8622
|
type TaxRates = (NonNullable<GetTaxRateListQuery['taxRates']>);
|
|
8379
8623
|
type Items = NonNullable<(NonNullable<(NonNullable<GetTaxRateListQuery['taxRates']>)['items']>)[number]>;
|
|
8380
8624
|
}
|
|
8625
|
+
export declare namespace GetTaxRateListSimple {
|
|
8626
|
+
type Variables = GetTaxRateListSimpleQueryVariables;
|
|
8627
|
+
type Query = GetTaxRateListSimpleQuery;
|
|
8628
|
+
type TaxRates = (NonNullable<GetTaxRateListSimpleQuery['taxRates']>);
|
|
8629
|
+
type Items = NonNullable<(NonNullable<(NonNullable<GetTaxRateListSimpleQuery['taxRates']>)['items']>)[number]>;
|
|
8630
|
+
type Category = (NonNullable<NonNullable<(NonNullable<(NonNullable<GetTaxRateListSimpleQuery['taxRates']>)['items']>)[number]>['category']>);
|
|
8631
|
+
type Zone = (NonNullable<NonNullable<(NonNullable<(NonNullable<GetTaxRateListSimpleQuery['taxRates']>)['items']>)[number]>['zone']>);
|
|
8632
|
+
}
|
|
8381
8633
|
export declare namespace GetTaxRate {
|
|
8382
8634
|
type Variables = GetTaxRateQueryVariables;
|
|
8383
8635
|
type Query = GetTaxRateQuery;
|
|
@@ -8557,19 +8809,26 @@ export declare namespace GetServerConfig {
|
|
|
8557
8809
|
type Asset = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Asset']>)[number]>;
|
|
8558
8810
|
type Channel = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Channel']>)[number]>;
|
|
8559
8811
|
type Collection = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Collection']>)[number]>;
|
|
8812
|
+
type Country = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Country']>)[number]>;
|
|
8560
8813
|
type Customer = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Customer']>)[number]>;
|
|
8814
|
+
type CustomerGroup = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['CustomerGroup']>)[number]>;
|
|
8561
8815
|
type Facet = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Facet']>)[number]>;
|
|
8562
8816
|
type FacetValue = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['FacetValue']>)[number]>;
|
|
8563
8817
|
type Fulfillment = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Fulfillment']>)[number]>;
|
|
8564
8818
|
type _GlobalSettings = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['GlobalSettings']>)[number]>;
|
|
8565
8819
|
type Order = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Order']>)[number]>;
|
|
8566
8820
|
type OrderLine = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['OrderLine']>)[number]>;
|
|
8821
|
+
type PaymentMethod = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['PaymentMethod']>)[number]>;
|
|
8567
8822
|
type Product = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Product']>)[number]>;
|
|
8568
8823
|
type ProductOption = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['ProductOption']>)[number]>;
|
|
8569
8824
|
type ProductOptionGroup = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['ProductOptionGroup']>)[number]>;
|
|
8570
8825
|
type ProductVariant = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['ProductVariant']>)[number]>;
|
|
8826
|
+
type Promotion = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Promotion']>)[number]>;
|
|
8571
8827
|
type ShippingMethod = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['ShippingMethod']>)[number]>;
|
|
8828
|
+
type TaxCategory = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['TaxCategory']>)[number]>;
|
|
8829
|
+
type TaxRate = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['TaxRate']>)[number]>;
|
|
8572
8830
|
type User = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['User']>)[number]>;
|
|
8831
|
+
type Zone = NonNullable<(NonNullable<(NonNullable<(NonNullable<(NonNullable<GetServerConfigQuery['globalSettings']>)['serverConfig']>)['customFieldConfig']>)['Zone']>)[number]>;
|
|
8573
8832
|
}
|
|
8574
8833
|
export declare namespace JobInfo {
|
|
8575
8834
|
type Fragment = JobInfoFragment;
|