@bosonprotocol/core-sdk 1.25.0-alpha.43 → 1.25.0-alpha.44
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 +160 -148
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +3 -8
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +160 -148
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +0 -5
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/subgraph.ts +160 -149
package/src/subgraph.ts
CHANGED
|
@@ -2306,11 +2306,6 @@ export enum FundsEventLog_OrderBy {
|
|
|
2306
2306
|
Type = "type"
|
|
2307
2307
|
}
|
|
2308
2308
|
|
|
2309
|
-
export enum MediaType {
|
|
2310
|
-
Image = "IMAGE",
|
|
2311
|
-
Video = "VIDEO"
|
|
2312
|
-
}
|
|
2313
|
-
|
|
2314
2309
|
export type MetadataAttribute = {
|
|
2315
2310
|
__typename?: "MetadataAttribute";
|
|
2316
2311
|
displayType: Scalars["String"];
|
|
@@ -7841,7 +7836,7 @@ export type SellerMetadataMedia = {
|
|
|
7841
7836
|
height?: Maybe<Scalars["Int"]>;
|
|
7842
7837
|
id: Scalars["ID"];
|
|
7843
7838
|
tag?: Maybe<Scalars["String"]>;
|
|
7844
|
-
type:
|
|
7839
|
+
type: Scalars["String"];
|
|
7845
7840
|
url: Scalars["String"];
|
|
7846
7841
|
width?: Maybe<Scalars["Int"]>;
|
|
7847
7842
|
};
|
|
@@ -7885,10 +7880,26 @@ export type SellerMetadataMedia_Filter = {
|
|
|
7885
7880
|
tag_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7886
7881
|
tag_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7887
7882
|
tag_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7888
|
-
type?: InputMaybe<
|
|
7889
|
-
|
|
7890
|
-
|
|
7891
|
-
|
|
7883
|
+
type?: InputMaybe<Scalars["String"]>;
|
|
7884
|
+
type_contains?: InputMaybe<Scalars["String"]>;
|
|
7885
|
+
type_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7886
|
+
type_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7887
|
+
type_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7888
|
+
type_gt?: InputMaybe<Scalars["String"]>;
|
|
7889
|
+
type_gte?: InputMaybe<Scalars["String"]>;
|
|
7890
|
+
type_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7891
|
+
type_lt?: InputMaybe<Scalars["String"]>;
|
|
7892
|
+
type_lte?: InputMaybe<Scalars["String"]>;
|
|
7893
|
+
type_not?: InputMaybe<Scalars["String"]>;
|
|
7894
|
+
type_not_contains?: InputMaybe<Scalars["String"]>;
|
|
7895
|
+
type_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7896
|
+
type_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7897
|
+
type_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7898
|
+
type_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7899
|
+
type_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7900
|
+
type_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7901
|
+
type_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7902
|
+
type_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7892
7903
|
url?: InputMaybe<Scalars["String"]>;
|
|
7893
7904
|
url_contains?: InputMaybe<Scalars["String"]>;
|
|
7894
7905
|
url_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -9308,7 +9319,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9308
9319
|
id: string;
|
|
9309
9320
|
url: string;
|
|
9310
9321
|
tag?: string | null;
|
|
9311
|
-
type:
|
|
9322
|
+
type: string;
|
|
9312
9323
|
width?: number | null;
|
|
9313
9324
|
height?: number | null;
|
|
9314
9325
|
}> | null;
|
|
@@ -9550,7 +9561,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9550
9561
|
id: string;
|
|
9551
9562
|
url: string;
|
|
9552
9563
|
tag?: string | null;
|
|
9553
|
-
type:
|
|
9564
|
+
type: string;
|
|
9554
9565
|
width?: number | null;
|
|
9555
9566
|
height?: number | null;
|
|
9556
9567
|
}> | null;
|
|
@@ -9631,7 +9642,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9631
9642
|
id: string;
|
|
9632
9643
|
url: string;
|
|
9633
9644
|
tag?: string | null;
|
|
9634
|
-
type:
|
|
9645
|
+
type: string;
|
|
9635
9646
|
width?: number | null;
|
|
9636
9647
|
height?: number | null;
|
|
9637
9648
|
}> | null;
|
|
@@ -9756,7 +9767,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9756
9767
|
id: string;
|
|
9757
9768
|
url: string;
|
|
9758
9769
|
tag?: string | null;
|
|
9759
|
-
type:
|
|
9770
|
+
type: string;
|
|
9760
9771
|
width?: number | null;
|
|
9761
9772
|
height?: number | null;
|
|
9762
9773
|
}> | null;
|
|
@@ -9861,7 +9872,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9861
9872
|
id: string;
|
|
9862
9873
|
url: string;
|
|
9863
9874
|
tag?: string | null;
|
|
9864
|
-
type:
|
|
9875
|
+
type: string;
|
|
9865
9876
|
width?: number | null;
|
|
9866
9877
|
height?: number | null;
|
|
9867
9878
|
}> | null;
|
|
@@ -10017,7 +10028,7 @@ export type GetSellersQueryQuery = {
|
|
|
10017
10028
|
id: string;
|
|
10018
10029
|
url: string;
|
|
10019
10030
|
tag?: string | null;
|
|
10020
|
-
type:
|
|
10031
|
+
type: string;
|
|
10021
10032
|
width?: number | null;
|
|
10022
10033
|
height?: number | null;
|
|
10023
10034
|
}> | null;
|
|
@@ -10259,7 +10270,7 @@ export type GetSellersQueryQuery = {
|
|
|
10259
10270
|
id: string;
|
|
10260
10271
|
url: string;
|
|
10261
10272
|
tag?: string | null;
|
|
10262
|
-
type:
|
|
10273
|
+
type: string;
|
|
10263
10274
|
width?: number | null;
|
|
10264
10275
|
height?: number | null;
|
|
10265
10276
|
}> | null;
|
|
@@ -10340,7 +10351,7 @@ export type GetSellersQueryQuery = {
|
|
|
10340
10351
|
id: string;
|
|
10341
10352
|
url: string;
|
|
10342
10353
|
tag?: string | null;
|
|
10343
|
-
type:
|
|
10354
|
+
type: string;
|
|
10344
10355
|
width?: number | null;
|
|
10345
10356
|
height?: number | null;
|
|
10346
10357
|
}> | null;
|
|
@@ -10465,7 +10476,7 @@ export type GetSellersQueryQuery = {
|
|
|
10465
10476
|
id: string;
|
|
10466
10477
|
url: string;
|
|
10467
10478
|
tag?: string | null;
|
|
10468
|
-
type:
|
|
10479
|
+
type: string;
|
|
10469
10480
|
width?: number | null;
|
|
10470
10481
|
height?: number | null;
|
|
10471
10482
|
}> | null;
|
|
@@ -10570,7 +10581,7 @@ export type GetSellersQueryQuery = {
|
|
|
10570
10581
|
id: string;
|
|
10571
10582
|
url: string;
|
|
10572
10583
|
tag?: string | null;
|
|
10573
|
-
type:
|
|
10584
|
+
type: string;
|
|
10574
10585
|
width?: number | null;
|
|
10575
10586
|
height?: number | null;
|
|
10576
10587
|
}> | null;
|
|
@@ -10698,7 +10709,7 @@ export type GetBuyerByIdQueryQuery = {
|
|
|
10698
10709
|
id: string;
|
|
10699
10710
|
url: string;
|
|
10700
10711
|
tag?: string | null;
|
|
10701
|
-
type:
|
|
10712
|
+
type: string;
|
|
10702
10713
|
width?: number | null;
|
|
10703
10714
|
height?: number | null;
|
|
10704
10715
|
}> | null;
|
|
@@ -10908,7 +10919,7 @@ export type GetBuyersQueryQuery = {
|
|
|
10908
10919
|
id: string;
|
|
10909
10920
|
url: string;
|
|
10910
10921
|
tag?: string | null;
|
|
10911
|
-
type:
|
|
10922
|
+
type: string;
|
|
10912
10923
|
width?: number | null;
|
|
10913
10924
|
height?: number | null;
|
|
10914
10925
|
}> | null;
|
|
@@ -11101,7 +11112,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
11101
11112
|
id: string;
|
|
11102
11113
|
url: string;
|
|
11103
11114
|
tag?: string | null;
|
|
11104
|
-
type:
|
|
11115
|
+
type: string;
|
|
11105
11116
|
width?: number | null;
|
|
11106
11117
|
height?: number | null;
|
|
11107
11118
|
}> | null;
|
|
@@ -11343,7 +11354,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
11343
11354
|
id: string;
|
|
11344
11355
|
url: string;
|
|
11345
11356
|
tag?: string | null;
|
|
11346
|
-
type:
|
|
11357
|
+
type: string;
|
|
11347
11358
|
width?: number | null;
|
|
11348
11359
|
height?: number | null;
|
|
11349
11360
|
}> | null;
|
|
@@ -11424,7 +11435,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
11424
11435
|
id: string;
|
|
11425
11436
|
url: string;
|
|
11426
11437
|
tag?: string | null;
|
|
11427
|
-
type:
|
|
11438
|
+
type: string;
|
|
11428
11439
|
width?: number | null;
|
|
11429
11440
|
height?: number | null;
|
|
11430
11441
|
}> | null;
|
|
@@ -11677,7 +11688,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
11677
11688
|
id: string;
|
|
11678
11689
|
url: string;
|
|
11679
11690
|
tag?: string | null;
|
|
11680
|
-
type:
|
|
11691
|
+
type: string;
|
|
11681
11692
|
width?: number | null;
|
|
11682
11693
|
height?: number | null;
|
|
11683
11694
|
}> | null;
|
|
@@ -11919,7 +11930,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
11919
11930
|
id: string;
|
|
11920
11931
|
url: string;
|
|
11921
11932
|
tag?: string | null;
|
|
11922
|
-
type:
|
|
11933
|
+
type: string;
|
|
11923
11934
|
width?: number | null;
|
|
11924
11935
|
height?: number | null;
|
|
11925
11936
|
}> | null;
|
|
@@ -12000,7 +12011,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
12000
12011
|
id: string;
|
|
12001
12012
|
url: string;
|
|
12002
12013
|
tag?: string | null;
|
|
12003
|
-
type:
|
|
12014
|
+
type: string;
|
|
12004
12015
|
width?: number | null;
|
|
12005
12016
|
height?: number | null;
|
|
12006
12017
|
}> | null;
|
|
@@ -12250,7 +12261,7 @@ export type SellerFieldsFragment = {
|
|
|
12250
12261
|
id: string;
|
|
12251
12262
|
url: string;
|
|
12252
12263
|
tag?: string | null;
|
|
12253
|
-
type:
|
|
12264
|
+
type: string;
|
|
12254
12265
|
width?: number | null;
|
|
12255
12266
|
height?: number | null;
|
|
12256
12267
|
}> | null;
|
|
@@ -12488,7 +12499,7 @@ export type SellerFieldsFragment = {
|
|
|
12488
12499
|
id: string;
|
|
12489
12500
|
url: string;
|
|
12490
12501
|
tag?: string | null;
|
|
12491
|
-
type:
|
|
12502
|
+
type: string;
|
|
12492
12503
|
width?: number | null;
|
|
12493
12504
|
height?: number | null;
|
|
12494
12505
|
}> | null;
|
|
@@ -12569,7 +12580,7 @@ export type SellerFieldsFragment = {
|
|
|
12569
12580
|
id: string;
|
|
12570
12581
|
url: string;
|
|
12571
12582
|
tag?: string | null;
|
|
12572
|
-
type:
|
|
12583
|
+
type: string;
|
|
12573
12584
|
width?: number | null;
|
|
12574
12585
|
height?: number | null;
|
|
12575
12586
|
}> | null;
|
|
@@ -12694,7 +12705,7 @@ export type SellerFieldsFragment = {
|
|
|
12694
12705
|
id: string;
|
|
12695
12706
|
url: string;
|
|
12696
12707
|
tag?: string | null;
|
|
12697
|
-
type:
|
|
12708
|
+
type: string;
|
|
12698
12709
|
width?: number | null;
|
|
12699
12710
|
height?: number | null;
|
|
12700
12711
|
}> | null;
|
|
@@ -12799,7 +12810,7 @@ export type SellerFieldsFragment = {
|
|
|
12799
12810
|
id: string;
|
|
12800
12811
|
url: string;
|
|
12801
12812
|
tag?: string | null;
|
|
12802
|
-
type:
|
|
12813
|
+
type: string;
|
|
12803
12814
|
width?: number | null;
|
|
12804
12815
|
height?: number | null;
|
|
12805
12816
|
}> | null;
|
|
@@ -12823,7 +12834,7 @@ export type SellerMetadataMediaFieldsFragment = {
|
|
|
12823
12834
|
id: string;
|
|
12824
12835
|
url: string;
|
|
12825
12836
|
tag?: string | null;
|
|
12826
|
-
type:
|
|
12837
|
+
type: string;
|
|
12827
12838
|
width?: number | null;
|
|
12828
12839
|
height?: number | null;
|
|
12829
12840
|
};
|
|
@@ -12872,7 +12883,7 @@ export type BaseSellerFieldsFragment = {
|
|
|
12872
12883
|
id: string;
|
|
12873
12884
|
url: string;
|
|
12874
12885
|
tag?: string | null;
|
|
12875
|
-
type:
|
|
12886
|
+
type: string;
|
|
12876
12887
|
width?: number | null;
|
|
12877
12888
|
height?: number | null;
|
|
12878
12889
|
}> | null;
|
|
@@ -12984,7 +12995,7 @@ export type BuyerFieldsFragment = {
|
|
|
12984
12995
|
id: string;
|
|
12985
12996
|
url: string;
|
|
12986
12997
|
tag?: string | null;
|
|
12987
|
-
type:
|
|
12998
|
+
type: string;
|
|
12988
12999
|
width?: number | null;
|
|
12989
13000
|
height?: number | null;
|
|
12990
13001
|
}> | null;
|
|
@@ -13165,7 +13176,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
13165
13176
|
id: string;
|
|
13166
13177
|
url: string;
|
|
13167
13178
|
tag?: string | null;
|
|
13168
|
-
type:
|
|
13179
|
+
type: string;
|
|
13169
13180
|
width?: number | null;
|
|
13170
13181
|
height?: number | null;
|
|
13171
13182
|
}> | null;
|
|
@@ -13403,7 +13414,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
13403
13414
|
id: string;
|
|
13404
13415
|
url: string;
|
|
13405
13416
|
tag?: string | null;
|
|
13406
|
-
type:
|
|
13417
|
+
type: string;
|
|
13407
13418
|
width?: number | null;
|
|
13408
13419
|
height?: number | null;
|
|
13409
13420
|
}> | null;
|
|
@@ -13484,7 +13495,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
13484
13495
|
id: string;
|
|
13485
13496
|
url: string;
|
|
13486
13497
|
tag?: string | null;
|
|
13487
|
-
type:
|
|
13498
|
+
type: string;
|
|
13488
13499
|
width?: number | null;
|
|
13489
13500
|
height?: number | null;
|
|
13490
13501
|
}> | null;
|
|
@@ -13782,7 +13793,7 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
13782
13793
|
id: string;
|
|
13783
13794
|
url: string;
|
|
13784
13795
|
tag?: string | null;
|
|
13785
|
-
type:
|
|
13796
|
+
type: string;
|
|
13786
13797
|
width?: number | null;
|
|
13787
13798
|
height?: number | null;
|
|
13788
13799
|
}> | null;
|
|
@@ -13831,7 +13842,7 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
13831
13842
|
id: string;
|
|
13832
13843
|
url: string;
|
|
13833
13844
|
tag?: string | null;
|
|
13834
|
-
type:
|
|
13845
|
+
type: string;
|
|
13835
13846
|
width?: number | null;
|
|
13836
13847
|
height?: number | null;
|
|
13837
13848
|
}> | null;
|
|
@@ -13947,7 +13958,7 @@ export type GetDisputesQueryQuery = {
|
|
|
13947
13958
|
id: string;
|
|
13948
13959
|
url: string;
|
|
13949
13960
|
tag?: string | null;
|
|
13950
|
-
type:
|
|
13961
|
+
type: string;
|
|
13951
13962
|
width?: number | null;
|
|
13952
13963
|
height?: number | null;
|
|
13953
13964
|
}> | null;
|
|
@@ -13996,7 +14007,7 @@ export type GetDisputesQueryQuery = {
|
|
|
13996
14007
|
id: string;
|
|
13997
14008
|
url: string;
|
|
13998
14009
|
tag?: string | null;
|
|
13999
|
-
type:
|
|
14010
|
+
type: string;
|
|
14000
14011
|
width?: number | null;
|
|
14001
14012
|
height?: number | null;
|
|
14002
14013
|
}> | null;
|
|
@@ -14102,7 +14113,7 @@ export type DisputeFieldsFragment = {
|
|
|
14102
14113
|
id: string;
|
|
14103
14114
|
url: string;
|
|
14104
14115
|
tag?: string | null;
|
|
14105
|
-
type:
|
|
14116
|
+
type: string;
|
|
14106
14117
|
width?: number | null;
|
|
14107
14118
|
height?: number | null;
|
|
14108
14119
|
}> | null;
|
|
@@ -14151,7 +14162,7 @@ export type DisputeFieldsFragment = {
|
|
|
14151
14162
|
id: string;
|
|
14152
14163
|
url: string;
|
|
14153
14164
|
tag?: string | null;
|
|
14154
|
-
type:
|
|
14165
|
+
type: string;
|
|
14155
14166
|
width?: number | null;
|
|
14156
14167
|
height?: number | null;
|
|
14157
14168
|
}> | null;
|
|
@@ -14284,7 +14295,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
14284
14295
|
id: string;
|
|
14285
14296
|
url: string;
|
|
14286
14297
|
tag?: string | null;
|
|
14287
|
-
type:
|
|
14298
|
+
type: string;
|
|
14288
14299
|
width?: number | null;
|
|
14289
14300
|
height?: number | null;
|
|
14290
14301
|
}> | null;
|
|
@@ -14526,7 +14537,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
14526
14537
|
id: string;
|
|
14527
14538
|
url: string;
|
|
14528
14539
|
tag?: string | null;
|
|
14529
|
-
type:
|
|
14540
|
+
type: string;
|
|
14530
14541
|
width?: number | null;
|
|
14531
14542
|
height?: number | null;
|
|
14532
14543
|
}> | null;
|
|
@@ -14607,7 +14618,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
14607
14618
|
id: string;
|
|
14608
14619
|
url: string;
|
|
14609
14620
|
tag?: string | null;
|
|
14610
|
-
type:
|
|
14621
|
+
type: string;
|
|
14611
14622
|
width?: number | null;
|
|
14612
14623
|
height?: number | null;
|
|
14613
14624
|
}> | null;
|
|
@@ -14771,7 +14782,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
14771
14782
|
id: string;
|
|
14772
14783
|
url: string;
|
|
14773
14784
|
tag?: string | null;
|
|
14774
|
-
type:
|
|
14785
|
+
type: string;
|
|
14775
14786
|
width?: number | null;
|
|
14776
14787
|
height?: number | null;
|
|
14777
14788
|
}> | null;
|
|
@@ -15013,7 +15024,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
15013
15024
|
id: string;
|
|
15014
15025
|
url: string;
|
|
15015
15026
|
tag?: string | null;
|
|
15016
|
-
type:
|
|
15027
|
+
type: string;
|
|
15017
15028
|
width?: number | null;
|
|
15018
15029
|
height?: number | null;
|
|
15019
15030
|
}> | null;
|
|
@@ -15094,7 +15105,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
15094
15105
|
id: string;
|
|
15095
15106
|
url: string;
|
|
15096
15107
|
tag?: string | null;
|
|
15097
|
-
type:
|
|
15108
|
+
type: string;
|
|
15098
15109
|
width?: number | null;
|
|
15099
15110
|
height?: number | null;
|
|
15100
15111
|
}> | null;
|
|
@@ -15236,7 +15247,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
15236
15247
|
id: string;
|
|
15237
15248
|
url: string;
|
|
15238
15249
|
tag?: string | null;
|
|
15239
|
-
type:
|
|
15250
|
+
type: string;
|
|
15240
15251
|
width?: number | null;
|
|
15241
15252
|
height?: number | null;
|
|
15242
15253
|
}> | null;
|
|
@@ -15474,7 +15485,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
15474
15485
|
id: string;
|
|
15475
15486
|
url: string;
|
|
15476
15487
|
tag?: string | null;
|
|
15477
|
-
type:
|
|
15488
|
+
type: string;
|
|
15478
15489
|
width?: number | null;
|
|
15479
15490
|
height?: number | null;
|
|
15480
15491
|
}> | null;
|
|
@@ -15555,7 +15566,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
15555
15566
|
id: string;
|
|
15556
15567
|
url: string;
|
|
15557
15568
|
tag?: string | null;
|
|
15558
|
-
type:
|
|
15569
|
+
type: string;
|
|
15559
15570
|
width?: number | null;
|
|
15560
15571
|
height?: number | null;
|
|
15561
15572
|
}> | null;
|
|
@@ -15880,7 +15891,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
15880
15891
|
id: string;
|
|
15881
15892
|
url: string;
|
|
15882
15893
|
tag?: string | null;
|
|
15883
|
-
type:
|
|
15894
|
+
type: string;
|
|
15884
15895
|
width?: number | null;
|
|
15885
15896
|
height?: number | null;
|
|
15886
15897
|
}> | null;
|
|
@@ -16122,7 +16133,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
16122
16133
|
id: string;
|
|
16123
16134
|
url: string;
|
|
16124
16135
|
tag?: string | null;
|
|
16125
|
-
type:
|
|
16136
|
+
type: string;
|
|
16126
16137
|
width?: number | null;
|
|
16127
16138
|
height?: number | null;
|
|
16128
16139
|
}> | null;
|
|
@@ -16203,7 +16214,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
16203
16214
|
id: string;
|
|
16204
16215
|
url: string;
|
|
16205
16216
|
tag?: string | null;
|
|
16206
|
-
type:
|
|
16217
|
+
type: string;
|
|
16207
16218
|
width?: number | null;
|
|
16208
16219
|
height?: number | null;
|
|
16209
16220
|
}> | null;
|
|
@@ -16314,7 +16325,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
16314
16325
|
id: string;
|
|
16315
16326
|
url: string;
|
|
16316
16327
|
tag?: string | null;
|
|
16317
|
-
type:
|
|
16328
|
+
type: string;
|
|
16318
16329
|
width?: number | null;
|
|
16319
16330
|
height?: number | null;
|
|
16320
16331
|
}> | null;
|
|
@@ -16425,7 +16436,7 @@ export type GetExchangesQueryQuery = {
|
|
|
16425
16436
|
id: string;
|
|
16426
16437
|
url: string;
|
|
16427
16438
|
tag?: string | null;
|
|
16428
|
-
type:
|
|
16439
|
+
type: string;
|
|
16429
16440
|
width?: number | null;
|
|
16430
16441
|
height?: number | null;
|
|
16431
16442
|
}> | null;
|
|
@@ -16667,7 +16678,7 @@ export type GetExchangesQueryQuery = {
|
|
|
16667
16678
|
id: string;
|
|
16668
16679
|
url: string;
|
|
16669
16680
|
tag?: string | null;
|
|
16670
|
-
type:
|
|
16681
|
+
type: string;
|
|
16671
16682
|
width?: number | null;
|
|
16672
16683
|
height?: number | null;
|
|
16673
16684
|
}> | null;
|
|
@@ -16748,7 +16759,7 @@ export type GetExchangesQueryQuery = {
|
|
|
16748
16759
|
id: string;
|
|
16749
16760
|
url: string;
|
|
16750
16761
|
tag?: string | null;
|
|
16751
|
-
type:
|
|
16762
|
+
type: string;
|
|
16752
16763
|
width?: number | null;
|
|
16753
16764
|
height?: number | null;
|
|
16754
16765
|
}> | null;
|
|
@@ -16859,7 +16870,7 @@ export type GetExchangesQueryQuery = {
|
|
|
16859
16870
|
id: string;
|
|
16860
16871
|
url: string;
|
|
16861
16872
|
tag?: string | null;
|
|
16862
|
-
type:
|
|
16873
|
+
type: string;
|
|
16863
16874
|
width?: number | null;
|
|
16864
16875
|
height?: number | null;
|
|
16865
16876
|
}> | null;
|
|
@@ -16960,7 +16971,7 @@ export type ExchangeFieldsFragment = {
|
|
|
16960
16971
|
id: string;
|
|
16961
16972
|
url: string;
|
|
16962
16973
|
tag?: string | null;
|
|
16963
|
-
type:
|
|
16974
|
+
type: string;
|
|
16964
16975
|
width?: number | null;
|
|
16965
16976
|
height?: number | null;
|
|
16966
16977
|
}> | null;
|
|
@@ -17198,7 +17209,7 @@ export type ExchangeFieldsFragment = {
|
|
|
17198
17209
|
id: string;
|
|
17199
17210
|
url: string;
|
|
17200
17211
|
tag?: string | null;
|
|
17201
|
-
type:
|
|
17212
|
+
type: string;
|
|
17202
17213
|
width?: number | null;
|
|
17203
17214
|
height?: number | null;
|
|
17204
17215
|
}> | null;
|
|
@@ -17279,7 +17290,7 @@ export type ExchangeFieldsFragment = {
|
|
|
17279
17290
|
id: string;
|
|
17280
17291
|
url: string;
|
|
17281
17292
|
tag?: string | null;
|
|
17282
|
-
type:
|
|
17293
|
+
type: string;
|
|
17283
17294
|
width?: number | null;
|
|
17284
17295
|
height?: number | null;
|
|
17285
17296
|
}> | null;
|
|
@@ -17385,7 +17396,7 @@ export type ExchangeFieldsFragment = {
|
|
|
17385
17396
|
id: string;
|
|
17386
17397
|
url: string;
|
|
17387
17398
|
tag?: string | null;
|
|
17388
|
-
type:
|
|
17399
|
+
type: string;
|
|
17389
17400
|
width?: number | null;
|
|
17390
17401
|
height?: number | null;
|
|
17391
17402
|
}> | null;
|
|
@@ -17465,7 +17476,7 @@ export type BaseExchangeFieldsFragment = {
|
|
|
17465
17476
|
id: string;
|
|
17466
17477
|
url: string;
|
|
17467
17478
|
tag?: string | null;
|
|
17468
|
-
type:
|
|
17479
|
+
type: string;
|
|
17469
17480
|
width?: number | null;
|
|
17470
17481
|
height?: number | null;
|
|
17471
17482
|
}> | null;
|
|
@@ -17675,7 +17686,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17675
17686
|
id: string;
|
|
17676
17687
|
url: string;
|
|
17677
17688
|
tag?: string | null;
|
|
17678
|
-
type:
|
|
17689
|
+
type: string;
|
|
17679
17690
|
width?: number | null;
|
|
17680
17691
|
height?: number | null;
|
|
17681
17692
|
}> | null;
|
|
@@ -17917,7 +17928,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17917
17928
|
id: string;
|
|
17918
17929
|
url: string;
|
|
17919
17930
|
tag?: string | null;
|
|
17920
|
-
type:
|
|
17931
|
+
type: string;
|
|
17921
17932
|
width?: number | null;
|
|
17922
17933
|
height?: number | null;
|
|
17923
17934
|
}> | null;
|
|
@@ -17998,7 +18009,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17998
18009
|
id: string;
|
|
17999
18010
|
url: string;
|
|
18000
18011
|
tag?: string | null;
|
|
18001
|
-
type:
|
|
18012
|
+
type: string;
|
|
18002
18013
|
width?: number | null;
|
|
18003
18014
|
height?: number | null;
|
|
18004
18015
|
}> | null;
|
|
@@ -18088,7 +18099,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
18088
18099
|
id: string;
|
|
18089
18100
|
url: string;
|
|
18090
18101
|
tag?: string | null;
|
|
18091
|
-
type:
|
|
18102
|
+
type: string;
|
|
18092
18103
|
width?: number | null;
|
|
18093
18104
|
height?: number | null;
|
|
18094
18105
|
}> | null;
|
|
@@ -18225,7 +18236,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18225
18236
|
id: string;
|
|
18226
18237
|
url: string;
|
|
18227
18238
|
tag?: string | null;
|
|
18228
|
-
type:
|
|
18239
|
+
type: string;
|
|
18229
18240
|
width?: number | null;
|
|
18230
18241
|
height?: number | null;
|
|
18231
18242
|
}> | null;
|
|
@@ -18467,7 +18478,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18467
18478
|
id: string;
|
|
18468
18479
|
url: string;
|
|
18469
18480
|
tag?: string | null;
|
|
18470
|
-
type:
|
|
18481
|
+
type: string;
|
|
18471
18482
|
width?: number | null;
|
|
18472
18483
|
height?: number | null;
|
|
18473
18484
|
}> | null;
|
|
@@ -18548,7 +18559,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18548
18559
|
id: string;
|
|
18549
18560
|
url: string;
|
|
18550
18561
|
tag?: string | null;
|
|
18551
|
-
type:
|
|
18562
|
+
type: string;
|
|
18552
18563
|
width?: number | null;
|
|
18553
18564
|
height?: number | null;
|
|
18554
18565
|
}> | null;
|
|
@@ -18638,7 +18649,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18638
18649
|
id: string;
|
|
18639
18650
|
url: string;
|
|
18640
18651
|
tag?: string | null;
|
|
18641
|
-
type:
|
|
18652
|
+
type: string;
|
|
18642
18653
|
width?: number | null;
|
|
18643
18654
|
height?: number | null;
|
|
18644
18655
|
}> | null;
|
|
@@ -18765,7 +18776,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
18765
18776
|
id: string;
|
|
18766
18777
|
url: string;
|
|
18767
18778
|
tag?: string | null;
|
|
18768
|
-
type:
|
|
18779
|
+
type: string;
|
|
18769
18780
|
width?: number | null;
|
|
18770
18781
|
height?: number | null;
|
|
18771
18782
|
}> | null;
|
|
@@ -19003,7 +19014,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
19003
19014
|
id: string;
|
|
19004
19015
|
url: string;
|
|
19005
19016
|
tag?: string | null;
|
|
19006
|
-
type:
|
|
19017
|
+
type: string;
|
|
19007
19018
|
width?: number | null;
|
|
19008
19019
|
height?: number | null;
|
|
19009
19020
|
}> | null;
|
|
@@ -19084,7 +19095,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
19084
19095
|
id: string;
|
|
19085
19096
|
url: string;
|
|
19086
19097
|
tag?: string | null;
|
|
19087
|
-
type:
|
|
19098
|
+
type: string;
|
|
19088
19099
|
width?: number | null;
|
|
19089
19100
|
height?: number | null;
|
|
19090
19101
|
}> | null;
|
|
@@ -19174,7 +19185,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
19174
19185
|
id: string;
|
|
19175
19186
|
url: string;
|
|
19176
19187
|
tag?: string | null;
|
|
19177
|
-
type:
|
|
19188
|
+
type: string;
|
|
19178
19189
|
width?: number | null;
|
|
19179
19190
|
height?: number | null;
|
|
19180
19191
|
}> | null;
|
|
@@ -19300,7 +19311,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19300
19311
|
id: string;
|
|
19301
19312
|
url: string;
|
|
19302
19313
|
tag?: string | null;
|
|
19303
|
-
type:
|
|
19314
|
+
type: string;
|
|
19304
19315
|
width?: number | null;
|
|
19305
19316
|
height?: number | null;
|
|
19306
19317
|
}> | null;
|
|
@@ -19538,7 +19549,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19538
19549
|
id: string;
|
|
19539
19550
|
url: string;
|
|
19540
19551
|
tag?: string | null;
|
|
19541
|
-
type:
|
|
19552
|
+
type: string;
|
|
19542
19553
|
width?: number | null;
|
|
19543
19554
|
height?: number | null;
|
|
19544
19555
|
}> | null;
|
|
@@ -19619,7 +19630,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19619
19630
|
id: string;
|
|
19620
19631
|
url: string;
|
|
19621
19632
|
tag?: string | null;
|
|
19622
|
-
type:
|
|
19633
|
+
type: string;
|
|
19623
19634
|
width?: number | null;
|
|
19624
19635
|
height?: number | null;
|
|
19625
19636
|
}> | null;
|
|
@@ -19709,7 +19720,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19709
19720
|
id: string;
|
|
19710
19721
|
url: string;
|
|
19711
19722
|
tag?: string | null;
|
|
19712
|
-
type:
|
|
19723
|
+
type: string;
|
|
19713
19724
|
width?: number | null;
|
|
19714
19725
|
height?: number | null;
|
|
19715
19726
|
}> | null;
|
|
@@ -19898,7 +19909,7 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
19898
19909
|
id: string;
|
|
19899
19910
|
url: string;
|
|
19900
19911
|
tag?: string | null;
|
|
19901
|
-
type:
|
|
19912
|
+
type: string;
|
|
19902
19913
|
width?: number | null;
|
|
19903
19914
|
height?: number | null;
|
|
19904
19915
|
}> | null;
|
|
@@ -20058,7 +20069,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20058
20069
|
id: string;
|
|
20059
20070
|
url: string;
|
|
20060
20071
|
tag?: string | null;
|
|
20061
|
-
type:
|
|
20072
|
+
type: string;
|
|
20062
20073
|
width?: number | null;
|
|
20063
20074
|
height?: number | null;
|
|
20064
20075
|
}> | null;
|
|
@@ -20117,7 +20128,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20117
20128
|
id: string;
|
|
20118
20129
|
url: string;
|
|
20119
20130
|
tag?: string | null;
|
|
20120
|
-
type:
|
|
20131
|
+
type: string;
|
|
20121
20132
|
width?: number | null;
|
|
20122
20133
|
height?: number | null;
|
|
20123
20134
|
}> | null;
|
|
@@ -20359,7 +20370,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20359
20370
|
id: string;
|
|
20360
20371
|
url: string;
|
|
20361
20372
|
tag?: string | null;
|
|
20362
|
-
type:
|
|
20373
|
+
type: string;
|
|
20363
20374
|
width?: number | null;
|
|
20364
20375
|
height?: number | null;
|
|
20365
20376
|
}> | null;
|
|
@@ -20440,7 +20451,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20440
20451
|
id: string;
|
|
20441
20452
|
url: string;
|
|
20442
20453
|
tag?: string | null;
|
|
20443
|
-
type:
|
|
20454
|
+
type: string;
|
|
20444
20455
|
width?: number | null;
|
|
20445
20456
|
height?: number | null;
|
|
20446
20457
|
}> | null;
|
|
@@ -20611,7 +20622,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20611
20622
|
id: string;
|
|
20612
20623
|
url: string;
|
|
20613
20624
|
tag?: string | null;
|
|
20614
|
-
type:
|
|
20625
|
+
type: string;
|
|
20615
20626
|
width?: number | null;
|
|
20616
20627
|
height?: number | null;
|
|
20617
20628
|
}> | null;
|
|
@@ -20771,7 +20782,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20771
20782
|
id: string;
|
|
20772
20783
|
url: string;
|
|
20773
20784
|
tag?: string | null;
|
|
20774
|
-
type:
|
|
20785
|
+
type: string;
|
|
20775
20786
|
width?: number | null;
|
|
20776
20787
|
height?: number | null;
|
|
20777
20788
|
}> | null;
|
|
@@ -20830,7 +20841,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20830
20841
|
id: string;
|
|
20831
20842
|
url: string;
|
|
20832
20843
|
tag?: string | null;
|
|
20833
|
-
type:
|
|
20844
|
+
type: string;
|
|
20834
20845
|
width?: number | null;
|
|
20835
20846
|
height?: number | null;
|
|
20836
20847
|
}> | null;
|
|
@@ -21072,7 +21083,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
21072
21083
|
id: string;
|
|
21073
21084
|
url: string;
|
|
21074
21085
|
tag?: string | null;
|
|
21075
|
-
type:
|
|
21086
|
+
type: string;
|
|
21076
21087
|
width?: number | null;
|
|
21077
21088
|
height?: number | null;
|
|
21078
21089
|
}> | null;
|
|
@@ -21153,7 +21164,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
21153
21164
|
id: string;
|
|
21154
21165
|
url: string;
|
|
21155
21166
|
tag?: string | null;
|
|
21156
|
-
type:
|
|
21167
|
+
type: string;
|
|
21157
21168
|
width?: number | null;
|
|
21158
21169
|
height?: number | null;
|
|
21159
21170
|
}> | null;
|
|
@@ -21324,7 +21335,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
21324
21335
|
id: string;
|
|
21325
21336
|
url: string;
|
|
21326
21337
|
tag?: string | null;
|
|
21327
|
-
type:
|
|
21338
|
+
type: string;
|
|
21328
21339
|
width?: number | null;
|
|
21329
21340
|
height?: number | null;
|
|
21330
21341
|
}> | null;
|
|
@@ -21498,7 +21509,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21498
21509
|
id: string;
|
|
21499
21510
|
url: string;
|
|
21500
21511
|
tag?: string | null;
|
|
21501
|
-
type:
|
|
21512
|
+
type: string;
|
|
21502
21513
|
width?: number | null;
|
|
21503
21514
|
height?: number | null;
|
|
21504
21515
|
}> | null;
|
|
@@ -21557,7 +21568,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21557
21568
|
id: string;
|
|
21558
21569
|
url: string;
|
|
21559
21570
|
tag?: string | null;
|
|
21560
|
-
type:
|
|
21571
|
+
type: string;
|
|
21561
21572
|
width?: number | null;
|
|
21562
21573
|
height?: number | null;
|
|
21563
21574
|
}> | null;
|
|
@@ -21799,7 +21810,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21799
21810
|
id: string;
|
|
21800
21811
|
url: string;
|
|
21801
21812
|
tag?: string | null;
|
|
21802
|
-
type:
|
|
21813
|
+
type: string;
|
|
21803
21814
|
width?: number | null;
|
|
21804
21815
|
height?: number | null;
|
|
21805
21816
|
}> | null;
|
|
@@ -21880,7 +21891,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21880
21891
|
id: string;
|
|
21881
21892
|
url: string;
|
|
21882
21893
|
tag?: string | null;
|
|
21883
|
-
type:
|
|
21894
|
+
type: string;
|
|
21884
21895
|
width?: number | null;
|
|
21885
21896
|
height?: number | null;
|
|
21886
21897
|
}> | null;
|
|
@@ -21970,7 +21981,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21970
21981
|
id: string;
|
|
21971
21982
|
url: string;
|
|
21972
21983
|
tag?: string | null;
|
|
21973
|
-
type:
|
|
21984
|
+
type: string;
|
|
21974
21985
|
width?: number | null;
|
|
21975
21986
|
height?: number | null;
|
|
21976
21987
|
}> | null;
|
|
@@ -22130,7 +22141,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
22130
22141
|
id: string;
|
|
22131
22142
|
url: string;
|
|
22132
22143
|
tag?: string | null;
|
|
22133
|
-
type:
|
|
22144
|
+
type: string;
|
|
22134
22145
|
width?: number | null;
|
|
22135
22146
|
height?: number | null;
|
|
22136
22147
|
}> | null;
|
|
@@ -22211,7 +22222,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
22211
22222
|
id: string;
|
|
22212
22223
|
url: string;
|
|
22213
22224
|
tag?: string | null;
|
|
22214
|
-
type:
|
|
22225
|
+
type: string;
|
|
22215
22226
|
width?: number | null;
|
|
22216
22227
|
height?: number | null;
|
|
22217
22228
|
}> | null;
|
|
@@ -22377,7 +22388,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22377
22388
|
id: string;
|
|
22378
22389
|
url: string;
|
|
22379
22390
|
tag?: string | null;
|
|
22380
|
-
type:
|
|
22391
|
+
type: string;
|
|
22381
22392
|
width?: number | null;
|
|
22382
22393
|
height?: number | null;
|
|
22383
22394
|
}> | null;
|
|
@@ -22436,7 +22447,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22436
22447
|
id: string;
|
|
22437
22448
|
url: string;
|
|
22438
22449
|
tag?: string | null;
|
|
22439
|
-
type:
|
|
22450
|
+
type: string;
|
|
22440
22451
|
width?: number | null;
|
|
22441
22452
|
height?: number | null;
|
|
22442
22453
|
}> | null;
|
|
@@ -22678,7 +22689,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22678
22689
|
id: string;
|
|
22679
22690
|
url: string;
|
|
22680
22691
|
tag?: string | null;
|
|
22681
|
-
type:
|
|
22692
|
+
type: string;
|
|
22682
22693
|
width?: number | null;
|
|
22683
22694
|
height?: number | null;
|
|
22684
22695
|
}> | null;
|
|
@@ -22759,7 +22770,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22759
22770
|
id: string;
|
|
22760
22771
|
url: string;
|
|
22761
22772
|
tag?: string | null;
|
|
22762
|
-
type:
|
|
22773
|
+
type: string;
|
|
22763
22774
|
width?: number | null;
|
|
22764
22775
|
height?: number | null;
|
|
22765
22776
|
}> | null;
|
|
@@ -22849,7 +22860,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22849
22860
|
id: string;
|
|
22850
22861
|
url: string;
|
|
22851
22862
|
tag?: string | null;
|
|
22852
|
-
type:
|
|
22863
|
+
type: string;
|
|
22853
22864
|
width?: number | null;
|
|
22854
22865
|
height?: number | null;
|
|
22855
22866
|
}> | null;
|
|
@@ -23009,7 +23020,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
23009
23020
|
id: string;
|
|
23010
23021
|
url: string;
|
|
23011
23022
|
tag?: string | null;
|
|
23012
|
-
type:
|
|
23023
|
+
type: string;
|
|
23013
23024
|
width?: number | null;
|
|
23014
23025
|
height?: number | null;
|
|
23015
23026
|
}> | null;
|
|
@@ -23090,7 +23101,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
23090
23101
|
id: string;
|
|
23091
23102
|
url: string;
|
|
23092
23103
|
tag?: string | null;
|
|
23093
|
-
type:
|
|
23104
|
+
type: string;
|
|
23094
23105
|
width?: number | null;
|
|
23095
23106
|
height?: number | null;
|
|
23096
23107
|
}> | null;
|
|
@@ -23246,7 +23257,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23246
23257
|
id: string;
|
|
23247
23258
|
url: string;
|
|
23248
23259
|
tag?: string | null;
|
|
23249
|
-
type:
|
|
23260
|
+
type: string;
|
|
23250
23261
|
width?: number | null;
|
|
23251
23262
|
height?: number | null;
|
|
23252
23263
|
}> | null;
|
|
@@ -23305,7 +23316,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23305
23316
|
id: string;
|
|
23306
23317
|
url: string;
|
|
23307
23318
|
tag?: string | null;
|
|
23308
|
-
type:
|
|
23319
|
+
type: string;
|
|
23309
23320
|
width?: number | null;
|
|
23310
23321
|
height?: number | null;
|
|
23311
23322
|
}> | null;
|
|
@@ -23543,7 +23554,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23543
23554
|
id: string;
|
|
23544
23555
|
url: string;
|
|
23545
23556
|
tag?: string | null;
|
|
23546
|
-
type:
|
|
23557
|
+
type: string;
|
|
23547
23558
|
width?: number | null;
|
|
23548
23559
|
height?: number | null;
|
|
23549
23560
|
}> | null;
|
|
@@ -23624,7 +23635,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23624
23635
|
id: string;
|
|
23625
23636
|
url: string;
|
|
23626
23637
|
tag?: string | null;
|
|
23627
|
-
type:
|
|
23638
|
+
type: string;
|
|
23628
23639
|
width?: number | null;
|
|
23629
23640
|
height?: number | null;
|
|
23630
23641
|
}> | null;
|
|
@@ -23714,7 +23725,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23714
23725
|
id: string;
|
|
23715
23726
|
url: string;
|
|
23716
23727
|
tag?: string | null;
|
|
23717
|
-
type:
|
|
23728
|
+
type: string;
|
|
23718
23729
|
width?: number | null;
|
|
23719
23730
|
height?: number | null;
|
|
23720
23731
|
}> | null;
|
|
@@ -23874,7 +23885,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23874
23885
|
id: string;
|
|
23875
23886
|
url: string;
|
|
23876
23887
|
tag?: string | null;
|
|
23877
|
-
type:
|
|
23888
|
+
type: string;
|
|
23878
23889
|
width?: number | null;
|
|
23879
23890
|
height?: number | null;
|
|
23880
23891
|
}> | null;
|
|
@@ -23955,7 +23966,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23955
23966
|
id: string;
|
|
23956
23967
|
url: string;
|
|
23957
23968
|
tag?: string | null;
|
|
23958
|
-
type:
|
|
23969
|
+
type: string;
|
|
23959
23970
|
width?: number | null;
|
|
23960
23971
|
height?: number | null;
|
|
23961
23972
|
}> | null;
|
|
@@ -24110,7 +24121,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24110
24121
|
id: string;
|
|
24111
24122
|
url: string;
|
|
24112
24123
|
tag?: string | null;
|
|
24113
|
-
type:
|
|
24124
|
+
type: string;
|
|
24114
24125
|
width?: number | null;
|
|
24115
24126
|
height?: number | null;
|
|
24116
24127
|
}> | null;
|
|
@@ -24169,7 +24180,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24169
24180
|
id: string;
|
|
24170
24181
|
url: string;
|
|
24171
24182
|
tag?: string | null;
|
|
24172
|
-
type:
|
|
24183
|
+
type: string;
|
|
24173
24184
|
width?: number | null;
|
|
24174
24185
|
height?: number | null;
|
|
24175
24186
|
}> | null;
|
|
@@ -24407,7 +24418,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24407
24418
|
id: string;
|
|
24408
24419
|
url: string;
|
|
24409
24420
|
tag?: string | null;
|
|
24410
|
-
type:
|
|
24421
|
+
type: string;
|
|
24411
24422
|
width?: number | null;
|
|
24412
24423
|
height?: number | null;
|
|
24413
24424
|
}> | null;
|
|
@@ -24488,7 +24499,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24488
24499
|
id: string;
|
|
24489
24500
|
url: string;
|
|
24490
24501
|
tag?: string | null;
|
|
24491
|
-
type:
|
|
24502
|
+
type: string;
|
|
24492
24503
|
width?: number | null;
|
|
24493
24504
|
height?: number | null;
|
|
24494
24505
|
}> | null;
|
|
@@ -24578,7 +24589,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24578
24589
|
id: string;
|
|
24579
24590
|
url: string;
|
|
24580
24591
|
tag?: string | null;
|
|
24581
|
-
type:
|
|
24592
|
+
type: string;
|
|
24582
24593
|
width?: number | null;
|
|
24583
24594
|
height?: number | null;
|
|
24584
24595
|
}> | null;
|
|
@@ -24738,7 +24749,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24738
24749
|
id: string;
|
|
24739
24750
|
url: string;
|
|
24740
24751
|
tag?: string | null;
|
|
24741
|
-
type:
|
|
24752
|
+
type: string;
|
|
24742
24753
|
width?: number | null;
|
|
24743
24754
|
height?: number | null;
|
|
24744
24755
|
}> | null;
|
|
@@ -24819,7 +24830,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24819
24830
|
id: string;
|
|
24820
24831
|
url: string;
|
|
24821
24832
|
tag?: string | null;
|
|
24822
|
-
type:
|
|
24833
|
+
type: string;
|
|
24823
24834
|
width?: number | null;
|
|
24824
24835
|
height?: number | null;
|
|
24825
24836
|
}> | null;
|
|
@@ -24992,7 +25003,7 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
24992
25003
|
id: string;
|
|
24993
25004
|
url: string;
|
|
24994
25005
|
tag?: string | null;
|
|
24995
|
-
type:
|
|
25006
|
+
type: string;
|
|
24996
25007
|
width?: number | null;
|
|
24997
25008
|
height?: number | null;
|
|
24998
25009
|
}> | null;
|
|
@@ -25141,7 +25152,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25141
25152
|
id: string;
|
|
25142
25153
|
url: string;
|
|
25143
25154
|
tag?: string | null;
|
|
25144
|
-
type:
|
|
25155
|
+
type: string;
|
|
25145
25156
|
width?: number | null;
|
|
25146
25157
|
height?: number | null;
|
|
25147
25158
|
}> | null;
|
|
@@ -25200,7 +25211,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25200
25211
|
id: string;
|
|
25201
25212
|
url: string;
|
|
25202
25213
|
tag?: string | null;
|
|
25203
|
-
type:
|
|
25214
|
+
type: string;
|
|
25204
25215
|
width?: number | null;
|
|
25205
25216
|
height?: number | null;
|
|
25206
25217
|
}> | null;
|
|
@@ -25442,7 +25453,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25442
25453
|
id: string;
|
|
25443
25454
|
url: string;
|
|
25444
25455
|
tag?: string | null;
|
|
25445
|
-
type:
|
|
25456
|
+
type: string;
|
|
25446
25457
|
width?: number | null;
|
|
25447
25458
|
height?: number | null;
|
|
25448
25459
|
}> | null;
|
|
@@ -25523,7 +25534,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25523
25534
|
id: string;
|
|
25524
25535
|
url: string;
|
|
25525
25536
|
tag?: string | null;
|
|
25526
|
-
type:
|
|
25537
|
+
type: string;
|
|
25527
25538
|
width?: number | null;
|
|
25528
25539
|
height?: number | null;
|
|
25529
25540
|
}> | null;
|
|
@@ -25694,7 +25705,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25694
25705
|
id: string;
|
|
25695
25706
|
url: string;
|
|
25696
25707
|
tag?: string | null;
|
|
25697
|
-
type:
|
|
25708
|
+
type: string;
|
|
25698
25709
|
width?: number | null;
|
|
25699
25710
|
height?: number | null;
|
|
25700
25711
|
}> | null;
|
|
@@ -25843,7 +25854,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25843
25854
|
id: string;
|
|
25844
25855
|
url: string;
|
|
25845
25856
|
tag?: string | null;
|
|
25846
|
-
type:
|
|
25857
|
+
type: string;
|
|
25847
25858
|
width?: number | null;
|
|
25848
25859
|
height?: number | null;
|
|
25849
25860
|
}> | null;
|
|
@@ -25902,7 +25913,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25902
25913
|
id: string;
|
|
25903
25914
|
url: string;
|
|
25904
25915
|
tag?: string | null;
|
|
25905
|
-
type:
|
|
25916
|
+
type: string;
|
|
25906
25917
|
width?: number | null;
|
|
25907
25918
|
height?: number | null;
|
|
25908
25919
|
}> | null;
|
|
@@ -26144,7 +26155,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
26144
26155
|
id: string;
|
|
26145
26156
|
url: string;
|
|
26146
26157
|
tag?: string | null;
|
|
26147
|
-
type:
|
|
26158
|
+
type: string;
|
|
26148
26159
|
width?: number | null;
|
|
26149
26160
|
height?: number | null;
|
|
26150
26161
|
}> | null;
|
|
@@ -26225,7 +26236,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
26225
26236
|
id: string;
|
|
26226
26237
|
url: string;
|
|
26227
26238
|
tag?: string | null;
|
|
26228
|
-
type:
|
|
26239
|
+
type: string;
|
|
26229
26240
|
width?: number | null;
|
|
26230
26241
|
height?: number | null;
|
|
26231
26242
|
}> | null;
|
|
@@ -26396,7 +26407,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
26396
26407
|
id: string;
|
|
26397
26408
|
url: string;
|
|
26398
26409
|
tag?: string | null;
|
|
26399
|
-
type:
|
|
26410
|
+
type: string;
|
|
26400
26411
|
width?: number | null;
|
|
26401
26412
|
height?: number | null;
|
|
26402
26413
|
}> | null;
|
|
@@ -26519,7 +26530,7 @@ export type BaseProductV1SellerFieldsFragment = {
|
|
|
26519
26530
|
id: string;
|
|
26520
26531
|
url: string;
|
|
26521
26532
|
tag?: string | null;
|
|
26522
|
-
type:
|
|
26533
|
+
type: string;
|
|
26523
26534
|
width?: number | null;
|
|
26524
26535
|
height?: number | null;
|
|
26525
26536
|
}> | null;
|
|
@@ -26724,7 +26735,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
26724
26735
|
id: string;
|
|
26725
26736
|
url: string;
|
|
26726
26737
|
tag?: string | null;
|
|
26727
|
-
type:
|
|
26738
|
+
type: string;
|
|
26728
26739
|
width?: number | null;
|
|
26729
26740
|
height?: number | null;
|
|
26730
26741
|
}> | null;
|
|
@@ -26783,7 +26794,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
26783
26794
|
id: string;
|
|
26784
26795
|
url: string;
|
|
26785
26796
|
tag?: string | null;
|
|
26786
|
-
type:
|
|
26797
|
+
type: string;
|
|
26787
26798
|
width?: number | null;
|
|
26788
26799
|
height?: number | null;
|
|
26789
26800
|
}> | null;
|
|
@@ -27021,7 +27032,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
27021
27032
|
id: string;
|
|
27022
27033
|
url: string;
|
|
27023
27034
|
tag?: string | null;
|
|
27024
|
-
type:
|
|
27035
|
+
type: string;
|
|
27025
27036
|
width?: number | null;
|
|
27026
27037
|
height?: number | null;
|
|
27027
27038
|
}> | null;
|
|
@@ -27102,7 +27113,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
27102
27113
|
id: string;
|
|
27103
27114
|
url: string;
|
|
27104
27115
|
tag?: string | null;
|
|
27105
|
-
type:
|
|
27116
|
+
type: string;
|
|
27106
27117
|
width?: number | null;
|
|
27107
27118
|
height?: number | null;
|
|
27108
27119
|
}> | null;
|
|
@@ -27271,7 +27282,7 @@ export type GetOffersQueryQuery = {
|
|
|
27271
27282
|
id: string;
|
|
27272
27283
|
url: string;
|
|
27273
27284
|
tag?: string | null;
|
|
27274
|
-
type:
|
|
27285
|
+
type: string;
|
|
27275
27286
|
width?: number | null;
|
|
27276
27287
|
height?: number | null;
|
|
27277
27288
|
}> | null;
|
|
@@ -27330,7 +27341,7 @@ export type GetOffersQueryQuery = {
|
|
|
27330
27341
|
id: string;
|
|
27331
27342
|
url: string;
|
|
27332
27343
|
tag?: string | null;
|
|
27333
|
-
type:
|
|
27344
|
+
type: string;
|
|
27334
27345
|
width?: number | null;
|
|
27335
27346
|
height?: number | null;
|
|
27336
27347
|
}> | null;
|
|
@@ -27568,7 +27579,7 @@ export type GetOffersQueryQuery = {
|
|
|
27568
27579
|
id: string;
|
|
27569
27580
|
url: string;
|
|
27570
27581
|
tag?: string | null;
|
|
27571
|
-
type:
|
|
27582
|
+
type: string;
|
|
27572
27583
|
width?: number | null;
|
|
27573
27584
|
height?: number | null;
|
|
27574
27585
|
}> | null;
|
|
@@ -27649,7 +27660,7 @@ export type GetOffersQueryQuery = {
|
|
|
27649
27660
|
id: string;
|
|
27650
27661
|
url: string;
|
|
27651
27662
|
tag?: string | null;
|
|
27652
|
-
type:
|
|
27663
|
+
type: string;
|
|
27653
27664
|
width?: number | null;
|
|
27654
27665
|
height?: number | null;
|
|
27655
27666
|
}> | null;
|
|
@@ -27802,7 +27813,7 @@ export type OfferFieldsFragment = {
|
|
|
27802
27813
|
id: string;
|
|
27803
27814
|
url: string;
|
|
27804
27815
|
tag?: string | null;
|
|
27805
|
-
type:
|
|
27816
|
+
type: string;
|
|
27806
27817
|
width?: number | null;
|
|
27807
27818
|
height?: number | null;
|
|
27808
27819
|
}> | null;
|
|
@@ -27861,7 +27872,7 @@ export type OfferFieldsFragment = {
|
|
|
27861
27872
|
id: string;
|
|
27862
27873
|
url: string;
|
|
27863
27874
|
tag?: string | null;
|
|
27864
|
-
type:
|
|
27875
|
+
type: string;
|
|
27865
27876
|
width?: number | null;
|
|
27866
27877
|
height?: number | null;
|
|
27867
27878
|
}> | null;
|
|
@@ -28099,7 +28110,7 @@ export type OfferFieldsFragment = {
|
|
|
28099
28110
|
id: string;
|
|
28100
28111
|
url: string;
|
|
28101
28112
|
tag?: string | null;
|
|
28102
|
-
type:
|
|
28113
|
+
type: string;
|
|
28103
28114
|
width?: number | null;
|
|
28104
28115
|
height?: number | null;
|
|
28105
28116
|
}> | null;
|
|
@@ -28180,7 +28191,7 @@ export type OfferFieldsFragment = {
|
|
|
28180
28191
|
id: string;
|
|
28181
28192
|
url: string;
|
|
28182
28193
|
tag?: string | null;
|
|
28183
|
-
type:
|
|
28194
|
+
type: string;
|
|
28184
28195
|
width?: number | null;
|
|
28185
28196
|
height?: number | null;
|
|
28186
28197
|
}> | null;
|
|
@@ -28307,7 +28318,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
28307
28318
|
id: string;
|
|
28308
28319
|
url: string;
|
|
28309
28320
|
tag?: string | null;
|
|
28310
|
-
type:
|
|
28321
|
+
type: string;
|
|
28311
28322
|
width?: number | null;
|
|
28312
28323
|
height?: number | null;
|
|
28313
28324
|
}> | null;
|
|
@@ -28545,7 +28556,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
28545
28556
|
id: string;
|
|
28546
28557
|
url: string;
|
|
28547
28558
|
tag?: string | null;
|
|
28548
|
-
type:
|
|
28559
|
+
type: string;
|
|
28549
28560
|
width?: number | null;
|
|
28550
28561
|
height?: number | null;
|
|
28551
28562
|
}> | null;
|
|
@@ -28626,7 +28637,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
28626
28637
|
id: string;
|
|
28627
28638
|
url: string;
|
|
28628
28639
|
tag?: string | null;
|
|
28629
|
-
type:
|
|
28640
|
+
type: string;
|
|
28630
28641
|
width?: number | null;
|
|
28631
28642
|
height?: number | null;
|
|
28632
28643
|
}> | null;
|