diff --git a/schema.graphql b/schema.graphql index a8fc663de..f67636b9f 100644 --- a/schema.graphql +++ b/schema.graphql @@ -479,6 +479,7 @@ input AttributeFilterInput { filterableInStorefront: Boolean filterableInDashboard: Boolean availableInGrid: Boolean + metadata: [MetadataInput] search: String ids: [ID] type: AttributeTypeEnum @@ -571,6 +572,7 @@ type AttributeValue implements Node { id: ID! name: String slug: String + value: String translation(languageCode: LanguageCodeEnum!): AttributeValueTranslation inputType: AttributeInputTypeEnum reference: ID @@ -592,6 +594,7 @@ type AttributeValueCreate { input AttributeValueCreateInput { name: String! + value: String } type AttributeValueDelete { @@ -717,6 +720,7 @@ type CategoryDelete { input CategoryFilterInput { search: String + metadata: [MetadataInput] ids: [ID] } @@ -1070,7 +1074,7 @@ type CollectionAddProducts { type CollectionBulkDelete { errors: [Error!]! @deprecated(reason: "Use typed errors with error codes. This field will be removed after 2020-07-31.") count: Int! - productErrors: [ProductError!]! + collectionErrors: [CollectionError!]! } type CollectionChannelListing implements Node { @@ -1155,6 +1159,7 @@ enum CollectionErrorCode { input CollectionFilterInput { published: CollectionPublished search: String + metadata: [MetadataInput] ids: [ID] channel: String } @@ -2426,6 +2431,7 @@ enum MenuErrorCode { input MenuFilterInput { search: String slug: [String] + metadata: [MetadataInput] } input MenuInput { @@ -2490,6 +2496,7 @@ type MenuItemDelete { input MenuItemFilterInput { search: String + metadata: [MetadataInput] } input MenuItemInput { @@ -3034,6 +3041,7 @@ input OrderDraftFilterInput { customer: String created: DateRangeInput search: String + metadata: [MetadataInput] channels: [ID] } @@ -3191,6 +3199,7 @@ input OrderFilterInput { customer: String created: DateRangeInput search: String + metadata: [MetadataInput] channels: [ID] } @@ -3494,6 +3503,7 @@ enum PageErrorCode { input PageFilterInput { search: String + metadata: [MetadataInput] } type PageInfo { @@ -3726,6 +3736,10 @@ enum PaymentErrorCode { NOT_SUPPORTED_GATEWAY } +input PaymentFilterInput { + checkouts: [ID] +} + type PaymentGateway { name: String! id: ID! @@ -3957,7 +3971,7 @@ type Product implements Node & ObjectWithMetadata { mediaById(id: ID): ProductMedia! imageById(id: ID): ProductImage @deprecated(reason: "Will be removed in Saleor 4.0. Use the `mediaById` field instead.") variants: [ProductVariant] - media: [ProductMedia] + media: [ProductMedia!] images: [ProductImage] @deprecated(reason: "Will be removed in Saleor 4.0. Use the `media` field instead.") collections: [Collection] translation(languageCode: LanguageCodeEnum!): ProductTranslation @@ -4127,6 +4141,7 @@ input ProductFilterInput { productType: ID stocks: ProductStockFilterInput search: String + metadata: [MetadataInput] price: PriceRangeInput minimalPrice: PriceRangeInput productTypes: [ID] @@ -4341,6 +4356,7 @@ input ProductTypeFilterInput { search: String configurable: ProductTypeConfigurable productType: ProductTypeEnum + metadata: [MetadataInput] ids: [ID] } @@ -4486,6 +4502,7 @@ type ProductVariantDelete { input ProductVariantFilterInput { search: String sku: [String] + metadata: [MetadataInput] } input ProductVariantInput { @@ -4590,7 +4607,7 @@ type Query { productVariants(ids: [ID], channel: String, filter: ProductVariantFilterInput, before: String, after: String, first: Int, last: Int): ProductVariantCountableConnection reportProductSales(period: ReportingPeriod!, channel: String!, before: String, after: String, first: Int, last: Int): ProductVariantCountableConnection payment(id: ID!): Payment - payments(before: String, after: String, first: Int, last: Int): PaymentCountableConnection + payments(filter: PaymentFilterInput, before: String, after: String, first: Int, last: Int): PaymentCountableConnection page(id: ID, slug: String): Page pages(sortBy: PageSortingInput, filter: PageFilterInput, before: String, after: String, first: Int, last: Int): PageCountableConnection pageType(id: ID!): PageType @@ -5359,23 +5376,11 @@ type Transaction implements Node { token: String! kind: TransactionKind! isSuccess: Boolean! - error: TransactionError + error: String + gatewayResponse: JSONString! amount: Money } -enum TransactionError { - TRANSACTIONERROR_INCORRECT_NUMBER - TRANSACTIONERROR_INVALID_NUMBER - TRANSACTIONERROR_INCORRECT_CVV - TRANSACTIONERROR_INVALID_CVV - TRANSACTIONERROR_INCORRECT_ZIP - TRANSACTIONERROR_INCORRECT_ADDRESS - TRANSACTIONERROR_INVALID_EXPIRY_DATE - TRANSACTIONERROR_EXPIRED - TRANSACTIONERROR_PROCESSING_ERROR - TRANSACTIONERROR_DECLINED -} - enum TransactionKind { EXTERNAL AUTH diff --git a/src/apps/types/App.ts b/src/apps/types/App.ts index 833e8d218..6a39786a6 100644 --- a/src/apps/types/App.ts +++ b/src/apps/types/App.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppTypeEnum, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppActivate.ts b/src/apps/types/AppActivate.ts index d4bae0f7a..e4bfa8c82 100644 --- a/src/apps/types/AppActivate.ts +++ b/src/apps/types/AppActivate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppCreate.ts b/src/apps/types/AppCreate.ts index a3cb7cb0f..8eb7f4613 100644 --- a/src/apps/types/AppCreate.ts +++ b/src/apps/types/AppCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppInput, AppTypeEnum, AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppDeactivate.ts b/src/apps/types/AppDeactivate.ts index f391ecb2a..1b6468ffe 100644 --- a/src/apps/types/AppDeactivate.ts +++ b/src/apps/types/AppDeactivate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppDelete.ts b/src/apps/types/AppDelete.ts index af2a28456..862a0007d 100644 --- a/src/apps/types/AppDelete.ts +++ b/src/apps/types/AppDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppTypeEnum, AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppDeleteFailedInstallation.ts b/src/apps/types/AppDeleteFailedInstallation.ts index 70dd4860f..21c442aad 100644 --- a/src/apps/types/AppDeleteFailedInstallation.ts +++ b/src/apps/types/AppDeleteFailedInstallation.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { JobStatusEnum, AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppFetch.ts b/src/apps/types/AppFetch.ts index 3b09b98c4..d9e213975 100644 --- a/src/apps/types/AppFetch.ts +++ b/src/apps/types/AppFetch.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum, AppErrorCode } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppInstall.ts b/src/apps/types/AppInstall.ts index 4952ab004..b97e16abf 100644 --- a/src/apps/types/AppInstall.ts +++ b/src/apps/types/AppInstall.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppInstallInput, JobStatusEnum, AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppRetryInstall.ts b/src/apps/types/AppRetryInstall.ts index 31b8dd049..53244caae 100644 --- a/src/apps/types/AppRetryInstall.ts +++ b/src/apps/types/AppRetryInstall.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { JobStatusEnum, AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppTokenCreate.ts b/src/apps/types/AppTokenCreate.ts index 008e74772..c673ab54b 100644 --- a/src/apps/types/AppTokenCreate.ts +++ b/src/apps/types/AppTokenCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppTokenInput, AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppTokenDelete.ts b/src/apps/types/AppTokenDelete.ts index 53bc8e02b..8e69c404e 100644 --- a/src/apps/types/AppTokenDelete.ts +++ b/src/apps/types/AppTokenDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppUpdate.ts b/src/apps/types/AppUpdate.ts index a27a4f3c3..446681c21 100644 --- a/src/apps/types/AppUpdate.ts +++ b/src/apps/types/AppUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppInput, AppTypeEnum, PermissionEnum, AppErrorCode } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppsInstallations.ts b/src/apps/types/AppsInstallations.ts index 93c0aff2d..27e34298c 100644 --- a/src/apps/types/AppsInstallations.ts +++ b/src/apps/types/AppsInstallations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/apps/types/AppsList.ts b/src/apps/types/AppsList.ts index 00a127bae..5c331faf1 100644 --- a/src/apps/types/AppsList.ts +++ b/src/apps/types/AppsList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppSortingInput, AppFilterInput, AppTypeEnum } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeBulkDelete.ts b/src/attributes/types/AttributeBulkDelete.ts index 590e75444..f4eefc0d0 100644 --- a/src/attributes/types/AttributeBulkDelete.ts +++ b/src/attributes/types/AttributeBulkDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeErrorCode } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeCreate.ts b/src/attributes/types/AttributeCreate.ts index 57cd97040..e27c3054b 100644 --- a/src/attributes/types/AttributeCreate.ts +++ b/src/attributes/types/AttributeCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeCreateInput, AttributeTypeEnum, AttributeInputTypeEnum, AttributeEntityTypeEnum, AttributeErrorCode } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeDelete.ts b/src/attributes/types/AttributeDelete.ts index 5142f59e3..ec813a270 100644 --- a/src/attributes/types/AttributeDelete.ts +++ b/src/attributes/types/AttributeDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeErrorCode } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeDetails.ts b/src/attributes/types/AttributeDetails.ts index 697cae1e8..32bfb334d 100644 --- a/src/attributes/types/AttributeDetails.ts +++ b/src/attributes/types/AttributeDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeTypeEnum, AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeList.ts b/src/attributes/types/AttributeList.ts index 80ba7cd17..48674537d 100644 --- a/src/attributes/types/AttributeList.ts +++ b/src/attributes/types/AttributeList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeFilterInput, AttributeSortingInput, AttributeTypeEnum } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeUpdate.ts b/src/attributes/types/AttributeUpdate.ts index cb382330d..9cdf5d4c2 100644 --- a/src/attributes/types/AttributeUpdate.ts +++ b/src/attributes/types/AttributeUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeUpdateInput, AttributeTypeEnum, AttributeInputTypeEnum, AttributeEntityTypeEnum, AttributeErrorCode } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeValueCreate.ts b/src/attributes/types/AttributeValueCreate.ts index 40ad076ee..ee850ebb9 100644 --- a/src/attributes/types/AttributeValueCreate.ts +++ b/src/attributes/types/AttributeValueCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeValueCreateInput, AttributeTypeEnum, AttributeInputTypeEnum, AttributeEntityTypeEnum, AttributeErrorCode } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeValueDelete.ts b/src/attributes/types/AttributeValueDelete.ts index 9894ac6df..cc6c1accf 100644 --- a/src/attributes/types/AttributeValueDelete.ts +++ b/src/attributes/types/AttributeValueDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeTypeEnum, AttributeInputTypeEnum, AttributeEntityTypeEnum, AttributeErrorCode } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeValueReorder.ts b/src/attributes/types/AttributeValueReorder.ts index deaf9229d..f5305e6c6 100644 --- a/src/attributes/types/AttributeValueReorder.ts +++ b/src/attributes/types/AttributeValueReorder.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ReorderInput, AttributeErrorCode } from "./../../types/globalTypes"; diff --git a/src/attributes/types/AttributeValueUpdate.ts b/src/attributes/types/AttributeValueUpdate.ts index 9b57fa9cf..1e3de5352 100644 --- a/src/attributes/types/AttributeValueUpdate.ts +++ b/src/attributes/types/AttributeValueUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeValueCreateInput, AttributeTypeEnum, AttributeInputTypeEnum, AttributeEntityTypeEnum, AttributeErrorCode } from "./../../types/globalTypes"; diff --git a/src/auth/types/AvailableExternalAuthentications.ts b/src/auth/types/AvailableExternalAuthentications.ts index 886830ab0..eecda7c0d 100644 --- a/src/auth/types/AvailableExternalAuthentications.ts +++ b/src/auth/types/AvailableExternalAuthentications.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/auth/types/ExternalAuthenticationUrl.ts b/src/auth/types/ExternalAuthenticationUrl.ts index 1fb2fd723..23f920d72 100644 --- a/src/auth/types/ExternalAuthenticationUrl.ts +++ b/src/auth/types/ExternalAuthenticationUrl.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/auth/types/ExternalObtainAccessTokens.ts b/src/auth/types/ExternalObtainAccessTokens.ts index 8497ab2b8..b75ea0660 100644 --- a/src/auth/types/ExternalObtainAccessTokens.ts +++ b/src/auth/types/ExternalObtainAccessTokens.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum, AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/auth/types/ExternalRefreshToken.ts b/src/auth/types/ExternalRefreshToken.ts index 2c2822403..291f339c6 100644 --- a/src/auth/types/ExternalRefreshToken.ts +++ b/src/auth/types/ExternalRefreshToken.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/auth/types/ExternalVerifyToken.ts b/src/auth/types/ExternalVerifyToken.ts index 8e2851aed..7a7ee5d52 100644 --- a/src/auth/types/ExternalVerifyToken.ts +++ b/src/auth/types/ExternalVerifyToken.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/auth/types/RefreshToken.ts b/src/auth/types/RefreshToken.ts index f4efc60fd..b7af12a9b 100644 --- a/src/auth/types/RefreshToken.ts +++ b/src/auth/types/RefreshToken.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/auth/types/RequestPasswordReset.ts b/src/auth/types/RequestPasswordReset.ts index 87ba8684a..97701fd50 100644 --- a/src/auth/types/RequestPasswordReset.ts +++ b/src/auth/types/RequestPasswordReset.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/auth/types/SetPassword.ts b/src/auth/types/SetPassword.ts index 2a1d539c8..23881edeb 100644 --- a/src/auth/types/SetPassword.ts +++ b/src/auth/types/SetPassword.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/auth/types/TokenAuth.ts b/src/auth/types/TokenAuth.ts index 07272b217..e0a4cf1cd 100644 --- a/src/auth/types/TokenAuth.ts +++ b/src/auth/types/TokenAuth.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/auth/types/VerifyToken.ts b/src/auth/types/VerifyToken.ts index 06934e963..060b470cc 100644 --- a/src/auth/types/VerifyToken.ts +++ b/src/auth/types/VerifyToken.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/categories/types/CategoryBulkDelete.ts b/src/categories/types/CategoryBulkDelete.ts index 9009acdcd..a48f804d2 100644 --- a/src/categories/types/CategoryBulkDelete.ts +++ b/src/categories/types/CategoryBulkDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/categories/types/CategoryCreate.ts b/src/categories/types/CategoryCreate.ts index b1d7643e8..822afaa4b 100644 --- a/src/categories/types/CategoryCreate.ts +++ b/src/categories/types/CategoryCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CategoryInput, ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/categories/types/CategoryDelete.ts b/src/categories/types/CategoryDelete.ts index 0b7fda57d..f227675bb 100644 --- a/src/categories/types/CategoryDelete.ts +++ b/src/categories/types/CategoryDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/categories/types/CategoryDetails.ts b/src/categories/types/CategoryDetails.ts index d4a4306a0..754339a8c 100644 --- a/src/categories/types/CategoryDetails.ts +++ b/src/categories/types/CategoryDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/categories/types/CategoryUpdate.ts b/src/categories/types/CategoryUpdate.ts index f45c6ca68..a539007df 100644 --- a/src/categories/types/CategoryUpdate.ts +++ b/src/categories/types/CategoryUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CategoryInput, ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/categories/types/RootCategories.ts b/src/categories/types/RootCategories.ts index 5811b4f71..4aa272adc 100644 --- a/src/categories/types/RootCategories.ts +++ b/src/categories/types/RootCategories.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CategoryFilterInput, CategorySortingInput } from "./../../types/globalTypes"; diff --git a/src/channels/types/BaseChannels.ts b/src/channels/types/BaseChannels.ts index aa43e7ac1..774060e40 100644 --- a/src/channels/types/BaseChannels.ts +++ b/src/channels/types/BaseChannels.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/channels/types/Channel.ts b/src/channels/types/Channel.ts index e5614b134..eaebfe162 100644 --- a/src/channels/types/Channel.ts +++ b/src/channels/types/Channel.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/channels/types/ChannelActivate.ts b/src/channels/types/ChannelActivate.ts index 4de493d03..ec2c451fb 100644 --- a/src/channels/types/ChannelActivate.ts +++ b/src/channels/types/ChannelActivate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ChannelErrorCode } from "./../../types/globalTypes"; diff --git a/src/channels/types/ChannelCreate.ts b/src/channels/types/ChannelCreate.ts index 64ba7b111..bb6b70d1a 100644 --- a/src/channels/types/ChannelCreate.ts +++ b/src/channels/types/ChannelCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ChannelCreateInput, ChannelErrorCode } from "./../../types/globalTypes"; diff --git a/src/channels/types/ChannelDeactivate.ts b/src/channels/types/ChannelDeactivate.ts index d7f58e281..e99f790d7 100644 --- a/src/channels/types/ChannelDeactivate.ts +++ b/src/channels/types/ChannelDeactivate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ChannelErrorCode } from "./../../types/globalTypes"; diff --git a/src/channels/types/ChannelDelete.ts b/src/channels/types/ChannelDelete.ts index 6e52a7130..541ca5186 100644 --- a/src/channels/types/ChannelDelete.ts +++ b/src/channels/types/ChannelDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ChannelDeleteInput, ChannelErrorCode } from "./../../types/globalTypes"; diff --git a/src/channels/types/ChannelUpdate.ts b/src/channels/types/ChannelUpdate.ts index 911ba7565..2380a32e9 100644 --- a/src/channels/types/ChannelUpdate.ts +++ b/src/channels/types/ChannelUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ChannelUpdateInput, ChannelErrorCode } from "./../../types/globalTypes"; diff --git a/src/channels/types/Channels.ts b/src/channels/types/Channels.ts index 6b231deff..4a6c2418c 100644 --- a/src/channels/types/Channels.ts +++ b/src/channels/types/Channels.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/collections/mutations.ts b/src/collections/mutations.ts index bbf5ba059..f88a0f7e2 100644 --- a/src/collections/mutations.ts +++ b/src/collections/mutations.ts @@ -8,8 +8,7 @@ import { } from "@saleor/fragments/collections"; import { collectionChannelListingErrorFragment, - collectionsErrorFragment, - productErrorFragment + collectionsErrorFragment } from "@saleor/fragments/errors"; import makeMutation from "@saleor/hooks/makeMutation"; import gql from "graphql-tag"; @@ -181,11 +180,11 @@ export const useUnassignCollectionProductMutation = makeMutation< >(unassignCollectionProduct); const collectionBulkDelete = gql` - ${productErrorFragment} + ${collectionsErrorFragment} mutation CollectionBulkDelete($ids: [ID]!) { collectionBulkDelete(ids: $ids) { - errors: productErrors { - ...ProductErrorFragment + errors: collectionErrors { + ...CollectionErrorFragment } } } diff --git a/src/collections/types/CollectionAssignProduct.ts b/src/collections/types/CollectionAssignProduct.ts index 9215a4d02..383b9030c 100644 --- a/src/collections/types/CollectionAssignProduct.ts +++ b/src/collections/types/CollectionAssignProduct.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CollectionErrorCode } from "./../../types/globalTypes"; diff --git a/src/collections/types/CollectionBulkDelete.ts b/src/collections/types/CollectionBulkDelete.ts index 0214b943f..7a093ed40 100644 --- a/src/collections/types/CollectionBulkDelete.ts +++ b/src/collections/types/CollectionBulkDelete.ts @@ -1,16 +1,17 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. -import { ProductErrorCode } from "./../../types/globalTypes"; +import { CollectionErrorCode } from "./../../types/globalTypes"; // ==================================================== // GraphQL mutation operation: CollectionBulkDelete // ==================================================== export interface CollectionBulkDelete_collectionBulkDelete_errors { - __typename: "ProductError"; - code: ProductErrorCode; + __typename: "CollectionError"; + code: CollectionErrorCode; field: string | null; } diff --git a/src/collections/types/CollectionChannelListingUpdate.ts b/src/collections/types/CollectionChannelListingUpdate.ts index 18c064b81..aa2993e5d 100644 --- a/src/collections/types/CollectionChannelListingUpdate.ts +++ b/src/collections/types/CollectionChannelListingUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CollectionChannelListingUpdateInput, ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/collections/types/CollectionDetails.ts b/src/collections/types/CollectionDetails.ts index 2b31df0ad..0804a66ca 100644 --- a/src/collections/types/CollectionDetails.ts +++ b/src/collections/types/CollectionDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/collections/types/CollectionList.ts b/src/collections/types/CollectionList.ts index 6dabfda67..cb5ceca50 100644 --- a/src/collections/types/CollectionList.ts +++ b/src/collections/types/CollectionList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CollectionFilterInput, CollectionSortingInput } from "./../../types/globalTypes"; diff --git a/src/collections/types/CollectionUpdate.ts b/src/collections/types/CollectionUpdate.ts index 45218fa1b..3c619037a 100644 --- a/src/collections/types/CollectionUpdate.ts +++ b/src/collections/types/CollectionUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CollectionInput, CollectionErrorCode } from "./../../types/globalTypes"; diff --git a/src/collections/types/CreateCollection.ts b/src/collections/types/CreateCollection.ts index 208bfbcef..54a086997 100644 --- a/src/collections/types/CreateCollection.ts +++ b/src/collections/types/CreateCollection.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CollectionCreateInput, CollectionErrorCode } from "./../../types/globalTypes"; diff --git a/src/collections/types/RemoveCollection.ts b/src/collections/types/RemoveCollection.ts index 477b3a312..06463029e 100644 --- a/src/collections/types/RemoveCollection.ts +++ b/src/collections/types/RemoveCollection.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CollectionErrorCode } from "./../../types/globalTypes"; diff --git a/src/collections/types/UnassignCollectionProduct.ts b/src/collections/types/UnassignCollectionProduct.ts index 538206d56..2b2eb161b 100644 --- a/src/collections/types/UnassignCollectionProduct.ts +++ b/src/collections/types/UnassignCollectionProduct.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CollectionErrorCode } from "./../../types/globalTypes"; diff --git a/src/components/Navigator/queries/types/CheckIfOrderExists.ts b/src/components/Navigator/queries/types/CheckIfOrderExists.ts index ef91ee35e..2f8b0d4f2 100644 --- a/src/components/Navigator/queries/types/CheckIfOrderExists.ts +++ b/src/components/Navigator/queries/types/CheckIfOrderExists.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderStatus } from "./../../../../types/globalTypes"; diff --git a/src/components/Navigator/queries/types/SearchCatalog.ts b/src/components/Navigator/queries/types/SearchCatalog.ts index d1badceea..750568b3a 100644 --- a/src/components/Navigator/queries/types/SearchCatalog.ts +++ b/src/components/Navigator/queries/types/SearchCatalog.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/components/Shop/types/ShopInfo.ts b/src/components/Shop/types/ShopInfo.ts index ed0a6726d..89ee0ccdb 100644 --- a/src/components/Shop/types/ShopInfo.ts +++ b/src/components/Shop/types/ShopInfo.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WeightUnitsEnum, LanguageCodeEnum, PermissionEnum } from "./../../../types/globalTypes"; diff --git a/src/containers/BackgroundTasks/types/CheckExportFileStatus.ts b/src/containers/BackgroundTasks/types/CheckExportFileStatus.ts index 210e7e474..7c4f6b581 100644 --- a/src/containers/BackgroundTasks/types/CheckExportFileStatus.ts +++ b/src/containers/BackgroundTasks/types/CheckExportFileStatus.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { JobStatusEnum } from "./../../../types/globalTypes"; diff --git a/src/containers/BackgroundTasks/types/CheckOrderInvoicesStatus.ts b/src/containers/BackgroundTasks/types/CheckOrderInvoicesStatus.ts index 848f69b04..502ceb521 100644 --- a/src/containers/BackgroundTasks/types/CheckOrderInvoicesStatus.ts +++ b/src/containers/BackgroundTasks/types/CheckOrderInvoicesStatus.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { JobStatusEnum } from "./../../../types/globalTypes"; diff --git a/src/customers/types/BulkRemoveCustomers.ts b/src/customers/types/BulkRemoveCustomers.ts index 206900f35..ebaf85ab3 100644 --- a/src/customers/types/BulkRemoveCustomers.ts +++ b/src/customers/types/BulkRemoveCustomers.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/customers/types/CreateCustomer.ts b/src/customers/types/CreateCustomer.ts index 6b75e5d8d..187a7a584 100644 --- a/src/customers/types/CreateCustomer.ts +++ b/src/customers/types/CreateCustomer.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { UserCreateInput, AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/customers/types/CreateCustomerAddress.ts b/src/customers/types/CreateCustomerAddress.ts index 5ffafaee9..50a60f156 100644 --- a/src/customers/types/CreateCustomerAddress.ts +++ b/src/customers/types/CreateCustomerAddress.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AddressInput, AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/customers/types/CustomerAddresses.ts b/src/customers/types/CustomerAddresses.ts index b95d46a28..7ba0921e6 100644 --- a/src/customers/types/CustomerAddresses.ts +++ b/src/customers/types/CustomerAddresses.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/customers/types/CustomerCreateData.ts b/src/customers/types/CustomerCreateData.ts index a6e641a56..f1c8afe26 100644 --- a/src/customers/types/CustomerCreateData.ts +++ b/src/customers/types/CustomerCreateData.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/customers/types/CustomerDetails.ts b/src/customers/types/CustomerDetails.ts index 89532aa61..2645c09b9 100644 --- a/src/customers/types/CustomerDetails.ts +++ b/src/customers/types/CustomerDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PaymentChargeStatusEnum } from "./../../types/globalTypes"; diff --git a/src/customers/types/ListCustomers.ts b/src/customers/types/ListCustomers.ts index 29f19197f..f16acb87f 100644 --- a/src/customers/types/ListCustomers.ts +++ b/src/customers/types/ListCustomers.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CustomerFilterInput, UserSortingInput } from "./../../types/globalTypes"; diff --git a/src/customers/types/RemoveCustomer.ts b/src/customers/types/RemoveCustomer.ts index ceaddf38a..6217b2034 100644 --- a/src/customers/types/RemoveCustomer.ts +++ b/src/customers/types/RemoveCustomer.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/customers/types/RemoveCustomerAddress.ts b/src/customers/types/RemoveCustomerAddress.ts index 4d1769f49..64833f9a9 100644 --- a/src/customers/types/RemoveCustomerAddress.ts +++ b/src/customers/types/RemoveCustomerAddress.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/customers/types/SetCustomerDefaultAddress.ts b/src/customers/types/SetCustomerDefaultAddress.ts index af2058f60..c53179a61 100644 --- a/src/customers/types/SetCustomerDefaultAddress.ts +++ b/src/customers/types/SetCustomerDefaultAddress.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AddressTypeEnum, AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/customers/types/UpdateCustomer.ts b/src/customers/types/UpdateCustomer.ts index 500a0c01c..c62a7f8b6 100644 --- a/src/customers/types/UpdateCustomer.ts +++ b/src/customers/types/UpdateCustomer.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CustomerInput, AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/customers/types/UpdateCustomerAddress.ts b/src/customers/types/UpdateCustomerAddress.ts index e62b464a1..da56ad532 100644 --- a/src/customers/types/UpdateCustomerAddress.ts +++ b/src/customers/types/UpdateCustomerAddress.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AddressInput, AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/discounts/types/SaleBulkDelete.ts b/src/discounts/types/SaleBulkDelete.ts index ce1450c1e..56e0b2a7c 100644 --- a/src/discounts/types/SaleBulkDelete.ts +++ b/src/discounts/types/SaleBulkDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/discounts/types/SaleCataloguesAdd.ts b/src/discounts/types/SaleCataloguesAdd.ts index 76737781d..f8bc91347 100644 --- a/src/discounts/types/SaleCataloguesAdd.ts +++ b/src/discounts/types/SaleCataloguesAdd.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CatalogueInput, DiscountErrorCode, SaleType } from "./../../types/globalTypes"; diff --git a/src/discounts/types/SaleCataloguesRemove.ts b/src/discounts/types/SaleCataloguesRemove.ts index ebeb94f63..2b65a11d1 100644 --- a/src/discounts/types/SaleCataloguesRemove.ts +++ b/src/discounts/types/SaleCataloguesRemove.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CatalogueInput, DiscountErrorCode, SaleType } from "./../../types/globalTypes"; diff --git a/src/discounts/types/SaleChannelListingUpdate.ts b/src/discounts/types/SaleChannelListingUpdate.ts index 69a5b3cd3..74fc26c56 100644 --- a/src/discounts/types/SaleChannelListingUpdate.ts +++ b/src/discounts/types/SaleChannelListingUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { SaleChannelListingInput, DiscountErrorCode, SaleType } from "./../../types/globalTypes"; diff --git a/src/discounts/types/SaleCreate.ts b/src/discounts/types/SaleCreate.ts index 8ff85873f..48b81303e 100644 --- a/src/discounts/types/SaleCreate.ts +++ b/src/discounts/types/SaleCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { SaleInput, DiscountErrorCode, SaleType } from "./../../types/globalTypes"; diff --git a/src/discounts/types/SaleDelete.ts b/src/discounts/types/SaleDelete.ts index d15d3a7b0..09d3025b9 100644 --- a/src/discounts/types/SaleDelete.ts +++ b/src/discounts/types/SaleDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DiscountErrorCode } from "./../../types/globalTypes"; diff --git a/src/discounts/types/SaleDetails.ts b/src/discounts/types/SaleDetails.ts index 66ffb4284..8290263ac 100644 --- a/src/discounts/types/SaleDetails.ts +++ b/src/discounts/types/SaleDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { SaleType } from "./../../types/globalTypes"; diff --git a/src/discounts/types/SaleList.ts b/src/discounts/types/SaleList.ts index 5d7b57ff2..cb60d72cc 100644 --- a/src/discounts/types/SaleList.ts +++ b/src/discounts/types/SaleList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { SaleFilterInput, SaleSortingInput, SaleType } from "./../../types/globalTypes"; diff --git a/src/discounts/types/SaleUpdate.ts b/src/discounts/types/SaleUpdate.ts index ef6098092..e8420069c 100644 --- a/src/discounts/types/SaleUpdate.ts +++ b/src/discounts/types/SaleUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { SaleInput, DiscountErrorCode, SaleType } from "./../../types/globalTypes"; diff --git a/src/discounts/types/VoucherBulkDelete.ts b/src/discounts/types/VoucherBulkDelete.ts index e0fcd4758..52fc07ac0 100644 --- a/src/discounts/types/VoucherBulkDelete.ts +++ b/src/discounts/types/VoucherBulkDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/discounts/types/VoucherCataloguesAdd.ts b/src/discounts/types/VoucherCataloguesAdd.ts index 794b51d8e..17e28de09 100644 --- a/src/discounts/types/VoucherCataloguesAdd.ts +++ b/src/discounts/types/VoucherCataloguesAdd.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CatalogueInput, DiscountErrorCode, DiscountValueTypeEnum, VoucherTypeEnum } from "./../../types/globalTypes"; diff --git a/src/discounts/types/VoucherCataloguesRemove.ts b/src/discounts/types/VoucherCataloguesRemove.ts index 50f029ea7..131f36459 100644 --- a/src/discounts/types/VoucherCataloguesRemove.ts +++ b/src/discounts/types/VoucherCataloguesRemove.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CatalogueInput, DiscountErrorCode, DiscountValueTypeEnum, VoucherTypeEnum } from "./../../types/globalTypes"; diff --git a/src/discounts/types/VoucherChannelListingUpdate.ts b/src/discounts/types/VoucherChannelListingUpdate.ts index f5fb1d826..90537b2dc 100644 --- a/src/discounts/types/VoucherChannelListingUpdate.ts +++ b/src/discounts/types/VoucherChannelListingUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { VoucherChannelListingInput, DiscountErrorCode, DiscountValueTypeEnum } from "./../../types/globalTypes"; diff --git a/src/discounts/types/VoucherCreate.ts b/src/discounts/types/VoucherCreate.ts index fe1010305..8cbdd0e30 100644 --- a/src/discounts/types/VoucherCreate.ts +++ b/src/discounts/types/VoucherCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { VoucherInput, DiscountErrorCode, DiscountValueTypeEnum } from "./../../types/globalTypes"; diff --git a/src/discounts/types/VoucherDelete.ts b/src/discounts/types/VoucherDelete.ts index 3a6f005a9..ed6742e08 100644 --- a/src/discounts/types/VoucherDelete.ts +++ b/src/discounts/types/VoucherDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DiscountErrorCode } from "./../../types/globalTypes"; diff --git a/src/discounts/types/VoucherDetails.ts b/src/discounts/types/VoucherDetails.ts index 3b46e3dd0..cc4bcc405 100644 --- a/src/discounts/types/VoucherDetails.ts +++ b/src/discounts/types/VoucherDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DiscountValueTypeEnum, VoucherTypeEnum } from "./../../types/globalTypes"; diff --git a/src/discounts/types/VoucherList.ts b/src/discounts/types/VoucherList.ts index 2059b10aa..359f9120a 100644 --- a/src/discounts/types/VoucherList.ts +++ b/src/discounts/types/VoucherList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { VoucherFilterInput, VoucherSortingInput, DiscountValueTypeEnum } from "./../../types/globalTypes"; diff --git a/src/discounts/types/VoucherUpdate.ts b/src/discounts/types/VoucherUpdate.ts index a82ab4947..d626cbe9d 100644 --- a/src/discounts/types/VoucherUpdate.ts +++ b/src/discounts/types/VoucherUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { VoucherInput, DiscountErrorCode, DiscountValueTypeEnum } from "./../../types/globalTypes"; diff --git a/src/files/types/FileUpload.ts b/src/files/types/FileUpload.ts index 5662ee64c..fb3f95063 100644 --- a/src/files/types/FileUpload.ts +++ b/src/files/types/FileUpload.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { UploadErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/AccountErrorFragment.ts b/src/fragments/types/AccountErrorFragment.ts index 3b96c2f5c..856e377d8 100644 --- a/src/fragments/types/AccountErrorFragment.ts +++ b/src/fragments/types/AccountErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/AddressFragment.ts b/src/fragments/types/AddressFragment.ts index fbe0fe508..5014ba263 100644 --- a/src/fragments/types/AddressFragment.ts +++ b/src/fragments/types/AddressFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/AppErrorFragment.ts b/src/fragments/types/AppErrorFragment.ts index 2dca654b1..8e17cbc60 100644 --- a/src/fragments/types/AppErrorFragment.ts +++ b/src/fragments/types/AppErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/AppFragment.ts b/src/fragments/types/AppFragment.ts index ef2f53128..4c2ab15c1 100644 --- a/src/fragments/types/AppFragment.ts +++ b/src/fragments/types/AppFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AppTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/AttributeDetailsFragment.ts b/src/fragments/types/AttributeDetailsFragment.ts index c978c558e..55202d4f1 100644 --- a/src/fragments/types/AttributeDetailsFragment.ts +++ b/src/fragments/types/AttributeDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeTypeEnum, AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/AttributeErrorFragment.ts b/src/fragments/types/AttributeErrorFragment.ts index f16ef08c3..b30aaa837 100644 --- a/src/fragments/types/AttributeErrorFragment.ts +++ b/src/fragments/types/AttributeErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/AttributeFragment.ts b/src/fragments/types/AttributeFragment.ts index 94d9e07b7..f17e01505 100644 --- a/src/fragments/types/AttributeFragment.ts +++ b/src/fragments/types/AttributeFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/AttributeTranslationFragment.ts b/src/fragments/types/AttributeTranslationFragment.ts index c3e891cd1..cd6481343 100644 --- a/src/fragments/types/AttributeTranslationFragment.ts +++ b/src/fragments/types/AttributeTranslationFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/AttributeValueFragment.ts b/src/fragments/types/AttributeValueFragment.ts index 450f07854..6527f18f3 100644 --- a/src/fragments/types/AttributeValueFragment.ts +++ b/src/fragments/types/AttributeValueFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/AvailableAttributeFragment.ts b/src/fragments/types/AvailableAttributeFragment.ts index 40a51a4c4..05c7fabc8 100644 --- a/src/fragments/types/AvailableAttributeFragment.ts +++ b/src/fragments/types/AvailableAttributeFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/BulkProductErrorFragment.ts b/src/fragments/types/BulkProductErrorFragment.ts index 36c542fda..372d28b41 100644 --- a/src/fragments/types/BulkProductErrorFragment.ts +++ b/src/fragments/types/BulkProductErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/BulkStockErrorFragment.ts b/src/fragments/types/BulkStockErrorFragment.ts index 9333796c8..6972655a5 100644 --- a/src/fragments/types/BulkStockErrorFragment.ts +++ b/src/fragments/types/BulkStockErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/CategoryDetailsFragment.ts b/src/fragments/types/CategoryDetailsFragment.ts index 6ecb638c3..4be960ef7 100644 --- a/src/fragments/types/CategoryDetailsFragment.ts +++ b/src/fragments/types/CategoryDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CategoryFragment.ts b/src/fragments/types/CategoryFragment.ts index d01e37e25..bf59235ea 100644 --- a/src/fragments/types/CategoryFragment.ts +++ b/src/fragments/types/CategoryFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CategoryTranslationFragment.ts b/src/fragments/types/CategoryTranslationFragment.ts index ed941efb3..5c2a27635 100644 --- a/src/fragments/types/CategoryTranslationFragment.ts +++ b/src/fragments/types/CategoryTranslationFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/ChannelDetailsFragment.ts b/src/fragments/types/ChannelDetailsFragment.ts index 2c9f7dcab..c29a147e2 100644 --- a/src/fragments/types/ChannelDetailsFragment.ts +++ b/src/fragments/types/ChannelDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/ChannelErrorFragment.ts b/src/fragments/types/ChannelErrorFragment.ts index 5e647c72c..b8a02a085 100644 --- a/src/fragments/types/ChannelErrorFragment.ts +++ b/src/fragments/types/ChannelErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ChannelErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ChannelFragment.ts b/src/fragments/types/ChannelFragment.ts index 629e7e94f..575dd8f66 100644 --- a/src/fragments/types/ChannelFragment.ts +++ b/src/fragments/types/ChannelFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/ChannelListingProductFragment.ts b/src/fragments/types/ChannelListingProductFragment.ts index cc536af19..29264a61c 100644 --- a/src/fragments/types/ChannelListingProductFragment.ts +++ b/src/fragments/types/ChannelListingProductFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/ChannelListingProductVariantFragment.ts b/src/fragments/types/ChannelListingProductVariantFragment.ts index 07962c57f..4b7ac0b80 100644 --- a/src/fragments/types/ChannelListingProductVariantFragment.ts +++ b/src/fragments/types/ChannelListingProductVariantFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/ChannelListingProductWithoutPricingFragment.ts b/src/fragments/types/ChannelListingProductWithoutPricingFragment.ts index 7f5321849..9772de3b8 100644 --- a/src/fragments/types/ChannelListingProductWithoutPricingFragment.ts +++ b/src/fragments/types/ChannelListingProductWithoutPricingFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CollectionChannelListingErrorFragment.ts b/src/fragments/types/CollectionChannelListingErrorFragment.ts index 9a3275f00..fab224f28 100644 --- a/src/fragments/types/CollectionChannelListingErrorFragment.ts +++ b/src/fragments/types/CollectionChannelListingErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/CollectionDetailsFragment.ts b/src/fragments/types/CollectionDetailsFragment.ts index 8b170980e..c13f3979e 100644 --- a/src/fragments/types/CollectionDetailsFragment.ts +++ b/src/fragments/types/CollectionDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CollectionErrorFragment.ts b/src/fragments/types/CollectionErrorFragment.ts index 6a17c6508..18f7c2aa1 100644 --- a/src/fragments/types/CollectionErrorFragment.ts +++ b/src/fragments/types/CollectionErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { CollectionErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/CollectionFragment.ts b/src/fragments/types/CollectionFragment.ts index c75972e68..3b862853a 100644 --- a/src/fragments/types/CollectionFragment.ts +++ b/src/fragments/types/CollectionFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CollectionProductFragment.ts b/src/fragments/types/CollectionProductFragment.ts index 5034b5fd8..192e7e86c 100644 --- a/src/fragments/types/CollectionProductFragment.ts +++ b/src/fragments/types/CollectionProductFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CollectionTranslationFragment.ts b/src/fragments/types/CollectionTranslationFragment.ts index 0e77f2c0d..92e1145de 100644 --- a/src/fragments/types/CollectionTranslationFragment.ts +++ b/src/fragments/types/CollectionTranslationFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CountryFragment.ts b/src/fragments/types/CountryFragment.ts index b7fd1852f..1a4b87d8d 100644 --- a/src/fragments/types/CountryFragment.ts +++ b/src/fragments/types/CountryFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CountryWithTaxesFragment.ts b/src/fragments/types/CountryWithTaxesFragment.ts index 776eaa380..91ac3c3de 100644 --- a/src/fragments/types/CountryWithTaxesFragment.ts +++ b/src/fragments/types/CountryWithTaxesFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { TaxRateType } from "./../../types/globalTypes"; diff --git a/src/fragments/types/CustomerAddressesFragment.ts b/src/fragments/types/CustomerAddressesFragment.ts index 07fd6c695..86eec18da 100644 --- a/src/fragments/types/CustomerAddressesFragment.ts +++ b/src/fragments/types/CustomerAddressesFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CustomerDetailsFragment.ts b/src/fragments/types/CustomerDetailsFragment.ts index 79796a93d..dc3d32bd3 100644 --- a/src/fragments/types/CustomerDetailsFragment.ts +++ b/src/fragments/types/CustomerDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/CustomerFragment.ts b/src/fragments/types/CustomerFragment.ts index f945af27f..0884f596a 100644 --- a/src/fragments/types/CustomerFragment.ts +++ b/src/fragments/types/CustomerFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/DiscountErrorFragment.ts b/src/fragments/types/DiscountErrorFragment.ts index 6026be228..ff10bd2d6 100644 --- a/src/fragments/types/DiscountErrorFragment.ts +++ b/src/fragments/types/DiscountErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DiscountErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ExportErrorFragment.ts b/src/fragments/types/ExportErrorFragment.ts index 7b421283b..9869449f0 100644 --- a/src/fragments/types/ExportErrorFragment.ts +++ b/src/fragments/types/ExportErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ExportErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ExportFileFragment.ts b/src/fragments/types/ExportFileFragment.ts index ebc4ae1d6..57acacce1 100644 --- a/src/fragments/types/ExportFileFragment.ts +++ b/src/fragments/types/ExportFileFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/FileFragment.ts b/src/fragments/types/FileFragment.ts index 573804bb7..44264300d 100644 --- a/src/fragments/types/FileFragment.ts +++ b/src/fragments/types/FileFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/FulfillmentFragment.ts b/src/fragments/types/FulfillmentFragment.ts index cf67e4719..eed4213ee 100644 --- a/src/fragments/types/FulfillmentFragment.ts +++ b/src/fragments/types/FulfillmentFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DiscountValueTypeEnum, FulfillmentStatus } from "./../../types/globalTypes"; diff --git a/src/fragments/types/InvoiceErrorFragment.ts b/src/fragments/types/InvoiceErrorFragment.ts index 6f7fdd502..c4435e804 100644 --- a/src/fragments/types/InvoiceErrorFragment.ts +++ b/src/fragments/types/InvoiceErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { InvoiceErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/InvoiceFragment.ts b/src/fragments/types/InvoiceFragment.ts index 1959df4ab..9de9fb4f4 100644 --- a/src/fragments/types/InvoiceFragment.ts +++ b/src/fragments/types/InvoiceFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/MenuDetailsFragment.ts b/src/fragments/types/MenuDetailsFragment.ts index 00e341a87..a1ca723f8 100644 --- a/src/fragments/types/MenuDetailsFragment.ts +++ b/src/fragments/types/MenuDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/MenuErrorFragment.ts b/src/fragments/types/MenuErrorFragment.ts index d0e09b856..68455cae3 100644 --- a/src/fragments/types/MenuErrorFragment.ts +++ b/src/fragments/types/MenuErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MenuErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/MenuFragment.ts b/src/fragments/types/MenuFragment.ts index 9b6f6fe99..5919b9542 100644 --- a/src/fragments/types/MenuFragment.ts +++ b/src/fragments/types/MenuFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/MenuItemFragment.ts b/src/fragments/types/MenuItemFragment.ts index 1f3706533..3370c001b 100644 --- a/src/fragments/types/MenuItemFragment.ts +++ b/src/fragments/types/MenuItemFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/MenuItemNestedFragment.ts b/src/fragments/types/MenuItemNestedFragment.ts index cb347350c..1d16c2b4e 100644 --- a/src/fragments/types/MenuItemNestedFragment.ts +++ b/src/fragments/types/MenuItemNestedFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/MetadataErrorFragment.ts b/src/fragments/types/MetadataErrorFragment.ts index 7c669c123..4893193a2 100644 --- a/src/fragments/types/MetadataErrorFragment.ts +++ b/src/fragments/types/MetadataErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MetadataErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/MetadataFragment.ts b/src/fragments/types/MetadataFragment.ts index e5952e01d..dea14e3f6 100644 --- a/src/fragments/types/MetadataFragment.ts +++ b/src/fragments/types/MetadataFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/MetadataItem.ts b/src/fragments/types/MetadataItem.ts index 484b4f9dc..5170d3b74 100644 --- a/src/fragments/types/MetadataItem.ts +++ b/src/fragments/types/MetadataItem.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/Money.ts b/src/fragments/types/Money.ts index f48f8fa9d..44b0a0e21 100644 --- a/src/fragments/types/Money.ts +++ b/src/fragments/types/Money.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/OrderDetailsFragment.ts b/src/fragments/types/OrderDetailsFragment.ts index 7727037ba..479cf6f9e 100644 --- a/src/fragments/types/OrderDetailsFragment.ts +++ b/src/fragments/types/OrderDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/OrderErrorFragment.ts b/src/fragments/types/OrderErrorFragment.ts index 481de0908..bb4162d23 100644 --- a/src/fragments/types/OrderErrorFragment.ts +++ b/src/fragments/types/OrderErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/OrderEventFragment.ts b/src/fragments/types/OrderEventFragment.ts index e3f0d0ed9..43526dfe4 100644 --- a/src/fragments/types/OrderEventFragment.ts +++ b/src/fragments/types/OrderEventFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderEventsEmailsEnum, DiscountValueTypeEnum, OrderEventsEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/OrderLineFragment.ts b/src/fragments/types/OrderLineFragment.ts index 92ddcbb39..3f8f7991c 100644 --- a/src/fragments/types/OrderLineFragment.ts +++ b/src/fragments/types/OrderLineFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DiscountValueTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/OrderSettingsErrorFragment.ts b/src/fragments/types/OrderSettingsErrorFragment.ts index abdd5d28f..c2871dc0b 100644 --- a/src/fragments/types/OrderSettingsErrorFragment.ts +++ b/src/fragments/types/OrderSettingsErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderSettingsErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/OrderSettingsFragment.ts b/src/fragments/types/OrderSettingsFragment.ts index 58895e0bd..262f0d55c 100644 --- a/src/fragments/types/OrderSettingsFragment.ts +++ b/src/fragments/types/OrderSettingsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/PageAttributesFragment.ts b/src/fragments/types/PageAttributesFragment.ts index 62c2b6697..6da125cbb 100644 --- a/src/fragments/types/PageAttributesFragment.ts +++ b/src/fragments/types/PageAttributesFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PageDetailsFragment.ts b/src/fragments/types/PageDetailsFragment.ts index 1abbe5c7d..5245e373b 100644 --- a/src/fragments/types/PageDetailsFragment.ts +++ b/src/fragments/types/PageDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PageErrorFragment.ts b/src/fragments/types/PageErrorFragment.ts index a61010897..daa8334c7 100644 --- a/src/fragments/types/PageErrorFragment.ts +++ b/src/fragments/types/PageErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PageErrorWithAttributesFragment.ts b/src/fragments/types/PageErrorWithAttributesFragment.ts index 5b2c41ae5..ce35c378f 100644 --- a/src/fragments/types/PageErrorWithAttributesFragment.ts +++ b/src/fragments/types/PageErrorWithAttributesFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PageFragment.ts b/src/fragments/types/PageFragment.ts index c10ca7112..246303fcc 100644 --- a/src/fragments/types/PageFragment.ts +++ b/src/fragments/types/PageFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/PageInfoFragment.ts b/src/fragments/types/PageInfoFragment.ts index 5f64585f8..d7682c0e8 100644 --- a/src/fragments/types/PageInfoFragment.ts +++ b/src/fragments/types/PageInfoFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/PageTranslatableFragment.ts b/src/fragments/types/PageTranslatableFragment.ts index 59ac73eef..e575c2646 100644 --- a/src/fragments/types/PageTranslatableFragment.ts +++ b/src/fragments/types/PageTranslatableFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PageTranslationFragment.ts b/src/fragments/types/PageTranslationFragment.ts index 3c89e43a1..785f03739 100644 --- a/src/fragments/types/PageTranslationFragment.ts +++ b/src/fragments/types/PageTranslationFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PageTypeDetailsFragment.ts b/src/fragments/types/PageTypeDetailsFragment.ts index dc0718772..a1412360c 100644 --- a/src/fragments/types/PageTypeDetailsFragment.ts +++ b/src/fragments/types/PageTypeDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PageTypeFragment.ts b/src/fragments/types/PageTypeFragment.ts index 4c134c030..0fb99601f 100644 --- a/src/fragments/types/PageTypeFragment.ts +++ b/src/fragments/types/PageTypeFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/PermissionFragment.ts b/src/fragments/types/PermissionFragment.ts index 85ffe73d3..7cb24768c 100644 --- a/src/fragments/types/PermissionFragment.ts +++ b/src/fragments/types/PermissionFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PermissionGroupDetailsFragment.ts b/src/fragments/types/PermissionGroupDetailsFragment.ts index 189247a10..1da58d230 100644 --- a/src/fragments/types/PermissionGroupDetailsFragment.ts +++ b/src/fragments/types/PermissionGroupDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PermissionGroupErrorFragment.ts b/src/fragments/types/PermissionGroupErrorFragment.ts index be180ba95..628bbcd2f 100644 --- a/src/fragments/types/PermissionGroupErrorFragment.ts +++ b/src/fragments/types/PermissionGroupErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionGroupErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PermissionGroupFragment.ts b/src/fragments/types/PermissionGroupFragment.ts index 78f46b529..09be84e73 100644 --- a/src/fragments/types/PermissionGroupFragment.ts +++ b/src/fragments/types/PermissionGroupFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/PluginErrorFragment.ts b/src/fragments/types/PluginErrorFragment.ts index ce557f60e..485f13c77 100644 --- a/src/fragments/types/PluginErrorFragment.ts +++ b/src/fragments/types/PluginErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PluginErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PluginFragment.ts b/src/fragments/types/PluginFragment.ts index 8b1dd74f3..c4a323dae 100644 --- a/src/fragments/types/PluginFragment.ts +++ b/src/fragments/types/PluginFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/PluginsDetailsFragment.ts b/src/fragments/types/PluginsDetailsFragment.ts index 6cc2a7c86..6aeb21c29 100644 --- a/src/fragments/types/PluginsDetailsFragment.ts +++ b/src/fragments/types/PluginsDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ConfigurationTypeFieldEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/PriceRangeFragment.ts b/src/fragments/types/PriceRangeFragment.ts index 6a697c8c9..dbb5451b4 100644 --- a/src/fragments/types/PriceRangeFragment.ts +++ b/src/fragments/types/PriceRangeFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/Product.ts b/src/fragments/types/Product.ts index 659c40526..1047f85d5 100644 --- a/src/fragments/types/Product.ts +++ b/src/fragments/types/Product.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -263,7 +264,7 @@ export interface Product { category: Product_category | null; collections: (Product_collections | null)[] | null; chargeTaxes: boolean; - media: (Product_media | null)[] | null; + media: Product_media[] | null; isAvailable: boolean | null; variants: (Product_variants | null)[] | null; weight: Product_weight | null; diff --git a/src/fragments/types/ProductChannelListingErrorFragment.ts b/src/fragments/types/ProductChannelListingErrorFragment.ts index 6a4348dcc..4949a3003 100644 --- a/src/fragments/types/ProductChannelListingErrorFragment.ts +++ b/src/fragments/types/ProductChannelListingErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ProductErrorFragment.ts b/src/fragments/types/ProductErrorFragment.ts index 2f4d1fccb..025e62e92 100644 --- a/src/fragments/types/ProductErrorFragment.ts +++ b/src/fragments/types/ProductErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ProductErrorWithAttributesFragment.ts b/src/fragments/types/ProductErrorWithAttributesFragment.ts index 46c737efa..e65ada340 100644 --- a/src/fragments/types/ProductErrorWithAttributesFragment.ts +++ b/src/fragments/types/ProductErrorWithAttributesFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ProductFragment.ts b/src/fragments/types/ProductFragment.ts index 0299b1fa9..3b5714df2 100644 --- a/src/fragments/types/ProductFragment.ts +++ b/src/fragments/types/ProductFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/ProductMediaFragment.ts b/src/fragments/types/ProductMediaFragment.ts index 87588564e..485cf6d08 100644 --- a/src/fragments/types/ProductMediaFragment.ts +++ b/src/fragments/types/ProductMediaFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductMediaType } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ProductTranslationFragment.ts b/src/fragments/types/ProductTranslationFragment.ts index 4280e43ec..c8789b23a 100644 --- a/src/fragments/types/ProductTranslationFragment.ts +++ b/src/fragments/types/ProductTranslationFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ProductTypeDetailsFragment.ts b/src/fragments/types/ProductTypeDetailsFragment.ts index 413b65998..44a169ef8 100644 --- a/src/fragments/types/ProductTypeDetailsFragment.ts +++ b/src/fragments/types/ProductTypeDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ProductTypeFragment.ts b/src/fragments/types/ProductTypeFragment.ts index d96c18668..c6aac0fb4 100644 --- a/src/fragments/types/ProductTypeFragment.ts +++ b/src/fragments/types/ProductTypeFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/ProductVariant.ts b/src/fragments/types/ProductVariant.ts index e667738b5..9bf030b35 100644 --- a/src/fragments/types/ProductVariant.ts +++ b/src/fragments/types/ProductVariant.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -208,7 +209,7 @@ export interface ProductVariant_product { __typename: "Product"; id: string; defaultVariant: ProductVariant_product_defaultVariant | null; - media: (ProductVariant_product_media | null)[] | null; + media: ProductVariant_product_media[] | null; name: string; thumbnail: ProductVariant_product_thumbnail | null; channelListings: ProductVariant_product_channelListings[] | null; diff --git a/src/fragments/types/ProductVariantAttributesFragment.ts b/src/fragments/types/ProductVariantAttributesFragment.ts index f2dae3282..c05645e4c 100644 --- a/src/fragments/types/ProductVariantAttributesFragment.ts +++ b/src/fragments/types/ProductVariantAttributesFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/RefundOrderLineFragment.ts b/src/fragments/types/RefundOrderLineFragment.ts index aa7d15d0a..a54d1149c 100644 --- a/src/fragments/types/RefundOrderLineFragment.ts +++ b/src/fragments/types/RefundOrderLineFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/SaleDetailsFragment.ts b/src/fragments/types/SaleDetailsFragment.ts index aa40c604d..e3196e615 100644 --- a/src/fragments/types/SaleDetailsFragment.ts +++ b/src/fragments/types/SaleDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { SaleType } from "./../../types/globalTypes"; diff --git a/src/fragments/types/SaleFragment.ts b/src/fragments/types/SaleFragment.ts index 1a21e9e85..5056957c5 100644 --- a/src/fragments/types/SaleFragment.ts +++ b/src/fragments/types/SaleFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { SaleType } from "./../../types/globalTypes"; diff --git a/src/fragments/types/SaleTranslationFragment.ts b/src/fragments/types/SaleTranslationFragment.ts index 0001ed65c..e04108908 100644 --- a/src/fragments/types/SaleTranslationFragment.ts +++ b/src/fragments/types/SaleTranslationFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/SelectedVariantAttributeFragment.ts b/src/fragments/types/SelectedVariantAttributeFragment.ts index bc91e9574..b3c127e36 100644 --- a/src/fragments/types/SelectedVariantAttributeFragment.ts +++ b/src/fragments/types/SelectedVariantAttributeFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ShippingChannelsErrorFragment.ts b/src/fragments/types/ShippingChannelsErrorFragment.ts index 401d1c1f6..d33072763 100644 --- a/src/fragments/types/ShippingChannelsErrorFragment.ts +++ b/src/fragments/types/ShippingChannelsErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ShippingErrorFragment.ts b/src/fragments/types/ShippingErrorFragment.ts index 88e8c9daf..c7c1346a3 100644 --- a/src/fragments/types/ShippingErrorFragment.ts +++ b/src/fragments/types/ShippingErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ShippingMethodFragment.ts b/src/fragments/types/ShippingMethodFragment.ts index fc1740df5..5da0b1412 100644 --- a/src/fragments/types/ShippingMethodFragment.ts +++ b/src/fragments/types/ShippingMethodFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PostalCodeRuleInclusionTypeEnum, WeightUnitsEnum, ShippingMethodTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ShippingMethodTranslationFragment.ts b/src/fragments/types/ShippingMethodTranslationFragment.ts index b0a687aca..a144480ae 100644 --- a/src/fragments/types/ShippingMethodTranslationFragment.ts +++ b/src/fragments/types/ShippingMethodTranslationFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ShippingMethodWithExcludedProductsFragment.ts b/src/fragments/types/ShippingMethodWithExcludedProductsFragment.ts index c011e4aa0..572e4bfc8 100644 --- a/src/fragments/types/ShippingMethodWithExcludedProductsFragment.ts +++ b/src/fragments/types/ShippingMethodWithExcludedProductsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PostalCodeRuleInclusionTypeEnum, WeightUnitsEnum, ShippingMethodTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ShippingMethodWithPostalCodesFragment.ts b/src/fragments/types/ShippingMethodWithPostalCodesFragment.ts index 26f79fa6c..7d533511d 100644 --- a/src/fragments/types/ShippingMethodWithPostalCodesFragment.ts +++ b/src/fragments/types/ShippingMethodWithPostalCodesFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PostalCodeRuleInclusionTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ShippingZoneDetailsFragment.ts b/src/fragments/types/ShippingZoneDetailsFragment.ts index 9e1aea63c..991928aa2 100644 --- a/src/fragments/types/ShippingZoneDetailsFragment.ts +++ b/src/fragments/types/ShippingZoneDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PostalCodeRuleInclusionTypeEnum, WeightUnitsEnum, ShippingMethodTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ShippingZoneFragment.ts b/src/fragments/types/ShippingZoneFragment.ts index 2aa596c72..42326f239 100644 --- a/src/fragments/types/ShippingZoneFragment.ts +++ b/src/fragments/types/ShippingZoneFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/ShopErrorFragment.ts b/src/fragments/types/ShopErrorFragment.ts index ae705f05f..952aaf1bf 100644 --- a/src/fragments/types/ShopErrorFragment.ts +++ b/src/fragments/types/ShopErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShopErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/ShopFragment.ts b/src/fragments/types/ShopFragment.ts index e53585128..417116a0b 100644 --- a/src/fragments/types/ShopFragment.ts +++ b/src/fragments/types/ShopFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/ShopTaxesFragment.ts b/src/fragments/types/ShopTaxesFragment.ts index b336e6cfa..e09de94ff 100644 --- a/src/fragments/types/ShopTaxesFragment.ts +++ b/src/fragments/types/ShopTaxesFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/StaffErrorFragment.ts b/src/fragments/types/StaffErrorFragment.ts index 88aea4247..a4c437a75 100644 --- a/src/fragments/types/StaffErrorFragment.ts +++ b/src/fragments/types/StaffErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/StaffMemberDetailsFragment.ts b/src/fragments/types/StaffMemberDetailsFragment.ts index 22f80c5d8..243e775c2 100644 --- a/src/fragments/types/StaffMemberDetailsFragment.ts +++ b/src/fragments/types/StaffMemberDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/StaffMemberFragment.ts b/src/fragments/types/StaffMemberFragment.ts index 118b747c1..49f56b599 100644 --- a/src/fragments/types/StaffMemberFragment.ts +++ b/src/fragments/types/StaffMemberFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/StockErrorFragment.ts b/src/fragments/types/StockErrorFragment.ts index 18a48980f..324689520 100644 --- a/src/fragments/types/StockErrorFragment.ts +++ b/src/fragments/types/StockErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { StockErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/StockFragment.ts b/src/fragments/types/StockFragment.ts index 667cee296..d69bf867a 100644 --- a/src/fragments/types/StockFragment.ts +++ b/src/fragments/types/StockFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/TaxTypeFragment.ts b/src/fragments/types/TaxTypeFragment.ts index 48d203ab0..a8d4dbf39 100644 --- a/src/fragments/types/TaxTypeFragment.ts +++ b/src/fragments/types/TaxTypeFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/UploadErrorFragment.ts b/src/fragments/types/UploadErrorFragment.ts index 7b0578a66..218d4f0b8 100644 --- a/src/fragments/types/UploadErrorFragment.ts +++ b/src/fragments/types/UploadErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { UploadErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/User.ts b/src/fragments/types/User.ts index 67c1e5660..10c371bf4 100644 --- a/src/fragments/types/User.ts +++ b/src/fragments/types/User.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/VariantAttributeFragment.ts b/src/fragments/types/VariantAttributeFragment.ts index 9bbf7316e..1d72d6011 100644 --- a/src/fragments/types/VariantAttributeFragment.ts +++ b/src/fragments/types/VariantAttributeFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/VoucherDetailsFragment.ts b/src/fragments/types/VoucherDetailsFragment.ts index d5b2ee5ff..2131d9ab3 100644 --- a/src/fragments/types/VoucherDetailsFragment.ts +++ b/src/fragments/types/VoucherDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DiscountValueTypeEnum, VoucherTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/VoucherFragment.ts b/src/fragments/types/VoucherFragment.ts index 0ecefa877..cae8ce676 100644 --- a/src/fragments/types/VoucherFragment.ts +++ b/src/fragments/types/VoucherFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DiscountValueTypeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/VoucherTranslationFragment.ts b/src/fragments/types/VoucherTranslationFragment.ts index 3b06fafe3..131e8a03e 100644 --- a/src/fragments/types/VoucherTranslationFragment.ts +++ b/src/fragments/types/VoucherTranslationFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/fragments/types/WarehouseDetailsFragment.ts b/src/fragments/types/WarehouseDetailsFragment.ts index fae00ac31..31005628c 100644 --- a/src/fragments/types/WarehouseDetailsFragment.ts +++ b/src/fragments/types/WarehouseDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/WarehouseErrorFragment.ts b/src/fragments/types/WarehouseErrorFragment.ts index efb04bb45..526f2e81e 100644 --- a/src/fragments/types/WarehouseErrorFragment.ts +++ b/src/fragments/types/WarehouseErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WarehouseErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/WarehouseFragment.ts b/src/fragments/types/WarehouseFragment.ts index 0f91a3997..0942744bc 100644 --- a/src/fragments/types/WarehouseFragment.ts +++ b/src/fragments/types/WarehouseFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/WarehouseWithShippingFragment.ts b/src/fragments/types/WarehouseWithShippingFragment.ts index 85f1ab270..81bd96900 100644 --- a/src/fragments/types/WarehouseWithShippingFragment.ts +++ b/src/fragments/types/WarehouseWithShippingFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/WebhookErrorFragment.ts b/src/fragments/types/WebhookErrorFragment.ts index 838474806..741ded4e2 100644 --- a/src/fragments/types/WebhookErrorFragment.ts +++ b/src/fragments/types/WebhookErrorFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WebhookErrorCode } from "./../../types/globalTypes"; diff --git a/src/fragments/types/WebhookFragment.ts b/src/fragments/types/WebhookFragment.ts index 1c8dcc8f9..be95aea2e 100644 --- a/src/fragments/types/WebhookFragment.ts +++ b/src/fragments/types/WebhookFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/WebhooksDetailsFragment.ts b/src/fragments/types/WebhooksDetailsFragment.ts index 8eaf7e94f..e0576d1a1 100644 --- a/src/fragments/types/WebhooksDetailsFragment.ts +++ b/src/fragments/types/WebhooksDetailsFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/fragments/types/WeightFragment.ts b/src/fragments/types/WeightFragment.ts index 2a9708b2b..f8ef06a03 100644 --- a/src/fragments/types/WeightFragment.ts +++ b/src/fragments/types/WeightFragment.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/home/types/Home.ts b/src/home/types/Home.ts index 91b7a59b8..881418801 100644 --- a/src/home/types/Home.ts +++ b/src/home/types/Home.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderEventsEmailsEnum, OrderEventsEnum } from "./../../types/globalTypes"; diff --git a/src/navigation/types/MenuBulkDelete.ts b/src/navigation/types/MenuBulkDelete.ts index 5effd4d61..b15ce4891 100644 --- a/src/navigation/types/MenuBulkDelete.ts +++ b/src/navigation/types/MenuBulkDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MenuErrorCode } from "./../../types/globalTypes"; diff --git a/src/navigation/types/MenuCreate.ts b/src/navigation/types/MenuCreate.ts index d9b49b4f3..47e1989b9 100644 --- a/src/navigation/types/MenuCreate.ts +++ b/src/navigation/types/MenuCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MenuCreateInput, MenuErrorCode } from "./../../types/globalTypes"; diff --git a/src/navigation/types/MenuDelete.ts b/src/navigation/types/MenuDelete.ts index 201828b47..94a269544 100644 --- a/src/navigation/types/MenuDelete.ts +++ b/src/navigation/types/MenuDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MenuErrorCode } from "./../../types/globalTypes"; diff --git a/src/navigation/types/MenuDetails.ts b/src/navigation/types/MenuDetails.ts index 4a6115eb6..2ddb2c2e8 100644 --- a/src/navigation/types/MenuDetails.ts +++ b/src/navigation/types/MenuDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/navigation/types/MenuItemCreate.ts b/src/navigation/types/MenuItemCreate.ts index c0d044c13..a6db94c48 100644 --- a/src/navigation/types/MenuItemCreate.ts +++ b/src/navigation/types/MenuItemCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MenuItemCreateInput, MenuErrorCode } from "./../../types/globalTypes"; diff --git a/src/navigation/types/MenuItemUpdate.ts b/src/navigation/types/MenuItemUpdate.ts index be2db3080..3698a2a30 100644 --- a/src/navigation/types/MenuItemUpdate.ts +++ b/src/navigation/types/MenuItemUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MenuItemInput, MenuErrorCode } from "./../../types/globalTypes"; diff --git a/src/navigation/types/MenuList.ts b/src/navigation/types/MenuList.ts index f9adf04ac..16226e90a 100644 --- a/src/navigation/types/MenuList.ts +++ b/src/navigation/types/MenuList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MenuSortingInput } from "./../../types/globalTypes"; diff --git a/src/navigation/types/MenuUpdate.ts b/src/navigation/types/MenuUpdate.ts index 06ffb2b21..d8802bcf4 100644 --- a/src/navigation/types/MenuUpdate.ts +++ b/src/navigation/types/MenuUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MenuItemMoveInput, MenuErrorCode } from "./../../types/globalTypes"; diff --git a/src/orders/types/FulfillOrder.ts b/src/orders/types/FulfillOrder.ts index b8f001c9d..c2a16e3b0 100644 --- a/src/orders/types/FulfillOrder.ts +++ b/src/orders/types/FulfillOrder.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderFulfillInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/FulfillmentReturnProducts.ts b/src/orders/types/FulfillmentReturnProducts.ts index 09de2c887..c42d059bc 100644 --- a/src/orders/types/FulfillmentReturnProducts.ts +++ b/src/orders/types/FulfillmentReturnProducts.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderReturnProductsInput, OrderErrorCode } from "./../../types/globalTypes"; diff --git a/src/orders/types/InvoiceEmailSend.ts b/src/orders/types/InvoiceEmailSend.ts index 6406ed5c0..cda8f9897 100644 --- a/src/orders/types/InvoiceEmailSend.ts +++ b/src/orders/types/InvoiceEmailSend.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { InvoiceErrorCode, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/InvoiceRequest.ts b/src/orders/types/InvoiceRequest.ts index 973ff4bda..759d24bc8 100644 --- a/src/orders/types/InvoiceRequest.ts +++ b/src/orders/types/InvoiceRequest.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { InvoiceErrorCode, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderAddNote.ts b/src/orders/types/OrderAddNote.ts index 9d6521b6a..dfd4fdddc 100644 --- a/src/orders/types/OrderAddNote.ts +++ b/src/orders/types/OrderAddNote.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderAddNoteInput, OrderErrorCode, OrderEventsEmailsEnum, DiscountValueTypeEnum, OrderEventsEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderCancel.ts b/src/orders/types/OrderCancel.ts index 5b19ddd38..8c88adaa4 100644 --- a/src/orders/types/OrderCancel.ts +++ b/src/orders/types/OrderCancel.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderCapture.ts b/src/orders/types/OrderCapture.ts index 7f22cc1dd..d4736d912 100644 --- a/src/orders/types/OrderCapture.ts +++ b/src/orders/types/OrderCapture.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderConfirm.ts b/src/orders/types/OrderConfirm.ts index 2949304ec..a890c4bfa 100644 --- a/src/orders/types/OrderConfirm.ts +++ b/src/orders/types/OrderConfirm.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDetails.ts b/src/orders/types/OrderDetails.ts index 390072e34..955a6692e 100644 --- a/src/orders/types/OrderDetails.ts +++ b/src/orders/types/OrderDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum, WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDiscountAdd.ts b/src/orders/types/OrderDiscountAdd.ts index fc07ea588..b3b584c15 100644 --- a/src/orders/types/OrderDiscountAdd.ts +++ b/src/orders/types/OrderDiscountAdd.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderDiscountCommonInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDiscountDelete.ts b/src/orders/types/OrderDiscountDelete.ts index 8995616fd..0b3441e1f 100644 --- a/src/orders/types/OrderDiscountDelete.ts +++ b/src/orders/types/OrderDiscountDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDiscountUpdate.ts b/src/orders/types/OrderDiscountUpdate.ts index 922b8c4c8..54fadd7b6 100644 --- a/src/orders/types/OrderDiscountUpdate.ts +++ b/src/orders/types/OrderDiscountUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderDiscountCommonInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDraftBulkCancel.ts b/src/orders/types/OrderDraftBulkCancel.ts index 6d291e2de..72cae2722 100644 --- a/src/orders/types/OrderDraftBulkCancel.ts +++ b/src/orders/types/OrderDraftBulkCancel.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDraftCancel.ts b/src/orders/types/OrderDraftCancel.ts index e739f01f9..9c67008b0 100644 --- a/src/orders/types/OrderDraftCancel.ts +++ b/src/orders/types/OrderDraftCancel.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDraftCreate.ts b/src/orders/types/OrderDraftCreate.ts index a0250f872..00508e0d8 100644 --- a/src/orders/types/OrderDraftCreate.ts +++ b/src/orders/types/OrderDraftCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DraftOrderCreateInput, OrderErrorCode } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDraftFinalize.ts b/src/orders/types/OrderDraftFinalize.ts index 5b31b18ca..d8dd2e8eb 100644 --- a/src/orders/types/OrderDraftFinalize.ts +++ b/src/orders/types/OrderDraftFinalize.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDraftList.ts b/src/orders/types/OrderDraftList.ts index 2ea43c3ad..9143dc1b8 100644 --- a/src/orders/types/OrderDraftList.ts +++ b/src/orders/types/OrderDraftList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderDraftFilterInput, OrderSortingInput, PaymentChargeStatusEnum, OrderStatus } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderDraftUpdate.ts b/src/orders/types/OrderDraftUpdate.ts index 8cbded2f2..2e0a0ebb2 100644 --- a/src/orders/types/OrderDraftUpdate.ts +++ b/src/orders/types/OrderDraftUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { DraftOrderInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderFulfillData.ts b/src/orders/types/OrderFulfillData.ts index 433ce0045..844ea15aa 100644 --- a/src/orders/types/OrderFulfillData.ts +++ b/src/orders/types/OrderFulfillData.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/orders/types/OrderFulfillmentCancel.ts b/src/orders/types/OrderFulfillmentCancel.ts index ae0ea92fe..3bf56c12e 100644 --- a/src/orders/types/OrderFulfillmentCancel.ts +++ b/src/orders/types/OrderFulfillmentCancel.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { FulfillmentCancelInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderFulfillmentRefundProducts.ts b/src/orders/types/OrderFulfillmentRefundProducts.ts index 0e60d1656..415067102 100644 --- a/src/orders/types/OrderFulfillmentRefundProducts.ts +++ b/src/orders/types/OrderFulfillmentRefundProducts.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderRefundProductsInput, OrderErrorCode, DiscountValueTypeEnum, FulfillmentStatus, OrderDiscountType, OrderEventsEmailsEnum, OrderEventsEnum, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderFulfillmentUpdateTracking.ts b/src/orders/types/OrderFulfillmentUpdateTracking.ts index 95cb1671e..8618288b3 100644 --- a/src/orders/types/OrderFulfillmentUpdateTracking.ts +++ b/src/orders/types/OrderFulfillmentUpdateTracking.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { FulfillmentUpdateTrackingInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderLineDelete.ts b/src/orders/types/OrderLineDelete.ts index 46d1cc7ff..32fd4f329 100644 --- a/src/orders/types/OrderLineDelete.ts +++ b/src/orders/types/OrderLineDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderLineDiscountRemove.ts b/src/orders/types/OrderLineDiscountRemove.ts index c21336d67..076ac5021 100644 --- a/src/orders/types/OrderLineDiscountRemove.ts +++ b/src/orders/types/OrderLineDiscountRemove.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderLineDiscountUpdate.ts b/src/orders/types/OrderLineDiscountUpdate.ts index 76b3ac601..e06a7376c 100644 --- a/src/orders/types/OrderLineDiscountUpdate.ts +++ b/src/orders/types/OrderLineDiscountUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderDiscountCommonInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderLineUpdate.ts b/src/orders/types/OrderLineUpdate.ts index a7fb6d9f7..927bee20e 100644 --- a/src/orders/types/OrderLineUpdate.ts +++ b/src/orders/types/OrderLineUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderLineInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderLinesAdd.ts b/src/orders/types/OrderLinesAdd.ts index 17587655b..798f47843 100644 --- a/src/orders/types/OrderLinesAdd.ts +++ b/src/orders/types/OrderLinesAdd.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderLineCreateInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderList.ts b/src/orders/types/OrderList.ts index 71a1bb178..6378263bc 100644 --- a/src/orders/types/OrderList.ts +++ b/src/orders/types/OrderList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderFilterInput, OrderSortingInput, PaymentChargeStatusEnum, OrderStatus } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderMarkAsPaid.ts b/src/orders/types/OrderMarkAsPaid.ts index 7b6c3ad74..4627d3ee6 100644 --- a/src/orders/types/OrderMarkAsPaid.ts +++ b/src/orders/types/OrderMarkAsPaid.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderRefund.ts b/src/orders/types/OrderRefund.ts index 855af933b..8b239f64b 100644 --- a/src/orders/types/OrderRefund.ts +++ b/src/orders/types/OrderRefund.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderRefundData.ts b/src/orders/types/OrderRefundData.ts index 7eb447030..eb6fc188a 100644 --- a/src/orders/types/OrderRefundData.ts +++ b/src/orders/types/OrderRefundData.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { FulfillmentStatus } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderSettings.ts b/src/orders/types/OrderSettings.ts index ef349b8de..94eec096d 100644 --- a/src/orders/types/OrderSettings.ts +++ b/src/orders/types/OrderSettings.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/orders/types/OrderSettingsUpdate.ts b/src/orders/types/OrderSettingsUpdate.ts index 4f57a6c43..d799f6912 100644 --- a/src/orders/types/OrderSettingsUpdate.ts +++ b/src/orders/types/OrderSettingsUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderSettingsUpdateInput, OrderSettingsErrorCode } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderShippingMethodUpdate.ts b/src/orders/types/OrderShippingMethodUpdate.ts index 8037ff0d6..655218358 100644 --- a/src/orders/types/OrderShippingMethodUpdate.ts +++ b/src/orders/types/OrderShippingMethodUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderUpdateShippingInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderUpdate.ts b/src/orders/types/OrderUpdate.ts index e2afbc325..54c7f9baa 100644 --- a/src/orders/types/OrderUpdate.ts +++ b/src/orders/types/OrderUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderUpdateInput, OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/OrderVoid.ts b/src/orders/types/OrderVoid.ts index d60d26644..fe695cbd9 100644 --- a/src/orders/types/OrderVoid.ts +++ b/src/orders/types/OrderVoid.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { OrderErrorCode, OrderDiscountType, DiscountValueTypeEnum, OrderEventsEmailsEnum, OrderEventsEnum, FulfillmentStatus, PaymentChargeStatusEnum, OrderStatus, OrderAction, JobStatusEnum } from "./../../types/globalTypes"; diff --git a/src/orders/types/SearchOrderVariant.ts b/src/orders/types/SearchOrderVariant.ts index 8cad833fb..2cf401e04 100644 --- a/src/orders/types/SearchOrderVariant.ts +++ b/src/orders/types/SearchOrderVariant.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/pageTypes/hooks/useAvailablePageAttributeSearch/types/SearchAvailablePageAttributes.ts b/src/pageTypes/hooks/useAvailablePageAttributeSearch/types/SearchAvailablePageAttributes.ts index 7e2f7f9cc..c0f432417 100644 --- a/src/pageTypes/hooks/useAvailablePageAttributeSearch/types/SearchAvailablePageAttributes.ts +++ b/src/pageTypes/hooks/useAvailablePageAttributeSearch/types/SearchAvailablePageAttributes.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/pageTypes/types/AssignPageAttribute.ts b/src/pageTypes/types/AssignPageAttribute.ts index 167fb00bf..866bf5f20 100644 --- a/src/pageTypes/types/AssignPageAttribute.ts +++ b/src/pageTypes/types/AssignPageAttribute.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageErrorCode, AttributeTypeEnum } from "./../../types/globalTypes"; diff --git a/src/pageTypes/types/PageTypeAttributeReorder.ts b/src/pageTypes/types/PageTypeAttributeReorder.ts index 101ee25a8..2141129b9 100644 --- a/src/pageTypes/types/PageTypeAttributeReorder.ts +++ b/src/pageTypes/types/PageTypeAttributeReorder.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ReorderInput, PageErrorCode, AttributeTypeEnum } from "./../../types/globalTypes"; diff --git a/src/pageTypes/types/PageTypeBulkDelete.ts b/src/pageTypes/types/PageTypeBulkDelete.ts index 12e544e87..d0f9ee62b 100644 --- a/src/pageTypes/types/PageTypeBulkDelete.ts +++ b/src/pageTypes/types/PageTypeBulkDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/pageTypes/types/PageTypeCreate.ts b/src/pageTypes/types/PageTypeCreate.ts index 5f4fa9264..2d8c02823 100644 --- a/src/pageTypes/types/PageTypeCreate.ts +++ b/src/pageTypes/types/PageTypeCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageTypeCreateInput, PageErrorCode, AttributeTypeEnum } from "./../../types/globalTypes"; diff --git a/src/pageTypes/types/PageTypeDelete.ts b/src/pageTypes/types/PageTypeDelete.ts index a4e2b41b0..974aa1264 100644 --- a/src/pageTypes/types/PageTypeDelete.ts +++ b/src/pageTypes/types/PageTypeDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/pageTypes/types/PageTypeDetails.ts b/src/pageTypes/types/PageTypeDetails.ts index aa6ea4238..134c622f4 100644 --- a/src/pageTypes/types/PageTypeDetails.ts +++ b/src/pageTypes/types/PageTypeDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeTypeEnum } from "./../../types/globalTypes"; diff --git a/src/pageTypes/types/PageTypeList.ts b/src/pageTypes/types/PageTypeList.ts index 827527d55..7d19b1854 100644 --- a/src/pageTypes/types/PageTypeList.ts +++ b/src/pageTypes/types/PageTypeList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageTypeFilterInput, PageTypeSortingInput } from "./../../types/globalTypes"; diff --git a/src/pageTypes/types/PageTypeUpdate.ts b/src/pageTypes/types/PageTypeUpdate.ts index 5aa97089a..ef53e47b5 100644 --- a/src/pageTypes/types/PageTypeUpdate.ts +++ b/src/pageTypes/types/PageTypeUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageTypeUpdateInput, PageErrorCode, AttributeTypeEnum } from "./../../types/globalTypes"; diff --git a/src/pageTypes/types/UnassignPageAttribute.ts b/src/pageTypes/types/UnassignPageAttribute.ts index 131583882..cc2795095 100644 --- a/src/pageTypes/types/UnassignPageAttribute.ts +++ b/src/pageTypes/types/UnassignPageAttribute.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageErrorCode, AttributeTypeEnum } from "./../../types/globalTypes"; diff --git a/src/pages/types/PageBulkPublish.ts b/src/pages/types/PageBulkPublish.ts index 616712e69..ec8d1f427 100644 --- a/src/pages/types/PageBulkPublish.ts +++ b/src/pages/types/PageBulkPublish.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/pages/types/PageBulkRemove.ts b/src/pages/types/PageBulkRemove.ts index 74b4ff8cc..f5f1cf432 100644 --- a/src/pages/types/PageBulkRemove.ts +++ b/src/pages/types/PageBulkRemove.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/pages/types/PageCreate.ts b/src/pages/types/PageCreate.ts index ecd908f0d..ab7fbecd4 100644 --- a/src/pages/types/PageCreate.ts +++ b/src/pages/types/PageCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageCreateInput, PageErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/pages/types/PageDetails.ts b/src/pages/types/PageDetails.ts index 45bdc00f9..5e0453f65 100644 --- a/src/pages/types/PageDetails.ts +++ b/src/pages/types/PageDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/pages/types/PageList.ts b/src/pages/types/PageList.ts index ab2165b26..bca225c00 100644 --- a/src/pages/types/PageList.ts +++ b/src/pages/types/PageList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageSortingInput } from "./../../types/globalTypes"; diff --git a/src/pages/types/PageRemove.ts b/src/pages/types/PageRemove.ts index 6cbce1def..ac03c6caf 100644 --- a/src/pages/types/PageRemove.ts +++ b/src/pages/types/PageRemove.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageErrorCode } from "./../../types/globalTypes"; diff --git a/src/pages/types/PageUpdate.ts b/src/pages/types/PageUpdate.ts index 1b9b567fc..4c760cccc 100644 --- a/src/pages/types/PageUpdate.ts +++ b/src/pages/types/PageUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageInput, PageErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/permissionGroups/types/PermissionGroupCreate.ts b/src/permissionGroups/types/PermissionGroupCreate.ts index 6eee4ebd4..0e6fc0dd8 100644 --- a/src/permissionGroups/types/PermissionGroupCreate.ts +++ b/src/permissionGroups/types/PermissionGroupCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionGroupCreateInput, PermissionGroupErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/permissionGroups/types/PermissionGroupDelete.ts b/src/permissionGroups/types/PermissionGroupDelete.ts index dd5a8f9d1..5a0123410 100644 --- a/src/permissionGroups/types/PermissionGroupDelete.ts +++ b/src/permissionGroups/types/PermissionGroupDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionGroupErrorCode } from "./../../types/globalTypes"; diff --git a/src/permissionGroups/types/PermissionGroupDetails.ts b/src/permissionGroups/types/PermissionGroupDetails.ts index cde1dea2b..777746d1b 100644 --- a/src/permissionGroups/types/PermissionGroupDetails.ts +++ b/src/permissionGroups/types/PermissionGroupDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/permissionGroups/types/PermissionGroupList.ts b/src/permissionGroups/types/PermissionGroupList.ts index 204a417d0..1126107e1 100644 --- a/src/permissionGroups/types/PermissionGroupList.ts +++ b/src/permissionGroups/types/PermissionGroupList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionGroupFilterInput, PermissionGroupSortingInput } from "./../../types/globalTypes"; diff --git a/src/permissionGroups/types/PermissionGroupUpdate.ts b/src/permissionGroups/types/PermissionGroupUpdate.ts index 4ff8bd464..f7c4d2244 100644 --- a/src/permissionGroups/types/PermissionGroupUpdate.ts +++ b/src/permissionGroups/types/PermissionGroupUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionGroupUpdateInput, PermissionGroupErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/plugins/types/Plugin.ts b/src/plugins/types/Plugin.ts index 680ec9c1e..10f65c20d 100644 --- a/src/plugins/types/Plugin.ts +++ b/src/plugins/types/Plugin.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ConfigurationTypeFieldEnum } from "./../../types/globalTypes"; diff --git a/src/plugins/types/PluginUpdate.ts b/src/plugins/types/PluginUpdate.ts index 6aa937c5a..85af09e9b 100644 --- a/src/plugins/types/PluginUpdate.ts +++ b/src/plugins/types/PluginUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PluginUpdateInput, PluginErrorCode, ConfigurationTypeFieldEnum } from "./../../types/globalTypes"; diff --git a/src/plugins/types/Plugins.ts b/src/plugins/types/Plugins.ts index 59b578762..01251a86c 100644 --- a/src/plugins/types/Plugins.ts +++ b/src/plugins/types/Plugins.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PluginFilterInput, PluginSortingInput } from "./../../types/globalTypes"; diff --git a/src/productTypes/hooks/useAvailableProductAttributeSearch/types/SearchAvailableProductAttributes.ts b/src/productTypes/hooks/useAvailableProductAttributeSearch/types/SearchAvailableProductAttributes.ts index 13387d0d9..42cce8bc2 100644 --- a/src/productTypes/hooks/useAvailableProductAttributeSearch/types/SearchAvailableProductAttributes.ts +++ b/src/productTypes/hooks/useAvailableProductAttributeSearch/types/SearchAvailableProductAttributes.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/productTypes/types/AssignProductAttribute.ts b/src/productTypes/types/AssignProductAttribute.ts index 34c88679c..598ac6fc6 100644 --- a/src/productTypes/types/AssignProductAttribute.ts +++ b/src/productTypes/types/AssignProductAttribute.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductAttributeAssignInput, AttributeTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/productTypes/types/ProductTypeAttributeReorder.ts b/src/productTypes/types/ProductTypeAttributeReorder.ts index bc39cf57c..3d75dfe08 100644 --- a/src/productTypes/types/ProductTypeAttributeReorder.ts +++ b/src/productTypes/types/ProductTypeAttributeReorder.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ReorderInput, ProductAttributeType, AttributeTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/productTypes/types/ProductTypeBulkDelete.ts b/src/productTypes/types/ProductTypeBulkDelete.ts index 034d3e909..4ae758c62 100644 --- a/src/productTypes/types/ProductTypeBulkDelete.ts +++ b/src/productTypes/types/ProductTypeBulkDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/productTypes/types/ProductTypeCreate.ts b/src/productTypes/types/ProductTypeCreate.ts index 6378ac089..fa65f29a8 100644 --- a/src/productTypes/types/ProductTypeCreate.ts +++ b/src/productTypes/types/ProductTypeCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductTypeInput, AttributeTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/productTypes/types/ProductTypeCreateData.ts b/src/productTypes/types/ProductTypeCreateData.ts index dc178c09c..67a6c1efd 100644 --- a/src/productTypes/types/ProductTypeCreateData.ts +++ b/src/productTypes/types/ProductTypeCreateData.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/productTypes/types/ProductTypeDelete.ts b/src/productTypes/types/ProductTypeDelete.ts index ea5c2a1b0..16a94d690 100644 --- a/src/productTypes/types/ProductTypeDelete.ts +++ b/src/productTypes/types/ProductTypeDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/productTypes/types/ProductTypeDetails.ts b/src/productTypes/types/ProductTypeDetails.ts index bb60bf067..4ebad1be7 100644 --- a/src/productTypes/types/ProductTypeDetails.ts +++ b/src/productTypes/types/ProductTypeDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/productTypes/types/ProductTypeList.ts b/src/productTypes/types/ProductTypeList.ts index 0a8d69624..d0d5a0934 100644 --- a/src/productTypes/types/ProductTypeList.ts +++ b/src/productTypes/types/ProductTypeList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductTypeFilterInput, ProductTypeSortingInput } from "./../../types/globalTypes"; diff --git a/src/productTypes/types/ProductTypeUpdate.ts b/src/productTypes/types/ProductTypeUpdate.ts index 15a016321..1fd36e1aa 100644 --- a/src/productTypes/types/ProductTypeUpdate.ts +++ b/src/productTypes/types/ProductTypeUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductTypeInput, AttributeTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/productTypes/types/UnassignProductAttribute.ts b/src/productTypes/types/UnassignProductAttribute.ts index 5778bdca1..bac630ab9 100644 --- a/src/productTypes/types/UnassignProductAttribute.ts +++ b/src/productTypes/types/UnassignProductAttribute.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/products/types/CountAllProducts.ts b/src/products/types/CountAllProducts.ts index 1962d82e3..71d7a60ce 100644 --- a/src/products/types/CountAllProducts.ts +++ b/src/products/types/CountAllProducts.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/products/types/CreateMultipleVariantsData.ts b/src/products/types/CreateMultipleVariantsData.ts index 4dc515a03..6be7df30d 100644 --- a/src/products/types/CreateMultipleVariantsData.ts +++ b/src/products/types/CreateMultipleVariantsData.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/products/types/GridAttributes.ts b/src/products/types/GridAttributes.ts index e705057ac..5a25921c0 100644 --- a/src/products/types/GridAttributes.ts +++ b/src/products/types/GridAttributes.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/products/types/InitialProductFilterData.ts b/src/products/types/InitialProductFilterData.ts index 0c982e04b..f3ea23ebe 100644 --- a/src/products/types/InitialProductFilterData.ts +++ b/src/products/types/InitialProductFilterData.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/products/types/ProductChannelListingUpdate.ts b/src/products/types/ProductChannelListingUpdate.ts index 04b765195..efe5d093c 100644 --- a/src/products/types/ProductChannelListingUpdate.ts +++ b/src/products/types/ProductChannelListingUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductChannelListingUpdateInput, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum, ProductErrorCode } from "./../../types/globalTypes"; @@ -263,7 +264,7 @@ export interface ProductChannelListingUpdate_productChannelListingUpdate_product category: ProductChannelListingUpdate_productChannelListingUpdate_product_category | null; collections: (ProductChannelListingUpdate_productChannelListingUpdate_product_collections | null)[] | null; chargeTaxes: boolean; - media: (ProductChannelListingUpdate_productChannelListingUpdate_product_media | null)[] | null; + media: ProductChannelListingUpdate_productChannelListingUpdate_product_media[] | null; isAvailable: boolean | null; variants: (ProductChannelListingUpdate_productChannelListingUpdate_product_variants | null)[] | null; weight: ProductChannelListingUpdate_productChannelListingUpdate_product_weight | null; diff --git a/src/products/types/ProductCreate.ts b/src/products/types/ProductCreate.ts index fd8638fb8..19f893573 100644 --- a/src/products/types/ProductCreate.ts +++ b/src/products/types/ProductCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductCreateInput, ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -270,7 +271,7 @@ export interface ProductCreate_productCreate_product { category: ProductCreate_productCreate_product_category | null; collections: (ProductCreate_productCreate_product_collections | null)[] | null; chargeTaxes: boolean; - media: (ProductCreate_productCreate_product_media | null)[] | null; + media: ProductCreate_productCreate_product_media[] | null; isAvailable: boolean | null; variants: (ProductCreate_productCreate_product_variants | null)[] | null; weight: ProductCreate_productCreate_product_weight | null; diff --git a/src/products/types/ProductDelete.ts b/src/products/types/ProductDelete.ts index 3d64102f3..1e46db655 100644 --- a/src/products/types/ProductDelete.ts +++ b/src/products/types/ProductDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/products/types/ProductDetails.ts b/src/products/types/ProductDetails.ts index 722b089ae..2446716d4 100644 --- a/src/products/types/ProductDetails.ts +++ b/src/products/types/ProductDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -263,7 +264,7 @@ export interface ProductDetails_product { category: ProductDetails_product_category | null; collections: (ProductDetails_product_collections | null)[] | null; chargeTaxes: boolean; - media: (ProductDetails_product_media | null)[] | null; + media: ProductDetails_product_media[] | null; isAvailable: boolean | null; variants: (ProductDetails_product_variants | null)[] | null; weight: ProductDetails_product_weight | null; diff --git a/src/products/types/ProductExport.ts b/src/products/types/ProductExport.ts index fcc17aad1..9117b015f 100644 --- a/src/products/types/ProductExport.ts +++ b/src/products/types/ProductExport.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ExportProductsInput, JobStatusEnum, ExportErrorCode } from "./../../types/globalTypes"; diff --git a/src/products/types/ProductList.ts b/src/products/types/ProductList.ts index a7015fa3a..745be758f 100644 --- a/src/products/types/ProductList.ts +++ b/src/products/types/ProductList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductFilterInput, ProductOrder } from "./../../types/globalTypes"; diff --git a/src/products/types/ProductMediaById.ts b/src/products/types/ProductMediaById.ts index bb3f3d1be..33639570c 100644 --- a/src/products/types/ProductMediaById.ts +++ b/src/products/types/ProductMediaById.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductMediaType } from "./../../types/globalTypes"; @@ -31,7 +32,7 @@ export interface ProductMediaById_product { id: string; name: string; mainImage: ProductMediaById_product_mainImage; - media: (ProductMediaById_product_media | null)[] | null; + media: ProductMediaById_product_media[] | null; } export interface ProductMediaById { diff --git a/src/products/types/ProductMediaCreate.ts b/src/products/types/ProductMediaCreate.ts index b5d2e4a7a..b0a767b2d 100644 --- a/src/products/types/ProductMediaCreate.ts +++ b/src/products/types/ProductMediaCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -269,7 +270,7 @@ export interface ProductMediaCreate_productMediaCreate_product { category: ProductMediaCreate_productMediaCreate_product_category | null; collections: (ProductMediaCreate_productMediaCreate_product_collections | null)[] | null; chargeTaxes: boolean; - media: (ProductMediaCreate_productMediaCreate_product_media | null)[] | null; + media: ProductMediaCreate_productMediaCreate_product_media[] | null; isAvailable: boolean | null; variants: (ProductMediaCreate_productMediaCreate_product_variants | null)[] | null; weight: ProductMediaCreate_productMediaCreate_product_weight | null; diff --git a/src/products/types/ProductMediaDelete.ts b/src/products/types/ProductMediaDelete.ts index 691c67edc..2c281cd4b 100644 --- a/src/products/types/ProductMediaDelete.ts +++ b/src/products/types/ProductMediaDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; @@ -22,7 +23,7 @@ export interface ProductMediaDelete_productMediaDelete_product_media { export interface ProductMediaDelete_productMediaDelete_product { __typename: "Product"; id: string; - media: (ProductMediaDelete_productMediaDelete_product_media | null)[] | null; + media: ProductMediaDelete_productMediaDelete_product_media[] | null; } export interface ProductMediaDelete_productMediaDelete { diff --git a/src/products/types/ProductMediaReorder.ts b/src/products/types/ProductMediaReorder.ts index 246cb542d..5a900f461 100644 --- a/src/products/types/ProductMediaReorder.ts +++ b/src/products/types/ProductMediaReorder.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; @@ -25,7 +26,7 @@ export interface ProductMediaReorder_productMediaReorder_product_media { export interface ProductMediaReorder_productMediaReorder_product { __typename: "Product"; id: string; - media: (ProductMediaReorder_productMediaReorder_product_media | null)[] | null; + media: ProductMediaReorder_productMediaReorder_product_media[] | null; } export interface ProductMediaReorder_productMediaReorder { diff --git a/src/products/types/ProductMediaUpdate.ts b/src/products/types/ProductMediaUpdate.ts index 7998a32b0..f0fdf95a4 100644 --- a/src/products/types/ProductMediaUpdate.ts +++ b/src/products/types/ProductMediaUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -269,7 +270,7 @@ export interface ProductMediaUpdate_productMediaUpdate_product { category: ProductMediaUpdate_productMediaUpdate_product_category | null; collections: (ProductMediaUpdate_productMediaUpdate_product_collections | null)[] | null; chargeTaxes: boolean; - media: (ProductMediaUpdate_productMediaUpdate_product_media | null)[] | null; + media: ProductMediaUpdate_productMediaUpdate_product_media[] | null; isAvailable: boolean | null; variants: (ProductMediaUpdate_productMediaUpdate_product_variants | null)[] | null; weight: ProductMediaUpdate_productMediaUpdate_product_weight | null; diff --git a/src/products/types/ProductUpdate.ts b/src/products/types/ProductUpdate.ts index 881f69fdc..eab22f2c5 100644 --- a/src/products/types/ProductUpdate.ts +++ b/src/products/types/ProductUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductInput, ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -270,7 +271,7 @@ export interface ProductUpdate_productUpdate_product { category: ProductUpdate_productUpdate_product_category | null; collections: (ProductUpdate_productUpdate_product_collections | null)[] | null; chargeTaxes: boolean; - media: (ProductUpdate_productUpdate_product_media | null)[] | null; + media: ProductUpdate_productUpdate_product_media[] | null; isAvailable: boolean | null; variants: (ProductUpdate_productUpdate_product_variants | null)[] | null; weight: ProductUpdate_productUpdate_product_weight | null; diff --git a/src/products/types/ProductVariantBulkCreate.ts b/src/products/types/ProductVariantBulkCreate.ts index ee3603eb8..54ba55b74 100644 --- a/src/products/types/ProductVariantBulkCreate.ts +++ b/src/products/types/ProductVariantBulkCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductVariantBulkCreateInput, ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/products/types/ProductVariantBulkDelete.ts b/src/products/types/ProductVariantBulkDelete.ts index 4463eca72..c45c33641 100644 --- a/src/products/types/ProductVariantBulkDelete.ts +++ b/src/products/types/ProductVariantBulkDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/products/types/ProductVariantChannelListingUpdate.ts b/src/products/types/ProductVariantChannelListingUpdate.ts index f51001a41..1dbd079cc 100644 --- a/src/products/types/ProductVariantChannelListingUpdate.ts +++ b/src/products/types/ProductVariantChannelListingUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductVariantChannelListingAddInput, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum, ProductErrorCode } from "./../../types/globalTypes"; @@ -208,7 +209,7 @@ export interface ProductVariantChannelListingUpdate_productVariantChannelListing __typename: "Product"; id: string; defaultVariant: ProductVariantChannelListingUpdate_productVariantChannelListingUpdate_variant_product_defaultVariant | null; - media: (ProductVariantChannelListingUpdate_productVariantChannelListingUpdate_variant_product_media | null)[] | null; + media: ProductVariantChannelListingUpdate_productVariantChannelListingUpdate_variant_product_media[] | null; name: string; thumbnail: ProductVariantChannelListingUpdate_productVariantChannelListingUpdate_variant_product_thumbnail | null; channelListings: ProductVariantChannelListingUpdate_productVariantChannelListingUpdate_variant_product_channelListings[] | null; diff --git a/src/products/types/ProductVariantCreateData.ts b/src/products/types/ProductVariantCreateData.ts index 74c903da2..eac020b24 100644 --- a/src/products/types/ProductVariantCreateData.ts +++ b/src/products/types/ProductVariantCreateData.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType } from "./../../types/globalTypes"; @@ -109,7 +110,7 @@ export interface ProductVariantCreateData_product_variants { export interface ProductVariantCreateData_product { __typename: "Product"; id: string; - media: (ProductVariantCreateData_product_media | null)[] | null; + media: ProductVariantCreateData_product_media[] | null; channelListings: ProductVariantCreateData_product_channelListings[] | null; name: string; productType: ProductVariantCreateData_product_productType; diff --git a/src/products/types/ProductVariantDetails.ts b/src/products/types/ProductVariantDetails.ts index bd8636944..b85dd64a2 100644 --- a/src/products/types/ProductVariantDetails.ts +++ b/src/products/types/ProductVariantDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -208,7 +209,7 @@ export interface ProductVariantDetails_productVariant_product { __typename: "Product"; id: string; defaultVariant: ProductVariantDetails_productVariant_product_defaultVariant | null; - media: (ProductVariantDetails_productVariant_product_media | null)[] | null; + media: ProductVariantDetails_productVariant_product_media[] | null; name: string; thumbnail: ProductVariantDetails_productVariant_product_thumbnail | null; channelListings: ProductVariantDetails_productVariant_product_channelListings[] | null; diff --git a/src/products/types/ProductVariantReorder.ts b/src/products/types/ProductVariantReorder.ts index bd1329dcf..355621fbd 100644 --- a/src/products/types/ProductVariantReorder.ts +++ b/src/products/types/ProductVariantReorder.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ReorderInput, ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -269,7 +270,7 @@ export interface ProductVariantReorder_productVariantReorder_product { category: ProductVariantReorder_productVariantReorder_product_category | null; collections: (ProductVariantReorder_productVariantReorder_product_collections | null)[] | null; chargeTaxes: boolean; - media: (ProductVariantReorder_productVariantReorder_product_media | null)[] | null; + media: ProductVariantReorder_productVariantReorder_product_media[] | null; isAvailable: boolean | null; variants: (ProductVariantReorder_productVariantReorder_product_variants | null)[] | null; weight: ProductVariantReorder_productVariantReorder_product_weight | null; diff --git a/src/products/types/ProductVariantSetDefault.ts b/src/products/types/ProductVariantSetDefault.ts index b2975dd2c..16688fb51 100644 --- a/src/products/types/ProductVariantSetDefault.ts +++ b/src/products/types/ProductVariantSetDefault.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -269,7 +270,7 @@ export interface ProductVariantSetDefault_productVariantSetDefault_product { category: ProductVariantSetDefault_productVariantSetDefault_product_category | null; collections: (ProductVariantSetDefault_productVariantSetDefault_product_collections | null)[] | null; chargeTaxes: boolean; - media: (ProductVariantSetDefault_productVariantSetDefault_product_media | null)[] | null; + media: ProductVariantSetDefault_productVariantSetDefault_product_media[] | null; isAvailable: boolean | null; variants: (ProductVariantSetDefault_productVariantSetDefault_product_variants | null)[] | null; weight: ProductVariantSetDefault_productVariantSetDefault_product_weight | null; diff --git a/src/products/types/SimpleProductUpdate.ts b/src/products/types/SimpleProductUpdate.ts index ad6f0e845..878054f1a 100644 --- a/src/products/types/SimpleProductUpdate.ts +++ b/src/products/types/SimpleProductUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductInput, ProductVariantInput, StockInput, ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum, StockErrorCode } from "./../../types/globalTypes"; @@ -270,7 +271,7 @@ export interface SimpleProductUpdate_productUpdate_product { category: SimpleProductUpdate_productUpdate_product_category | null; collections: (SimpleProductUpdate_productUpdate_product_collections | null)[] | null; chargeTaxes: boolean; - media: (SimpleProductUpdate_productUpdate_product_media | null)[] | null; + media: SimpleProductUpdate_productUpdate_product_media[] | null; isAvailable: boolean | null; variants: (SimpleProductUpdate_productUpdate_product_variants | null)[] | null; weight: SimpleProductUpdate_productUpdate_product_weight | null; @@ -490,7 +491,7 @@ export interface SimpleProductUpdate_productVariantUpdate_productVariant_product __typename: "Product"; id: string; defaultVariant: SimpleProductUpdate_productVariantUpdate_productVariant_product_defaultVariant | null; - media: (SimpleProductUpdate_productVariantUpdate_productVariant_product_media | null)[] | null; + media: SimpleProductUpdate_productVariantUpdate_productVariant_product_media[] | null; name: string; thumbnail: SimpleProductUpdate_productVariantUpdate_productVariant_product_thumbnail | null; channelListings: SimpleProductUpdate_productVariantUpdate_productVariant_product_channelListings[] | null; @@ -773,7 +774,7 @@ export interface SimpleProductUpdate_productVariantStocksCreate_productVariant_p __typename: "Product"; id: string; defaultVariant: SimpleProductUpdate_productVariantStocksCreate_productVariant_product_defaultVariant | null; - media: (SimpleProductUpdate_productVariantStocksCreate_productVariant_product_media | null)[] | null; + media: SimpleProductUpdate_productVariantStocksCreate_productVariant_product_media[] | null; name: string; thumbnail: SimpleProductUpdate_productVariantStocksCreate_productVariant_product_thumbnail | null; channelListings: SimpleProductUpdate_productVariantStocksCreate_productVariant_product_channelListings[] | null; @@ -1055,7 +1056,7 @@ export interface SimpleProductUpdate_productVariantStocksDelete_productVariant_p __typename: "Product"; id: string; defaultVariant: SimpleProductUpdate_productVariantStocksDelete_productVariant_product_defaultVariant | null; - media: (SimpleProductUpdate_productVariantStocksDelete_productVariant_product_media | null)[] | null; + media: SimpleProductUpdate_productVariantStocksDelete_productVariant_product_media[] | null; name: string; thumbnail: SimpleProductUpdate_productVariantStocksDelete_productVariant_product_thumbnail | null; channelListings: SimpleProductUpdate_productVariantStocksDelete_productVariant_product_channelListings[] | null; @@ -1338,7 +1339,7 @@ export interface SimpleProductUpdate_productVariantStocksUpdate_productVariant_p __typename: "Product"; id: string; defaultVariant: SimpleProductUpdate_productVariantStocksUpdate_productVariant_product_defaultVariant | null; - media: (SimpleProductUpdate_productVariantStocksUpdate_productVariant_product_media | null)[] | null; + media: SimpleProductUpdate_productVariantStocksUpdate_productVariant_product_media[] | null; name: string; thumbnail: SimpleProductUpdate_productVariantStocksUpdate_productVariant_product_thumbnail | null; channelListings: SimpleProductUpdate_productVariantStocksUpdate_productVariant_product_channelListings[] | null; diff --git a/src/products/types/VariantCreate.ts b/src/products/types/VariantCreate.ts index ee8046f6a..847b15da6 100644 --- a/src/products/types/VariantCreate.ts +++ b/src/products/types/VariantCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductVariantCreateInput, ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -215,7 +216,7 @@ export interface VariantCreate_productVariantCreate_productVariant_product { __typename: "Product"; id: string; defaultVariant: VariantCreate_productVariantCreate_productVariant_product_defaultVariant | null; - media: (VariantCreate_productVariantCreate_productVariant_product_media | null)[] | null; + media: VariantCreate_productVariantCreate_productVariant_product_media[] | null; name: string; thumbnail: VariantCreate_productVariantCreate_productVariant_product_thumbnail | null; channelListings: VariantCreate_productVariantCreate_productVariant_product_channelListings[] | null; diff --git a/src/products/types/VariantDelete.ts b/src/products/types/VariantDelete.ts index 48c85f2c0..b2596f689 100644 --- a/src/products/types/VariantDelete.ts +++ b/src/products/types/VariantDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/products/types/VariantMediaAssign.ts b/src/products/types/VariantMediaAssign.ts index 1318be1b4..2cb99dba5 100644 --- a/src/products/types/VariantMediaAssign.ts +++ b/src/products/types/VariantMediaAssign.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -214,7 +215,7 @@ export interface VariantMediaAssign_variantMediaAssign_productVariant_product { __typename: "Product"; id: string; defaultVariant: VariantMediaAssign_variantMediaAssign_productVariant_product_defaultVariant | null; - media: (VariantMediaAssign_variantMediaAssign_productVariant_product_media | null)[] | null; + media: VariantMediaAssign_variantMediaAssign_productVariant_product_media[] | null; name: string; thumbnail: VariantMediaAssign_variantMediaAssign_productVariant_product_thumbnail | null; channelListings: VariantMediaAssign_variantMediaAssign_productVariant_product_channelListings[] | null; diff --git a/src/products/types/VariantMediaUnassign.ts b/src/products/types/VariantMediaUnassign.ts index 1e954a2c1..a1bbca6df 100644 --- a/src/products/types/VariantMediaUnassign.ts +++ b/src/products/types/VariantMediaUnassign.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum } from "./../../types/globalTypes"; @@ -214,7 +215,7 @@ export interface VariantMediaUnassign_variantMediaUnassign_productVariant_produc __typename: "Product"; id: string; defaultVariant: VariantMediaUnassign_variantMediaUnassign_productVariant_product_defaultVariant | null; - media: (VariantMediaUnassign_variantMediaUnassign_productVariant_product_media | null)[] | null; + media: VariantMediaUnassign_variantMediaUnassign_productVariant_product_media[] | null; name: string; thumbnail: VariantMediaUnassign_variantMediaUnassign_productVariant_product_thumbnail | null; channelListings: VariantMediaUnassign_variantMediaUnassign_productVariant_product_channelListings[] | null; diff --git a/src/products/types/VariantUpdate.ts b/src/products/types/VariantUpdate.ts index 31811b2ae..c423649a5 100644 --- a/src/products/types/VariantUpdate.ts +++ b/src/products/types/VariantUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { StockInput, AttributeValueInput, ProductErrorCode, AttributeInputTypeEnum, AttributeEntityTypeEnum, ProductMediaType, WeightUnitsEnum, StockErrorCode } from "./../../types/globalTypes"; @@ -215,7 +216,7 @@ export interface VariantUpdate_productVariantUpdate_productVariant_product { __typename: "Product"; id: string; defaultVariant: VariantUpdate_productVariantUpdate_productVariant_product_defaultVariant | null; - media: (VariantUpdate_productVariantUpdate_productVariant_product_media | null)[] | null; + media: VariantUpdate_productVariantUpdate_productVariant_product_media[] | null; name: string; thumbnail: VariantUpdate_productVariantUpdate_productVariant_product_thumbnail | null; channelListings: VariantUpdate_productVariantUpdate_productVariant_product_channelListings[] | null; @@ -498,7 +499,7 @@ export interface VariantUpdate_productVariantStocksUpdate_productVariant_product __typename: "Product"; id: string; defaultVariant: VariantUpdate_productVariantStocksUpdate_productVariant_product_defaultVariant | null; - media: (VariantUpdate_productVariantStocksUpdate_productVariant_product_media | null)[] | null; + media: VariantUpdate_productVariantStocksUpdate_productVariant_product_media[] | null; name: string; thumbnail: VariantUpdate_productVariantStocksUpdate_productVariant_product_thumbnail | null; channelListings: VariantUpdate_productVariantStocksUpdate_productVariant_product_channelListings[] | null; diff --git a/src/products/types/productBulkDelete.ts b/src/products/types/productBulkDelete.ts index 3164f7b6c..cf1bdbd50 100644 --- a/src/products/types/productBulkDelete.ts +++ b/src/products/types/productBulkDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ProductErrorCode } from "./../../types/globalTypes"; diff --git a/src/searches/types/SearchAttributes.ts b/src/searches/types/SearchAttributes.ts index 6446abe56..093770160 100644 --- a/src/searches/types/SearchAttributes.ts +++ b/src/searches/types/SearchAttributes.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/searches/types/SearchCategories.ts b/src/searches/types/SearchCategories.ts index 8b05ba28a..bddd287c9 100644 --- a/src/searches/types/SearchCategories.ts +++ b/src/searches/types/SearchCategories.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/searches/types/SearchCollections.ts b/src/searches/types/SearchCollections.ts index 18718886b..7f2f50f3c 100644 --- a/src/searches/types/SearchCollections.ts +++ b/src/searches/types/SearchCollections.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/searches/types/SearchCustomers.ts b/src/searches/types/SearchCustomers.ts index 37c864c0b..61c118074 100644 --- a/src/searches/types/SearchCustomers.ts +++ b/src/searches/types/SearchCustomers.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/searches/types/SearchPageTypes.ts b/src/searches/types/SearchPageTypes.ts index faab63336..18b03f0e2 100644 --- a/src/searches/types/SearchPageTypes.ts +++ b/src/searches/types/SearchPageTypes.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/searches/types/SearchPages.ts b/src/searches/types/SearchPages.ts index 7ecfed264..691e17922 100644 --- a/src/searches/types/SearchPages.ts +++ b/src/searches/types/SearchPages.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/searches/types/SearchPermissionGroups.ts b/src/searches/types/SearchPermissionGroups.ts index 205fe7c97..884951755 100644 --- a/src/searches/types/SearchPermissionGroups.ts +++ b/src/searches/types/SearchPermissionGroups.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/searches/types/SearchProductTypes.ts b/src/searches/types/SearchProductTypes.ts index 01a45d57b..c51748017 100644 --- a/src/searches/types/SearchProductTypes.ts +++ b/src/searches/types/SearchProductTypes.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AttributeInputTypeEnum, AttributeEntityTypeEnum } from "./../../types/globalTypes"; diff --git a/src/searches/types/SearchProducts.ts b/src/searches/types/SearchProducts.ts index 3a944d21c..93ab6722f 100644 --- a/src/searches/types/SearchProducts.ts +++ b/src/searches/types/SearchProducts.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/searches/types/SearchStaffMembers.ts b/src/searches/types/SearchStaffMembers.ts index 08634b3a3..c25e9b51c 100644 --- a/src/searches/types/SearchStaffMembers.ts +++ b/src/searches/types/SearchStaffMembers.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/searches/types/SearchWarehouses.ts b/src/searches/types/SearchWarehouses.ts index beab7185b..530e1a49b 100644 --- a/src/searches/types/SearchWarehouses.ts +++ b/src/searches/types/SearchWarehouses.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/shipping/types/BulkDeleteShippingRate.ts b/src/shipping/types/BulkDeleteShippingRate.ts index 9432974c2..27bc833be 100644 --- a/src/shipping/types/BulkDeleteShippingRate.ts +++ b/src/shipping/types/BulkDeleteShippingRate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/shipping/types/BulkDeleteShippingZone.ts b/src/shipping/types/BulkDeleteShippingZone.ts index b3d66fe7f..c55171f5c 100644 --- a/src/shipping/types/BulkDeleteShippingZone.ts +++ b/src/shipping/types/BulkDeleteShippingZone.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/shipping/types/CreateShippingRate.ts b/src/shipping/types/CreateShippingRate.ts index b14849f1c..b6b5ac8b6 100644 --- a/src/shipping/types/CreateShippingRate.ts +++ b/src/shipping/types/CreateShippingRate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingPriceInput, ShippingErrorCode, PostalCodeRuleInclusionTypeEnum, WeightUnitsEnum, ShippingMethodTypeEnum } from "./../../types/globalTypes"; diff --git a/src/shipping/types/CreateShippingZone.ts b/src/shipping/types/CreateShippingZone.ts index 6daa14351..269925a69 100644 --- a/src/shipping/types/CreateShippingZone.ts +++ b/src/shipping/types/CreateShippingZone.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingZoneCreateInput, ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/shipping/types/DeleteShippingRate.ts b/src/shipping/types/DeleteShippingRate.ts index d71b61787..ebbfeed7f 100644 --- a/src/shipping/types/DeleteShippingRate.ts +++ b/src/shipping/types/DeleteShippingRate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingErrorCode, PostalCodeRuleInclusionTypeEnum, WeightUnitsEnum, ShippingMethodTypeEnum } from "./../../types/globalTypes"; diff --git a/src/shipping/types/DeleteShippingZone.ts b/src/shipping/types/DeleteShippingZone.ts index 6885f77cc..016e76447 100644 --- a/src/shipping/types/DeleteShippingZone.ts +++ b/src/shipping/types/DeleteShippingZone.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/shipping/types/ShippingMethodChannelListingUpdate.ts b/src/shipping/types/ShippingMethodChannelListingUpdate.ts index dc8122772..300b00b65 100644 --- a/src/shipping/types/ShippingMethodChannelListingUpdate.ts +++ b/src/shipping/types/ShippingMethodChannelListingUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingMethodChannelListingInput, PostalCodeRuleInclusionTypeEnum, WeightUnitsEnum, ShippingMethodTypeEnum, ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/shipping/types/ShippingPriceExcludeProduct.ts b/src/shipping/types/ShippingPriceExcludeProduct.ts index cf70df077..058714b63 100644 --- a/src/shipping/types/ShippingPriceExcludeProduct.ts +++ b/src/shipping/types/ShippingPriceExcludeProduct.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingPriceExcludeProductsInput, ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/shipping/types/ShippingPriceRemoveProductFromExclude.ts b/src/shipping/types/ShippingPriceRemoveProductFromExclude.ts index 1c55c5bf4..1bdf31412 100644 --- a/src/shipping/types/ShippingPriceRemoveProductFromExclude.ts +++ b/src/shipping/types/ShippingPriceRemoveProductFromExclude.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/shipping/types/ShippingZone.ts b/src/shipping/types/ShippingZone.ts index 7e8f24f83..635715557 100644 --- a/src/shipping/types/ShippingZone.ts +++ b/src/shipping/types/ShippingZone.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PostalCodeRuleInclusionTypeEnum, WeightUnitsEnum, ShippingMethodTypeEnum } from "./../../types/globalTypes"; diff --git a/src/shipping/types/ShippingZones.ts b/src/shipping/types/ShippingZones.ts index 99a916308..8e36282a1 100644 --- a/src/shipping/types/ShippingZones.ts +++ b/src/shipping/types/ShippingZones.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/shipping/types/UpdateDefaultWeightUnit.ts b/src/shipping/types/UpdateDefaultWeightUnit.ts index ffd185544..c795a7c08 100644 --- a/src/shipping/types/UpdateDefaultWeightUnit.ts +++ b/src/shipping/types/UpdateDefaultWeightUnit.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WeightUnitsEnum } from "./../../types/globalTypes"; diff --git a/src/shipping/types/UpdateShippingRate.ts b/src/shipping/types/UpdateShippingRate.ts index 6e30ff3f0..53f89a8e3 100644 --- a/src/shipping/types/UpdateShippingRate.ts +++ b/src/shipping/types/UpdateShippingRate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingPriceInput, ShippingErrorCode, PostalCodeRuleInclusionTypeEnum, WeightUnitsEnum, ShippingMethodTypeEnum } from "./../../types/globalTypes"; diff --git a/src/shipping/types/UpdateShippingZone.ts b/src/shipping/types/UpdateShippingZone.ts index 00afffe85..eb0a6eb59 100644 --- a/src/shipping/types/UpdateShippingZone.ts +++ b/src/shipping/types/UpdateShippingZone.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShippingZoneUpdateInput, ShippingErrorCode } from "./../../types/globalTypes"; diff --git a/src/siteSettings/types/ShopSettingsUpdate.ts b/src/siteSettings/types/ShopSettingsUpdate.ts index d977d871e..9eb6834eb 100644 --- a/src/siteSettings/types/ShopSettingsUpdate.ts +++ b/src/siteSettings/types/ShopSettingsUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { SiteDomainInput, ShopSettingsInput, AddressInput, ShopErrorCode } from "./../../types/globalTypes"; diff --git a/src/siteSettings/types/SiteSettings.ts b/src/siteSettings/types/SiteSettings.ts index a61a5ee23..a08258917 100644 --- a/src/siteSettings/types/SiteSettings.ts +++ b/src/siteSettings/types/SiteSettings.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/staff/types/ChangeStaffPassword.ts b/src/staff/types/ChangeStaffPassword.ts index 5df09fe97..19e8283a5 100644 --- a/src/staff/types/ChangeStaffPassword.ts +++ b/src/staff/types/ChangeStaffPassword.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/staff/types/StaffAvatarDelete.ts b/src/staff/types/StaffAvatarDelete.ts index 0d74345e7..5e1f9f360 100644 --- a/src/staff/types/StaffAvatarDelete.ts +++ b/src/staff/types/StaffAvatarDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/staff/types/StaffAvatarUpdate.ts b/src/staff/types/StaffAvatarUpdate.ts index 4b0746ad5..1420276bb 100644 --- a/src/staff/types/StaffAvatarUpdate.ts +++ b/src/staff/types/StaffAvatarUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/staff/types/StaffList.ts b/src/staff/types/StaffList.ts index 14e4df092..3003b52fc 100644 --- a/src/staff/types/StaffList.ts +++ b/src/staff/types/StaffList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { StaffUserInput, UserSortingInput } from "./../../types/globalTypes"; diff --git a/src/staff/types/StaffMemberAdd.ts b/src/staff/types/StaffMemberAdd.ts index d5b176cff..a93bcbd81 100644 --- a/src/staff/types/StaffMemberAdd.ts +++ b/src/staff/types/StaffMemberAdd.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { StaffCreateInput, AccountErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/staff/types/StaffMemberDelete.ts b/src/staff/types/StaffMemberDelete.ts index 96d630e80..036e20505 100644 --- a/src/staff/types/StaffMemberDelete.ts +++ b/src/staff/types/StaffMemberDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { AccountErrorCode } from "./../../types/globalTypes"; diff --git a/src/staff/types/StaffMemberDetails.ts b/src/staff/types/StaffMemberDetails.ts index 2ec999c1a..c4e407c7d 100644 --- a/src/staff/types/StaffMemberDetails.ts +++ b/src/staff/types/StaffMemberDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/staff/types/StaffMemberUpdate.ts b/src/staff/types/StaffMemberUpdate.ts index abf093d50..13ce87a31 100644 --- a/src/staff/types/StaffMemberUpdate.ts +++ b/src/staff/types/StaffMemberUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { StaffUpdateInput, AccountErrorCode, PermissionEnum } from "./../../types/globalTypes"; diff --git a/src/taxes/types/CountryList.ts b/src/taxes/types/CountryList.ts index 37f99b82f..e8d00d586 100644 --- a/src/taxes/types/CountryList.ts +++ b/src/taxes/types/CountryList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { TaxRateType } from "./../../types/globalTypes"; diff --git a/src/taxes/types/FetchTaxes.ts b/src/taxes/types/FetchTaxes.ts index d2fc7e2c8..e2059ed71 100644 --- a/src/taxes/types/FetchTaxes.ts +++ b/src/taxes/types/FetchTaxes.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/taxes/types/TaxTypeList.ts b/src/taxes/types/TaxTypeList.ts index 1f241905d..6a6fa494a 100644 --- a/src/taxes/types/TaxTypeList.ts +++ b/src/taxes/types/TaxTypeList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/taxes/types/UpdateTaxSettings.ts b/src/taxes/types/UpdateTaxSettings.ts index 9477d0c13..f30895c69 100644 --- a/src/taxes/types/UpdateTaxSettings.ts +++ b/src/taxes/types/UpdateTaxSettings.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { ShopSettingsInput } from "./../../types/globalTypes"; diff --git a/src/translations/types/AttributeTranslationDetails.ts b/src/translations/types/AttributeTranslationDetails.ts index 08d6a26cf..1c9a8a6e6 100644 --- a/src/translations/types/AttributeTranslationDetails.ts +++ b/src/translations/types/AttributeTranslationDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/AttributeTranslations.ts b/src/translations/types/AttributeTranslations.ts index 6ef26b89c..8591e0893 100644 --- a/src/translations/types/AttributeTranslations.ts +++ b/src/translations/types/AttributeTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/CategoryTranslationDetails.ts b/src/translations/types/CategoryTranslationDetails.ts index 1407289a3..45b92ea3c 100644 --- a/src/translations/types/CategoryTranslationDetails.ts +++ b/src/translations/types/CategoryTranslationDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/CategoryTranslations.ts b/src/translations/types/CategoryTranslations.ts index 8a2ad4fb2..dc6d20b58 100644 --- a/src/translations/types/CategoryTranslations.ts +++ b/src/translations/types/CategoryTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/CollectionTranslationDetails.ts b/src/translations/types/CollectionTranslationDetails.ts index 4e70171af..936ccba5a 100644 --- a/src/translations/types/CollectionTranslationDetails.ts +++ b/src/translations/types/CollectionTranslationDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/CollectionTranslations.ts b/src/translations/types/CollectionTranslations.ts index 5ea2f16e4..a998ff43a 100644 --- a/src/translations/types/CollectionTranslations.ts +++ b/src/translations/types/CollectionTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/PageTranslationDetails.ts b/src/translations/types/PageTranslationDetails.ts index e208f22de..99d3ab343 100644 --- a/src/translations/types/PageTranslationDetails.ts +++ b/src/translations/types/PageTranslationDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/PageTranslations.ts b/src/translations/types/PageTranslations.ts index ba01bc4f8..a7802639b 100644 --- a/src/translations/types/PageTranslations.ts +++ b/src/translations/types/PageTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/ProductTranslationDetails.ts b/src/translations/types/ProductTranslationDetails.ts index 4aa5b923e..9620c93c7 100644 --- a/src/translations/types/ProductTranslationDetails.ts +++ b/src/translations/types/ProductTranslationDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/ProductTranslations.ts b/src/translations/types/ProductTranslations.ts index 748c04738..080215ff1 100644 --- a/src/translations/types/ProductTranslations.ts +++ b/src/translations/types/ProductTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/SaleTranslationDetails.ts b/src/translations/types/SaleTranslationDetails.ts index b17ea3fa7..80d6a89d1 100644 --- a/src/translations/types/SaleTranslationDetails.ts +++ b/src/translations/types/SaleTranslationDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/SaleTranslations.ts b/src/translations/types/SaleTranslations.ts index ce5cb1812..74ab637bb 100644 --- a/src/translations/types/SaleTranslations.ts +++ b/src/translations/types/SaleTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/ShippingMethodTranslationDetails.ts b/src/translations/types/ShippingMethodTranslationDetails.ts index 417f238f5..8f896fd27 100644 --- a/src/translations/types/ShippingMethodTranslationDetails.ts +++ b/src/translations/types/ShippingMethodTranslationDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/ShippingMethodTranslations.ts b/src/translations/types/ShippingMethodTranslations.ts index 5df403694..0990bc63e 100644 --- a/src/translations/types/ShippingMethodTranslations.ts +++ b/src/translations/types/ShippingMethodTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/UpdateAttributeTranslations.ts b/src/translations/types/UpdateAttributeTranslations.ts index 29865908e..1050f5346 100644 --- a/src/translations/types/UpdateAttributeTranslations.ts +++ b/src/translations/types/UpdateAttributeTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { NameTranslationInput, LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/UpdateAttributeValueTranslations.ts b/src/translations/types/UpdateAttributeValueTranslations.ts index 58a073a68..a045867c2 100644 --- a/src/translations/types/UpdateAttributeValueTranslations.ts +++ b/src/translations/types/UpdateAttributeValueTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { NameTranslationInput, LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/UpdateCategoryTranslations.ts b/src/translations/types/UpdateCategoryTranslations.ts index ac0ed3b35..c3d0c0f8b 100644 --- a/src/translations/types/UpdateCategoryTranslations.ts +++ b/src/translations/types/UpdateCategoryTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { TranslationInput, LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/UpdateCollectionTranslations.ts b/src/translations/types/UpdateCollectionTranslations.ts index 6072b1cf9..0cdde2931 100644 --- a/src/translations/types/UpdateCollectionTranslations.ts +++ b/src/translations/types/UpdateCollectionTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { TranslationInput, LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/UpdatePageTranslations.ts b/src/translations/types/UpdatePageTranslations.ts index 56020a3e0..761ae01e7 100644 --- a/src/translations/types/UpdatePageTranslations.ts +++ b/src/translations/types/UpdatePageTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { PageTranslationInput, LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/UpdateProductTranslations.ts b/src/translations/types/UpdateProductTranslations.ts index 0fd4c837d..f258d887d 100644 --- a/src/translations/types/UpdateProductTranslations.ts +++ b/src/translations/types/UpdateProductTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { TranslationInput, LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/UpdateSaleTranslations.ts b/src/translations/types/UpdateSaleTranslations.ts index 05a4d26f9..c6ee62653 100644 --- a/src/translations/types/UpdateSaleTranslations.ts +++ b/src/translations/types/UpdateSaleTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { NameTranslationInput, LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/UpdateShippingMethodTranslations.ts b/src/translations/types/UpdateShippingMethodTranslations.ts index 4b0be9012..ba1fb1b5a 100644 --- a/src/translations/types/UpdateShippingMethodTranslations.ts +++ b/src/translations/types/UpdateShippingMethodTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { NameTranslationInput, LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/UpdateVoucherTranslations.ts b/src/translations/types/UpdateVoucherTranslations.ts index 156c5af8c..e8d837548 100644 --- a/src/translations/types/UpdateVoucherTranslations.ts +++ b/src/translations/types/UpdateVoucherTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { NameTranslationInput, LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/VoucherTranslationDetails.ts b/src/translations/types/VoucherTranslationDetails.ts index 486d0e24e..87c5dfa0d 100644 --- a/src/translations/types/VoucherTranslationDetails.ts +++ b/src/translations/types/VoucherTranslationDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/translations/types/VoucherTranslations.ts b/src/translations/types/VoucherTranslations.ts index 4ca6bf6f2..3bffd89e4 100644 --- a/src/translations/types/VoucherTranslations.ts +++ b/src/translations/types/VoucherTranslations.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { LanguageCodeEnum } from "./../../types/globalTypes"; diff --git a/src/types/globalTypes.ts b/src/types/globalTypes.ts index 63296064d..212e5c77b 100644 --- a/src/types/globalTypes.ts +++ b/src/types/globalTypes.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. //============================================================== @@ -1088,6 +1089,7 @@ export interface AttributeFilterInput { filterableInStorefront?: boolean | null; filterableInDashboard?: boolean | null; availableInGrid?: boolean | null; + metadata?: (MetadataInput | null)[] | null; search?: string | null; ids?: (string | null)[] | null; type?: AttributeTypeEnum | null; @@ -1123,6 +1125,7 @@ export interface AttributeUpdateInput { export interface AttributeValueCreateInput { name: string; + value?: string | null; } export interface AttributeValueInput { @@ -1146,6 +1149,7 @@ export interface CatalogueInput { export interface CategoryFilterInput { search?: string | null; + metadata?: (MetadataInput | null)[] | null; ids?: (string | null)[] | null; } @@ -1201,6 +1205,7 @@ export interface CollectionCreateInput { export interface CollectionFilterInput { published?: CollectionPublished | null; search?: string | null; + metadata?: (MetadataInput | null)[] | null; ids?: (string | null)[] | null; channel?: string | null; } @@ -1368,6 +1373,7 @@ export interface OrderDraftFilterInput { customer?: string | null; created?: DateRangeInput | null; search?: string | null; + metadata?: (MetadataInput | null)[] | null; channels?: (string | null)[] | null; } @@ -1377,6 +1383,7 @@ export interface OrderFilterInput { customer?: string | null; created?: DateRangeInput | null; search?: string | null; + metadata?: (MetadataInput | null)[] | null; channels?: (string | null)[] | null; } @@ -1602,6 +1609,7 @@ export interface ProductFilterInput { productType?: string | null; stocks?: ProductStockFilterInput | null; search?: string | null; + metadata?: (MetadataInput | null)[] | null; price?: PriceRangeInput | null; minimalPrice?: PriceRangeInput | null; productTypes?: (string | null)[] | null; @@ -1639,6 +1647,7 @@ export interface ProductTypeFilterInput { search?: string | null; configurable?: ProductTypeConfigurable | null; productType?: ProductTypeEnum | null; + metadata?: (MetadataInput | null)[] | null; ids?: (string | null)[] | null; } diff --git a/src/utils/metadata/types/UpdateMetadata.ts b/src/utils/metadata/types/UpdateMetadata.ts index b716158a1..807bf2b03 100644 --- a/src/utils/metadata/types/UpdateMetadata.ts +++ b/src/utils/metadata/types/UpdateMetadata.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MetadataInput, MetadataErrorCode } from "./../../../types/globalTypes"; diff --git a/src/utils/metadata/types/UpdatePrivateMetadata.ts b/src/utils/metadata/types/UpdatePrivateMetadata.ts index 1b1ebc89d..6b8ee3902 100644 --- a/src/utils/metadata/types/UpdatePrivateMetadata.ts +++ b/src/utils/metadata/types/UpdatePrivateMetadata.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { MetadataInput, MetadataErrorCode } from "./../../../types/globalTypes"; diff --git a/src/warehouses/types/WarehouseCreate.ts b/src/warehouses/types/WarehouseCreate.ts index 0cceb22dc..6cdb43ef2 100644 --- a/src/warehouses/types/WarehouseCreate.ts +++ b/src/warehouses/types/WarehouseCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WarehouseCreateInput, WarehouseErrorCode } from "./../../types/globalTypes"; diff --git a/src/warehouses/types/WarehouseDelete.ts b/src/warehouses/types/WarehouseDelete.ts index b1ad9cf46..778490c76 100644 --- a/src/warehouses/types/WarehouseDelete.ts +++ b/src/warehouses/types/WarehouseDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WarehouseErrorCode } from "./../../types/globalTypes"; diff --git a/src/warehouses/types/WarehouseDetails.ts b/src/warehouses/types/WarehouseDetails.ts index b48eb255a..c42f5f826 100644 --- a/src/warehouses/types/WarehouseDetails.ts +++ b/src/warehouses/types/WarehouseDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. // ==================================================== diff --git a/src/warehouses/types/WarehouseList.ts b/src/warehouses/types/WarehouseList.ts index 00e3b29e4..55ce9ae80 100644 --- a/src/warehouses/types/WarehouseList.ts +++ b/src/warehouses/types/WarehouseList.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WarehouseFilterInput, WarehouseSortingInput } from "./../../types/globalTypes"; diff --git a/src/warehouses/types/WarehouseUpdate.ts b/src/warehouses/types/WarehouseUpdate.ts index a44d12b2a..35b9a9f7b 100644 --- a/src/warehouses/types/WarehouseUpdate.ts +++ b/src/warehouses/types/WarehouseUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WarehouseUpdateInput, WarehouseErrorCode } from "./../../types/globalTypes"; diff --git a/src/webhooks/types/WebhookCreate.ts b/src/webhooks/types/WebhookCreate.ts index bfc58f7ba..a14ee43d9 100644 --- a/src/webhooks/types/WebhookCreate.ts +++ b/src/webhooks/types/WebhookCreate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WebhookCreateInput, WebhookErrorCode } from "./../../types/globalTypes"; diff --git a/src/webhooks/types/WebhookDelete.ts b/src/webhooks/types/WebhookDelete.ts index 8af582c7a..28e85b857 100644 --- a/src/webhooks/types/WebhookDelete.ts +++ b/src/webhooks/types/WebhookDelete.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WebhookErrorCode } from "./../../types/globalTypes"; diff --git a/src/webhooks/types/WebhookDetails.ts b/src/webhooks/types/WebhookDetails.ts index e4d2f5cc3..05b525920 100644 --- a/src/webhooks/types/WebhookDetails.ts +++ b/src/webhooks/types/WebhookDetails.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WebhookEventTypeEnum } from "./../../types/globalTypes"; diff --git a/src/webhooks/types/WebhookUpdate.ts b/src/webhooks/types/WebhookUpdate.ts index fc8d2b1a1..2435086c8 100644 --- a/src/webhooks/types/WebhookUpdate.ts +++ b/src/webhooks/types/WebhookUpdate.ts @@ -1,5 +1,6 @@ /* tslint:disable */ /* eslint-disable */ +// @generated // This file was automatically generated and should not be edited. import { WebhookUpdateInput, WebhookErrorCode } from "./../../types/globalTypes";