@gem-sdk/core 17.0.0-staging.46 → 17.0.0-staging.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/index.d.ts +174 -111
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -8242,17 +8242,6 @@ type Agency = {
|
|
|
8242
8242
|
titleBanner: Scalars['String']['output'];
|
|
8243
8243
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
8244
8244
|
};
|
|
8245
|
-
/**
|
|
8246
|
-
* AgencyBill represents the response for agencyBill query.
|
|
8247
|
-
* If bill exists, it returns immediately via GraphQL.
|
|
8248
|
-
* If bill needs calculation, client should listen to WebSocket for chunked data.
|
|
8249
|
-
*/
|
|
8250
|
-
type AgencyBill = {
|
|
8251
|
-
/** Existing bill from DB. Null if calculating on-the-fly. */
|
|
8252
|
-
bill?: Maybe<ShopPlatformBill>;
|
|
8253
|
-
/** True if bill is being calculated. Client should listen WebSocket topic getAgencyBill. */
|
|
8254
|
-
isCalculating: Scalars['Boolean']['output'];
|
|
8255
|
-
};
|
|
8256
8245
|
/**
|
|
8257
8246
|
* AgencyClientRel
|
|
8258
8247
|
* The relation between an agency and a client shop.
|
|
@@ -8675,9 +8664,7 @@ type AppType = 'CUSTOM'
|
|
|
8675
8664
|
/** Instant Landing Page */
|
|
8676
8665
|
| 'GEMPAGES'
|
|
8677
8666
|
/** GemPage V7 app */
|
|
8678
|
-
| 'GEMPAGESV7'
|
|
8679
|
-
/** GemUpsell app */
|
|
8680
|
-
| 'GEMUPSELL' | 'GEMX'
|
|
8667
|
+
| 'GEMPAGESV7' | 'GEMX'
|
|
8681
8668
|
/** GemX app */
|
|
8682
8669
|
| 'GEMXP';
|
|
8683
8670
|
/**
|
|
@@ -9183,6 +9170,10 @@ type BlogEdge = {
|
|
|
9183
9170
|
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
9184
9171
|
node?: Maybe<Blog>;
|
|
9185
9172
|
};
|
|
9173
|
+
type BlogObject = {
|
|
9174
|
+
baseID?: InputMaybe<Scalars['String']['input']>;
|
|
9175
|
+
handle?: InputMaybe<Scalars['String']['input']>;
|
|
9176
|
+
};
|
|
9186
9177
|
type BlogOrder = {
|
|
9187
9178
|
direction: OrderDirection;
|
|
9188
9179
|
field?: InputMaybe<BlogOrderField>;
|
|
@@ -10849,6 +10840,8 @@ type ClickedElement = {
|
|
|
10849
10840
|
selector?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10850
10841
|
/** Total clicks on this element */
|
|
10851
10842
|
totalClicks: Scalars['Int']['output'];
|
|
10843
|
+
/** Total clicks from sessions that generated revenue */
|
|
10844
|
+
totalClicksWithRevenue?: Maybe<Scalars['Int']['output']>;
|
|
10852
10845
|
/** Total ordered clicks on this element */
|
|
10853
10846
|
totalOrders: Scalars['Int']['output'];
|
|
10854
10847
|
/** Total revenue generated from clicks on this element */
|
|
@@ -11548,6 +11541,10 @@ type Coupon = {
|
|
|
11548
11541
|
code: Scalars['String']['output'];
|
|
11549
11542
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
11550
11543
|
id: Scalars['ID']['output'];
|
|
11544
|
+
/** Maximum total redemptions across all shops. NULL = unlimited. */
|
|
11545
|
+
maxApplications?: Maybe<Scalars['Int']['output']>;
|
|
11546
|
+
/** Maximum times one shop can redeem this coupon. NULL = unlimited. */
|
|
11547
|
+
maxApplicationsPerShop?: Maybe<Scalars['Int']['output']>;
|
|
11551
11548
|
promotion?: Maybe<Promotion>;
|
|
11552
11549
|
promotionID: Scalars['ID']['output'];
|
|
11553
11550
|
shopPlatformID?: Maybe<Scalars['ID']['output']>;
|
|
@@ -11701,6 +11698,28 @@ type CouponWhereInput = {
|
|
|
11701
11698
|
idLTE?: InputMaybe<Scalars['ID']['input']>;
|
|
11702
11699
|
idNEQ?: InputMaybe<Scalars['ID']['input']>;
|
|
11703
11700
|
idNotIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
11701
|
+
/** max_applications field predicates */
|
|
11702
|
+
maxApplications?: InputMaybe<Scalars['Int']['input']>;
|
|
11703
|
+
maxApplicationsGT?: InputMaybe<Scalars['Int']['input']>;
|
|
11704
|
+
maxApplicationsGTE?: InputMaybe<Scalars['Int']['input']>;
|
|
11705
|
+
maxApplicationsIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
11706
|
+
maxApplicationsIsNil?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11707
|
+
maxApplicationsLT?: InputMaybe<Scalars['Int']['input']>;
|
|
11708
|
+
maxApplicationsLTE?: InputMaybe<Scalars['Int']['input']>;
|
|
11709
|
+
maxApplicationsNEQ?: InputMaybe<Scalars['Int']['input']>;
|
|
11710
|
+
maxApplicationsNotIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
11711
|
+
maxApplicationsNotNil?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11712
|
+
/** max_applications_per_shop field predicates */
|
|
11713
|
+
maxApplicationsPerShop?: InputMaybe<Scalars['Int']['input']>;
|
|
11714
|
+
maxApplicationsPerShopGT?: InputMaybe<Scalars['Int']['input']>;
|
|
11715
|
+
maxApplicationsPerShopGTE?: InputMaybe<Scalars['Int']['input']>;
|
|
11716
|
+
maxApplicationsPerShopIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
11717
|
+
maxApplicationsPerShopIsNil?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11718
|
+
maxApplicationsPerShopLT?: InputMaybe<Scalars['Int']['input']>;
|
|
11719
|
+
maxApplicationsPerShopLTE?: InputMaybe<Scalars['Int']['input']>;
|
|
11720
|
+
maxApplicationsPerShopNEQ?: InputMaybe<Scalars['Int']['input']>;
|
|
11721
|
+
maxApplicationsPerShopNotIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
11722
|
+
maxApplicationsPerShopNotNil?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11704
11723
|
not?: InputMaybe<CouponWhereInput>;
|
|
11705
11724
|
or?: InputMaybe<Array<CouponWhereInput>>;
|
|
11706
11725
|
/** promotion_id field predicates */
|
|
@@ -11854,6 +11873,10 @@ type CreateCampaignProductInput = {
|
|
|
11854
11873
|
};
|
|
11855
11874
|
type CreateCouponInput = {
|
|
11856
11875
|
code?: InputMaybe<Scalars['String']['input']>;
|
|
11876
|
+
/** Maximum total redemptions across all shops. NULL = unlimited. */
|
|
11877
|
+
maxApplications?: InputMaybe<Scalars['Int']['input']>;
|
|
11878
|
+
/** Maximum times one shop can redeem this coupon. NULL = unlimited. */
|
|
11879
|
+
maxApplicationsPerShop?: InputMaybe<Scalars['Int']['input']>;
|
|
11857
11880
|
promotionID: Scalars['ID']['input'];
|
|
11858
11881
|
shopPlatformID?: InputMaybe<Scalars['ID']['input']>;
|
|
11859
11882
|
type: CouponType;
|
|
@@ -13619,6 +13642,8 @@ type DeviceTypeCount = {
|
|
|
13619
13642
|
engagedSessions?: Maybe<Scalars['Int']['output']>;
|
|
13620
13643
|
/** Total number of clicks on the page */
|
|
13621
13644
|
totalClicks: Scalars['Int']['output'];
|
|
13645
|
+
/** Total clicks from sessions that generated revenue */
|
|
13646
|
+
totalClicksWithRevenue?: Maybe<Scalars['Int']['output']>;
|
|
13622
13647
|
/** Total number of page views */
|
|
13623
13648
|
totalPageViewed?: Maybe<Scalars['Int']['output']>;
|
|
13624
13649
|
/** Total number of page views that had time on page recorded */
|
|
@@ -18020,8 +18045,9 @@ type MakeWinnerInput = {
|
|
|
18020
18045
|
};
|
|
18021
18046
|
type MakeWinnerTargetObject = {
|
|
18022
18047
|
baseIDs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18048
|
+
blog?: InputMaybe<BlogObject>;
|
|
18023
18049
|
makeDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18024
|
-
|
|
18050
|
+
page?: InputMaybe<PageObject>;
|
|
18025
18051
|
};
|
|
18026
18052
|
type MakeWinnerVariant = {
|
|
18027
18053
|
isDefaultTemplate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -18688,6 +18714,7 @@ type Mutation = {
|
|
|
18688
18714
|
cartNoteUpdate?: Maybe<CartPayload>;
|
|
18689
18715
|
couponCreate?: Maybe<Coupon>;
|
|
18690
18716
|
couponDelete: Scalars['Boolean']['output'];
|
|
18717
|
+
couponUpdate?: Maybe<Coupon>;
|
|
18691
18718
|
customSectionCreate?: Maybe<CustomSection>;
|
|
18692
18719
|
customSectionCreateVersion: Scalars['Boolean']['output'];
|
|
18693
18720
|
customSectionDelete: Scalars['Boolean']['output'];
|
|
@@ -19027,6 +19054,21 @@ type Mutation = {
|
|
|
19027
19054
|
shopPlatformBillReissue?: Maybe<ShopPlatformBill>;
|
|
19028
19055
|
shopPlatformConnect?: Maybe<Scalars['String']['output']>;
|
|
19029
19056
|
shopPlatformDisconnect: Scalars['Boolean']['output'];
|
|
19057
|
+
/**
|
|
19058
|
+
* Duplicate a Shopify theme template identified by templateSuffix.
|
|
19059
|
+
* The new template is named by prepending "{namePrefix}-copy-of-" (or "copy-of-" when namePrefix is omitted)
|
|
19060
|
+
* to the original name and appending a Unix second timestamp.
|
|
19061
|
+
* Returns the suffix of the newly created template.
|
|
19062
|
+
*
|
|
19063
|
+
* Examples (namePrefix = "gemx"):
|
|
19064
|
+
* Input: "templates/product.cloth-grey.json" → "templates/product.gemx-copy-of-cloth-grey-1744694412.json"
|
|
19065
|
+
* Input: "templates/page.json" → "templates/page.gemx-copy-of-page-1744694412.json"
|
|
19066
|
+
*
|
|
19067
|
+
* Examples (namePrefix omitted):
|
|
19068
|
+
* Input: "templates/product.cloth-grey.json" → "templates/product.copy-of-cloth-grey-1744694412.json"
|
|
19069
|
+
* Input: "templates/page.json" → "templates/page.copy-of-page-1744694412.json"
|
|
19070
|
+
*/
|
|
19071
|
+
shopPlatformDuplicateThemeTemplate: Scalars['String']['output'];
|
|
19030
19072
|
shopPlatformMetafieldsCreate: Scalars['Boolean']['output'];
|
|
19031
19073
|
shopPlatformPlanCancel?: Maybe<ShopPlatformPlan>;
|
|
19032
19074
|
shopPlatformPlanCreate?: Maybe<ShopPlatformPlan>;
|
|
@@ -19295,6 +19337,10 @@ type MutationCouponCreateArgs = {
|
|
|
19295
19337
|
type MutationCouponDeleteArgs = {
|
|
19296
19338
|
id: Scalars['ID']['input'];
|
|
19297
19339
|
};
|
|
19340
|
+
type MutationCouponUpdateArgs = {
|
|
19341
|
+
id: Scalars['ID']['input'];
|
|
19342
|
+
input: UpdateCouponInput;
|
|
19343
|
+
};
|
|
19298
19344
|
type MutationCustomSectionCreateArgs = {
|
|
19299
19345
|
input: CreateCustomSectionInput;
|
|
19300
19346
|
};
|
|
@@ -19936,6 +19982,9 @@ type MutationShopPlatformConnectArgs = {
|
|
|
19936
19982
|
type MutationShopPlatformDisconnectArgs = {
|
|
19937
19983
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
19938
19984
|
};
|
|
19985
|
+
type MutationShopPlatformDuplicateThemeTemplateArgs = {
|
|
19986
|
+
input: ShopPlatformDuplicateThemeTemplateInput;
|
|
19987
|
+
};
|
|
19939
19988
|
type MutationShopPlatformMetafieldsCreateArgs = {
|
|
19940
19989
|
appType: AppType;
|
|
19941
19990
|
inputs: Array<CreateShopPlatformMetafieldsInput>;
|
|
@@ -21947,6 +21996,10 @@ type PageInteractionWhereInput = {
|
|
|
21947
21996
|
updatedAtNEQ?: InputMaybe<Scalars['Time']['input']>;
|
|
21948
21997
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']['input']>>;
|
|
21949
21998
|
};
|
|
21999
|
+
type PageObject = {
|
|
22000
|
+
handle?: InputMaybe<Scalars['String']['input']>;
|
|
22001
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
22002
|
+
};
|
|
21950
22003
|
type PageOrder = {
|
|
21951
22004
|
direction: OrderDirection;
|
|
21952
22005
|
field?: InputMaybe<PageOrderField>;
|
|
@@ -22466,13 +22519,13 @@ type PageSectionWhereInput = {
|
|
|
22466
22519
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']['input']>>;
|
|
22467
22520
|
};
|
|
22468
22521
|
type PageSnapshot = {
|
|
22469
|
-
|
|
22470
|
-
createdAt: Scalars['Time'];
|
|
22471
|
-
deviceType?: Maybe<Scalars['String']>;
|
|
22472
|
-
hash: Scalars['String'];
|
|
22473
|
-
presignedURL: Scalars['String'];
|
|
22474
|
-
thumbnail?: Maybe<Scalars['String']>;
|
|
22475
|
-
urlPath: Scalars['String'];
|
|
22522
|
+
campaignVariantType?: Maybe<Scalars['String']['output']>;
|
|
22523
|
+
createdAt: Scalars['Time']['output'];
|
|
22524
|
+
deviceType?: Maybe<Scalars['String']['output']>;
|
|
22525
|
+
hash: Scalars['String']['output'];
|
|
22526
|
+
presignedURL: Scalars['String']['output'];
|
|
22527
|
+
thumbnail?: Maybe<Scalars['String']['output']>;
|
|
22528
|
+
urlPath: Scalars['String']['output'];
|
|
22476
22529
|
};
|
|
22477
22530
|
type PageSnapshotConnection = {
|
|
22478
22531
|
edges?: Maybe<Array<Maybe<PageSnapshotEdge>>>;
|
|
@@ -27296,6 +27349,29 @@ type PublishedThemeStyleWhereInput = {
|
|
|
27296
27349
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']['input']>>;
|
|
27297
27350
|
};
|
|
27298
27351
|
type Query = {
|
|
27352
|
+
/**
|
|
27353
|
+
* ShopPlatformRevenues returns a paginated list of shop platform revenues with filtering and ordering
|
|
27354
|
+
* Example:
|
|
27355
|
+
* ```
|
|
27356
|
+
* query ShopPlatformRevenues($first: Int, $where: ShopPlatformRevenueWhereInput) {
|
|
27357
|
+
* shopPlatformRevenues(
|
|
27358
|
+
* first: $first
|
|
27359
|
+
* orderBy: [{ field: CREATED_AT, direction: DESC }]
|
|
27360
|
+
* where: $where
|
|
27361
|
+
* ) {
|
|
27362
|
+
* edges {
|
|
27363
|
+
* node {
|
|
27364
|
+
* id
|
|
27365
|
+
* billType
|
|
27366
|
+
* totalAmount
|
|
27367
|
+
* status
|
|
27368
|
+
* }
|
|
27369
|
+
* }
|
|
27370
|
+
* }
|
|
27371
|
+
* }
|
|
27372
|
+
* ```
|
|
27373
|
+
*/
|
|
27374
|
+
ShopPlatformRevenues?: Maybe<ShopPlatformRevenueConnection>;
|
|
27299
27375
|
/**
|
|
27300
27376
|
* Get a single activity log by its ID.
|
|
27301
27377
|
* Example:
|
|
@@ -27344,43 +27420,6 @@ type Query = {
|
|
|
27344
27420
|
activityLogs?: Maybe<ActivityLogConnection>;
|
|
27345
27421
|
agencies?: Maybe<AgencyConnection>;
|
|
27346
27422
|
agency?: Maybe<Agency>;
|
|
27347
|
-
/**
|
|
27348
|
-
* agencyBill returns the agency bill for a specific billing period.
|
|
27349
|
-
*
|
|
27350
|
-
* Response behavior:
|
|
27351
|
-
* - If bill exists in DB: returns bill immediately with isCalculating=false
|
|
27352
|
-
* - If bill needs calculation: returns isCalculating=true, data sent via WebSocket
|
|
27353
|
-
* - For future months: returns validation error
|
|
27354
|
-
*
|
|
27355
|
-
* WebSocket topic: getAgencyBill
|
|
27356
|
-
* WebSocket response: { status, bill, errors }
|
|
27357
|
-
*
|
|
27358
|
-
* Example:
|
|
27359
|
-
* ```
|
|
27360
|
-
* query AgencyBill($agencyId: ID!, $periodStartAt: Time!) {
|
|
27361
|
-
* agencyBill(agencyID: $agencyId, periodStartAt: $periodStartAt) {
|
|
27362
|
-
* bill {
|
|
27363
|
-
* id
|
|
27364
|
-
* shopPlatformID
|
|
27365
|
-
* totalAmount
|
|
27366
|
-
* status
|
|
27367
|
-
* periodStartAt
|
|
27368
|
-
* periodEndAt
|
|
27369
|
-
* usageFees {
|
|
27370
|
-
* shopName
|
|
27371
|
-
* calculatedAmount
|
|
27372
|
-
* calculationDetail {
|
|
27373
|
-
* planName
|
|
27374
|
-
* finalAmount
|
|
27375
|
-
* }
|
|
27376
|
-
* }
|
|
27377
|
-
* }
|
|
27378
|
-
* isCalculating
|
|
27379
|
-
* }
|
|
27380
|
-
* }
|
|
27381
|
-
* ```
|
|
27382
|
-
*/
|
|
27383
|
-
agencyBill?: Maybe<AgencyBill>;
|
|
27384
27423
|
/**
|
|
27385
27424
|
* Query agency client relation.
|
|
27386
27425
|
* Example:
|
|
@@ -27528,6 +27567,7 @@ type Query = {
|
|
|
27528
27567
|
pageSections?: Maybe<Array<Maybe<PageSection>>>;
|
|
27529
27568
|
/** Paginated list of page snapshots with filtering and ordering support. */
|
|
27530
27569
|
pageSnapshots?: Maybe<PageSnapshotConnection>;
|
|
27570
|
+
/** @deprecated Page view tracking moved to the analytics service. This query now returns 0. */
|
|
27531
27571
|
pageViews: Scalars['Int']['output'];
|
|
27532
27572
|
pages?: Maybe<PageConnection>;
|
|
27533
27573
|
pathAnalytics?: Maybe<Array<Maybe<PathAnalytics>>>;
|
|
@@ -27736,30 +27776,8 @@ type Query = {
|
|
|
27736
27776
|
shopPlatformPlanActive?: Maybe<ShopPlatformPlan>;
|
|
27737
27777
|
shopPlatformPlans?: Maybe<ShopPlatformPlanConnection>;
|
|
27738
27778
|
shopPlatformPromotions?: Maybe<ShopPlatformPromotionConnection>;
|
|
27739
|
-
/**
|
|
27740
|
-
* ShopPlatformRevenues returns a paginated list of shop platform revenues with filtering and ordering
|
|
27741
|
-
* Example:
|
|
27742
|
-
* ```
|
|
27743
|
-
* query ShopPlatformRevenues($first: Int, $where: ShopPlatformRevenueWhereInput) {
|
|
27744
|
-
* shopPlatformRevenues(
|
|
27745
|
-
* first: $first
|
|
27746
|
-
* orderBy: [{ field: CREATED_AT, direction: DESC }]
|
|
27747
|
-
* where: $where
|
|
27748
|
-
* ) {
|
|
27749
|
-
* edges {
|
|
27750
|
-
* node {
|
|
27751
|
-
* id
|
|
27752
|
-
* billType
|
|
27753
|
-
* totalAmount
|
|
27754
|
-
* status
|
|
27755
|
-
* }
|
|
27756
|
-
* }
|
|
27757
|
-
* }
|
|
27758
|
-
* }
|
|
27759
|
-
* ```
|
|
27760
|
-
*/
|
|
27761
|
-
shopPlatformRevenues?: Maybe<ShopPlatformRevenueConnection>;
|
|
27762
27779
|
shopPlatformVerifyScope?: Maybe<ShopPlatformVerifyScope>;
|
|
27780
|
+
shopPlatforms?: Maybe<ShopPlatformConnection>;
|
|
27763
27781
|
shopShopify?: Maybe<ShopShopify>;
|
|
27764
27782
|
shopStaff?: Maybe<ShopStaff>;
|
|
27765
27783
|
shopStaffs?: Maybe<ShopStaffConnection>;
|
|
@@ -27825,6 +27843,14 @@ type Query = {
|
|
|
27825
27843
|
/** Retrieve a paginated list of variant product variants */
|
|
27826
27844
|
variantProductVariants?: Maybe<VariantProductVariantConnection>;
|
|
27827
27845
|
};
|
|
27846
|
+
type QueryShopPlatformRevenuesArgs = {
|
|
27847
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
27848
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
27849
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27850
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
27851
|
+
orderBy?: InputMaybe<Array<ShopPlatformRevenueOrder>>;
|
|
27852
|
+
where?: InputMaybe<ShopPlatformRevenueWhereInput>;
|
|
27853
|
+
};
|
|
27828
27854
|
type QueryActivityLogArgs = {
|
|
27829
27855
|
id: Scalars['ID']['input'];
|
|
27830
27856
|
};
|
|
@@ -27847,10 +27873,6 @@ type QueryAgenciesArgs = {
|
|
|
27847
27873
|
type QueryAgencyArgs = {
|
|
27848
27874
|
id: Scalars['ID']['input'];
|
|
27849
27875
|
};
|
|
27850
|
-
type QueryAgencyBillArgs = {
|
|
27851
|
-
agencyID: Scalars['ID']['input'];
|
|
27852
|
-
periodStartAt: Scalars['Time']['input'];
|
|
27853
|
-
};
|
|
27854
27876
|
type QueryAgencyClientRelArgs = {
|
|
27855
27877
|
id: Scalars['ID']['input'];
|
|
27856
27878
|
};
|
|
@@ -28607,16 +28629,16 @@ type QueryShopPlatformPromotionsArgs = {
|
|
|
28607
28629
|
orderBy?: InputMaybe<Array<ShopPlatformPromotionOrder>>;
|
|
28608
28630
|
where?: InputMaybe<ShopPlatformPromotionWhereInput>;
|
|
28609
28631
|
};
|
|
28610
|
-
type
|
|
28632
|
+
type QueryShopPlatformVerifyScopeArgs = {
|
|
28633
|
+
appType?: InputMaybe<AppType>;
|
|
28634
|
+
};
|
|
28635
|
+
type QueryShopPlatformsArgs = {
|
|
28611
28636
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
28612
28637
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
28613
28638
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28614
28639
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28615
|
-
orderBy?: InputMaybe<
|
|
28616
|
-
where?: InputMaybe<
|
|
28617
|
-
};
|
|
28618
|
-
type QueryShopPlatformVerifyScopeArgs = {
|
|
28619
|
-
appType?: InputMaybe<AppType>;
|
|
28640
|
+
orderBy?: InputMaybe<ShopPlatformOrder>;
|
|
28641
|
+
where?: InputMaybe<ShopPlatformWhereInput>;
|
|
28620
28642
|
};
|
|
28621
28643
|
type QueryShopStaffArgs = {
|
|
28622
28644
|
id: Scalars['ID']['input'];
|
|
@@ -30524,17 +30546,6 @@ type ScheduledPublishEdge = {
|
|
|
30524
30546
|
cursor: Scalars['Cursor']['output'];
|
|
30525
30547
|
node?: Maybe<ScheduledPublish>;
|
|
30526
30548
|
};
|
|
30527
|
-
type ScheduledPublishMetafieldScope =
|
|
30528
|
-
/** ARTICLE - Metafield of an article record in Shopify. */
|
|
30529
|
-
'ARTICLE'
|
|
30530
|
-
/** COLLECTION - Metafield of a collection record in Shopify. */
|
|
30531
|
-
| 'COLLECTION'
|
|
30532
|
-
/** PAGE - Metafield of a page record in Shopify. */
|
|
30533
|
-
| 'PAGE'
|
|
30534
|
-
/** PRODUCT - Metafield of a product record in Shopify. */
|
|
30535
|
-
| 'PRODUCT'
|
|
30536
|
-
/** SHOP - Metafield of a shop record in Shopify. */
|
|
30537
|
-
| 'SHOP';
|
|
30538
30549
|
type ScheduledPublishOrder = {
|
|
30539
30550
|
direction: OrderDirection;
|
|
30540
30551
|
field?: InputMaybe<ScheduledPublishOrderField>;
|
|
@@ -33031,6 +33042,20 @@ type ShopPlatformBillingWhereInput = {
|
|
|
33031
33042
|
updatedAtNEQ?: InputMaybe<Scalars['Time']['input']>;
|
|
33032
33043
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']['input']>>;
|
|
33033
33044
|
};
|
|
33045
|
+
type ShopPlatformConnection = {
|
|
33046
|
+
edges?: Maybe<Array<Maybe<ShopPlatformEdge>>>;
|
|
33047
|
+
pageInfo: PageInfo;
|
|
33048
|
+
totalCount: Scalars['Int']['output'];
|
|
33049
|
+
};
|
|
33050
|
+
type ShopPlatformDuplicateThemeTemplateInput = {
|
|
33051
|
+
appType: AppType;
|
|
33052
|
+
namePrefix?: InputMaybe<Scalars['String']['input']>;
|
|
33053
|
+
templateSuffix: Scalars['String']['input'];
|
|
33054
|
+
};
|
|
33055
|
+
type ShopPlatformEdge = {
|
|
33056
|
+
cursor: Scalars['Cursor']['output'];
|
|
33057
|
+
node?: Maybe<ShopPlatform>;
|
|
33058
|
+
};
|
|
33034
33059
|
type ShopPlatformEnvironment = {
|
|
33035
33060
|
currentVersion: Scalars['String']['output'];
|
|
33036
33061
|
publicAPIUrl: Scalars['String']['output'];
|
|
@@ -33040,6 +33065,11 @@ type ShopPlatformEnvironment = {
|
|
|
33040
33065
|
storefrontProvider: Scalars['String']['output'];
|
|
33041
33066
|
storefrontToken: Scalars['String']['output'];
|
|
33042
33067
|
};
|
|
33068
|
+
type ShopPlatformOrder = {
|
|
33069
|
+
direction: OrderDirection;
|
|
33070
|
+
field?: InputMaybe<ShopPlatformOrderField>;
|
|
33071
|
+
};
|
|
33072
|
+
type ShopPlatformOrderField = 'CREATED_AT' | 'PLATFORM' | 'UPDATED_AT';
|
|
33043
33073
|
type ShopPlatformPlan = {
|
|
33044
33074
|
/** ID of agency that responsible for pricing payment. */
|
|
33045
33075
|
agencyID?: Maybe<Scalars['ID']['output']>;
|
|
@@ -36340,10 +36370,12 @@ type ThemePageMetaWhereInput = {
|
|
|
36340
36370
|
valueNotIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
36341
36371
|
};
|
|
36342
36372
|
type ThemePageOnlineStoreData = {
|
|
36373
|
+
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
36343
36374
|
id: Scalars['ID']['output'];
|
|
36344
36375
|
onlineStoreObjectBaseIDs?: Maybe<Array<Scalars['String']['output']>>;
|
|
36345
36376
|
themePage?: Maybe<ThemePage>;
|
|
36346
36377
|
type: ThemePageOnlineStoreDataType;
|
|
36378
|
+
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
36347
36379
|
};
|
|
36348
36380
|
type ThemePageOnlineStoreDataType = 'ARTICLES' | 'BLOGS' | 'COLLECTIONS' | 'PAGES' | 'PRODUCTS';
|
|
36349
36381
|
/**
|
|
@@ -36981,6 +37013,17 @@ type ThemePageWhereInput = {
|
|
|
36981
37013
|
/** is_sample field predicates */
|
|
36982
37014
|
isSample?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36983
37015
|
isSampleNEQ?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37016
|
+
/** last_edited_at field predicates */
|
|
37017
|
+
lastEditedAt?: InputMaybe<Scalars['Time']['input']>;
|
|
37018
|
+
lastEditedAtGT?: InputMaybe<Scalars['Time']['input']>;
|
|
37019
|
+
lastEditedAtGTE?: InputMaybe<Scalars['Time']['input']>;
|
|
37020
|
+
lastEditedAtIn?: InputMaybe<Array<Scalars['Time']['input']>>;
|
|
37021
|
+
lastEditedAtIsNil?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37022
|
+
lastEditedAtLT?: InputMaybe<Scalars['Time']['input']>;
|
|
37023
|
+
lastEditedAtLTE?: InputMaybe<Scalars['Time']['input']>;
|
|
37024
|
+
lastEditedAtNEQ?: InputMaybe<Scalars['Time']['input']>;
|
|
37025
|
+
lastEditedAtNotIn?: InputMaybe<Array<Scalars['Time']['input']>>;
|
|
37026
|
+
lastEditedAtNotNil?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36984
37027
|
/** library_position field predicates */
|
|
36985
37028
|
libraryPosition?: InputMaybe<Scalars['Int']['input']>;
|
|
36986
37029
|
libraryPositionGT?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -38067,6 +38110,16 @@ type UpdateCampaignTrafficRangeInput = {
|
|
|
38067
38110
|
campaignID: Scalars['ID']['input'];
|
|
38068
38111
|
offers?: InputMaybe<Array<InputMaybe<SaleFunnelOfferTrafficRangeInput>>>;
|
|
38069
38112
|
};
|
|
38113
|
+
type UpdateCouponInput = {
|
|
38114
|
+
/** Set to true to clear maxApplications (set to NULL / unlimited). */
|
|
38115
|
+
clearMaxApplications?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38116
|
+
/** Set to true to clear maxApplicationsPerShop (set to NULL / unlimited). */
|
|
38117
|
+
clearMaxApplicationsPerShop?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38118
|
+
/** Maximum total redemptions across all shops. Set to null and use clearMaxApplications to remove the limit. */
|
|
38119
|
+
maxApplications?: InputMaybe<Scalars['Int']['input']>;
|
|
38120
|
+
/** Maximum times one shop can redeem this coupon. Set to null and use clearMaxApplicationsPerShop to remove the limit. */
|
|
38121
|
+
maxApplicationsPerShop?: InputMaybe<Scalars['Int']['input']>;
|
|
38122
|
+
};
|
|
38070
38123
|
type UpdateCustomSectionInput = {
|
|
38071
38124
|
cid?: InputMaybe<Scalars['String']['input']>;
|
|
38072
38125
|
component?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38371,6 +38424,8 @@ type UpdateScheduledPublishInput = {
|
|
|
38371
38424
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
38372
38425
|
/** Updated scheduled time for the publish. */
|
|
38373
38426
|
scheduledAt?: InputMaybe<Scalars['Time']['input']>;
|
|
38427
|
+
/** The time zone in which the publish will be executed. */
|
|
38428
|
+
scheduledTz?: InputMaybe<Scalars['Int']['input']>;
|
|
38374
38429
|
};
|
|
38375
38430
|
type UpdateShopInput = {
|
|
38376
38431
|
addLibrarySectionBookmarkIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -40590,7 +40645,6 @@ type appAPI_ActivityLogParticipantData = ActivityLogParticipantData;
|
|
|
40590
40645
|
type appAPI_ActivityLogWhereInput = ActivityLogWhereInput;
|
|
40591
40646
|
type appAPI_AddEmployeeInput = AddEmployeeInput;
|
|
40592
40647
|
type appAPI_Agency = Agency;
|
|
40593
|
-
type appAPI_AgencyBill = AgencyBill;
|
|
40594
40648
|
type appAPI_AgencyClientRel = AgencyClientRel;
|
|
40595
40649
|
type appAPI_AgencyClientRelConnection = AgencyClientRelConnection;
|
|
40596
40650
|
type appAPI_AgencyClientRelEdge = AgencyClientRelEdge;
|
|
@@ -40635,6 +40689,7 @@ type appAPI_BlogArticlesArgs = BlogArticlesArgs;
|
|
|
40635
40689
|
type appAPI_BlogConnection = BlogConnection;
|
|
40636
40690
|
type appAPI_BlogEdge = BlogEdge;
|
|
40637
40691
|
type appAPI_BlogMetafieldArgs = BlogMetafieldArgs;
|
|
40692
|
+
type appAPI_BlogObject = BlogObject;
|
|
40638
40693
|
type appAPI_BlogOrder = BlogOrder;
|
|
40639
40694
|
type appAPI_BlogOrderField = BlogOrderField;
|
|
40640
40695
|
type appAPI_BlogPlatform = BlogPlatform;
|
|
@@ -41073,6 +41128,7 @@ type appAPI_MutationCartLinesUpdateArgs = MutationCartLinesUpdateArgs;
|
|
|
41073
41128
|
type appAPI_MutationCartNoteUpdateArgs = MutationCartNoteUpdateArgs;
|
|
41074
41129
|
type appAPI_MutationCouponCreateArgs = MutationCouponCreateArgs;
|
|
41075
41130
|
type appAPI_MutationCouponDeleteArgs = MutationCouponDeleteArgs;
|
|
41131
|
+
type appAPI_MutationCouponUpdateArgs = MutationCouponUpdateArgs;
|
|
41076
41132
|
type appAPI_MutationCustomSectionCreateArgs = MutationCustomSectionCreateArgs;
|
|
41077
41133
|
type appAPI_MutationCustomSectionCreateVersionArgs = MutationCustomSectionCreateVersionArgs;
|
|
41078
41134
|
type appAPI_MutationCustomSectionDeleteArgs = MutationCustomSectionDeleteArgs;
|
|
@@ -41265,6 +41321,7 @@ type appAPI_MutationShopPageCounterCreateOrUpdateArgs = MutationShopPageCounterC
|
|
|
41265
41321
|
type appAPI_MutationShopPlatformBillReissueArgs = MutationShopPlatformBillReissueArgs;
|
|
41266
41322
|
type appAPI_MutationShopPlatformConnectArgs = MutationShopPlatformConnectArgs;
|
|
41267
41323
|
type appAPI_MutationShopPlatformDisconnectArgs = MutationShopPlatformDisconnectArgs;
|
|
41324
|
+
type appAPI_MutationShopPlatformDuplicateThemeTemplateArgs = MutationShopPlatformDuplicateThemeTemplateArgs;
|
|
41268
41325
|
type appAPI_MutationShopPlatformMetafieldsCreateArgs = MutationShopPlatformMetafieldsCreateArgs;
|
|
41269
41326
|
type appAPI_MutationShopPlatformPlanCancelArgs = MutationShopPlatformPlanCancelArgs;
|
|
41270
41327
|
type appAPI_MutationShopPlatformPlanCreateArgs = MutationShopPlatformPlanCreateArgs;
|
|
@@ -41451,6 +41508,7 @@ type appAPI_PageInfo = PageInfo;
|
|
|
41451
41508
|
type appAPI_PageInteraction = PageInteraction;
|
|
41452
41509
|
type appAPI_PageInteractionWhereInput = PageInteractionWhereInput;
|
|
41453
41510
|
type appAPI_PageMetafieldArgs = PageMetafieldArgs;
|
|
41511
|
+
type appAPI_PageObject = PageObject;
|
|
41454
41512
|
type appAPI_PageOrder = PageOrder;
|
|
41455
41513
|
type appAPI_PageOrderField = PageOrderField;
|
|
41456
41514
|
type appAPI_PagePlatform = PagePlatform;
|
|
@@ -41628,7 +41686,6 @@ type appAPI_QueryActivityLogArgs = QueryActivityLogArgs;
|
|
|
41628
41686
|
type appAPI_QueryActivityLogsArgs = QueryActivityLogsArgs;
|
|
41629
41687
|
type appAPI_QueryAgenciesArgs = QueryAgenciesArgs;
|
|
41630
41688
|
type appAPI_QueryAgencyArgs = QueryAgencyArgs;
|
|
41631
|
-
type appAPI_QueryAgencyBillArgs = QueryAgencyBillArgs;
|
|
41632
41689
|
type appAPI_QueryAgencyClientRelArgs = QueryAgencyClientRelArgs;
|
|
41633
41690
|
type appAPI_QueryAgencyClientRelsArgs = QueryAgencyClientRelsArgs;
|
|
41634
41691
|
type appAPI_QueryAgencyPackageSharingArgs = QueryAgencyPackageSharingArgs;
|
|
@@ -41773,6 +41830,7 @@ type appAPI_QueryShopPlatformPlansArgs = QueryShopPlatformPlansArgs;
|
|
|
41773
41830
|
type appAPI_QueryShopPlatformPromotionsArgs = QueryShopPlatformPromotionsArgs;
|
|
41774
41831
|
type appAPI_QueryShopPlatformRevenuesArgs = QueryShopPlatformRevenuesArgs;
|
|
41775
41832
|
type appAPI_QueryShopPlatformVerifyScopeArgs = QueryShopPlatformVerifyScopeArgs;
|
|
41833
|
+
type appAPI_QueryShopPlatformsArgs = QueryShopPlatformsArgs;
|
|
41776
41834
|
type appAPI_QueryShopStaffArgs = QueryShopStaffArgs;
|
|
41777
41835
|
type appAPI_QueryShopStaffsArgs = QueryShopStaffsArgs;
|
|
41778
41836
|
type appAPI_QueryShopsArgs = QueryShopsArgs;
|
|
@@ -41895,7 +41953,6 @@ type appAPI_ScheduledPublish = ScheduledPublish;
|
|
|
41895
41953
|
type appAPI_ScheduledPublishCancellationReason = ScheduledPublishCancellationReason;
|
|
41896
41954
|
type appAPI_ScheduledPublishConnection = ScheduledPublishConnection;
|
|
41897
41955
|
type appAPI_ScheduledPublishEdge = ScheduledPublishEdge;
|
|
41898
|
-
type appAPI_ScheduledPublishMetafieldScope = ScheduledPublishMetafieldScope;
|
|
41899
41956
|
type appAPI_ScheduledPublishOrder = ScheduledPublishOrder;
|
|
41900
41957
|
type appAPI_ScheduledPublishOrderField = ScheduledPublishOrderField;
|
|
41901
41958
|
type appAPI_ScheduledPublishStatus = ScheduledPublishStatus;
|
|
@@ -41986,7 +42043,12 @@ type appAPI_ShopPlatformBillingEdge = ShopPlatformBillingEdge;
|
|
|
41986
42043
|
type appAPI_ShopPlatformBillingOrder = ShopPlatformBillingOrder;
|
|
41987
42044
|
type appAPI_ShopPlatformBillingOrderField = ShopPlatformBillingOrderField;
|
|
41988
42045
|
type appAPI_ShopPlatformBillingWhereInput = ShopPlatformBillingWhereInput;
|
|
42046
|
+
type appAPI_ShopPlatformConnection = ShopPlatformConnection;
|
|
42047
|
+
type appAPI_ShopPlatformDuplicateThemeTemplateInput = ShopPlatformDuplicateThemeTemplateInput;
|
|
42048
|
+
type appAPI_ShopPlatformEdge = ShopPlatformEdge;
|
|
41989
42049
|
type appAPI_ShopPlatformEnvironment = ShopPlatformEnvironment;
|
|
42050
|
+
type appAPI_ShopPlatformOrder = ShopPlatformOrder;
|
|
42051
|
+
type appAPI_ShopPlatformOrderField = ShopPlatformOrderField;
|
|
41990
42052
|
type appAPI_ShopPlatformPlan = ShopPlatformPlan;
|
|
41991
42053
|
type appAPI_ShopPlatformPlanConnection = ShopPlatformPlanConnection;
|
|
41992
42054
|
type appAPI_ShopPlatformPlanEdge = ShopPlatformPlanEdge;
|
|
@@ -42174,6 +42236,7 @@ type appAPI_UpdateCampaignGroupInput = UpdateCampaignGroupInput;
|
|
|
42174
42236
|
type appAPI_UpdateCampaignInput = UpdateCampaignInput;
|
|
42175
42237
|
type appAPI_UpdateCampaignProductInput = UpdateCampaignProductInput;
|
|
42176
42238
|
type appAPI_UpdateCampaignTrafficRangeInput = UpdateCampaignTrafficRangeInput;
|
|
42239
|
+
type appAPI_UpdateCouponInput = UpdateCouponInput;
|
|
42177
42240
|
type appAPI_UpdateCustomSectionInput = UpdateCustomSectionInput;
|
|
42178
42241
|
type appAPI_UpdateFeatureRequestInput = UpdateFeatureRequestInput;
|
|
42179
42242
|
type appAPI_UpdateFeatureSettingInput = UpdateFeatureSettingInput;
|
|
@@ -42289,7 +42352,7 @@ type appAPI_VisitorStats = VisitorStats;
|
|
|
42289
42352
|
type appAPI_VisitorType = VisitorType;
|
|
42290
42353
|
type appAPI_VisitorWhereInput = VisitorWhereInput;
|
|
42291
42354
|
declare namespace appAPI {
|
|
42292
|
-
export type { appAPI_AccountType as AccountType, appAPI_ActivityLog as ActivityLog, appAPI_ActivityLogActionType as ActivityLogActionType, appAPI_ActivityLogConnection as ActivityLogConnection, appAPI_ActivityLogContent as ActivityLogContent, appAPI_ActivityLogEdge as ActivityLogEdge, appAPI_ActivityLogOrder as ActivityLogOrder, appAPI_ActivityLogOrderField as ActivityLogOrderField, appAPI_ActivityLogParticipantData as ActivityLogParticipantData, appAPI_ActivityLogWhereInput as ActivityLogWhereInput, appAPI_AddEmployeeInput as AddEmployeeInput, appAPI_Agency as Agency, appAPI_AgencyBill as AgencyBill, appAPI_AgencyClientRel as AgencyClientRel, appAPI_AgencyClientRelConnection as AgencyClientRelConnection, appAPI_AgencyClientRelEdge as AgencyClientRelEdge, appAPI_AgencyClientRelOffboardedBy as AgencyClientRelOffboardedBy, appAPI_AgencyClientRelOrder as AgencyClientRelOrder, appAPI_AgencyClientRelOrderField as AgencyClientRelOrderField, appAPI_AgencyClientRelStatus as AgencyClientRelStatus, appAPI_AgencyClientRelWhereInput as AgencyClientRelWhereInput, appAPI_AgencyConnection as AgencyConnection, appAPI_AgencyEdge as AgencyEdge, appAPI_AgencyInfo as AgencyInfo, appAPI_AgencyOrder as AgencyOrder, appAPI_AgencyOrderField as AgencyOrderField, appAPI_AgencyPackageSharing as AgencyPackageSharing, appAPI_AgencyPackageSharingMode as AgencyPackageSharingMode, appAPI_AgencyPackageSharingWhereInput as AgencyPackageSharingWhereInput, appAPI_AgencyWhereInput as AgencyWhereInput, appAPI_Analytic as Analytic, appAPI_AnalyticGroupBy as AnalyticGroupBy, appAPI_AnalyticMode as AnalyticMode, appAPI_AppType as AppType, appAPI_AppWhereInput as AppWhereInput, Article$1 as Article, appAPI_ArticleBlogWhereInput as ArticleBlogWhereInput, appAPI_ArticleBlogsArgs as ArticleBlogsArgs, appAPI_ArticleConnection as ArticleConnection, appAPI_ArticleContent as ArticleContent, appAPI_ArticleContentWhereInput as ArticleContentWhereInput, appAPI_ArticleEdge as ArticleEdge, appAPI_ArticleMetafieldArgs as ArticleMetafieldArgs, appAPI_ArticleOrder as ArticleOrder, appAPI_ArticleOrderField as ArticleOrderField, appAPI_ArticlePlatform as ArticlePlatform, appAPI_ArticleTagWhereInput as ArticleTagWhereInput, appAPI_ArticleWhereInput as ArticleWhereInput, appAPI_AssignObjectTriggerCondition as AssignObjectTriggerCondition, appAPI_AttributeInput as AttributeInput, appAPI_BillingCycle as BillingCycle, appAPI_BillingStatus as BillingStatus, appAPI_BillingType as BillingType, appAPI_Blog as Blog, appAPI_BlogArticlesArgs as BlogArticlesArgs, appAPI_BlogConnection as BlogConnection, appAPI_BlogEdge as BlogEdge, appAPI_BlogMetafieldArgs as BlogMetafieldArgs, appAPI_BlogOrder as BlogOrder, appAPI_BlogOrderField as BlogOrderField, appAPI_BlogPlatform as BlogPlatform, appAPI_BlogWhereInput as BlogWhereInput, appAPI_BulkUpdateCampaignInput as BulkUpdateCampaignInput, appAPI_BulkUpdateVariantProductVariantInput as BulkUpdateVariantProductVariantInput, appAPI_Campaign as Campaign, appAPI_CampaignAnalytic as CampaignAnalytic, appAPI_CampaignAnalyticInput as CampaignAnalyticInput, appAPI_CampaignAnalyticMetric as CampaignAnalyticMetric, appAPI_CampaignConnection as CampaignConnection, appAPI_CampaignEdge as CampaignEdge, appAPI_CampaignGroup as CampaignGroup, appAPI_CampaignGroupConnection as CampaignGroupConnection, appAPI_CampaignGroupEdge as CampaignGroupEdge, appAPI_CampaignGroupOrder as CampaignGroupOrder, appAPI_CampaignGroupOrderField as CampaignGroupOrderField, appAPI_CampaignGroupPriority as CampaignGroupPriority, appAPI_CampaignGroupStatus as CampaignGroupStatus, appAPI_CampaignGroupType as CampaignGroupType, appAPI_CampaignGroupVersion as CampaignGroupVersion, appAPI_CampaignGroupVersionWhereInput as CampaignGroupVersionWhereInput, appAPI_CampaignGroupWhereInput as CampaignGroupWhereInput, appAPI_CampaignOfferStat as CampaignOfferStat, appAPI_CampaignOfferStatConnection as CampaignOfferStatConnection, appAPI_CampaignOfferStatEdge as CampaignOfferStatEdge, appAPI_CampaignOfferStatOrder as CampaignOfferStatOrder, appAPI_CampaignOfferStatOrderField as CampaignOfferStatOrderField, appAPI_CampaignOfferStatWhereInput as CampaignOfferStatWhereInput, appAPI_CampaignOrder as CampaignOrder, appAPI_CampaignOrderField as CampaignOrderField, appAPI_CampaignPath as CampaignPath, appAPI_CampaignPathInput as CampaignPathInput, appAPI_CampaignPaths as CampaignPaths, appAPI_CampaignPriority as CampaignPriority, appAPI_CampaignProduct as CampaignProduct, appAPI_CampaignProductConnection as CampaignProductConnection, appAPI_CampaignProductEdge as CampaignProductEdge, appAPI_CampaignProductOrder as CampaignProductOrder, appAPI_CampaignProductOrderField as CampaignProductOrderField, appAPI_CampaignProductWhereInput as CampaignProductWhereInput, appAPI_CampaignStatus as CampaignStatus, appAPI_CampaignType as CampaignType, appAPI_CampaignVersion as CampaignVersion, appAPI_CampaignVersionConnection as CampaignVersionConnection, appAPI_CampaignVersionEdge as CampaignVersionEdge, appAPI_CampaignVersionOrder as CampaignVersionOrder, appAPI_CampaignVersionOrderField as CampaignVersionOrderField, appAPI_CampaignVersionWhereInput as CampaignVersionWhereInput, appAPI_CampaignWhereInput as CampaignWhereInput, appAPI_Cart as Cart, appAPI_CartAttribute as CartAttribute, appAPI_CartBuyerIdentityInput as CartBuyerIdentityInput, appAPI_CartInput as CartInput, appAPI_CartLine as CartLine, appAPI_CartLineAttribute as CartLineAttribute, appAPI_CartLineInput as CartLineInput, appAPI_CartLineUpdateInput as CartLineUpdateInput, appAPI_CartPayload as CartPayload, appAPI_CartPlatform as CartPlatform, appAPI_CartUserError as CartUserError, appAPI_ChannelStats as ChannelStats, appAPI_CheckoutEventStagingEventName as CheckoutEventStagingEventName, appAPI_CheckoutEventStagingWhereInput as CheckoutEventStagingWhereInput, appAPI_ClickMapPoint as ClickMapPoint, appAPI_ClickTypeCount as ClickTypeCount, appAPI_ClickedElement as ClickedElement, appAPI_ClientShop as ClientShop, appAPI_Collection as Collection, appAPI_CollectionConnection as CollectionConnection, appAPI_CollectionEdge as CollectionEdge, appAPI_CollectionMedia as CollectionMedia, appAPI_CollectionMediaWhereInput as CollectionMediaWhereInput, appAPI_CollectionMetafieldArgs as CollectionMetafieldArgs, appAPI_CollectionOrder as CollectionOrder, appAPI_CollectionOrderField as CollectionOrderField, appAPI_CollectionPlatform as CollectionPlatform, appAPI_CollectionProductWhereInput as CollectionProductWhereInput, appAPI_CollectionProductsArgs as CollectionProductsArgs, appAPI_CollectionTagWhereInput as CollectionTagWhereInput, appAPI_CollectionWhereInput as CollectionWhereInput, appAPI_ColorSwatchWhereInput as ColorSwatchWhereInput, appAPI_Column as Column, appAPI_Coupon as Coupon, appAPI_CouponConnection as CouponConnection, appAPI_CouponEdge as CouponEdge, appAPI_CouponOrder as CouponOrder, appAPI_CouponOrderField as CouponOrderField, appAPI_CouponType as CouponType, appAPI_CouponUsage as CouponUsage, appAPI_CouponUsageWhereInput as CouponUsageWhereInput, appAPI_CouponWhereInput as CouponWhereInput, appAPI_CreateAgencyInput as CreateAgencyInput, appAPI_CreateAgencyPackageSharingInput as CreateAgencyPackageSharingInput, appAPI_CreateAssignObjectTriggerConditionInput as CreateAssignObjectTriggerConditionInput, appAPI_CreateBulkTemplateCategoryInput as CreateBulkTemplateCategoryInput, appAPI_CreateCampaignGroupInput as CreateCampaignGroupInput, appAPI_CreateCampaignInput as CreateCampaignInput, appAPI_CreateCampaignProductInput as CreateCampaignProductInput, appAPI_CreateCouponInput as CreateCouponInput, appAPI_CreateCustomSectionInput as CreateCustomSectionInput, appAPI_CreateFeatureRequestInput as CreateFeatureRequestInput, appAPI_CreateFeatureSettingInput as CreateFeatureSettingInput, appAPI_CreateGlobalComponentInput as CreateGlobalComponentInput, appAPI_CreateGlobalStoreVersionInput as CreateGlobalStoreVersionInput, appAPI_CreateIconInput as CreateIconInput, appAPI_CreateLibraryBadgeInput as CreateLibraryBadgeInput, appAPI_CreateLibraryFeatureInput as CreateLibraryFeatureInput, appAPI_CreateLibraryIndustryInput as CreateLibraryIndustryInput, appAPI_CreateLibrarySaleFunnelMetaInput as CreateLibrarySaleFunnelMetaInput, appAPI_CreateLibrarySectionTagInput as CreateLibrarySectionTagInput, appAPI_CreateLibraryTemplateTagInput as CreateLibraryTemplateTagInput, appAPI_CreateOfferCheapestProductConditionInput as CreateOfferCheapestProductConditionInput, appAPI_CreateOfferDynamicDiscountInput as CreateOfferDynamicDiscountInput, appAPI_CreateOfferDynamicTriggerInput as CreateOfferDynamicTriggerInput, appAPI_CreateOfferMostExpensiveProductConditionInput as CreateOfferMostExpensiveProductConditionInput, appAPI_CreateOfferProductCollectionConditionInput as CreateOfferProductCollectionConditionInput, appAPI_CreateOfferProductPriceConditionInput as CreateOfferProductPriceConditionInput, appAPI_CreateOfferProductTagConditionInput as CreateOfferProductTagConditionInput, appAPI_CreateOfferProductVariantConditionInput as CreateOfferProductVariantConditionInput, appAPI_CreateOfferSameAsPurchasedProductsConditionInput as CreateOfferSameAsPurchasedProductsConditionInput, appAPI_CreateOfferSpecificProductConditionInput as CreateOfferSpecificProductConditionInput, appAPI_CreateOrderValueConditionInput as CreateOrderValueConditionInput, appAPI_CreatePageInteractionInput as CreatePageInteractionInput, appAPI_CreatePageSectionInput as CreatePageSectionInput, appAPI_CreatePlanInput as CreatePlanInput, appAPI_CreatePlatformOriginalTemplateInput as CreatePlatformOriginalTemplateInput, appAPI_CreateProductCollectionConditionInput as CreateProductCollectionConditionInput, appAPI_CreateProductDiscountInput as CreateProductDiscountInput, appAPI_CreateProductDiscountObjectInput as CreateProductDiscountObjectInput, appAPI_CreateProductPriceConditionInput as CreateProductPriceConditionInput, appAPI_CreateProductTagConditionInput as CreateProductTagConditionInput, appAPI_CreateProductVariantConditionInput as CreateProductVariantConditionInput, appAPI_CreatePromotionInput as CreatePromotionInput, appAPI_CreateSaleFunnelDiscountInput as CreateSaleFunnelDiscountInput, appAPI_CreateSaleFunnelDynamicTriggerInput as CreateSaleFunnelDynamicTriggerInput, appAPI_CreateSaleFunnelInput as CreateSaleFunnelInput, appAPI_CreateSaleFunnelMetaInput as CreateSaleFunnelMetaInput, appAPI_CreateSaleFunnelOfferInput as CreateSaleFunnelOfferInput, appAPI_CreateSaleFunnelRedirectInput as CreateSaleFunnelRedirectInput, appAPI_CreateSaleFunnelTriggerInput as CreateSaleFunnelTriggerInput, appAPI_CreateSalePageProductInput as CreateSalePageProductInput, appAPI_CreateScheduledPublishInput as CreateScheduledPublishInput, appAPI_CreateShopInput as CreateShopInput, appAPI_CreateShopLibraryThemeInput as CreateShopLibraryThemeInput, appAPI_CreateShopManageRequestInput as CreateShopManageRequestInput, appAPI_CreateShopMetafieldInput as CreateShopMetafieldInput, appAPI_CreateShopPageCounterInput as CreateShopPageCounterInput, appAPI_CreateShopPlatformInput as CreateShopPlatformInput, appAPI_CreateShopPlatformMetafieldsInput as CreateShopPlatformMetafieldsInput, appAPI_CreateShopPlatformPlanInput as CreateShopPlatformPlanInput, appAPI_CreateShopStaffInput as CreateShopStaffInput, appAPI_CreateSpecificProductConditionInput as CreateSpecificProductConditionInput, appAPI_CreateSurveyFeedbackInput as CreateSurveyFeedbackInput, appAPI_CreateSurveyInput as CreateSurveyInput, appAPI_CreateTemplateCategoryChildInput as CreateTemplateCategoryChildInput, appAPI_CreateTemplatePackageInput as CreateTemplatePackageInput, appAPI_CreateThemeInput as CreateThemeInput, appAPI_CreateThemePageCustomSectionInput as CreateThemePageCustomSectionInput, appAPI_CreateThemePageGlobalComponentInput as CreateThemePageGlobalComponentInput, appAPI_CreateThemePageInput as CreateThemePageInput, appAPI_CreateThemePageMetaInput as CreateThemePageMetaInput, appAPI_CreateThemePageOnlineStoreDataInput as CreateThemePageOnlineStoreDataInput, appAPI_CreateThemePageShareInput as CreateThemePageShareInput, appAPI_CreateThemePageVersionInput as CreateThemePageVersionInput, appAPI_CreateThemeSectionInput as CreateThemeSectionInput, appAPI_CreateThemeSectionVersionInput as CreateThemeSectionVersionInput, appAPI_CreateThemeStyleInput as CreateThemeStyleInput, appAPI_CreateTotalQuantityConditionInput as CreateTotalQuantityConditionInput, appAPI_CreateUsageFeeTierInput as CreateUsageFeeTierInput, appAPI_CreateVariantContentInput as CreateVariantContentInput, appAPI_CreateVariantInput as CreateVariantInput, appAPI_CreateVariantNameConditionInput as CreateVariantNameConditionInput, appAPI_CreateVariantProductVariantInput as CreateVariantProductVariantInput, appAPI_CreateVariantTemplateInput as CreateVariantTemplateInput, appAPI_CustomCode as CustomCode, appAPI_CustomFont as CustomFont, appAPI_CustomSection as CustomSection, appAPI_CustomSectionConnection as CustomSectionConnection, appAPI_CustomSectionEdge as CustomSectionEdge, appAPI_CustomSectionOrder as CustomSectionOrder, appAPI_CustomSectionOrderField as CustomSectionOrderField, appAPI_CustomSectionType as CustomSectionType, appAPI_CustomSectionVersion as CustomSectionVersion, appAPI_CustomSectionVersionWhereInput as CustomSectionVersionWhereInput, appAPI_CustomSectionWhereInput as CustomSectionWhereInput, appAPI_Customer as Customer, appAPI_CustomerAddress as CustomerAddress, appAPI_CustomerAddressPlatform as CustomerAddressPlatform, appAPI_CustomerAddressWhereInput as CustomerAddressWhereInput, appAPI_CustomerGroupPlatform as CustomerGroupPlatform, appAPI_CustomerGroupWhereInput as CustomerGroupWhereInput, appAPI_CustomerPlatform as CustomerPlatform, appAPI_CustomerWhereInput as CustomerWhereInput, appAPI_DataSeo as DataSeo, appAPI_DeployStatus as DeployStatus, appAPI_DeployTarget as DeployTarget, appAPI_DeploymentEvent as DeploymentEvent, appAPI_DeploymentPayload as DeploymentPayload, appAPI_DeviceStats as DeviceStats, appAPI_DeviceType as DeviceType, appAPI_DeviceTypeCount as DeviceTypeCount, appAPI_DiscountAllocation as DiscountAllocation, appAPI_DiscountPlatform as DiscountPlatform, appAPI_DiscountUnit as DiscountUnit, appAPI_DiscountWhereInput as DiscountWhereInput, appAPI_DomainVerification as DomainVerification, appAPI_DynamicTriggerCondition as DynamicTriggerCondition, appAPI_DynamicTriggerConditionOperator as DynamicTriggerConditionOperator, appAPI_DynamicTriggerConditionType as DynamicTriggerConditionType, appAPI_DynamicTriggerConditionValue as DynamicTriggerConditionValue, appAPI_DynamicTriggerConditionWhereInput as DynamicTriggerConditionWhereInput, appAPI_Employee as Employee, appAPI_EmployeeUpdateRoleInput as EmployeeUpdateRoleInput, appAPI_EntitledPriceRuleWhereInput as EntitledPriceRuleWhereInput, appAPI_Event as Event, appAPI_EventCampaignWhereInput as EventCampaignWhereInput, appAPI_EventConnection as EventConnection, appAPI_EventDom as EventDom, appAPI_EventDomWhereInput as EventDomWhereInput, appAPI_EventEdge as EventEdge, appAPI_EventLog as EventLog, appAPI_EventLogConnection as EventLogConnection, appAPI_EventLogEdge as EventLogEdge, appAPI_EventLogOrder as EventLogOrder, appAPI_EventLogOrderField as EventLogOrderField, appAPI_EventLogWhereInput as EventLogWhereInput, appAPI_EventName as EventName, appAPI_EventOrder as EventOrder, appAPI_EventOrderField as EventOrderField, appAPI_EventType as EventType, appAPI_EventWhereInput as EventWhereInput, appAPI_Exact as Exact, appAPI_FeatureRequest as FeatureRequest, appAPI_FeatureRequestConnection as FeatureRequestConnection, appAPI_FeatureRequestEdge as FeatureRequestEdge, appAPI_FeatureRequestName as FeatureRequestName, appAPI_FeatureRequestStatus as FeatureRequestStatus, appAPI_FeatureRequestWhereInput as FeatureRequestWhereInput, appAPI_FeatureSetting as FeatureSetting, appAPI_FeatureSettingAccessibility as FeatureSettingAccessibility, appAPI_FeatureSettingConnection as FeatureSettingConnection, appAPI_FeatureSettingEdge as FeatureSettingEdge, appAPI_FeatureSettingName as FeatureSettingName, appAPI_FeatureSettingWhereInput as FeatureSettingWhereInput, appAPI_File as File, appAPI_FileConnection as FileConnection, appAPI_FileEdge as FileEdge, appAPI_FileOrder as FileOrder, appAPI_FileOrderField as FileOrderField, appAPI_FileStorage as FileStorage, appAPI_FileType as FileType, appAPI_FileWhereInput as FileWhereInput, appAPI_Font as Font, appAPI_FontConnection as FontConnection, appAPI_FontEdge as FontEdge, appAPI_FontOrder as FontOrder, appAPI_FontOrderField as FontOrderField, appAPI_FontStorage as FontStorage, appAPI_FontWhereInput as FontWhereInput, appAPI_GemxQlResult as GemxQlResult, appAPI_GenerateContentLimitation as GenerateContentLimitation, appAPI_GenerateSectionLimitation as GenerateSectionLimitation, appAPI_GlobalComponent as GlobalComponent, appAPI_GlobalComponentConnection as GlobalComponentConnection, appAPI_GlobalComponentEdge as GlobalComponentEdge, appAPI_GlobalComponentOrder as GlobalComponentOrder, appAPI_GlobalComponentOrderField as GlobalComponentOrderField, appAPI_GlobalComponentWhereInput as GlobalComponentWhereInput, appAPI_GlobalSetting as GlobalSetting, appAPI_GlobalSettingConnection as GlobalSettingConnection, appAPI_GlobalSettingEdge as GlobalSettingEdge, appAPI_GlobalSettingWhereInput as GlobalSettingWhereInput, appAPI_GlobalStoreVersion as GlobalStoreVersion, appAPI_GlobalStoreVersionConnection as GlobalStoreVersionConnection, appAPI_GlobalStoreVersionEdge as GlobalStoreVersionEdge, appAPI_GlobalStoreVersionOrder as GlobalStoreVersionOrder, appAPI_GlobalStoreVersionOrderField as GlobalStoreVersionOrderField, appAPI_GlobalStoreVersionWhereInput as GlobalStoreVersionWhereInput, appAPI_GpPageViewStat as GpPageViewStat, appAPI_GpPageViewStatConnection as GpPageViewStatConnection, appAPI_GpPageViewStatEdge as GpPageViewStatEdge, appAPI_GpPageViewStatOrder as GpPageViewStatOrder, appAPI_GpPageViewStatOrderField as GpPageViewStatOrderField, appAPI_GpPageViewStatWhereInput as GpPageViewStatWhereInput, appAPI_HeatmapAnalytics as HeatmapAnalytics, appAPI_HeatmapAnalyticsWhereInput as HeatmapAnalyticsWhereInput, appAPI_HeatmapClickType as HeatmapClickType, appAPI_HeatmapClicksWhereInput as HeatmapClicksWhereInput, appAPI_HeatmapLogWhereInput as HeatmapLogWhereInput, appAPI_HeatmapScrollData as HeatmapScrollData, appAPI_HeatmapScrollRow as HeatmapScrollRow, appAPI_HeatmapScrollWhereInput as HeatmapScrollWhereInput, appAPI_HeatmapVisitorStats as HeatmapVisitorStats, appAPI_Icon as Icon, appAPI_IconConnection as IconConnection, appAPI_IconEdge as IconEdge, appAPI_IconOrder as IconOrder, appAPI_IconOrderField as IconOrderField, appAPI_IconType as IconType, appAPI_IconWhereInput as IconWhereInput, appAPI_Incremental as Incremental, appAPI_InputMaybe as InputMaybe, appAPI_IntervalMode as IntervalMode, appAPI_JourneyMatchType as JourneyMatchType, appAPI_JsonFilter as JsonFilter, appAPI_Level as Level, appAPI_LibraryBadge as LibraryBadge, appAPI_LibraryBadgeConnection as LibraryBadgeConnection, appAPI_LibraryBadgeEdge as LibraryBadgeEdge, appAPI_LibraryBadgeOrder as LibraryBadgeOrder, appAPI_LibraryBadgeOrderField as LibraryBadgeOrderField, appAPI_LibraryBadgeType as LibraryBadgeType, appAPI_LibraryBadgeWhereInput as LibraryBadgeWhereInput, appAPI_LibraryChangeTimes as LibraryChangeTimes, appAPI_LibraryFeature as LibraryFeature, appAPI_LibraryFeatureConnection as LibraryFeatureConnection, appAPI_LibraryFeatureEdge as LibraryFeatureEdge, appAPI_LibraryFeatureOrder as LibraryFeatureOrder, appAPI_LibraryFeatureOrderField as LibraryFeatureOrderField, appAPI_LibraryFeatureType as LibraryFeatureType, appAPI_LibraryFeatureWhereInput as LibraryFeatureWhereInput, appAPI_LibraryIndustry as LibraryIndustry, appAPI_LibraryIndustryConnection as LibraryIndustryConnection, appAPI_LibraryIndustryEdge as LibraryIndustryEdge, appAPI_LibraryIndustryOrder as LibraryIndustryOrder, appAPI_LibraryIndustryOrderField as LibraryIndustryOrderField, appAPI_LibraryIndustryType as LibraryIndustryType, appAPI_LibraryIndustryWhereInput as LibraryIndustryWhereInput, appAPI_LibrarySaleFunnel as LibrarySaleFunnel, appAPI_LibrarySaleFunnelConnection as LibrarySaleFunnelConnection, appAPI_LibrarySaleFunnelDiscount as LibrarySaleFunnelDiscount, appAPI_LibrarySaleFunnelDiscountObjectType as LibrarySaleFunnelDiscountObjectType, appAPI_LibrarySaleFunnelDiscountType as LibrarySaleFunnelDiscountType, appAPI_LibrarySaleFunnelDiscountValueType as LibrarySaleFunnelDiscountValueType, appAPI_LibrarySaleFunnelDiscountWhereInput as LibrarySaleFunnelDiscountWhereInput, appAPI_LibrarySaleFunnelEdge as LibrarySaleFunnelEdge, appAPI_LibrarySaleFunnelMeta as LibrarySaleFunnelMeta, appAPI_LibrarySaleFunnelMetaConnection as LibrarySaleFunnelMetaConnection, appAPI_LibrarySaleFunnelMetaEdge as LibrarySaleFunnelMetaEdge, appAPI_LibrarySaleFunnelMetaWhereInput as LibrarySaleFunnelMetaWhereInput, appAPI_LibrarySaleFunnelOffer as LibrarySaleFunnelOffer, appAPI_LibrarySaleFunnelOfferType as LibrarySaleFunnelOfferType, appAPI_LibrarySaleFunnelOfferWhereInput as LibrarySaleFunnelOfferWhereInput, appAPI_LibrarySaleFunnelOrder as LibrarySaleFunnelOrder, appAPI_LibrarySaleFunnelOrderField as LibrarySaleFunnelOrderField, appAPI_LibrarySaleFunnelType as LibrarySaleFunnelType, appAPI_LibrarySaleFunnelWhereInput as LibrarySaleFunnelWhereInput, appAPI_LibrarySection as LibrarySection, appAPI_LibrarySectionConnection as LibrarySectionConnection, appAPI_LibrarySectionEdge as LibrarySectionEdge, appAPI_LibrarySectionMeta as LibrarySectionMeta, appAPI_LibrarySectionMetaConnection as LibrarySectionMetaConnection, appAPI_LibrarySectionMetaEdge as LibrarySectionMetaEdge, appAPI_LibrarySectionMetaWhereInput as LibrarySectionMetaWhereInput, appAPI_LibrarySectionOrder as LibrarySectionOrder, appAPI_LibrarySectionOrderField as LibrarySectionOrderField, appAPI_LibrarySectionTag as LibrarySectionTag, appAPI_LibrarySectionTagWhereInput as LibrarySectionTagWhereInput, appAPI_LibrarySectionWhereInput as LibrarySectionWhereInput, appAPI_LibraryTemplate as LibraryTemplate, appAPI_LibraryTemplateConnection as LibraryTemplateConnection, appAPI_LibraryTemplateEdge as LibraryTemplateEdge, appAPI_LibraryTemplateMeta as LibraryTemplateMeta, appAPI_LibraryTemplateMetaConnection as LibraryTemplateMetaConnection, appAPI_LibraryTemplateMetaEdge as LibraryTemplateMetaEdge, appAPI_LibraryTemplateMetaWhereInput as LibraryTemplateMetaWhereInput, appAPI_LibraryTemplateOrder as LibraryTemplateOrder, appAPI_LibraryTemplateOrderField as LibraryTemplateOrderField, appAPI_LibraryTemplateTag as LibraryTemplateTag, appAPI_LibraryTemplateTagWhereInput as LibraryTemplateTagWhereInput, appAPI_LibraryTemplateType as LibraryTemplateType, appAPI_LibraryTemplateWhereInput as LibraryTemplateWhereInput, appAPI_LineItemWhereInput as LineItemWhereInput, appAPI_MakeEmpty as MakeEmpty, appAPI_MakeMaybe as MakeMaybe, appAPI_MakeOptional as MakeOptional, appAPI_MakeSaleFunnelCampaignWinnerInput as MakeSaleFunnelCampaignWinnerInput, appAPI_MakeWinnerInput as MakeWinnerInput, appAPI_MakeWinnerTargetObject as MakeWinnerTargetObject, appAPI_MakeWinnerVariant as MakeWinnerVariant, appAPI_Maybe as Maybe, appAPI_Media as Media, appAPI_MediaConnection as MediaConnection, appAPI_MediaEdge as MediaEdge, appAPI_MediaOrder as MediaOrder, appAPI_MediaOrderField as MediaOrderField, appAPI_MediaWhereInput as MediaWhereInput, appAPI_Metafield as Metafield, appAPI_MetafieldConnection as MetafieldConnection, appAPI_MetafieldDefinition as MetafieldDefinition, appAPI_MetafieldDefinitionConnection as MetafieldDefinitionConnection, appAPI_MetafieldDefinitionEdge as MetafieldDefinitionEdge, appAPI_MetafieldDefinitionOrder as MetafieldDefinitionOrder, appAPI_MetafieldDefinitionOrderField as MetafieldDefinitionOrderField, appAPI_MetafieldDefinitionOwnerType as MetafieldDefinitionOwnerType, appAPI_MetafieldDefinitionWhereInput as MetafieldDefinitionWhereInput, appAPI_MetafieldEdge as MetafieldEdge, appAPI_MetafieldObjectType as MetafieldObjectType, appAPI_MetafieldOrder as MetafieldOrder, appAPI_MetafieldOrderField as MetafieldOrderField, appAPI_MetafieldWhereInput as MetafieldWhereInput, appAPI_Money as Money, appAPI_Mutation as Mutation, appAPI_MutationAgencyClientRelDeleteArgs as MutationAgencyClientRelDeleteArgs, appAPI_MutationAgencyClientRelOffboardArgs as MutationAgencyClientRelOffboardArgs, appAPI_MutationAgencyCreateArgs as MutationAgencyCreateArgs, appAPI_MutationAgencyDeleteArgs as MutationAgencyDeleteArgs, appAPI_MutationAgencyPackageSharingCreateArgs as MutationAgencyPackageSharingCreateArgs, appAPI_MutationAgencyPackageSharingUpdateArgs as MutationAgencyPackageSharingUpdateArgs, appAPI_MutationAgencyUpdateArgs as MutationAgencyUpdateArgs, appAPI_MutationAssignObjectTriggerConditionCreateArgs as MutationAssignObjectTriggerConditionCreateArgs, appAPI_MutationAssignObjectTriggerConditionUpdateArgs as MutationAssignObjectTriggerConditionUpdateArgs, appAPI_MutationCampaignBulkCreateArgs as MutationCampaignBulkCreateArgs, appAPI_MutationCampaignBulkUpdateArgs as MutationCampaignBulkUpdateArgs, appAPI_MutationCampaignCreateArgs as MutationCampaignCreateArgs, appAPI_MutationCampaignDeleteArgs as MutationCampaignDeleteArgs, appAPI_MutationCampaignGroupCreateArgs as MutationCampaignGroupCreateArgs, appAPI_MutationCampaignGroupDeleteArgs as MutationCampaignGroupDeleteArgs, appAPI_MutationCampaignGroupUpdateArgs as MutationCampaignGroupUpdateArgs, appAPI_MutationCampaignProductCreateArgs as MutationCampaignProductCreateArgs, appAPI_MutationCampaignProductDeleteArgs as MutationCampaignProductDeleteArgs, appAPI_MutationCampaignProductUpdateArgs as MutationCampaignProductUpdateArgs, appAPI_MutationCampaignPublishArgs as MutationCampaignPublishArgs, appAPI_MutationCampaignUpdateArgs as MutationCampaignUpdateArgs, appAPI_MutationCappedAmountUpdateArgs as MutationCappedAmountUpdateArgs, appAPI_MutationCartCreateArgs as MutationCartCreateArgs, appAPI_MutationCartDiscountCodesUpdateArgs as MutationCartDiscountCodesUpdateArgs, appAPI_MutationCartLinesAddArgs as MutationCartLinesAddArgs, appAPI_MutationCartLinesRemoveArgs as MutationCartLinesRemoveArgs, appAPI_MutationCartLinesUpdateArgs as MutationCartLinesUpdateArgs, appAPI_MutationCartNoteUpdateArgs as MutationCartNoteUpdateArgs, appAPI_MutationCouponCreateArgs as MutationCouponCreateArgs, appAPI_MutationCouponDeleteArgs as MutationCouponDeleteArgs, appAPI_MutationCustomSectionCreateArgs as MutationCustomSectionCreateArgs, appAPI_MutationCustomSectionCreateVersionArgs as MutationCustomSectionCreateVersionArgs, appAPI_MutationCustomSectionDeleteArgs as MutationCustomSectionDeleteArgs, appAPI_MutationCustomSectionMakeDefaultArgs as MutationCustomSectionMakeDefaultArgs, appAPI_MutationCustomSectionRevertToVersionArgs as MutationCustomSectionRevertToVersionArgs, appAPI_MutationCustomSectionUpdateArgs as MutationCustomSectionUpdateArgs, appAPI_MutationDynamicTriggerConditionDeleteArgs as MutationDynamicTriggerConditionDeleteArgs, appAPI_MutationEmployeeAddArgs as MutationEmployeeAddArgs, appAPI_MutationEmployeeRemoveArgs as MutationEmployeeRemoveArgs, appAPI_MutationEmployeeUpdateRoleArgs as MutationEmployeeUpdateRoleArgs, appAPI_MutationEventLogDeleteManyArgs as MutationEventLogDeleteManyArgs, appAPI_MutationFeatureRequestCreateArgs as MutationFeatureRequestCreateArgs, appAPI_MutationFeatureRequestUpdateArgs as MutationFeatureRequestUpdateArgs, appAPI_MutationFeatureSettingCreateArgs as MutationFeatureSettingCreateArgs, appAPI_MutationFeatureSettingUpdateArgs as MutationFeatureSettingUpdateArgs, appAPI_MutationFileDeleteArgs as MutationFileDeleteArgs, appAPI_MutationFileRestoreArgs as MutationFileRestoreArgs, appAPI_MutationFileRestoreByBkFileKeyArgs as MutationFileRestoreByBkFileKeyArgs, appAPI_MutationFileUploadByUrlArgs as MutationFileUploadByUrlArgs, appAPI_MutationFontDeleteArgs as MutationFontDeleteArgs, appAPI_MutationGlobalComponentCreateArgs as MutationGlobalComponentCreateArgs, appAPI_MutationGlobalComponentDeleteArgs as MutationGlobalComponentDeleteArgs, appAPI_MutationGlobalComponentUpdateArgs as MutationGlobalComponentUpdateArgs, appAPI_MutationGlobalSettingCreateOrUpdateArgs as MutationGlobalSettingCreateOrUpdateArgs, appAPI_MutationGlobalSettingDeleteArgs as MutationGlobalSettingDeleteArgs, appAPI_MutationGlobalStoreVersionCreateArgs as MutationGlobalStoreVersionCreateArgs, appAPI_MutationGlobalStoreVersionMakeDefaultArgs as MutationGlobalStoreVersionMakeDefaultArgs, appAPI_MutationGraphqlCacheClearArgs as MutationGraphqlCacheClearArgs, appAPI_MutationIconCreateArgs as MutationIconCreateArgs, appAPI_MutationIconDeleteArgs as MutationIconDeleteArgs, appAPI_MutationIconUpdateArgs as MutationIconUpdateArgs, appAPI_MutationLibraryBadgeCreateArgs as MutationLibraryBadgeCreateArgs, appAPI_MutationLibraryBadgeDeleteArgs as MutationLibraryBadgeDeleteArgs, appAPI_MutationLibraryBadgeUpdateArgs as MutationLibraryBadgeUpdateArgs, appAPI_MutationLibraryFeatureCreateArgs as MutationLibraryFeatureCreateArgs, appAPI_MutationLibraryFeatureDeleteArgs as MutationLibraryFeatureDeleteArgs, appAPI_MutationLibraryFeatureUpdateArgs as MutationLibraryFeatureUpdateArgs, appAPI_MutationLibraryIndustryCreateArgs as MutationLibraryIndustryCreateArgs, appAPI_MutationLibraryIndustryDeleteArgs as MutationLibraryIndustryDeleteArgs, appAPI_MutationLibraryIndustryUpdateArgs as MutationLibraryIndustryUpdateArgs, appAPI_MutationLibrarySaleFunnelDeleteArgs as MutationLibrarySaleFunnelDeleteArgs, appAPI_MutationLibrarySaleFunnelMakeFromSaleFunnelArgs as MutationLibrarySaleFunnelMakeFromSaleFunnelArgs, appAPI_MutationLibrarySaleFunnelMetaCreateOrUpdateArgs as MutationLibrarySaleFunnelMetaCreateOrUpdateArgs, appAPI_MutationLibrarySaleFunnelMetaDeleteArgs as MutationLibrarySaleFunnelMetaDeleteArgs, appAPI_MutationLibrarySaleFunnelUpdateArgs as MutationLibrarySaleFunnelUpdateArgs, appAPI_MutationLibrarySectionDeleteArgs as MutationLibrarySectionDeleteArgs, appAPI_MutationLibrarySectionIncreaseUsageCountArgs as MutationLibrarySectionIncreaseUsageCountArgs, appAPI_MutationLibrarySectionMakeFromPageSectionArgs as MutationLibrarySectionMakeFromPageSectionArgs, appAPI_MutationLibrarySectionTagCreateArgs as MutationLibrarySectionTagCreateArgs, appAPI_MutationLibrarySectionTagDeleteArgs as MutationLibrarySectionTagDeleteArgs, appAPI_MutationLibrarySectionUpdateArgs as MutationLibrarySectionUpdateArgs, appAPI_MutationLibraryTemplateDeleteArgs as MutationLibraryTemplateDeleteArgs, appAPI_MutationLibraryTemplateIncreaseUsageCountArgs as MutationLibraryTemplateIncreaseUsageCountArgs, appAPI_MutationLibraryTemplateMakeFromPageArgs as MutationLibraryTemplateMakeFromPageArgs, appAPI_MutationLibraryTemplateTagCreateArgs as MutationLibraryTemplateTagCreateArgs, appAPI_MutationLibraryTemplateTagDeleteArgs as MutationLibraryTemplateTagDeleteArgs, appAPI_MutationLibraryTemplateUpdateArgs as MutationLibraryTemplateUpdateArgs, appAPI_MutationMakeStyleGlobalArgs as MutationMakeStyleGlobalArgs, appAPI_MutationMakeWinnerArgs as MutationMakeWinnerArgs, appAPI_MutationOfferCheapestProductConditionCreateArgs as MutationOfferCheapestProductConditionCreateArgs, appAPI_MutationOfferDynamicDiscountCreateOrUpdateArgs as MutationOfferDynamicDiscountCreateOrUpdateArgs, appAPI_MutationOfferDynamicDiscountDeleteArgs as MutationOfferDynamicDiscountDeleteArgs, appAPI_MutationOfferDynamicTriggerConditionDeleteArgs as MutationOfferDynamicTriggerConditionDeleteArgs, appAPI_MutationOfferDynamicTriggerCreateArgs as MutationOfferDynamicTriggerCreateArgs, appAPI_MutationOfferDynamicTriggerDeleteArgs as MutationOfferDynamicTriggerDeleteArgs, appAPI_MutationOfferMostExpensiveProductConditionCreateArgs as MutationOfferMostExpensiveProductConditionCreateArgs, appAPI_MutationOfferProductCollectionConditionCreateArgs as MutationOfferProductCollectionConditionCreateArgs, appAPI_MutationOfferProductCollectionConditionUpdateArgs as MutationOfferProductCollectionConditionUpdateArgs, appAPI_MutationOfferProductPriceConditionCreateArgs as MutationOfferProductPriceConditionCreateArgs, appAPI_MutationOfferProductPriceConditionUpdateArgs as MutationOfferProductPriceConditionUpdateArgs, appAPI_MutationOfferProductTagConditionCreateArgs as MutationOfferProductTagConditionCreateArgs, appAPI_MutationOfferProductTagConditionUpdateArgs as MutationOfferProductTagConditionUpdateArgs, appAPI_MutationOfferProductVariantConditionCreateArgs as MutationOfferProductVariantConditionCreateArgs, appAPI_MutationOfferProductVariantConditionUpdateArgs as MutationOfferProductVariantConditionUpdateArgs, appAPI_MutationOfferSameAsPurchasedProductsConditionCreateArgs as MutationOfferSameAsPurchasedProductsConditionCreateArgs, appAPI_MutationOfferSpecificProductConditionCreateArgs as MutationOfferSpecificProductConditionCreateArgs, appAPI_MutationOfferSpecificProductConditionUpdateArgs as MutationOfferSpecificProductConditionUpdateArgs, appAPI_MutationOrderValueConditionCreateArgs as MutationOrderValueConditionCreateArgs, appAPI_MutationOrderValueConditionUpdateArgs as MutationOrderValueConditionUpdateArgs, appAPI_MutationPageInteractionCreateArgs as MutationPageInteractionCreateArgs, appAPI_MutationPageInteractionDeleteArgs as MutationPageInteractionDeleteArgs, appAPI_MutationPageInteractionPreviewArgs as MutationPageInteractionPreviewArgs, appAPI_MutationPageInteractionPublishArgs as MutationPageInteractionPublishArgs, appAPI_MutationPageInteractionUpdateArgs as MutationPageInteractionUpdateArgs, appAPI_MutationPageSectionBulkCreateArgs as MutationPageSectionBulkCreateArgs, appAPI_MutationPageSectionCreateArgs as MutationPageSectionCreateArgs, appAPI_MutationPageSectionCreateFromThemeSectionArgs as MutationPageSectionCreateFromThemeSectionArgs, appAPI_MutationPageSectionMetaCreateOrUpdateArgs as MutationPageSectionMetaCreateOrUpdateArgs, appAPI_MutationPageSectionMetaDeleteArgs as MutationPageSectionMetaDeleteArgs, appAPI_MutationPageSectionUpdateArgs as MutationPageSectionUpdateArgs, appAPI_MutationPageSectionsBulkDeleteArgs as MutationPageSectionsBulkDeleteArgs, appAPI_MutationPageViewUpArgs as MutationPageViewUpArgs, appAPI_MutationPlanCreateArgs as MutationPlanCreateArgs, appAPI_MutationPlanDeleteArgs as MutationPlanDeleteArgs, appAPI_MutationPlanUpdateArgs as MutationPlanUpdateArgs, appAPI_MutationPlatformOriginalTemplateDeleteArgs as MutationPlatformOriginalTemplateDeleteArgs, appAPI_MutationPlatformOriginalTemplateResetArgs as MutationPlatformOriginalTemplateResetArgs, appAPI_MutationPlatformOriginalTemplateSyncArgs as MutationPlatformOriginalTemplateSyncArgs, appAPI_MutationPlatformOriginalTemplateUpsertArgs as MutationPlatformOriginalTemplateUpsertArgs, appAPI_MutationPlatformThemeFileDeleteArgs as MutationPlatformThemeFileDeleteArgs, appAPI_MutationProductCollectionConditionCreateArgs as MutationProductCollectionConditionCreateArgs, appAPI_MutationProductCollectionConditionUpdateArgs as MutationProductCollectionConditionUpdateArgs, appAPI_MutationProductDiscountActivateArgs as MutationProductDiscountActivateArgs, appAPI_MutationProductDiscountCreateArgs as MutationProductDiscountCreateArgs, appAPI_MutationProductDiscountDeactivateArgs as MutationProductDiscountDeactivateArgs, appAPI_MutationProductDiscountDeleteArgs as MutationProductDiscountDeleteArgs, appAPI_MutationProductDiscountDuplicateArgs as MutationProductDiscountDuplicateArgs, appAPI_MutationProductDiscountSyncArgs as MutationProductDiscountSyncArgs, appAPI_MutationProductDiscountUpdateArgs as MutationProductDiscountUpdateArgs, appAPI_MutationProductPriceConditionCreateArgs as MutationProductPriceConditionCreateArgs, appAPI_MutationProductPriceConditionUpdateArgs as MutationProductPriceConditionUpdateArgs, appAPI_MutationProductTagConditionCreateArgs as MutationProductTagConditionCreateArgs, appAPI_MutationProductTagConditionUpdateArgs as MutationProductTagConditionUpdateArgs, appAPI_MutationProductVariantConditionCreateArgs as MutationProductVariantConditionCreateArgs, appAPI_MutationProductVariantConditionUpdateArgs as MutationProductVariantConditionUpdateArgs, appAPI_MutationPromotionCreateArgs as MutationPromotionCreateArgs, appAPI_MutationPromotionDeleteArgs as MutationPromotionDeleteArgs, appAPI_MutationPromotionUpdateArgs as MutationPromotionUpdateArgs, appAPI_MutationPublicShopLibraryThemeCreateArgs as MutationPublicShopLibraryThemeCreateArgs, appAPI_MutationPublicShopLibraryThemeDeleteArgs as MutationPublicShopLibraryThemeDeleteArgs, appAPI_MutationPublicShopLibraryThemeForceDeleteArgs as MutationPublicShopLibraryThemeForceDeleteArgs, appAPI_MutationPublicShopLibraryThemeRestoreArgs as MutationPublicShopLibraryThemeRestoreArgs, appAPI_MutationRetryFailedBillingPaymentArgs as MutationRetryFailedBillingPaymentArgs, appAPI_MutationSaleFunnelCampaignCreateArgs as MutationSaleFunnelCampaignCreateArgs, appAPI_MutationSaleFunnelCampaignTrafficRangeUpdateArgs as MutationSaleFunnelCampaignTrafficRangeUpdateArgs, appAPI_MutationSaleFunnelCampaignUpdateArgs as MutationSaleFunnelCampaignUpdateArgs, appAPI_MutationSaleFunnelCampaignWinnerArgs as MutationSaleFunnelCampaignWinnerArgs, appAPI_MutationSaleFunnelCreateArgs as MutationSaleFunnelCreateArgs, appAPI_MutationSaleFunnelCreateFromLibraryArgs as MutationSaleFunnelCreateFromLibraryArgs, appAPI_MutationSaleFunnelDeleteArgs as MutationSaleFunnelDeleteArgs, appAPI_MutationSaleFunnelDiscountCreateOrUpdateArgs as MutationSaleFunnelDiscountCreateOrUpdateArgs, appAPI_MutationSaleFunnelDiscountDeleteArgs as MutationSaleFunnelDiscountDeleteArgs, appAPI_MutationSaleFunnelDuplicateArgs as MutationSaleFunnelDuplicateArgs, appAPI_MutationSaleFunnelDuplicateToArgs as MutationSaleFunnelDuplicateToArgs, appAPI_MutationSaleFunnelDynamicTriggerCreateArgs as MutationSaleFunnelDynamicTriggerCreateArgs, appAPI_MutationSaleFunnelDynamicTriggerDeleteArgs as MutationSaleFunnelDynamicTriggerDeleteArgs, appAPI_MutationSaleFunnelMetaCreateOrUpdateArgs as MutationSaleFunnelMetaCreateOrUpdateArgs, appAPI_MutationSaleFunnelMetaDeleteArgs as MutationSaleFunnelMetaDeleteArgs, appAPI_MutationSaleFunnelOfferCreateArgs as MutationSaleFunnelOfferCreateArgs, appAPI_MutationSaleFunnelOfferDeleteArgs as MutationSaleFunnelOfferDeleteArgs, appAPI_MutationSaleFunnelOfferPublishArgs as MutationSaleFunnelOfferPublishArgs, appAPI_MutationSaleFunnelOfferUnPublishArgs as MutationSaleFunnelOfferUnPublishArgs, appAPI_MutationSaleFunnelOfferUpdateArgs as MutationSaleFunnelOfferUpdateArgs, appAPI_MutationSaleFunnelPublishArgs as MutationSaleFunnelPublishArgs, appAPI_MutationSaleFunnelRedirectCreateArgs as MutationSaleFunnelRedirectCreateArgs, appAPI_MutationSaleFunnelRedirectDeleteArgs as MutationSaleFunnelRedirectDeleteArgs, appAPI_MutationSaleFunnelRedirectUpdateArgs as MutationSaleFunnelRedirectUpdateArgs, appAPI_MutationSaleFunnelReplaceComponentDataArgs as MutationSaleFunnelReplaceComponentDataArgs, appAPI_MutationSaleFunnelTriggerCreateArgs as MutationSaleFunnelTriggerCreateArgs, appAPI_MutationSaleFunnelTriggerDeleteArgs as MutationSaleFunnelTriggerDeleteArgs, appAPI_MutationSaleFunnelUpdateArgs as MutationSaleFunnelUpdateArgs, appAPI_MutationSalePageProductCreateArgs as MutationSalePageProductCreateArgs, appAPI_MutationSalePageProductDeleteArgs as MutationSalePageProductDeleteArgs, appAPI_MutationSalePageProductUpdateArgs as MutationSalePageProductUpdateArgs, appAPI_MutationScheduledPublishCancelArgs as MutationScheduledPublishCancelArgs, appAPI_MutationScheduledPublishCreateArgs as MutationScheduledPublishCreateArgs, appAPI_MutationScheduledPublishForceStartArgs as MutationScheduledPublishForceStartArgs, appAPI_MutationScheduledPublishUpdateArgs as MutationScheduledPublishUpdateArgs, appAPI_MutationSectionCategoryAddSectionsArgs as MutationSectionCategoryAddSectionsArgs, appAPI_MutationSectionCategoryCreateBulkArgs as MutationSectionCategoryCreateBulkArgs, appAPI_MutationSectionCategoryDeleteBulkArgs as MutationSectionCategoryDeleteBulkArgs, appAPI_MutationSectionCategoryRemoveSectionsArgs as MutationSectionCategoryRemoveSectionsArgs, appAPI_MutationSectionCategoryUpdateBulkArgs as MutationSectionCategoryUpdateBulkArgs, appAPI_MutationShopCleanupArgs as MutationShopCleanupArgs, appAPI_MutationShopCreateArgs as MutationShopCreateArgs, appAPI_MutationShopDeployArgs as MutationShopDeployArgs, appAPI_MutationShopDomainAssignArgs as MutationShopDomainAssignArgs, appAPI_MutationShopDomainPrimaryArgs as MutationShopDomainPrimaryArgs, appAPI_MutationShopDomainRemoveArgs as MutationShopDomainRemoveArgs, appAPI_MutationShopInitPublisherArgs as MutationShopInitPublisherArgs, appAPI_MutationShopLibraryOfferDeleteArgs as MutationShopLibraryOfferDeleteArgs, appAPI_MutationShopLibraryOfferMakeFromOfferArgs as MutationShopLibraryOfferMakeFromOfferArgs, appAPI_MutationShopLibraryOfferUpdateArgs as MutationShopLibraryOfferUpdateArgs, appAPI_MutationShopLibraryPageDeleteArgs as MutationShopLibraryPageDeleteArgs, appAPI_MutationShopLibraryPageMakeFromPageArgs as MutationShopLibraryPageMakeFromPageArgs, appAPI_MutationShopLibraryPageUpdateArgs as MutationShopLibraryPageUpdateArgs, appAPI_MutationShopLibraryThemeCreateArgs as MutationShopLibraryThemeCreateArgs, appAPI_MutationShopLibraryThemeDeleteArgs as MutationShopLibraryThemeDeleteArgs, appAPI_MutationShopLibraryThemeForceDeleteArgs as MutationShopLibraryThemeForceDeleteArgs, appAPI_MutationShopLibraryThemeRestoreArgs as MutationShopLibraryThemeRestoreArgs, appAPI_MutationShopLibraryThemeUpdateArgs as MutationShopLibraryThemeUpdateArgs, appAPI_MutationShopManageRequestApproveArgs as MutationShopManageRequestApproveArgs, appAPI_MutationShopManageRequestCancelArgs as MutationShopManageRequestCancelArgs, appAPI_MutationShopManageRequestCreateArgs as MutationShopManageRequestCreateArgs, appAPI_MutationShopManageRequestRejectArgs as MutationShopManageRequestRejectArgs, appAPI_MutationShopMetaCreateOrUpdateArgs as MutationShopMetaCreateOrUpdateArgs, appAPI_MutationShopMetaDeleteArgs as MutationShopMetaDeleteArgs, appAPI_MutationShopMetafieldsCreateArgs as MutationShopMetafieldsCreateArgs, appAPI_MutationShopPageCounterCreateOrUpdateArgs as MutationShopPageCounterCreateOrUpdateArgs, appAPI_MutationShopPlatformBillReissueArgs as MutationShopPlatformBillReissueArgs, appAPI_MutationShopPlatformConnectArgs as MutationShopPlatformConnectArgs, appAPI_MutationShopPlatformDisconnectArgs as MutationShopPlatformDisconnectArgs, appAPI_MutationShopPlatformMetafieldsCreateArgs as MutationShopPlatformMetafieldsCreateArgs, appAPI_MutationShopPlatformPlanCancelArgs as MutationShopPlatformPlanCancelArgs, appAPI_MutationShopPlatformPlanCreateArgs as MutationShopPlatformPlanCreateArgs, appAPI_MutationShopPlatformUpdateToMixVersionArgs as MutationShopPlatformUpdateToMixVersionArgs, appAPI_MutationShopPlatformVerifyStorefrontAccessTokenArgs as MutationShopPlatformVerifyStorefrontAccessTokenArgs, appAPI_MutationShopRemoveAllTemplatesArgs as MutationShopRemoveAllTemplatesArgs, appAPI_MutationShopStaffCreateArgs as MutationShopStaffCreateArgs, appAPI_MutationShopStaffDeleteArgs as MutationShopStaffDeleteArgs, appAPI_MutationShopStaffUpdateArgs as MutationShopStaffUpdateArgs, appAPI_MutationShopUpdateArgs as MutationShopUpdateArgs, appAPI_MutationShopUpdateThemeExtensionArgs as MutationShopUpdateThemeExtensionArgs, appAPI_MutationSpecificProductConditionCreateArgs as MutationSpecificProductConditionCreateArgs, appAPI_MutationSpecificProductConditionUpdateArgs as MutationSpecificProductConditionUpdateArgs, appAPI_MutationSubscribeWebhooksArgs as MutationSubscribeWebhooksArgs, appAPI_MutationSubscriptionExtendTrialDaysArgs as MutationSubscriptionExtendTrialDaysArgs, appAPI_MutationSubscriptionResetTrialDaysArgs as MutationSubscriptionResetTrialDaysArgs, appAPI_MutationSurveyCreateArgs as MutationSurveyCreateArgs, appAPI_MutationSurveyDeleteArgs as MutationSurveyDeleteArgs, appAPI_MutationSurveyFeedbackCreateByHandleArgs as MutationSurveyFeedbackCreateByHandleArgs, appAPI_MutationSurveyUpdateArgs as MutationSurveyUpdateArgs, appAPI_MutationSyncGitReleaseToS3Args as MutationSyncGitReleaseToS3Args, appAPI_MutationSyncResourceTriggerArgs as MutationSyncResourceTriggerArgs, appAPI_MutationSyncWebhooksSubscriptionArgs as MutationSyncWebhooksSubscriptionArgs, appAPI_MutationTagCreateArgs as MutationTagCreateArgs, appAPI_MutationTagDeleteArgs as MutationTagDeleteArgs, appAPI_MutationTagUpdateArgs as MutationTagUpdateArgs, appAPI_MutationTemplateCategoryAddTemplatesArgs as MutationTemplateCategoryAddTemplatesArgs, appAPI_MutationTemplateCategoryCreateBulkArgs as MutationTemplateCategoryCreateBulkArgs, appAPI_MutationTemplateCategoryDeleteBulkArgs as MutationTemplateCategoryDeleteBulkArgs, appAPI_MutationTemplateCategoryRemoveTemplatesArgs as MutationTemplateCategoryRemoveTemplatesArgs, appAPI_MutationTemplateCategoryUpdateBulkArgs as MutationTemplateCategoryUpdateBulkArgs, appAPI_MutationTemplatePackageCreateArgs as MutationTemplatePackageCreateArgs, appAPI_MutationTemplatePackageDeleteArgs as MutationTemplatePackageDeleteArgs, appAPI_MutationTemplatePackageDuplicateArgs as MutationTemplatePackageDuplicateArgs, appAPI_MutationTemplatePackageReceiveArgs as MutationTemplatePackageReceiveArgs, appAPI_MutationTemplatePackageUpdateArgs as MutationTemplatePackageUpdateArgs, appAPI_MutationThemeAssetsAuditArgs as MutationThemeAssetsAuditArgs, appAPI_MutationThemeBackupFileToShopifyArgs as MutationThemeBackupFileToShopifyArgs, appAPI_MutationThemeCreateArgs as MutationThemeCreateArgs, appAPI_MutationThemeDeleteArgs as MutationThemeDeleteArgs, appAPI_MutationThemeDuplicateArgs as MutationThemeDuplicateArgs, appAPI_MutationThemeForceDeleteArgs as MutationThemeForceDeleteArgs, appAPI_MutationThemeInsertFromGlobalArgs as MutationThemeInsertFromGlobalArgs, appAPI_MutationThemeMakeGlobalArgs as MutationThemeMakeGlobalArgs, appAPI_MutationThemeMetaCreateOrUpdateArgs as MutationThemeMetaCreateOrUpdateArgs, appAPI_MutationThemeMetaDeleteArgs as MutationThemeMetaDeleteArgs, appAPI_MutationThemePageAddThemeSectionsArgs as MutationThemePageAddThemeSectionsArgs, appAPI_MutationThemePageCreateArgs as MutationThemePageCreateArgs, appAPI_MutationThemePageCustomSectionCreateArgs as MutationThemePageCustomSectionCreateArgs, appAPI_MutationThemePageCustomSectionDeleteArgs as MutationThemePageCustomSectionDeleteArgs, appAPI_MutationThemePageDeleteArgs as MutationThemePageDeleteArgs, appAPI_MutationThemePageDuplicateArgs as MutationThemePageDuplicateArgs, appAPI_MutationThemePageDuplicateFromSharedPageArgs as MutationThemePageDuplicateFromSharedPageArgs, appAPI_MutationThemePageDuplicateToExistingPageArgs as MutationThemePageDuplicateToExistingPageArgs, appAPI_MutationThemePageForceDeleteArgs as MutationThemePageForceDeleteArgs, appAPI_MutationThemePageGlobalComponentCreateArgs as MutationThemePageGlobalComponentCreateArgs, appAPI_MutationThemePageGlobalComponentDeleteArgs as MutationThemePageGlobalComponentDeleteArgs, appAPI_MutationThemePageGlobalComponentUpdateArgs as MutationThemePageGlobalComponentUpdateArgs, appAPI_MutationThemePageImportArgs as MutationThemePageImportArgs, appAPI_MutationThemePageMakeDefaultArgs as MutationThemePageMakeDefaultArgs, appAPI_MutationThemePageMakeFromPageVersionArgs as MutationThemePageMakeFromPageVersionArgs, appAPI_MutationThemePageMetaBatchUpsertArgs as MutationThemePageMetaBatchUpsertArgs, appAPI_MutationThemePageMetaCreateOrUpdateArgs as MutationThemePageMetaCreateOrUpdateArgs, appAPI_MutationThemePageMetaDeleteArgs as MutationThemePageMetaDeleteArgs, appAPI_MutationThemePageOnlineStoreDataCreateArgs as MutationThemePageOnlineStoreDataCreateArgs, appAPI_MutationThemePageOnlineStoreDataDeleteArgs as MutationThemePageOnlineStoreDataDeleteArgs, appAPI_MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs as MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs, appAPI_MutationThemePageOnlineStoreDataUpdateArgs as MutationThemePageOnlineStoreDataUpdateArgs, appAPI_MutationThemePageOnlineStoreDataUpsertArgs as MutationThemePageOnlineStoreDataUpsertArgs, appAPI_MutationThemePagePreviewArgs as MutationThemePagePreviewArgs, appAPI_MutationThemePagePublishArgs as MutationThemePagePublishArgs, appAPI_MutationThemePageRemoveThemeSectionsArgs as MutationThemePageRemoveThemeSectionsArgs, appAPI_MutationThemePageResetDefaultArgs as MutationThemePageResetDefaultArgs, appAPI_MutationThemePageRestoreArgs as MutationThemePageRestoreArgs, appAPI_MutationThemePageShareCreateArgs as MutationThemePageShareCreateArgs, appAPI_MutationThemePageShareDeleteArgs as MutationThemePageShareDeleteArgs, appAPI_MutationThemePageShareUpdateArgs as MutationThemePageShareUpdateArgs, appAPI_MutationThemePageUnPublishArgs as MutationThemePageUnPublishArgs, appAPI_MutationThemePageUnsetDefaultArgs as MutationThemePageUnsetDefaultArgs, appAPI_MutationThemePageUpdateArgs as MutationThemePageUpdateArgs, appAPI_MutationThemePageUpdateInformationToShopifyArgs as MutationThemePageUpdateInformationToShopifyArgs, appAPI_MutationThemePageVersionCreateArgs as MutationThemePageVersionCreateArgs, appAPI_MutationThemePageVersionDeleteArgs as MutationThemePageVersionDeleteArgs, appAPI_MutationThemePageVersionProtectArgs as MutationThemePageVersionProtectArgs, appAPI_MutationThemePageVersionUnprotectArgs as MutationThemePageVersionUnprotectArgs, appAPI_MutationThemePageVersionUpdateArgs as MutationThemePageVersionUpdateArgs, appAPI_MutationThemePageVersionUpgradeShopVersionArgs as MutationThemePageVersionUpgradeShopVersionArgs, appAPI_MutationThemePagesBulkRestoreArgs as MutationThemePagesBulkRestoreArgs, appAPI_MutationThemePublishArgs as MutationThemePublishArgs, appAPI_MutationThemeRestoreArgs as MutationThemeRestoreArgs, appAPI_MutationThemeSectionCreateArgs as MutationThemeSectionCreateArgs, appAPI_MutationThemeSectionCreateFromPageSectionArgs as MutationThemeSectionCreateFromPageSectionArgs, appAPI_MutationThemeSectionDeleteArgs as MutationThemeSectionDeleteArgs, appAPI_MutationThemeSectionMetaCreateOrUpdateArgs as MutationThemeSectionMetaCreateOrUpdateArgs, appAPI_MutationThemeSectionMetaDeleteArgs as MutationThemeSectionMetaDeleteArgs, appAPI_MutationThemeSectionPublishArgs as MutationThemeSectionPublishArgs, appAPI_MutationThemeSectionUnPublishArgs as MutationThemeSectionUnPublishArgs, appAPI_MutationThemeSectionUpdateArgs as MutationThemeSectionUpdateArgs, appAPI_MutationThemeSectionVersionCreateArgs as MutationThemeSectionVersionCreateArgs, appAPI_MutationThemeSectionVersionDeleteArgs as MutationThemeSectionVersionDeleteArgs, appAPI_MutationThemeSectionVersionProtectArgs as MutationThemeSectionVersionProtectArgs, appAPI_MutationThemeSectionVersionUnprotectArgs as MutationThemeSectionVersionUnprotectArgs, appAPI_MutationThemeSectionVersionUpdateArgs as MutationThemeSectionVersionUpdateArgs, appAPI_MutationThemeSectionVersionUpgradeShopVersionArgs as MutationThemeSectionVersionUpgradeShopVersionArgs, appAPI_MutationThemeStyleCreateArgs as MutationThemeStyleCreateArgs, appAPI_MutationThemeStyleCreateVersionArgs as MutationThemeStyleCreateVersionArgs, appAPI_MutationThemeStyleDeleteArgs as MutationThemeStyleDeleteArgs, appAPI_MutationThemeStyleDeleteVersionArgs as MutationThemeStyleDeleteVersionArgs, appAPI_MutationThemeStyleDuplicateArgs as MutationThemeStyleDuplicateArgs, appAPI_MutationThemeStyleRevertToVersionArgs as MutationThemeStyleRevertToVersionArgs, appAPI_MutationThemeStyleUpdateArgs as MutationThemeStyleUpdateArgs, appAPI_MutationThemeUpdateArgs as MutationThemeUpdateArgs, appAPI_MutationTotalQuantityConditionCreateArgs as MutationTotalQuantityConditionCreateArgs, appAPI_MutationTotalQuantityConditionUpdateArgs as MutationTotalQuantityConditionUpdateArgs, appAPI_MutationTriggerConditionDeleteArgs as MutationTriggerConditionDeleteArgs, appAPI_MutationUnsubscribeWebhooksArgs as MutationUnsubscribeWebhooksArgs, appAPI_MutationUsageFeeBillRetryArgs as MutationUsageFeeBillRetryArgs, appAPI_MutationUsageFeeTierCreateArgs as MutationUsageFeeTierCreateArgs, appAPI_MutationUsageFeeTierDeleteArgs as MutationUsageFeeTierDeleteArgs, appAPI_MutationUsageFeeTierUpdateArgs as MutationUsageFeeTierUpdateArgs, appAPI_MutationUserMetaCreateOrUpdateArgs as MutationUserMetaCreateOrUpdateArgs, appAPI_MutationUserMetaDeleteArgs as MutationUserMetaDeleteArgs, appAPI_MutationVariantContentCreateArgs as MutationVariantContentCreateArgs, appAPI_MutationVariantContentDeleteArgs as MutationVariantContentDeleteArgs, appAPI_MutationVariantContentUpdateArgs as MutationVariantContentUpdateArgs, appAPI_MutationVariantCreateArgs as MutationVariantCreateArgs, appAPI_MutationVariantDeleteArgs as MutationVariantDeleteArgs, appAPI_MutationVariantNameConditionCreateArgs as MutationVariantNameConditionCreateArgs, appAPI_MutationVariantNameConditionUpdateArgs as MutationVariantNameConditionUpdateArgs, appAPI_MutationVariantProductVariantBulkCreateArgs as MutationVariantProductVariantBulkCreateArgs, appAPI_MutationVariantProductVariantBulkUpdateArgs as MutationVariantProductVariantBulkUpdateArgs, appAPI_MutationVariantProductVariantCreateArgs as MutationVariantProductVariantCreateArgs, appAPI_MutationVariantProductVariantDeleteArgs as MutationVariantProductVariantDeleteArgs, appAPI_MutationVariantProductVariantPublishArgs as MutationVariantProductVariantPublishArgs, appAPI_MutationVariantProductVariantUpdateArgs as MutationVariantProductVariantUpdateArgs, appAPI_MutationVariantTemplateCreateArgs as MutationVariantTemplateCreateArgs, appAPI_MutationVariantTemplateDeleteArgs as MutationVariantTemplateDeleteArgs, appAPI_MutationVariantTemplateUpdateArgs as MutationVariantTemplateUpdateArgs, appAPI_MutationVariantUpdateArgs as MutationVariantUpdateArgs, appAPI_OfferDynamicDiscount as OfferDynamicDiscount, appAPI_OfferDynamicDiscountType as OfferDynamicDiscountType, appAPI_OfferDynamicDiscountValueType as OfferDynamicDiscountValueType, appAPI_OfferDynamicDiscountWhereInput as OfferDynamicDiscountWhereInput, appAPI_OfferDynamicTrigger as OfferDynamicTrigger, appAPI_OfferDynamicTriggerCondition as OfferDynamicTriggerCondition, appAPI_OfferDynamicTriggerConditionOperator as OfferDynamicTriggerConditionOperator, appAPI_OfferDynamicTriggerConditionType as OfferDynamicTriggerConditionType, appAPI_OfferDynamicTriggerConditionValue as OfferDynamicTriggerConditionValue, appAPI_OfferDynamicTriggerConditionWhereInput as OfferDynamicTriggerConditionWhereInput, appAPI_OfferDynamicTriggerWhereInput as OfferDynamicTriggerWhereInput, appAPI_OfferProductCollectionCondition as OfferProductCollectionCondition, appAPI_OfferProductPriceCondition as OfferProductPriceCondition, appAPI_OfferProductStatWhereInput as OfferProductStatWhereInput, appAPI_OfferProductTagCondition as OfferProductTagCondition, appAPI_OfferProductVariantCondition as OfferProductVariantCondition, appAPI_OfferProductVariantStatWhereInput as OfferProductVariantStatWhereInput, appAPI_OfferProductWhereInput as OfferProductWhereInput, appAPI_OfferSpecificProductCondition as OfferSpecificProductCondition, appAPI_OnlineStoreTag as OnlineStoreTag, appAPI_OnlineStoreTagConnection as OnlineStoreTagConnection, appAPI_OnlineStoreTagEdge as OnlineStoreTagEdge, appAPI_OnlineStoreTagOrder as OnlineStoreTagOrder, appAPI_OnlineStoreTagOrderField as OnlineStoreTagOrderField, appAPI_OnlineStoreTagWhereInput as OnlineStoreTagWhereInput, appAPI_OrderDirection as OrderDirection, appAPI_OrderJourney as OrderJourney, appAPI_OrderJourneyInput as OrderJourneyInput, appAPI_OrderJourneyItem as OrderJourneyItem, appAPI_OrderJourneyResponse as OrderJourneyResponse, appAPI_OrderProductStatWhereInput as OrderProductStatWhereInput, appAPI_OrderProductVariantStatWhereInput as OrderProductVariantStatWhereInput, appAPI_OrderStatWhereInput as OrderStatWhereInput, appAPI_OrderTriggerCondition as OrderTriggerCondition, appAPI_OrderValueCondition as OrderValueCondition, appAPI_OrderWhereInput as OrderWhereInput, appAPI_OwnerType as OwnerType, appAPI_Page as Page, appAPI_PageAnalytic as PageAnalytic, appAPI_PageAnalyticInput as PageAnalyticInput, appAPI_PageAnalyticMetric as PageAnalyticMetric, appAPI_PageConnection as PageConnection, appAPI_PageEdge as PageEdge, appAPI_PageInfo as PageInfo, appAPI_PageInteraction as PageInteraction, appAPI_PageInteractionWhereInput as PageInteractionWhereInput, appAPI_PageMetafieldArgs as PageMetafieldArgs, appAPI_PageOrder as PageOrder, appAPI_PageOrderField as PageOrderField, appAPI_PagePlatform as PagePlatform, appAPI_PageSection as PageSection, appAPI_PageSectionConnection as PageSectionConnection, appAPI_PageSectionEdge as PageSectionEdge, appAPI_PageSectionMeta as PageSectionMeta, appAPI_PageSectionMetaConnection as PageSectionMetaConnection, appAPI_PageSectionMetaEdge as PageSectionMetaEdge, appAPI_PageSectionMetaWhereInput as PageSectionMetaWhereInput, appAPI_PageSectionOrder as PageSectionOrder, appAPI_PageSectionOrderField as PageSectionOrderField, appAPI_PageSectionVersion as PageSectionVersion, appAPI_PageSectionVersionWhereInput as PageSectionVersionWhereInput, appAPI_PageSectionWhereInput as PageSectionWhereInput, appAPI_PageSnapshot as PageSnapshot, appAPI_PageSnapshotConnection as PageSnapshotConnection, appAPI_PageSnapshotEdge as PageSnapshotEdge, appAPI_PageSnapshotOrder as PageSnapshotOrder, appAPI_PageSnapshotOrderField as PageSnapshotOrderField, appAPI_PageSnapshotWhereInput as PageSnapshotWhereInput, appAPI_PageWhereInput as PageWhereInput, appAPI_PathAnalytic as PathAnalytic, appAPI_PathAnalyticInput as PathAnalyticInput, appAPI_PathAnalyticMetric as PathAnalyticMetric, appAPI_PathAnalytics as PathAnalytics, appAPI_PathGroups as PathGroups, appAPI_PayloadInfo as PayloadInfo, Plan$1 as Plan, appAPI_PlanConnection as PlanConnection, appAPI_PlanEdge as PlanEdge, appAPI_PlanOrder as PlanOrder, appAPI_PlanOrderField as PlanOrderField, appAPI_PlanWhereInput as PlanWhereInput, appAPI_Platform as Platform, appAPI_PlatformOriginalTemplate as PlatformOriginalTemplate, appAPI_PlatformOriginalTemplateCounterPageType as PlatformOriginalTemplateCounterPageType, appAPI_PlatformOriginalTemplateCounterWhereInput as PlatformOriginalTemplateCounterWhereInput, appAPI_PlatformOriginalTemplateWhereInput as PlatformOriginalTemplateWhereInput, appAPI_PlatformPage as PlatformPage, appAPI_PlatformPageConnection as PlatformPageConnection, appAPI_PlatformPageEdge as PlatformPageEdge, appAPI_PlatformPageSectionWhereInput as PlatformPageSectionWhereInput, appAPI_PlatformPageType as PlatformPageType, appAPI_PlatformThemeFile as PlatformThemeFile, appAPI_PlatformThemeFileConnection as PlatformThemeFileConnection, appAPI_PlatformThemeFileEdge as PlatformThemeFileEdge, appAPI_PlatformThemeFilePageInfo as PlatformThemeFilePageInfo, appAPI_PrerequisitePriceRuleWhereInput as PrerequisitePriceRuleWhereInput, appAPI_PreviewCustomSectionType as PreviewCustomSectionType, appAPI_PreviewPageInteraction as PreviewPageInteraction, appAPI_PreviewPageSection as PreviewPageSection, appAPI_PreviewPageSectionMeta as PreviewPageSectionMeta, appAPI_PreviewThemePage as PreviewThemePage, appAPI_PreviewThemePageMeta as PreviewThemePageMeta, appAPI_PreviewThemePageOnlineStoreData as PreviewThemePageOnlineStoreData, appAPI_PreviewThemePageOnlineStoreDataType as PreviewThemePageOnlineStoreDataType, appAPI_PreviewThemePageStatus as PreviewThemePageStatus, appAPI_PreviewThemePageType as PreviewThemePageType, appAPI_PreviewThemeStyle as PreviewThemeStyle, appAPI_PriceRulePlatform as PriceRulePlatform, appAPI_PriceRuleWhereInput as PriceRuleWhereInput, appAPI_PricingUnit as PricingUnit, appAPI_Product as Product, appAPI_ProductCollectionCondition as ProductCollectionCondition, appAPI_ProductCollectionsArgs as ProductCollectionsArgs, appAPI_ProductComponent as ProductComponent, appAPI_ProductConnection as ProductConnection, appAPI_ProductDiscount as ProductDiscount, appAPI_ProductDiscountConnection as ProductDiscountConnection, appAPI_ProductDiscountEdge as ProductDiscountEdge, appAPI_ProductDiscountObject as ProductDiscountObject, appAPI_ProductDiscountObjectConnection as ProductDiscountObjectConnection, appAPI_ProductDiscountObjectEdge as ProductDiscountObjectEdge, appAPI_ProductDiscountObjectOrder as ProductDiscountObjectOrder, appAPI_ProductDiscountObjectOrderField as ProductDiscountObjectOrderField, appAPI_ProductDiscountObjectType as ProductDiscountObjectType, appAPI_ProductDiscountObjectWhereInput as ProductDiscountObjectWhereInput, appAPI_ProductDiscountOrder as ProductDiscountOrder, appAPI_ProductDiscountOrderField as ProductDiscountOrderField, appAPI_ProductDiscountType as ProductDiscountType, appAPI_ProductDiscountWhereInput as ProductDiscountWhereInput, appAPI_ProductEdge as ProductEdge, appAPI_ProductListComponent as ProductListComponent, appAPI_ProductMediasArgs as ProductMediasArgs, appAPI_ProductMetafieldArgs as ProductMetafieldArgs, appAPI_ProductOption as ProductOption, appAPI_ProductOptionConnection as ProductOptionConnection, appAPI_ProductOptionEdge as ProductOptionEdge, appAPI_ProductOptionOrder as ProductOptionOrder, appAPI_ProductOptionOrderField as ProductOptionOrderField, appAPI_ProductOptionPlatform as ProductOptionPlatform, appAPI_ProductOptionValue as ProductOptionValue, appAPI_ProductOptionValueConnection as ProductOptionValueConnection, appAPI_ProductOptionValueEdge as ProductOptionValueEdge, appAPI_ProductOptionValueOrder as ProductOptionValueOrder, appAPI_ProductOptionValueOrderField as ProductOptionValueOrderField, appAPI_ProductOptionValuePlatform as ProductOptionValuePlatform, appAPI_ProductOptionValueWhereInput as ProductOptionValueWhereInput, appAPI_ProductOptionWhereInput as ProductOptionWhereInput, appAPI_ProductOrder as ProductOrder, appAPI_ProductOrderField as ProductOrderField, appAPI_ProductPlatform as ProductPlatform, appAPI_ProductPriceCondition as ProductPriceCondition, appAPI_ProductTagCondition as ProductTagCondition, appAPI_ProductTagWhereInput as ProductTagWhereInput, appAPI_ProductVariant as ProductVariant, appAPI_ProductVariantCondition as ProductVariantCondition, appAPI_ProductVariantConnection as ProductVariantConnection, appAPI_ProductVariantEdge as ProductVariantEdge, appAPI_ProductVariantMetafieldArgs as ProductVariantMetafieldArgs, appAPI_ProductVariantOrder as ProductVariantOrder, appAPI_ProductVariantOrderField as ProductVariantOrderField, appAPI_ProductVariantPlatform as ProductVariantPlatform, appAPI_ProductVariantWhereInput as ProductVariantWhereInput, appAPI_ProductVariantsArgs as ProductVariantsArgs, appAPI_ProductWhereInput as ProductWhereInput, appAPI_Promotion as Promotion, appAPI_PromotionConnection as PromotionConnection, appAPI_PromotionEdge as PromotionEdge, appAPI_PromotionOrder as PromotionOrder, appAPI_PromotionOrderField as PromotionOrderField, appAPI_PromotionType as PromotionType, appAPI_PromotionUsage as PromotionUsage, appAPI_PromotionUsageWhereInput as PromotionUsageWhereInput, appAPI_PromotionWhereInput as PromotionWhereInput, appAPI_PublicToken as PublicToken, appAPI_PublishStatus as PublishStatus, appAPI_PublishedCustomSection as PublishedCustomSection, appAPI_PublishedCustomSectionType as PublishedCustomSectionType, appAPI_PublishedCustomSectionWhereInput as PublishedCustomSectionWhereInput, appAPI_PublishedOfferDynamicDiscountType as PublishedOfferDynamicDiscountType, appAPI_PublishedOfferDynamicDiscountValueType as PublishedOfferDynamicDiscountValueType, appAPI_PublishedOfferDynamicDiscountWhereInput as PublishedOfferDynamicDiscountWhereInput, appAPI_PublishedOfferDynamicTriggerConditionOperator as PublishedOfferDynamicTriggerConditionOperator, appAPI_PublishedOfferDynamicTriggerConditionType as PublishedOfferDynamicTriggerConditionType, appAPI_PublishedOfferDynamicTriggerConditionWhereInput as PublishedOfferDynamicTriggerConditionWhereInput, appAPI_PublishedOfferDynamicTriggerWhereInput as PublishedOfferDynamicTriggerWhereInput, appAPI_PublishedPageInteraction as PublishedPageInteraction, appAPI_PublishedPageInteractionWhereInput as PublishedPageInteractionWhereInput, appAPI_PublishedPageSection as PublishedPageSection, appAPI_PublishedPageSectionMeta as PublishedPageSectionMeta, appAPI_PublishedPageSectionMetaWhereInput as PublishedPageSectionMetaWhereInput, appAPI_PublishedPageSectionWhereInput as PublishedPageSectionWhereInput, appAPI_PublishedSaleFunnelCampaignWhereInput as PublishedSaleFunnelCampaignWhereInput, appAPI_PublishedSaleFunnelDiscountObjectType as PublishedSaleFunnelDiscountObjectType, appAPI_PublishedSaleFunnelDiscountType as PublishedSaleFunnelDiscountType, appAPI_PublishedSaleFunnelDiscountValueType as PublishedSaleFunnelDiscountValueType, appAPI_PublishedSaleFunnelDiscountWhereInput as PublishedSaleFunnelDiscountWhereInput, appAPI_PublishedSaleFunnelOfferType as PublishedSaleFunnelOfferType, appAPI_PublishedSaleFunnelOfferWhereInput as PublishedSaleFunnelOfferWhereInput, appAPI_PublishedShopMeta as PublishedShopMeta, appAPI_PublishedShopMetaWhereInput as PublishedShopMetaWhereInput, appAPI_PublishedStatus as PublishedStatus, appAPI_PublishedThemePage as PublishedThemePage, appAPI_PublishedThemePageCustomSection as PublishedThemePageCustomSection, appAPI_PublishedThemePageCustomSectionWhereInput as PublishedThemePageCustomSectionWhereInput, appAPI_PublishedThemePageMeta as PublishedThemePageMeta, appAPI_PublishedThemePageMetaWhereInput as PublishedThemePageMetaWhereInput, appAPI_PublishedThemePageOnlineStoreData as PublishedThemePageOnlineStoreData, appAPI_PublishedThemePageOnlineStoreDataType as PublishedThemePageOnlineStoreDataType, appAPI_PublishedThemePageOnlineStoreDataWhereInput as PublishedThemePageOnlineStoreDataWhereInput, appAPI_PublishedThemePageStatus as PublishedThemePageStatus, appAPI_PublishedThemePageType as PublishedThemePageType, appAPI_PublishedThemePageWhereInput as PublishedThemePageWhereInput, appAPI_PublishedThemeSection as PublishedThemeSection, appAPI_PublishedThemeSectionConnection as PublishedThemeSectionConnection, appAPI_PublishedThemeSectionEdge as PublishedThemeSectionEdge, appAPI_PublishedThemeSectionOrder as PublishedThemeSectionOrder, appAPI_PublishedThemeSectionOrderField as PublishedThemeSectionOrderField, appAPI_PublishedThemeSectionWhereInput as PublishedThemeSectionWhereInput, appAPI_PublishedThemeStyle as PublishedThemeStyle, appAPI_PublishedThemeStyleWhereInput as PublishedThemeStyleWhereInput, appAPI_Query as Query, appAPI_QueryActivityLogArgs as QueryActivityLogArgs, appAPI_QueryActivityLogsArgs as QueryActivityLogsArgs, appAPI_QueryAgenciesArgs as QueryAgenciesArgs, appAPI_QueryAgencyArgs as QueryAgencyArgs, appAPI_QueryAgencyBillArgs as QueryAgencyBillArgs, appAPI_QueryAgencyClientRelArgs as QueryAgencyClientRelArgs, appAPI_QueryAgencyClientRelsArgs as QueryAgencyClientRelsArgs, appAPI_QueryAgencyPackageSharingArgs as QueryAgencyPackageSharingArgs, appAPI_QueryArticleArgs as QueryArticleArgs, appAPI_QueryArticlesArgs as QueryArticlesArgs, appAPI_QueryBlogArgs as QueryBlogArgs, appAPI_QueryBlogsArgs as QueryBlogsArgs, appAPI_QueryCampaignAnalyticsArgs as QueryCampaignAnalyticsArgs, appAPI_QueryCampaignArgs as QueryCampaignArgs, appAPI_QueryCampaignGroupArgs as QueryCampaignGroupArgs, appAPI_QueryCampaignGroupsArgs as QueryCampaignGroupsArgs, appAPI_QueryCampaignOfferStatsArgs as QueryCampaignOfferStatsArgs, appAPI_QueryCampaignOfferTotalStatArgs as QueryCampaignOfferTotalStatArgs, appAPI_QueryCampaignPathsArgs as QueryCampaignPathsArgs, appAPI_QueryCampaignProductsArgs as QueryCampaignProductsArgs, appAPI_QueryCampaignVersionsArgs as QueryCampaignVersionsArgs, appAPI_QueryCampaignsArgs as QueryCampaignsArgs, appAPI_QueryCartArgs as QueryCartArgs, appAPI_QueryClickedElementsArgs as QueryClickedElementsArgs, appAPI_QueryCollectionArgs as QueryCollectionArgs, appAPI_QueryCollectionsArgs as QueryCollectionsArgs, appAPI_QueryCouponsArgs as QueryCouponsArgs, appAPI_QueryCurrentUserRoleArgs as QueryCurrentUserRoleArgs, appAPI_QueryCustomSectionArgs as QueryCustomSectionArgs, appAPI_QueryCustomSectionsArgs as QueryCustomSectionsArgs, appAPI_QueryEmployeesArgs as QueryEmployeesArgs, appAPI_QueryEventArgs as QueryEventArgs, appAPI_QueryEventLogsArgs as QueryEventLogsArgs, appAPI_QueryEventsArgs as QueryEventsArgs, appAPI_QueryFeatureRequestsArgs as QueryFeatureRequestsArgs, appAPI_QueryFeatureSettingsArgs as QueryFeatureSettingsArgs, appAPI_QueryFilesArgs as QueryFilesArgs, appAPI_QueryFontsArgs as QueryFontsArgs, appAPI_QueryGemxQlQueryArgs as QueryGemxQlQueryArgs, appAPI_QueryGlobalComponentArgs as QueryGlobalComponentArgs, appAPI_QueryGlobalComponentsArgs as QueryGlobalComponentsArgs, appAPI_QueryGlobalSettingByKeyArgs as QueryGlobalSettingByKeyArgs, appAPI_QueryGlobalSettingsArgs as QueryGlobalSettingsArgs, appAPI_QueryGlobalStoreVersionsArgs as QueryGlobalStoreVersionsArgs, appAPI_QueryGpPageViewStatsArgs as QueryGpPageViewStatsArgs, appAPI_QueryHeatmapAnalyticsArgs as QueryHeatmapAnalyticsArgs, appAPI_QueryHeatmapClicksArgs as QueryHeatmapClicksArgs, appAPI_QueryHeatmapScrollArgs as QueryHeatmapScrollArgs, appAPI_QueryIconsArgs as QueryIconsArgs, appAPI_QueryIsDomainMisconfiguredArgs as QueryIsDomainMisconfiguredArgs, appAPI_QueryLibraryBadgeArgs as QueryLibraryBadgeArgs, appAPI_QueryLibraryBadgesArgs as QueryLibraryBadgesArgs, appAPI_QueryLibraryFeatureArgs as QueryLibraryFeatureArgs, appAPI_QueryLibraryFeaturesArgs as QueryLibraryFeaturesArgs, appAPI_QueryLibraryIndustriesArgs as QueryLibraryIndustriesArgs, appAPI_QueryLibraryIndustryArgs as QueryLibraryIndustryArgs, appAPI_QueryLibrarySaleFunnelArgs as QueryLibrarySaleFunnelArgs, appAPI_QueryLibrarySaleFunnelsArgs as QueryLibrarySaleFunnelsArgs, appAPI_QueryLibrarySectionArgs as QueryLibrarySectionArgs, appAPI_QueryLibrarySectionsArgs as QueryLibrarySectionsArgs, appAPI_QueryLibraryTemplateArgs as QueryLibraryTemplateArgs, appAPI_QueryLibraryTemplatesArgs as QueryLibraryTemplatesArgs, appAPI_QueryListReleasesArgs as QueryListReleasesArgs, appAPI_QueryMediaArgs as QueryMediaArgs, appAPI_QueryMediasArgs as QueryMediasArgs, appAPI_QueryMetafieldDefinitionsArgs as QueryMetafieldDefinitionsArgs, appAPI_QueryMetafieldsArgs as QueryMetafieldsArgs, appAPI_QueryOnlineStoreTagsArgs as QueryOnlineStoreTagsArgs, appAPI_QueryOrderJourneyArgs as QueryOrderJourneyArgs, appAPI_QueryPageAnalyticsArgs as QueryPageAnalyticsArgs, appAPI_QueryPageArgs as QueryPageArgs, appAPI_QueryPageSectionArgs as QueryPageSectionArgs, appAPI_QueryPageSectionMetaArgs as QueryPageSectionMetaArgs, appAPI_QueryPageSectionMetaByKeyArgs as QueryPageSectionMetaByKeyArgs, appAPI_QueryPageSectionsArgs as QueryPageSectionsArgs, appAPI_QueryPageSnapshotsArgs as QueryPageSnapshotsArgs, appAPI_QueryPageViewsArgs as QueryPageViewsArgs, appAPI_QueryPagesArgs as QueryPagesArgs, appAPI_QueryParameter as QueryParameter, appAPI_QueryPathAnalyticsArgs as QueryPathAnalyticsArgs, appAPI_QueryPlanArgs as QueryPlanArgs, appAPI_QueryPlansArgs as QueryPlansArgs, appAPI_QueryPlansEligibleArgs as QueryPlansEligibleArgs, appAPI_QueryPlatformOriginalTemplateArgs as QueryPlatformOriginalTemplateArgs, appAPI_QueryPlatformPagesArgs as QueryPlatformPagesArgs, appAPI_QueryPlatformThemeFilesArgs as QueryPlatformThemeFilesArgs, appAPI_QueryPreviewPageArgs as QueryPreviewPageArgs, appAPI_QueryPreviewThemePageArgs as QueryPreviewThemePageArgs, appAPI_QueryProductArgs as QueryProductArgs, appAPI_QueryProductDiscountArgs as QueryProductDiscountArgs, appAPI_QueryProductDiscountObjectArgs as QueryProductDiscountObjectArgs, appAPI_QueryProductDiscountObjectsArgs as QueryProductDiscountObjectsArgs, appAPI_QueryProductDiscountsArgs as QueryProductDiscountsArgs, appAPI_QueryProductOptionNameArgs as QueryProductOptionNameArgs, appAPI_QueryProductOptionValueLabelArgs as QueryProductOptionValueLabelArgs, appAPI_QueryProductOptionValuesArgs as QueryProductOptionValuesArgs, appAPI_QueryProductOptionsArgs as QueryProductOptionsArgs, appAPI_QueryProductVariantsArgs as QueryProductVariantsArgs, appAPI_QueryProductsArgs as QueryProductsArgs, appAPI_QueryPromotionArgs as QueryPromotionArgs, appAPI_QueryPromotionsActiveArgs as QueryPromotionsActiveArgs, appAPI_QueryPromotionsArgs as QueryPromotionsArgs, appAPI_QueryPublicShopLibraryThemeArgs as QueryPublicShopLibraryThemeArgs, appAPI_QueryPublicShopLibraryThemesArgs as QueryPublicShopLibraryThemesArgs, appAPI_QueryPublishedShopMetasArgs as QueryPublishedShopMetasArgs, appAPI_QueryPublishedThemePageMetasArgs as QueryPublishedThemePageMetasArgs, appAPI_QueryPublishedThemePagesArgs as QueryPublishedThemePagesArgs, appAPI_QueryPublishedThemeSectionArgs as QueryPublishedThemeSectionArgs, appAPI_QueryPublishedThemeSectionsArgs as QueryPublishedThemeSectionsArgs, appAPI_QuerySaleFunnelArgs as QuerySaleFunnelArgs, appAPI_QuerySaleFunnelCampaignArgs as QuerySaleFunnelCampaignArgs, appAPI_QuerySaleFunnelDiscountArgs as QuerySaleFunnelDiscountArgs, appAPI_QuerySaleFunnelDiscountsArgs as QuerySaleFunnelDiscountsArgs, appAPI_QuerySaleFunnelMetasArgs as QuerySaleFunnelMetasArgs, appAPI_QuerySaleFunnelOfferArgs as QuerySaleFunnelOfferArgs, appAPI_QuerySaleFunnelOfferStatsArgs as QuerySaleFunnelOfferStatsArgs, appAPI_QuerySaleFunnelOfferTotalStatArgs as QuerySaleFunnelOfferTotalStatArgs, appAPI_QuerySaleFunnelOffersArgs as QuerySaleFunnelOffersArgs, appAPI_QuerySaleFunnelRevenuesArgs as QuerySaleFunnelRevenuesArgs, appAPI_QuerySaleFunnelStatsArgs as QuerySaleFunnelStatsArgs, appAPI_QuerySaleFunnelTotalStatArgs as QuerySaleFunnelTotalStatArgs, appAPI_QuerySaleFunnelsArgs as QuerySaleFunnelsArgs, appAPI_QueryScheduledPublishesArgs as QueryScheduledPublishesArgs, appAPI_QuerySectionCategoriesArgs as QuerySectionCategoriesArgs, appAPI_QuerySeoAuditArgs as QuerySeoAuditArgs, appAPI_QueryShopDeploymentEventsArgs as QueryShopDeploymentEventsArgs, appAPI_QueryShopDomainArgs as QueryShopDomainArgs, appAPI_QueryShopDomainVerifyArgs as QueryShopDomainVerifyArgs, appAPI_QueryShopDomainsArgs as QueryShopDomainsArgs, appAPI_QueryShopExtensionArgs as QueryShopExtensionArgs, appAPI_QueryShopLibraryOfferArgs as QueryShopLibraryOfferArgs, appAPI_QueryShopLibraryOffersArgs as QueryShopLibraryOffersArgs, appAPI_QueryShopLibraryPageArgs as QueryShopLibraryPageArgs, appAPI_QueryShopLibraryPagesArgs as QueryShopLibraryPagesArgs, appAPI_QueryShopLibraryThemeArgs as QueryShopLibraryThemeArgs, appAPI_QueryShopLibraryThemesArgs as QueryShopLibraryThemesArgs, appAPI_QueryShopMetaArgs as QueryShopMetaArgs, appAPI_QueryShopMetaByKeyArgs as QueryShopMetaByKeyArgs, appAPI_QueryShopPageCounterArgs as QueryShopPageCounterArgs, appAPI_QueryShopPlatformArgs as QueryShopPlatformArgs, appAPI_QueryShopPlatformBillArgs as QueryShopPlatformBillArgs, appAPI_QueryShopPlatformBillingsArgs as QueryShopPlatformBillingsArgs, appAPI_QueryShopPlatformBillsArgs as QueryShopPlatformBillsArgs, appAPI_QueryShopPlatformEnvironmentArgs as QueryShopPlatformEnvironmentArgs, appAPI_QueryShopPlatformPlanActiveArgs as QueryShopPlatformPlanActiveArgs, appAPI_QueryShopPlatformPlansArgs as QueryShopPlatformPlansArgs, appAPI_QueryShopPlatformPromotionsArgs as QueryShopPlatformPromotionsArgs, appAPI_QueryShopPlatformRevenuesArgs as QueryShopPlatformRevenuesArgs, appAPI_QueryShopPlatformVerifyScopeArgs as QueryShopPlatformVerifyScopeArgs, appAPI_QueryShopStaffArgs as QueryShopStaffArgs, appAPI_QueryShopStaffsArgs as QueryShopStaffsArgs, appAPI_QueryShopsArgs as QueryShopsArgs, appAPI_QuerySnapshotsByVariantArgs as QuerySnapshotsByVariantArgs, appAPI_QuerySubscriptionTrialUsagesArgs as QuerySubscriptionTrialUsagesArgs, appAPI_QuerySubscriptionsArgs as QuerySubscriptionsArgs, appAPI_QuerySurveyFeedbacksArgs as QuerySurveyFeedbacksArgs, appAPI_QuerySurveysArgs as QuerySurveysArgs, appAPI_QueryTagArgs as QueryTagArgs, appAPI_QueryTagsArgs as QueryTagsArgs, appAPI_QueryTemplateCategoriesArgs as QueryTemplateCategoriesArgs, appAPI_QueryTemplatePackageArgs as QueryTemplatePackageArgs, appAPI_QueryTemplatePackagesArgs as QueryTemplatePackagesArgs, appAPI_QueryThemeMetaArgs as QueryThemeMetaArgs, appAPI_QueryThemeMetaByKeyArgs as QueryThemeMetaByKeyArgs, appAPI_QueryThemePageArgs as QueryThemePageArgs, appAPI_QueryThemePageCustomSectionsArgs as QueryThemePageCustomSectionsArgs, appAPI_QueryThemePageExportArgs as QueryThemePageExportArgs, appAPI_QueryThemePageGlobalComponentsArgs as QueryThemePageGlobalComponentsArgs, appAPI_QueryThemePageLimitationArgs as QueryThemePageLimitationArgs, appAPI_QueryThemePageMetaArgs as QueryThemePageMetaArgs, appAPI_QueryThemePageMetaByKeyArgs as QueryThemePageMetaByKeyArgs, appAPI_QueryThemePageOnlineStoresArgs as QueryThemePageOnlineStoresArgs, appAPI_QueryThemePageShareArgs as QueryThemePageShareArgs, appAPI_QueryThemePageSharesArgs as QueryThemePageSharesArgs, appAPI_QueryThemePageValidateHandleArgs as QueryThemePageValidateHandleArgs, appAPI_QueryThemePageVersionArgs as QueryThemePageVersionArgs, appAPI_QueryThemePageVersionsArgs as QueryThemePageVersionsArgs, appAPI_QueryThemePagesArgs as QueryThemePagesArgs, appAPI_QueryThemeSectionArgs as QueryThemeSectionArgs, appAPI_QueryThemeSectionMetaArgs as QueryThemeSectionMetaArgs, appAPI_QueryThemeSectionMetaByKeyArgs as QueryThemeSectionMetaByKeyArgs, appAPI_QueryThemeSectionVersionArgs as QueryThemeSectionVersionArgs, appAPI_QueryThemeSectionVersionsArgs as QueryThemeSectionVersionsArgs, appAPI_QueryThemeSectionsArgs as QueryThemeSectionsArgs, appAPI_QueryThemeStyleArgs as QueryThemeStyleArgs, appAPI_QueryThemeStyleGlobalArgs as QueryThemeStyleGlobalArgs, appAPI_QueryThemeStyleGlobalFromPlatformArgs as QueryThemeStyleGlobalFromPlatformArgs, appAPI_QueryThemeStyleVersionsArgs as QueryThemeStyleVersionsArgs, appAPI_QueryThemeStylesArgs as QueryThemeStylesArgs, appAPI_QueryThemesArgs as QueryThemesArgs, appAPI_QueryThemesGlobalArgs as QueryThemesGlobalArgs, appAPI_QueryUsageFeeBillsArgs as QueryUsageFeeBillsArgs, appAPI_QueryUsageFeeCurrentArgs as QueryUsageFeeCurrentArgs, appAPI_QueryUsageFeeTierArgs as QueryUsageFeeTierArgs, appAPI_QueryUsageFeeTiersArgs as QueryUsageFeeTiersArgs, appAPI_QueryUserMetaArgs as QueryUserMetaArgs, appAPI_QueryUserMetaByKeyArgs as QueryUserMetaByKeyArgs, appAPI_QueryVariantArgs as QueryVariantArgs, appAPI_QueryVariantProductVariantsArgs as QueryVariantProductVariantsArgs, appAPI_RepositoryRelease as RepositoryRelease, appAPI_Resource as Resource, appAPI_Role as Role, appAPI_SaleFunnel as SaleFunnel, appAPI_SaleFunnelCampaign as SaleFunnelCampaign, appAPI_SaleFunnelCampaignStatus as SaleFunnelCampaignStatus, appAPI_SaleFunnelCampaignWhereInput as SaleFunnelCampaignWhereInput, appAPI_SaleFunnelConnection as SaleFunnelConnection, appAPI_SaleFunnelDiscount as SaleFunnelDiscount, appAPI_SaleFunnelDiscountConnection as SaleFunnelDiscountConnection, appAPI_SaleFunnelDiscountEdge as SaleFunnelDiscountEdge, appAPI_SaleFunnelDiscountObjectType as SaleFunnelDiscountObjectType, appAPI_SaleFunnelDiscountOrder as SaleFunnelDiscountOrder, appAPI_SaleFunnelDiscountOrderField as SaleFunnelDiscountOrderField, appAPI_SaleFunnelDiscountType as SaleFunnelDiscountType, appAPI_SaleFunnelDiscountValueType as SaleFunnelDiscountValueType, appAPI_SaleFunnelDiscountWhereInput as SaleFunnelDiscountWhereInput, appAPI_SaleFunnelDynamicTrigger as SaleFunnelDynamicTrigger, appAPI_SaleFunnelDynamicTriggerWhereInput as SaleFunnelDynamicTriggerWhereInput, appAPI_SaleFunnelEdge as SaleFunnelEdge, appAPI_SaleFunnelLimitation as SaleFunnelLimitation, appAPI_SaleFunnelMeta as SaleFunnelMeta, appAPI_SaleFunnelMetaConnection as SaleFunnelMetaConnection, appAPI_SaleFunnelMetaEdge as SaleFunnelMetaEdge, appAPI_SaleFunnelMetaWhereInput as SaleFunnelMetaWhereInput, appAPI_SaleFunnelOffer as SaleFunnelOffer, appAPI_SaleFunnelOfferConnection as SaleFunnelOfferConnection, appAPI_SaleFunnelOfferDiscountsArgs as SaleFunnelOfferDiscountsArgs, appAPI_SaleFunnelOfferEdge as SaleFunnelOfferEdge, appAPI_SaleFunnelOfferOrder as SaleFunnelOfferOrder, appAPI_SaleFunnelOfferOrderField as SaleFunnelOfferOrderField, appAPI_SaleFunnelOfferStat as SaleFunnelOfferStat, appAPI_SaleFunnelOfferStatConnection as SaleFunnelOfferStatConnection, appAPI_SaleFunnelOfferStatEdge as SaleFunnelOfferStatEdge, appAPI_SaleFunnelOfferStatOrder as SaleFunnelOfferStatOrder, appAPI_SaleFunnelOfferStatOrderField as SaleFunnelOfferStatOrderField, appAPI_SaleFunnelOfferStatWhereInput as SaleFunnelOfferStatWhereInput, appAPI_SaleFunnelOfferTrafficRangeInput as SaleFunnelOfferTrafficRangeInput, appAPI_SaleFunnelOfferType as SaleFunnelOfferType, appAPI_SaleFunnelOfferWhereInput as SaleFunnelOfferWhereInput, appAPI_SaleFunnelOffersArgs as SaleFunnelOffersArgs, appAPI_SaleFunnelOrder as SaleFunnelOrder, appAPI_SaleFunnelOrderField as SaleFunnelOrderField, appAPI_SaleFunnelRedirect as SaleFunnelRedirect, appAPI_SaleFunnelRedirectWhereInput as SaleFunnelRedirectWhereInput, appAPI_SaleFunnelReplaceComponentDataInput as SaleFunnelReplaceComponentDataInput, appAPI_SaleFunnelRevenue as SaleFunnelRevenue, appAPI_SaleFunnelRevenueConnection as SaleFunnelRevenueConnection, appAPI_SaleFunnelRevenueEdge as SaleFunnelRevenueEdge, appAPI_SaleFunnelRevenueOrder as SaleFunnelRevenueOrder, appAPI_SaleFunnelRevenueOrderField as SaleFunnelRevenueOrderField, appAPI_SaleFunnelRevenueWhereInput as SaleFunnelRevenueWhereInput, appAPI_SaleFunnelStat as SaleFunnelStat, appAPI_SaleFunnelStatConnection as SaleFunnelStatConnection, appAPI_SaleFunnelStatEdge as SaleFunnelStatEdge, appAPI_SaleFunnelStatGroupByFields as SaleFunnelStatGroupByFields, appAPI_SaleFunnelStatOrder as SaleFunnelStatOrder, appAPI_SaleFunnelStatOrderField as SaleFunnelStatOrderField, appAPI_SaleFunnelStatWhereInput as SaleFunnelStatWhereInput, appAPI_SaleFunnelStatus as SaleFunnelStatus, appAPI_SaleFunnelTrackingTokenWhereInput as SaleFunnelTrackingTokenWhereInput, appAPI_SaleFunnelTrigger as SaleFunnelTrigger, appAPI_SaleFunnelTriggerWhereInput as SaleFunnelTriggerWhereInput, appAPI_SaleFunnelType as SaleFunnelType, appAPI_SaleFunnelWhereInput as SaleFunnelWhereInput, appAPI_SalePageProduct as SalePageProduct, appAPI_SalePageProductWhereInput as SalePageProductWhereInput, appAPI_Scalars as Scalars, appAPI_ScheduledPublish as ScheduledPublish, appAPI_ScheduledPublishCancellationReason as ScheduledPublishCancellationReason, appAPI_ScheduledPublishConnection as ScheduledPublishConnection, appAPI_ScheduledPublishEdge as ScheduledPublishEdge, appAPI_ScheduledPublishMetafieldScope as ScheduledPublishMetafieldScope, appAPI_ScheduledPublishOrder as ScheduledPublishOrder, appAPI_ScheduledPublishOrderField as ScheduledPublishOrderField, appAPI_ScheduledPublishStatus as ScheduledPublishStatus, appAPI_ScheduledPublishWhereInput as ScheduledPublishWhereInput, appAPI_ScrollType as ScrollType, appAPI_SectionCategory as SectionCategory, appAPI_SectionCategoryInputCreate as SectionCategoryInputCreate, appAPI_SectionCategoryInputUpdate as SectionCategoryInputUpdate, appAPI_SectionCategoryWhereInput as SectionCategoryWhereInput, appAPI_SectionChildCategoryInputCreate as SectionChildCategoryInputCreate, appAPI_SelectedOption as SelectedOption, appAPI_SellingPlan as SellingPlan, appAPI_SellingPlanGroup as SellingPlanGroup, appAPI_SellingPlanGroupPlatform as SellingPlanGroupPlatform, appAPI_SellingPlanGroupWhereInput as SellingPlanGroupWhereInput, appAPI_SellingPlanPlatform as SellingPlanPlatform, appAPI_SellingPlanWhereInput as SellingPlanWhereInput, appAPI_Shop as Shop, appAPI_ShopAnalyticStateWhereInput as ShopAnalyticStateWhereInput, appAPI_ShopConnection as ShopConnection, appAPI_ShopCurrentVersion as ShopCurrentVersion, appAPI_ShopDatabaseWhereInput as ShopDatabaseWhereInput, appAPI_ShopDeployStatus as ShopDeployStatus, appAPI_ShopDomain as ShopDomain, appAPI_ShopDomainConnection as ShopDomainConnection, appAPI_ShopDomainEdge as ShopDomainEdge, appAPI_ShopDomainOrder as ShopDomainOrder, appAPI_ShopDomainOrderField as ShopDomainOrderField, appAPI_ShopDomainWhereInput as ShopDomainWhereInput, appAPI_ShopEdge as ShopEdge, appAPI_ShopExtension as ShopExtension, appAPI_ShopLibraryOffer as ShopLibraryOffer, appAPI_ShopLibraryOfferConnection as ShopLibraryOfferConnection, appAPI_ShopLibraryOfferEdge as ShopLibraryOfferEdge, appAPI_ShopLibraryOfferOrder as ShopLibraryOfferOrder, appAPI_ShopLibraryOfferOrderField as ShopLibraryOfferOrderField, appAPI_ShopLibraryOfferType as ShopLibraryOfferType, appAPI_ShopLibraryOfferWhereInput as ShopLibraryOfferWhereInput, appAPI_ShopLibraryPage as ShopLibraryPage, appAPI_ShopLibraryPageConnection as ShopLibraryPageConnection, appAPI_ShopLibraryPageEdge as ShopLibraryPageEdge, appAPI_ShopLibraryPageOrder as ShopLibraryPageOrder, appAPI_ShopLibraryPageOrderField as ShopLibraryPageOrderField, appAPI_ShopLibraryPageType as ShopLibraryPageType, appAPI_ShopLibraryPageWhereInput as ShopLibraryPageWhereInput, appAPI_ShopLibrarySection as ShopLibrarySection, appAPI_ShopLibrarySectionWhereInput as ShopLibrarySectionWhereInput, appAPI_ShopLibraryTheme as ShopLibraryTheme, appAPI_ShopLibraryThemeConnection as ShopLibraryThemeConnection, appAPI_ShopLibraryThemeEdge as ShopLibraryThemeEdge, appAPI_ShopLibraryThemeOrder as ShopLibraryThemeOrder, appAPI_ShopLibraryThemeOrderField as ShopLibraryThemeOrderField, appAPI_ShopLibraryThemeWhereInput as ShopLibraryThemeWhereInput, appAPI_ShopManageRequest as ShopManageRequest, appAPI_ShopManageRequestFailureReason as ShopManageRequestFailureReason, appAPI_ShopManageRequestOwnership as ShopManageRequestOwnership, appAPI_ShopManageRequestPermission as ShopManageRequestPermission, appAPI_ShopManageRequestPermissionAction as ShopManageRequestPermissionAction, appAPI_ShopManageRequestPermissionCondition as ShopManageRequestPermissionCondition, appAPI_ShopManageRequestPermissionConditionInput as ShopManageRequestPermissionConditionInput, appAPI_ShopManageRequestPermissionCreatedBy as ShopManageRequestPermissionCreatedBy, appAPI_ShopManageRequestPermissionInput as ShopManageRequestPermissionInput, appAPI_ShopManageRequestPermissionResource as ShopManageRequestPermissionResource, appAPI_ShopManageRequestStatus as ShopManageRequestStatus, appAPI_ShopManageRequestWhereInput as ShopManageRequestWhereInput, appAPI_ShopMeta as ShopMeta, appAPI_ShopMetaConnection as ShopMetaConnection, appAPI_ShopMetaEdge as ShopMetaEdge, appAPI_ShopMetaWhereInput as ShopMetaWhereInput, appAPI_ShopOrder as ShopOrder, appAPI_ShopOrderField as ShopOrderField, appAPI_ShopPageCounter as ShopPageCounter, appAPI_ShopPageCounterPageType as ShopPageCounterPageType, appAPI_ShopPageCounterWhereInput as ShopPageCounterWhereInput, appAPI_ShopPlatform as ShopPlatform, appAPI_ShopPlatformAppVersion as ShopPlatformAppVersion, appAPI_ShopPlatformBill as ShopPlatformBill, appAPI_ShopPlatformBillConnection as ShopPlatformBillConnection, appAPI_ShopPlatformBillEdge as ShopPlatformBillEdge, appAPI_ShopPlatformBillOrder as ShopPlatformBillOrder, appAPI_ShopPlatformBillOrderField as ShopPlatformBillOrderField, appAPI_ShopPlatformBillStatus as ShopPlatformBillStatus, appAPI_ShopPlatformBillType as ShopPlatformBillType, appAPI_ShopPlatformBillWhereInput as ShopPlatformBillWhereInput, appAPI_ShopPlatformBilling as ShopPlatformBilling, appAPI_ShopPlatformBillingConnection as ShopPlatformBillingConnection, appAPI_ShopPlatformBillingEdge as ShopPlatformBillingEdge, appAPI_ShopPlatformBillingOrder as ShopPlatformBillingOrder, appAPI_ShopPlatformBillingOrderField as ShopPlatformBillingOrderField, appAPI_ShopPlatformBillingWhereInput as ShopPlatformBillingWhereInput, appAPI_ShopPlatformEnvironment as ShopPlatformEnvironment, appAPI_ShopPlatformPlan as ShopPlatformPlan, appAPI_ShopPlatformPlanConnection as ShopPlatformPlanConnection, appAPI_ShopPlatformPlanEdge as ShopPlatformPlanEdge, appAPI_ShopPlatformPlanOrder as ShopPlatformPlanOrder, appAPI_ShopPlatformPlanOrderField as ShopPlatformPlanOrderField, appAPI_ShopPlatformPlanSource as ShopPlatformPlanSource, appAPI_ShopPlatformPlanStatus as ShopPlatformPlanStatus, appAPI_ShopPlatformPlanWhereInput as ShopPlatformPlanWhereInput, appAPI_ShopPlatformPromotion as ShopPlatformPromotion, appAPI_ShopPlatformPromotionConnection as ShopPlatformPromotionConnection, appAPI_ShopPlatformPromotionEdge as ShopPlatformPromotionEdge, appAPI_ShopPlatformPromotionOrder as ShopPlatformPromotionOrder, appAPI_ShopPlatformPromotionOrderField as ShopPlatformPromotionOrderField, appAPI_ShopPlatformPromotionWhereInput as ShopPlatformPromotionWhereInput, appAPI_ShopPlatformRevenue as ShopPlatformRevenue, appAPI_ShopPlatformRevenueConnection as ShopPlatformRevenueConnection, appAPI_ShopPlatformRevenueEdge as ShopPlatformRevenueEdge, appAPI_ShopPlatformRevenueOrder as ShopPlatformRevenueOrder, appAPI_ShopPlatformRevenueOrderField as ShopPlatformRevenueOrderField, appAPI_ShopPlatformRevenueSource as ShopPlatformRevenueSource, appAPI_ShopPlatformRevenueWhereInput as ShopPlatformRevenueWhereInput, appAPI_ShopPlatformStatus as ShopPlatformStatus, appAPI_ShopPlatformSubscription as ShopPlatformSubscription, appAPI_ShopPlatformSubscriptionStatus as ShopPlatformSubscriptionStatus, appAPI_ShopPlatformSubscriptionWhereInput as ShopPlatformSubscriptionWhereInput, appAPI_ShopPlatformVerifyScope as ShopPlatformVerifyScope, appAPI_ShopPlatformWhereInput as ShopPlatformWhereInput, appAPI_ShopShopify as ShopShopify, appAPI_ShopStaff as ShopStaff, appAPI_ShopStaffConnection as ShopStaffConnection, appAPI_ShopStaffEdge as ShopStaffEdge, appAPI_ShopStaffOrder as ShopStaffOrder, appAPI_ShopStaffOrderField as ShopStaffOrderField, appAPI_ShopStaffWhereInput as ShopStaffWhereInput, appAPI_ShopThemesArgs as ShopThemesArgs, appAPI_ShopTokenWhereInput as ShopTokenWhereInput, appAPI_ShopWhereInput as ShopWhereInput, appAPI_ShopifyPlan as ShopifyPlan, appAPI_ShopifyTheme as ShopifyTheme, appAPI_SnapshotData as SnapshotData, appAPI_SocketImportedThemePage as SocketImportedThemePage, appAPI_SocketStatus as SocketStatus, appAPI_SocketThemePageImport as SocketThemePageImport, appAPI_SocketThemePageImportDetails as SocketThemePageImportDetails, appAPI_SpecificProductCondition as SpecificProductCondition, appAPI_SplitTestingCampaignVersion as SplitTestingCampaignVersion, appAPI_SplitTestingCampaignVersionWhereInput as SplitTestingCampaignVersionWhereInput, appAPI_Staff as Staff, appAPI_StatConvertLayoutData as StatConvertLayoutData, appAPI_StatConvertLayoutWhereInput as StatConvertLayoutWhereInput, appAPI_StatGenerateContentWhereInput as StatGenerateContentWhereInput, appAPI_StatGenerateSectionWhereInput as StatGenerateSectionWhereInput, appAPI_StatPageViewWhereInput as StatPageViewWhereInput, appAPI_Status as Status, appAPI_StoreProperty as StoreProperty, appAPI_StoreVersionLog as StoreVersionLog, appAPI_Subscription as Subscription, appAPI_SubscriptionConnection as SubscriptionConnection, appAPI_SubscriptionDiscountWhereInput as SubscriptionDiscountWhereInput, appAPI_SubscriptionEdge as SubscriptionEdge, appAPI_SubscriptionOrder as SubscriptionOrder, appAPI_SubscriptionOrderField as SubscriptionOrderField, appAPI_SubscriptionStatus as SubscriptionStatus, appAPI_SubscriptionTrialUsage as SubscriptionTrialUsage, appAPI_SubscriptionTrialUsageConnection as SubscriptionTrialUsageConnection, appAPI_SubscriptionTrialUsageEdge as SubscriptionTrialUsageEdge, appAPI_SubscriptionTrialUsageOrder as SubscriptionTrialUsageOrder, appAPI_SubscriptionTrialUsageOrderField as SubscriptionTrialUsageOrderField, appAPI_SubscriptionTrialUsageWhereInput as SubscriptionTrialUsageWhereInput, appAPI_SubscriptionWhereInput as SubscriptionWhereInput, appAPI_Survey as Survey, appAPI_SurveyConnection as SurveyConnection, appAPI_SurveyEdge as SurveyEdge, appAPI_SurveyFeedback as SurveyFeedback, appAPI_SurveyFeedbackConnection as SurveyFeedbackConnection, appAPI_SurveyFeedbackEdge as SurveyFeedbackEdge, appAPI_SurveyFeedbackWhereInput as SurveyFeedbackWhereInput, appAPI_SurveyWhereInput as SurveyWhereInput, appAPI_SyncResourceInput as SyncResourceInput, appAPI_TableColumnType as TableColumnType, appAPI_TableData as TableData, appAPI_TableDataType as TableDataType, appAPI_Tag as Tag, appAPI_TagConnection as TagConnection, appAPI_TagEdge as TagEdge, appAPI_TagOrder as TagOrder, appAPI_TagOrderField as TagOrderField, appAPI_TagType as TagType, appAPI_TagWhereInput as TagWhereInput, appAPI_TemplateCategory as TemplateCategory, appAPI_TemplateCategoryWhereInput as TemplateCategoryWhereInput, appAPI_TemplatePackage as TemplatePackage, appAPI_TemplatePackageConnection as TemplatePackageConnection, appAPI_TemplatePackageEdge as TemplatePackageEdge, appAPI_TemplatePackageOrder as TemplatePackageOrder, appAPI_TemplatePackageOrderField as TemplatePackageOrderField, appAPI_TemplatePackageWhereInput as TemplatePackageWhereInput, appAPI_TemplateSource as TemplateSource, appAPI_Theme as Theme, appAPI_ThemeConnection as ThemeConnection, appAPI_ThemeEdge as ThemeEdge, appAPI_ThemeMeta as ThemeMeta, appAPI_ThemeMetaConnection as ThemeMetaConnection, appAPI_ThemeMetaEdge as ThemeMetaEdge, appAPI_ThemeMetaWhereInput as ThemeMetaWhereInput, appAPI_ThemeOrder as ThemeOrder, appAPI_ThemeOrderField as ThemeOrderField, appAPI_ThemePage as ThemePage, appAPI_ThemePageConnection as ThemePageConnection, appAPI_ThemePageCustomSection as ThemePageCustomSection, appAPI_ThemePageCustomSectionWhereInput as ThemePageCustomSectionWhereInput, appAPI_ThemePageEdge as ThemePageEdge, appAPI_ThemePageGlobalComponent as ThemePageGlobalComponent, appAPI_ThemePageGlobalComponentWhereInput as ThemePageGlobalComponentWhereInput, appAPI_ThemePageLimitation as ThemePageLimitation, appAPI_ThemePageMeta as ThemePageMeta, appAPI_ThemePageMetaConnection as ThemePageMetaConnection, appAPI_ThemePageMetaEdge as ThemePageMetaEdge, appAPI_ThemePageMetaWhereInput as ThemePageMetaWhereInput, appAPI_ThemePageOnlineStoreData as ThemePageOnlineStoreData, appAPI_ThemePageOnlineStoreDataType as ThemePageOnlineStoreDataType, appAPI_ThemePageOnlineStoreDataWhereInput as ThemePageOnlineStoreDataWhereInput, appAPI_ThemePageOrder as ThemePageOrder, appAPI_ThemePageOrderField as ThemePageOrderField, appAPI_ThemePagePreviewStatus as ThemePagePreviewStatus, appAPI_ThemePagePreviewType as ThemePagePreviewType, appAPI_ThemePageShare as ThemePageShare, appAPI_ThemePageShareConnection as ThemePageShareConnection, appAPI_ThemePageShareContentDisplay as ThemePageShareContentDisplay, appAPI_ThemePageShareEdge as ThemePageShareEdge, appAPI_ThemePageShareOrder as ThemePageShareOrder, appAPI_ThemePageShareOrderField as ThemePageShareOrderField, appAPI_ThemePageShareStatus as ThemePageShareStatus, appAPI_ThemePageShareWhereInput as ThemePageShareWhereInput, appAPI_ThemePageStatus as ThemePageStatus, appAPI_ThemePageType as ThemePageType, appAPI_ThemePageVersion as ThemePageVersion, appAPI_ThemePageVersionConnection as ThemePageVersionConnection, appAPI_ThemePageVersionEdge as ThemePageVersionEdge, appAPI_ThemePageVersionOrder as ThemePageVersionOrder, appAPI_ThemePageVersionOrderField as ThemePageVersionOrderField, appAPI_ThemePageVersionType as ThemePageVersionType, appAPI_ThemePageVersionWhereInput as ThemePageVersionWhereInput, appAPI_ThemePageWhereInput as ThemePageWhereInput, appAPI_ThemeSection as ThemeSection, appAPI_ThemeSectionConnection as ThemeSectionConnection, appAPI_ThemeSectionEdge as ThemeSectionEdge, appAPI_ThemeSectionMeta as ThemeSectionMeta, appAPI_ThemeSectionMetaConnection as ThemeSectionMetaConnection, appAPI_ThemeSectionMetaEdge as ThemeSectionMetaEdge, appAPI_ThemeSectionMetaWhereInput as ThemeSectionMetaWhereInput, appAPI_ThemeSectionOrder as ThemeSectionOrder, appAPI_ThemeSectionOrderField as ThemeSectionOrderField, appAPI_ThemeSectionStatus as ThemeSectionStatus, appAPI_ThemeSectionVersion as ThemeSectionVersion, appAPI_ThemeSectionVersionConnection as ThemeSectionVersionConnection, appAPI_ThemeSectionVersionEdge as ThemeSectionVersionEdge, appAPI_ThemeSectionVersionOrder as ThemeSectionVersionOrder, appAPI_ThemeSectionVersionOrderField as ThemeSectionVersionOrderField, appAPI_ThemeSectionVersionType as ThemeSectionVersionType, appAPI_ThemeSectionVersionWhereInput as ThemeSectionVersionWhereInput, appAPI_ThemeSectionWhereInput as ThemeSectionWhereInput, appAPI_ThemeStyle as ThemeStyle, appAPI_ThemeStyleConnection as ThemeStyleConnection, appAPI_ThemeStyleEdge as ThemeStyleEdge, appAPI_ThemeStyleOrder as ThemeStyleOrder, appAPI_ThemeStyleOrderField as ThemeStyleOrderField, appAPI_ThemeStyleVersion as ThemeStyleVersion, appAPI_ThemeStyleVersionWhereInput as ThemeStyleVersionWhereInput, appAPI_ThemeStyleWhereInput as ThemeStyleWhereInput, appAPI_ThemeThemeMetasArgs as ThemeThemeMetasArgs, appAPI_ThemeThemeStylesArgs as ThemeThemeStylesArgs, appAPI_ThemeWhereInput as ThemeWhereInput, appAPI_TotalQuantityCondition as TotalQuantityCondition, appAPI_TriggerCondition as TriggerCondition, appAPI_TriggerConditionOperator as TriggerConditionOperator, appAPI_TriggerConditionType as TriggerConditionType, appAPI_TriggerConditionValue as TriggerConditionValue, appAPI_TriggerConditionWhereInput as TriggerConditionWhereInput, appAPI_UpdateAgencyInput as UpdateAgencyInput, appAPI_UpdateAgencyPackageSharingInput as UpdateAgencyPackageSharingInput, appAPI_UpdateAssignObjectTriggerConditionInput as UpdateAssignObjectTriggerConditionInput, appAPI_UpdateBulkTemplateCategoryInput as UpdateBulkTemplateCategoryInput, appAPI_UpdateCampaignGroupInput as UpdateCampaignGroupInput, appAPI_UpdateCampaignInput as UpdateCampaignInput, appAPI_UpdateCampaignProductInput as UpdateCampaignProductInput, appAPI_UpdateCampaignTrafficRangeInput as UpdateCampaignTrafficRangeInput, appAPI_UpdateCustomSectionInput as UpdateCustomSectionInput, appAPI_UpdateFeatureRequestInput as UpdateFeatureRequestInput, appAPI_UpdateFeatureSettingInput as UpdateFeatureSettingInput, appAPI_UpdateGlobalComponentInput as UpdateGlobalComponentInput, appAPI_UpdateIconInput as UpdateIconInput, appAPI_UpdateLibraryBadgeInput as UpdateLibraryBadgeInput, appAPI_UpdateLibraryFeatureInput as UpdateLibraryFeatureInput, appAPI_UpdateLibraryIndustryInput as UpdateLibraryIndustryInput, appAPI_UpdateLibrarySaleFunnelInput as UpdateLibrarySaleFunnelInput, appAPI_UpdateLibrarySectionInput as UpdateLibrarySectionInput, appAPI_UpdateLibraryTemplateInput as UpdateLibraryTemplateInput, appAPI_UpdateOfferProductCollectionConditionInput as UpdateOfferProductCollectionConditionInput, appAPI_UpdateOfferProductPriceConditionInput as UpdateOfferProductPriceConditionInput, appAPI_UpdateOfferProductTagConditionInput as UpdateOfferProductTagConditionInput, appAPI_UpdateOfferProductVariantConditionInput as UpdateOfferProductVariantConditionInput, appAPI_UpdateOfferSpecificProductConditionInput as UpdateOfferSpecificProductConditionInput, appAPI_UpdateOrderValueConditionInput as UpdateOrderValueConditionInput, appAPI_UpdatePageInteractionInput as UpdatePageInteractionInput, appAPI_UpdatePageSectionInput as UpdatePageSectionInput, appAPI_UpdatePlanInput as UpdatePlanInput, appAPI_UpdateProductCollectionConditionInput as UpdateProductCollectionConditionInput, appAPI_UpdateProductDiscountInput as UpdateProductDiscountInput, appAPI_UpdateProductPriceConditionInput as UpdateProductPriceConditionInput, appAPI_UpdateProductTagConditionInput as UpdateProductTagConditionInput, appAPI_UpdateProductVariantConditionInput as UpdateProductVariantConditionInput, appAPI_UpdatePromotionInput as UpdatePromotionInput, appAPI_UpdateSaleFunnelCampaignInput as UpdateSaleFunnelCampaignInput, appAPI_UpdateSaleFunnelDiscountInput as UpdateSaleFunnelDiscountInput, appAPI_UpdateSaleFunnelInput as UpdateSaleFunnelInput, appAPI_UpdateSaleFunnelOfferInput as UpdateSaleFunnelOfferInput, appAPI_UpdateSaleFunnelRedirectInput as UpdateSaleFunnelRedirectInput, appAPI_UpdateSalePageProductInput as UpdateSalePageProductInput, appAPI_UpdateScheduledPublishInput as UpdateScheduledPublishInput, appAPI_UpdateShopInput as UpdateShopInput, appAPI_UpdateShopLibraryOfferInput as UpdateShopLibraryOfferInput, appAPI_UpdateShopLibraryPageInput as UpdateShopLibraryPageInput, appAPI_UpdateShopLibraryThemeInput as UpdateShopLibraryThemeInput, appAPI_UpdateShopManageRequestInput as UpdateShopManageRequestInput, appAPI_UpdateShopStaffInput as UpdateShopStaffInput, appAPI_UpdateSpecificProductConditionInput as UpdateSpecificProductConditionInput, appAPI_UpdateSurveyInput as UpdateSurveyInput, appAPI_UpdateTagInput as UpdateTagInput, appAPI_UpdateTemplateCategoryInput as UpdateTemplateCategoryInput, appAPI_UpdateTemplatePackageInput as UpdateTemplatePackageInput, appAPI_UpdateThemeInput as UpdateThemeInput, appAPI_UpdateThemePageGlobalComponentInput as UpdateThemePageGlobalComponentInput, appAPI_UpdateThemePageInput as UpdateThemePageInput, appAPI_UpdateThemePageOnlineStoreDataInput as UpdateThemePageOnlineStoreDataInput, appAPI_UpdateThemePageShareInput as UpdateThemePageShareInput, appAPI_UpdateThemePageVersionInput as UpdateThemePageVersionInput, appAPI_UpdateThemeSectionInput as UpdateThemeSectionInput, appAPI_UpdateThemeSectionVersionInput as UpdateThemeSectionVersionInput, appAPI_UpdateThemeStyleInput as UpdateThemeStyleInput, appAPI_UpdateTotalQuantityConditionInput as UpdateTotalQuantityConditionInput, appAPI_UpdateUsageFeeTierInput as UpdateUsageFeeTierInput, appAPI_UpdateVariantContentInput as UpdateVariantContentInput, appAPI_UpdateVariantInput as UpdateVariantInput, appAPI_UpdateVariantNameConditionInput as UpdateVariantNameConditionInput, appAPI_UpdateVariantProductVariantInput as UpdateVariantProductVariantInput, appAPI_UpdateVariantTemplateInput as UpdateVariantTemplateInput, appAPI_UpdatedAtInput as UpdatedAtInput, appAPI_UpsertGlobalSettingInput as UpsertGlobalSettingInput, appAPI_UpsertPageSectionMetaInput as UpsertPageSectionMetaInput, appAPI_UpsertShopMetaInput as UpsertShopMetaInput, appAPI_UpsertThemeMetaInput as UpsertThemeMetaInput, appAPI_UpsertThemeSectionMetaInput as UpsertThemeSectionMetaInput, appAPI_UpsertUserMetaInput as UpsertUserMetaInput, appAPI_UsageFee as UsageFee, appAPI_UsageFeeBill as UsageFeeBill, appAPI_UsageFeeBillConnection as UsageFeeBillConnection, appAPI_UsageFeeBillEdge as UsageFeeBillEdge, appAPI_UsageFeeBillOrder as UsageFeeBillOrder, appAPI_UsageFeeBillOrderField as UsageFeeBillOrderField, appAPI_UsageFeeBillStatus as UsageFeeBillStatus, appAPI_UsageFeeBillWhereInput as UsageFeeBillWhereInput, appAPI_UsageFeeCalculationDetail as UsageFeeCalculationDetail, appAPI_UsageFeeCalculationDetailWhereInput as UsageFeeCalculationDetailWhereInput, appAPI_UsageFeeCalculationSourceType as UsageFeeCalculationSourceType, appAPI_UsageFeeCurrent as UsageFeeCurrent, appAPI_UsageFeeTier as UsageFeeTier, appAPI_UsageFeeTierConnection as UsageFeeTierConnection, appAPI_UsageFeeTierEdge as UsageFeeTierEdge, appAPI_UsageFeeTierFeatureName as UsageFeeTierFeatureName, appAPI_UsageFeeTierOrder as UsageFeeTierOrder, appAPI_UsageFeeTierOrderField as UsageFeeTierOrderField, appAPI_UsageFeeTierSource as UsageFeeTierSource, appAPI_UsageFeeTierStatus as UsageFeeTierStatus, appAPI_UsageFeeTierWhereInput as UsageFeeTierWhereInput, appAPI_UsageFeeType as UsageFeeType, appAPI_UsageFeeWhereInput as UsageFeeWhereInput, appAPI_User as User, appAPI_UserMeta as UserMeta, appAPI_UserMetaConnection as UserMetaConnection, appAPI_UserMetaEdge as UserMetaEdge, appAPI_UserMetaWhereInput as UserMetaWhereInput, appAPI_Variant as Variant, appAPI_VariantContent as VariantContent, appAPI_VariantContentWhereInput as VariantContentWhereInput, appAPI_VariantNameCondition as VariantNameCondition, appAPI_VariantProductOptionWhereInput as VariantProductOptionWhereInput, appAPI_VariantProductVariant as VariantProductVariant, appAPI_VariantProductVariantConnection as VariantProductVariantConnection, appAPI_VariantProductVariantEdge as VariantProductVariantEdge, appAPI_VariantProductVariantOrder as VariantProductVariantOrder, appAPI_VariantProductVariantOrderField as VariantProductVariantOrderField, appAPI_VariantProductVariantWhereInput as VariantProductVariantWhereInput, appAPI_VariantTemplate as VariantTemplate, appAPI_VariantTemplateWhereInput as VariantTemplateWhereInput, appAPI_VariantWhereInput as VariantWhereInput, appAPI_VerifyStorefrontAccessTokenInput as VerifyStorefrontAccessTokenInput, appAPI_VisitorJourney as VisitorJourney, appAPI_VisitorStats as VisitorStats, appAPI_VisitorType as VisitorType, appAPI_VisitorWhereInput as VisitorWhereInput };
|
|
42355
|
+
export type { appAPI_AccountType as AccountType, appAPI_ActivityLog as ActivityLog, appAPI_ActivityLogActionType as ActivityLogActionType, appAPI_ActivityLogConnection as ActivityLogConnection, appAPI_ActivityLogContent as ActivityLogContent, appAPI_ActivityLogEdge as ActivityLogEdge, appAPI_ActivityLogOrder as ActivityLogOrder, appAPI_ActivityLogOrderField as ActivityLogOrderField, appAPI_ActivityLogParticipantData as ActivityLogParticipantData, appAPI_ActivityLogWhereInput as ActivityLogWhereInput, appAPI_AddEmployeeInput as AddEmployeeInput, appAPI_Agency as Agency, appAPI_AgencyClientRel as AgencyClientRel, appAPI_AgencyClientRelConnection as AgencyClientRelConnection, appAPI_AgencyClientRelEdge as AgencyClientRelEdge, appAPI_AgencyClientRelOffboardedBy as AgencyClientRelOffboardedBy, appAPI_AgencyClientRelOrder as AgencyClientRelOrder, appAPI_AgencyClientRelOrderField as AgencyClientRelOrderField, appAPI_AgencyClientRelStatus as AgencyClientRelStatus, appAPI_AgencyClientRelWhereInput as AgencyClientRelWhereInput, appAPI_AgencyConnection as AgencyConnection, appAPI_AgencyEdge as AgencyEdge, appAPI_AgencyInfo as AgencyInfo, appAPI_AgencyOrder as AgencyOrder, appAPI_AgencyOrderField as AgencyOrderField, appAPI_AgencyPackageSharing as AgencyPackageSharing, appAPI_AgencyPackageSharingMode as AgencyPackageSharingMode, appAPI_AgencyPackageSharingWhereInput as AgencyPackageSharingWhereInput, appAPI_AgencyWhereInput as AgencyWhereInput, appAPI_Analytic as Analytic, appAPI_AnalyticGroupBy as AnalyticGroupBy, appAPI_AnalyticMode as AnalyticMode, appAPI_AppType as AppType, appAPI_AppWhereInput as AppWhereInput, Article$1 as Article, appAPI_ArticleBlogWhereInput as ArticleBlogWhereInput, appAPI_ArticleBlogsArgs as ArticleBlogsArgs, appAPI_ArticleConnection as ArticleConnection, appAPI_ArticleContent as ArticleContent, appAPI_ArticleContentWhereInput as ArticleContentWhereInput, appAPI_ArticleEdge as ArticleEdge, appAPI_ArticleMetafieldArgs as ArticleMetafieldArgs, appAPI_ArticleOrder as ArticleOrder, appAPI_ArticleOrderField as ArticleOrderField, appAPI_ArticlePlatform as ArticlePlatform, appAPI_ArticleTagWhereInput as ArticleTagWhereInput, appAPI_ArticleWhereInput as ArticleWhereInput, appAPI_AssignObjectTriggerCondition as AssignObjectTriggerCondition, appAPI_AttributeInput as AttributeInput, appAPI_BillingCycle as BillingCycle, appAPI_BillingStatus as BillingStatus, appAPI_BillingType as BillingType, appAPI_Blog as Blog, appAPI_BlogArticlesArgs as BlogArticlesArgs, appAPI_BlogConnection as BlogConnection, appAPI_BlogEdge as BlogEdge, appAPI_BlogMetafieldArgs as BlogMetafieldArgs, appAPI_BlogObject as BlogObject, appAPI_BlogOrder as BlogOrder, appAPI_BlogOrderField as BlogOrderField, appAPI_BlogPlatform as BlogPlatform, appAPI_BlogWhereInput as BlogWhereInput, appAPI_BulkUpdateCampaignInput as BulkUpdateCampaignInput, appAPI_BulkUpdateVariantProductVariantInput as BulkUpdateVariantProductVariantInput, appAPI_Campaign as Campaign, appAPI_CampaignAnalytic as CampaignAnalytic, appAPI_CampaignAnalyticInput as CampaignAnalyticInput, appAPI_CampaignAnalyticMetric as CampaignAnalyticMetric, appAPI_CampaignConnection as CampaignConnection, appAPI_CampaignEdge as CampaignEdge, appAPI_CampaignGroup as CampaignGroup, appAPI_CampaignGroupConnection as CampaignGroupConnection, appAPI_CampaignGroupEdge as CampaignGroupEdge, appAPI_CampaignGroupOrder as CampaignGroupOrder, appAPI_CampaignGroupOrderField as CampaignGroupOrderField, appAPI_CampaignGroupPriority as CampaignGroupPriority, appAPI_CampaignGroupStatus as CampaignGroupStatus, appAPI_CampaignGroupType as CampaignGroupType, appAPI_CampaignGroupVersion as CampaignGroupVersion, appAPI_CampaignGroupVersionWhereInput as CampaignGroupVersionWhereInput, appAPI_CampaignGroupWhereInput as CampaignGroupWhereInput, appAPI_CampaignOfferStat as CampaignOfferStat, appAPI_CampaignOfferStatConnection as CampaignOfferStatConnection, appAPI_CampaignOfferStatEdge as CampaignOfferStatEdge, appAPI_CampaignOfferStatOrder as CampaignOfferStatOrder, appAPI_CampaignOfferStatOrderField as CampaignOfferStatOrderField, appAPI_CampaignOfferStatWhereInput as CampaignOfferStatWhereInput, appAPI_CampaignOrder as CampaignOrder, appAPI_CampaignOrderField as CampaignOrderField, appAPI_CampaignPath as CampaignPath, appAPI_CampaignPathInput as CampaignPathInput, appAPI_CampaignPaths as CampaignPaths, appAPI_CampaignPriority as CampaignPriority, appAPI_CampaignProduct as CampaignProduct, appAPI_CampaignProductConnection as CampaignProductConnection, appAPI_CampaignProductEdge as CampaignProductEdge, appAPI_CampaignProductOrder as CampaignProductOrder, appAPI_CampaignProductOrderField as CampaignProductOrderField, appAPI_CampaignProductWhereInput as CampaignProductWhereInput, appAPI_CampaignStatus as CampaignStatus, appAPI_CampaignType as CampaignType, appAPI_CampaignVersion as CampaignVersion, appAPI_CampaignVersionConnection as CampaignVersionConnection, appAPI_CampaignVersionEdge as CampaignVersionEdge, appAPI_CampaignVersionOrder as CampaignVersionOrder, appAPI_CampaignVersionOrderField as CampaignVersionOrderField, appAPI_CampaignVersionWhereInput as CampaignVersionWhereInput, appAPI_CampaignWhereInput as CampaignWhereInput, appAPI_Cart as Cart, appAPI_CartAttribute as CartAttribute, appAPI_CartBuyerIdentityInput as CartBuyerIdentityInput, appAPI_CartInput as CartInput, appAPI_CartLine as CartLine, appAPI_CartLineAttribute as CartLineAttribute, appAPI_CartLineInput as CartLineInput, appAPI_CartLineUpdateInput as CartLineUpdateInput, appAPI_CartPayload as CartPayload, appAPI_CartPlatform as CartPlatform, appAPI_CartUserError as CartUserError, appAPI_ChannelStats as ChannelStats, appAPI_CheckoutEventStagingEventName as CheckoutEventStagingEventName, appAPI_CheckoutEventStagingWhereInput as CheckoutEventStagingWhereInput, appAPI_ClickMapPoint as ClickMapPoint, appAPI_ClickTypeCount as ClickTypeCount, appAPI_ClickedElement as ClickedElement, appAPI_ClientShop as ClientShop, appAPI_Collection as Collection, appAPI_CollectionConnection as CollectionConnection, appAPI_CollectionEdge as CollectionEdge, appAPI_CollectionMedia as CollectionMedia, appAPI_CollectionMediaWhereInput as CollectionMediaWhereInput, appAPI_CollectionMetafieldArgs as CollectionMetafieldArgs, appAPI_CollectionOrder as CollectionOrder, appAPI_CollectionOrderField as CollectionOrderField, appAPI_CollectionPlatform as CollectionPlatform, appAPI_CollectionProductWhereInput as CollectionProductWhereInput, appAPI_CollectionProductsArgs as CollectionProductsArgs, appAPI_CollectionTagWhereInput as CollectionTagWhereInput, appAPI_CollectionWhereInput as CollectionWhereInput, appAPI_ColorSwatchWhereInput as ColorSwatchWhereInput, appAPI_Column as Column, appAPI_Coupon as Coupon, appAPI_CouponConnection as CouponConnection, appAPI_CouponEdge as CouponEdge, appAPI_CouponOrder as CouponOrder, appAPI_CouponOrderField as CouponOrderField, appAPI_CouponType as CouponType, appAPI_CouponUsage as CouponUsage, appAPI_CouponUsageWhereInput as CouponUsageWhereInput, appAPI_CouponWhereInput as CouponWhereInput, appAPI_CreateAgencyInput as CreateAgencyInput, appAPI_CreateAgencyPackageSharingInput as CreateAgencyPackageSharingInput, appAPI_CreateAssignObjectTriggerConditionInput as CreateAssignObjectTriggerConditionInput, appAPI_CreateBulkTemplateCategoryInput as CreateBulkTemplateCategoryInput, appAPI_CreateCampaignGroupInput as CreateCampaignGroupInput, appAPI_CreateCampaignInput as CreateCampaignInput, appAPI_CreateCampaignProductInput as CreateCampaignProductInput, appAPI_CreateCouponInput as CreateCouponInput, appAPI_CreateCustomSectionInput as CreateCustomSectionInput, appAPI_CreateFeatureRequestInput as CreateFeatureRequestInput, appAPI_CreateFeatureSettingInput as CreateFeatureSettingInput, appAPI_CreateGlobalComponentInput as CreateGlobalComponentInput, appAPI_CreateGlobalStoreVersionInput as CreateGlobalStoreVersionInput, appAPI_CreateIconInput as CreateIconInput, appAPI_CreateLibraryBadgeInput as CreateLibraryBadgeInput, appAPI_CreateLibraryFeatureInput as CreateLibraryFeatureInput, appAPI_CreateLibraryIndustryInput as CreateLibraryIndustryInput, appAPI_CreateLibrarySaleFunnelMetaInput as CreateLibrarySaleFunnelMetaInput, appAPI_CreateLibrarySectionTagInput as CreateLibrarySectionTagInput, appAPI_CreateLibraryTemplateTagInput as CreateLibraryTemplateTagInput, appAPI_CreateOfferCheapestProductConditionInput as CreateOfferCheapestProductConditionInput, appAPI_CreateOfferDynamicDiscountInput as CreateOfferDynamicDiscountInput, appAPI_CreateOfferDynamicTriggerInput as CreateOfferDynamicTriggerInput, appAPI_CreateOfferMostExpensiveProductConditionInput as CreateOfferMostExpensiveProductConditionInput, appAPI_CreateOfferProductCollectionConditionInput as CreateOfferProductCollectionConditionInput, appAPI_CreateOfferProductPriceConditionInput as CreateOfferProductPriceConditionInput, appAPI_CreateOfferProductTagConditionInput as CreateOfferProductTagConditionInput, appAPI_CreateOfferProductVariantConditionInput as CreateOfferProductVariantConditionInput, appAPI_CreateOfferSameAsPurchasedProductsConditionInput as CreateOfferSameAsPurchasedProductsConditionInput, appAPI_CreateOfferSpecificProductConditionInput as CreateOfferSpecificProductConditionInput, appAPI_CreateOrderValueConditionInput as CreateOrderValueConditionInput, appAPI_CreatePageInteractionInput as CreatePageInteractionInput, appAPI_CreatePageSectionInput as CreatePageSectionInput, appAPI_CreatePlanInput as CreatePlanInput, appAPI_CreatePlatformOriginalTemplateInput as CreatePlatformOriginalTemplateInput, appAPI_CreateProductCollectionConditionInput as CreateProductCollectionConditionInput, appAPI_CreateProductDiscountInput as CreateProductDiscountInput, appAPI_CreateProductDiscountObjectInput as CreateProductDiscountObjectInput, appAPI_CreateProductPriceConditionInput as CreateProductPriceConditionInput, appAPI_CreateProductTagConditionInput as CreateProductTagConditionInput, appAPI_CreateProductVariantConditionInput as CreateProductVariantConditionInput, appAPI_CreatePromotionInput as CreatePromotionInput, appAPI_CreateSaleFunnelDiscountInput as CreateSaleFunnelDiscountInput, appAPI_CreateSaleFunnelDynamicTriggerInput as CreateSaleFunnelDynamicTriggerInput, appAPI_CreateSaleFunnelInput as CreateSaleFunnelInput, appAPI_CreateSaleFunnelMetaInput as CreateSaleFunnelMetaInput, appAPI_CreateSaleFunnelOfferInput as CreateSaleFunnelOfferInput, appAPI_CreateSaleFunnelRedirectInput as CreateSaleFunnelRedirectInput, appAPI_CreateSaleFunnelTriggerInput as CreateSaleFunnelTriggerInput, appAPI_CreateSalePageProductInput as CreateSalePageProductInput, appAPI_CreateScheduledPublishInput as CreateScheduledPublishInput, appAPI_CreateShopInput as CreateShopInput, appAPI_CreateShopLibraryThemeInput as CreateShopLibraryThemeInput, appAPI_CreateShopManageRequestInput as CreateShopManageRequestInput, appAPI_CreateShopMetafieldInput as CreateShopMetafieldInput, appAPI_CreateShopPageCounterInput as CreateShopPageCounterInput, appAPI_CreateShopPlatformInput as CreateShopPlatformInput, appAPI_CreateShopPlatformMetafieldsInput as CreateShopPlatformMetafieldsInput, appAPI_CreateShopPlatformPlanInput as CreateShopPlatformPlanInput, appAPI_CreateShopStaffInput as CreateShopStaffInput, appAPI_CreateSpecificProductConditionInput as CreateSpecificProductConditionInput, appAPI_CreateSurveyFeedbackInput as CreateSurveyFeedbackInput, appAPI_CreateSurveyInput as CreateSurveyInput, appAPI_CreateTemplateCategoryChildInput as CreateTemplateCategoryChildInput, appAPI_CreateTemplatePackageInput as CreateTemplatePackageInput, appAPI_CreateThemeInput as CreateThemeInput, appAPI_CreateThemePageCustomSectionInput as CreateThemePageCustomSectionInput, appAPI_CreateThemePageGlobalComponentInput as CreateThemePageGlobalComponentInput, appAPI_CreateThemePageInput as CreateThemePageInput, appAPI_CreateThemePageMetaInput as CreateThemePageMetaInput, appAPI_CreateThemePageOnlineStoreDataInput as CreateThemePageOnlineStoreDataInput, appAPI_CreateThemePageShareInput as CreateThemePageShareInput, appAPI_CreateThemePageVersionInput as CreateThemePageVersionInput, appAPI_CreateThemeSectionInput as CreateThemeSectionInput, appAPI_CreateThemeSectionVersionInput as CreateThemeSectionVersionInput, appAPI_CreateThemeStyleInput as CreateThemeStyleInput, appAPI_CreateTotalQuantityConditionInput as CreateTotalQuantityConditionInput, appAPI_CreateUsageFeeTierInput as CreateUsageFeeTierInput, appAPI_CreateVariantContentInput as CreateVariantContentInput, appAPI_CreateVariantInput as CreateVariantInput, appAPI_CreateVariantNameConditionInput as CreateVariantNameConditionInput, appAPI_CreateVariantProductVariantInput as CreateVariantProductVariantInput, appAPI_CreateVariantTemplateInput as CreateVariantTemplateInput, appAPI_CustomCode as CustomCode, appAPI_CustomFont as CustomFont, appAPI_CustomSection as CustomSection, appAPI_CustomSectionConnection as CustomSectionConnection, appAPI_CustomSectionEdge as CustomSectionEdge, appAPI_CustomSectionOrder as CustomSectionOrder, appAPI_CustomSectionOrderField as CustomSectionOrderField, appAPI_CustomSectionType as CustomSectionType, appAPI_CustomSectionVersion as CustomSectionVersion, appAPI_CustomSectionVersionWhereInput as CustomSectionVersionWhereInput, appAPI_CustomSectionWhereInput as CustomSectionWhereInput, appAPI_Customer as Customer, appAPI_CustomerAddress as CustomerAddress, appAPI_CustomerAddressPlatform as CustomerAddressPlatform, appAPI_CustomerAddressWhereInput as CustomerAddressWhereInput, appAPI_CustomerGroupPlatform as CustomerGroupPlatform, appAPI_CustomerGroupWhereInput as CustomerGroupWhereInput, appAPI_CustomerPlatform as CustomerPlatform, appAPI_CustomerWhereInput as CustomerWhereInput, appAPI_DataSeo as DataSeo, appAPI_DeployStatus as DeployStatus, appAPI_DeployTarget as DeployTarget, appAPI_DeploymentEvent as DeploymentEvent, appAPI_DeploymentPayload as DeploymentPayload, appAPI_DeviceStats as DeviceStats, appAPI_DeviceType as DeviceType, appAPI_DeviceTypeCount as DeviceTypeCount, appAPI_DiscountAllocation as DiscountAllocation, appAPI_DiscountPlatform as DiscountPlatform, appAPI_DiscountUnit as DiscountUnit, appAPI_DiscountWhereInput as DiscountWhereInput, appAPI_DomainVerification as DomainVerification, appAPI_DynamicTriggerCondition as DynamicTriggerCondition, appAPI_DynamicTriggerConditionOperator as DynamicTriggerConditionOperator, appAPI_DynamicTriggerConditionType as DynamicTriggerConditionType, appAPI_DynamicTriggerConditionValue as DynamicTriggerConditionValue, appAPI_DynamicTriggerConditionWhereInput as DynamicTriggerConditionWhereInput, appAPI_Employee as Employee, appAPI_EmployeeUpdateRoleInput as EmployeeUpdateRoleInput, appAPI_EntitledPriceRuleWhereInput as EntitledPriceRuleWhereInput, appAPI_Event as Event, appAPI_EventCampaignWhereInput as EventCampaignWhereInput, appAPI_EventConnection as EventConnection, appAPI_EventDom as EventDom, appAPI_EventDomWhereInput as EventDomWhereInput, appAPI_EventEdge as EventEdge, appAPI_EventLog as EventLog, appAPI_EventLogConnection as EventLogConnection, appAPI_EventLogEdge as EventLogEdge, appAPI_EventLogOrder as EventLogOrder, appAPI_EventLogOrderField as EventLogOrderField, appAPI_EventLogWhereInput as EventLogWhereInput, appAPI_EventName as EventName, appAPI_EventOrder as EventOrder, appAPI_EventOrderField as EventOrderField, appAPI_EventType as EventType, appAPI_EventWhereInput as EventWhereInput, appAPI_Exact as Exact, appAPI_FeatureRequest as FeatureRequest, appAPI_FeatureRequestConnection as FeatureRequestConnection, appAPI_FeatureRequestEdge as FeatureRequestEdge, appAPI_FeatureRequestName as FeatureRequestName, appAPI_FeatureRequestStatus as FeatureRequestStatus, appAPI_FeatureRequestWhereInput as FeatureRequestWhereInput, appAPI_FeatureSetting as FeatureSetting, appAPI_FeatureSettingAccessibility as FeatureSettingAccessibility, appAPI_FeatureSettingConnection as FeatureSettingConnection, appAPI_FeatureSettingEdge as FeatureSettingEdge, appAPI_FeatureSettingName as FeatureSettingName, appAPI_FeatureSettingWhereInput as FeatureSettingWhereInput, appAPI_File as File, appAPI_FileConnection as FileConnection, appAPI_FileEdge as FileEdge, appAPI_FileOrder as FileOrder, appAPI_FileOrderField as FileOrderField, appAPI_FileStorage as FileStorage, appAPI_FileType as FileType, appAPI_FileWhereInput as FileWhereInput, appAPI_Font as Font, appAPI_FontConnection as FontConnection, appAPI_FontEdge as FontEdge, appAPI_FontOrder as FontOrder, appAPI_FontOrderField as FontOrderField, appAPI_FontStorage as FontStorage, appAPI_FontWhereInput as FontWhereInput, appAPI_GemxQlResult as GemxQlResult, appAPI_GenerateContentLimitation as GenerateContentLimitation, appAPI_GenerateSectionLimitation as GenerateSectionLimitation, appAPI_GlobalComponent as GlobalComponent, appAPI_GlobalComponentConnection as GlobalComponentConnection, appAPI_GlobalComponentEdge as GlobalComponentEdge, appAPI_GlobalComponentOrder as GlobalComponentOrder, appAPI_GlobalComponentOrderField as GlobalComponentOrderField, appAPI_GlobalComponentWhereInput as GlobalComponentWhereInput, appAPI_GlobalSetting as GlobalSetting, appAPI_GlobalSettingConnection as GlobalSettingConnection, appAPI_GlobalSettingEdge as GlobalSettingEdge, appAPI_GlobalSettingWhereInput as GlobalSettingWhereInput, appAPI_GlobalStoreVersion as GlobalStoreVersion, appAPI_GlobalStoreVersionConnection as GlobalStoreVersionConnection, appAPI_GlobalStoreVersionEdge as GlobalStoreVersionEdge, appAPI_GlobalStoreVersionOrder as GlobalStoreVersionOrder, appAPI_GlobalStoreVersionOrderField as GlobalStoreVersionOrderField, appAPI_GlobalStoreVersionWhereInput as GlobalStoreVersionWhereInput, appAPI_GpPageViewStat as GpPageViewStat, appAPI_GpPageViewStatConnection as GpPageViewStatConnection, appAPI_GpPageViewStatEdge as GpPageViewStatEdge, appAPI_GpPageViewStatOrder as GpPageViewStatOrder, appAPI_GpPageViewStatOrderField as GpPageViewStatOrderField, appAPI_GpPageViewStatWhereInput as GpPageViewStatWhereInput, appAPI_HeatmapAnalytics as HeatmapAnalytics, appAPI_HeatmapAnalyticsWhereInput as HeatmapAnalyticsWhereInput, appAPI_HeatmapClickType as HeatmapClickType, appAPI_HeatmapClicksWhereInput as HeatmapClicksWhereInput, appAPI_HeatmapLogWhereInput as HeatmapLogWhereInput, appAPI_HeatmapScrollData as HeatmapScrollData, appAPI_HeatmapScrollRow as HeatmapScrollRow, appAPI_HeatmapScrollWhereInput as HeatmapScrollWhereInput, appAPI_HeatmapVisitorStats as HeatmapVisitorStats, appAPI_Icon as Icon, appAPI_IconConnection as IconConnection, appAPI_IconEdge as IconEdge, appAPI_IconOrder as IconOrder, appAPI_IconOrderField as IconOrderField, appAPI_IconType as IconType, appAPI_IconWhereInput as IconWhereInput, appAPI_Incremental as Incremental, appAPI_InputMaybe as InputMaybe, appAPI_IntervalMode as IntervalMode, appAPI_JourneyMatchType as JourneyMatchType, appAPI_JsonFilter as JsonFilter, appAPI_Level as Level, appAPI_LibraryBadge as LibraryBadge, appAPI_LibraryBadgeConnection as LibraryBadgeConnection, appAPI_LibraryBadgeEdge as LibraryBadgeEdge, appAPI_LibraryBadgeOrder as LibraryBadgeOrder, appAPI_LibraryBadgeOrderField as LibraryBadgeOrderField, appAPI_LibraryBadgeType as LibraryBadgeType, appAPI_LibraryBadgeWhereInput as LibraryBadgeWhereInput, appAPI_LibraryChangeTimes as LibraryChangeTimes, appAPI_LibraryFeature as LibraryFeature, appAPI_LibraryFeatureConnection as LibraryFeatureConnection, appAPI_LibraryFeatureEdge as LibraryFeatureEdge, appAPI_LibraryFeatureOrder as LibraryFeatureOrder, appAPI_LibraryFeatureOrderField as LibraryFeatureOrderField, appAPI_LibraryFeatureType as LibraryFeatureType, appAPI_LibraryFeatureWhereInput as LibraryFeatureWhereInput, appAPI_LibraryIndustry as LibraryIndustry, appAPI_LibraryIndustryConnection as LibraryIndustryConnection, appAPI_LibraryIndustryEdge as LibraryIndustryEdge, appAPI_LibraryIndustryOrder as LibraryIndustryOrder, appAPI_LibraryIndustryOrderField as LibraryIndustryOrderField, appAPI_LibraryIndustryType as LibraryIndustryType, appAPI_LibraryIndustryWhereInput as LibraryIndustryWhereInput, appAPI_LibrarySaleFunnel as LibrarySaleFunnel, appAPI_LibrarySaleFunnelConnection as LibrarySaleFunnelConnection, appAPI_LibrarySaleFunnelDiscount as LibrarySaleFunnelDiscount, appAPI_LibrarySaleFunnelDiscountObjectType as LibrarySaleFunnelDiscountObjectType, appAPI_LibrarySaleFunnelDiscountType as LibrarySaleFunnelDiscountType, appAPI_LibrarySaleFunnelDiscountValueType as LibrarySaleFunnelDiscountValueType, appAPI_LibrarySaleFunnelDiscountWhereInput as LibrarySaleFunnelDiscountWhereInput, appAPI_LibrarySaleFunnelEdge as LibrarySaleFunnelEdge, appAPI_LibrarySaleFunnelMeta as LibrarySaleFunnelMeta, appAPI_LibrarySaleFunnelMetaConnection as LibrarySaleFunnelMetaConnection, appAPI_LibrarySaleFunnelMetaEdge as LibrarySaleFunnelMetaEdge, appAPI_LibrarySaleFunnelMetaWhereInput as LibrarySaleFunnelMetaWhereInput, appAPI_LibrarySaleFunnelOffer as LibrarySaleFunnelOffer, appAPI_LibrarySaleFunnelOfferType as LibrarySaleFunnelOfferType, appAPI_LibrarySaleFunnelOfferWhereInput as LibrarySaleFunnelOfferWhereInput, appAPI_LibrarySaleFunnelOrder as LibrarySaleFunnelOrder, appAPI_LibrarySaleFunnelOrderField as LibrarySaleFunnelOrderField, appAPI_LibrarySaleFunnelType as LibrarySaleFunnelType, appAPI_LibrarySaleFunnelWhereInput as LibrarySaleFunnelWhereInput, appAPI_LibrarySection as LibrarySection, appAPI_LibrarySectionConnection as LibrarySectionConnection, appAPI_LibrarySectionEdge as LibrarySectionEdge, appAPI_LibrarySectionMeta as LibrarySectionMeta, appAPI_LibrarySectionMetaConnection as LibrarySectionMetaConnection, appAPI_LibrarySectionMetaEdge as LibrarySectionMetaEdge, appAPI_LibrarySectionMetaWhereInput as LibrarySectionMetaWhereInput, appAPI_LibrarySectionOrder as LibrarySectionOrder, appAPI_LibrarySectionOrderField as LibrarySectionOrderField, appAPI_LibrarySectionTag as LibrarySectionTag, appAPI_LibrarySectionTagWhereInput as LibrarySectionTagWhereInput, appAPI_LibrarySectionWhereInput as LibrarySectionWhereInput, appAPI_LibraryTemplate as LibraryTemplate, appAPI_LibraryTemplateConnection as LibraryTemplateConnection, appAPI_LibraryTemplateEdge as LibraryTemplateEdge, appAPI_LibraryTemplateMeta as LibraryTemplateMeta, appAPI_LibraryTemplateMetaConnection as LibraryTemplateMetaConnection, appAPI_LibraryTemplateMetaEdge as LibraryTemplateMetaEdge, appAPI_LibraryTemplateMetaWhereInput as LibraryTemplateMetaWhereInput, appAPI_LibraryTemplateOrder as LibraryTemplateOrder, appAPI_LibraryTemplateOrderField as LibraryTemplateOrderField, appAPI_LibraryTemplateTag as LibraryTemplateTag, appAPI_LibraryTemplateTagWhereInput as LibraryTemplateTagWhereInput, appAPI_LibraryTemplateType as LibraryTemplateType, appAPI_LibraryTemplateWhereInput as LibraryTemplateWhereInput, appAPI_LineItemWhereInput as LineItemWhereInput, appAPI_MakeEmpty as MakeEmpty, appAPI_MakeMaybe as MakeMaybe, appAPI_MakeOptional as MakeOptional, appAPI_MakeSaleFunnelCampaignWinnerInput as MakeSaleFunnelCampaignWinnerInput, appAPI_MakeWinnerInput as MakeWinnerInput, appAPI_MakeWinnerTargetObject as MakeWinnerTargetObject, appAPI_MakeWinnerVariant as MakeWinnerVariant, appAPI_Maybe as Maybe, appAPI_Media as Media, appAPI_MediaConnection as MediaConnection, appAPI_MediaEdge as MediaEdge, appAPI_MediaOrder as MediaOrder, appAPI_MediaOrderField as MediaOrderField, appAPI_MediaWhereInput as MediaWhereInput, appAPI_Metafield as Metafield, appAPI_MetafieldConnection as MetafieldConnection, appAPI_MetafieldDefinition as MetafieldDefinition, appAPI_MetafieldDefinitionConnection as MetafieldDefinitionConnection, appAPI_MetafieldDefinitionEdge as MetafieldDefinitionEdge, appAPI_MetafieldDefinitionOrder as MetafieldDefinitionOrder, appAPI_MetafieldDefinitionOrderField as MetafieldDefinitionOrderField, appAPI_MetafieldDefinitionOwnerType as MetafieldDefinitionOwnerType, appAPI_MetafieldDefinitionWhereInput as MetafieldDefinitionWhereInput, appAPI_MetafieldEdge as MetafieldEdge, appAPI_MetafieldObjectType as MetafieldObjectType, appAPI_MetafieldOrder as MetafieldOrder, appAPI_MetafieldOrderField as MetafieldOrderField, appAPI_MetafieldWhereInput as MetafieldWhereInput, appAPI_Money as Money, appAPI_Mutation as Mutation, appAPI_MutationAgencyClientRelDeleteArgs as MutationAgencyClientRelDeleteArgs, appAPI_MutationAgencyClientRelOffboardArgs as MutationAgencyClientRelOffboardArgs, appAPI_MutationAgencyCreateArgs as MutationAgencyCreateArgs, appAPI_MutationAgencyDeleteArgs as MutationAgencyDeleteArgs, appAPI_MutationAgencyPackageSharingCreateArgs as MutationAgencyPackageSharingCreateArgs, appAPI_MutationAgencyPackageSharingUpdateArgs as MutationAgencyPackageSharingUpdateArgs, appAPI_MutationAgencyUpdateArgs as MutationAgencyUpdateArgs, appAPI_MutationAssignObjectTriggerConditionCreateArgs as MutationAssignObjectTriggerConditionCreateArgs, appAPI_MutationAssignObjectTriggerConditionUpdateArgs as MutationAssignObjectTriggerConditionUpdateArgs, appAPI_MutationCampaignBulkCreateArgs as MutationCampaignBulkCreateArgs, appAPI_MutationCampaignBulkUpdateArgs as MutationCampaignBulkUpdateArgs, appAPI_MutationCampaignCreateArgs as MutationCampaignCreateArgs, appAPI_MutationCampaignDeleteArgs as MutationCampaignDeleteArgs, appAPI_MutationCampaignGroupCreateArgs as MutationCampaignGroupCreateArgs, appAPI_MutationCampaignGroupDeleteArgs as MutationCampaignGroupDeleteArgs, appAPI_MutationCampaignGroupUpdateArgs as MutationCampaignGroupUpdateArgs, appAPI_MutationCampaignProductCreateArgs as MutationCampaignProductCreateArgs, appAPI_MutationCampaignProductDeleteArgs as MutationCampaignProductDeleteArgs, appAPI_MutationCampaignProductUpdateArgs as MutationCampaignProductUpdateArgs, appAPI_MutationCampaignPublishArgs as MutationCampaignPublishArgs, appAPI_MutationCampaignUpdateArgs as MutationCampaignUpdateArgs, appAPI_MutationCappedAmountUpdateArgs as MutationCappedAmountUpdateArgs, appAPI_MutationCartCreateArgs as MutationCartCreateArgs, appAPI_MutationCartDiscountCodesUpdateArgs as MutationCartDiscountCodesUpdateArgs, appAPI_MutationCartLinesAddArgs as MutationCartLinesAddArgs, appAPI_MutationCartLinesRemoveArgs as MutationCartLinesRemoveArgs, appAPI_MutationCartLinesUpdateArgs as MutationCartLinesUpdateArgs, appAPI_MutationCartNoteUpdateArgs as MutationCartNoteUpdateArgs, appAPI_MutationCouponCreateArgs as MutationCouponCreateArgs, appAPI_MutationCouponDeleteArgs as MutationCouponDeleteArgs, appAPI_MutationCouponUpdateArgs as MutationCouponUpdateArgs, appAPI_MutationCustomSectionCreateArgs as MutationCustomSectionCreateArgs, appAPI_MutationCustomSectionCreateVersionArgs as MutationCustomSectionCreateVersionArgs, appAPI_MutationCustomSectionDeleteArgs as MutationCustomSectionDeleteArgs, appAPI_MutationCustomSectionMakeDefaultArgs as MutationCustomSectionMakeDefaultArgs, appAPI_MutationCustomSectionRevertToVersionArgs as MutationCustomSectionRevertToVersionArgs, appAPI_MutationCustomSectionUpdateArgs as MutationCustomSectionUpdateArgs, appAPI_MutationDynamicTriggerConditionDeleteArgs as MutationDynamicTriggerConditionDeleteArgs, appAPI_MutationEmployeeAddArgs as MutationEmployeeAddArgs, appAPI_MutationEmployeeRemoveArgs as MutationEmployeeRemoveArgs, appAPI_MutationEmployeeUpdateRoleArgs as MutationEmployeeUpdateRoleArgs, appAPI_MutationEventLogDeleteManyArgs as MutationEventLogDeleteManyArgs, appAPI_MutationFeatureRequestCreateArgs as MutationFeatureRequestCreateArgs, appAPI_MutationFeatureRequestUpdateArgs as MutationFeatureRequestUpdateArgs, appAPI_MutationFeatureSettingCreateArgs as MutationFeatureSettingCreateArgs, appAPI_MutationFeatureSettingUpdateArgs as MutationFeatureSettingUpdateArgs, appAPI_MutationFileDeleteArgs as MutationFileDeleteArgs, appAPI_MutationFileRestoreArgs as MutationFileRestoreArgs, appAPI_MutationFileRestoreByBkFileKeyArgs as MutationFileRestoreByBkFileKeyArgs, appAPI_MutationFileUploadByUrlArgs as MutationFileUploadByUrlArgs, appAPI_MutationFontDeleteArgs as MutationFontDeleteArgs, appAPI_MutationGlobalComponentCreateArgs as MutationGlobalComponentCreateArgs, appAPI_MutationGlobalComponentDeleteArgs as MutationGlobalComponentDeleteArgs, appAPI_MutationGlobalComponentUpdateArgs as MutationGlobalComponentUpdateArgs, appAPI_MutationGlobalSettingCreateOrUpdateArgs as MutationGlobalSettingCreateOrUpdateArgs, appAPI_MutationGlobalSettingDeleteArgs as MutationGlobalSettingDeleteArgs, appAPI_MutationGlobalStoreVersionCreateArgs as MutationGlobalStoreVersionCreateArgs, appAPI_MutationGlobalStoreVersionMakeDefaultArgs as MutationGlobalStoreVersionMakeDefaultArgs, appAPI_MutationGraphqlCacheClearArgs as MutationGraphqlCacheClearArgs, appAPI_MutationIconCreateArgs as MutationIconCreateArgs, appAPI_MutationIconDeleteArgs as MutationIconDeleteArgs, appAPI_MutationIconUpdateArgs as MutationIconUpdateArgs, appAPI_MutationLibraryBadgeCreateArgs as MutationLibraryBadgeCreateArgs, appAPI_MutationLibraryBadgeDeleteArgs as MutationLibraryBadgeDeleteArgs, appAPI_MutationLibraryBadgeUpdateArgs as MutationLibraryBadgeUpdateArgs, appAPI_MutationLibraryFeatureCreateArgs as MutationLibraryFeatureCreateArgs, appAPI_MutationLibraryFeatureDeleteArgs as MutationLibraryFeatureDeleteArgs, appAPI_MutationLibraryFeatureUpdateArgs as MutationLibraryFeatureUpdateArgs, appAPI_MutationLibraryIndustryCreateArgs as MutationLibraryIndustryCreateArgs, appAPI_MutationLibraryIndustryDeleteArgs as MutationLibraryIndustryDeleteArgs, appAPI_MutationLibraryIndustryUpdateArgs as MutationLibraryIndustryUpdateArgs, appAPI_MutationLibrarySaleFunnelDeleteArgs as MutationLibrarySaleFunnelDeleteArgs, appAPI_MutationLibrarySaleFunnelMakeFromSaleFunnelArgs as MutationLibrarySaleFunnelMakeFromSaleFunnelArgs, appAPI_MutationLibrarySaleFunnelMetaCreateOrUpdateArgs as MutationLibrarySaleFunnelMetaCreateOrUpdateArgs, appAPI_MutationLibrarySaleFunnelMetaDeleteArgs as MutationLibrarySaleFunnelMetaDeleteArgs, appAPI_MutationLibrarySaleFunnelUpdateArgs as MutationLibrarySaleFunnelUpdateArgs, appAPI_MutationLibrarySectionDeleteArgs as MutationLibrarySectionDeleteArgs, appAPI_MutationLibrarySectionIncreaseUsageCountArgs as MutationLibrarySectionIncreaseUsageCountArgs, appAPI_MutationLibrarySectionMakeFromPageSectionArgs as MutationLibrarySectionMakeFromPageSectionArgs, appAPI_MutationLibrarySectionTagCreateArgs as MutationLibrarySectionTagCreateArgs, appAPI_MutationLibrarySectionTagDeleteArgs as MutationLibrarySectionTagDeleteArgs, appAPI_MutationLibrarySectionUpdateArgs as MutationLibrarySectionUpdateArgs, appAPI_MutationLibraryTemplateDeleteArgs as MutationLibraryTemplateDeleteArgs, appAPI_MutationLibraryTemplateIncreaseUsageCountArgs as MutationLibraryTemplateIncreaseUsageCountArgs, appAPI_MutationLibraryTemplateMakeFromPageArgs as MutationLibraryTemplateMakeFromPageArgs, appAPI_MutationLibraryTemplateTagCreateArgs as MutationLibraryTemplateTagCreateArgs, appAPI_MutationLibraryTemplateTagDeleteArgs as MutationLibraryTemplateTagDeleteArgs, appAPI_MutationLibraryTemplateUpdateArgs as MutationLibraryTemplateUpdateArgs, appAPI_MutationMakeStyleGlobalArgs as MutationMakeStyleGlobalArgs, appAPI_MutationMakeWinnerArgs as MutationMakeWinnerArgs, appAPI_MutationOfferCheapestProductConditionCreateArgs as MutationOfferCheapestProductConditionCreateArgs, appAPI_MutationOfferDynamicDiscountCreateOrUpdateArgs as MutationOfferDynamicDiscountCreateOrUpdateArgs, appAPI_MutationOfferDynamicDiscountDeleteArgs as MutationOfferDynamicDiscountDeleteArgs, appAPI_MutationOfferDynamicTriggerConditionDeleteArgs as MutationOfferDynamicTriggerConditionDeleteArgs, appAPI_MutationOfferDynamicTriggerCreateArgs as MutationOfferDynamicTriggerCreateArgs, appAPI_MutationOfferDynamicTriggerDeleteArgs as MutationOfferDynamicTriggerDeleteArgs, appAPI_MutationOfferMostExpensiveProductConditionCreateArgs as MutationOfferMostExpensiveProductConditionCreateArgs, appAPI_MutationOfferProductCollectionConditionCreateArgs as MutationOfferProductCollectionConditionCreateArgs, appAPI_MutationOfferProductCollectionConditionUpdateArgs as MutationOfferProductCollectionConditionUpdateArgs, appAPI_MutationOfferProductPriceConditionCreateArgs as MutationOfferProductPriceConditionCreateArgs, appAPI_MutationOfferProductPriceConditionUpdateArgs as MutationOfferProductPriceConditionUpdateArgs, appAPI_MutationOfferProductTagConditionCreateArgs as MutationOfferProductTagConditionCreateArgs, appAPI_MutationOfferProductTagConditionUpdateArgs as MutationOfferProductTagConditionUpdateArgs, appAPI_MutationOfferProductVariantConditionCreateArgs as MutationOfferProductVariantConditionCreateArgs, appAPI_MutationOfferProductVariantConditionUpdateArgs as MutationOfferProductVariantConditionUpdateArgs, appAPI_MutationOfferSameAsPurchasedProductsConditionCreateArgs as MutationOfferSameAsPurchasedProductsConditionCreateArgs, appAPI_MutationOfferSpecificProductConditionCreateArgs as MutationOfferSpecificProductConditionCreateArgs, appAPI_MutationOfferSpecificProductConditionUpdateArgs as MutationOfferSpecificProductConditionUpdateArgs, appAPI_MutationOrderValueConditionCreateArgs as MutationOrderValueConditionCreateArgs, appAPI_MutationOrderValueConditionUpdateArgs as MutationOrderValueConditionUpdateArgs, appAPI_MutationPageInteractionCreateArgs as MutationPageInteractionCreateArgs, appAPI_MutationPageInteractionDeleteArgs as MutationPageInteractionDeleteArgs, appAPI_MutationPageInteractionPreviewArgs as MutationPageInteractionPreviewArgs, appAPI_MutationPageInteractionPublishArgs as MutationPageInteractionPublishArgs, appAPI_MutationPageInteractionUpdateArgs as MutationPageInteractionUpdateArgs, appAPI_MutationPageSectionBulkCreateArgs as MutationPageSectionBulkCreateArgs, appAPI_MutationPageSectionCreateArgs as MutationPageSectionCreateArgs, appAPI_MutationPageSectionCreateFromThemeSectionArgs as MutationPageSectionCreateFromThemeSectionArgs, appAPI_MutationPageSectionMetaCreateOrUpdateArgs as MutationPageSectionMetaCreateOrUpdateArgs, appAPI_MutationPageSectionMetaDeleteArgs as MutationPageSectionMetaDeleteArgs, appAPI_MutationPageSectionUpdateArgs as MutationPageSectionUpdateArgs, appAPI_MutationPageSectionsBulkDeleteArgs as MutationPageSectionsBulkDeleteArgs, appAPI_MutationPageViewUpArgs as MutationPageViewUpArgs, appAPI_MutationPlanCreateArgs as MutationPlanCreateArgs, appAPI_MutationPlanDeleteArgs as MutationPlanDeleteArgs, appAPI_MutationPlanUpdateArgs as MutationPlanUpdateArgs, appAPI_MutationPlatformOriginalTemplateDeleteArgs as MutationPlatformOriginalTemplateDeleteArgs, appAPI_MutationPlatformOriginalTemplateResetArgs as MutationPlatformOriginalTemplateResetArgs, appAPI_MutationPlatformOriginalTemplateSyncArgs as MutationPlatformOriginalTemplateSyncArgs, appAPI_MutationPlatformOriginalTemplateUpsertArgs as MutationPlatformOriginalTemplateUpsertArgs, appAPI_MutationPlatformThemeFileDeleteArgs as MutationPlatformThemeFileDeleteArgs, appAPI_MutationProductCollectionConditionCreateArgs as MutationProductCollectionConditionCreateArgs, appAPI_MutationProductCollectionConditionUpdateArgs as MutationProductCollectionConditionUpdateArgs, appAPI_MutationProductDiscountActivateArgs as MutationProductDiscountActivateArgs, appAPI_MutationProductDiscountCreateArgs as MutationProductDiscountCreateArgs, appAPI_MutationProductDiscountDeactivateArgs as MutationProductDiscountDeactivateArgs, appAPI_MutationProductDiscountDeleteArgs as MutationProductDiscountDeleteArgs, appAPI_MutationProductDiscountDuplicateArgs as MutationProductDiscountDuplicateArgs, appAPI_MutationProductDiscountSyncArgs as MutationProductDiscountSyncArgs, appAPI_MutationProductDiscountUpdateArgs as MutationProductDiscountUpdateArgs, appAPI_MutationProductPriceConditionCreateArgs as MutationProductPriceConditionCreateArgs, appAPI_MutationProductPriceConditionUpdateArgs as MutationProductPriceConditionUpdateArgs, appAPI_MutationProductTagConditionCreateArgs as MutationProductTagConditionCreateArgs, appAPI_MutationProductTagConditionUpdateArgs as MutationProductTagConditionUpdateArgs, appAPI_MutationProductVariantConditionCreateArgs as MutationProductVariantConditionCreateArgs, appAPI_MutationProductVariantConditionUpdateArgs as MutationProductVariantConditionUpdateArgs, appAPI_MutationPromotionCreateArgs as MutationPromotionCreateArgs, appAPI_MutationPromotionDeleteArgs as MutationPromotionDeleteArgs, appAPI_MutationPromotionUpdateArgs as MutationPromotionUpdateArgs, appAPI_MutationPublicShopLibraryThemeCreateArgs as MutationPublicShopLibraryThemeCreateArgs, appAPI_MutationPublicShopLibraryThemeDeleteArgs as MutationPublicShopLibraryThemeDeleteArgs, appAPI_MutationPublicShopLibraryThemeForceDeleteArgs as MutationPublicShopLibraryThemeForceDeleteArgs, appAPI_MutationPublicShopLibraryThemeRestoreArgs as MutationPublicShopLibraryThemeRestoreArgs, appAPI_MutationRetryFailedBillingPaymentArgs as MutationRetryFailedBillingPaymentArgs, appAPI_MutationSaleFunnelCampaignCreateArgs as MutationSaleFunnelCampaignCreateArgs, appAPI_MutationSaleFunnelCampaignTrafficRangeUpdateArgs as MutationSaleFunnelCampaignTrafficRangeUpdateArgs, appAPI_MutationSaleFunnelCampaignUpdateArgs as MutationSaleFunnelCampaignUpdateArgs, appAPI_MutationSaleFunnelCampaignWinnerArgs as MutationSaleFunnelCampaignWinnerArgs, appAPI_MutationSaleFunnelCreateArgs as MutationSaleFunnelCreateArgs, appAPI_MutationSaleFunnelCreateFromLibraryArgs as MutationSaleFunnelCreateFromLibraryArgs, appAPI_MutationSaleFunnelDeleteArgs as MutationSaleFunnelDeleteArgs, appAPI_MutationSaleFunnelDiscountCreateOrUpdateArgs as MutationSaleFunnelDiscountCreateOrUpdateArgs, appAPI_MutationSaleFunnelDiscountDeleteArgs as MutationSaleFunnelDiscountDeleteArgs, appAPI_MutationSaleFunnelDuplicateArgs as MutationSaleFunnelDuplicateArgs, appAPI_MutationSaleFunnelDuplicateToArgs as MutationSaleFunnelDuplicateToArgs, appAPI_MutationSaleFunnelDynamicTriggerCreateArgs as MutationSaleFunnelDynamicTriggerCreateArgs, appAPI_MutationSaleFunnelDynamicTriggerDeleteArgs as MutationSaleFunnelDynamicTriggerDeleteArgs, appAPI_MutationSaleFunnelMetaCreateOrUpdateArgs as MutationSaleFunnelMetaCreateOrUpdateArgs, appAPI_MutationSaleFunnelMetaDeleteArgs as MutationSaleFunnelMetaDeleteArgs, appAPI_MutationSaleFunnelOfferCreateArgs as MutationSaleFunnelOfferCreateArgs, appAPI_MutationSaleFunnelOfferDeleteArgs as MutationSaleFunnelOfferDeleteArgs, appAPI_MutationSaleFunnelOfferPublishArgs as MutationSaleFunnelOfferPublishArgs, appAPI_MutationSaleFunnelOfferUnPublishArgs as MutationSaleFunnelOfferUnPublishArgs, appAPI_MutationSaleFunnelOfferUpdateArgs as MutationSaleFunnelOfferUpdateArgs, appAPI_MutationSaleFunnelPublishArgs as MutationSaleFunnelPublishArgs, appAPI_MutationSaleFunnelRedirectCreateArgs as MutationSaleFunnelRedirectCreateArgs, appAPI_MutationSaleFunnelRedirectDeleteArgs as MutationSaleFunnelRedirectDeleteArgs, appAPI_MutationSaleFunnelRedirectUpdateArgs as MutationSaleFunnelRedirectUpdateArgs, appAPI_MutationSaleFunnelReplaceComponentDataArgs as MutationSaleFunnelReplaceComponentDataArgs, appAPI_MutationSaleFunnelTriggerCreateArgs as MutationSaleFunnelTriggerCreateArgs, appAPI_MutationSaleFunnelTriggerDeleteArgs as MutationSaleFunnelTriggerDeleteArgs, appAPI_MutationSaleFunnelUpdateArgs as MutationSaleFunnelUpdateArgs, appAPI_MutationSalePageProductCreateArgs as MutationSalePageProductCreateArgs, appAPI_MutationSalePageProductDeleteArgs as MutationSalePageProductDeleteArgs, appAPI_MutationSalePageProductUpdateArgs as MutationSalePageProductUpdateArgs, appAPI_MutationScheduledPublishCancelArgs as MutationScheduledPublishCancelArgs, appAPI_MutationScheduledPublishCreateArgs as MutationScheduledPublishCreateArgs, appAPI_MutationScheduledPublishForceStartArgs as MutationScheduledPublishForceStartArgs, appAPI_MutationScheduledPublishUpdateArgs as MutationScheduledPublishUpdateArgs, appAPI_MutationSectionCategoryAddSectionsArgs as MutationSectionCategoryAddSectionsArgs, appAPI_MutationSectionCategoryCreateBulkArgs as MutationSectionCategoryCreateBulkArgs, appAPI_MutationSectionCategoryDeleteBulkArgs as MutationSectionCategoryDeleteBulkArgs, appAPI_MutationSectionCategoryRemoveSectionsArgs as MutationSectionCategoryRemoveSectionsArgs, appAPI_MutationSectionCategoryUpdateBulkArgs as MutationSectionCategoryUpdateBulkArgs, appAPI_MutationShopCleanupArgs as MutationShopCleanupArgs, appAPI_MutationShopCreateArgs as MutationShopCreateArgs, appAPI_MutationShopDeployArgs as MutationShopDeployArgs, appAPI_MutationShopDomainAssignArgs as MutationShopDomainAssignArgs, appAPI_MutationShopDomainPrimaryArgs as MutationShopDomainPrimaryArgs, appAPI_MutationShopDomainRemoveArgs as MutationShopDomainRemoveArgs, appAPI_MutationShopInitPublisherArgs as MutationShopInitPublisherArgs, appAPI_MutationShopLibraryOfferDeleteArgs as MutationShopLibraryOfferDeleteArgs, appAPI_MutationShopLibraryOfferMakeFromOfferArgs as MutationShopLibraryOfferMakeFromOfferArgs, appAPI_MutationShopLibraryOfferUpdateArgs as MutationShopLibraryOfferUpdateArgs, appAPI_MutationShopLibraryPageDeleteArgs as MutationShopLibraryPageDeleteArgs, appAPI_MutationShopLibraryPageMakeFromPageArgs as MutationShopLibraryPageMakeFromPageArgs, appAPI_MutationShopLibraryPageUpdateArgs as MutationShopLibraryPageUpdateArgs, appAPI_MutationShopLibraryThemeCreateArgs as MutationShopLibraryThemeCreateArgs, appAPI_MutationShopLibraryThemeDeleteArgs as MutationShopLibraryThemeDeleteArgs, appAPI_MutationShopLibraryThemeForceDeleteArgs as MutationShopLibraryThemeForceDeleteArgs, appAPI_MutationShopLibraryThemeRestoreArgs as MutationShopLibraryThemeRestoreArgs, appAPI_MutationShopLibraryThemeUpdateArgs as MutationShopLibraryThemeUpdateArgs, appAPI_MutationShopManageRequestApproveArgs as MutationShopManageRequestApproveArgs, appAPI_MutationShopManageRequestCancelArgs as MutationShopManageRequestCancelArgs, appAPI_MutationShopManageRequestCreateArgs as MutationShopManageRequestCreateArgs, appAPI_MutationShopManageRequestRejectArgs as MutationShopManageRequestRejectArgs, appAPI_MutationShopMetaCreateOrUpdateArgs as MutationShopMetaCreateOrUpdateArgs, appAPI_MutationShopMetaDeleteArgs as MutationShopMetaDeleteArgs, appAPI_MutationShopMetafieldsCreateArgs as MutationShopMetafieldsCreateArgs, appAPI_MutationShopPageCounterCreateOrUpdateArgs as MutationShopPageCounterCreateOrUpdateArgs, appAPI_MutationShopPlatformBillReissueArgs as MutationShopPlatformBillReissueArgs, appAPI_MutationShopPlatformConnectArgs as MutationShopPlatformConnectArgs, appAPI_MutationShopPlatformDisconnectArgs as MutationShopPlatformDisconnectArgs, appAPI_MutationShopPlatformDuplicateThemeTemplateArgs as MutationShopPlatformDuplicateThemeTemplateArgs, appAPI_MutationShopPlatformMetafieldsCreateArgs as MutationShopPlatformMetafieldsCreateArgs, appAPI_MutationShopPlatformPlanCancelArgs as MutationShopPlatformPlanCancelArgs, appAPI_MutationShopPlatformPlanCreateArgs as MutationShopPlatformPlanCreateArgs, appAPI_MutationShopPlatformUpdateToMixVersionArgs as MutationShopPlatformUpdateToMixVersionArgs, appAPI_MutationShopPlatformVerifyStorefrontAccessTokenArgs as MutationShopPlatformVerifyStorefrontAccessTokenArgs, appAPI_MutationShopRemoveAllTemplatesArgs as MutationShopRemoveAllTemplatesArgs, appAPI_MutationShopStaffCreateArgs as MutationShopStaffCreateArgs, appAPI_MutationShopStaffDeleteArgs as MutationShopStaffDeleteArgs, appAPI_MutationShopStaffUpdateArgs as MutationShopStaffUpdateArgs, appAPI_MutationShopUpdateArgs as MutationShopUpdateArgs, appAPI_MutationShopUpdateThemeExtensionArgs as MutationShopUpdateThemeExtensionArgs, appAPI_MutationSpecificProductConditionCreateArgs as MutationSpecificProductConditionCreateArgs, appAPI_MutationSpecificProductConditionUpdateArgs as MutationSpecificProductConditionUpdateArgs, appAPI_MutationSubscribeWebhooksArgs as MutationSubscribeWebhooksArgs, appAPI_MutationSubscriptionExtendTrialDaysArgs as MutationSubscriptionExtendTrialDaysArgs, appAPI_MutationSubscriptionResetTrialDaysArgs as MutationSubscriptionResetTrialDaysArgs, appAPI_MutationSurveyCreateArgs as MutationSurveyCreateArgs, appAPI_MutationSurveyDeleteArgs as MutationSurveyDeleteArgs, appAPI_MutationSurveyFeedbackCreateByHandleArgs as MutationSurveyFeedbackCreateByHandleArgs, appAPI_MutationSurveyUpdateArgs as MutationSurveyUpdateArgs, appAPI_MutationSyncGitReleaseToS3Args as MutationSyncGitReleaseToS3Args, appAPI_MutationSyncResourceTriggerArgs as MutationSyncResourceTriggerArgs, appAPI_MutationSyncWebhooksSubscriptionArgs as MutationSyncWebhooksSubscriptionArgs, appAPI_MutationTagCreateArgs as MutationTagCreateArgs, appAPI_MutationTagDeleteArgs as MutationTagDeleteArgs, appAPI_MutationTagUpdateArgs as MutationTagUpdateArgs, appAPI_MutationTemplateCategoryAddTemplatesArgs as MutationTemplateCategoryAddTemplatesArgs, appAPI_MutationTemplateCategoryCreateBulkArgs as MutationTemplateCategoryCreateBulkArgs, appAPI_MutationTemplateCategoryDeleteBulkArgs as MutationTemplateCategoryDeleteBulkArgs, appAPI_MutationTemplateCategoryRemoveTemplatesArgs as MutationTemplateCategoryRemoveTemplatesArgs, appAPI_MutationTemplateCategoryUpdateBulkArgs as MutationTemplateCategoryUpdateBulkArgs, appAPI_MutationTemplatePackageCreateArgs as MutationTemplatePackageCreateArgs, appAPI_MutationTemplatePackageDeleteArgs as MutationTemplatePackageDeleteArgs, appAPI_MutationTemplatePackageDuplicateArgs as MutationTemplatePackageDuplicateArgs, appAPI_MutationTemplatePackageReceiveArgs as MutationTemplatePackageReceiveArgs, appAPI_MutationTemplatePackageUpdateArgs as MutationTemplatePackageUpdateArgs, appAPI_MutationThemeAssetsAuditArgs as MutationThemeAssetsAuditArgs, appAPI_MutationThemeBackupFileToShopifyArgs as MutationThemeBackupFileToShopifyArgs, appAPI_MutationThemeCreateArgs as MutationThemeCreateArgs, appAPI_MutationThemeDeleteArgs as MutationThemeDeleteArgs, appAPI_MutationThemeDuplicateArgs as MutationThemeDuplicateArgs, appAPI_MutationThemeForceDeleteArgs as MutationThemeForceDeleteArgs, appAPI_MutationThemeInsertFromGlobalArgs as MutationThemeInsertFromGlobalArgs, appAPI_MutationThemeMakeGlobalArgs as MutationThemeMakeGlobalArgs, appAPI_MutationThemeMetaCreateOrUpdateArgs as MutationThemeMetaCreateOrUpdateArgs, appAPI_MutationThemeMetaDeleteArgs as MutationThemeMetaDeleteArgs, appAPI_MutationThemePageAddThemeSectionsArgs as MutationThemePageAddThemeSectionsArgs, appAPI_MutationThemePageCreateArgs as MutationThemePageCreateArgs, appAPI_MutationThemePageCustomSectionCreateArgs as MutationThemePageCustomSectionCreateArgs, appAPI_MutationThemePageCustomSectionDeleteArgs as MutationThemePageCustomSectionDeleteArgs, appAPI_MutationThemePageDeleteArgs as MutationThemePageDeleteArgs, appAPI_MutationThemePageDuplicateArgs as MutationThemePageDuplicateArgs, appAPI_MutationThemePageDuplicateFromSharedPageArgs as MutationThemePageDuplicateFromSharedPageArgs, appAPI_MutationThemePageDuplicateToExistingPageArgs as MutationThemePageDuplicateToExistingPageArgs, appAPI_MutationThemePageForceDeleteArgs as MutationThemePageForceDeleteArgs, appAPI_MutationThemePageGlobalComponentCreateArgs as MutationThemePageGlobalComponentCreateArgs, appAPI_MutationThemePageGlobalComponentDeleteArgs as MutationThemePageGlobalComponentDeleteArgs, appAPI_MutationThemePageGlobalComponentUpdateArgs as MutationThemePageGlobalComponentUpdateArgs, appAPI_MutationThemePageImportArgs as MutationThemePageImportArgs, appAPI_MutationThemePageMakeDefaultArgs as MutationThemePageMakeDefaultArgs, appAPI_MutationThemePageMakeFromPageVersionArgs as MutationThemePageMakeFromPageVersionArgs, appAPI_MutationThemePageMetaBatchUpsertArgs as MutationThemePageMetaBatchUpsertArgs, appAPI_MutationThemePageMetaCreateOrUpdateArgs as MutationThemePageMetaCreateOrUpdateArgs, appAPI_MutationThemePageMetaDeleteArgs as MutationThemePageMetaDeleteArgs, appAPI_MutationThemePageOnlineStoreDataCreateArgs as MutationThemePageOnlineStoreDataCreateArgs, appAPI_MutationThemePageOnlineStoreDataDeleteArgs as MutationThemePageOnlineStoreDataDeleteArgs, appAPI_MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs as MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs, appAPI_MutationThemePageOnlineStoreDataUpdateArgs as MutationThemePageOnlineStoreDataUpdateArgs, appAPI_MutationThemePageOnlineStoreDataUpsertArgs as MutationThemePageOnlineStoreDataUpsertArgs, appAPI_MutationThemePagePreviewArgs as MutationThemePagePreviewArgs, appAPI_MutationThemePagePublishArgs as MutationThemePagePublishArgs, appAPI_MutationThemePageRemoveThemeSectionsArgs as MutationThemePageRemoveThemeSectionsArgs, appAPI_MutationThemePageResetDefaultArgs as MutationThemePageResetDefaultArgs, appAPI_MutationThemePageRestoreArgs as MutationThemePageRestoreArgs, appAPI_MutationThemePageShareCreateArgs as MutationThemePageShareCreateArgs, appAPI_MutationThemePageShareDeleteArgs as MutationThemePageShareDeleteArgs, appAPI_MutationThemePageShareUpdateArgs as MutationThemePageShareUpdateArgs, appAPI_MutationThemePageUnPublishArgs as MutationThemePageUnPublishArgs, appAPI_MutationThemePageUnsetDefaultArgs as MutationThemePageUnsetDefaultArgs, appAPI_MutationThemePageUpdateArgs as MutationThemePageUpdateArgs, appAPI_MutationThemePageUpdateInformationToShopifyArgs as MutationThemePageUpdateInformationToShopifyArgs, appAPI_MutationThemePageVersionCreateArgs as MutationThemePageVersionCreateArgs, appAPI_MutationThemePageVersionDeleteArgs as MutationThemePageVersionDeleteArgs, appAPI_MutationThemePageVersionProtectArgs as MutationThemePageVersionProtectArgs, appAPI_MutationThemePageVersionUnprotectArgs as MutationThemePageVersionUnprotectArgs, appAPI_MutationThemePageVersionUpdateArgs as MutationThemePageVersionUpdateArgs, appAPI_MutationThemePageVersionUpgradeShopVersionArgs as MutationThemePageVersionUpgradeShopVersionArgs, appAPI_MutationThemePagesBulkRestoreArgs as MutationThemePagesBulkRestoreArgs, appAPI_MutationThemePublishArgs as MutationThemePublishArgs, appAPI_MutationThemeRestoreArgs as MutationThemeRestoreArgs, appAPI_MutationThemeSectionCreateArgs as MutationThemeSectionCreateArgs, appAPI_MutationThemeSectionCreateFromPageSectionArgs as MutationThemeSectionCreateFromPageSectionArgs, appAPI_MutationThemeSectionDeleteArgs as MutationThemeSectionDeleteArgs, appAPI_MutationThemeSectionMetaCreateOrUpdateArgs as MutationThemeSectionMetaCreateOrUpdateArgs, appAPI_MutationThemeSectionMetaDeleteArgs as MutationThemeSectionMetaDeleteArgs, appAPI_MutationThemeSectionPublishArgs as MutationThemeSectionPublishArgs, appAPI_MutationThemeSectionUnPublishArgs as MutationThemeSectionUnPublishArgs, appAPI_MutationThemeSectionUpdateArgs as MutationThemeSectionUpdateArgs, appAPI_MutationThemeSectionVersionCreateArgs as MutationThemeSectionVersionCreateArgs, appAPI_MutationThemeSectionVersionDeleteArgs as MutationThemeSectionVersionDeleteArgs, appAPI_MutationThemeSectionVersionProtectArgs as MutationThemeSectionVersionProtectArgs, appAPI_MutationThemeSectionVersionUnprotectArgs as MutationThemeSectionVersionUnprotectArgs, appAPI_MutationThemeSectionVersionUpdateArgs as MutationThemeSectionVersionUpdateArgs, appAPI_MutationThemeSectionVersionUpgradeShopVersionArgs as MutationThemeSectionVersionUpgradeShopVersionArgs, appAPI_MutationThemeStyleCreateArgs as MutationThemeStyleCreateArgs, appAPI_MutationThemeStyleCreateVersionArgs as MutationThemeStyleCreateVersionArgs, appAPI_MutationThemeStyleDeleteArgs as MutationThemeStyleDeleteArgs, appAPI_MutationThemeStyleDeleteVersionArgs as MutationThemeStyleDeleteVersionArgs, appAPI_MutationThemeStyleDuplicateArgs as MutationThemeStyleDuplicateArgs, appAPI_MutationThemeStyleRevertToVersionArgs as MutationThemeStyleRevertToVersionArgs, appAPI_MutationThemeStyleUpdateArgs as MutationThemeStyleUpdateArgs, appAPI_MutationThemeUpdateArgs as MutationThemeUpdateArgs, appAPI_MutationTotalQuantityConditionCreateArgs as MutationTotalQuantityConditionCreateArgs, appAPI_MutationTotalQuantityConditionUpdateArgs as MutationTotalQuantityConditionUpdateArgs, appAPI_MutationTriggerConditionDeleteArgs as MutationTriggerConditionDeleteArgs, appAPI_MutationUnsubscribeWebhooksArgs as MutationUnsubscribeWebhooksArgs, appAPI_MutationUsageFeeBillRetryArgs as MutationUsageFeeBillRetryArgs, appAPI_MutationUsageFeeTierCreateArgs as MutationUsageFeeTierCreateArgs, appAPI_MutationUsageFeeTierDeleteArgs as MutationUsageFeeTierDeleteArgs, appAPI_MutationUsageFeeTierUpdateArgs as MutationUsageFeeTierUpdateArgs, appAPI_MutationUserMetaCreateOrUpdateArgs as MutationUserMetaCreateOrUpdateArgs, appAPI_MutationUserMetaDeleteArgs as MutationUserMetaDeleteArgs, appAPI_MutationVariantContentCreateArgs as MutationVariantContentCreateArgs, appAPI_MutationVariantContentDeleteArgs as MutationVariantContentDeleteArgs, appAPI_MutationVariantContentUpdateArgs as MutationVariantContentUpdateArgs, appAPI_MutationVariantCreateArgs as MutationVariantCreateArgs, appAPI_MutationVariantDeleteArgs as MutationVariantDeleteArgs, appAPI_MutationVariantNameConditionCreateArgs as MutationVariantNameConditionCreateArgs, appAPI_MutationVariantNameConditionUpdateArgs as MutationVariantNameConditionUpdateArgs, appAPI_MutationVariantProductVariantBulkCreateArgs as MutationVariantProductVariantBulkCreateArgs, appAPI_MutationVariantProductVariantBulkUpdateArgs as MutationVariantProductVariantBulkUpdateArgs, appAPI_MutationVariantProductVariantCreateArgs as MutationVariantProductVariantCreateArgs, appAPI_MutationVariantProductVariantDeleteArgs as MutationVariantProductVariantDeleteArgs, appAPI_MutationVariantProductVariantPublishArgs as MutationVariantProductVariantPublishArgs, appAPI_MutationVariantProductVariantUpdateArgs as MutationVariantProductVariantUpdateArgs, appAPI_MutationVariantTemplateCreateArgs as MutationVariantTemplateCreateArgs, appAPI_MutationVariantTemplateDeleteArgs as MutationVariantTemplateDeleteArgs, appAPI_MutationVariantTemplateUpdateArgs as MutationVariantTemplateUpdateArgs, appAPI_MutationVariantUpdateArgs as MutationVariantUpdateArgs, appAPI_OfferDynamicDiscount as OfferDynamicDiscount, appAPI_OfferDynamicDiscountType as OfferDynamicDiscountType, appAPI_OfferDynamicDiscountValueType as OfferDynamicDiscountValueType, appAPI_OfferDynamicDiscountWhereInput as OfferDynamicDiscountWhereInput, appAPI_OfferDynamicTrigger as OfferDynamicTrigger, appAPI_OfferDynamicTriggerCondition as OfferDynamicTriggerCondition, appAPI_OfferDynamicTriggerConditionOperator as OfferDynamicTriggerConditionOperator, appAPI_OfferDynamicTriggerConditionType as OfferDynamicTriggerConditionType, appAPI_OfferDynamicTriggerConditionValue as OfferDynamicTriggerConditionValue, appAPI_OfferDynamicTriggerConditionWhereInput as OfferDynamicTriggerConditionWhereInput, appAPI_OfferDynamicTriggerWhereInput as OfferDynamicTriggerWhereInput, appAPI_OfferProductCollectionCondition as OfferProductCollectionCondition, appAPI_OfferProductPriceCondition as OfferProductPriceCondition, appAPI_OfferProductStatWhereInput as OfferProductStatWhereInput, appAPI_OfferProductTagCondition as OfferProductTagCondition, appAPI_OfferProductVariantCondition as OfferProductVariantCondition, appAPI_OfferProductVariantStatWhereInput as OfferProductVariantStatWhereInput, appAPI_OfferProductWhereInput as OfferProductWhereInput, appAPI_OfferSpecificProductCondition as OfferSpecificProductCondition, appAPI_OnlineStoreTag as OnlineStoreTag, appAPI_OnlineStoreTagConnection as OnlineStoreTagConnection, appAPI_OnlineStoreTagEdge as OnlineStoreTagEdge, appAPI_OnlineStoreTagOrder as OnlineStoreTagOrder, appAPI_OnlineStoreTagOrderField as OnlineStoreTagOrderField, appAPI_OnlineStoreTagWhereInput as OnlineStoreTagWhereInput, appAPI_OrderDirection as OrderDirection, appAPI_OrderJourney as OrderJourney, appAPI_OrderJourneyInput as OrderJourneyInput, appAPI_OrderJourneyItem as OrderJourneyItem, appAPI_OrderJourneyResponse as OrderJourneyResponse, appAPI_OrderProductStatWhereInput as OrderProductStatWhereInput, appAPI_OrderProductVariantStatWhereInput as OrderProductVariantStatWhereInput, appAPI_OrderStatWhereInput as OrderStatWhereInput, appAPI_OrderTriggerCondition as OrderTriggerCondition, appAPI_OrderValueCondition as OrderValueCondition, appAPI_OrderWhereInput as OrderWhereInput, appAPI_OwnerType as OwnerType, appAPI_Page as Page, appAPI_PageAnalytic as PageAnalytic, appAPI_PageAnalyticInput as PageAnalyticInput, appAPI_PageAnalyticMetric as PageAnalyticMetric, appAPI_PageConnection as PageConnection, appAPI_PageEdge as PageEdge, appAPI_PageInfo as PageInfo, appAPI_PageInteraction as PageInteraction, appAPI_PageInteractionWhereInput as PageInteractionWhereInput, appAPI_PageMetafieldArgs as PageMetafieldArgs, appAPI_PageObject as PageObject, appAPI_PageOrder as PageOrder, appAPI_PageOrderField as PageOrderField, appAPI_PagePlatform as PagePlatform, appAPI_PageSection as PageSection, appAPI_PageSectionConnection as PageSectionConnection, appAPI_PageSectionEdge as PageSectionEdge, appAPI_PageSectionMeta as PageSectionMeta, appAPI_PageSectionMetaConnection as PageSectionMetaConnection, appAPI_PageSectionMetaEdge as PageSectionMetaEdge, appAPI_PageSectionMetaWhereInput as PageSectionMetaWhereInput, appAPI_PageSectionOrder as PageSectionOrder, appAPI_PageSectionOrderField as PageSectionOrderField, appAPI_PageSectionVersion as PageSectionVersion, appAPI_PageSectionVersionWhereInput as PageSectionVersionWhereInput, appAPI_PageSectionWhereInput as PageSectionWhereInput, appAPI_PageSnapshot as PageSnapshot, appAPI_PageSnapshotConnection as PageSnapshotConnection, appAPI_PageSnapshotEdge as PageSnapshotEdge, appAPI_PageSnapshotOrder as PageSnapshotOrder, appAPI_PageSnapshotOrderField as PageSnapshotOrderField, appAPI_PageSnapshotWhereInput as PageSnapshotWhereInput, appAPI_PageWhereInput as PageWhereInput, appAPI_PathAnalytic as PathAnalytic, appAPI_PathAnalyticInput as PathAnalyticInput, appAPI_PathAnalyticMetric as PathAnalyticMetric, appAPI_PathAnalytics as PathAnalytics, appAPI_PathGroups as PathGroups, appAPI_PayloadInfo as PayloadInfo, Plan$1 as Plan, appAPI_PlanConnection as PlanConnection, appAPI_PlanEdge as PlanEdge, appAPI_PlanOrder as PlanOrder, appAPI_PlanOrderField as PlanOrderField, appAPI_PlanWhereInput as PlanWhereInput, appAPI_Platform as Platform, appAPI_PlatformOriginalTemplate as PlatformOriginalTemplate, appAPI_PlatformOriginalTemplateCounterPageType as PlatformOriginalTemplateCounterPageType, appAPI_PlatformOriginalTemplateCounterWhereInput as PlatformOriginalTemplateCounterWhereInput, appAPI_PlatformOriginalTemplateWhereInput as PlatformOriginalTemplateWhereInput, appAPI_PlatformPage as PlatformPage, appAPI_PlatformPageConnection as PlatformPageConnection, appAPI_PlatformPageEdge as PlatformPageEdge, appAPI_PlatformPageSectionWhereInput as PlatformPageSectionWhereInput, appAPI_PlatformPageType as PlatformPageType, appAPI_PlatformThemeFile as PlatformThemeFile, appAPI_PlatformThemeFileConnection as PlatformThemeFileConnection, appAPI_PlatformThemeFileEdge as PlatformThemeFileEdge, appAPI_PlatformThemeFilePageInfo as PlatformThemeFilePageInfo, appAPI_PrerequisitePriceRuleWhereInput as PrerequisitePriceRuleWhereInput, appAPI_PreviewCustomSectionType as PreviewCustomSectionType, appAPI_PreviewPageInteraction as PreviewPageInteraction, appAPI_PreviewPageSection as PreviewPageSection, appAPI_PreviewPageSectionMeta as PreviewPageSectionMeta, appAPI_PreviewThemePage as PreviewThemePage, appAPI_PreviewThemePageMeta as PreviewThemePageMeta, appAPI_PreviewThemePageOnlineStoreData as PreviewThemePageOnlineStoreData, appAPI_PreviewThemePageOnlineStoreDataType as PreviewThemePageOnlineStoreDataType, appAPI_PreviewThemePageStatus as PreviewThemePageStatus, appAPI_PreviewThemePageType as PreviewThemePageType, appAPI_PreviewThemeStyle as PreviewThemeStyle, appAPI_PriceRulePlatform as PriceRulePlatform, appAPI_PriceRuleWhereInput as PriceRuleWhereInput, appAPI_PricingUnit as PricingUnit, appAPI_Product as Product, appAPI_ProductCollectionCondition as ProductCollectionCondition, appAPI_ProductCollectionsArgs as ProductCollectionsArgs, appAPI_ProductComponent as ProductComponent, appAPI_ProductConnection as ProductConnection, appAPI_ProductDiscount as ProductDiscount, appAPI_ProductDiscountConnection as ProductDiscountConnection, appAPI_ProductDiscountEdge as ProductDiscountEdge, appAPI_ProductDiscountObject as ProductDiscountObject, appAPI_ProductDiscountObjectConnection as ProductDiscountObjectConnection, appAPI_ProductDiscountObjectEdge as ProductDiscountObjectEdge, appAPI_ProductDiscountObjectOrder as ProductDiscountObjectOrder, appAPI_ProductDiscountObjectOrderField as ProductDiscountObjectOrderField, appAPI_ProductDiscountObjectType as ProductDiscountObjectType, appAPI_ProductDiscountObjectWhereInput as ProductDiscountObjectWhereInput, appAPI_ProductDiscountOrder as ProductDiscountOrder, appAPI_ProductDiscountOrderField as ProductDiscountOrderField, appAPI_ProductDiscountType as ProductDiscountType, appAPI_ProductDiscountWhereInput as ProductDiscountWhereInput, appAPI_ProductEdge as ProductEdge, appAPI_ProductListComponent as ProductListComponent, appAPI_ProductMediasArgs as ProductMediasArgs, appAPI_ProductMetafieldArgs as ProductMetafieldArgs, appAPI_ProductOption as ProductOption, appAPI_ProductOptionConnection as ProductOptionConnection, appAPI_ProductOptionEdge as ProductOptionEdge, appAPI_ProductOptionOrder as ProductOptionOrder, appAPI_ProductOptionOrderField as ProductOptionOrderField, appAPI_ProductOptionPlatform as ProductOptionPlatform, appAPI_ProductOptionValue as ProductOptionValue, appAPI_ProductOptionValueConnection as ProductOptionValueConnection, appAPI_ProductOptionValueEdge as ProductOptionValueEdge, appAPI_ProductOptionValueOrder as ProductOptionValueOrder, appAPI_ProductOptionValueOrderField as ProductOptionValueOrderField, appAPI_ProductOptionValuePlatform as ProductOptionValuePlatform, appAPI_ProductOptionValueWhereInput as ProductOptionValueWhereInput, appAPI_ProductOptionWhereInput as ProductOptionWhereInput, appAPI_ProductOrder as ProductOrder, appAPI_ProductOrderField as ProductOrderField, appAPI_ProductPlatform as ProductPlatform, appAPI_ProductPriceCondition as ProductPriceCondition, appAPI_ProductTagCondition as ProductTagCondition, appAPI_ProductTagWhereInput as ProductTagWhereInput, appAPI_ProductVariant as ProductVariant, appAPI_ProductVariantCondition as ProductVariantCondition, appAPI_ProductVariantConnection as ProductVariantConnection, appAPI_ProductVariantEdge as ProductVariantEdge, appAPI_ProductVariantMetafieldArgs as ProductVariantMetafieldArgs, appAPI_ProductVariantOrder as ProductVariantOrder, appAPI_ProductVariantOrderField as ProductVariantOrderField, appAPI_ProductVariantPlatform as ProductVariantPlatform, appAPI_ProductVariantWhereInput as ProductVariantWhereInput, appAPI_ProductVariantsArgs as ProductVariantsArgs, appAPI_ProductWhereInput as ProductWhereInput, appAPI_Promotion as Promotion, appAPI_PromotionConnection as PromotionConnection, appAPI_PromotionEdge as PromotionEdge, appAPI_PromotionOrder as PromotionOrder, appAPI_PromotionOrderField as PromotionOrderField, appAPI_PromotionType as PromotionType, appAPI_PromotionUsage as PromotionUsage, appAPI_PromotionUsageWhereInput as PromotionUsageWhereInput, appAPI_PromotionWhereInput as PromotionWhereInput, appAPI_PublicToken as PublicToken, appAPI_PublishStatus as PublishStatus, appAPI_PublishedCustomSection as PublishedCustomSection, appAPI_PublishedCustomSectionType as PublishedCustomSectionType, appAPI_PublishedCustomSectionWhereInput as PublishedCustomSectionWhereInput, appAPI_PublishedOfferDynamicDiscountType as PublishedOfferDynamicDiscountType, appAPI_PublishedOfferDynamicDiscountValueType as PublishedOfferDynamicDiscountValueType, appAPI_PublishedOfferDynamicDiscountWhereInput as PublishedOfferDynamicDiscountWhereInput, appAPI_PublishedOfferDynamicTriggerConditionOperator as PublishedOfferDynamicTriggerConditionOperator, appAPI_PublishedOfferDynamicTriggerConditionType as PublishedOfferDynamicTriggerConditionType, appAPI_PublishedOfferDynamicTriggerConditionWhereInput as PublishedOfferDynamicTriggerConditionWhereInput, appAPI_PublishedOfferDynamicTriggerWhereInput as PublishedOfferDynamicTriggerWhereInput, appAPI_PublishedPageInteraction as PublishedPageInteraction, appAPI_PublishedPageInteractionWhereInput as PublishedPageInteractionWhereInput, appAPI_PublishedPageSection as PublishedPageSection, appAPI_PublishedPageSectionMeta as PublishedPageSectionMeta, appAPI_PublishedPageSectionMetaWhereInput as PublishedPageSectionMetaWhereInput, appAPI_PublishedPageSectionWhereInput as PublishedPageSectionWhereInput, appAPI_PublishedSaleFunnelCampaignWhereInput as PublishedSaleFunnelCampaignWhereInput, appAPI_PublishedSaleFunnelDiscountObjectType as PublishedSaleFunnelDiscountObjectType, appAPI_PublishedSaleFunnelDiscountType as PublishedSaleFunnelDiscountType, appAPI_PublishedSaleFunnelDiscountValueType as PublishedSaleFunnelDiscountValueType, appAPI_PublishedSaleFunnelDiscountWhereInput as PublishedSaleFunnelDiscountWhereInput, appAPI_PublishedSaleFunnelOfferType as PublishedSaleFunnelOfferType, appAPI_PublishedSaleFunnelOfferWhereInput as PublishedSaleFunnelOfferWhereInput, appAPI_PublishedShopMeta as PublishedShopMeta, appAPI_PublishedShopMetaWhereInput as PublishedShopMetaWhereInput, appAPI_PublishedStatus as PublishedStatus, appAPI_PublishedThemePage as PublishedThemePage, appAPI_PublishedThemePageCustomSection as PublishedThemePageCustomSection, appAPI_PublishedThemePageCustomSectionWhereInput as PublishedThemePageCustomSectionWhereInput, appAPI_PublishedThemePageMeta as PublishedThemePageMeta, appAPI_PublishedThemePageMetaWhereInput as PublishedThemePageMetaWhereInput, appAPI_PublishedThemePageOnlineStoreData as PublishedThemePageOnlineStoreData, appAPI_PublishedThemePageOnlineStoreDataType as PublishedThemePageOnlineStoreDataType, appAPI_PublishedThemePageOnlineStoreDataWhereInput as PublishedThemePageOnlineStoreDataWhereInput, appAPI_PublishedThemePageStatus as PublishedThemePageStatus, appAPI_PublishedThemePageType as PublishedThemePageType, appAPI_PublishedThemePageWhereInput as PublishedThemePageWhereInput, appAPI_PublishedThemeSection as PublishedThemeSection, appAPI_PublishedThemeSectionConnection as PublishedThemeSectionConnection, appAPI_PublishedThemeSectionEdge as PublishedThemeSectionEdge, appAPI_PublishedThemeSectionOrder as PublishedThemeSectionOrder, appAPI_PublishedThemeSectionOrderField as PublishedThemeSectionOrderField, appAPI_PublishedThemeSectionWhereInput as PublishedThemeSectionWhereInput, appAPI_PublishedThemeStyle as PublishedThemeStyle, appAPI_PublishedThemeStyleWhereInput as PublishedThemeStyleWhereInput, appAPI_Query as Query, appAPI_QueryActivityLogArgs as QueryActivityLogArgs, appAPI_QueryActivityLogsArgs as QueryActivityLogsArgs, appAPI_QueryAgenciesArgs as QueryAgenciesArgs, appAPI_QueryAgencyArgs as QueryAgencyArgs, appAPI_QueryAgencyClientRelArgs as QueryAgencyClientRelArgs, appAPI_QueryAgencyClientRelsArgs as QueryAgencyClientRelsArgs, appAPI_QueryAgencyPackageSharingArgs as QueryAgencyPackageSharingArgs, appAPI_QueryArticleArgs as QueryArticleArgs, appAPI_QueryArticlesArgs as QueryArticlesArgs, appAPI_QueryBlogArgs as QueryBlogArgs, appAPI_QueryBlogsArgs as QueryBlogsArgs, appAPI_QueryCampaignAnalyticsArgs as QueryCampaignAnalyticsArgs, appAPI_QueryCampaignArgs as QueryCampaignArgs, appAPI_QueryCampaignGroupArgs as QueryCampaignGroupArgs, appAPI_QueryCampaignGroupsArgs as QueryCampaignGroupsArgs, appAPI_QueryCampaignOfferStatsArgs as QueryCampaignOfferStatsArgs, appAPI_QueryCampaignOfferTotalStatArgs as QueryCampaignOfferTotalStatArgs, appAPI_QueryCampaignPathsArgs as QueryCampaignPathsArgs, appAPI_QueryCampaignProductsArgs as QueryCampaignProductsArgs, appAPI_QueryCampaignVersionsArgs as QueryCampaignVersionsArgs, appAPI_QueryCampaignsArgs as QueryCampaignsArgs, appAPI_QueryCartArgs as QueryCartArgs, appAPI_QueryClickedElementsArgs as QueryClickedElementsArgs, appAPI_QueryCollectionArgs as QueryCollectionArgs, appAPI_QueryCollectionsArgs as QueryCollectionsArgs, appAPI_QueryCouponsArgs as QueryCouponsArgs, appAPI_QueryCurrentUserRoleArgs as QueryCurrentUserRoleArgs, appAPI_QueryCustomSectionArgs as QueryCustomSectionArgs, appAPI_QueryCustomSectionsArgs as QueryCustomSectionsArgs, appAPI_QueryEmployeesArgs as QueryEmployeesArgs, appAPI_QueryEventArgs as QueryEventArgs, appAPI_QueryEventLogsArgs as QueryEventLogsArgs, appAPI_QueryEventsArgs as QueryEventsArgs, appAPI_QueryFeatureRequestsArgs as QueryFeatureRequestsArgs, appAPI_QueryFeatureSettingsArgs as QueryFeatureSettingsArgs, appAPI_QueryFilesArgs as QueryFilesArgs, appAPI_QueryFontsArgs as QueryFontsArgs, appAPI_QueryGemxQlQueryArgs as QueryGemxQlQueryArgs, appAPI_QueryGlobalComponentArgs as QueryGlobalComponentArgs, appAPI_QueryGlobalComponentsArgs as QueryGlobalComponentsArgs, appAPI_QueryGlobalSettingByKeyArgs as QueryGlobalSettingByKeyArgs, appAPI_QueryGlobalSettingsArgs as QueryGlobalSettingsArgs, appAPI_QueryGlobalStoreVersionsArgs as QueryGlobalStoreVersionsArgs, appAPI_QueryGpPageViewStatsArgs as QueryGpPageViewStatsArgs, appAPI_QueryHeatmapAnalyticsArgs as QueryHeatmapAnalyticsArgs, appAPI_QueryHeatmapClicksArgs as QueryHeatmapClicksArgs, appAPI_QueryHeatmapScrollArgs as QueryHeatmapScrollArgs, appAPI_QueryIconsArgs as QueryIconsArgs, appAPI_QueryIsDomainMisconfiguredArgs as QueryIsDomainMisconfiguredArgs, appAPI_QueryLibraryBadgeArgs as QueryLibraryBadgeArgs, appAPI_QueryLibraryBadgesArgs as QueryLibraryBadgesArgs, appAPI_QueryLibraryFeatureArgs as QueryLibraryFeatureArgs, appAPI_QueryLibraryFeaturesArgs as QueryLibraryFeaturesArgs, appAPI_QueryLibraryIndustriesArgs as QueryLibraryIndustriesArgs, appAPI_QueryLibraryIndustryArgs as QueryLibraryIndustryArgs, appAPI_QueryLibrarySaleFunnelArgs as QueryLibrarySaleFunnelArgs, appAPI_QueryLibrarySaleFunnelsArgs as QueryLibrarySaleFunnelsArgs, appAPI_QueryLibrarySectionArgs as QueryLibrarySectionArgs, appAPI_QueryLibrarySectionsArgs as QueryLibrarySectionsArgs, appAPI_QueryLibraryTemplateArgs as QueryLibraryTemplateArgs, appAPI_QueryLibraryTemplatesArgs as QueryLibraryTemplatesArgs, appAPI_QueryListReleasesArgs as QueryListReleasesArgs, appAPI_QueryMediaArgs as QueryMediaArgs, appAPI_QueryMediasArgs as QueryMediasArgs, appAPI_QueryMetafieldDefinitionsArgs as QueryMetafieldDefinitionsArgs, appAPI_QueryMetafieldsArgs as QueryMetafieldsArgs, appAPI_QueryOnlineStoreTagsArgs as QueryOnlineStoreTagsArgs, appAPI_QueryOrderJourneyArgs as QueryOrderJourneyArgs, appAPI_QueryPageAnalyticsArgs as QueryPageAnalyticsArgs, appAPI_QueryPageArgs as QueryPageArgs, appAPI_QueryPageSectionArgs as QueryPageSectionArgs, appAPI_QueryPageSectionMetaArgs as QueryPageSectionMetaArgs, appAPI_QueryPageSectionMetaByKeyArgs as QueryPageSectionMetaByKeyArgs, appAPI_QueryPageSectionsArgs as QueryPageSectionsArgs, appAPI_QueryPageSnapshotsArgs as QueryPageSnapshotsArgs, appAPI_QueryPageViewsArgs as QueryPageViewsArgs, appAPI_QueryPagesArgs as QueryPagesArgs, appAPI_QueryParameter as QueryParameter, appAPI_QueryPathAnalyticsArgs as QueryPathAnalyticsArgs, appAPI_QueryPlanArgs as QueryPlanArgs, appAPI_QueryPlansArgs as QueryPlansArgs, appAPI_QueryPlansEligibleArgs as QueryPlansEligibleArgs, appAPI_QueryPlatformOriginalTemplateArgs as QueryPlatformOriginalTemplateArgs, appAPI_QueryPlatformPagesArgs as QueryPlatformPagesArgs, appAPI_QueryPlatformThemeFilesArgs as QueryPlatformThemeFilesArgs, appAPI_QueryPreviewPageArgs as QueryPreviewPageArgs, appAPI_QueryPreviewThemePageArgs as QueryPreviewThemePageArgs, appAPI_QueryProductArgs as QueryProductArgs, appAPI_QueryProductDiscountArgs as QueryProductDiscountArgs, appAPI_QueryProductDiscountObjectArgs as QueryProductDiscountObjectArgs, appAPI_QueryProductDiscountObjectsArgs as QueryProductDiscountObjectsArgs, appAPI_QueryProductDiscountsArgs as QueryProductDiscountsArgs, appAPI_QueryProductOptionNameArgs as QueryProductOptionNameArgs, appAPI_QueryProductOptionValueLabelArgs as QueryProductOptionValueLabelArgs, appAPI_QueryProductOptionValuesArgs as QueryProductOptionValuesArgs, appAPI_QueryProductOptionsArgs as QueryProductOptionsArgs, appAPI_QueryProductVariantsArgs as QueryProductVariantsArgs, appAPI_QueryProductsArgs as QueryProductsArgs, appAPI_QueryPromotionArgs as QueryPromotionArgs, appAPI_QueryPromotionsActiveArgs as QueryPromotionsActiveArgs, appAPI_QueryPromotionsArgs as QueryPromotionsArgs, appAPI_QueryPublicShopLibraryThemeArgs as QueryPublicShopLibraryThemeArgs, appAPI_QueryPublicShopLibraryThemesArgs as QueryPublicShopLibraryThemesArgs, appAPI_QueryPublishedShopMetasArgs as QueryPublishedShopMetasArgs, appAPI_QueryPublishedThemePageMetasArgs as QueryPublishedThemePageMetasArgs, appAPI_QueryPublishedThemePagesArgs as QueryPublishedThemePagesArgs, appAPI_QueryPublishedThemeSectionArgs as QueryPublishedThemeSectionArgs, appAPI_QueryPublishedThemeSectionsArgs as QueryPublishedThemeSectionsArgs, appAPI_QuerySaleFunnelArgs as QuerySaleFunnelArgs, appAPI_QuerySaleFunnelCampaignArgs as QuerySaleFunnelCampaignArgs, appAPI_QuerySaleFunnelDiscountArgs as QuerySaleFunnelDiscountArgs, appAPI_QuerySaleFunnelDiscountsArgs as QuerySaleFunnelDiscountsArgs, appAPI_QuerySaleFunnelMetasArgs as QuerySaleFunnelMetasArgs, appAPI_QuerySaleFunnelOfferArgs as QuerySaleFunnelOfferArgs, appAPI_QuerySaleFunnelOfferStatsArgs as QuerySaleFunnelOfferStatsArgs, appAPI_QuerySaleFunnelOfferTotalStatArgs as QuerySaleFunnelOfferTotalStatArgs, appAPI_QuerySaleFunnelOffersArgs as QuerySaleFunnelOffersArgs, appAPI_QuerySaleFunnelRevenuesArgs as QuerySaleFunnelRevenuesArgs, appAPI_QuerySaleFunnelStatsArgs as QuerySaleFunnelStatsArgs, appAPI_QuerySaleFunnelTotalStatArgs as QuerySaleFunnelTotalStatArgs, appAPI_QuerySaleFunnelsArgs as QuerySaleFunnelsArgs, appAPI_QueryScheduledPublishesArgs as QueryScheduledPublishesArgs, appAPI_QuerySectionCategoriesArgs as QuerySectionCategoriesArgs, appAPI_QuerySeoAuditArgs as QuerySeoAuditArgs, appAPI_QueryShopDeploymentEventsArgs as QueryShopDeploymentEventsArgs, appAPI_QueryShopDomainArgs as QueryShopDomainArgs, appAPI_QueryShopDomainVerifyArgs as QueryShopDomainVerifyArgs, appAPI_QueryShopDomainsArgs as QueryShopDomainsArgs, appAPI_QueryShopExtensionArgs as QueryShopExtensionArgs, appAPI_QueryShopLibraryOfferArgs as QueryShopLibraryOfferArgs, appAPI_QueryShopLibraryOffersArgs as QueryShopLibraryOffersArgs, appAPI_QueryShopLibraryPageArgs as QueryShopLibraryPageArgs, appAPI_QueryShopLibraryPagesArgs as QueryShopLibraryPagesArgs, appAPI_QueryShopLibraryThemeArgs as QueryShopLibraryThemeArgs, appAPI_QueryShopLibraryThemesArgs as QueryShopLibraryThemesArgs, appAPI_QueryShopMetaArgs as QueryShopMetaArgs, appAPI_QueryShopMetaByKeyArgs as QueryShopMetaByKeyArgs, appAPI_QueryShopPageCounterArgs as QueryShopPageCounterArgs, appAPI_QueryShopPlatformArgs as QueryShopPlatformArgs, appAPI_QueryShopPlatformBillArgs as QueryShopPlatformBillArgs, appAPI_QueryShopPlatformBillingsArgs as QueryShopPlatformBillingsArgs, appAPI_QueryShopPlatformBillsArgs as QueryShopPlatformBillsArgs, appAPI_QueryShopPlatformEnvironmentArgs as QueryShopPlatformEnvironmentArgs, appAPI_QueryShopPlatformPlanActiveArgs as QueryShopPlatformPlanActiveArgs, appAPI_QueryShopPlatformPlansArgs as QueryShopPlatformPlansArgs, appAPI_QueryShopPlatformPromotionsArgs as QueryShopPlatformPromotionsArgs, appAPI_QueryShopPlatformRevenuesArgs as QueryShopPlatformRevenuesArgs, appAPI_QueryShopPlatformVerifyScopeArgs as QueryShopPlatformVerifyScopeArgs, appAPI_QueryShopPlatformsArgs as QueryShopPlatformsArgs, appAPI_QueryShopStaffArgs as QueryShopStaffArgs, appAPI_QueryShopStaffsArgs as QueryShopStaffsArgs, appAPI_QueryShopsArgs as QueryShopsArgs, appAPI_QuerySnapshotsByVariantArgs as QuerySnapshotsByVariantArgs, appAPI_QuerySubscriptionTrialUsagesArgs as QuerySubscriptionTrialUsagesArgs, appAPI_QuerySubscriptionsArgs as QuerySubscriptionsArgs, appAPI_QuerySurveyFeedbacksArgs as QuerySurveyFeedbacksArgs, appAPI_QuerySurveysArgs as QuerySurveysArgs, appAPI_QueryTagArgs as QueryTagArgs, appAPI_QueryTagsArgs as QueryTagsArgs, appAPI_QueryTemplateCategoriesArgs as QueryTemplateCategoriesArgs, appAPI_QueryTemplatePackageArgs as QueryTemplatePackageArgs, appAPI_QueryTemplatePackagesArgs as QueryTemplatePackagesArgs, appAPI_QueryThemeMetaArgs as QueryThemeMetaArgs, appAPI_QueryThemeMetaByKeyArgs as QueryThemeMetaByKeyArgs, appAPI_QueryThemePageArgs as QueryThemePageArgs, appAPI_QueryThemePageCustomSectionsArgs as QueryThemePageCustomSectionsArgs, appAPI_QueryThemePageExportArgs as QueryThemePageExportArgs, appAPI_QueryThemePageGlobalComponentsArgs as QueryThemePageGlobalComponentsArgs, appAPI_QueryThemePageLimitationArgs as QueryThemePageLimitationArgs, appAPI_QueryThemePageMetaArgs as QueryThemePageMetaArgs, appAPI_QueryThemePageMetaByKeyArgs as QueryThemePageMetaByKeyArgs, appAPI_QueryThemePageOnlineStoresArgs as QueryThemePageOnlineStoresArgs, appAPI_QueryThemePageShareArgs as QueryThemePageShareArgs, appAPI_QueryThemePageSharesArgs as QueryThemePageSharesArgs, appAPI_QueryThemePageValidateHandleArgs as QueryThemePageValidateHandleArgs, appAPI_QueryThemePageVersionArgs as QueryThemePageVersionArgs, appAPI_QueryThemePageVersionsArgs as QueryThemePageVersionsArgs, appAPI_QueryThemePagesArgs as QueryThemePagesArgs, appAPI_QueryThemeSectionArgs as QueryThemeSectionArgs, appAPI_QueryThemeSectionMetaArgs as QueryThemeSectionMetaArgs, appAPI_QueryThemeSectionMetaByKeyArgs as QueryThemeSectionMetaByKeyArgs, appAPI_QueryThemeSectionVersionArgs as QueryThemeSectionVersionArgs, appAPI_QueryThemeSectionVersionsArgs as QueryThemeSectionVersionsArgs, appAPI_QueryThemeSectionsArgs as QueryThemeSectionsArgs, appAPI_QueryThemeStyleArgs as QueryThemeStyleArgs, appAPI_QueryThemeStyleGlobalArgs as QueryThemeStyleGlobalArgs, appAPI_QueryThemeStyleGlobalFromPlatformArgs as QueryThemeStyleGlobalFromPlatformArgs, appAPI_QueryThemeStyleVersionsArgs as QueryThemeStyleVersionsArgs, appAPI_QueryThemeStylesArgs as QueryThemeStylesArgs, appAPI_QueryThemesArgs as QueryThemesArgs, appAPI_QueryThemesGlobalArgs as QueryThemesGlobalArgs, appAPI_QueryUsageFeeBillsArgs as QueryUsageFeeBillsArgs, appAPI_QueryUsageFeeCurrentArgs as QueryUsageFeeCurrentArgs, appAPI_QueryUsageFeeTierArgs as QueryUsageFeeTierArgs, appAPI_QueryUsageFeeTiersArgs as QueryUsageFeeTiersArgs, appAPI_QueryUserMetaArgs as QueryUserMetaArgs, appAPI_QueryUserMetaByKeyArgs as QueryUserMetaByKeyArgs, appAPI_QueryVariantArgs as QueryVariantArgs, appAPI_QueryVariantProductVariantsArgs as QueryVariantProductVariantsArgs, appAPI_RepositoryRelease as RepositoryRelease, appAPI_Resource as Resource, appAPI_Role as Role, appAPI_SaleFunnel as SaleFunnel, appAPI_SaleFunnelCampaign as SaleFunnelCampaign, appAPI_SaleFunnelCampaignStatus as SaleFunnelCampaignStatus, appAPI_SaleFunnelCampaignWhereInput as SaleFunnelCampaignWhereInput, appAPI_SaleFunnelConnection as SaleFunnelConnection, appAPI_SaleFunnelDiscount as SaleFunnelDiscount, appAPI_SaleFunnelDiscountConnection as SaleFunnelDiscountConnection, appAPI_SaleFunnelDiscountEdge as SaleFunnelDiscountEdge, appAPI_SaleFunnelDiscountObjectType as SaleFunnelDiscountObjectType, appAPI_SaleFunnelDiscountOrder as SaleFunnelDiscountOrder, appAPI_SaleFunnelDiscountOrderField as SaleFunnelDiscountOrderField, appAPI_SaleFunnelDiscountType as SaleFunnelDiscountType, appAPI_SaleFunnelDiscountValueType as SaleFunnelDiscountValueType, appAPI_SaleFunnelDiscountWhereInput as SaleFunnelDiscountWhereInput, appAPI_SaleFunnelDynamicTrigger as SaleFunnelDynamicTrigger, appAPI_SaleFunnelDynamicTriggerWhereInput as SaleFunnelDynamicTriggerWhereInput, appAPI_SaleFunnelEdge as SaleFunnelEdge, appAPI_SaleFunnelLimitation as SaleFunnelLimitation, appAPI_SaleFunnelMeta as SaleFunnelMeta, appAPI_SaleFunnelMetaConnection as SaleFunnelMetaConnection, appAPI_SaleFunnelMetaEdge as SaleFunnelMetaEdge, appAPI_SaleFunnelMetaWhereInput as SaleFunnelMetaWhereInput, appAPI_SaleFunnelOffer as SaleFunnelOffer, appAPI_SaleFunnelOfferConnection as SaleFunnelOfferConnection, appAPI_SaleFunnelOfferDiscountsArgs as SaleFunnelOfferDiscountsArgs, appAPI_SaleFunnelOfferEdge as SaleFunnelOfferEdge, appAPI_SaleFunnelOfferOrder as SaleFunnelOfferOrder, appAPI_SaleFunnelOfferOrderField as SaleFunnelOfferOrderField, appAPI_SaleFunnelOfferStat as SaleFunnelOfferStat, appAPI_SaleFunnelOfferStatConnection as SaleFunnelOfferStatConnection, appAPI_SaleFunnelOfferStatEdge as SaleFunnelOfferStatEdge, appAPI_SaleFunnelOfferStatOrder as SaleFunnelOfferStatOrder, appAPI_SaleFunnelOfferStatOrderField as SaleFunnelOfferStatOrderField, appAPI_SaleFunnelOfferStatWhereInput as SaleFunnelOfferStatWhereInput, appAPI_SaleFunnelOfferTrafficRangeInput as SaleFunnelOfferTrafficRangeInput, appAPI_SaleFunnelOfferType as SaleFunnelOfferType, appAPI_SaleFunnelOfferWhereInput as SaleFunnelOfferWhereInput, appAPI_SaleFunnelOffersArgs as SaleFunnelOffersArgs, appAPI_SaleFunnelOrder as SaleFunnelOrder, appAPI_SaleFunnelOrderField as SaleFunnelOrderField, appAPI_SaleFunnelRedirect as SaleFunnelRedirect, appAPI_SaleFunnelRedirectWhereInput as SaleFunnelRedirectWhereInput, appAPI_SaleFunnelReplaceComponentDataInput as SaleFunnelReplaceComponentDataInput, appAPI_SaleFunnelRevenue as SaleFunnelRevenue, appAPI_SaleFunnelRevenueConnection as SaleFunnelRevenueConnection, appAPI_SaleFunnelRevenueEdge as SaleFunnelRevenueEdge, appAPI_SaleFunnelRevenueOrder as SaleFunnelRevenueOrder, appAPI_SaleFunnelRevenueOrderField as SaleFunnelRevenueOrderField, appAPI_SaleFunnelRevenueWhereInput as SaleFunnelRevenueWhereInput, appAPI_SaleFunnelStat as SaleFunnelStat, appAPI_SaleFunnelStatConnection as SaleFunnelStatConnection, appAPI_SaleFunnelStatEdge as SaleFunnelStatEdge, appAPI_SaleFunnelStatGroupByFields as SaleFunnelStatGroupByFields, appAPI_SaleFunnelStatOrder as SaleFunnelStatOrder, appAPI_SaleFunnelStatOrderField as SaleFunnelStatOrderField, appAPI_SaleFunnelStatWhereInput as SaleFunnelStatWhereInput, appAPI_SaleFunnelStatus as SaleFunnelStatus, appAPI_SaleFunnelTrackingTokenWhereInput as SaleFunnelTrackingTokenWhereInput, appAPI_SaleFunnelTrigger as SaleFunnelTrigger, appAPI_SaleFunnelTriggerWhereInput as SaleFunnelTriggerWhereInput, appAPI_SaleFunnelType as SaleFunnelType, appAPI_SaleFunnelWhereInput as SaleFunnelWhereInput, appAPI_SalePageProduct as SalePageProduct, appAPI_SalePageProductWhereInput as SalePageProductWhereInput, appAPI_Scalars as Scalars, appAPI_ScheduledPublish as ScheduledPublish, appAPI_ScheduledPublishCancellationReason as ScheduledPublishCancellationReason, appAPI_ScheduledPublishConnection as ScheduledPublishConnection, appAPI_ScheduledPublishEdge as ScheduledPublishEdge, appAPI_ScheduledPublishOrder as ScheduledPublishOrder, appAPI_ScheduledPublishOrderField as ScheduledPublishOrderField, appAPI_ScheduledPublishStatus as ScheduledPublishStatus, appAPI_ScheduledPublishWhereInput as ScheduledPublishWhereInput, appAPI_ScrollType as ScrollType, appAPI_SectionCategory as SectionCategory, appAPI_SectionCategoryInputCreate as SectionCategoryInputCreate, appAPI_SectionCategoryInputUpdate as SectionCategoryInputUpdate, appAPI_SectionCategoryWhereInput as SectionCategoryWhereInput, appAPI_SectionChildCategoryInputCreate as SectionChildCategoryInputCreate, appAPI_SelectedOption as SelectedOption, appAPI_SellingPlan as SellingPlan, appAPI_SellingPlanGroup as SellingPlanGroup, appAPI_SellingPlanGroupPlatform as SellingPlanGroupPlatform, appAPI_SellingPlanGroupWhereInput as SellingPlanGroupWhereInput, appAPI_SellingPlanPlatform as SellingPlanPlatform, appAPI_SellingPlanWhereInput as SellingPlanWhereInput, appAPI_Shop as Shop, appAPI_ShopAnalyticStateWhereInput as ShopAnalyticStateWhereInput, appAPI_ShopConnection as ShopConnection, appAPI_ShopCurrentVersion as ShopCurrentVersion, appAPI_ShopDatabaseWhereInput as ShopDatabaseWhereInput, appAPI_ShopDeployStatus as ShopDeployStatus, appAPI_ShopDomain as ShopDomain, appAPI_ShopDomainConnection as ShopDomainConnection, appAPI_ShopDomainEdge as ShopDomainEdge, appAPI_ShopDomainOrder as ShopDomainOrder, appAPI_ShopDomainOrderField as ShopDomainOrderField, appAPI_ShopDomainWhereInput as ShopDomainWhereInput, appAPI_ShopEdge as ShopEdge, appAPI_ShopExtension as ShopExtension, appAPI_ShopLibraryOffer as ShopLibraryOffer, appAPI_ShopLibraryOfferConnection as ShopLibraryOfferConnection, appAPI_ShopLibraryOfferEdge as ShopLibraryOfferEdge, appAPI_ShopLibraryOfferOrder as ShopLibraryOfferOrder, appAPI_ShopLibraryOfferOrderField as ShopLibraryOfferOrderField, appAPI_ShopLibraryOfferType as ShopLibraryOfferType, appAPI_ShopLibraryOfferWhereInput as ShopLibraryOfferWhereInput, appAPI_ShopLibraryPage as ShopLibraryPage, appAPI_ShopLibraryPageConnection as ShopLibraryPageConnection, appAPI_ShopLibraryPageEdge as ShopLibraryPageEdge, appAPI_ShopLibraryPageOrder as ShopLibraryPageOrder, appAPI_ShopLibraryPageOrderField as ShopLibraryPageOrderField, appAPI_ShopLibraryPageType as ShopLibraryPageType, appAPI_ShopLibraryPageWhereInput as ShopLibraryPageWhereInput, appAPI_ShopLibrarySection as ShopLibrarySection, appAPI_ShopLibrarySectionWhereInput as ShopLibrarySectionWhereInput, appAPI_ShopLibraryTheme as ShopLibraryTheme, appAPI_ShopLibraryThemeConnection as ShopLibraryThemeConnection, appAPI_ShopLibraryThemeEdge as ShopLibraryThemeEdge, appAPI_ShopLibraryThemeOrder as ShopLibraryThemeOrder, appAPI_ShopLibraryThemeOrderField as ShopLibraryThemeOrderField, appAPI_ShopLibraryThemeWhereInput as ShopLibraryThemeWhereInput, appAPI_ShopManageRequest as ShopManageRequest, appAPI_ShopManageRequestFailureReason as ShopManageRequestFailureReason, appAPI_ShopManageRequestOwnership as ShopManageRequestOwnership, appAPI_ShopManageRequestPermission as ShopManageRequestPermission, appAPI_ShopManageRequestPermissionAction as ShopManageRequestPermissionAction, appAPI_ShopManageRequestPermissionCondition as ShopManageRequestPermissionCondition, appAPI_ShopManageRequestPermissionConditionInput as ShopManageRequestPermissionConditionInput, appAPI_ShopManageRequestPermissionCreatedBy as ShopManageRequestPermissionCreatedBy, appAPI_ShopManageRequestPermissionInput as ShopManageRequestPermissionInput, appAPI_ShopManageRequestPermissionResource as ShopManageRequestPermissionResource, appAPI_ShopManageRequestStatus as ShopManageRequestStatus, appAPI_ShopManageRequestWhereInput as ShopManageRequestWhereInput, appAPI_ShopMeta as ShopMeta, appAPI_ShopMetaConnection as ShopMetaConnection, appAPI_ShopMetaEdge as ShopMetaEdge, appAPI_ShopMetaWhereInput as ShopMetaWhereInput, appAPI_ShopOrder as ShopOrder, appAPI_ShopOrderField as ShopOrderField, appAPI_ShopPageCounter as ShopPageCounter, appAPI_ShopPageCounterPageType as ShopPageCounterPageType, appAPI_ShopPageCounterWhereInput as ShopPageCounterWhereInput, appAPI_ShopPlatform as ShopPlatform, appAPI_ShopPlatformAppVersion as ShopPlatformAppVersion, appAPI_ShopPlatformBill as ShopPlatformBill, appAPI_ShopPlatformBillConnection as ShopPlatformBillConnection, appAPI_ShopPlatformBillEdge as ShopPlatformBillEdge, appAPI_ShopPlatformBillOrder as ShopPlatformBillOrder, appAPI_ShopPlatformBillOrderField as ShopPlatformBillOrderField, appAPI_ShopPlatformBillStatus as ShopPlatformBillStatus, appAPI_ShopPlatformBillType as ShopPlatformBillType, appAPI_ShopPlatformBillWhereInput as ShopPlatformBillWhereInput, appAPI_ShopPlatformBilling as ShopPlatformBilling, appAPI_ShopPlatformBillingConnection as ShopPlatformBillingConnection, appAPI_ShopPlatformBillingEdge as ShopPlatformBillingEdge, appAPI_ShopPlatformBillingOrder as ShopPlatformBillingOrder, appAPI_ShopPlatformBillingOrderField as ShopPlatformBillingOrderField, appAPI_ShopPlatformBillingWhereInput as ShopPlatformBillingWhereInput, appAPI_ShopPlatformConnection as ShopPlatformConnection, appAPI_ShopPlatformDuplicateThemeTemplateInput as ShopPlatformDuplicateThemeTemplateInput, appAPI_ShopPlatformEdge as ShopPlatformEdge, appAPI_ShopPlatformEnvironment as ShopPlatformEnvironment, appAPI_ShopPlatformOrder as ShopPlatformOrder, appAPI_ShopPlatformOrderField as ShopPlatformOrderField, appAPI_ShopPlatformPlan as ShopPlatformPlan, appAPI_ShopPlatformPlanConnection as ShopPlatformPlanConnection, appAPI_ShopPlatformPlanEdge as ShopPlatformPlanEdge, appAPI_ShopPlatformPlanOrder as ShopPlatformPlanOrder, appAPI_ShopPlatformPlanOrderField as ShopPlatformPlanOrderField, appAPI_ShopPlatformPlanSource as ShopPlatformPlanSource, appAPI_ShopPlatformPlanStatus as ShopPlatformPlanStatus, appAPI_ShopPlatformPlanWhereInput as ShopPlatformPlanWhereInput, appAPI_ShopPlatformPromotion as ShopPlatformPromotion, appAPI_ShopPlatformPromotionConnection as ShopPlatformPromotionConnection, appAPI_ShopPlatformPromotionEdge as ShopPlatformPromotionEdge, appAPI_ShopPlatformPromotionOrder as ShopPlatformPromotionOrder, appAPI_ShopPlatformPromotionOrderField as ShopPlatformPromotionOrderField, appAPI_ShopPlatformPromotionWhereInput as ShopPlatformPromotionWhereInput, appAPI_ShopPlatformRevenue as ShopPlatformRevenue, appAPI_ShopPlatformRevenueConnection as ShopPlatformRevenueConnection, appAPI_ShopPlatformRevenueEdge as ShopPlatformRevenueEdge, appAPI_ShopPlatformRevenueOrder as ShopPlatformRevenueOrder, appAPI_ShopPlatformRevenueOrderField as ShopPlatformRevenueOrderField, appAPI_ShopPlatformRevenueSource as ShopPlatformRevenueSource, appAPI_ShopPlatformRevenueWhereInput as ShopPlatformRevenueWhereInput, appAPI_ShopPlatformStatus as ShopPlatformStatus, appAPI_ShopPlatformSubscription as ShopPlatformSubscription, appAPI_ShopPlatformSubscriptionStatus as ShopPlatformSubscriptionStatus, appAPI_ShopPlatformSubscriptionWhereInput as ShopPlatformSubscriptionWhereInput, appAPI_ShopPlatformVerifyScope as ShopPlatformVerifyScope, appAPI_ShopPlatformWhereInput as ShopPlatformWhereInput, appAPI_ShopShopify as ShopShopify, appAPI_ShopStaff as ShopStaff, appAPI_ShopStaffConnection as ShopStaffConnection, appAPI_ShopStaffEdge as ShopStaffEdge, appAPI_ShopStaffOrder as ShopStaffOrder, appAPI_ShopStaffOrderField as ShopStaffOrderField, appAPI_ShopStaffWhereInput as ShopStaffWhereInput, appAPI_ShopThemesArgs as ShopThemesArgs, appAPI_ShopTokenWhereInput as ShopTokenWhereInput, appAPI_ShopWhereInput as ShopWhereInput, appAPI_ShopifyPlan as ShopifyPlan, appAPI_ShopifyTheme as ShopifyTheme, appAPI_SnapshotData as SnapshotData, appAPI_SocketImportedThemePage as SocketImportedThemePage, appAPI_SocketStatus as SocketStatus, appAPI_SocketThemePageImport as SocketThemePageImport, appAPI_SocketThemePageImportDetails as SocketThemePageImportDetails, appAPI_SpecificProductCondition as SpecificProductCondition, appAPI_SplitTestingCampaignVersion as SplitTestingCampaignVersion, appAPI_SplitTestingCampaignVersionWhereInput as SplitTestingCampaignVersionWhereInput, appAPI_Staff as Staff, appAPI_StatConvertLayoutData as StatConvertLayoutData, appAPI_StatConvertLayoutWhereInput as StatConvertLayoutWhereInput, appAPI_StatGenerateContentWhereInput as StatGenerateContentWhereInput, appAPI_StatGenerateSectionWhereInput as StatGenerateSectionWhereInput, appAPI_StatPageViewWhereInput as StatPageViewWhereInput, appAPI_Status as Status, appAPI_StoreProperty as StoreProperty, appAPI_StoreVersionLog as StoreVersionLog, appAPI_Subscription as Subscription, appAPI_SubscriptionConnection as SubscriptionConnection, appAPI_SubscriptionDiscountWhereInput as SubscriptionDiscountWhereInput, appAPI_SubscriptionEdge as SubscriptionEdge, appAPI_SubscriptionOrder as SubscriptionOrder, appAPI_SubscriptionOrderField as SubscriptionOrderField, appAPI_SubscriptionStatus as SubscriptionStatus, appAPI_SubscriptionTrialUsage as SubscriptionTrialUsage, appAPI_SubscriptionTrialUsageConnection as SubscriptionTrialUsageConnection, appAPI_SubscriptionTrialUsageEdge as SubscriptionTrialUsageEdge, appAPI_SubscriptionTrialUsageOrder as SubscriptionTrialUsageOrder, appAPI_SubscriptionTrialUsageOrderField as SubscriptionTrialUsageOrderField, appAPI_SubscriptionTrialUsageWhereInput as SubscriptionTrialUsageWhereInput, appAPI_SubscriptionWhereInput as SubscriptionWhereInput, appAPI_Survey as Survey, appAPI_SurveyConnection as SurveyConnection, appAPI_SurveyEdge as SurveyEdge, appAPI_SurveyFeedback as SurveyFeedback, appAPI_SurveyFeedbackConnection as SurveyFeedbackConnection, appAPI_SurveyFeedbackEdge as SurveyFeedbackEdge, appAPI_SurveyFeedbackWhereInput as SurveyFeedbackWhereInput, appAPI_SurveyWhereInput as SurveyWhereInput, appAPI_SyncResourceInput as SyncResourceInput, appAPI_TableColumnType as TableColumnType, appAPI_TableData as TableData, appAPI_TableDataType as TableDataType, appAPI_Tag as Tag, appAPI_TagConnection as TagConnection, appAPI_TagEdge as TagEdge, appAPI_TagOrder as TagOrder, appAPI_TagOrderField as TagOrderField, appAPI_TagType as TagType, appAPI_TagWhereInput as TagWhereInput, appAPI_TemplateCategory as TemplateCategory, appAPI_TemplateCategoryWhereInput as TemplateCategoryWhereInput, appAPI_TemplatePackage as TemplatePackage, appAPI_TemplatePackageConnection as TemplatePackageConnection, appAPI_TemplatePackageEdge as TemplatePackageEdge, appAPI_TemplatePackageOrder as TemplatePackageOrder, appAPI_TemplatePackageOrderField as TemplatePackageOrderField, appAPI_TemplatePackageWhereInput as TemplatePackageWhereInput, appAPI_TemplateSource as TemplateSource, appAPI_Theme as Theme, appAPI_ThemeConnection as ThemeConnection, appAPI_ThemeEdge as ThemeEdge, appAPI_ThemeMeta as ThemeMeta, appAPI_ThemeMetaConnection as ThemeMetaConnection, appAPI_ThemeMetaEdge as ThemeMetaEdge, appAPI_ThemeMetaWhereInput as ThemeMetaWhereInput, appAPI_ThemeOrder as ThemeOrder, appAPI_ThemeOrderField as ThemeOrderField, appAPI_ThemePage as ThemePage, appAPI_ThemePageConnection as ThemePageConnection, appAPI_ThemePageCustomSection as ThemePageCustomSection, appAPI_ThemePageCustomSectionWhereInput as ThemePageCustomSectionWhereInput, appAPI_ThemePageEdge as ThemePageEdge, appAPI_ThemePageGlobalComponent as ThemePageGlobalComponent, appAPI_ThemePageGlobalComponentWhereInput as ThemePageGlobalComponentWhereInput, appAPI_ThemePageLimitation as ThemePageLimitation, appAPI_ThemePageMeta as ThemePageMeta, appAPI_ThemePageMetaConnection as ThemePageMetaConnection, appAPI_ThemePageMetaEdge as ThemePageMetaEdge, appAPI_ThemePageMetaWhereInput as ThemePageMetaWhereInput, appAPI_ThemePageOnlineStoreData as ThemePageOnlineStoreData, appAPI_ThemePageOnlineStoreDataType as ThemePageOnlineStoreDataType, appAPI_ThemePageOnlineStoreDataWhereInput as ThemePageOnlineStoreDataWhereInput, appAPI_ThemePageOrder as ThemePageOrder, appAPI_ThemePageOrderField as ThemePageOrderField, appAPI_ThemePagePreviewStatus as ThemePagePreviewStatus, appAPI_ThemePagePreviewType as ThemePagePreviewType, appAPI_ThemePageShare as ThemePageShare, appAPI_ThemePageShareConnection as ThemePageShareConnection, appAPI_ThemePageShareContentDisplay as ThemePageShareContentDisplay, appAPI_ThemePageShareEdge as ThemePageShareEdge, appAPI_ThemePageShareOrder as ThemePageShareOrder, appAPI_ThemePageShareOrderField as ThemePageShareOrderField, appAPI_ThemePageShareStatus as ThemePageShareStatus, appAPI_ThemePageShareWhereInput as ThemePageShareWhereInput, appAPI_ThemePageStatus as ThemePageStatus, appAPI_ThemePageType as ThemePageType, appAPI_ThemePageVersion as ThemePageVersion, appAPI_ThemePageVersionConnection as ThemePageVersionConnection, appAPI_ThemePageVersionEdge as ThemePageVersionEdge, appAPI_ThemePageVersionOrder as ThemePageVersionOrder, appAPI_ThemePageVersionOrderField as ThemePageVersionOrderField, appAPI_ThemePageVersionType as ThemePageVersionType, appAPI_ThemePageVersionWhereInput as ThemePageVersionWhereInput, appAPI_ThemePageWhereInput as ThemePageWhereInput, appAPI_ThemeSection as ThemeSection, appAPI_ThemeSectionConnection as ThemeSectionConnection, appAPI_ThemeSectionEdge as ThemeSectionEdge, appAPI_ThemeSectionMeta as ThemeSectionMeta, appAPI_ThemeSectionMetaConnection as ThemeSectionMetaConnection, appAPI_ThemeSectionMetaEdge as ThemeSectionMetaEdge, appAPI_ThemeSectionMetaWhereInput as ThemeSectionMetaWhereInput, appAPI_ThemeSectionOrder as ThemeSectionOrder, appAPI_ThemeSectionOrderField as ThemeSectionOrderField, appAPI_ThemeSectionStatus as ThemeSectionStatus, appAPI_ThemeSectionVersion as ThemeSectionVersion, appAPI_ThemeSectionVersionConnection as ThemeSectionVersionConnection, appAPI_ThemeSectionVersionEdge as ThemeSectionVersionEdge, appAPI_ThemeSectionVersionOrder as ThemeSectionVersionOrder, appAPI_ThemeSectionVersionOrderField as ThemeSectionVersionOrderField, appAPI_ThemeSectionVersionType as ThemeSectionVersionType, appAPI_ThemeSectionVersionWhereInput as ThemeSectionVersionWhereInput, appAPI_ThemeSectionWhereInput as ThemeSectionWhereInput, appAPI_ThemeStyle as ThemeStyle, appAPI_ThemeStyleConnection as ThemeStyleConnection, appAPI_ThemeStyleEdge as ThemeStyleEdge, appAPI_ThemeStyleOrder as ThemeStyleOrder, appAPI_ThemeStyleOrderField as ThemeStyleOrderField, appAPI_ThemeStyleVersion as ThemeStyleVersion, appAPI_ThemeStyleVersionWhereInput as ThemeStyleVersionWhereInput, appAPI_ThemeStyleWhereInput as ThemeStyleWhereInput, appAPI_ThemeThemeMetasArgs as ThemeThemeMetasArgs, appAPI_ThemeThemeStylesArgs as ThemeThemeStylesArgs, appAPI_ThemeWhereInput as ThemeWhereInput, appAPI_TotalQuantityCondition as TotalQuantityCondition, appAPI_TriggerCondition as TriggerCondition, appAPI_TriggerConditionOperator as TriggerConditionOperator, appAPI_TriggerConditionType as TriggerConditionType, appAPI_TriggerConditionValue as TriggerConditionValue, appAPI_TriggerConditionWhereInput as TriggerConditionWhereInput, appAPI_UpdateAgencyInput as UpdateAgencyInput, appAPI_UpdateAgencyPackageSharingInput as UpdateAgencyPackageSharingInput, appAPI_UpdateAssignObjectTriggerConditionInput as UpdateAssignObjectTriggerConditionInput, appAPI_UpdateBulkTemplateCategoryInput as UpdateBulkTemplateCategoryInput, appAPI_UpdateCampaignGroupInput as UpdateCampaignGroupInput, appAPI_UpdateCampaignInput as UpdateCampaignInput, appAPI_UpdateCampaignProductInput as UpdateCampaignProductInput, appAPI_UpdateCampaignTrafficRangeInput as UpdateCampaignTrafficRangeInput, appAPI_UpdateCouponInput as UpdateCouponInput, appAPI_UpdateCustomSectionInput as UpdateCustomSectionInput, appAPI_UpdateFeatureRequestInput as UpdateFeatureRequestInput, appAPI_UpdateFeatureSettingInput as UpdateFeatureSettingInput, appAPI_UpdateGlobalComponentInput as UpdateGlobalComponentInput, appAPI_UpdateIconInput as UpdateIconInput, appAPI_UpdateLibraryBadgeInput as UpdateLibraryBadgeInput, appAPI_UpdateLibraryFeatureInput as UpdateLibraryFeatureInput, appAPI_UpdateLibraryIndustryInput as UpdateLibraryIndustryInput, appAPI_UpdateLibrarySaleFunnelInput as UpdateLibrarySaleFunnelInput, appAPI_UpdateLibrarySectionInput as UpdateLibrarySectionInput, appAPI_UpdateLibraryTemplateInput as UpdateLibraryTemplateInput, appAPI_UpdateOfferProductCollectionConditionInput as UpdateOfferProductCollectionConditionInput, appAPI_UpdateOfferProductPriceConditionInput as UpdateOfferProductPriceConditionInput, appAPI_UpdateOfferProductTagConditionInput as UpdateOfferProductTagConditionInput, appAPI_UpdateOfferProductVariantConditionInput as UpdateOfferProductVariantConditionInput, appAPI_UpdateOfferSpecificProductConditionInput as UpdateOfferSpecificProductConditionInput, appAPI_UpdateOrderValueConditionInput as UpdateOrderValueConditionInput, appAPI_UpdatePageInteractionInput as UpdatePageInteractionInput, appAPI_UpdatePageSectionInput as UpdatePageSectionInput, appAPI_UpdatePlanInput as UpdatePlanInput, appAPI_UpdateProductCollectionConditionInput as UpdateProductCollectionConditionInput, appAPI_UpdateProductDiscountInput as UpdateProductDiscountInput, appAPI_UpdateProductPriceConditionInput as UpdateProductPriceConditionInput, appAPI_UpdateProductTagConditionInput as UpdateProductTagConditionInput, appAPI_UpdateProductVariantConditionInput as UpdateProductVariantConditionInput, appAPI_UpdatePromotionInput as UpdatePromotionInput, appAPI_UpdateSaleFunnelCampaignInput as UpdateSaleFunnelCampaignInput, appAPI_UpdateSaleFunnelDiscountInput as UpdateSaleFunnelDiscountInput, appAPI_UpdateSaleFunnelInput as UpdateSaleFunnelInput, appAPI_UpdateSaleFunnelOfferInput as UpdateSaleFunnelOfferInput, appAPI_UpdateSaleFunnelRedirectInput as UpdateSaleFunnelRedirectInput, appAPI_UpdateSalePageProductInput as UpdateSalePageProductInput, appAPI_UpdateScheduledPublishInput as UpdateScheduledPublishInput, appAPI_UpdateShopInput as UpdateShopInput, appAPI_UpdateShopLibraryOfferInput as UpdateShopLibraryOfferInput, appAPI_UpdateShopLibraryPageInput as UpdateShopLibraryPageInput, appAPI_UpdateShopLibraryThemeInput as UpdateShopLibraryThemeInput, appAPI_UpdateShopManageRequestInput as UpdateShopManageRequestInput, appAPI_UpdateShopStaffInput as UpdateShopStaffInput, appAPI_UpdateSpecificProductConditionInput as UpdateSpecificProductConditionInput, appAPI_UpdateSurveyInput as UpdateSurveyInput, appAPI_UpdateTagInput as UpdateTagInput, appAPI_UpdateTemplateCategoryInput as UpdateTemplateCategoryInput, appAPI_UpdateTemplatePackageInput as UpdateTemplatePackageInput, appAPI_UpdateThemeInput as UpdateThemeInput, appAPI_UpdateThemePageGlobalComponentInput as UpdateThemePageGlobalComponentInput, appAPI_UpdateThemePageInput as UpdateThemePageInput, appAPI_UpdateThemePageOnlineStoreDataInput as UpdateThemePageOnlineStoreDataInput, appAPI_UpdateThemePageShareInput as UpdateThemePageShareInput, appAPI_UpdateThemePageVersionInput as UpdateThemePageVersionInput, appAPI_UpdateThemeSectionInput as UpdateThemeSectionInput, appAPI_UpdateThemeSectionVersionInput as UpdateThemeSectionVersionInput, appAPI_UpdateThemeStyleInput as UpdateThemeStyleInput, appAPI_UpdateTotalQuantityConditionInput as UpdateTotalQuantityConditionInput, appAPI_UpdateUsageFeeTierInput as UpdateUsageFeeTierInput, appAPI_UpdateVariantContentInput as UpdateVariantContentInput, appAPI_UpdateVariantInput as UpdateVariantInput, appAPI_UpdateVariantNameConditionInput as UpdateVariantNameConditionInput, appAPI_UpdateVariantProductVariantInput as UpdateVariantProductVariantInput, appAPI_UpdateVariantTemplateInput as UpdateVariantTemplateInput, appAPI_UpdatedAtInput as UpdatedAtInput, appAPI_UpsertGlobalSettingInput as UpsertGlobalSettingInput, appAPI_UpsertPageSectionMetaInput as UpsertPageSectionMetaInput, appAPI_UpsertShopMetaInput as UpsertShopMetaInput, appAPI_UpsertThemeMetaInput as UpsertThemeMetaInput, appAPI_UpsertThemeSectionMetaInput as UpsertThemeSectionMetaInput, appAPI_UpsertUserMetaInput as UpsertUserMetaInput, appAPI_UsageFee as UsageFee, appAPI_UsageFeeBill as UsageFeeBill, appAPI_UsageFeeBillConnection as UsageFeeBillConnection, appAPI_UsageFeeBillEdge as UsageFeeBillEdge, appAPI_UsageFeeBillOrder as UsageFeeBillOrder, appAPI_UsageFeeBillOrderField as UsageFeeBillOrderField, appAPI_UsageFeeBillStatus as UsageFeeBillStatus, appAPI_UsageFeeBillWhereInput as UsageFeeBillWhereInput, appAPI_UsageFeeCalculationDetail as UsageFeeCalculationDetail, appAPI_UsageFeeCalculationDetailWhereInput as UsageFeeCalculationDetailWhereInput, appAPI_UsageFeeCalculationSourceType as UsageFeeCalculationSourceType, appAPI_UsageFeeCurrent as UsageFeeCurrent, appAPI_UsageFeeTier as UsageFeeTier, appAPI_UsageFeeTierConnection as UsageFeeTierConnection, appAPI_UsageFeeTierEdge as UsageFeeTierEdge, appAPI_UsageFeeTierFeatureName as UsageFeeTierFeatureName, appAPI_UsageFeeTierOrder as UsageFeeTierOrder, appAPI_UsageFeeTierOrderField as UsageFeeTierOrderField, appAPI_UsageFeeTierSource as UsageFeeTierSource, appAPI_UsageFeeTierStatus as UsageFeeTierStatus, appAPI_UsageFeeTierWhereInput as UsageFeeTierWhereInput, appAPI_UsageFeeType as UsageFeeType, appAPI_UsageFeeWhereInput as UsageFeeWhereInput, appAPI_User as User, appAPI_UserMeta as UserMeta, appAPI_UserMetaConnection as UserMetaConnection, appAPI_UserMetaEdge as UserMetaEdge, appAPI_UserMetaWhereInput as UserMetaWhereInput, appAPI_Variant as Variant, appAPI_VariantContent as VariantContent, appAPI_VariantContentWhereInput as VariantContentWhereInput, appAPI_VariantNameCondition as VariantNameCondition, appAPI_VariantProductOptionWhereInput as VariantProductOptionWhereInput, appAPI_VariantProductVariant as VariantProductVariant, appAPI_VariantProductVariantConnection as VariantProductVariantConnection, appAPI_VariantProductVariantEdge as VariantProductVariantEdge, appAPI_VariantProductVariantOrder as VariantProductVariantOrder, appAPI_VariantProductVariantOrderField as VariantProductVariantOrderField, appAPI_VariantProductVariantWhereInput as VariantProductVariantWhereInput, appAPI_VariantTemplate as VariantTemplate, appAPI_VariantTemplateWhereInput as VariantTemplateWhereInput, appAPI_VariantWhereInput as VariantWhereInput, appAPI_VerifyStorefrontAccessTokenInput as VerifyStorefrontAccessTokenInput, appAPI_VisitorJourney as VisitorJourney, appAPI_VisitorStats as VisitorStats, appAPI_VisitorType as VisitorType, appAPI_VisitorWhereInput as VisitorWhereInput };
|
|
42293
42356
|
}
|
|
42294
42357
|
|
|
42295
42358
|
type AlignProp = 'left' | 'center' | 'right' | 'justify';
|
|
@@ -42716,9 +42779,9 @@ type AddonProviderProps = Pick<AddonContextProps, 'components'> & {
|
|
|
42716
42779
|
|
|
42717
42780
|
declare const AddonProvider: React.FC<AddonProviderProps>;
|
|
42718
42781
|
declare const useAddons: () => Record<string, React.ComponentType<any>>;
|
|
42719
|
-
declare const useAddon: (id?: string) => React.FC<BaseProps & {
|
|
42782
|
+
declare const useAddon: (id?: string) => React.ComponentType<any> | React.FC<BaseProps & {
|
|
42720
42783
|
children?: React.ReactNode;
|
|
42721
|
-
}
|
|
42784
|
+
}>;
|
|
42722
42785
|
|
|
42723
42786
|
type BuilderComponentProps = {
|
|
42724
42787
|
components: Record<string, React.ComponentType<any>>;
|
|
@@ -42730,9 +42793,9 @@ type BuilderComponentProviderProps = Pick<BuilderComponentProps, 'components'> &
|
|
|
42730
42793
|
};
|
|
42731
42794
|
|
|
42732
42795
|
declare const BuilderComponentProvider: React.FC<BuilderComponentProviderProps>;
|
|
42733
|
-
declare const useBuilderComponent: (id?: string) => React.
|
|
42796
|
+
declare const useBuilderComponent: (id?: string) => React.FC<BaseProps & {
|
|
42734
42797
|
children?: React.ReactNode;
|
|
42735
|
-
}>;
|
|
42798
|
+
}> | React.ComponentType<BaseProps>;
|
|
42736
42799
|
|
|
42737
42800
|
type BuilderContextProps = {
|
|
42738
42801
|
state: BuilderState | SectionData;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/core",
|
|
3
|
-
"version": "17.0.0-staging.
|
|
3
|
+
"version": "17.0.0-staging.49",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"lint": "oxlint --format=stylish ./src && eslint --ext .gql ./src",
|
|
19
19
|
"test": "jest -c ./../../helpers/jest.config.ts",
|
|
20
20
|
"format": "prettier --write \"./src/**/*.{ts,tsx}\"",
|
|
21
|
-
"schema:codegen": "gqlg --schemaFilePath ./schema/storefront.graphql --rootQuery Query --rootMutation Mutation --destDirPath ./__generated__ --depthLimit 5 && prettier --write --
|
|
21
|
+
"schema:codegen": "gqlg --schemaFilePath ./schema/storefront.graphql --rootQuery Query --rootMutation Mutation --destDirPath ./__generated__ --depthLimit 5 && prettier --write --log-level silent __generated__/**/*.gql",
|
|
22
22
|
"schema:download": "graphql-codegen --require dotenv/config --config codegen/download.yml",
|
|
23
|
-
"schema:codegenAppAPI": "gqlg --schemaFilePath ./schema/appAPI.graphql --rootQuery Query --rootMutation Mutation --destDirPath ./__generated__ --depthLimit 5 && prettier --write --
|
|
23
|
+
"schema:codegenAppAPI": "gqlg --schemaFilePath ./schema/appAPI.graphql --rootQuery Query --rootMutation Mutation --destDirPath ./__generated__ --depthLimit 5 && prettier --write --log-level silent __generated__/**/*.gql",
|
|
24
24
|
"schema:downloadAppAPI": "graphql-codegen --require dotenv/config --config codegen/downloadAppAPI.yml",
|
|
25
25
|
"codegen": "yarn schema:codegen",
|
|
26
26
|
"typegen": "graphql-codegen --config codegen/typegen.yml",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"type-check": "yarn tsc --noEmit"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@gem-sdk/adapter-shopify": "17.0.0-staging.
|
|
32
|
-
"@gem-sdk/styles": "17.0.0-staging.
|
|
31
|
+
"@gem-sdk/adapter-shopify": "17.0.0-staging.49",
|
|
32
|
+
"@gem-sdk/styles": "17.0.0-staging.49",
|
|
33
33
|
"@types/classnames": "^2.3.1"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|