@bosonprotocol/core-sdk 1.27.0 → 1.28.0-alpha.1
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/cjs/subgraph.d.ts +322 -0
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +4 -0
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +322 -0
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +4 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +2 -2
- package/src/accounts/queries.graphql +2 -0
- package/src/subgraph.ts +324 -0
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -7584,8 +7584,10 @@ export declare type SellerMetadataSocialLinksArgs = {
|
|
|
7584
7584
|
};
|
|
7585
7585
|
export declare type SellerMetadataMedia = {
|
|
7586
7586
|
__typename?: "SellerMetadataMedia";
|
|
7587
|
+
fit?: Maybe<Scalars["String"]>;
|
|
7587
7588
|
height?: Maybe<Scalars["Int"]>;
|
|
7588
7589
|
id: Scalars["ID"];
|
|
7590
|
+
position?: Maybe<Scalars["String"]>;
|
|
7589
7591
|
tag?: Maybe<Scalars["String"]>;
|
|
7590
7592
|
type: Scalars["String"];
|
|
7591
7593
|
url: Scalars["String"];
|
|
@@ -7594,6 +7596,26 @@ export declare type SellerMetadataMedia = {
|
|
|
7594
7596
|
export declare type SellerMetadataMedia_Filter = {
|
|
7595
7597
|
/** Filter for the block changed event. */
|
|
7596
7598
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
7599
|
+
fit?: InputMaybe<Scalars["String"]>;
|
|
7600
|
+
fit_contains?: InputMaybe<Scalars["String"]>;
|
|
7601
|
+
fit_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7602
|
+
fit_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7603
|
+
fit_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7604
|
+
fit_gt?: InputMaybe<Scalars["String"]>;
|
|
7605
|
+
fit_gte?: InputMaybe<Scalars["String"]>;
|
|
7606
|
+
fit_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7607
|
+
fit_lt?: InputMaybe<Scalars["String"]>;
|
|
7608
|
+
fit_lte?: InputMaybe<Scalars["String"]>;
|
|
7609
|
+
fit_not?: InputMaybe<Scalars["String"]>;
|
|
7610
|
+
fit_not_contains?: InputMaybe<Scalars["String"]>;
|
|
7611
|
+
fit_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7612
|
+
fit_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7613
|
+
fit_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7614
|
+
fit_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7615
|
+
fit_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7616
|
+
fit_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7617
|
+
fit_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7618
|
+
fit_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7597
7619
|
height?: InputMaybe<Scalars["Int"]>;
|
|
7598
7620
|
height_gt?: InputMaybe<Scalars["Int"]>;
|
|
7599
7621
|
height_gte?: InputMaybe<Scalars["Int"]>;
|
|
@@ -7610,6 +7632,26 @@ export declare type SellerMetadataMedia_Filter = {
|
|
|
7610
7632
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
7611
7633
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
7612
7634
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
7635
|
+
position?: InputMaybe<Scalars["String"]>;
|
|
7636
|
+
position_contains?: InputMaybe<Scalars["String"]>;
|
|
7637
|
+
position_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7638
|
+
position_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7639
|
+
position_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7640
|
+
position_gt?: InputMaybe<Scalars["String"]>;
|
|
7641
|
+
position_gte?: InputMaybe<Scalars["String"]>;
|
|
7642
|
+
position_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7643
|
+
position_lt?: InputMaybe<Scalars["String"]>;
|
|
7644
|
+
position_lte?: InputMaybe<Scalars["String"]>;
|
|
7645
|
+
position_not?: InputMaybe<Scalars["String"]>;
|
|
7646
|
+
position_not_contains?: InputMaybe<Scalars["String"]>;
|
|
7647
|
+
position_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7648
|
+
position_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7649
|
+
position_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7650
|
+
position_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7651
|
+
position_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7652
|
+
position_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7653
|
+
position_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7654
|
+
position_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7613
7655
|
tag?: InputMaybe<Scalars["String"]>;
|
|
7614
7656
|
tag_contains?: InputMaybe<Scalars["String"]>;
|
|
7615
7657
|
tag_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -7680,8 +7722,10 @@ export declare type SellerMetadataMedia_Filter = {
|
|
|
7680
7722
|
width_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
7681
7723
|
};
|
|
7682
7724
|
export declare enum SellerMetadataMedia_OrderBy {
|
|
7725
|
+
Fit = "fit",
|
|
7683
7726
|
Height = "height",
|
|
7684
7727
|
Id = "id",
|
|
7728
|
+
Position = "position",
|
|
7685
7729
|
Tag = "tag",
|
|
7686
7730
|
Type = "type",
|
|
7687
7731
|
Url = "url",
|
|
@@ -9009,6 +9053,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
9009
9053
|
type: string;
|
|
9010
9054
|
width?: number | null;
|
|
9011
9055
|
height?: number | null;
|
|
9056
|
+
fit?: string | null;
|
|
9057
|
+
position?: string | null;
|
|
9012
9058
|
}> | null;
|
|
9013
9059
|
contactLinks?: Array<{
|
|
9014
9060
|
__typename?: "SellerContactLink";
|
|
@@ -9271,6 +9317,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
9271
9317
|
type: string;
|
|
9272
9318
|
width?: number | null;
|
|
9273
9319
|
height?: number | null;
|
|
9320
|
+
fit?: string | null;
|
|
9321
|
+
position?: string | null;
|
|
9274
9322
|
}> | null;
|
|
9275
9323
|
contactLinks?: Array<{
|
|
9276
9324
|
__typename?: "SellerContactLink";
|
|
@@ -9396,6 +9444,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
9396
9444
|
type: string;
|
|
9397
9445
|
width?: number | null;
|
|
9398
9446
|
height?: number | null;
|
|
9447
|
+
fit?: string | null;
|
|
9448
|
+
position?: string | null;
|
|
9399
9449
|
}> | null;
|
|
9400
9450
|
contactLinks?: Array<{
|
|
9401
9451
|
__typename?: "SellerContactLink";
|
|
@@ -9542,6 +9592,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
9542
9592
|
type: string;
|
|
9543
9593
|
width?: number | null;
|
|
9544
9594
|
height?: number | null;
|
|
9595
|
+
fit?: string | null;
|
|
9596
|
+
position?: string | null;
|
|
9545
9597
|
}> | null;
|
|
9546
9598
|
contactLinks?: Array<{
|
|
9547
9599
|
__typename?: "SellerContactLink";
|
|
@@ -9705,6 +9757,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
9705
9757
|
type: string;
|
|
9706
9758
|
width?: number | null;
|
|
9707
9759
|
height?: number | null;
|
|
9760
|
+
fit?: string | null;
|
|
9761
|
+
position?: string | null;
|
|
9708
9762
|
}> | null;
|
|
9709
9763
|
contactLinks?: Array<{
|
|
9710
9764
|
__typename?: "SellerContactLink";
|
|
@@ -9881,6 +9935,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
9881
9935
|
type: string;
|
|
9882
9936
|
width?: number | null;
|
|
9883
9937
|
height?: number | null;
|
|
9938
|
+
fit?: string | null;
|
|
9939
|
+
position?: string | null;
|
|
9884
9940
|
}> | null;
|
|
9885
9941
|
contactLinks?: Array<{
|
|
9886
9942
|
__typename?: "SellerContactLink";
|
|
@@ -10143,6 +10199,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
10143
10199
|
type: string;
|
|
10144
10200
|
width?: number | null;
|
|
10145
10201
|
height?: number | null;
|
|
10202
|
+
fit?: string | null;
|
|
10203
|
+
position?: string | null;
|
|
10146
10204
|
}> | null;
|
|
10147
10205
|
contactLinks?: Array<{
|
|
10148
10206
|
__typename?: "SellerContactLink";
|
|
@@ -10268,6 +10326,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
10268
10326
|
type: string;
|
|
10269
10327
|
width?: number | null;
|
|
10270
10328
|
height?: number | null;
|
|
10329
|
+
fit?: string | null;
|
|
10330
|
+
position?: string | null;
|
|
10271
10331
|
}> | null;
|
|
10272
10332
|
contactLinks?: Array<{
|
|
10273
10333
|
__typename?: "SellerContactLink";
|
|
@@ -10414,6 +10474,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
10414
10474
|
type: string;
|
|
10415
10475
|
width?: number | null;
|
|
10416
10476
|
height?: number | null;
|
|
10477
|
+
fit?: string | null;
|
|
10478
|
+
position?: string | null;
|
|
10417
10479
|
}> | null;
|
|
10418
10480
|
contactLinks?: Array<{
|
|
10419
10481
|
__typename?: "SellerContactLink";
|
|
@@ -10577,6 +10639,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
10577
10639
|
type: string;
|
|
10578
10640
|
width?: number | null;
|
|
10579
10641
|
height?: number | null;
|
|
10642
|
+
fit?: string | null;
|
|
10643
|
+
position?: string | null;
|
|
10580
10644
|
}> | null;
|
|
10581
10645
|
contactLinks?: Array<{
|
|
10582
10646
|
__typename?: "SellerContactLink";
|
|
@@ -10725,6 +10789,8 @@ export declare type GetBuyerByIdQueryQuery = {
|
|
|
10725
10789
|
type: string;
|
|
10726
10790
|
width?: number | null;
|
|
10727
10791
|
height?: number | null;
|
|
10792
|
+
fit?: string | null;
|
|
10793
|
+
position?: string | null;
|
|
10728
10794
|
}> | null;
|
|
10729
10795
|
contactLinks?: Array<{
|
|
10730
10796
|
__typename?: "SellerContactLink";
|
|
@@ -10991,6 +11057,8 @@ export declare type GetBuyersQueryQuery = {
|
|
|
10991
11057
|
type: string;
|
|
10992
11058
|
width?: number | null;
|
|
10993
11059
|
height?: number | null;
|
|
11060
|
+
fit?: string | null;
|
|
11061
|
+
position?: string | null;
|
|
10994
11062
|
}> | null;
|
|
10995
11063
|
contactLinks?: Array<{
|
|
10996
11064
|
__typename?: "SellerContactLink";
|
|
@@ -11240,6 +11308,8 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
11240
11308
|
type: string;
|
|
11241
11309
|
width?: number | null;
|
|
11242
11310
|
height?: number | null;
|
|
11311
|
+
fit?: string | null;
|
|
11312
|
+
position?: string | null;
|
|
11243
11313
|
}> | null;
|
|
11244
11314
|
contactLinks?: Array<{
|
|
11245
11315
|
__typename?: "SellerContactLink";
|
|
@@ -11502,6 +11572,8 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
11502
11572
|
type: string;
|
|
11503
11573
|
width?: number | null;
|
|
11504
11574
|
height?: number | null;
|
|
11575
|
+
fit?: string | null;
|
|
11576
|
+
position?: string | null;
|
|
11505
11577
|
}> | null;
|
|
11506
11578
|
contactLinks?: Array<{
|
|
11507
11579
|
__typename?: "SellerContactLink";
|
|
@@ -11627,6 +11699,8 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
11627
11699
|
type: string;
|
|
11628
11700
|
width?: number | null;
|
|
11629
11701
|
height?: number | null;
|
|
11702
|
+
fit?: string | null;
|
|
11703
|
+
position?: string | null;
|
|
11630
11704
|
}> | null;
|
|
11631
11705
|
contactLinks?: Array<{
|
|
11632
11706
|
__typename?: "SellerContactLink";
|
|
@@ -11935,6 +12009,8 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
11935
12009
|
type: string;
|
|
11936
12010
|
width?: number | null;
|
|
11937
12011
|
height?: number | null;
|
|
12012
|
+
fit?: string | null;
|
|
12013
|
+
position?: string | null;
|
|
11938
12014
|
}> | null;
|
|
11939
12015
|
contactLinks?: Array<{
|
|
11940
12016
|
__typename?: "SellerContactLink";
|
|
@@ -12197,6 +12273,8 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
12197
12273
|
type: string;
|
|
12198
12274
|
width?: number | null;
|
|
12199
12275
|
height?: number | null;
|
|
12276
|
+
fit?: string | null;
|
|
12277
|
+
position?: string | null;
|
|
12200
12278
|
}> | null;
|
|
12201
12279
|
contactLinks?: Array<{
|
|
12202
12280
|
__typename?: "SellerContactLink";
|
|
@@ -12322,6 +12400,8 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
12322
12400
|
type: string;
|
|
12323
12401
|
width?: number | null;
|
|
12324
12402
|
height?: number | null;
|
|
12403
|
+
fit?: string | null;
|
|
12404
|
+
position?: string | null;
|
|
12325
12405
|
}> | null;
|
|
12326
12406
|
contactLinks?: Array<{
|
|
12327
12407
|
__typename?: "SellerContactLink";
|
|
@@ -12628,6 +12708,8 @@ export declare type SellerFieldsFragment = {
|
|
|
12628
12708
|
type: string;
|
|
12629
12709
|
width?: number | null;
|
|
12630
12710
|
height?: number | null;
|
|
12711
|
+
fit?: string | null;
|
|
12712
|
+
position?: string | null;
|
|
12631
12713
|
}> | null;
|
|
12632
12714
|
contactLinks?: Array<{
|
|
12633
12715
|
__typename?: "SellerContactLink";
|
|
@@ -12890,6 +12972,8 @@ export declare type SellerFieldsFragment = {
|
|
|
12890
12972
|
type: string;
|
|
12891
12973
|
width?: number | null;
|
|
12892
12974
|
height?: number | null;
|
|
12975
|
+
fit?: string | null;
|
|
12976
|
+
position?: string | null;
|
|
12893
12977
|
}> | null;
|
|
12894
12978
|
contactLinks?: Array<{
|
|
12895
12979
|
__typename?: "SellerContactLink";
|
|
@@ -13015,6 +13099,8 @@ export declare type SellerFieldsFragment = {
|
|
|
13015
13099
|
type: string;
|
|
13016
13100
|
width?: number | null;
|
|
13017
13101
|
height?: number | null;
|
|
13102
|
+
fit?: string | null;
|
|
13103
|
+
position?: string | null;
|
|
13018
13104
|
}> | null;
|
|
13019
13105
|
contactLinks?: Array<{
|
|
13020
13106
|
__typename?: "SellerContactLink";
|
|
@@ -13161,6 +13247,8 @@ export declare type SellerFieldsFragment = {
|
|
|
13161
13247
|
type: string;
|
|
13162
13248
|
width?: number | null;
|
|
13163
13249
|
height?: number | null;
|
|
13250
|
+
fit?: string | null;
|
|
13251
|
+
position?: string | null;
|
|
13164
13252
|
}> | null;
|
|
13165
13253
|
contactLinks?: Array<{
|
|
13166
13254
|
__typename?: "SellerContactLink";
|
|
@@ -13324,6 +13412,8 @@ export declare type SellerFieldsFragment = {
|
|
|
13324
13412
|
type: string;
|
|
13325
13413
|
width?: number | null;
|
|
13326
13414
|
height?: number | null;
|
|
13415
|
+
fit?: string | null;
|
|
13416
|
+
position?: string | null;
|
|
13327
13417
|
}> | null;
|
|
13328
13418
|
contactLinks?: Array<{
|
|
13329
13419
|
__typename?: "SellerContactLink";
|
|
@@ -13369,6 +13459,8 @@ export declare type SellerMetadataMediaFieldsFragment = {
|
|
|
13369
13459
|
type: string;
|
|
13370
13460
|
width?: number | null;
|
|
13371
13461
|
height?: number | null;
|
|
13462
|
+
fit?: string | null;
|
|
13463
|
+
position?: string | null;
|
|
13372
13464
|
};
|
|
13373
13465
|
export declare type SellerContactLinkFieldsFragment = {
|
|
13374
13466
|
__typename?: "SellerContactLink";
|
|
@@ -13437,6 +13529,8 @@ export declare type BaseSellerFieldsFragment = {
|
|
|
13437
13529
|
type: string;
|
|
13438
13530
|
width?: number | null;
|
|
13439
13531
|
height?: number | null;
|
|
13532
|
+
fit?: string | null;
|
|
13533
|
+
position?: string | null;
|
|
13440
13534
|
}> | null;
|
|
13441
13535
|
contactLinks?: Array<{
|
|
13442
13536
|
__typename?: "SellerContactLink";
|
|
@@ -13569,6 +13663,8 @@ export declare type BuyerFieldsFragment = {
|
|
|
13569
13663
|
type: string;
|
|
13570
13664
|
width?: number | null;
|
|
13571
13665
|
height?: number | null;
|
|
13666
|
+
fit?: string | null;
|
|
13667
|
+
position?: string | null;
|
|
13572
13668
|
}> | null;
|
|
13573
13669
|
contactLinks?: Array<{
|
|
13574
13670
|
__typename?: "SellerContactLink";
|
|
@@ -13806,6 +13902,8 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
13806
13902
|
type: string;
|
|
13807
13903
|
width?: number | null;
|
|
13808
13904
|
height?: number | null;
|
|
13905
|
+
fit?: string | null;
|
|
13906
|
+
position?: string | null;
|
|
13809
13907
|
}> | null;
|
|
13810
13908
|
contactLinks?: Array<{
|
|
13811
13909
|
__typename?: "SellerContactLink";
|
|
@@ -14068,6 +14166,8 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
14068
14166
|
type: string;
|
|
14069
14167
|
width?: number | null;
|
|
14070
14168
|
height?: number | null;
|
|
14169
|
+
fit?: string | null;
|
|
14170
|
+
position?: string | null;
|
|
14071
14171
|
}> | null;
|
|
14072
14172
|
contactLinks?: Array<{
|
|
14073
14173
|
__typename?: "SellerContactLink";
|
|
@@ -14193,6 +14293,8 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
14193
14293
|
type: string;
|
|
14194
14294
|
width?: number | null;
|
|
14195
14295
|
height?: number | null;
|
|
14296
|
+
fit?: string | null;
|
|
14297
|
+
position?: string | null;
|
|
14196
14298
|
}> | null;
|
|
14197
14299
|
contactLinks?: Array<{
|
|
14198
14300
|
__typename?: "SellerContactLink";
|
|
@@ -14542,6 +14644,8 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
14542
14644
|
type: string;
|
|
14543
14645
|
width?: number | null;
|
|
14544
14646
|
height?: number | null;
|
|
14647
|
+
fit?: string | null;
|
|
14648
|
+
position?: string | null;
|
|
14545
14649
|
}> | null;
|
|
14546
14650
|
contactLinks?: Array<{
|
|
14547
14651
|
__typename?: "SellerContactLink";
|
|
@@ -14613,6 +14717,8 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
14613
14717
|
type: string;
|
|
14614
14718
|
width?: number | null;
|
|
14615
14719
|
height?: number | null;
|
|
14720
|
+
fit?: string | null;
|
|
14721
|
+
position?: string | null;
|
|
14616
14722
|
}> | null;
|
|
14617
14723
|
contactLinks?: Array<{
|
|
14618
14724
|
__typename?: "SellerContactLink";
|
|
@@ -14749,6 +14855,8 @@ export declare type GetDisputesQueryQuery = {
|
|
|
14749
14855
|
type: string;
|
|
14750
14856
|
width?: number | null;
|
|
14751
14857
|
height?: number | null;
|
|
14858
|
+
fit?: string | null;
|
|
14859
|
+
position?: string | null;
|
|
14752
14860
|
}> | null;
|
|
14753
14861
|
contactLinks?: Array<{
|
|
14754
14862
|
__typename?: "SellerContactLink";
|
|
@@ -14820,6 +14928,8 @@ export declare type GetDisputesQueryQuery = {
|
|
|
14820
14928
|
type: string;
|
|
14821
14929
|
width?: number | null;
|
|
14822
14930
|
height?: number | null;
|
|
14931
|
+
fit?: string | null;
|
|
14932
|
+
position?: string | null;
|
|
14823
14933
|
}> | null;
|
|
14824
14934
|
contactLinks?: Array<{
|
|
14825
14935
|
__typename?: "SellerContactLink";
|
|
@@ -14947,6 +15057,8 @@ export declare type DisputeFieldsFragment = {
|
|
|
14947
15057
|
type: string;
|
|
14948
15058
|
width?: number | null;
|
|
14949
15059
|
height?: number | null;
|
|
15060
|
+
fit?: string | null;
|
|
15061
|
+
position?: string | null;
|
|
14950
15062
|
}> | null;
|
|
14951
15063
|
contactLinks?: Array<{
|
|
14952
15064
|
__typename?: "SellerContactLink";
|
|
@@ -15018,6 +15130,8 @@ export declare type DisputeFieldsFragment = {
|
|
|
15018
15130
|
type: string;
|
|
15019
15131
|
width?: number | null;
|
|
15020
15132
|
height?: number | null;
|
|
15133
|
+
fit?: string | null;
|
|
15134
|
+
position?: string | null;
|
|
15021
15135
|
}> | null;
|
|
15022
15136
|
contactLinks?: Array<{
|
|
15023
15137
|
__typename?: "SellerContactLink";
|
|
@@ -15175,6 +15289,8 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
15175
15289
|
type: string;
|
|
15176
15290
|
width?: number | null;
|
|
15177
15291
|
height?: number | null;
|
|
15292
|
+
fit?: string | null;
|
|
15293
|
+
position?: string | null;
|
|
15178
15294
|
}> | null;
|
|
15179
15295
|
contactLinks?: Array<{
|
|
15180
15296
|
__typename?: "SellerContactLink";
|
|
@@ -15437,6 +15553,8 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
15437
15553
|
type: string;
|
|
15438
15554
|
width?: number | null;
|
|
15439
15555
|
height?: number | null;
|
|
15556
|
+
fit?: string | null;
|
|
15557
|
+
position?: string | null;
|
|
15440
15558
|
}> | null;
|
|
15441
15559
|
contactLinks?: Array<{
|
|
15442
15560
|
__typename?: "SellerContactLink";
|
|
@@ -15562,6 +15680,8 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
15562
15680
|
type: string;
|
|
15563
15681
|
width?: number | null;
|
|
15564
15682
|
height?: number | null;
|
|
15683
|
+
fit?: string | null;
|
|
15684
|
+
position?: string | null;
|
|
15565
15685
|
}> | null;
|
|
15566
15686
|
contactLinks?: Array<{
|
|
15567
15687
|
__typename?: "SellerContactLink";
|
|
@@ -15745,6 +15865,8 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
15745
15865
|
type: string;
|
|
15746
15866
|
width?: number | null;
|
|
15747
15867
|
height?: number | null;
|
|
15868
|
+
fit?: string | null;
|
|
15869
|
+
position?: string | null;
|
|
15748
15870
|
}> | null;
|
|
15749
15871
|
contactLinks?: Array<{
|
|
15750
15872
|
__typename?: "SellerContactLink";
|
|
@@ -16007,6 +16129,8 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
16007
16129
|
type: string;
|
|
16008
16130
|
width?: number | null;
|
|
16009
16131
|
height?: number | null;
|
|
16132
|
+
fit?: string | null;
|
|
16133
|
+
position?: string | null;
|
|
16010
16134
|
}> | null;
|
|
16011
16135
|
contactLinks?: Array<{
|
|
16012
16136
|
__typename?: "SellerContactLink";
|
|
@@ -16132,6 +16256,8 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
16132
16256
|
type: string;
|
|
16133
16257
|
width?: number | null;
|
|
16134
16258
|
height?: number | null;
|
|
16259
|
+
fit?: string | null;
|
|
16260
|
+
position?: string | null;
|
|
16135
16261
|
}> | null;
|
|
16136
16262
|
contactLinks?: Array<{
|
|
16137
16263
|
__typename?: "SellerContactLink";
|
|
@@ -16294,6 +16420,8 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
16294
16420
|
type: string;
|
|
16295
16421
|
width?: number | null;
|
|
16296
16422
|
height?: number | null;
|
|
16423
|
+
fit?: string | null;
|
|
16424
|
+
position?: string | null;
|
|
16297
16425
|
}> | null;
|
|
16298
16426
|
contactLinks?: Array<{
|
|
16299
16427
|
__typename?: "SellerContactLink";
|
|
@@ -16556,6 +16684,8 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
16556
16684
|
type: string;
|
|
16557
16685
|
width?: number | null;
|
|
16558
16686
|
height?: number | null;
|
|
16687
|
+
fit?: string | null;
|
|
16688
|
+
position?: string | null;
|
|
16559
16689
|
}> | null;
|
|
16560
16690
|
contactLinks?: Array<{
|
|
16561
16691
|
__typename?: "SellerContactLink";
|
|
@@ -16681,6 +16811,8 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
16681
16811
|
type: string;
|
|
16682
16812
|
width?: number | null;
|
|
16683
16813
|
height?: number | null;
|
|
16814
|
+
fit?: string | null;
|
|
16815
|
+
position?: string | null;
|
|
16684
16816
|
}> | null;
|
|
16685
16817
|
contactLinks?: Array<{
|
|
16686
16818
|
__typename?: "SellerContactLink";
|
|
@@ -17089,6 +17221,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
17089
17221
|
type: string;
|
|
17090
17222
|
width?: number | null;
|
|
17091
17223
|
height?: number | null;
|
|
17224
|
+
fit?: string | null;
|
|
17225
|
+
position?: string | null;
|
|
17092
17226
|
}> | null;
|
|
17093
17227
|
contactLinks?: Array<{
|
|
17094
17228
|
__typename?: "SellerContactLink";
|
|
@@ -17351,6 +17485,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
17351
17485
|
type: string;
|
|
17352
17486
|
width?: number | null;
|
|
17353
17487
|
height?: number | null;
|
|
17488
|
+
fit?: string | null;
|
|
17489
|
+
position?: string | null;
|
|
17354
17490
|
}> | null;
|
|
17355
17491
|
contactLinks?: Array<{
|
|
17356
17492
|
__typename?: "SellerContactLink";
|
|
@@ -17476,6 +17612,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
17476
17612
|
type: string;
|
|
17477
17613
|
width?: number | null;
|
|
17478
17614
|
height?: number | null;
|
|
17615
|
+
fit?: string | null;
|
|
17616
|
+
position?: string | null;
|
|
17479
17617
|
}> | null;
|
|
17480
17618
|
contactLinks?: Array<{
|
|
17481
17619
|
__typename?: "SellerContactLink";
|
|
@@ -17608,6 +17746,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
17608
17746
|
type: string;
|
|
17609
17747
|
width?: number | null;
|
|
17610
17748
|
height?: number | null;
|
|
17749
|
+
fit?: string | null;
|
|
17750
|
+
position?: string | null;
|
|
17611
17751
|
}> | null;
|
|
17612
17752
|
contactLinks?: Array<{
|
|
17613
17753
|
__typename?: "SellerContactLink";
|
|
@@ -17739,6 +17879,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
17739
17879
|
type: string;
|
|
17740
17880
|
width?: number | null;
|
|
17741
17881
|
height?: number | null;
|
|
17882
|
+
fit?: string | null;
|
|
17883
|
+
position?: string | null;
|
|
17742
17884
|
}> | null;
|
|
17743
17885
|
contactLinks?: Array<{
|
|
17744
17886
|
__typename?: "SellerContactLink";
|
|
@@ -18001,6 +18143,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
18001
18143
|
type: string;
|
|
18002
18144
|
width?: number | null;
|
|
18003
18145
|
height?: number | null;
|
|
18146
|
+
fit?: string | null;
|
|
18147
|
+
position?: string | null;
|
|
18004
18148
|
}> | null;
|
|
18005
18149
|
contactLinks?: Array<{
|
|
18006
18150
|
__typename?: "SellerContactLink";
|
|
@@ -18126,6 +18270,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
18126
18270
|
type: string;
|
|
18127
18271
|
width?: number | null;
|
|
18128
18272
|
height?: number | null;
|
|
18273
|
+
fit?: string | null;
|
|
18274
|
+
position?: string | null;
|
|
18129
18275
|
}> | null;
|
|
18130
18276
|
contactLinks?: Array<{
|
|
18131
18277
|
__typename?: "SellerContactLink";
|
|
@@ -18258,6 +18404,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
18258
18404
|
type: string;
|
|
18259
18405
|
width?: number | null;
|
|
18260
18406
|
height?: number | null;
|
|
18407
|
+
fit?: string | null;
|
|
18408
|
+
position?: string | null;
|
|
18261
18409
|
}> | null;
|
|
18262
18410
|
contactLinks?: Array<{
|
|
18263
18411
|
__typename?: "SellerContactLink";
|
|
@@ -18380,6 +18528,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
18380
18528
|
type: string;
|
|
18381
18529
|
width?: number | null;
|
|
18382
18530
|
height?: number | null;
|
|
18531
|
+
fit?: string | null;
|
|
18532
|
+
position?: string | null;
|
|
18383
18533
|
}> | null;
|
|
18384
18534
|
contactLinks?: Array<{
|
|
18385
18535
|
__typename?: "SellerContactLink";
|
|
@@ -18642,6 +18792,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
18642
18792
|
type: string;
|
|
18643
18793
|
width?: number | null;
|
|
18644
18794
|
height?: number | null;
|
|
18795
|
+
fit?: string | null;
|
|
18796
|
+
position?: string | null;
|
|
18645
18797
|
}> | null;
|
|
18646
18798
|
contactLinks?: Array<{
|
|
18647
18799
|
__typename?: "SellerContactLink";
|
|
@@ -18767,6 +18919,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
18767
18919
|
type: string;
|
|
18768
18920
|
width?: number | null;
|
|
18769
18921
|
height?: number | null;
|
|
18922
|
+
fit?: string | null;
|
|
18923
|
+
position?: string | null;
|
|
18770
18924
|
}> | null;
|
|
18771
18925
|
contactLinks?: Array<{
|
|
18772
18926
|
__typename?: "SellerContactLink";
|
|
@@ -18899,6 +19053,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
18899
19053
|
type: string;
|
|
18900
19054
|
width?: number | null;
|
|
18901
19055
|
height?: number | null;
|
|
19056
|
+
fit?: string | null;
|
|
19057
|
+
position?: string | null;
|
|
18902
19058
|
}> | null;
|
|
18903
19059
|
contactLinks?: Array<{
|
|
18904
19060
|
__typename?: "SellerContactLink";
|
|
@@ -19005,6 +19161,8 @@ export declare type BaseExchangeFieldsFragment = {
|
|
|
19005
19161
|
type: string;
|
|
19006
19162
|
width?: number | null;
|
|
19007
19163
|
height?: number | null;
|
|
19164
|
+
fit?: string | null;
|
|
19165
|
+
position?: string | null;
|
|
19008
19166
|
}> | null;
|
|
19009
19167
|
contactLinks?: Array<{
|
|
19010
19168
|
__typename?: "SellerContactLink";
|
|
@@ -19228,6 +19386,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
19228
19386
|
type: string;
|
|
19229
19387
|
width?: number | null;
|
|
19230
19388
|
height?: number | null;
|
|
19389
|
+
fit?: string | null;
|
|
19390
|
+
position?: string | null;
|
|
19231
19391
|
}> | null;
|
|
19232
19392
|
contactLinks?: Array<{
|
|
19233
19393
|
__typename?: "SellerContactLink";
|
|
@@ -19490,6 +19650,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
19490
19650
|
type: string;
|
|
19491
19651
|
width?: number | null;
|
|
19492
19652
|
height?: number | null;
|
|
19653
|
+
fit?: string | null;
|
|
19654
|
+
position?: string | null;
|
|
19493
19655
|
}> | null;
|
|
19494
19656
|
contactLinks?: Array<{
|
|
19495
19657
|
__typename?: "SellerContactLink";
|
|
@@ -19615,6 +19777,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
19615
19777
|
type: string;
|
|
19616
19778
|
width?: number | null;
|
|
19617
19779
|
height?: number | null;
|
|
19780
|
+
fit?: string | null;
|
|
19781
|
+
position?: string | null;
|
|
19618
19782
|
}> | null;
|
|
19619
19783
|
contactLinks?: Array<{
|
|
19620
19784
|
__typename?: "SellerContactLink";
|
|
@@ -19726,6 +19890,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
19726
19890
|
type: string;
|
|
19727
19891
|
width?: number | null;
|
|
19728
19892
|
height?: number | null;
|
|
19893
|
+
fit?: string | null;
|
|
19894
|
+
position?: string | null;
|
|
19729
19895
|
}> | null;
|
|
19730
19896
|
contactLinks?: Array<{
|
|
19731
19897
|
__typename?: "SellerContactLink";
|
|
@@ -19883,6 +20049,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
19883
20049
|
type: string;
|
|
19884
20050
|
width?: number | null;
|
|
19885
20051
|
height?: number | null;
|
|
20052
|
+
fit?: string | null;
|
|
20053
|
+
position?: string | null;
|
|
19886
20054
|
}> | null;
|
|
19887
20055
|
contactLinks?: Array<{
|
|
19888
20056
|
__typename?: "SellerContactLink";
|
|
@@ -20145,6 +20313,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
20145
20313
|
type: string;
|
|
20146
20314
|
width?: number | null;
|
|
20147
20315
|
height?: number | null;
|
|
20316
|
+
fit?: string | null;
|
|
20317
|
+
position?: string | null;
|
|
20148
20318
|
}> | null;
|
|
20149
20319
|
contactLinks?: Array<{
|
|
20150
20320
|
__typename?: "SellerContactLink";
|
|
@@ -20270,6 +20440,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
20270
20440
|
type: string;
|
|
20271
20441
|
width?: number | null;
|
|
20272
20442
|
height?: number | null;
|
|
20443
|
+
fit?: string | null;
|
|
20444
|
+
position?: string | null;
|
|
20273
20445
|
}> | null;
|
|
20274
20446
|
contactLinks?: Array<{
|
|
20275
20447
|
__typename?: "SellerContactLink";
|
|
@@ -20381,6 +20553,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
20381
20553
|
type: string;
|
|
20382
20554
|
width?: number | null;
|
|
20383
20555
|
height?: number | null;
|
|
20556
|
+
fit?: string | null;
|
|
20557
|
+
position?: string | null;
|
|
20384
20558
|
}> | null;
|
|
20385
20559
|
contactLinks?: Array<{
|
|
20386
20560
|
__typename?: "SellerContactLink";
|
|
@@ -20529,6 +20703,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
20529
20703
|
type: string;
|
|
20530
20704
|
width?: number | null;
|
|
20531
20705
|
height?: number | null;
|
|
20706
|
+
fit?: string | null;
|
|
20707
|
+
position?: string | null;
|
|
20532
20708
|
}> | null;
|
|
20533
20709
|
contactLinks?: Array<{
|
|
20534
20710
|
__typename?: "SellerContactLink";
|
|
@@ -20791,6 +20967,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
20791
20967
|
type: string;
|
|
20792
20968
|
width?: number | null;
|
|
20793
20969
|
height?: number | null;
|
|
20970
|
+
fit?: string | null;
|
|
20971
|
+
position?: string | null;
|
|
20794
20972
|
}> | null;
|
|
20795
20973
|
contactLinks?: Array<{
|
|
20796
20974
|
__typename?: "SellerContactLink";
|
|
@@ -20916,6 +21094,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
20916
21094
|
type: string;
|
|
20917
21095
|
width?: number | null;
|
|
20918
21096
|
height?: number | null;
|
|
21097
|
+
fit?: string | null;
|
|
21098
|
+
position?: string | null;
|
|
20919
21099
|
}> | null;
|
|
20920
21100
|
contactLinks?: Array<{
|
|
20921
21101
|
__typename?: "SellerContactLink";
|
|
@@ -21027,6 +21207,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
21027
21207
|
type: string;
|
|
21028
21208
|
width?: number | null;
|
|
21029
21209
|
height?: number | null;
|
|
21210
|
+
fit?: string | null;
|
|
21211
|
+
position?: string | null;
|
|
21030
21212
|
}> | null;
|
|
21031
21213
|
contactLinks?: Array<{
|
|
21032
21214
|
__typename?: "SellerContactLink";
|
|
@@ -21174,6 +21356,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
21174
21356
|
type: string;
|
|
21175
21357
|
width?: number | null;
|
|
21176
21358
|
height?: number | null;
|
|
21359
|
+
fit?: string | null;
|
|
21360
|
+
position?: string | null;
|
|
21177
21361
|
}> | null;
|
|
21178
21362
|
contactLinks?: Array<{
|
|
21179
21363
|
__typename?: "SellerContactLink";
|
|
@@ -21436,6 +21620,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
21436
21620
|
type: string;
|
|
21437
21621
|
width?: number | null;
|
|
21438
21622
|
height?: number | null;
|
|
21623
|
+
fit?: string | null;
|
|
21624
|
+
position?: string | null;
|
|
21439
21625
|
}> | null;
|
|
21440
21626
|
contactLinks?: Array<{
|
|
21441
21627
|
__typename?: "SellerContactLink";
|
|
@@ -21561,6 +21747,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
21561
21747
|
type: string;
|
|
21562
21748
|
width?: number | null;
|
|
21563
21749
|
height?: number | null;
|
|
21750
|
+
fit?: string | null;
|
|
21751
|
+
position?: string | null;
|
|
21564
21752
|
}> | null;
|
|
21565
21753
|
contactLinks?: Array<{
|
|
21566
21754
|
__typename?: "SellerContactLink";
|
|
@@ -21672,6 +21860,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
21672
21860
|
type: string;
|
|
21673
21861
|
width?: number | null;
|
|
21674
21862
|
height?: number | null;
|
|
21863
|
+
fit?: string | null;
|
|
21864
|
+
position?: string | null;
|
|
21675
21865
|
}> | null;
|
|
21676
21866
|
contactLinks?: Array<{
|
|
21677
21867
|
__typename?: "SellerContactLink";
|
|
@@ -21883,6 +22073,8 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
21883
22073
|
type: string;
|
|
21884
22074
|
width?: number | null;
|
|
21885
22075
|
height?: number | null;
|
|
22076
|
+
fit?: string | null;
|
|
22077
|
+
position?: string | null;
|
|
21886
22078
|
}> | null;
|
|
21887
22079
|
contactLinks?: Array<{
|
|
21888
22080
|
__typename?: "SellerContactLink";
|
|
@@ -22085,6 +22277,8 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
22085
22277
|
type: string;
|
|
22086
22278
|
width?: number | null;
|
|
22087
22279
|
height?: number | null;
|
|
22280
|
+
fit?: string | null;
|
|
22281
|
+
position?: string | null;
|
|
22088
22282
|
}> | null;
|
|
22089
22283
|
contactLinks?: Array<{
|
|
22090
22284
|
__typename?: "SellerContactLink";
|
|
@@ -22166,6 +22360,8 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
22166
22360
|
type: string;
|
|
22167
22361
|
width?: number | null;
|
|
22168
22362
|
height?: number | null;
|
|
22363
|
+
fit?: string | null;
|
|
22364
|
+
position?: string | null;
|
|
22169
22365
|
}> | null;
|
|
22170
22366
|
contactLinks?: Array<{
|
|
22171
22367
|
__typename?: "SellerContactLink";
|
|
@@ -22428,6 +22624,8 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
22428
22624
|
type: string;
|
|
22429
22625
|
width?: number | null;
|
|
22430
22626
|
height?: number | null;
|
|
22627
|
+
fit?: string | null;
|
|
22628
|
+
position?: string | null;
|
|
22431
22629
|
}> | null;
|
|
22432
22630
|
contactLinks?: Array<{
|
|
22433
22631
|
__typename?: "SellerContactLink";
|
|
@@ -22553,6 +22751,8 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
22553
22751
|
type: string;
|
|
22554
22752
|
width?: number | null;
|
|
22555
22753
|
height?: number | null;
|
|
22754
|
+
fit?: string | null;
|
|
22755
|
+
position?: string | null;
|
|
22556
22756
|
}> | null;
|
|
22557
22757
|
contactLinks?: Array<{
|
|
22558
22758
|
__typename?: "SellerContactLink";
|
|
@@ -22749,6 +22949,8 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
22749
22949
|
type: string;
|
|
22750
22950
|
width?: number | null;
|
|
22751
22951
|
height?: number | null;
|
|
22952
|
+
fit?: string | null;
|
|
22953
|
+
position?: string | null;
|
|
22752
22954
|
}> | null;
|
|
22753
22955
|
contactLinks?: Array<{
|
|
22754
22956
|
__typename?: "SellerContactLink";
|
|
@@ -22951,6 +23153,8 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
22951
23153
|
type: string;
|
|
22952
23154
|
width?: number | null;
|
|
22953
23155
|
height?: number | null;
|
|
23156
|
+
fit?: string | null;
|
|
23157
|
+
position?: string | null;
|
|
22954
23158
|
}> | null;
|
|
22955
23159
|
contactLinks?: Array<{
|
|
22956
23160
|
__typename?: "SellerContactLink";
|
|
@@ -23032,6 +23236,8 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
23032
23236
|
type: string;
|
|
23033
23237
|
width?: number | null;
|
|
23034
23238
|
height?: number | null;
|
|
23239
|
+
fit?: string | null;
|
|
23240
|
+
position?: string | null;
|
|
23035
23241
|
}> | null;
|
|
23036
23242
|
contactLinks?: Array<{
|
|
23037
23243
|
__typename?: "SellerContactLink";
|
|
@@ -23294,6 +23500,8 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
23294
23500
|
type: string;
|
|
23295
23501
|
width?: number | null;
|
|
23296
23502
|
height?: number | null;
|
|
23503
|
+
fit?: string | null;
|
|
23504
|
+
position?: string | null;
|
|
23297
23505
|
}> | null;
|
|
23298
23506
|
contactLinks?: Array<{
|
|
23299
23507
|
__typename?: "SellerContactLink";
|
|
@@ -23419,6 +23627,8 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
23419
23627
|
type: string;
|
|
23420
23628
|
width?: number | null;
|
|
23421
23629
|
height?: number | null;
|
|
23630
|
+
fit?: string | null;
|
|
23631
|
+
position?: string | null;
|
|
23422
23632
|
}> | null;
|
|
23423
23633
|
contactLinks?: Array<{
|
|
23424
23634
|
__typename?: "SellerContactLink";
|
|
@@ -23615,6 +23825,8 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
23615
23825
|
type: string;
|
|
23616
23826
|
width?: number | null;
|
|
23617
23827
|
height?: number | null;
|
|
23828
|
+
fit?: string | null;
|
|
23829
|
+
position?: string | null;
|
|
23618
23830
|
}> | null;
|
|
23619
23831
|
contactLinks?: Array<{
|
|
23620
23832
|
__typename?: "SellerContactLink";
|
|
@@ -23829,6 +24041,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
23829
24041
|
type: string;
|
|
23830
24042
|
width?: number | null;
|
|
23831
24043
|
height?: number | null;
|
|
24044
|
+
fit?: string | null;
|
|
24045
|
+
position?: string | null;
|
|
23832
24046
|
}> | null;
|
|
23833
24047
|
contactLinks?: Array<{
|
|
23834
24048
|
__typename?: "SellerContactLink";
|
|
@@ -23910,6 +24124,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
23910
24124
|
type: string;
|
|
23911
24125
|
width?: number | null;
|
|
23912
24126
|
height?: number | null;
|
|
24127
|
+
fit?: string | null;
|
|
24128
|
+
position?: string | null;
|
|
23913
24129
|
}> | null;
|
|
23914
24130
|
contactLinks?: Array<{
|
|
23915
24131
|
__typename?: "SellerContactLink";
|
|
@@ -24172,6 +24388,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
24172
24388
|
type: string;
|
|
24173
24389
|
width?: number | null;
|
|
24174
24390
|
height?: number | null;
|
|
24391
|
+
fit?: string | null;
|
|
24392
|
+
position?: string | null;
|
|
24175
24393
|
}> | null;
|
|
24176
24394
|
contactLinks?: Array<{
|
|
24177
24395
|
__typename?: "SellerContactLink";
|
|
@@ -24297,6 +24515,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
24297
24515
|
type: string;
|
|
24298
24516
|
width?: number | null;
|
|
24299
24517
|
height?: number | null;
|
|
24518
|
+
fit?: string | null;
|
|
24519
|
+
position?: string | null;
|
|
24300
24520
|
}> | null;
|
|
24301
24521
|
contactLinks?: Array<{
|
|
24302
24522
|
__typename?: "SellerContactLink";
|
|
@@ -24408,6 +24628,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
24408
24628
|
type: string;
|
|
24409
24629
|
width?: number | null;
|
|
24410
24630
|
height?: number | null;
|
|
24631
|
+
fit?: string | null;
|
|
24632
|
+
position?: string | null;
|
|
24411
24633
|
}> | null;
|
|
24412
24634
|
contactLinks?: Array<{
|
|
24413
24635
|
__typename?: "SellerContactLink";
|
|
@@ -24594,6 +24816,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
24594
24816
|
type: string;
|
|
24595
24817
|
width?: number | null;
|
|
24596
24818
|
height?: number | null;
|
|
24819
|
+
fit?: string | null;
|
|
24820
|
+
position?: string | null;
|
|
24597
24821
|
}> | null;
|
|
24598
24822
|
contactLinks?: Array<{
|
|
24599
24823
|
__typename?: "SellerContactLink";
|
|
@@ -24719,6 +24943,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
24719
24943
|
type: string;
|
|
24720
24944
|
width?: number | null;
|
|
24721
24945
|
height?: number | null;
|
|
24946
|
+
fit?: string | null;
|
|
24947
|
+
position?: string | null;
|
|
24722
24948
|
}> | null;
|
|
24723
24949
|
contactLinks?: Array<{
|
|
24724
24950
|
__typename?: "SellerContactLink";
|
|
@@ -24905,6 +25131,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
24905
25131
|
type: string;
|
|
24906
25132
|
width?: number | null;
|
|
24907
25133
|
height?: number | null;
|
|
25134
|
+
fit?: string | null;
|
|
25135
|
+
position?: string | null;
|
|
24908
25136
|
}> | null;
|
|
24909
25137
|
contactLinks?: Array<{
|
|
24910
25138
|
__typename?: "SellerContactLink";
|
|
@@ -24986,6 +25214,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
24986
25214
|
type: string;
|
|
24987
25215
|
width?: number | null;
|
|
24988
25216
|
height?: number | null;
|
|
25217
|
+
fit?: string | null;
|
|
25218
|
+
position?: string | null;
|
|
24989
25219
|
}> | null;
|
|
24990
25220
|
contactLinks?: Array<{
|
|
24991
25221
|
__typename?: "SellerContactLink";
|
|
@@ -25248,6 +25478,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
25248
25478
|
type: string;
|
|
25249
25479
|
width?: number | null;
|
|
25250
25480
|
height?: number | null;
|
|
25481
|
+
fit?: string | null;
|
|
25482
|
+
position?: string | null;
|
|
25251
25483
|
}> | null;
|
|
25252
25484
|
contactLinks?: Array<{
|
|
25253
25485
|
__typename?: "SellerContactLink";
|
|
@@ -25373,6 +25605,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
25373
25605
|
type: string;
|
|
25374
25606
|
width?: number | null;
|
|
25375
25607
|
height?: number | null;
|
|
25608
|
+
fit?: string | null;
|
|
25609
|
+
position?: string | null;
|
|
25376
25610
|
}> | null;
|
|
25377
25611
|
contactLinks?: Array<{
|
|
25378
25612
|
__typename?: "SellerContactLink";
|
|
@@ -25484,6 +25718,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
25484
25718
|
type: string;
|
|
25485
25719
|
width?: number | null;
|
|
25486
25720
|
height?: number | null;
|
|
25721
|
+
fit?: string | null;
|
|
25722
|
+
position?: string | null;
|
|
25487
25723
|
}> | null;
|
|
25488
25724
|
contactLinks?: Array<{
|
|
25489
25725
|
__typename?: "SellerContactLink";
|
|
@@ -25670,6 +25906,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
25670
25906
|
type: string;
|
|
25671
25907
|
width?: number | null;
|
|
25672
25908
|
height?: number | null;
|
|
25909
|
+
fit?: string | null;
|
|
25910
|
+
position?: string | null;
|
|
25673
25911
|
}> | null;
|
|
25674
25912
|
contactLinks?: Array<{
|
|
25675
25913
|
__typename?: "SellerContactLink";
|
|
@@ -25795,6 +26033,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
25795
26033
|
type: string;
|
|
25796
26034
|
width?: number | null;
|
|
25797
26035
|
height?: number | null;
|
|
26036
|
+
fit?: string | null;
|
|
26037
|
+
position?: string | null;
|
|
25798
26038
|
}> | null;
|
|
25799
26039
|
contactLinks?: Array<{
|
|
25800
26040
|
__typename?: "SellerContactLink";
|
|
@@ -25972,6 +26212,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
25972
26212
|
type: string;
|
|
25973
26213
|
width?: number | null;
|
|
25974
26214
|
height?: number | null;
|
|
26215
|
+
fit?: string | null;
|
|
26216
|
+
position?: string | null;
|
|
25975
26217
|
}> | null;
|
|
25976
26218
|
contactLinks?: Array<{
|
|
25977
26219
|
__typename?: "SellerContactLink";
|
|
@@ -26053,6 +26295,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26053
26295
|
type: string;
|
|
26054
26296
|
width?: number | null;
|
|
26055
26297
|
height?: number | null;
|
|
26298
|
+
fit?: string | null;
|
|
26299
|
+
position?: string | null;
|
|
26056
26300
|
}> | null;
|
|
26057
26301
|
contactLinks?: Array<{
|
|
26058
26302
|
__typename?: "SellerContactLink";
|
|
@@ -26315,6 +26559,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26315
26559
|
type: string;
|
|
26316
26560
|
width?: number | null;
|
|
26317
26561
|
height?: number | null;
|
|
26562
|
+
fit?: string | null;
|
|
26563
|
+
position?: string | null;
|
|
26318
26564
|
}> | null;
|
|
26319
26565
|
contactLinks?: Array<{
|
|
26320
26566
|
__typename?: "SellerContactLink";
|
|
@@ -26440,6 +26686,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26440
26686
|
type: string;
|
|
26441
26687
|
width?: number | null;
|
|
26442
26688
|
height?: number | null;
|
|
26689
|
+
fit?: string | null;
|
|
26690
|
+
position?: string | null;
|
|
26443
26691
|
}> | null;
|
|
26444
26692
|
contactLinks?: Array<{
|
|
26445
26693
|
__typename?: "SellerContactLink";
|
|
@@ -26551,6 +26799,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26551
26799
|
type: string;
|
|
26552
26800
|
width?: number | null;
|
|
26553
26801
|
height?: number | null;
|
|
26802
|
+
fit?: string | null;
|
|
26803
|
+
position?: string | null;
|
|
26554
26804
|
}> | null;
|
|
26555
26805
|
contactLinks?: Array<{
|
|
26556
26806
|
__typename?: "SellerContactLink";
|
|
@@ -26737,6 +26987,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26737
26987
|
type: string;
|
|
26738
26988
|
width?: number | null;
|
|
26739
26989
|
height?: number | null;
|
|
26990
|
+
fit?: string | null;
|
|
26991
|
+
position?: string | null;
|
|
26740
26992
|
}> | null;
|
|
26741
26993
|
contactLinks?: Array<{
|
|
26742
26994
|
__typename?: "SellerContactLink";
|
|
@@ -26862,6 +27114,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26862
27114
|
type: string;
|
|
26863
27115
|
width?: number | null;
|
|
26864
27116
|
height?: number | null;
|
|
27117
|
+
fit?: string | null;
|
|
27118
|
+
position?: string | null;
|
|
26865
27119
|
}> | null;
|
|
26866
27120
|
contactLinks?: Array<{
|
|
26867
27121
|
__typename?: "SellerContactLink";
|
|
@@ -27038,6 +27292,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
27038
27292
|
type: string;
|
|
27039
27293
|
width?: number | null;
|
|
27040
27294
|
height?: number | null;
|
|
27295
|
+
fit?: string | null;
|
|
27296
|
+
position?: string | null;
|
|
27041
27297
|
}> | null;
|
|
27042
27298
|
contactLinks?: Array<{
|
|
27043
27299
|
__typename?: "SellerContactLink";
|
|
@@ -27119,6 +27375,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
27119
27375
|
type: string;
|
|
27120
27376
|
width?: number | null;
|
|
27121
27377
|
height?: number | null;
|
|
27378
|
+
fit?: string | null;
|
|
27379
|
+
position?: string | null;
|
|
27122
27380
|
}> | null;
|
|
27123
27381
|
contactLinks?: Array<{
|
|
27124
27382
|
__typename?: "SellerContactLink";
|
|
@@ -27381,6 +27639,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
27381
27639
|
type: string;
|
|
27382
27640
|
width?: number | null;
|
|
27383
27641
|
height?: number | null;
|
|
27642
|
+
fit?: string | null;
|
|
27643
|
+
position?: string | null;
|
|
27384
27644
|
}> | null;
|
|
27385
27645
|
contactLinks?: Array<{
|
|
27386
27646
|
__typename?: "SellerContactLink";
|
|
@@ -27506,6 +27766,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
27506
27766
|
type: string;
|
|
27507
27767
|
width?: number | null;
|
|
27508
27768
|
height?: number | null;
|
|
27769
|
+
fit?: string | null;
|
|
27770
|
+
position?: string | null;
|
|
27509
27771
|
}> | null;
|
|
27510
27772
|
contactLinks?: Array<{
|
|
27511
27773
|
__typename?: "SellerContactLink";
|
|
@@ -27617,6 +27879,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
27617
27879
|
type: string;
|
|
27618
27880
|
width?: number | null;
|
|
27619
27881
|
height?: number | null;
|
|
27882
|
+
fit?: string | null;
|
|
27883
|
+
position?: string | null;
|
|
27620
27884
|
}> | null;
|
|
27621
27885
|
contactLinks?: Array<{
|
|
27622
27886
|
__typename?: "SellerContactLink";
|
|
@@ -27803,6 +28067,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
27803
28067
|
type: string;
|
|
27804
28068
|
width?: number | null;
|
|
27805
28069
|
height?: number | null;
|
|
28070
|
+
fit?: string | null;
|
|
28071
|
+
position?: string | null;
|
|
27806
28072
|
}> | null;
|
|
27807
28073
|
contactLinks?: Array<{
|
|
27808
28074
|
__typename?: "SellerContactLink";
|
|
@@ -27928,6 +28194,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
27928
28194
|
type: string;
|
|
27929
28195
|
width?: number | null;
|
|
27930
28196
|
height?: number | null;
|
|
28197
|
+
fit?: string | null;
|
|
28198
|
+
position?: string | null;
|
|
27931
28199
|
}> | null;
|
|
27932
28200
|
contactLinks?: Array<{
|
|
27933
28201
|
__typename?: "SellerContactLink";
|
|
@@ -28125,6 +28393,8 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
28125
28393
|
type: string;
|
|
28126
28394
|
width?: number | null;
|
|
28127
28395
|
height?: number | null;
|
|
28396
|
+
fit?: string | null;
|
|
28397
|
+
position?: string | null;
|
|
28128
28398
|
}> | null;
|
|
28129
28399
|
contactLinks?: Array<{
|
|
28130
28400
|
__typename?: "SellerContactLink";
|
|
@@ -28317,6 +28587,8 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
28317
28587
|
type: string;
|
|
28318
28588
|
width?: number | null;
|
|
28319
28589
|
height?: number | null;
|
|
28590
|
+
fit?: string | null;
|
|
28591
|
+
position?: string | null;
|
|
28320
28592
|
}> | null;
|
|
28321
28593
|
contactLinks?: Array<{
|
|
28322
28594
|
__typename?: "SellerContactLink";
|
|
@@ -28398,6 +28670,8 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
28398
28670
|
type: string;
|
|
28399
28671
|
width?: number | null;
|
|
28400
28672
|
height?: number | null;
|
|
28673
|
+
fit?: string | null;
|
|
28674
|
+
position?: string | null;
|
|
28401
28675
|
}> | null;
|
|
28402
28676
|
contactLinks?: Array<{
|
|
28403
28677
|
__typename?: "SellerContactLink";
|
|
@@ -28660,6 +28934,8 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
28660
28934
|
type: string;
|
|
28661
28935
|
width?: number | null;
|
|
28662
28936
|
height?: number | null;
|
|
28937
|
+
fit?: string | null;
|
|
28938
|
+
position?: string | null;
|
|
28663
28939
|
}> | null;
|
|
28664
28940
|
contactLinks?: Array<{
|
|
28665
28941
|
__typename?: "SellerContactLink";
|
|
@@ -28785,6 +29061,8 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
28785
29061
|
type: string;
|
|
28786
29062
|
width?: number | null;
|
|
28787
29063
|
height?: number | null;
|
|
29064
|
+
fit?: string | null;
|
|
29065
|
+
position?: string | null;
|
|
28788
29066
|
}> | null;
|
|
28789
29067
|
contactLinks?: Array<{
|
|
28790
29068
|
__typename?: "SellerContactLink";
|
|
@@ -28981,6 +29259,8 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
28981
29259
|
type: string;
|
|
28982
29260
|
width?: number | null;
|
|
28983
29261
|
height?: number | null;
|
|
29262
|
+
fit?: string | null;
|
|
29263
|
+
position?: string | null;
|
|
28984
29264
|
}> | null;
|
|
28985
29265
|
contactLinks?: Array<{
|
|
28986
29266
|
__typename?: "SellerContactLink";
|
|
@@ -29173,6 +29453,8 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
29173
29453
|
type: string;
|
|
29174
29454
|
width?: number | null;
|
|
29175
29455
|
height?: number | null;
|
|
29456
|
+
fit?: string | null;
|
|
29457
|
+
position?: string | null;
|
|
29176
29458
|
}> | null;
|
|
29177
29459
|
contactLinks?: Array<{
|
|
29178
29460
|
__typename?: "SellerContactLink";
|
|
@@ -29254,6 +29536,8 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
29254
29536
|
type: string;
|
|
29255
29537
|
width?: number | null;
|
|
29256
29538
|
height?: number | null;
|
|
29539
|
+
fit?: string | null;
|
|
29540
|
+
position?: string | null;
|
|
29257
29541
|
}> | null;
|
|
29258
29542
|
contactLinks?: Array<{
|
|
29259
29543
|
__typename?: "SellerContactLink";
|
|
@@ -29516,6 +29800,8 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
29516
29800
|
type: string;
|
|
29517
29801
|
width?: number | null;
|
|
29518
29802
|
height?: number | null;
|
|
29803
|
+
fit?: string | null;
|
|
29804
|
+
position?: string | null;
|
|
29519
29805
|
}> | null;
|
|
29520
29806
|
contactLinks?: Array<{
|
|
29521
29807
|
__typename?: "SellerContactLink";
|
|
@@ -29641,6 +29927,8 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
29641
29927
|
type: string;
|
|
29642
29928
|
width?: number | null;
|
|
29643
29929
|
height?: number | null;
|
|
29930
|
+
fit?: string | null;
|
|
29931
|
+
position?: string | null;
|
|
29644
29932
|
}> | null;
|
|
29645
29933
|
contactLinks?: Array<{
|
|
29646
29934
|
__typename?: "SellerContactLink";
|
|
@@ -29837,6 +30125,8 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
29837
30125
|
type: string;
|
|
29838
30126
|
width?: number | null;
|
|
29839
30127
|
height?: number | null;
|
|
30128
|
+
fit?: string | null;
|
|
30129
|
+
position?: string | null;
|
|
29840
30130
|
}> | null;
|
|
29841
30131
|
contactLinks?: Array<{
|
|
29842
30132
|
__typename?: "SellerContactLink";
|
|
@@ -29996,6 +30286,8 @@ export declare type BaseProductV1SellerFieldsFragment = {
|
|
|
29996
30286
|
type: string;
|
|
29997
30287
|
width?: number | null;
|
|
29998
30288
|
height?: number | null;
|
|
30289
|
+
fit?: string | null;
|
|
30290
|
+
position?: string | null;
|
|
29999
30291
|
}> | null;
|
|
30000
30292
|
contactLinks?: Array<{
|
|
30001
30293
|
__typename?: "SellerContactLink";
|
|
@@ -30220,6 +30512,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
30220
30512
|
type: string;
|
|
30221
30513
|
width?: number | null;
|
|
30222
30514
|
height?: number | null;
|
|
30515
|
+
fit?: string | null;
|
|
30516
|
+
position?: string | null;
|
|
30223
30517
|
}> | null;
|
|
30224
30518
|
contactLinks?: Array<{
|
|
30225
30519
|
__typename?: "SellerContactLink";
|
|
@@ -30301,6 +30595,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
30301
30595
|
type: string;
|
|
30302
30596
|
width?: number | null;
|
|
30303
30597
|
height?: number | null;
|
|
30598
|
+
fit?: string | null;
|
|
30599
|
+
position?: string | null;
|
|
30304
30600
|
}> | null;
|
|
30305
30601
|
contactLinks?: Array<{
|
|
30306
30602
|
__typename?: "SellerContactLink";
|
|
@@ -30563,6 +30859,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
30563
30859
|
type: string;
|
|
30564
30860
|
width?: number | null;
|
|
30565
30861
|
height?: number | null;
|
|
30862
|
+
fit?: string | null;
|
|
30863
|
+
position?: string | null;
|
|
30566
30864
|
}> | null;
|
|
30567
30865
|
contactLinks?: Array<{
|
|
30568
30866
|
__typename?: "SellerContactLink";
|
|
@@ -30688,6 +30986,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
30688
30986
|
type: string;
|
|
30689
30987
|
width?: number | null;
|
|
30690
30988
|
height?: number | null;
|
|
30989
|
+
fit?: string | null;
|
|
30990
|
+
position?: string | null;
|
|
30691
30991
|
}> | null;
|
|
30692
30992
|
contactLinks?: Array<{
|
|
30693
30993
|
__typename?: "SellerContactLink";
|
|
@@ -30876,6 +31176,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
30876
31176
|
type: string;
|
|
30877
31177
|
width?: number | null;
|
|
30878
31178
|
height?: number | null;
|
|
31179
|
+
fit?: string | null;
|
|
31180
|
+
position?: string | null;
|
|
30879
31181
|
}> | null;
|
|
30880
31182
|
contactLinks?: Array<{
|
|
30881
31183
|
__typename?: "SellerContactLink";
|
|
@@ -30957,6 +31259,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
30957
31259
|
type: string;
|
|
30958
31260
|
width?: number | null;
|
|
30959
31261
|
height?: number | null;
|
|
31262
|
+
fit?: string | null;
|
|
31263
|
+
position?: string | null;
|
|
30960
31264
|
}> | null;
|
|
30961
31265
|
contactLinks?: Array<{
|
|
30962
31266
|
__typename?: "SellerContactLink";
|
|
@@ -31219,6 +31523,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
31219
31523
|
type: string;
|
|
31220
31524
|
width?: number | null;
|
|
31221
31525
|
height?: number | null;
|
|
31526
|
+
fit?: string | null;
|
|
31527
|
+
position?: string | null;
|
|
31222
31528
|
}> | null;
|
|
31223
31529
|
contactLinks?: Array<{
|
|
31224
31530
|
__typename?: "SellerContactLink";
|
|
@@ -31344,6 +31650,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
31344
31650
|
type: string;
|
|
31345
31651
|
width?: number | null;
|
|
31346
31652
|
height?: number | null;
|
|
31653
|
+
fit?: string | null;
|
|
31654
|
+
position?: string | null;
|
|
31347
31655
|
}> | null;
|
|
31348
31656
|
contactLinks?: Array<{
|
|
31349
31657
|
__typename?: "SellerContactLink";
|
|
@@ -31517,6 +31825,8 @@ export declare type OfferFieldsFragment = {
|
|
|
31517
31825
|
type: string;
|
|
31518
31826
|
width?: number | null;
|
|
31519
31827
|
height?: number | null;
|
|
31828
|
+
fit?: string | null;
|
|
31829
|
+
position?: string | null;
|
|
31520
31830
|
}> | null;
|
|
31521
31831
|
contactLinks?: Array<{
|
|
31522
31832
|
__typename?: "SellerContactLink";
|
|
@@ -31598,6 +31908,8 @@ export declare type OfferFieldsFragment = {
|
|
|
31598
31908
|
type: string;
|
|
31599
31909
|
width?: number | null;
|
|
31600
31910
|
height?: number | null;
|
|
31911
|
+
fit?: string | null;
|
|
31912
|
+
position?: string | null;
|
|
31601
31913
|
}> | null;
|
|
31602
31914
|
contactLinks?: Array<{
|
|
31603
31915
|
__typename?: "SellerContactLink";
|
|
@@ -31860,6 +32172,8 @@ export declare type OfferFieldsFragment = {
|
|
|
31860
32172
|
type: string;
|
|
31861
32173
|
width?: number | null;
|
|
31862
32174
|
height?: number | null;
|
|
32175
|
+
fit?: string | null;
|
|
32176
|
+
position?: string | null;
|
|
31863
32177
|
}> | null;
|
|
31864
32178
|
contactLinks?: Array<{
|
|
31865
32179
|
__typename?: "SellerContactLink";
|
|
@@ -31985,6 +32299,8 @@ export declare type OfferFieldsFragment = {
|
|
|
31985
32299
|
type: string;
|
|
31986
32300
|
width?: number | null;
|
|
31987
32301
|
height?: number | null;
|
|
32302
|
+
fit?: string | null;
|
|
32303
|
+
position?: string | null;
|
|
31988
32304
|
}> | null;
|
|
31989
32305
|
contactLinks?: Array<{
|
|
31990
32306
|
__typename?: "SellerContactLink";
|
|
@@ -32132,6 +32448,8 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
32132
32448
|
type: string;
|
|
32133
32449
|
width?: number | null;
|
|
32134
32450
|
height?: number | null;
|
|
32451
|
+
fit?: string | null;
|
|
32452
|
+
position?: string | null;
|
|
32135
32453
|
}> | null;
|
|
32136
32454
|
contactLinks?: Array<{
|
|
32137
32455
|
__typename?: "SellerContactLink";
|
|
@@ -32394,6 +32712,8 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
32394
32712
|
type: string;
|
|
32395
32713
|
width?: number | null;
|
|
32396
32714
|
height?: number | null;
|
|
32715
|
+
fit?: string | null;
|
|
32716
|
+
position?: string | null;
|
|
32397
32717
|
}> | null;
|
|
32398
32718
|
contactLinks?: Array<{
|
|
32399
32719
|
__typename?: "SellerContactLink";
|
|
@@ -32519,6 +32839,8 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
32519
32839
|
type: string;
|
|
32520
32840
|
width?: number | null;
|
|
32521
32841
|
height?: number | null;
|
|
32842
|
+
fit?: string | null;
|
|
32843
|
+
position?: string | null;
|
|
32522
32844
|
}> | null;
|
|
32523
32845
|
contactLinks?: Array<{
|
|
32524
32846
|
__typename?: "SellerContactLink";
|