|
@@ -42,7 +42,13 @@ export type Address = Node & {
|
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
|
defaultShippingAddress?: Maybe<Scalars['Boolean']>;
|
|
defaultShippingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
defaultBillingAddress?: Maybe<Scalars['Boolean']>;
|
|
defaultBillingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
- customFields?: Maybe<Scalars['JSON']>;
|
|
|
|
|
|
|
+ customFields?: Maybe<AddressCustomFields>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
|
|
+export type AddressCustomFields = {
|
|
|
|
|
+ __typename?: 'AddressCustomFields';
|
|
|
|
|
+ instructions?: Maybe<Scalars['String']>;
|
|
|
|
|
+ verified?: Maybe<Scalars['Boolean']>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
export type Adjustment = {
|
|
export type Adjustment = {
|
|
@@ -417,6 +423,11 @@ export type CountryTranslationInput = {
|
|
|
name?: Maybe<Scalars['String']>;
|
|
name?: Maybe<Scalars['String']>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type CreateAddressCustomFieldsInput = {
|
|
|
|
|
+ instructions?: Maybe<Scalars['String']>;
|
|
|
|
|
+ verified?: Maybe<Scalars['Boolean']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type CreateAddressInput = {
|
|
export type CreateAddressInput = {
|
|
|
fullName?: Maybe<Scalars['String']>;
|
|
fullName?: Maybe<Scalars['String']>;
|
|
|
company?: Maybe<Scalars['String']>;
|
|
company?: Maybe<Scalars['String']>;
|
|
@@ -429,7 +440,7 @@ export type CreateAddressInput = {
|
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
|
defaultShippingAddress?: Maybe<Scalars['Boolean']>;
|
|
defaultShippingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
defaultBillingAddress?: Maybe<Scalars['Boolean']>;
|
|
defaultBillingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
- customFields?: Maybe<Scalars['JSON']>;
|
|
|
|
|
|
|
+ customFields?: Maybe<CreateAddressCustomFieldsInput>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
export type CreateAdministratorInput = {
|
|
export type CreateAdministratorInput = {
|
|
@@ -2507,6 +2518,7 @@ export type OrderAddress = {
|
|
|
country?: Maybe<Scalars['String']>;
|
|
country?: Maybe<Scalars['String']>;
|
|
|
countryCode?: Maybe<Scalars['String']>;
|
|
countryCode?: Maybe<Scalars['String']>;
|
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
|
|
|
+ customFields?: Maybe<AddressCustomFields>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
export type OrderFilterParameter = {
|
|
export type OrderFilterParameter = {
|
|
@@ -3392,6 +3404,7 @@ export type SearchResultSortParameter = {
|
|
|
export type ServerConfig = {
|
|
export type ServerConfig = {
|
|
|
__typename?: 'ServerConfig';
|
|
__typename?: 'ServerConfig';
|
|
|
orderProcess: Array<OrderProcessState>;
|
|
orderProcess: Array<OrderProcessState>;
|
|
|
|
|
+ permittedAssetTypes: Array<Scalars['String']>;
|
|
|
customFieldConfig: CustomFields;
|
|
customFieldConfig: CustomFields;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
@@ -3610,6 +3623,11 @@ export type UiState = {
|
|
|
language: LanguageCode;
|
|
language: LanguageCode;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type UpdateAddressCustomFieldsInput = {
|
|
|
|
|
+ instructions?: Maybe<Scalars['String']>;
|
|
|
|
|
+ verified?: Maybe<Scalars['Boolean']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type UpdateAddressInput = {
|
|
export type UpdateAddressInput = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
fullName?: Maybe<Scalars['String']>;
|
|
fullName?: Maybe<Scalars['String']>;
|
|
@@ -3623,7 +3641,7 @@ export type UpdateAddressInput = {
|
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
|
defaultShippingAddress?: Maybe<Scalars['Boolean']>;
|
|
defaultShippingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
defaultBillingAddress?: Maybe<Scalars['Boolean']>;
|
|
defaultBillingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
- customFields?: Maybe<Scalars['JSON']>;
|
|
|
|
|
|
|
+ customFields?: Maybe<UpdateAddressCustomFieldsInput>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
export type UpdateAdministratorInput = {
|
|
export type UpdateAdministratorInput = {
|
|
@@ -6341,6 +6359,7 @@ export type GetServerConfigQuery = (
|
|
|
{ __typename?: 'GlobalSettings' }
|
|
{ __typename?: 'GlobalSettings' }
|
|
|
& { serverConfig: (
|
|
& { serverConfig: (
|
|
|
{ __typename?: 'ServerConfig' }
|
|
{ __typename?: 'ServerConfig' }
|
|
|
|
|
+ & Pick<ServerConfig, 'permittedAssetTypes'>
|
|
|
& { orderProcess: Array<(
|
|
& { orderProcess: Array<(
|
|
|
{ __typename?: 'OrderProcessState' }
|
|
{ __typename?: 'OrderProcessState' }
|
|
|
& Pick<OrderProcessState, 'name' | 'to'>
|
|
& Pick<OrderProcessState, 'name' | 'to'>
|