|
|
@@ -647,17 +647,13 @@ export type CreatePaymentMethodInput = {
|
|
|
handler: ConfigurableOperationInput;
|
|
|
};
|
|
|
|
|
|
-export type CreateProductCustomFieldsInput = {
|
|
|
- coffeeProfileWithMilk?: Maybe<Scalars['String']>;
|
|
|
-};
|
|
|
-
|
|
|
export type CreateProductInput = {
|
|
|
featuredAssetId?: Maybe<Scalars['ID']>;
|
|
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
|
assetIds?: Maybe<Array<Scalars['ID']>>;
|
|
|
facetValueIds?: Maybe<Array<Scalars['ID']>>;
|
|
|
translations: Array<ProductTranslationInput>;
|
|
|
- customFields?: Maybe<CreateProductCustomFieldsInput>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type CreateProductOptionGroupInput = {
|
|
|
@@ -1675,6 +1671,12 @@ export type Job = Node & {
|
|
|
attempts: Scalars['Int'];
|
|
|
};
|
|
|
|
|
|
+export type JobBufferSize = {
|
|
|
+ __typename?: 'JobBufferSize';
|
|
|
+ processorId: Scalars['String'];
|
|
|
+ size: Scalars['Int'];
|
|
|
+};
|
|
|
+
|
|
|
export type JobFilterParameter = {
|
|
|
createdAt?: Maybe<DateOperators>;
|
|
|
startedAt?: Maybe<DateOperators>;
|
|
|
@@ -2276,6 +2278,7 @@ export type Mutation = {
|
|
|
deleteTaxRate: DeletionResponse;
|
|
|
/** Delete a Zone */
|
|
|
deleteZone: DeletionResponse;
|
|
|
+ flushBufferedJobs: Success;
|
|
|
importProducts?: Maybe<ImportInfo>;
|
|
|
/** Authenticates the user using the native authentication strategy. This mutation is an alias for `authenticate({ native: { ... }})` */
|
|
|
login: NativeAuthenticationResult;
|
|
|
@@ -2679,6 +2682,11 @@ export type MutationDeleteZoneArgs = {
|
|
|
};
|
|
|
|
|
|
|
|
|
+export type MutationFlushBufferedJobsArgs = {
|
|
|
+ processorIds?: Maybe<Array<Scalars['String']>>;
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
export type MutationImportProductsArgs = {
|
|
|
csvFile: Scalars['Upload'];
|
|
|
};
|
|
|
@@ -3603,7 +3611,7 @@ export type Product = Node & {
|
|
|
facetValues: Array<FacetValue>;
|
|
|
translations: Array<ProductTranslation>;
|
|
|
collections: Array<Collection>;
|
|
|
- customFields?: Maybe<ProductCustomFields>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -3611,11 +3619,6 @@ export type ProductVariantListArgs = {
|
|
|
options?: Maybe<ProductVariantListOptions>;
|
|
|
};
|
|
|
|
|
|
-export type ProductCustomFields = {
|
|
|
- __typename?: 'ProductCustomFields';
|
|
|
- coffeeProfileWithMilk?: Maybe<Scalars['String']>;
|
|
|
-};
|
|
|
-
|
|
|
export type ProductFilterParameter = {
|
|
|
enabled?: Maybe<BooleanOperators>;
|
|
|
createdAt?: Maybe<DateOperators>;
|
|
|
@@ -3624,7 +3627,6 @@ export type ProductFilterParameter = {
|
|
|
name?: Maybe<StringOperators>;
|
|
|
slug?: Maybe<StringOperators>;
|
|
|
description?: Maybe<StringOperators>;
|
|
|
- coffeeProfileWithMilk?: Maybe<StringOperators>;
|
|
|
};
|
|
|
|
|
|
export type ProductList = PaginatedList & {
|
|
|
@@ -3714,7 +3716,6 @@ export type ProductSortParameter = {
|
|
|
name?: Maybe<SortOrder>;
|
|
|
slug?: Maybe<SortOrder>;
|
|
|
description?: Maybe<SortOrder>;
|
|
|
- coffeeProfileWithMilk?: Maybe<SortOrder>;
|
|
|
};
|
|
|
|
|
|
export type ProductTranslation = {
|
|
|
@@ -3920,6 +3921,7 @@ export type Query = {
|
|
|
fulfillmentHandlers: Array<ConfigurableOperationDefinition>;
|
|
|
globalSettings: GlobalSettings;
|
|
|
job?: Maybe<Job>;
|
|
|
+ jobBufferSize: Array<JobBufferSize>;
|
|
|
jobQueues: Array<JobQueue>;
|
|
|
jobs: JobList;
|
|
|
jobsById: Array<Job>;
|
|
|
@@ -4048,6 +4050,11 @@ export type QueryJobArgs = {
|
|
|
};
|
|
|
|
|
|
|
|
|
+export type QueryJobBufferSizeArgs = {
|
|
|
+ processorIds?: Maybe<Array<Scalars['String']>>;
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
export type QueryJobsArgs = {
|
|
|
options?: Maybe<JobListOptions>;
|
|
|
};
|
|
|
@@ -4941,10 +4948,6 @@ export type UpdatePaymentMethodInput = {
|
|
|
handler?: Maybe<ConfigurableOperationInput>;
|
|
|
};
|
|
|
|
|
|
-export type UpdateProductCustomFieldsInput = {
|
|
|
- coffeeProfileWithMilk?: Maybe<Scalars['String']>;
|
|
|
-};
|
|
|
-
|
|
|
export type UpdateProductInput = {
|
|
|
id: Scalars['ID'];
|
|
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
|
@@ -4952,7 +4955,7 @@ export type UpdateProductInput = {
|
|
|
assetIds?: Maybe<Array<Scalars['ID']>>;
|
|
|
facetValueIds?: Maybe<Array<Scalars['ID']>>;
|
|
|
translations?: Maybe<Array<ProductTranslationInput>>;
|
|
|
- customFields?: Maybe<UpdateProductCustomFieldsInput>;
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
export type UpdateProductOptionGroupInput = {
|