|
|
@@ -41,13 +41,7 @@ export type Address = Node & {
|
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
|
defaultShippingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
defaultBillingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
- customFields?: Maybe<AddressCustomFields>;
|
|
|
-};
|
|
|
-
|
|
|
-export type AddressCustomFields = {
|
|
|
- __typename?: 'AddressCustomFields';
|
|
|
- instructions?: Maybe<Scalars['String']>;
|
|
|
- verified?: Maybe<Scalars['Boolean']>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type Adjustment = {
|
|
|
@@ -422,11 +416,6 @@ export type CountryTranslationInput = {
|
|
|
name?: Maybe<Scalars['String']>;
|
|
|
};
|
|
|
|
|
|
-export type CreateAddressCustomFieldsInput = {
|
|
|
- instructions?: Maybe<Scalars['String']>;
|
|
|
- verified?: Maybe<Scalars['Boolean']>;
|
|
|
-};
|
|
|
-
|
|
|
export type CreateAddressInput = {
|
|
|
fullName?: Maybe<Scalars['String']>;
|
|
|
company?: Maybe<Scalars['String']>;
|
|
|
@@ -439,7 +428,7 @@ export type CreateAddressInput = {
|
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
|
defaultShippingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
defaultBillingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
- customFields?: Maybe<CreateAddressCustomFieldsInput>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type CreateAdministratorInput = {
|
|
|
@@ -2390,7 +2379,6 @@ export type OrderAddress = {
|
|
|
country?: Maybe<Scalars['String']>;
|
|
|
countryCode?: Maybe<Scalars['String']>;
|
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
|
- customFields?: Maybe<AddressCustomFields>;
|
|
|
};
|
|
|
|
|
|
export type OrderFilterParameter = {
|
|
|
@@ -3450,11 +3438,6 @@ export type TestShippingMethodResult = {
|
|
|
quote?: Maybe<TestShippingMethodQuote>;
|
|
|
};
|
|
|
|
|
|
-export type UpdateAddressCustomFieldsInput = {
|
|
|
- instructions?: Maybe<Scalars['String']>;
|
|
|
- verified?: Maybe<Scalars['Boolean']>;
|
|
|
-};
|
|
|
-
|
|
|
export type UpdateAddressInput = {
|
|
|
id: Scalars['ID'];
|
|
|
fullName?: Maybe<Scalars['String']>;
|
|
|
@@ -3468,7 +3451,7 @@ export type UpdateAddressInput = {
|
|
|
phoneNumber?: Maybe<Scalars['String']>;
|
|
|
defaultShippingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
defaultBillingAddress?: Maybe<Scalars['Boolean']>;
|
|
|
- customFields?: Maybe<UpdateAddressCustomFieldsInput>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type UpdateAdministratorInput = {
|