@bosonprotocol/core-sdk 1.25.0-alpha.31 → 1.25.0-alpha.33
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 -0
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +2 -0
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +160 -0
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +2 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/accounts/queries.graphql +1 -0
- package/src/subgraph.ts +161 -0
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -7249,6 +7249,7 @@ export declare type SellerMetadata = {
|
|
|
7249
7249
|
description: Scalars["String"];
|
|
7250
7250
|
id: Scalars["ID"];
|
|
7251
7251
|
images?: Maybe<Array<SellerMetadataMedia>>;
|
|
7252
|
+
kind: Scalars["String"];
|
|
7252
7253
|
legalTradingName: Scalars["String"];
|
|
7253
7254
|
name: Scalars["String"];
|
|
7254
7255
|
socialLinks?: Maybe<Array<SellerSocialLink>>;
|
|
@@ -7441,6 +7442,26 @@ export declare type SellerMetadata_Filter = {
|
|
|
7441
7442
|
images_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
7442
7443
|
images_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
7443
7444
|
images_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
7445
|
+
kind?: InputMaybe<Scalars["String"]>;
|
|
7446
|
+
kind_contains?: InputMaybe<Scalars["String"]>;
|
|
7447
|
+
kind_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7448
|
+
kind_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7449
|
+
kind_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7450
|
+
kind_gt?: InputMaybe<Scalars["String"]>;
|
|
7451
|
+
kind_gte?: InputMaybe<Scalars["String"]>;
|
|
7452
|
+
kind_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7453
|
+
kind_lt?: InputMaybe<Scalars["String"]>;
|
|
7454
|
+
kind_lte?: InputMaybe<Scalars["String"]>;
|
|
7455
|
+
kind_not?: InputMaybe<Scalars["String"]>;
|
|
7456
|
+
kind_not_contains?: InputMaybe<Scalars["String"]>;
|
|
7457
|
+
kind_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7458
|
+
kind_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7459
|
+
kind_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7460
|
+
kind_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7461
|
+
kind_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7462
|
+
kind_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7463
|
+
kind_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7464
|
+
kind_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7444
7465
|
legalTradingName?: InputMaybe<Scalars["String"]>;
|
|
7445
7466
|
legalTradingName_contains?: InputMaybe<Scalars["String"]>;
|
|
7446
7467
|
legalTradingName_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -7520,6 +7541,7 @@ export declare enum SellerMetadata_OrderBy {
|
|
|
7520
7541
|
Description = "description",
|
|
7521
7542
|
Id = "id",
|
|
7522
7543
|
Images = "images",
|
|
7544
|
+
Kind = "kind",
|
|
7523
7545
|
LegalTradingName = "legalTradingName",
|
|
7524
7546
|
Name = "name",
|
|
7525
7547
|
SocialLinks = "socialLinks",
|
|
@@ -8615,6 +8637,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8615
8637
|
description: string;
|
|
8616
8638
|
legalTradingName: string;
|
|
8617
8639
|
type: SellerMetadataType;
|
|
8640
|
+
kind: string;
|
|
8618
8641
|
website: string;
|
|
8619
8642
|
contactPreference: string;
|
|
8620
8643
|
images?: Array<{
|
|
@@ -8854,6 +8877,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8854
8877
|
description: string;
|
|
8855
8878
|
legalTradingName: string;
|
|
8856
8879
|
type: SellerMetadataType;
|
|
8880
|
+
kind: string;
|
|
8857
8881
|
website: string;
|
|
8858
8882
|
contactPreference: string;
|
|
8859
8883
|
images?: Array<{
|
|
@@ -8934,6 +8958,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8934
8958
|
description: string;
|
|
8935
8959
|
legalTradingName: string;
|
|
8936
8960
|
type: SellerMetadataType;
|
|
8961
|
+
kind: string;
|
|
8937
8962
|
website: string;
|
|
8938
8963
|
contactPreference: string;
|
|
8939
8964
|
images?: Array<{
|
|
@@ -9057,6 +9082,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
9057
9082
|
description: string;
|
|
9058
9083
|
legalTradingName: string;
|
|
9059
9084
|
type: SellerMetadataType;
|
|
9085
|
+
kind: string;
|
|
9060
9086
|
website: string;
|
|
9061
9087
|
contactPreference: string;
|
|
9062
9088
|
images?: Array<{
|
|
@@ -9197,6 +9223,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
9197
9223
|
description: string;
|
|
9198
9224
|
legalTradingName: string;
|
|
9199
9225
|
type: SellerMetadataType;
|
|
9226
|
+
kind: string;
|
|
9200
9227
|
website: string;
|
|
9201
9228
|
contactPreference: string;
|
|
9202
9229
|
images?: Array<{
|
|
@@ -9350,6 +9377,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
9350
9377
|
description: string;
|
|
9351
9378
|
legalTradingName: string;
|
|
9352
9379
|
type: SellerMetadataType;
|
|
9380
|
+
kind: string;
|
|
9353
9381
|
website: string;
|
|
9354
9382
|
contactPreference: string;
|
|
9355
9383
|
images?: Array<{
|
|
@@ -9589,6 +9617,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
9589
9617
|
description: string;
|
|
9590
9618
|
legalTradingName: string;
|
|
9591
9619
|
type: SellerMetadataType;
|
|
9620
|
+
kind: string;
|
|
9592
9621
|
website: string;
|
|
9593
9622
|
contactPreference: string;
|
|
9594
9623
|
images?: Array<{
|
|
@@ -9669,6 +9698,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
9669
9698
|
description: string;
|
|
9670
9699
|
legalTradingName: string;
|
|
9671
9700
|
type: SellerMetadataType;
|
|
9701
|
+
kind: string;
|
|
9672
9702
|
website: string;
|
|
9673
9703
|
contactPreference: string;
|
|
9674
9704
|
images?: Array<{
|
|
@@ -9792,6 +9822,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
9792
9822
|
description: string;
|
|
9793
9823
|
legalTradingName: string;
|
|
9794
9824
|
type: SellerMetadataType;
|
|
9825
|
+
kind: string;
|
|
9795
9826
|
website: string;
|
|
9796
9827
|
contactPreference: string;
|
|
9797
9828
|
images?: Array<{
|
|
@@ -9932,6 +9963,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
9932
9963
|
description: string;
|
|
9933
9964
|
legalTradingName: string;
|
|
9934
9965
|
type: SellerMetadataType;
|
|
9966
|
+
kind: string;
|
|
9935
9967
|
website: string;
|
|
9936
9968
|
contactPreference: string;
|
|
9937
9969
|
images?: Array<{
|
|
@@ -10057,6 +10089,7 @@ export declare type GetBuyerByIdQueryQuery = {
|
|
|
10057
10089
|
description: string;
|
|
10058
10090
|
legalTradingName: string;
|
|
10059
10091
|
type: SellerMetadataType;
|
|
10092
|
+
kind: string;
|
|
10060
10093
|
website: string;
|
|
10061
10094
|
contactPreference: string;
|
|
10062
10095
|
images?: Array<{
|
|
@@ -10300,6 +10333,7 @@ export declare type GetBuyersQueryQuery = {
|
|
|
10300
10333
|
description: string;
|
|
10301
10334
|
legalTradingName: string;
|
|
10302
10335
|
type: SellerMetadataType;
|
|
10336
|
+
kind: string;
|
|
10303
10337
|
website: string;
|
|
10304
10338
|
contactPreference: string;
|
|
10305
10339
|
images?: Array<{
|
|
@@ -10526,6 +10560,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
10526
10560
|
description: string;
|
|
10527
10561
|
legalTradingName: string;
|
|
10528
10562
|
type: SellerMetadataType;
|
|
10563
|
+
kind: string;
|
|
10529
10564
|
website: string;
|
|
10530
10565
|
contactPreference: string;
|
|
10531
10566
|
images?: Array<{
|
|
@@ -10765,6 +10800,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
10765
10800
|
description: string;
|
|
10766
10801
|
legalTradingName: string;
|
|
10767
10802
|
type: SellerMetadataType;
|
|
10803
|
+
kind: string;
|
|
10768
10804
|
website: string;
|
|
10769
10805
|
contactPreference: string;
|
|
10770
10806
|
images?: Array<{
|
|
@@ -10845,6 +10881,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
10845
10881
|
description: string;
|
|
10846
10882
|
legalTradingName: string;
|
|
10847
10883
|
type: SellerMetadataType;
|
|
10884
|
+
kind: string;
|
|
10848
10885
|
website: string;
|
|
10849
10886
|
contactPreference: string;
|
|
10850
10887
|
images?: Array<{
|
|
@@ -11130,6 +11167,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
11130
11167
|
description: string;
|
|
11131
11168
|
legalTradingName: string;
|
|
11132
11169
|
type: SellerMetadataType;
|
|
11170
|
+
kind: string;
|
|
11133
11171
|
website: string;
|
|
11134
11172
|
contactPreference: string;
|
|
11135
11173
|
images?: Array<{
|
|
@@ -11369,6 +11407,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
11369
11407
|
description: string;
|
|
11370
11408
|
legalTradingName: string;
|
|
11371
11409
|
type: SellerMetadataType;
|
|
11410
|
+
kind: string;
|
|
11372
11411
|
website: string;
|
|
11373
11412
|
contactPreference: string;
|
|
11374
11413
|
images?: Array<{
|
|
@@ -11449,6 +11488,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
11449
11488
|
description: string;
|
|
11450
11489
|
legalTradingName: string;
|
|
11451
11490
|
type: SellerMetadataType;
|
|
11491
|
+
kind: string;
|
|
11452
11492
|
website: string;
|
|
11453
11493
|
contactPreference: string;
|
|
11454
11494
|
images?: Array<{
|
|
@@ -11732,6 +11772,7 @@ export declare type SellerFieldsFragment = {
|
|
|
11732
11772
|
description: string;
|
|
11733
11773
|
legalTradingName: string;
|
|
11734
11774
|
type: SellerMetadataType;
|
|
11775
|
+
kind: string;
|
|
11735
11776
|
website: string;
|
|
11736
11777
|
contactPreference: string;
|
|
11737
11778
|
images?: Array<{
|
|
@@ -11971,6 +12012,7 @@ export declare type SellerFieldsFragment = {
|
|
|
11971
12012
|
description: string;
|
|
11972
12013
|
legalTradingName: string;
|
|
11973
12014
|
type: SellerMetadataType;
|
|
12015
|
+
kind: string;
|
|
11974
12016
|
website: string;
|
|
11975
12017
|
contactPreference: string;
|
|
11976
12018
|
images?: Array<{
|
|
@@ -12051,6 +12093,7 @@ export declare type SellerFieldsFragment = {
|
|
|
12051
12093
|
description: string;
|
|
12052
12094
|
legalTradingName: string;
|
|
12053
12095
|
type: SellerMetadataType;
|
|
12096
|
+
kind: string;
|
|
12054
12097
|
website: string;
|
|
12055
12098
|
contactPreference: string;
|
|
12056
12099
|
images?: Array<{
|
|
@@ -12174,6 +12217,7 @@ export declare type SellerFieldsFragment = {
|
|
|
12174
12217
|
description: string;
|
|
12175
12218
|
legalTradingName: string;
|
|
12176
12219
|
type: SellerMetadataType;
|
|
12220
|
+
kind: string;
|
|
12177
12221
|
website: string;
|
|
12178
12222
|
contactPreference: string;
|
|
12179
12223
|
images?: Array<{
|
|
@@ -12314,6 +12358,7 @@ export declare type SellerFieldsFragment = {
|
|
|
12314
12358
|
description: string;
|
|
12315
12359
|
legalTradingName: string;
|
|
12316
12360
|
type: SellerMetadataType;
|
|
12361
|
+
kind: string;
|
|
12317
12362
|
website: string;
|
|
12318
12363
|
contactPreference: string;
|
|
12319
12364
|
images?: Array<{
|
|
@@ -12382,6 +12427,7 @@ export declare type BaseSellerFieldsFragment = {
|
|
|
12382
12427
|
description: string;
|
|
12383
12428
|
legalTradingName: string;
|
|
12384
12429
|
type: SellerMetadataType;
|
|
12430
|
+
kind: string;
|
|
12385
12431
|
website: string;
|
|
12386
12432
|
contactPreference: string;
|
|
12387
12433
|
images?: Array<{
|
|
@@ -12491,6 +12537,7 @@ export declare type BuyerFieldsFragment = {
|
|
|
12491
12537
|
description: string;
|
|
12492
12538
|
legalTradingName: string;
|
|
12493
12539
|
type: SellerMetadataType;
|
|
12540
|
+
kind: string;
|
|
12494
12541
|
website: string;
|
|
12495
12542
|
contactPreference: string;
|
|
12496
12543
|
images?: Array<{
|
|
@@ -12705,6 +12752,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
12705
12752
|
description: string;
|
|
12706
12753
|
legalTradingName: string;
|
|
12707
12754
|
type: SellerMetadataType;
|
|
12755
|
+
kind: string;
|
|
12708
12756
|
website: string;
|
|
12709
12757
|
contactPreference: string;
|
|
12710
12758
|
images?: Array<{
|
|
@@ -12944,6 +12992,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
12944
12992
|
description: string;
|
|
12945
12993
|
legalTradingName: string;
|
|
12946
12994
|
type: SellerMetadataType;
|
|
12995
|
+
kind: string;
|
|
12947
12996
|
website: string;
|
|
12948
12997
|
contactPreference: string;
|
|
12949
12998
|
images?: Array<{
|
|
@@ -13024,6 +13073,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
13024
13073
|
description: string;
|
|
13025
13074
|
legalTradingName: string;
|
|
13026
13075
|
type: SellerMetadataType;
|
|
13076
|
+
kind: string;
|
|
13027
13077
|
website: string;
|
|
13028
13078
|
contactPreference: string;
|
|
13029
13079
|
images?: Array<{
|
|
@@ -13350,6 +13400,7 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
13350
13400
|
description: string;
|
|
13351
13401
|
legalTradingName: string;
|
|
13352
13402
|
type: SellerMetadataType;
|
|
13403
|
+
kind: string;
|
|
13353
13404
|
website: string;
|
|
13354
13405
|
contactPreference: string;
|
|
13355
13406
|
images?: Array<{
|
|
@@ -13398,6 +13449,7 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
13398
13449
|
description: string;
|
|
13399
13450
|
legalTradingName: string;
|
|
13400
13451
|
type: SellerMetadataType;
|
|
13452
|
+
kind: string;
|
|
13401
13453
|
website: string;
|
|
13402
13454
|
contactPreference: string;
|
|
13403
13455
|
images?: Array<{
|
|
@@ -13511,6 +13563,7 @@ export declare type GetDisputesQueryQuery = {
|
|
|
13511
13563
|
description: string;
|
|
13512
13564
|
legalTradingName: string;
|
|
13513
13565
|
type: SellerMetadataType;
|
|
13566
|
+
kind: string;
|
|
13514
13567
|
website: string;
|
|
13515
13568
|
contactPreference: string;
|
|
13516
13569
|
images?: Array<{
|
|
@@ -13559,6 +13612,7 @@ export declare type GetDisputesQueryQuery = {
|
|
|
13559
13612
|
description: string;
|
|
13560
13613
|
legalTradingName: string;
|
|
13561
13614
|
type: SellerMetadataType;
|
|
13615
|
+
kind: string;
|
|
13562
13616
|
website: string;
|
|
13563
13617
|
contactPreference: string;
|
|
13564
13618
|
images?: Array<{
|
|
@@ -13663,6 +13717,7 @@ export declare type DisputeFieldsFragment = {
|
|
|
13663
13717
|
description: string;
|
|
13664
13718
|
legalTradingName: string;
|
|
13665
13719
|
type: SellerMetadataType;
|
|
13720
|
+
kind: string;
|
|
13666
13721
|
website: string;
|
|
13667
13722
|
contactPreference: string;
|
|
13668
13723
|
images?: Array<{
|
|
@@ -13711,6 +13766,7 @@ export declare type DisputeFieldsFragment = {
|
|
|
13711
13766
|
description: string;
|
|
13712
13767
|
legalTradingName: string;
|
|
13713
13768
|
type: SellerMetadataType;
|
|
13769
|
+
kind: string;
|
|
13714
13770
|
website: string;
|
|
13715
13771
|
contactPreference: string;
|
|
13716
13772
|
images?: Array<{
|
|
@@ -13845,6 +13901,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
13845
13901
|
description: string;
|
|
13846
13902
|
legalTradingName: string;
|
|
13847
13903
|
type: SellerMetadataType;
|
|
13904
|
+
kind: string;
|
|
13848
13905
|
website: string;
|
|
13849
13906
|
contactPreference: string;
|
|
13850
13907
|
images?: Array<{
|
|
@@ -14084,6 +14141,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
14084
14141
|
description: string;
|
|
14085
14142
|
legalTradingName: string;
|
|
14086
14143
|
type: SellerMetadataType;
|
|
14144
|
+
kind: string;
|
|
14087
14145
|
website: string;
|
|
14088
14146
|
contactPreference: string;
|
|
14089
14147
|
images?: Array<{
|
|
@@ -14164,6 +14222,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
14164
14222
|
description: string;
|
|
14165
14223
|
legalTradingName: string;
|
|
14166
14224
|
type: SellerMetadataType;
|
|
14225
|
+
kind: string;
|
|
14167
14226
|
website: string;
|
|
14168
14227
|
contactPreference: string;
|
|
14169
14228
|
images?: Array<{
|
|
@@ -14324,6 +14383,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
14324
14383
|
description: string;
|
|
14325
14384
|
legalTradingName: string;
|
|
14326
14385
|
type: SellerMetadataType;
|
|
14386
|
+
kind: string;
|
|
14327
14387
|
website: string;
|
|
14328
14388
|
contactPreference: string;
|
|
14329
14389
|
images?: Array<{
|
|
@@ -14563,6 +14623,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
14563
14623
|
description: string;
|
|
14564
14624
|
legalTradingName: string;
|
|
14565
14625
|
type: SellerMetadataType;
|
|
14626
|
+
kind: string;
|
|
14566
14627
|
website: string;
|
|
14567
14628
|
contactPreference: string;
|
|
14568
14629
|
images?: Array<{
|
|
@@ -14643,6 +14704,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
14643
14704
|
description: string;
|
|
14644
14705
|
legalTradingName: string;
|
|
14645
14706
|
type: SellerMetadataType;
|
|
14707
|
+
kind: string;
|
|
14646
14708
|
website: string;
|
|
14647
14709
|
contactPreference: string;
|
|
14648
14710
|
images?: Array<{
|
|
@@ -14782,6 +14844,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
14782
14844
|
description: string;
|
|
14783
14845
|
legalTradingName: string;
|
|
14784
14846
|
type: SellerMetadataType;
|
|
14847
|
+
kind: string;
|
|
14785
14848
|
website: string;
|
|
14786
14849
|
contactPreference: string;
|
|
14787
14850
|
images?: Array<{
|
|
@@ -15021,6 +15084,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
15021
15084
|
description: string;
|
|
15022
15085
|
legalTradingName: string;
|
|
15023
15086
|
type: SellerMetadataType;
|
|
15087
|
+
kind: string;
|
|
15024
15088
|
website: string;
|
|
15025
15089
|
contactPreference: string;
|
|
15026
15090
|
images?: Array<{
|
|
@@ -15101,6 +15165,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
15101
15165
|
description: string;
|
|
15102
15166
|
legalTradingName: string;
|
|
15103
15167
|
type: SellerMetadataType;
|
|
15168
|
+
kind: string;
|
|
15104
15169
|
website: string;
|
|
15105
15170
|
contactPreference: string;
|
|
15106
15171
|
images?: Array<{
|
|
@@ -15486,6 +15551,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
15486
15551
|
description: string;
|
|
15487
15552
|
legalTradingName: string;
|
|
15488
15553
|
type: SellerMetadataType;
|
|
15554
|
+
kind: string;
|
|
15489
15555
|
website: string;
|
|
15490
15556
|
contactPreference: string;
|
|
15491
15557
|
images?: Array<{
|
|
@@ -15725,6 +15791,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
15725
15791
|
description: string;
|
|
15726
15792
|
legalTradingName: string;
|
|
15727
15793
|
type: SellerMetadataType;
|
|
15794
|
+
kind: string;
|
|
15728
15795
|
website: string;
|
|
15729
15796
|
contactPreference: string;
|
|
15730
15797
|
images?: Array<{
|
|
@@ -15805,6 +15872,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
15805
15872
|
description: string;
|
|
15806
15873
|
legalTradingName: string;
|
|
15807
15874
|
type: SellerMetadataType;
|
|
15875
|
+
kind: string;
|
|
15808
15876
|
website: string;
|
|
15809
15877
|
contactPreference: string;
|
|
15810
15878
|
images?: Array<{
|
|
@@ -15914,6 +15982,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
15914
15982
|
description: string;
|
|
15915
15983
|
legalTradingName: string;
|
|
15916
15984
|
type: SellerMetadataType;
|
|
15985
|
+
kind: string;
|
|
15917
15986
|
website: string;
|
|
15918
15987
|
contactPreference: string;
|
|
15919
15988
|
images?: Array<{
|
|
@@ -16022,6 +16091,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
16022
16091
|
description: string;
|
|
16023
16092
|
legalTradingName: string;
|
|
16024
16093
|
type: SellerMetadataType;
|
|
16094
|
+
kind: string;
|
|
16025
16095
|
website: string;
|
|
16026
16096
|
contactPreference: string;
|
|
16027
16097
|
images?: Array<{
|
|
@@ -16261,6 +16331,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
16261
16331
|
description: string;
|
|
16262
16332
|
legalTradingName: string;
|
|
16263
16333
|
type: SellerMetadataType;
|
|
16334
|
+
kind: string;
|
|
16264
16335
|
website: string;
|
|
16265
16336
|
contactPreference: string;
|
|
16266
16337
|
images?: Array<{
|
|
@@ -16341,6 +16412,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
16341
16412
|
description: string;
|
|
16342
16413
|
legalTradingName: string;
|
|
16343
16414
|
type: SellerMetadataType;
|
|
16415
|
+
kind: string;
|
|
16344
16416
|
website: string;
|
|
16345
16417
|
contactPreference: string;
|
|
16346
16418
|
images?: Array<{
|
|
@@ -16450,6 +16522,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
16450
16522
|
description: string;
|
|
16451
16523
|
legalTradingName: string;
|
|
16452
16524
|
type: SellerMetadataType;
|
|
16525
|
+
kind: string;
|
|
16453
16526
|
website: string;
|
|
16454
16527
|
contactPreference: string;
|
|
16455
16528
|
images?: Array<{
|
|
@@ -16549,6 +16622,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
16549
16622
|
description: string;
|
|
16550
16623
|
legalTradingName: string;
|
|
16551
16624
|
type: SellerMetadataType;
|
|
16625
|
+
kind: string;
|
|
16552
16626
|
website: string;
|
|
16553
16627
|
contactPreference: string;
|
|
16554
16628
|
images?: Array<{
|
|
@@ -16788,6 +16862,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
16788
16862
|
description: string;
|
|
16789
16863
|
legalTradingName: string;
|
|
16790
16864
|
type: SellerMetadataType;
|
|
16865
|
+
kind: string;
|
|
16791
16866
|
website: string;
|
|
16792
16867
|
contactPreference: string;
|
|
16793
16868
|
images?: Array<{
|
|
@@ -16868,6 +16943,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
16868
16943
|
description: string;
|
|
16869
16944
|
legalTradingName: string;
|
|
16870
16945
|
type: SellerMetadataType;
|
|
16946
|
+
kind: string;
|
|
16871
16947
|
website: string;
|
|
16872
16948
|
contactPreference: string;
|
|
16873
16949
|
images?: Array<{
|
|
@@ -16977,6 +17053,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
16977
17053
|
description: string;
|
|
16978
17054
|
legalTradingName: string;
|
|
16979
17055
|
type: SellerMetadataType;
|
|
17056
|
+
kind: string;
|
|
16980
17057
|
website: string;
|
|
16981
17058
|
contactPreference: string;
|
|
16982
17059
|
images?: Array<{
|
|
@@ -17060,6 +17137,7 @@ export declare type BaseExchangeFieldsFragment = {
|
|
|
17060
17137
|
description: string;
|
|
17061
17138
|
legalTradingName: string;
|
|
17062
17139
|
type: SellerMetadataType;
|
|
17140
|
+
kind: string;
|
|
17063
17141
|
website: string;
|
|
17064
17142
|
contactPreference: string;
|
|
17065
17143
|
images?: Array<{
|
|
@@ -17260,6 +17338,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17260
17338
|
description: string;
|
|
17261
17339
|
legalTradingName: string;
|
|
17262
17340
|
type: SellerMetadataType;
|
|
17341
|
+
kind: string;
|
|
17263
17342
|
website: string;
|
|
17264
17343
|
contactPreference: string;
|
|
17265
17344
|
images?: Array<{
|
|
@@ -17499,6 +17578,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17499
17578
|
description: string;
|
|
17500
17579
|
legalTradingName: string;
|
|
17501
17580
|
type: SellerMetadataType;
|
|
17581
|
+
kind: string;
|
|
17502
17582
|
website: string;
|
|
17503
17583
|
contactPreference: string;
|
|
17504
17584
|
images?: Array<{
|
|
@@ -17579,6 +17659,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17579
17659
|
description: string;
|
|
17580
17660
|
legalTradingName: string;
|
|
17581
17661
|
type: SellerMetadataType;
|
|
17662
|
+
kind: string;
|
|
17582
17663
|
website: string;
|
|
17583
17664
|
contactPreference: string;
|
|
17584
17665
|
images?: Array<{
|
|
@@ -17667,6 +17748,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17667
17748
|
description: string;
|
|
17668
17749
|
legalTradingName: string;
|
|
17669
17750
|
type: SellerMetadataType;
|
|
17751
|
+
kind: string;
|
|
17670
17752
|
website: string;
|
|
17671
17753
|
contactPreference: string;
|
|
17672
17754
|
images?: Array<{
|
|
@@ -17801,6 +17883,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
17801
17883
|
description: string;
|
|
17802
17884
|
legalTradingName: string;
|
|
17803
17885
|
type: SellerMetadataType;
|
|
17886
|
+
kind: string;
|
|
17804
17887
|
website: string;
|
|
17805
17888
|
contactPreference: string;
|
|
17806
17889
|
images?: Array<{
|
|
@@ -18040,6 +18123,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18040
18123
|
description: string;
|
|
18041
18124
|
legalTradingName: string;
|
|
18042
18125
|
type: SellerMetadataType;
|
|
18126
|
+
kind: string;
|
|
18043
18127
|
website: string;
|
|
18044
18128
|
contactPreference: string;
|
|
18045
18129
|
images?: Array<{
|
|
@@ -18120,6 +18204,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18120
18204
|
description: string;
|
|
18121
18205
|
legalTradingName: string;
|
|
18122
18206
|
type: SellerMetadataType;
|
|
18207
|
+
kind: string;
|
|
18123
18208
|
website: string;
|
|
18124
18209
|
contactPreference: string;
|
|
18125
18210
|
images?: Array<{
|
|
@@ -18208,6 +18293,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18208
18293
|
description: string;
|
|
18209
18294
|
legalTradingName: string;
|
|
18210
18295
|
type: SellerMetadataType;
|
|
18296
|
+
kind: string;
|
|
18211
18297
|
website: string;
|
|
18212
18298
|
contactPreference: string;
|
|
18213
18299
|
images?: Array<{
|
|
@@ -18333,6 +18419,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
18333
18419
|
description: string;
|
|
18334
18420
|
legalTradingName: string;
|
|
18335
18421
|
type: SellerMetadataType;
|
|
18422
|
+
kind: string;
|
|
18336
18423
|
website: string;
|
|
18337
18424
|
contactPreference: string;
|
|
18338
18425
|
images?: Array<{
|
|
@@ -18572,6 +18659,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
18572
18659
|
description: string;
|
|
18573
18660
|
legalTradingName: string;
|
|
18574
18661
|
type: SellerMetadataType;
|
|
18662
|
+
kind: string;
|
|
18575
18663
|
website: string;
|
|
18576
18664
|
contactPreference: string;
|
|
18577
18665
|
images?: Array<{
|
|
@@ -18652,6 +18740,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
18652
18740
|
description: string;
|
|
18653
18741
|
legalTradingName: string;
|
|
18654
18742
|
type: SellerMetadataType;
|
|
18743
|
+
kind: string;
|
|
18655
18744
|
website: string;
|
|
18656
18745
|
contactPreference: string;
|
|
18657
18746
|
images?: Array<{
|
|
@@ -18740,6 +18829,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
18740
18829
|
description: string;
|
|
18741
18830
|
legalTradingName: string;
|
|
18742
18831
|
type: SellerMetadataType;
|
|
18832
|
+
kind: string;
|
|
18743
18833
|
website: string;
|
|
18744
18834
|
contactPreference: string;
|
|
18745
18835
|
images?: Array<{
|
|
@@ -18864,6 +18954,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
18864
18954
|
description: string;
|
|
18865
18955
|
legalTradingName: string;
|
|
18866
18956
|
type: SellerMetadataType;
|
|
18957
|
+
kind: string;
|
|
18867
18958
|
website: string;
|
|
18868
18959
|
contactPreference: string;
|
|
18869
18960
|
images?: Array<{
|
|
@@ -19103,6 +19194,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19103
19194
|
description: string;
|
|
19104
19195
|
legalTradingName: string;
|
|
19105
19196
|
type: SellerMetadataType;
|
|
19197
|
+
kind: string;
|
|
19106
19198
|
website: string;
|
|
19107
19199
|
contactPreference: string;
|
|
19108
19200
|
images?: Array<{
|
|
@@ -19183,6 +19275,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19183
19275
|
description: string;
|
|
19184
19276
|
legalTradingName: string;
|
|
19185
19277
|
type: SellerMetadataType;
|
|
19278
|
+
kind: string;
|
|
19186
19279
|
website: string;
|
|
19187
19280
|
contactPreference: string;
|
|
19188
19281
|
images?: Array<{
|
|
@@ -19271,6 +19364,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19271
19364
|
description: string;
|
|
19272
19365
|
legalTradingName: string;
|
|
19273
19366
|
type: SellerMetadataType;
|
|
19367
|
+
kind: string;
|
|
19274
19368
|
website: string;
|
|
19275
19369
|
contactPreference: string;
|
|
19276
19370
|
images?: Array<{
|
|
@@ -19459,6 +19553,7 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
19459
19553
|
description: string;
|
|
19460
19554
|
legalTradingName: string;
|
|
19461
19555
|
type: SellerMetadataType;
|
|
19556
|
+
kind: string;
|
|
19462
19557
|
website: string;
|
|
19463
19558
|
contactPreference: string;
|
|
19464
19559
|
images?: Array<{
|
|
@@ -19616,6 +19711,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
19616
19711
|
description: string;
|
|
19617
19712
|
legalTradingName: string;
|
|
19618
19713
|
type: SellerMetadataType;
|
|
19714
|
+
kind: string;
|
|
19619
19715
|
website: string;
|
|
19620
19716
|
contactPreference: string;
|
|
19621
19717
|
images?: Array<{
|
|
@@ -19674,6 +19770,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
19674
19770
|
description: string;
|
|
19675
19771
|
legalTradingName: string;
|
|
19676
19772
|
type: SellerMetadataType;
|
|
19773
|
+
kind: string;
|
|
19677
19774
|
website: string;
|
|
19678
19775
|
contactPreference: string;
|
|
19679
19776
|
images?: Array<{
|
|
@@ -19913,6 +20010,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
19913
20010
|
description: string;
|
|
19914
20011
|
legalTradingName: string;
|
|
19915
20012
|
type: SellerMetadataType;
|
|
20013
|
+
kind: string;
|
|
19916
20014
|
website: string;
|
|
19917
20015
|
contactPreference: string;
|
|
19918
20016
|
images?: Array<{
|
|
@@ -19993,6 +20091,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
19993
20091
|
description: string;
|
|
19994
20092
|
legalTradingName: string;
|
|
19995
20093
|
type: SellerMetadataType;
|
|
20094
|
+
kind: string;
|
|
19996
20095
|
website: string;
|
|
19997
20096
|
contactPreference: string;
|
|
19998
20097
|
images?: Array<{
|
|
@@ -20166,6 +20265,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20166
20265
|
description: string;
|
|
20167
20266
|
legalTradingName: string;
|
|
20168
20267
|
type: SellerMetadataType;
|
|
20268
|
+
kind: string;
|
|
20169
20269
|
website: string;
|
|
20170
20270
|
contactPreference: string;
|
|
20171
20271
|
images?: Array<{
|
|
@@ -20323,6 +20423,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20323
20423
|
description: string;
|
|
20324
20424
|
legalTradingName: string;
|
|
20325
20425
|
type: SellerMetadataType;
|
|
20426
|
+
kind: string;
|
|
20326
20427
|
website: string;
|
|
20327
20428
|
contactPreference: string;
|
|
20328
20429
|
images?: Array<{
|
|
@@ -20381,6 +20482,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20381
20482
|
description: string;
|
|
20382
20483
|
legalTradingName: string;
|
|
20383
20484
|
type: SellerMetadataType;
|
|
20485
|
+
kind: string;
|
|
20384
20486
|
website: string;
|
|
20385
20487
|
contactPreference: string;
|
|
20386
20488
|
images?: Array<{
|
|
@@ -20620,6 +20722,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20620
20722
|
description: string;
|
|
20621
20723
|
legalTradingName: string;
|
|
20622
20724
|
type: SellerMetadataType;
|
|
20725
|
+
kind: string;
|
|
20623
20726
|
website: string;
|
|
20624
20727
|
contactPreference: string;
|
|
20625
20728
|
images?: Array<{
|
|
@@ -20700,6 +20803,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20700
20803
|
description: string;
|
|
20701
20804
|
legalTradingName: string;
|
|
20702
20805
|
type: SellerMetadataType;
|
|
20806
|
+
kind: string;
|
|
20703
20807
|
website: string;
|
|
20704
20808
|
contactPreference: string;
|
|
20705
20809
|
images?: Array<{
|
|
@@ -20873,6 +20977,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20873
20977
|
description: string;
|
|
20874
20978
|
legalTradingName: string;
|
|
20875
20979
|
type: SellerMetadataType;
|
|
20980
|
+
kind: string;
|
|
20876
20981
|
website: string;
|
|
20877
20982
|
contactPreference: string;
|
|
20878
20983
|
images?: Array<{
|
|
@@ -21042,6 +21147,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21042
21147
|
description: string;
|
|
21043
21148
|
legalTradingName: string;
|
|
21044
21149
|
type: SellerMetadataType;
|
|
21150
|
+
kind: string;
|
|
21045
21151
|
website: string;
|
|
21046
21152
|
contactPreference: string;
|
|
21047
21153
|
images?: Array<{
|
|
@@ -21100,6 +21206,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21100
21206
|
description: string;
|
|
21101
21207
|
legalTradingName: string;
|
|
21102
21208
|
type: SellerMetadataType;
|
|
21209
|
+
kind: string;
|
|
21103
21210
|
website: string;
|
|
21104
21211
|
contactPreference: string;
|
|
21105
21212
|
images?: Array<{
|
|
@@ -21339,6 +21446,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21339
21446
|
description: string;
|
|
21340
21447
|
legalTradingName: string;
|
|
21341
21448
|
type: SellerMetadataType;
|
|
21449
|
+
kind: string;
|
|
21342
21450
|
website: string;
|
|
21343
21451
|
contactPreference: string;
|
|
21344
21452
|
images?: Array<{
|
|
@@ -21419,6 +21527,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21419
21527
|
description: string;
|
|
21420
21528
|
legalTradingName: string;
|
|
21421
21529
|
type: SellerMetadataType;
|
|
21530
|
+
kind: string;
|
|
21422
21531
|
website: string;
|
|
21423
21532
|
contactPreference: string;
|
|
21424
21533
|
images?: Array<{
|
|
@@ -21507,6 +21616,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21507
21616
|
description: string;
|
|
21508
21617
|
legalTradingName: string;
|
|
21509
21618
|
type: SellerMetadataType;
|
|
21619
|
+
kind: string;
|
|
21510
21620
|
website: string;
|
|
21511
21621
|
contactPreference: string;
|
|
21512
21622
|
images?: Array<{
|
|
@@ -21670,6 +21780,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21670
21780
|
description: string;
|
|
21671
21781
|
legalTradingName: string;
|
|
21672
21782
|
type: SellerMetadataType;
|
|
21783
|
+
kind: string;
|
|
21673
21784
|
website: string;
|
|
21674
21785
|
contactPreference: string;
|
|
21675
21786
|
images?: Array<{
|
|
@@ -21750,6 +21861,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21750
21861
|
description: string;
|
|
21751
21862
|
legalTradingName: string;
|
|
21752
21863
|
type: SellerMetadataType;
|
|
21864
|
+
kind: string;
|
|
21753
21865
|
website: string;
|
|
21754
21866
|
contactPreference: string;
|
|
21755
21867
|
images?: Array<{
|
|
@@ -21913,6 +22025,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
21913
22025
|
description: string;
|
|
21914
22026
|
legalTradingName: string;
|
|
21915
22027
|
type: SellerMetadataType;
|
|
22028
|
+
kind: string;
|
|
21916
22029
|
website: string;
|
|
21917
22030
|
contactPreference: string;
|
|
21918
22031
|
images?: Array<{
|
|
@@ -21971,6 +22084,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
21971
22084
|
description: string;
|
|
21972
22085
|
legalTradingName: string;
|
|
21973
22086
|
type: SellerMetadataType;
|
|
22087
|
+
kind: string;
|
|
21974
22088
|
website: string;
|
|
21975
22089
|
contactPreference: string;
|
|
21976
22090
|
images?: Array<{
|
|
@@ -22210,6 +22324,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22210
22324
|
description: string;
|
|
22211
22325
|
legalTradingName: string;
|
|
22212
22326
|
type: SellerMetadataType;
|
|
22327
|
+
kind: string;
|
|
22213
22328
|
website: string;
|
|
22214
22329
|
contactPreference: string;
|
|
22215
22330
|
images?: Array<{
|
|
@@ -22290,6 +22405,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22290
22405
|
description: string;
|
|
22291
22406
|
legalTradingName: string;
|
|
22292
22407
|
type: SellerMetadataType;
|
|
22408
|
+
kind: string;
|
|
22293
22409
|
website: string;
|
|
22294
22410
|
contactPreference: string;
|
|
22295
22411
|
images?: Array<{
|
|
@@ -22378,6 +22494,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22378
22494
|
description: string;
|
|
22379
22495
|
legalTradingName: string;
|
|
22380
22496
|
type: SellerMetadataType;
|
|
22497
|
+
kind: string;
|
|
22381
22498
|
website: string;
|
|
22382
22499
|
contactPreference: string;
|
|
22383
22500
|
images?: Array<{
|
|
@@ -22541,6 +22658,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22541
22658
|
description: string;
|
|
22542
22659
|
legalTradingName: string;
|
|
22543
22660
|
type: SellerMetadataType;
|
|
22661
|
+
kind: string;
|
|
22544
22662
|
website: string;
|
|
22545
22663
|
contactPreference: string;
|
|
22546
22664
|
images?: Array<{
|
|
@@ -22621,6 +22739,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22621
22739
|
description: string;
|
|
22622
22740
|
legalTradingName: string;
|
|
22623
22741
|
type: SellerMetadataType;
|
|
22742
|
+
kind: string;
|
|
22624
22743
|
website: string;
|
|
22625
22744
|
contactPreference: string;
|
|
22626
22745
|
images?: Array<{
|
|
@@ -22775,6 +22894,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
22775
22894
|
description: string;
|
|
22776
22895
|
legalTradingName: string;
|
|
22777
22896
|
type: SellerMetadataType;
|
|
22897
|
+
kind: string;
|
|
22778
22898
|
website: string;
|
|
22779
22899
|
contactPreference: string;
|
|
22780
22900
|
images?: Array<{
|
|
@@ -22833,6 +22953,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
22833
22953
|
description: string;
|
|
22834
22954
|
legalTradingName: string;
|
|
22835
22955
|
type: SellerMetadataType;
|
|
22956
|
+
kind: string;
|
|
22836
22957
|
website: string;
|
|
22837
22958
|
contactPreference: string;
|
|
22838
22959
|
images?: Array<{
|
|
@@ -23072,6 +23193,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23072
23193
|
description: string;
|
|
23073
23194
|
legalTradingName: string;
|
|
23074
23195
|
type: SellerMetadataType;
|
|
23196
|
+
kind: string;
|
|
23075
23197
|
website: string;
|
|
23076
23198
|
contactPreference: string;
|
|
23077
23199
|
images?: Array<{
|
|
@@ -23152,6 +23274,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23152
23274
|
description: string;
|
|
23153
23275
|
legalTradingName: string;
|
|
23154
23276
|
type: SellerMetadataType;
|
|
23277
|
+
kind: string;
|
|
23155
23278
|
website: string;
|
|
23156
23279
|
contactPreference: string;
|
|
23157
23280
|
images?: Array<{
|
|
@@ -23240,6 +23363,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23240
23363
|
description: string;
|
|
23241
23364
|
legalTradingName: string;
|
|
23242
23365
|
type: SellerMetadataType;
|
|
23366
|
+
kind: string;
|
|
23243
23367
|
website: string;
|
|
23244
23368
|
contactPreference: string;
|
|
23245
23369
|
images?: Array<{
|
|
@@ -23403,6 +23527,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23403
23527
|
description: string;
|
|
23404
23528
|
legalTradingName: string;
|
|
23405
23529
|
type: SellerMetadataType;
|
|
23530
|
+
kind: string;
|
|
23406
23531
|
website: string;
|
|
23407
23532
|
contactPreference: string;
|
|
23408
23533
|
images?: Array<{
|
|
@@ -23483,6 +23608,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23483
23608
|
description: string;
|
|
23484
23609
|
legalTradingName: string;
|
|
23485
23610
|
type: SellerMetadataType;
|
|
23611
|
+
kind: string;
|
|
23486
23612
|
website: string;
|
|
23487
23613
|
contactPreference: string;
|
|
23488
23614
|
images?: Array<{
|
|
@@ -23636,6 +23762,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
23636
23762
|
description: string;
|
|
23637
23763
|
legalTradingName: string;
|
|
23638
23764
|
type: SellerMetadataType;
|
|
23765
|
+
kind: string;
|
|
23639
23766
|
website: string;
|
|
23640
23767
|
contactPreference: string;
|
|
23641
23768
|
images?: Array<{
|
|
@@ -23694,6 +23821,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
23694
23821
|
description: string;
|
|
23695
23822
|
legalTradingName: string;
|
|
23696
23823
|
type: SellerMetadataType;
|
|
23824
|
+
kind: string;
|
|
23697
23825
|
website: string;
|
|
23698
23826
|
contactPreference: string;
|
|
23699
23827
|
images?: Array<{
|
|
@@ -23933,6 +24061,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
23933
24061
|
description: string;
|
|
23934
24062
|
legalTradingName: string;
|
|
23935
24063
|
type: SellerMetadataType;
|
|
24064
|
+
kind: string;
|
|
23936
24065
|
website: string;
|
|
23937
24066
|
contactPreference: string;
|
|
23938
24067
|
images?: Array<{
|
|
@@ -24013,6 +24142,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24013
24142
|
description: string;
|
|
24014
24143
|
legalTradingName: string;
|
|
24015
24144
|
type: SellerMetadataType;
|
|
24145
|
+
kind: string;
|
|
24016
24146
|
website: string;
|
|
24017
24147
|
contactPreference: string;
|
|
24018
24148
|
images?: Array<{
|
|
@@ -24101,6 +24231,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24101
24231
|
description: string;
|
|
24102
24232
|
legalTradingName: string;
|
|
24103
24233
|
type: SellerMetadataType;
|
|
24234
|
+
kind: string;
|
|
24104
24235
|
website: string;
|
|
24105
24236
|
contactPreference: string;
|
|
24106
24237
|
images?: Array<{
|
|
@@ -24264,6 +24395,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24264
24395
|
description: string;
|
|
24265
24396
|
legalTradingName: string;
|
|
24266
24397
|
type: SellerMetadataType;
|
|
24398
|
+
kind: string;
|
|
24267
24399
|
website: string;
|
|
24268
24400
|
contactPreference: string;
|
|
24269
24401
|
images?: Array<{
|
|
@@ -24344,6 +24476,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24344
24476
|
description: string;
|
|
24345
24477
|
legalTradingName: string;
|
|
24346
24478
|
type: SellerMetadataType;
|
|
24479
|
+
kind: string;
|
|
24347
24480
|
website: string;
|
|
24348
24481
|
contactPreference: string;
|
|
24349
24482
|
images?: Array<{
|
|
@@ -24518,6 +24651,7 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
24518
24651
|
description: string;
|
|
24519
24652
|
legalTradingName: string;
|
|
24520
24653
|
type: SellerMetadataType;
|
|
24654
|
+
kind: string;
|
|
24521
24655
|
website: string;
|
|
24522
24656
|
contactPreference: string;
|
|
24523
24657
|
images?: Array<{
|
|
@@ -24665,6 +24799,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
24665
24799
|
description: string;
|
|
24666
24800
|
legalTradingName: string;
|
|
24667
24801
|
type: SellerMetadataType;
|
|
24802
|
+
kind: string;
|
|
24668
24803
|
website: string;
|
|
24669
24804
|
contactPreference: string;
|
|
24670
24805
|
images?: Array<{
|
|
@@ -24723,6 +24858,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
24723
24858
|
description: string;
|
|
24724
24859
|
legalTradingName: string;
|
|
24725
24860
|
type: SellerMetadataType;
|
|
24861
|
+
kind: string;
|
|
24726
24862
|
website: string;
|
|
24727
24863
|
contactPreference: string;
|
|
24728
24864
|
images?: Array<{
|
|
@@ -24962,6 +25098,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
24962
25098
|
description: string;
|
|
24963
25099
|
legalTradingName: string;
|
|
24964
25100
|
type: SellerMetadataType;
|
|
25101
|
+
kind: string;
|
|
24965
25102
|
website: string;
|
|
24966
25103
|
contactPreference: string;
|
|
24967
25104
|
images?: Array<{
|
|
@@ -25042,6 +25179,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25042
25179
|
description: string;
|
|
25043
25180
|
legalTradingName: string;
|
|
25044
25181
|
type: SellerMetadataType;
|
|
25182
|
+
kind: string;
|
|
25045
25183
|
website: string;
|
|
25046
25184
|
contactPreference: string;
|
|
25047
25185
|
images?: Array<{
|
|
@@ -25215,6 +25353,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25215
25353
|
description: string;
|
|
25216
25354
|
legalTradingName: string;
|
|
25217
25355
|
type: SellerMetadataType;
|
|
25356
|
+
kind: string;
|
|
25218
25357
|
website: string;
|
|
25219
25358
|
contactPreference: string;
|
|
25220
25359
|
images?: Array<{
|
|
@@ -25362,6 +25501,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25362
25501
|
description: string;
|
|
25363
25502
|
legalTradingName: string;
|
|
25364
25503
|
type: SellerMetadataType;
|
|
25504
|
+
kind: string;
|
|
25365
25505
|
website: string;
|
|
25366
25506
|
contactPreference: string;
|
|
25367
25507
|
images?: Array<{
|
|
@@ -25420,6 +25560,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25420
25560
|
description: string;
|
|
25421
25561
|
legalTradingName: string;
|
|
25422
25562
|
type: SellerMetadataType;
|
|
25563
|
+
kind: string;
|
|
25423
25564
|
website: string;
|
|
25424
25565
|
contactPreference: string;
|
|
25425
25566
|
images?: Array<{
|
|
@@ -25659,6 +25800,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25659
25800
|
description: string;
|
|
25660
25801
|
legalTradingName: string;
|
|
25661
25802
|
type: SellerMetadataType;
|
|
25803
|
+
kind: string;
|
|
25662
25804
|
website: string;
|
|
25663
25805
|
contactPreference: string;
|
|
25664
25806
|
images?: Array<{
|
|
@@ -25739,6 +25881,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25739
25881
|
description: string;
|
|
25740
25882
|
legalTradingName: string;
|
|
25741
25883
|
type: SellerMetadataType;
|
|
25884
|
+
kind: string;
|
|
25742
25885
|
website: string;
|
|
25743
25886
|
contactPreference: string;
|
|
25744
25887
|
images?: Array<{
|
|
@@ -25912,6 +26055,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25912
26055
|
description: string;
|
|
25913
26056
|
legalTradingName: string;
|
|
25914
26057
|
type: SellerMetadataType;
|
|
26058
|
+
kind: string;
|
|
25915
26059
|
website: string;
|
|
25916
26060
|
contactPreference: string;
|
|
25917
26061
|
images?: Array<{
|
|
@@ -26026,6 +26170,7 @@ export declare type BaseProductV1SellerFieldsFragment = {
|
|
|
26026
26170
|
description: string;
|
|
26027
26171
|
legalTradingName: string;
|
|
26028
26172
|
type: SellerMetadataType;
|
|
26173
|
+
kind: string;
|
|
26029
26174
|
website: string;
|
|
26030
26175
|
contactPreference: string;
|
|
26031
26176
|
images?: Array<{
|
|
@@ -26227,6 +26372,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
26227
26372
|
description: string;
|
|
26228
26373
|
legalTradingName: string;
|
|
26229
26374
|
type: SellerMetadataType;
|
|
26375
|
+
kind: string;
|
|
26230
26376
|
website: string;
|
|
26231
26377
|
contactPreference: string;
|
|
26232
26378
|
images?: Array<{
|
|
@@ -26285,6 +26431,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
26285
26431
|
description: string;
|
|
26286
26432
|
legalTradingName: string;
|
|
26287
26433
|
type: SellerMetadataType;
|
|
26434
|
+
kind: string;
|
|
26288
26435
|
website: string;
|
|
26289
26436
|
contactPreference: string;
|
|
26290
26437
|
images?: Array<{
|
|
@@ -26524,6 +26671,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
26524
26671
|
description: string;
|
|
26525
26672
|
legalTradingName: string;
|
|
26526
26673
|
type: SellerMetadataType;
|
|
26674
|
+
kind: string;
|
|
26527
26675
|
website: string;
|
|
26528
26676
|
contactPreference: string;
|
|
26529
26677
|
images?: Array<{
|
|
@@ -26604,6 +26752,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
26604
26752
|
description: string;
|
|
26605
26753
|
legalTradingName: string;
|
|
26606
26754
|
type: SellerMetadataType;
|
|
26755
|
+
kind: string;
|
|
26607
26756
|
website: string;
|
|
26608
26757
|
contactPreference: string;
|
|
26609
26758
|
images?: Array<{
|
|
@@ -26769,6 +26918,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
26769
26918
|
description: string;
|
|
26770
26919
|
legalTradingName: string;
|
|
26771
26920
|
type: SellerMetadataType;
|
|
26921
|
+
kind: string;
|
|
26772
26922
|
website: string;
|
|
26773
26923
|
contactPreference: string;
|
|
26774
26924
|
images?: Array<{
|
|
@@ -26827,6 +26977,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
26827
26977
|
description: string;
|
|
26828
26978
|
legalTradingName: string;
|
|
26829
26979
|
type: SellerMetadataType;
|
|
26980
|
+
kind: string;
|
|
26830
26981
|
website: string;
|
|
26831
26982
|
contactPreference: string;
|
|
26832
26983
|
images?: Array<{
|
|
@@ -27066,6 +27217,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
27066
27217
|
description: string;
|
|
27067
27218
|
legalTradingName: string;
|
|
27068
27219
|
type: SellerMetadataType;
|
|
27220
|
+
kind: string;
|
|
27069
27221
|
website: string;
|
|
27070
27222
|
contactPreference: string;
|
|
27071
27223
|
images?: Array<{
|
|
@@ -27146,6 +27298,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
27146
27298
|
description: string;
|
|
27147
27299
|
legalTradingName: string;
|
|
27148
27300
|
type: SellerMetadataType;
|
|
27301
|
+
kind: string;
|
|
27149
27302
|
website: string;
|
|
27150
27303
|
contactPreference: string;
|
|
27151
27304
|
images?: Array<{
|
|
@@ -27296,6 +27449,7 @@ export declare type OfferFieldsFragment = {
|
|
|
27296
27449
|
description: string;
|
|
27297
27450
|
legalTradingName: string;
|
|
27298
27451
|
type: SellerMetadataType;
|
|
27452
|
+
kind: string;
|
|
27299
27453
|
website: string;
|
|
27300
27454
|
contactPreference: string;
|
|
27301
27455
|
images?: Array<{
|
|
@@ -27354,6 +27508,7 @@ export declare type OfferFieldsFragment = {
|
|
|
27354
27508
|
description: string;
|
|
27355
27509
|
legalTradingName: string;
|
|
27356
27510
|
type: SellerMetadataType;
|
|
27511
|
+
kind: string;
|
|
27357
27512
|
website: string;
|
|
27358
27513
|
contactPreference: string;
|
|
27359
27514
|
images?: Array<{
|
|
@@ -27593,6 +27748,7 @@ export declare type OfferFieldsFragment = {
|
|
|
27593
27748
|
description: string;
|
|
27594
27749
|
legalTradingName: string;
|
|
27595
27750
|
type: SellerMetadataType;
|
|
27751
|
+
kind: string;
|
|
27596
27752
|
website: string;
|
|
27597
27753
|
contactPreference: string;
|
|
27598
27754
|
images?: Array<{
|
|
@@ -27673,6 +27829,7 @@ export declare type OfferFieldsFragment = {
|
|
|
27673
27829
|
description: string;
|
|
27674
27830
|
legalTradingName: string;
|
|
27675
27831
|
type: SellerMetadataType;
|
|
27832
|
+
kind: string;
|
|
27676
27833
|
website: string;
|
|
27677
27834
|
contactPreference: string;
|
|
27678
27835
|
images?: Array<{
|
|
@@ -27797,6 +27954,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
27797
27954
|
description: string;
|
|
27798
27955
|
legalTradingName: string;
|
|
27799
27956
|
type: SellerMetadataType;
|
|
27957
|
+
kind: string;
|
|
27800
27958
|
website: string;
|
|
27801
27959
|
contactPreference: string;
|
|
27802
27960
|
images?: Array<{
|
|
@@ -28036,6 +28194,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
28036
28194
|
description: string;
|
|
28037
28195
|
legalTradingName: string;
|
|
28038
28196
|
type: SellerMetadataType;
|
|
28197
|
+
kind: string;
|
|
28039
28198
|
website: string;
|
|
28040
28199
|
contactPreference: string;
|
|
28041
28200
|
images?: Array<{
|
|
@@ -28116,6 +28275,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
28116
28275
|
description: string;
|
|
28117
28276
|
legalTradingName: string;
|
|
28118
28277
|
type: SellerMetadataType;
|
|
28278
|
+
kind: string;
|
|
28119
28279
|
website: string;
|
|
28120
28280
|
contactPreference: string;
|
|
28121
28281
|
images?: Array<{
|