@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/src/subgraph.ts
CHANGED
|
@@ -7804,6 +7804,7 @@ export type SellerMetadata = {
|
|
|
7804
7804
|
description: Scalars["String"];
|
|
7805
7805
|
id: Scalars["ID"];
|
|
7806
7806
|
images?: Maybe<Array<SellerMetadataMedia>>;
|
|
7807
|
+
kind: Scalars["String"];
|
|
7807
7808
|
legalTradingName: Scalars["String"];
|
|
7808
7809
|
name: Scalars["String"];
|
|
7809
7810
|
socialLinks?: Maybe<Array<SellerSocialLink>>;
|
|
@@ -8004,6 +8005,26 @@ export type SellerMetadata_Filter = {
|
|
|
8004
8005
|
images_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
8005
8006
|
images_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
8006
8007
|
images_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
8008
|
+
kind?: InputMaybe<Scalars["String"]>;
|
|
8009
|
+
kind_contains?: InputMaybe<Scalars["String"]>;
|
|
8010
|
+
kind_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
8011
|
+
kind_ends_with?: InputMaybe<Scalars["String"]>;
|
|
8012
|
+
kind_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
8013
|
+
kind_gt?: InputMaybe<Scalars["String"]>;
|
|
8014
|
+
kind_gte?: InputMaybe<Scalars["String"]>;
|
|
8015
|
+
kind_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
8016
|
+
kind_lt?: InputMaybe<Scalars["String"]>;
|
|
8017
|
+
kind_lte?: InputMaybe<Scalars["String"]>;
|
|
8018
|
+
kind_not?: InputMaybe<Scalars["String"]>;
|
|
8019
|
+
kind_not_contains?: InputMaybe<Scalars["String"]>;
|
|
8020
|
+
kind_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
8021
|
+
kind_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
8022
|
+
kind_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
8023
|
+
kind_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
8024
|
+
kind_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
8025
|
+
kind_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
8026
|
+
kind_starts_with?: InputMaybe<Scalars["String"]>;
|
|
8027
|
+
kind_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
8007
8028
|
legalTradingName?: InputMaybe<Scalars["String"]>;
|
|
8008
8029
|
legalTradingName_contains?: InputMaybe<Scalars["String"]>;
|
|
8009
8030
|
legalTradingName_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -8084,6 +8105,7 @@ export enum SellerMetadata_OrderBy {
|
|
|
8084
8105
|
Description = "description",
|
|
8085
8106
|
Id = "id",
|
|
8086
8107
|
Images = "images",
|
|
8108
|
+
Kind = "kind",
|
|
8087
8109
|
LegalTradingName = "legalTradingName",
|
|
8088
8110
|
Name = "name",
|
|
8089
8111
|
SocialLinks = "socialLinks",
|
|
@@ -9278,6 +9300,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9278
9300
|
description: string;
|
|
9279
9301
|
legalTradingName: string;
|
|
9280
9302
|
type: SellerMetadataType;
|
|
9303
|
+
kind: string;
|
|
9281
9304
|
website: string;
|
|
9282
9305
|
contactPreference: string;
|
|
9283
9306
|
images?: Array<{
|
|
@@ -9519,6 +9542,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9519
9542
|
description: string;
|
|
9520
9543
|
legalTradingName: string;
|
|
9521
9544
|
type: SellerMetadataType;
|
|
9545
|
+
kind: string;
|
|
9522
9546
|
website: string;
|
|
9523
9547
|
contactPreference: string;
|
|
9524
9548
|
images?: Array<{
|
|
@@ -9599,6 +9623,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9599
9623
|
description: string;
|
|
9600
9624
|
legalTradingName: string;
|
|
9601
9625
|
type: SellerMetadataType;
|
|
9626
|
+
kind: string;
|
|
9602
9627
|
website: string;
|
|
9603
9628
|
contactPreference: string;
|
|
9604
9629
|
images?: Array<{
|
|
@@ -9723,6 +9748,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9723
9748
|
description: string;
|
|
9724
9749
|
legalTradingName: string;
|
|
9725
9750
|
type: SellerMetadataType;
|
|
9751
|
+
kind: string;
|
|
9726
9752
|
website: string;
|
|
9727
9753
|
contactPreference: string;
|
|
9728
9754
|
images?: Array<{
|
|
@@ -9827,6 +9853,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9827
9853
|
description: string;
|
|
9828
9854
|
legalTradingName: string;
|
|
9829
9855
|
type: SellerMetadataType;
|
|
9856
|
+
kind: string;
|
|
9830
9857
|
website: string;
|
|
9831
9858
|
contactPreference: string;
|
|
9832
9859
|
images?: Array<{
|
|
@@ -9982,6 +10009,7 @@ export type GetSellersQueryQuery = {
|
|
|
9982
10009
|
description: string;
|
|
9983
10010
|
legalTradingName: string;
|
|
9984
10011
|
type: SellerMetadataType;
|
|
10012
|
+
kind: string;
|
|
9985
10013
|
website: string;
|
|
9986
10014
|
contactPreference: string;
|
|
9987
10015
|
images?: Array<{
|
|
@@ -10223,6 +10251,7 @@ export type GetSellersQueryQuery = {
|
|
|
10223
10251
|
description: string;
|
|
10224
10252
|
legalTradingName: string;
|
|
10225
10253
|
type: SellerMetadataType;
|
|
10254
|
+
kind: string;
|
|
10226
10255
|
website: string;
|
|
10227
10256
|
contactPreference: string;
|
|
10228
10257
|
images?: Array<{
|
|
@@ -10303,6 +10332,7 @@ export type GetSellersQueryQuery = {
|
|
|
10303
10332
|
description: string;
|
|
10304
10333
|
legalTradingName: string;
|
|
10305
10334
|
type: SellerMetadataType;
|
|
10335
|
+
kind: string;
|
|
10306
10336
|
website: string;
|
|
10307
10337
|
contactPreference: string;
|
|
10308
10338
|
images?: Array<{
|
|
@@ -10427,6 +10457,7 @@ export type GetSellersQueryQuery = {
|
|
|
10427
10457
|
description: string;
|
|
10428
10458
|
legalTradingName: string;
|
|
10429
10459
|
type: SellerMetadataType;
|
|
10460
|
+
kind: string;
|
|
10430
10461
|
website: string;
|
|
10431
10462
|
contactPreference: string;
|
|
10432
10463
|
images?: Array<{
|
|
@@ -10531,6 +10562,7 @@ export type GetSellersQueryQuery = {
|
|
|
10531
10562
|
description: string;
|
|
10532
10563
|
legalTradingName: string;
|
|
10533
10564
|
type: SellerMetadataType;
|
|
10565
|
+
kind: string;
|
|
10534
10566
|
website: string;
|
|
10535
10567
|
contactPreference: string;
|
|
10536
10568
|
images?: Array<{
|
|
@@ -10658,6 +10690,7 @@ export type GetBuyerByIdQueryQuery = {
|
|
|
10658
10690
|
description: string;
|
|
10659
10691
|
legalTradingName: string;
|
|
10660
10692
|
type: SellerMetadataType;
|
|
10693
|
+
kind: string;
|
|
10661
10694
|
website: string;
|
|
10662
10695
|
contactPreference: string;
|
|
10663
10696
|
images?: Array<{
|
|
@@ -10867,6 +10900,7 @@ export type GetBuyersQueryQuery = {
|
|
|
10867
10900
|
description: string;
|
|
10868
10901
|
legalTradingName: string;
|
|
10869
10902
|
type: SellerMetadataType;
|
|
10903
|
+
kind: string;
|
|
10870
10904
|
website: string;
|
|
10871
10905
|
contactPreference: string;
|
|
10872
10906
|
images?: Array<{
|
|
@@ -11059,6 +11093,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
11059
11093
|
description: string;
|
|
11060
11094
|
legalTradingName: string;
|
|
11061
11095
|
type: SellerMetadataType;
|
|
11096
|
+
kind: string;
|
|
11062
11097
|
website: string;
|
|
11063
11098
|
contactPreference: string;
|
|
11064
11099
|
images?: Array<{
|
|
@@ -11300,6 +11335,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
11300
11335
|
description: string;
|
|
11301
11336
|
legalTradingName: string;
|
|
11302
11337
|
type: SellerMetadataType;
|
|
11338
|
+
kind: string;
|
|
11303
11339
|
website: string;
|
|
11304
11340
|
contactPreference: string;
|
|
11305
11341
|
images?: Array<{
|
|
@@ -11380,6 +11416,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
11380
11416
|
description: string;
|
|
11381
11417
|
legalTradingName: string;
|
|
11382
11418
|
type: SellerMetadataType;
|
|
11419
|
+
kind: string;
|
|
11383
11420
|
website: string;
|
|
11384
11421
|
contactPreference: string;
|
|
11385
11422
|
images?: Array<{
|
|
@@ -11632,6 +11669,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
11632
11669
|
description: string;
|
|
11633
11670
|
legalTradingName: string;
|
|
11634
11671
|
type: SellerMetadataType;
|
|
11672
|
+
kind: string;
|
|
11635
11673
|
website: string;
|
|
11636
11674
|
contactPreference: string;
|
|
11637
11675
|
images?: Array<{
|
|
@@ -11873,6 +11911,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
11873
11911
|
description: string;
|
|
11874
11912
|
legalTradingName: string;
|
|
11875
11913
|
type: SellerMetadataType;
|
|
11914
|
+
kind: string;
|
|
11876
11915
|
website: string;
|
|
11877
11916
|
contactPreference: string;
|
|
11878
11917
|
images?: Array<{
|
|
@@ -11953,6 +11992,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
11953
11992
|
description: string;
|
|
11954
11993
|
legalTradingName: string;
|
|
11955
11994
|
type: SellerMetadataType;
|
|
11995
|
+
kind: string;
|
|
11956
11996
|
website: string;
|
|
11957
11997
|
contactPreference: string;
|
|
11958
11998
|
images?: Array<{
|
|
@@ -12202,6 +12242,7 @@ export type SellerFieldsFragment = {
|
|
|
12202
12242
|
description: string;
|
|
12203
12243
|
legalTradingName: string;
|
|
12204
12244
|
type: SellerMetadataType;
|
|
12245
|
+
kind: string;
|
|
12205
12246
|
website: string;
|
|
12206
12247
|
contactPreference: string;
|
|
12207
12248
|
images?: Array<{
|
|
@@ -12439,6 +12480,7 @@ export type SellerFieldsFragment = {
|
|
|
12439
12480
|
description: string;
|
|
12440
12481
|
legalTradingName: string;
|
|
12441
12482
|
type: SellerMetadataType;
|
|
12483
|
+
kind: string;
|
|
12442
12484
|
website: string;
|
|
12443
12485
|
contactPreference: string;
|
|
12444
12486
|
images?: Array<{
|
|
@@ -12519,6 +12561,7 @@ export type SellerFieldsFragment = {
|
|
|
12519
12561
|
description: string;
|
|
12520
12562
|
legalTradingName: string;
|
|
12521
12563
|
type: SellerMetadataType;
|
|
12564
|
+
kind: string;
|
|
12522
12565
|
website: string;
|
|
12523
12566
|
contactPreference: string;
|
|
12524
12567
|
images?: Array<{
|
|
@@ -12643,6 +12686,7 @@ export type SellerFieldsFragment = {
|
|
|
12643
12686
|
description: string;
|
|
12644
12687
|
legalTradingName: string;
|
|
12645
12688
|
type: SellerMetadataType;
|
|
12689
|
+
kind: string;
|
|
12646
12690
|
website: string;
|
|
12647
12691
|
contactPreference: string;
|
|
12648
12692
|
images?: Array<{
|
|
@@ -12747,6 +12791,7 @@ export type SellerFieldsFragment = {
|
|
|
12747
12791
|
description: string;
|
|
12748
12792
|
legalTradingName: string;
|
|
12749
12793
|
type: SellerMetadataType;
|
|
12794
|
+
kind: string;
|
|
12750
12795
|
website: string;
|
|
12751
12796
|
contactPreference: string;
|
|
12752
12797
|
images?: Array<{
|
|
@@ -12819,6 +12864,7 @@ export type BaseSellerFieldsFragment = {
|
|
|
12819
12864
|
description: string;
|
|
12820
12865
|
legalTradingName: string;
|
|
12821
12866
|
type: SellerMetadataType;
|
|
12867
|
+
kind: string;
|
|
12822
12868
|
website: string;
|
|
12823
12869
|
contactPreference: string;
|
|
12824
12870
|
images?: Array<{
|
|
@@ -12930,6 +12976,7 @@ export type BuyerFieldsFragment = {
|
|
|
12930
12976
|
description: string;
|
|
12931
12977
|
legalTradingName: string;
|
|
12932
12978
|
type: SellerMetadataType;
|
|
12979
|
+
kind: string;
|
|
12933
12980
|
website: string;
|
|
12934
12981
|
contactPreference: string;
|
|
12935
12982
|
images?: Array<{
|
|
@@ -13110,6 +13157,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
13110
13157
|
description: string;
|
|
13111
13158
|
legalTradingName: string;
|
|
13112
13159
|
type: SellerMetadataType;
|
|
13160
|
+
kind: string;
|
|
13113
13161
|
website: string;
|
|
13114
13162
|
contactPreference: string;
|
|
13115
13163
|
images?: Array<{
|
|
@@ -13347,6 +13395,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
13347
13395
|
description: string;
|
|
13348
13396
|
legalTradingName: string;
|
|
13349
13397
|
type: SellerMetadataType;
|
|
13398
|
+
kind: string;
|
|
13350
13399
|
website: string;
|
|
13351
13400
|
contactPreference: string;
|
|
13352
13401
|
images?: Array<{
|
|
@@ -13427,6 +13476,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
13427
13476
|
description: string;
|
|
13428
13477
|
legalTradingName: string;
|
|
13429
13478
|
type: SellerMetadataType;
|
|
13479
|
+
kind: string;
|
|
13430
13480
|
website: string;
|
|
13431
13481
|
contactPreference: string;
|
|
13432
13482
|
images?: Array<{
|
|
@@ -13724,6 +13774,7 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
13724
13774
|
description: string;
|
|
13725
13775
|
legalTradingName: string;
|
|
13726
13776
|
type: SellerMetadataType;
|
|
13777
|
+
kind: string;
|
|
13727
13778
|
website: string;
|
|
13728
13779
|
contactPreference: string;
|
|
13729
13780
|
images?: Array<{
|
|
@@ -13772,6 +13823,7 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
13772
13823
|
description: string;
|
|
13773
13824
|
legalTradingName: string;
|
|
13774
13825
|
type: SellerMetadataType;
|
|
13826
|
+
kind: string;
|
|
13775
13827
|
website: string;
|
|
13776
13828
|
contactPreference: string;
|
|
13777
13829
|
images?: Array<{
|
|
@@ -13887,6 +13939,7 @@ export type GetDisputesQueryQuery = {
|
|
|
13887
13939
|
description: string;
|
|
13888
13940
|
legalTradingName: string;
|
|
13889
13941
|
type: SellerMetadataType;
|
|
13942
|
+
kind: string;
|
|
13890
13943
|
website: string;
|
|
13891
13944
|
contactPreference: string;
|
|
13892
13945
|
images?: Array<{
|
|
@@ -13935,6 +13988,7 @@ export type GetDisputesQueryQuery = {
|
|
|
13935
13988
|
description: string;
|
|
13936
13989
|
legalTradingName: string;
|
|
13937
13990
|
type: SellerMetadataType;
|
|
13991
|
+
kind: string;
|
|
13938
13992
|
website: string;
|
|
13939
13993
|
contactPreference: string;
|
|
13940
13994
|
images?: Array<{
|
|
@@ -14040,6 +14094,7 @@ export type DisputeFieldsFragment = {
|
|
|
14040
14094
|
description: string;
|
|
14041
14095
|
legalTradingName: string;
|
|
14042
14096
|
type: SellerMetadataType;
|
|
14097
|
+
kind: string;
|
|
14043
14098
|
website: string;
|
|
14044
14099
|
contactPreference: string;
|
|
14045
14100
|
images?: Array<{
|
|
@@ -14088,6 +14143,7 @@ export type DisputeFieldsFragment = {
|
|
|
14088
14143
|
description: string;
|
|
14089
14144
|
legalTradingName: string;
|
|
14090
14145
|
type: SellerMetadataType;
|
|
14146
|
+
kind: string;
|
|
14091
14147
|
website: string;
|
|
14092
14148
|
contactPreference: string;
|
|
14093
14149
|
images?: Array<{
|
|
@@ -14220,6 +14276,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
14220
14276
|
description: string;
|
|
14221
14277
|
legalTradingName: string;
|
|
14222
14278
|
type: SellerMetadataType;
|
|
14279
|
+
kind: string;
|
|
14223
14280
|
website: string;
|
|
14224
14281
|
contactPreference: string;
|
|
14225
14282
|
images?: Array<{
|
|
@@ -14461,6 +14518,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
14461
14518
|
description: string;
|
|
14462
14519
|
legalTradingName: string;
|
|
14463
14520
|
type: SellerMetadataType;
|
|
14521
|
+
kind: string;
|
|
14464
14522
|
website: string;
|
|
14465
14523
|
contactPreference: string;
|
|
14466
14524
|
images?: Array<{
|
|
@@ -14541,6 +14599,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
14541
14599
|
description: string;
|
|
14542
14600
|
legalTradingName: string;
|
|
14543
14601
|
type: SellerMetadataType;
|
|
14602
|
+
kind: string;
|
|
14544
14603
|
website: string;
|
|
14545
14604
|
contactPreference: string;
|
|
14546
14605
|
images?: Array<{
|
|
@@ -14704,6 +14763,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
14704
14763
|
description: string;
|
|
14705
14764
|
legalTradingName: string;
|
|
14706
14765
|
type: SellerMetadataType;
|
|
14766
|
+
kind: string;
|
|
14707
14767
|
website: string;
|
|
14708
14768
|
contactPreference: string;
|
|
14709
14769
|
images?: Array<{
|
|
@@ -14945,6 +15005,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
14945
15005
|
description: string;
|
|
14946
15006
|
legalTradingName: string;
|
|
14947
15007
|
type: SellerMetadataType;
|
|
15008
|
+
kind: string;
|
|
14948
15009
|
website: string;
|
|
14949
15010
|
contactPreference: string;
|
|
14950
15011
|
images?: Array<{
|
|
@@ -15025,6 +15086,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
15025
15086
|
description: string;
|
|
15026
15087
|
legalTradingName: string;
|
|
15027
15088
|
type: SellerMetadataType;
|
|
15089
|
+
kind: string;
|
|
15028
15090
|
website: string;
|
|
15029
15091
|
contactPreference: string;
|
|
15030
15092
|
images?: Array<{
|
|
@@ -15166,6 +15228,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
15166
15228
|
description: string;
|
|
15167
15229
|
legalTradingName: string;
|
|
15168
15230
|
type: SellerMetadataType;
|
|
15231
|
+
kind: string;
|
|
15169
15232
|
website: string;
|
|
15170
15233
|
contactPreference: string;
|
|
15171
15234
|
images?: Array<{
|
|
@@ -15403,6 +15466,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
15403
15466
|
description: string;
|
|
15404
15467
|
legalTradingName: string;
|
|
15405
15468
|
type: SellerMetadataType;
|
|
15469
|
+
kind: string;
|
|
15406
15470
|
website: string;
|
|
15407
15471
|
contactPreference: string;
|
|
15408
15472
|
images?: Array<{
|
|
@@ -15483,6 +15547,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
15483
15547
|
description: string;
|
|
15484
15548
|
legalTradingName: string;
|
|
15485
15549
|
type: SellerMetadataType;
|
|
15550
|
+
kind: string;
|
|
15486
15551
|
website: string;
|
|
15487
15552
|
contactPreference: string;
|
|
15488
15553
|
images?: Array<{
|
|
@@ -15807,6 +15872,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
15807
15872
|
description: string;
|
|
15808
15873
|
legalTradingName: string;
|
|
15809
15874
|
type: SellerMetadataType;
|
|
15875
|
+
kind: string;
|
|
15810
15876
|
website: string;
|
|
15811
15877
|
contactPreference: string;
|
|
15812
15878
|
images?: Array<{
|
|
@@ -16048,6 +16114,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
16048
16114
|
description: string;
|
|
16049
16115
|
legalTradingName: string;
|
|
16050
16116
|
type: SellerMetadataType;
|
|
16117
|
+
kind: string;
|
|
16051
16118
|
website: string;
|
|
16052
16119
|
contactPreference: string;
|
|
16053
16120
|
images?: Array<{
|
|
@@ -16128,6 +16195,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
16128
16195
|
description: string;
|
|
16129
16196
|
legalTradingName: string;
|
|
16130
16197
|
type: SellerMetadataType;
|
|
16198
|
+
kind: string;
|
|
16131
16199
|
website: string;
|
|
16132
16200
|
contactPreference: string;
|
|
16133
16201
|
images?: Array<{
|
|
@@ -16238,6 +16306,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
16238
16306
|
description: string;
|
|
16239
16307
|
legalTradingName: string;
|
|
16240
16308
|
type: SellerMetadataType;
|
|
16309
|
+
kind: string;
|
|
16241
16310
|
website: string;
|
|
16242
16311
|
contactPreference: string;
|
|
16243
16312
|
images?: Array<{
|
|
@@ -16348,6 +16417,7 @@ export type GetExchangesQueryQuery = {
|
|
|
16348
16417
|
description: string;
|
|
16349
16418
|
legalTradingName: string;
|
|
16350
16419
|
type: SellerMetadataType;
|
|
16420
|
+
kind: string;
|
|
16351
16421
|
website: string;
|
|
16352
16422
|
contactPreference: string;
|
|
16353
16423
|
images?: Array<{
|
|
@@ -16589,6 +16659,7 @@ export type GetExchangesQueryQuery = {
|
|
|
16589
16659
|
description: string;
|
|
16590
16660
|
legalTradingName: string;
|
|
16591
16661
|
type: SellerMetadataType;
|
|
16662
|
+
kind: string;
|
|
16592
16663
|
website: string;
|
|
16593
16664
|
contactPreference: string;
|
|
16594
16665
|
images?: Array<{
|
|
@@ -16669,6 +16740,7 @@ export type GetExchangesQueryQuery = {
|
|
|
16669
16740
|
description: string;
|
|
16670
16741
|
legalTradingName: string;
|
|
16671
16742
|
type: SellerMetadataType;
|
|
16743
|
+
kind: string;
|
|
16672
16744
|
website: string;
|
|
16673
16745
|
contactPreference: string;
|
|
16674
16746
|
images?: Array<{
|
|
@@ -16779,6 +16851,7 @@ export type GetExchangesQueryQuery = {
|
|
|
16779
16851
|
description: string;
|
|
16780
16852
|
legalTradingName: string;
|
|
16781
16853
|
type: SellerMetadataType;
|
|
16854
|
+
kind: string;
|
|
16782
16855
|
website: string;
|
|
16783
16856
|
contactPreference: string;
|
|
16784
16857
|
images?: Array<{
|
|
@@ -16879,6 +16952,7 @@ export type ExchangeFieldsFragment = {
|
|
|
16879
16952
|
description: string;
|
|
16880
16953
|
legalTradingName: string;
|
|
16881
16954
|
type: SellerMetadataType;
|
|
16955
|
+
kind: string;
|
|
16882
16956
|
website: string;
|
|
16883
16957
|
contactPreference: string;
|
|
16884
16958
|
images?: Array<{
|
|
@@ -17116,6 +17190,7 @@ export type ExchangeFieldsFragment = {
|
|
|
17116
17190
|
description: string;
|
|
17117
17191
|
legalTradingName: string;
|
|
17118
17192
|
type: SellerMetadataType;
|
|
17193
|
+
kind: string;
|
|
17119
17194
|
website: string;
|
|
17120
17195
|
contactPreference: string;
|
|
17121
17196
|
images?: Array<{
|
|
@@ -17196,6 +17271,7 @@ export type ExchangeFieldsFragment = {
|
|
|
17196
17271
|
description: string;
|
|
17197
17272
|
legalTradingName: string;
|
|
17198
17273
|
type: SellerMetadataType;
|
|
17274
|
+
kind: string;
|
|
17199
17275
|
website: string;
|
|
17200
17276
|
contactPreference: string;
|
|
17201
17277
|
images?: Array<{
|
|
@@ -17301,6 +17377,7 @@ export type ExchangeFieldsFragment = {
|
|
|
17301
17377
|
description: string;
|
|
17302
17378
|
legalTradingName: string;
|
|
17303
17379
|
type: SellerMetadataType;
|
|
17380
|
+
kind: string;
|
|
17304
17381
|
website: string;
|
|
17305
17382
|
contactPreference: string;
|
|
17306
17383
|
images?: Array<{
|
|
@@ -17380,6 +17457,7 @@ export type BaseExchangeFieldsFragment = {
|
|
|
17380
17457
|
description: string;
|
|
17381
17458
|
legalTradingName: string;
|
|
17382
17459
|
type: SellerMetadataType;
|
|
17460
|
+
kind: string;
|
|
17383
17461
|
website: string;
|
|
17384
17462
|
contactPreference: string;
|
|
17385
17463
|
images?: Array<{
|
|
@@ -17589,6 +17667,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17589
17667
|
description: string;
|
|
17590
17668
|
legalTradingName: string;
|
|
17591
17669
|
type: SellerMetadataType;
|
|
17670
|
+
kind: string;
|
|
17592
17671
|
website: string;
|
|
17593
17672
|
contactPreference: string;
|
|
17594
17673
|
images?: Array<{
|
|
@@ -17830,6 +17909,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17830
17909
|
description: string;
|
|
17831
17910
|
legalTradingName: string;
|
|
17832
17911
|
type: SellerMetadataType;
|
|
17912
|
+
kind: string;
|
|
17833
17913
|
website: string;
|
|
17834
17914
|
contactPreference: string;
|
|
17835
17915
|
images?: Array<{
|
|
@@ -17910,6 +17990,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17910
17990
|
description: string;
|
|
17911
17991
|
legalTradingName: string;
|
|
17912
17992
|
type: SellerMetadataType;
|
|
17993
|
+
kind: string;
|
|
17913
17994
|
website: string;
|
|
17914
17995
|
contactPreference: string;
|
|
17915
17996
|
images?: Array<{
|
|
@@ -17999,6 +18080,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
17999
18080
|
description: string;
|
|
18000
18081
|
legalTradingName: string;
|
|
18001
18082
|
type: SellerMetadataType;
|
|
18083
|
+
kind: string;
|
|
18002
18084
|
website: string;
|
|
18003
18085
|
contactPreference: string;
|
|
18004
18086
|
images?: Array<{
|
|
@@ -18135,6 +18217,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18135
18217
|
description: string;
|
|
18136
18218
|
legalTradingName: string;
|
|
18137
18219
|
type: SellerMetadataType;
|
|
18220
|
+
kind: string;
|
|
18138
18221
|
website: string;
|
|
18139
18222
|
contactPreference: string;
|
|
18140
18223
|
images?: Array<{
|
|
@@ -18376,6 +18459,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18376
18459
|
description: string;
|
|
18377
18460
|
legalTradingName: string;
|
|
18378
18461
|
type: SellerMetadataType;
|
|
18462
|
+
kind: string;
|
|
18379
18463
|
website: string;
|
|
18380
18464
|
contactPreference: string;
|
|
18381
18465
|
images?: Array<{
|
|
@@ -18456,6 +18540,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18456
18540
|
description: string;
|
|
18457
18541
|
legalTradingName: string;
|
|
18458
18542
|
type: SellerMetadataType;
|
|
18543
|
+
kind: string;
|
|
18459
18544
|
website: string;
|
|
18460
18545
|
contactPreference: string;
|
|
18461
18546
|
images?: Array<{
|
|
@@ -18545,6 +18630,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
18545
18630
|
description: string;
|
|
18546
18631
|
legalTradingName: string;
|
|
18547
18632
|
type: SellerMetadataType;
|
|
18633
|
+
kind: string;
|
|
18548
18634
|
website: string;
|
|
18549
18635
|
contactPreference: string;
|
|
18550
18636
|
images?: Array<{
|
|
@@ -18671,6 +18757,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
18671
18757
|
description: string;
|
|
18672
18758
|
legalTradingName: string;
|
|
18673
18759
|
type: SellerMetadataType;
|
|
18760
|
+
kind: string;
|
|
18674
18761
|
website: string;
|
|
18675
18762
|
contactPreference: string;
|
|
18676
18763
|
images?: Array<{
|
|
@@ -18908,6 +18995,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
18908
18995
|
description: string;
|
|
18909
18996
|
legalTradingName: string;
|
|
18910
18997
|
type: SellerMetadataType;
|
|
18998
|
+
kind: string;
|
|
18911
18999
|
website: string;
|
|
18912
19000
|
contactPreference: string;
|
|
18913
19001
|
images?: Array<{
|
|
@@ -18988,6 +19076,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
18988
19076
|
description: string;
|
|
18989
19077
|
legalTradingName: string;
|
|
18990
19078
|
type: SellerMetadataType;
|
|
19079
|
+
kind: string;
|
|
18991
19080
|
website: string;
|
|
18992
19081
|
contactPreference: string;
|
|
18993
19082
|
images?: Array<{
|
|
@@ -19077,6 +19166,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
19077
19166
|
description: string;
|
|
19078
19167
|
legalTradingName: string;
|
|
19079
19168
|
type: SellerMetadataType;
|
|
19169
|
+
kind: string;
|
|
19080
19170
|
website: string;
|
|
19081
19171
|
contactPreference: string;
|
|
19082
19172
|
images?: Array<{
|
|
@@ -19202,6 +19292,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19202
19292
|
description: string;
|
|
19203
19293
|
legalTradingName: string;
|
|
19204
19294
|
type: SellerMetadataType;
|
|
19295
|
+
kind: string;
|
|
19205
19296
|
website: string;
|
|
19206
19297
|
contactPreference: string;
|
|
19207
19298
|
images?: Array<{
|
|
@@ -19439,6 +19530,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19439
19530
|
description: string;
|
|
19440
19531
|
legalTradingName: string;
|
|
19441
19532
|
type: SellerMetadataType;
|
|
19533
|
+
kind: string;
|
|
19442
19534
|
website: string;
|
|
19443
19535
|
contactPreference: string;
|
|
19444
19536
|
images?: Array<{
|
|
@@ -19519,6 +19611,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19519
19611
|
description: string;
|
|
19520
19612
|
legalTradingName: string;
|
|
19521
19613
|
type: SellerMetadataType;
|
|
19614
|
+
kind: string;
|
|
19522
19615
|
website: string;
|
|
19523
19616
|
contactPreference: string;
|
|
19524
19617
|
images?: Array<{
|
|
@@ -19608,6 +19701,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
19608
19701
|
description: string;
|
|
19609
19702
|
legalTradingName: string;
|
|
19610
19703
|
type: SellerMetadataType;
|
|
19704
|
+
kind: string;
|
|
19611
19705
|
website: string;
|
|
19612
19706
|
contactPreference: string;
|
|
19613
19707
|
images?: Array<{
|
|
@@ -19796,6 +19890,7 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
19796
19890
|
description: string;
|
|
19797
19891
|
legalTradingName: string;
|
|
19798
19892
|
type: SellerMetadataType;
|
|
19893
|
+
kind: string;
|
|
19799
19894
|
website: string;
|
|
19800
19895
|
contactPreference: string;
|
|
19801
19896
|
images?: Array<{
|
|
@@ -19955,6 +20050,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
19955
20050
|
description: string;
|
|
19956
20051
|
legalTradingName: string;
|
|
19957
20052
|
type: SellerMetadataType;
|
|
20053
|
+
kind: string;
|
|
19958
20054
|
website: string;
|
|
19959
20055
|
contactPreference: string;
|
|
19960
20056
|
images?: Array<{
|
|
@@ -20013,6 +20109,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20013
20109
|
description: string;
|
|
20014
20110
|
legalTradingName: string;
|
|
20015
20111
|
type: SellerMetadataType;
|
|
20112
|
+
kind: string;
|
|
20016
20113
|
website: string;
|
|
20017
20114
|
contactPreference: string;
|
|
20018
20115
|
images?: Array<{
|
|
@@ -20254,6 +20351,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20254
20351
|
description: string;
|
|
20255
20352
|
legalTradingName: string;
|
|
20256
20353
|
type: SellerMetadataType;
|
|
20354
|
+
kind: string;
|
|
20257
20355
|
website: string;
|
|
20258
20356
|
contactPreference: string;
|
|
20259
20357
|
images?: Array<{
|
|
@@ -20334,6 +20432,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20334
20432
|
description: string;
|
|
20335
20433
|
legalTradingName: string;
|
|
20336
20434
|
type: SellerMetadataType;
|
|
20435
|
+
kind: string;
|
|
20337
20436
|
website: string;
|
|
20338
20437
|
contactPreference: string;
|
|
20339
20438
|
images?: Array<{
|
|
@@ -20504,6 +20603,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
20504
20603
|
description: string;
|
|
20505
20604
|
legalTradingName: string;
|
|
20506
20605
|
type: SellerMetadataType;
|
|
20606
|
+
kind: string;
|
|
20507
20607
|
website: string;
|
|
20508
20608
|
contactPreference: string;
|
|
20509
20609
|
images?: Array<{
|
|
@@ -20663,6 +20763,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20663
20763
|
description: string;
|
|
20664
20764
|
legalTradingName: string;
|
|
20665
20765
|
type: SellerMetadataType;
|
|
20766
|
+
kind: string;
|
|
20666
20767
|
website: string;
|
|
20667
20768
|
contactPreference: string;
|
|
20668
20769
|
images?: Array<{
|
|
@@ -20721,6 +20822,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20721
20822
|
description: string;
|
|
20722
20823
|
legalTradingName: string;
|
|
20723
20824
|
type: SellerMetadataType;
|
|
20825
|
+
kind: string;
|
|
20724
20826
|
website: string;
|
|
20725
20827
|
contactPreference: string;
|
|
20726
20828
|
images?: Array<{
|
|
@@ -20962,6 +21064,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
20962
21064
|
description: string;
|
|
20963
21065
|
legalTradingName: string;
|
|
20964
21066
|
type: SellerMetadataType;
|
|
21067
|
+
kind: string;
|
|
20965
21068
|
website: string;
|
|
20966
21069
|
contactPreference: string;
|
|
20967
21070
|
images?: Array<{
|
|
@@ -21042,6 +21145,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
21042
21145
|
description: string;
|
|
21043
21146
|
legalTradingName: string;
|
|
21044
21147
|
type: SellerMetadataType;
|
|
21148
|
+
kind: string;
|
|
21045
21149
|
website: string;
|
|
21046
21150
|
contactPreference: string;
|
|
21047
21151
|
images?: Array<{
|
|
@@ -21212,6 +21316,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
21212
21316
|
description: string;
|
|
21213
21317
|
legalTradingName: string;
|
|
21214
21318
|
type: SellerMetadataType;
|
|
21319
|
+
kind: string;
|
|
21215
21320
|
website: string;
|
|
21216
21321
|
contactPreference: string;
|
|
21217
21322
|
images?: Array<{
|
|
@@ -21385,6 +21490,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21385
21490
|
description: string;
|
|
21386
21491
|
legalTradingName: string;
|
|
21387
21492
|
type: SellerMetadataType;
|
|
21493
|
+
kind: string;
|
|
21388
21494
|
website: string;
|
|
21389
21495
|
contactPreference: string;
|
|
21390
21496
|
images?: Array<{
|
|
@@ -21443,6 +21549,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21443
21549
|
description: string;
|
|
21444
21550
|
legalTradingName: string;
|
|
21445
21551
|
type: SellerMetadataType;
|
|
21552
|
+
kind: string;
|
|
21446
21553
|
website: string;
|
|
21447
21554
|
contactPreference: string;
|
|
21448
21555
|
images?: Array<{
|
|
@@ -21684,6 +21791,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21684
21791
|
description: string;
|
|
21685
21792
|
legalTradingName: string;
|
|
21686
21793
|
type: SellerMetadataType;
|
|
21794
|
+
kind: string;
|
|
21687
21795
|
website: string;
|
|
21688
21796
|
contactPreference: string;
|
|
21689
21797
|
images?: Array<{
|
|
@@ -21764,6 +21872,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21764
21872
|
description: string;
|
|
21765
21873
|
legalTradingName: string;
|
|
21766
21874
|
type: SellerMetadataType;
|
|
21875
|
+
kind: string;
|
|
21767
21876
|
website: string;
|
|
21768
21877
|
contactPreference: string;
|
|
21769
21878
|
images?: Array<{
|
|
@@ -21853,6 +21962,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
21853
21962
|
description: string;
|
|
21854
21963
|
legalTradingName: string;
|
|
21855
21964
|
type: SellerMetadataType;
|
|
21965
|
+
kind: string;
|
|
21856
21966
|
website: string;
|
|
21857
21967
|
contactPreference: string;
|
|
21858
21968
|
images?: Array<{
|
|
@@ -22012,6 +22122,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
22012
22122
|
description: string;
|
|
22013
22123
|
legalTradingName: string;
|
|
22014
22124
|
type: SellerMetadataType;
|
|
22125
|
+
kind: string;
|
|
22015
22126
|
website: string;
|
|
22016
22127
|
contactPreference: string;
|
|
22017
22128
|
images?: Array<{
|
|
@@ -22092,6 +22203,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
22092
22203
|
description: string;
|
|
22093
22204
|
legalTradingName: string;
|
|
22094
22205
|
type: SellerMetadataType;
|
|
22206
|
+
kind: string;
|
|
22095
22207
|
website: string;
|
|
22096
22208
|
contactPreference: string;
|
|
22097
22209
|
images?: Array<{
|
|
@@ -22257,6 +22369,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22257
22369
|
description: string;
|
|
22258
22370
|
legalTradingName: string;
|
|
22259
22371
|
type: SellerMetadataType;
|
|
22372
|
+
kind: string;
|
|
22260
22373
|
website: string;
|
|
22261
22374
|
contactPreference: string;
|
|
22262
22375
|
images?: Array<{
|
|
@@ -22315,6 +22428,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22315
22428
|
description: string;
|
|
22316
22429
|
legalTradingName: string;
|
|
22317
22430
|
type: SellerMetadataType;
|
|
22431
|
+
kind: string;
|
|
22318
22432
|
website: string;
|
|
22319
22433
|
contactPreference: string;
|
|
22320
22434
|
images?: Array<{
|
|
@@ -22556,6 +22670,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22556
22670
|
description: string;
|
|
22557
22671
|
legalTradingName: string;
|
|
22558
22672
|
type: SellerMetadataType;
|
|
22673
|
+
kind: string;
|
|
22559
22674
|
website: string;
|
|
22560
22675
|
contactPreference: string;
|
|
22561
22676
|
images?: Array<{
|
|
@@ -22636,6 +22751,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22636
22751
|
description: string;
|
|
22637
22752
|
legalTradingName: string;
|
|
22638
22753
|
type: SellerMetadataType;
|
|
22754
|
+
kind: string;
|
|
22639
22755
|
website: string;
|
|
22640
22756
|
contactPreference: string;
|
|
22641
22757
|
images?: Array<{
|
|
@@ -22725,6 +22841,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22725
22841
|
description: string;
|
|
22726
22842
|
legalTradingName: string;
|
|
22727
22843
|
type: SellerMetadataType;
|
|
22844
|
+
kind: string;
|
|
22728
22845
|
website: string;
|
|
22729
22846
|
contactPreference: string;
|
|
22730
22847
|
images?: Array<{
|
|
@@ -22884,6 +23001,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22884
23001
|
description: string;
|
|
22885
23002
|
legalTradingName: string;
|
|
22886
23003
|
type: SellerMetadataType;
|
|
23004
|
+
kind: string;
|
|
22887
23005
|
website: string;
|
|
22888
23006
|
contactPreference: string;
|
|
22889
23007
|
images?: Array<{
|
|
@@ -22964,6 +23082,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
22964
23082
|
description: string;
|
|
22965
23083
|
legalTradingName: string;
|
|
22966
23084
|
type: SellerMetadataType;
|
|
23085
|
+
kind: string;
|
|
22967
23086
|
website: string;
|
|
22968
23087
|
contactPreference: string;
|
|
22969
23088
|
images?: Array<{
|
|
@@ -23119,6 +23238,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23119
23238
|
description: string;
|
|
23120
23239
|
legalTradingName: string;
|
|
23121
23240
|
type: SellerMetadataType;
|
|
23241
|
+
kind: string;
|
|
23122
23242
|
website: string;
|
|
23123
23243
|
contactPreference: string;
|
|
23124
23244
|
images?: Array<{
|
|
@@ -23177,6 +23297,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23177
23297
|
description: string;
|
|
23178
23298
|
legalTradingName: string;
|
|
23179
23299
|
type: SellerMetadataType;
|
|
23300
|
+
kind: string;
|
|
23180
23301
|
website: string;
|
|
23181
23302
|
contactPreference: string;
|
|
23182
23303
|
images?: Array<{
|
|
@@ -23414,6 +23535,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23414
23535
|
description: string;
|
|
23415
23536
|
legalTradingName: string;
|
|
23416
23537
|
type: SellerMetadataType;
|
|
23538
|
+
kind: string;
|
|
23417
23539
|
website: string;
|
|
23418
23540
|
contactPreference: string;
|
|
23419
23541
|
images?: Array<{
|
|
@@ -23494,6 +23616,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23494
23616
|
description: string;
|
|
23495
23617
|
legalTradingName: string;
|
|
23496
23618
|
type: SellerMetadataType;
|
|
23619
|
+
kind: string;
|
|
23497
23620
|
website: string;
|
|
23498
23621
|
contactPreference: string;
|
|
23499
23622
|
images?: Array<{
|
|
@@ -23583,6 +23706,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23583
23706
|
description: string;
|
|
23584
23707
|
legalTradingName: string;
|
|
23585
23708
|
type: SellerMetadataType;
|
|
23709
|
+
kind: string;
|
|
23586
23710
|
website: string;
|
|
23587
23711
|
contactPreference: string;
|
|
23588
23712
|
images?: Array<{
|
|
@@ -23742,6 +23866,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23742
23866
|
description: string;
|
|
23743
23867
|
legalTradingName: string;
|
|
23744
23868
|
type: SellerMetadataType;
|
|
23869
|
+
kind: string;
|
|
23745
23870
|
website: string;
|
|
23746
23871
|
contactPreference: string;
|
|
23747
23872
|
images?: Array<{
|
|
@@ -23822,6 +23947,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
23822
23947
|
description: string;
|
|
23823
23948
|
legalTradingName: string;
|
|
23824
23949
|
type: SellerMetadataType;
|
|
23950
|
+
kind: string;
|
|
23825
23951
|
website: string;
|
|
23826
23952
|
contactPreference: string;
|
|
23827
23953
|
images?: Array<{
|
|
@@ -23976,6 +24102,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
23976
24102
|
description: string;
|
|
23977
24103
|
legalTradingName: string;
|
|
23978
24104
|
type: SellerMetadataType;
|
|
24105
|
+
kind: string;
|
|
23979
24106
|
website: string;
|
|
23980
24107
|
contactPreference: string;
|
|
23981
24108
|
images?: Array<{
|
|
@@ -24034,6 +24161,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24034
24161
|
description: string;
|
|
24035
24162
|
legalTradingName: string;
|
|
24036
24163
|
type: SellerMetadataType;
|
|
24164
|
+
kind: string;
|
|
24037
24165
|
website: string;
|
|
24038
24166
|
contactPreference: string;
|
|
24039
24167
|
images?: Array<{
|
|
@@ -24271,6 +24399,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24271
24399
|
description: string;
|
|
24272
24400
|
legalTradingName: string;
|
|
24273
24401
|
type: SellerMetadataType;
|
|
24402
|
+
kind: string;
|
|
24274
24403
|
website: string;
|
|
24275
24404
|
contactPreference: string;
|
|
24276
24405
|
images?: Array<{
|
|
@@ -24351,6 +24480,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24351
24480
|
description: string;
|
|
24352
24481
|
legalTradingName: string;
|
|
24353
24482
|
type: SellerMetadataType;
|
|
24483
|
+
kind: string;
|
|
24354
24484
|
website: string;
|
|
24355
24485
|
contactPreference: string;
|
|
24356
24486
|
images?: Array<{
|
|
@@ -24440,6 +24570,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24440
24570
|
description: string;
|
|
24441
24571
|
legalTradingName: string;
|
|
24442
24572
|
type: SellerMetadataType;
|
|
24573
|
+
kind: string;
|
|
24443
24574
|
website: string;
|
|
24444
24575
|
contactPreference: string;
|
|
24445
24576
|
images?: Array<{
|
|
@@ -24599,6 +24730,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24599
24730
|
description: string;
|
|
24600
24731
|
legalTradingName: string;
|
|
24601
24732
|
type: SellerMetadataType;
|
|
24733
|
+
kind: string;
|
|
24602
24734
|
website: string;
|
|
24603
24735
|
contactPreference: string;
|
|
24604
24736
|
images?: Array<{
|
|
@@ -24679,6 +24811,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
24679
24811
|
description: string;
|
|
24680
24812
|
legalTradingName: string;
|
|
24681
24813
|
type: SellerMetadataType;
|
|
24814
|
+
kind: string;
|
|
24682
24815
|
website: string;
|
|
24683
24816
|
contactPreference: string;
|
|
24684
24817
|
images?: Array<{
|
|
@@ -24851,6 +24984,7 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
24851
24984
|
description: string;
|
|
24852
24985
|
legalTradingName: string;
|
|
24853
24986
|
type: SellerMetadataType;
|
|
24987
|
+
kind: string;
|
|
24854
24988
|
website: string;
|
|
24855
24989
|
contactPreference: string;
|
|
24856
24990
|
images?: Array<{
|
|
@@ -24999,6 +25133,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
24999
25133
|
description: string;
|
|
25000
25134
|
legalTradingName: string;
|
|
25001
25135
|
type: SellerMetadataType;
|
|
25136
|
+
kind: string;
|
|
25002
25137
|
website: string;
|
|
25003
25138
|
contactPreference: string;
|
|
25004
25139
|
images?: Array<{
|
|
@@ -25057,6 +25192,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25057
25192
|
description: string;
|
|
25058
25193
|
legalTradingName: string;
|
|
25059
25194
|
type: SellerMetadataType;
|
|
25195
|
+
kind: string;
|
|
25060
25196
|
website: string;
|
|
25061
25197
|
contactPreference: string;
|
|
25062
25198
|
images?: Array<{
|
|
@@ -25298,6 +25434,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25298
25434
|
description: string;
|
|
25299
25435
|
legalTradingName: string;
|
|
25300
25436
|
type: SellerMetadataType;
|
|
25437
|
+
kind: string;
|
|
25301
25438
|
website: string;
|
|
25302
25439
|
contactPreference: string;
|
|
25303
25440
|
images?: Array<{
|
|
@@ -25378,6 +25515,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25378
25515
|
description: string;
|
|
25379
25516
|
legalTradingName: string;
|
|
25380
25517
|
type: SellerMetadataType;
|
|
25518
|
+
kind: string;
|
|
25381
25519
|
website: string;
|
|
25382
25520
|
contactPreference: string;
|
|
25383
25521
|
images?: Array<{
|
|
@@ -25548,6 +25686,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
25548
25686
|
description: string;
|
|
25549
25687
|
legalTradingName: string;
|
|
25550
25688
|
type: SellerMetadataType;
|
|
25689
|
+
kind: string;
|
|
25551
25690
|
website: string;
|
|
25552
25691
|
contactPreference: string;
|
|
25553
25692
|
images?: Array<{
|
|
@@ -25696,6 +25835,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25696
25835
|
description: string;
|
|
25697
25836
|
legalTradingName: string;
|
|
25698
25837
|
type: SellerMetadataType;
|
|
25838
|
+
kind: string;
|
|
25699
25839
|
website: string;
|
|
25700
25840
|
contactPreference: string;
|
|
25701
25841
|
images?: Array<{
|
|
@@ -25754,6 +25894,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25754
25894
|
description: string;
|
|
25755
25895
|
legalTradingName: string;
|
|
25756
25896
|
type: SellerMetadataType;
|
|
25897
|
+
kind: string;
|
|
25757
25898
|
website: string;
|
|
25758
25899
|
contactPreference: string;
|
|
25759
25900
|
images?: Array<{
|
|
@@ -25995,6 +26136,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
25995
26136
|
description: string;
|
|
25996
26137
|
legalTradingName: string;
|
|
25997
26138
|
type: SellerMetadataType;
|
|
26139
|
+
kind: string;
|
|
25998
26140
|
website: string;
|
|
25999
26141
|
contactPreference: string;
|
|
26000
26142
|
images?: Array<{
|
|
@@ -26075,6 +26217,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
26075
26217
|
description: string;
|
|
26076
26218
|
legalTradingName: string;
|
|
26077
26219
|
type: SellerMetadataType;
|
|
26220
|
+
kind: string;
|
|
26078
26221
|
website: string;
|
|
26079
26222
|
contactPreference: string;
|
|
26080
26223
|
images?: Array<{
|
|
@@ -26245,6 +26388,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
26245
26388
|
description: string;
|
|
26246
26389
|
legalTradingName: string;
|
|
26247
26390
|
type: SellerMetadataType;
|
|
26391
|
+
kind: string;
|
|
26248
26392
|
website: string;
|
|
26249
26393
|
contactPreference: string;
|
|
26250
26394
|
images?: Array<{
|
|
@@ -26367,6 +26511,7 @@ export type BaseProductV1SellerFieldsFragment = {
|
|
|
26367
26511
|
description: string;
|
|
26368
26512
|
legalTradingName: string;
|
|
26369
26513
|
type: SellerMetadataType;
|
|
26514
|
+
kind: string;
|
|
26370
26515
|
website: string;
|
|
26371
26516
|
contactPreference: string;
|
|
26372
26517
|
images?: Array<{
|
|
@@ -26571,6 +26716,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
26571
26716
|
description: string;
|
|
26572
26717
|
legalTradingName: string;
|
|
26573
26718
|
type: SellerMetadataType;
|
|
26719
|
+
kind: string;
|
|
26574
26720
|
website: string;
|
|
26575
26721
|
contactPreference: string;
|
|
26576
26722
|
images?: Array<{
|
|
@@ -26629,6 +26775,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
26629
26775
|
description: string;
|
|
26630
26776
|
legalTradingName: string;
|
|
26631
26777
|
type: SellerMetadataType;
|
|
26778
|
+
kind: string;
|
|
26632
26779
|
website: string;
|
|
26633
26780
|
contactPreference: string;
|
|
26634
26781
|
images?: Array<{
|
|
@@ -26866,6 +27013,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
26866
27013
|
description: string;
|
|
26867
27014
|
legalTradingName: string;
|
|
26868
27015
|
type: SellerMetadataType;
|
|
27016
|
+
kind: string;
|
|
26869
27017
|
website: string;
|
|
26870
27018
|
contactPreference: string;
|
|
26871
27019
|
images?: Array<{
|
|
@@ -26946,6 +27094,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
26946
27094
|
description: string;
|
|
26947
27095
|
legalTradingName: string;
|
|
26948
27096
|
type: SellerMetadataType;
|
|
27097
|
+
kind: string;
|
|
26949
27098
|
website: string;
|
|
26950
27099
|
contactPreference: string;
|
|
26951
27100
|
images?: Array<{
|
|
@@ -27114,6 +27263,7 @@ export type GetOffersQueryQuery = {
|
|
|
27114
27263
|
description: string;
|
|
27115
27264
|
legalTradingName: string;
|
|
27116
27265
|
type: SellerMetadataType;
|
|
27266
|
+
kind: string;
|
|
27117
27267
|
website: string;
|
|
27118
27268
|
contactPreference: string;
|
|
27119
27269
|
images?: Array<{
|
|
@@ -27172,6 +27322,7 @@ export type GetOffersQueryQuery = {
|
|
|
27172
27322
|
description: string;
|
|
27173
27323
|
legalTradingName: string;
|
|
27174
27324
|
type: SellerMetadataType;
|
|
27325
|
+
kind: string;
|
|
27175
27326
|
website: string;
|
|
27176
27327
|
contactPreference: string;
|
|
27177
27328
|
images?: Array<{
|
|
@@ -27409,6 +27560,7 @@ export type GetOffersQueryQuery = {
|
|
|
27409
27560
|
description: string;
|
|
27410
27561
|
legalTradingName: string;
|
|
27411
27562
|
type: SellerMetadataType;
|
|
27563
|
+
kind: string;
|
|
27412
27564
|
website: string;
|
|
27413
27565
|
contactPreference: string;
|
|
27414
27566
|
images?: Array<{
|
|
@@ -27489,6 +27641,7 @@ export type GetOffersQueryQuery = {
|
|
|
27489
27641
|
description: string;
|
|
27490
27642
|
legalTradingName: string;
|
|
27491
27643
|
type: SellerMetadataType;
|
|
27644
|
+
kind: string;
|
|
27492
27645
|
website: string;
|
|
27493
27646
|
contactPreference: string;
|
|
27494
27647
|
images?: Array<{
|
|
@@ -27641,6 +27794,7 @@ export type OfferFieldsFragment = {
|
|
|
27641
27794
|
description: string;
|
|
27642
27795
|
legalTradingName: string;
|
|
27643
27796
|
type: SellerMetadataType;
|
|
27797
|
+
kind: string;
|
|
27644
27798
|
website: string;
|
|
27645
27799
|
contactPreference: string;
|
|
27646
27800
|
images?: Array<{
|
|
@@ -27699,6 +27853,7 @@ export type OfferFieldsFragment = {
|
|
|
27699
27853
|
description: string;
|
|
27700
27854
|
legalTradingName: string;
|
|
27701
27855
|
type: SellerMetadataType;
|
|
27856
|
+
kind: string;
|
|
27702
27857
|
website: string;
|
|
27703
27858
|
contactPreference: string;
|
|
27704
27859
|
images?: Array<{
|
|
@@ -27936,6 +28091,7 @@ export type OfferFieldsFragment = {
|
|
|
27936
28091
|
description: string;
|
|
27937
28092
|
legalTradingName: string;
|
|
27938
28093
|
type: SellerMetadataType;
|
|
28094
|
+
kind: string;
|
|
27939
28095
|
website: string;
|
|
27940
28096
|
contactPreference: string;
|
|
27941
28097
|
images?: Array<{
|
|
@@ -28016,6 +28172,7 @@ export type OfferFieldsFragment = {
|
|
|
28016
28172
|
description: string;
|
|
28017
28173
|
legalTradingName: string;
|
|
28018
28174
|
type: SellerMetadataType;
|
|
28175
|
+
kind: string;
|
|
28019
28176
|
website: string;
|
|
28020
28177
|
contactPreference: string;
|
|
28021
28178
|
images?: Array<{
|
|
@@ -28142,6 +28299,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
28142
28299
|
description: string;
|
|
28143
28300
|
legalTradingName: string;
|
|
28144
28301
|
type: SellerMetadataType;
|
|
28302
|
+
kind: string;
|
|
28145
28303
|
website: string;
|
|
28146
28304
|
contactPreference: string;
|
|
28147
28305
|
images?: Array<{
|
|
@@ -28379,6 +28537,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
28379
28537
|
description: string;
|
|
28380
28538
|
legalTradingName: string;
|
|
28381
28539
|
type: SellerMetadataType;
|
|
28540
|
+
kind: string;
|
|
28382
28541
|
website: string;
|
|
28383
28542
|
contactPreference: string;
|
|
28384
28543
|
images?: Array<{
|
|
@@ -28459,6 +28618,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
28459
28618
|
description: string;
|
|
28460
28619
|
legalTradingName: string;
|
|
28461
28620
|
type: SellerMetadataType;
|
|
28621
|
+
kind: string;
|
|
28462
28622
|
website: string;
|
|
28463
28623
|
contactPreference: string;
|
|
28464
28624
|
images?: Array<{
|
|
@@ -28580,6 +28740,7 @@ export const BaseSellerFieldsFragmentDoc = gql`
|
|
|
28580
28740
|
description
|
|
28581
28741
|
legalTradingName
|
|
28582
28742
|
type
|
|
28743
|
+
kind
|
|
28583
28744
|
website
|
|
28584
28745
|
images {
|
|
28585
28746
|
...SellerMetadataMediaFields
|