@bosonprotocol/core-sdk 1.25.0-alpha.28 → 1.25.0-alpha.29

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/src/subgraph.ts CHANGED
@@ -3450,6 +3450,7 @@ export type PendingSeller = {
3450
3450
  authTokenType?: Maybe<Scalars["Int"]>;
3451
3451
  clerk?: Maybe<Scalars["Bytes"]>;
3452
3452
  id: Scalars["ID"];
3453
+ metadataUri: Scalars["String"];
3453
3454
  seller: Seller;
3454
3455
  };
3455
3456
 
@@ -3498,6 +3499,26 @@ export type PendingSeller_Filter = {
3498
3499
  id_lte?: InputMaybe<Scalars["ID"]>;
3499
3500
  id_not?: InputMaybe<Scalars["ID"]>;
3500
3501
  id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
3502
+ metadataUri?: InputMaybe<Scalars["String"]>;
3503
+ metadataUri_contains?: InputMaybe<Scalars["String"]>;
3504
+ metadataUri_contains_nocase?: InputMaybe<Scalars["String"]>;
3505
+ metadataUri_ends_with?: InputMaybe<Scalars["String"]>;
3506
+ metadataUri_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3507
+ metadataUri_gt?: InputMaybe<Scalars["String"]>;
3508
+ metadataUri_gte?: InputMaybe<Scalars["String"]>;
3509
+ metadataUri_in?: InputMaybe<Array<Scalars["String"]>>;
3510
+ metadataUri_lt?: InputMaybe<Scalars["String"]>;
3511
+ metadataUri_lte?: InputMaybe<Scalars["String"]>;
3512
+ metadataUri_not?: InputMaybe<Scalars["String"]>;
3513
+ metadataUri_not_contains?: InputMaybe<Scalars["String"]>;
3514
+ metadataUri_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3515
+ metadataUri_not_ends_with?: InputMaybe<Scalars["String"]>;
3516
+ metadataUri_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3517
+ metadataUri_not_in?: InputMaybe<Array<Scalars["String"]>>;
3518
+ metadataUri_not_starts_with?: InputMaybe<Scalars["String"]>;
3519
+ metadataUri_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3520
+ metadataUri_starts_with?: InputMaybe<Scalars["String"]>;
3521
+ metadataUri_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3501
3522
  seller?: InputMaybe<Scalars["String"]>;
3502
3523
  seller_?: InputMaybe<Seller_Filter>;
3503
3524
  seller_contains?: InputMaybe<Scalars["String"]>;
@@ -3528,6 +3549,7 @@ export enum PendingSeller_OrderBy {
3528
3549
  AuthTokenType = "authTokenType",
3529
3550
  Clerk = "clerk",
3530
3551
  Id = "id",
3552
+ MetadataUri = "metadataUri",
3531
3553
  Seller = "seller"
3532
3554
  }
3533
3555
 
@@ -6153,6 +6175,7 @@ export enum ProductV1Section_OrderBy {
6153
6175
  export type ProductV1Seller = {
6154
6176
  __typename?: "ProductV1Seller";
6155
6177
  contactLinks?: Maybe<Array<ProductV1SellerContactLink>>;
6178
+ contactPreference?: Maybe<Scalars["String"]>;
6156
6179
  defaultVersion: Scalars["Int"];
6157
6180
  description?: Maybe<Scalars["String"]>;
6158
6181
  externalUrl?: Maybe<Scalars["String"]>;
@@ -6260,6 +6283,26 @@ export type ProductV1Seller_Filter = {
6260
6283
  contactLinks_not?: InputMaybe<Array<Scalars["String"]>>;
6261
6284
  contactLinks_not_contains?: InputMaybe<Array<Scalars["String"]>>;
6262
6285
  contactLinks_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
6286
+ contactPreference?: InputMaybe<Scalars["String"]>;
6287
+ contactPreference_contains?: InputMaybe<Scalars["String"]>;
6288
+ contactPreference_contains_nocase?: InputMaybe<Scalars["String"]>;
6289
+ contactPreference_ends_with?: InputMaybe<Scalars["String"]>;
6290
+ contactPreference_ends_with_nocase?: InputMaybe<Scalars["String"]>;
6291
+ contactPreference_gt?: InputMaybe<Scalars["String"]>;
6292
+ contactPreference_gte?: InputMaybe<Scalars["String"]>;
6293
+ contactPreference_in?: InputMaybe<Array<Scalars["String"]>>;
6294
+ contactPreference_lt?: InputMaybe<Scalars["String"]>;
6295
+ contactPreference_lte?: InputMaybe<Scalars["String"]>;
6296
+ contactPreference_not?: InputMaybe<Scalars["String"]>;
6297
+ contactPreference_not_contains?: InputMaybe<Scalars["String"]>;
6298
+ contactPreference_not_contains_nocase?: InputMaybe<Scalars["String"]>;
6299
+ contactPreference_not_ends_with?: InputMaybe<Scalars["String"]>;
6300
+ contactPreference_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
6301
+ contactPreference_not_in?: InputMaybe<Array<Scalars["String"]>>;
6302
+ contactPreference_not_starts_with?: InputMaybe<Scalars["String"]>;
6303
+ contactPreference_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
6304
+ contactPreference_starts_with?: InputMaybe<Scalars["String"]>;
6305
+ contactPreference_starts_with_nocase?: InputMaybe<Scalars["String"]>;
6263
6306
  defaultVersion?: InputMaybe<Scalars["Int"]>;
6264
6307
  defaultVersion_gt?: InputMaybe<Scalars["Int"]>;
6265
6308
  defaultVersion_gte?: InputMaybe<Scalars["Int"]>;
@@ -6408,6 +6451,7 @@ export type ProductV1Seller_Filter = {
6408
6451
 
6409
6452
  export enum ProductV1Seller_OrderBy {
6410
6453
  ContactLinks = "contactLinks",
6454
+ ContactPreference = "contactPreference",
6411
6455
  DefaultVersion = "defaultVersion",
6412
6456
  Description = "description",
6413
6457
  ExternalUrl = "externalUrl",
@@ -7573,6 +7617,7 @@ export type Seller = Account & {
7573
7617
  funds: Array<FundsEntity>;
7574
7618
  id: Scalars["ID"];
7575
7619
  logs: Array<EventLog>;
7620
+ metadataUri: Scalars["String"];
7576
7621
  offers: Array<Offer>;
7577
7622
  pendingSeller?: Maybe<PendingSeller>;
7578
7623
  /** Percentage as integer, to get decimals divide by 10000. E.g. 1 = 0.01%, 10000 = 100% */
@@ -7685,6 +7730,26 @@ export type Seller_Filter = {
7685
7730
  id_lte?: InputMaybe<Scalars["ID"]>;
7686
7731
  id_not?: InputMaybe<Scalars["ID"]>;
7687
7732
  id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
7733
+ metadataUri?: InputMaybe<Scalars["String"]>;
7734
+ metadataUri_contains?: InputMaybe<Scalars["String"]>;
7735
+ metadataUri_contains_nocase?: InputMaybe<Scalars["String"]>;
7736
+ metadataUri_ends_with?: InputMaybe<Scalars["String"]>;
7737
+ metadataUri_ends_with_nocase?: InputMaybe<Scalars["String"]>;
7738
+ metadataUri_gt?: InputMaybe<Scalars["String"]>;
7739
+ metadataUri_gte?: InputMaybe<Scalars["String"]>;
7740
+ metadataUri_in?: InputMaybe<Array<Scalars["String"]>>;
7741
+ metadataUri_lt?: InputMaybe<Scalars["String"]>;
7742
+ metadataUri_lte?: InputMaybe<Scalars["String"]>;
7743
+ metadataUri_not?: InputMaybe<Scalars["String"]>;
7744
+ metadataUri_not_contains?: InputMaybe<Scalars["String"]>;
7745
+ metadataUri_not_contains_nocase?: InputMaybe<Scalars["String"]>;
7746
+ metadataUri_not_ends_with?: InputMaybe<Scalars["String"]>;
7747
+ metadataUri_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
7748
+ metadataUri_not_in?: InputMaybe<Array<Scalars["String"]>>;
7749
+ metadataUri_not_starts_with?: InputMaybe<Scalars["String"]>;
7750
+ metadataUri_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
7751
+ metadataUri_starts_with?: InputMaybe<Scalars["String"]>;
7752
+ metadataUri_starts_with_nocase?: InputMaybe<Scalars["String"]>;
7688
7753
  offers_?: InputMaybe<Offer_Filter>;
7689
7754
  pendingSeller_?: InputMaybe<PendingSeller_Filter>;
7690
7755
  royaltyPercentage?: InputMaybe<Scalars["BigInt"]>;
@@ -7729,6 +7794,7 @@ export enum Seller_OrderBy {
7729
7794
  Funds = "funds",
7730
7795
  Id = "id",
7731
7796
  Logs = "logs",
7797
+ MetadataUri = "metadataUri",
7732
7798
  Offers = "offers",
7733
7799
  PendingSeller = "pendingSeller",
7734
7800
  RoyaltyPercentage = "royaltyPercentage",
@@ -8546,6 +8612,7 @@ export type GetSellerByIdQueryQuery = {
8546
8612
  active: boolean;
8547
8613
  contractURI: string;
8548
8614
  royaltyPercentage: string;
8615
+ metadataUri: string;
8549
8616
  pendingSeller?: {
8550
8617
  __typename?: "PendingSeller";
8551
8618
  assistant?: string | null;
@@ -8617,6 +8684,7 @@ export type GetSellerByIdQueryQuery = {
8617
8684
  active: boolean;
8618
8685
  contractURI: string;
8619
8686
  royaltyPercentage: string;
8687
+ metadataUri: string;
8620
8688
  };
8621
8689
  exchangeToken: {
8622
8690
  __typename?: "ExchangeToken";
@@ -8796,6 +8864,7 @@ export type GetSellerByIdQueryQuery = {
8796
8864
  externalUrl?: string | null;
8797
8865
  tokenId?: string | null;
8798
8866
  sellerId?: string | null;
8867
+ contactPreference?: string | null;
8799
8868
  images?: Array<{
8800
8869
  __typename?: "ProductV1Media";
8801
8870
  id: string;
@@ -8824,6 +8893,7 @@ export type GetSellerByIdQueryQuery = {
8824
8893
  active: boolean;
8825
8894
  contractURI: string;
8826
8895
  royaltyPercentage: string;
8896
+ metadataUri: string;
8827
8897
  };
8828
8898
  } | null;
8829
8899
  };
@@ -8842,6 +8912,7 @@ export type GetSellerByIdQueryQuery = {
8842
8912
  externalUrl?: string | null;
8843
8913
  tokenId?: string | null;
8844
8914
  sellerId?: string | null;
8915
+ contactPreference?: string | null;
8845
8916
  images?: Array<{
8846
8917
  __typename?: "ProductV1Media";
8847
8918
  id: string;
@@ -8870,6 +8941,7 @@ export type GetSellerByIdQueryQuery = {
8870
8941
  active: boolean;
8871
8942
  contractURI: string;
8872
8943
  royaltyPercentage: string;
8944
+ metadataUri: string;
8873
8945
  };
8874
8946
  };
8875
8947
  exchangePolicy: {
@@ -8961,6 +9033,7 @@ export type GetSellerByIdQueryQuery = {
8961
9033
  active: boolean;
8962
9034
  contractURI: string;
8963
9035
  royaltyPercentage: string;
9036
+ metadataUri: string;
8964
9037
  };
8965
9038
  }>;
8966
9039
  logs?: Array<
@@ -9083,6 +9156,7 @@ export type GetSellersQueryQuery = {
9083
9156
  active: boolean;
9084
9157
  contractURI: string;
9085
9158
  royaltyPercentage: string;
9159
+ metadataUri: string;
9086
9160
  pendingSeller?: {
9087
9161
  __typename?: "PendingSeller";
9088
9162
  assistant?: string | null;
@@ -9154,6 +9228,7 @@ export type GetSellersQueryQuery = {
9154
9228
  active: boolean;
9155
9229
  contractURI: string;
9156
9230
  royaltyPercentage: string;
9231
+ metadataUri: string;
9157
9232
  };
9158
9233
  exchangeToken: {
9159
9234
  __typename?: "ExchangeToken";
@@ -9333,6 +9408,7 @@ export type GetSellersQueryQuery = {
9333
9408
  externalUrl?: string | null;
9334
9409
  tokenId?: string | null;
9335
9410
  sellerId?: string | null;
9411
+ contactPreference?: string | null;
9336
9412
  images?: Array<{
9337
9413
  __typename?: "ProductV1Media";
9338
9414
  id: string;
@@ -9361,6 +9437,7 @@ export type GetSellersQueryQuery = {
9361
9437
  active: boolean;
9362
9438
  contractURI: string;
9363
9439
  royaltyPercentage: string;
9440
+ metadataUri: string;
9364
9441
  };
9365
9442
  } | null;
9366
9443
  };
@@ -9379,6 +9456,7 @@ export type GetSellersQueryQuery = {
9379
9456
  externalUrl?: string | null;
9380
9457
  tokenId?: string | null;
9381
9458
  sellerId?: string | null;
9459
+ contactPreference?: string | null;
9382
9460
  images?: Array<{
9383
9461
  __typename?: "ProductV1Media";
9384
9462
  id: string;
@@ -9407,6 +9485,7 @@ export type GetSellersQueryQuery = {
9407
9485
  active: boolean;
9408
9486
  contractURI: string;
9409
9487
  royaltyPercentage: string;
9488
+ metadataUri: string;
9410
9489
  };
9411
9490
  };
9412
9491
  exchangePolicy: {
@@ -9498,6 +9577,7 @@ export type GetSellersQueryQuery = {
9498
9577
  active: boolean;
9499
9578
  contractURI: string;
9500
9579
  royaltyPercentage: string;
9580
+ metadataUri: string;
9501
9581
  };
9502
9582
  }>;
9503
9583
  logs?: Array<
@@ -9664,6 +9744,7 @@ export type GetBuyerByIdQueryQuery = {
9664
9744
  active: boolean;
9665
9745
  contractURI: string;
9666
9746
  royaltyPercentage: string;
9747
+ metadataUri: string;
9667
9748
  };
9668
9749
  }>;
9669
9750
  logs?: Array<
@@ -9840,6 +9921,7 @@ export type GetBuyersQueryQuery = {
9840
9921
  active: boolean;
9841
9922
  contractURI: string;
9842
9923
  royaltyPercentage: string;
9924
+ metadataUri: string;
9843
9925
  };
9844
9926
  }>;
9845
9927
  logs?: Array<
@@ -9999,6 +10081,7 @@ export type GetDisputeResolverByIdQueryQuery = {
9999
10081
  active: boolean;
10000
10082
  contractURI: string;
10001
10083
  royaltyPercentage: string;
10084
+ metadataUri: string;
10002
10085
  };
10003
10086
  exchangeToken: {
10004
10087
  __typename?: "ExchangeToken";
@@ -10178,6 +10261,7 @@ export type GetDisputeResolverByIdQueryQuery = {
10178
10261
  externalUrl?: string | null;
10179
10262
  tokenId?: string | null;
10180
10263
  sellerId?: string | null;
10264
+ contactPreference?: string | null;
10181
10265
  images?: Array<{
10182
10266
  __typename?: "ProductV1Media";
10183
10267
  id: string;
@@ -10206,6 +10290,7 @@ export type GetDisputeResolverByIdQueryQuery = {
10206
10290
  active: boolean;
10207
10291
  contractURI: string;
10208
10292
  royaltyPercentage: string;
10293
+ metadataUri: string;
10209
10294
  };
10210
10295
  } | null;
10211
10296
  };
@@ -10224,6 +10309,7 @@ export type GetDisputeResolverByIdQueryQuery = {
10224
10309
  externalUrl?: string | null;
10225
10310
  tokenId?: string | null;
10226
10311
  sellerId?: string | null;
10312
+ contactPreference?: string | null;
10227
10313
  images?: Array<{
10228
10314
  __typename?: "ProductV1Media";
10229
10315
  id: string;
@@ -10252,6 +10338,7 @@ export type GetDisputeResolverByIdQueryQuery = {
10252
10338
  active: boolean;
10253
10339
  contractURI: string;
10254
10340
  royaltyPercentage: string;
10341
+ metadataUri: string;
10255
10342
  };
10256
10343
  };
10257
10344
  exchangePolicy: {
@@ -10471,6 +10558,7 @@ export type GetDisputeResolversQueryQuery = {
10471
10558
  active: boolean;
10472
10559
  contractURI: string;
10473
10560
  royaltyPercentage: string;
10561
+ metadataUri: string;
10474
10562
  };
10475
10563
  exchangeToken: {
10476
10564
  __typename?: "ExchangeToken";
@@ -10650,6 +10738,7 @@ export type GetDisputeResolversQueryQuery = {
10650
10738
  externalUrl?: string | null;
10651
10739
  tokenId?: string | null;
10652
10740
  sellerId?: string | null;
10741
+ contactPreference?: string | null;
10653
10742
  images?: Array<{
10654
10743
  __typename?: "ProductV1Media";
10655
10744
  id: string;
@@ -10678,6 +10767,7 @@ export type GetDisputeResolversQueryQuery = {
10678
10767
  active: boolean;
10679
10768
  contractURI: string;
10680
10769
  royaltyPercentage: string;
10770
+ metadataUri: string;
10681
10771
  };
10682
10772
  } | null;
10683
10773
  };
@@ -10696,6 +10786,7 @@ export type GetDisputeResolversQueryQuery = {
10696
10786
  externalUrl?: string | null;
10697
10787
  tokenId?: string | null;
10698
10788
  sellerId?: string | null;
10789
+ contactPreference?: string | null;
10699
10790
  images?: Array<{
10700
10791
  __typename?: "ProductV1Media";
10701
10792
  id: string;
@@ -10724,6 +10815,7 @@ export type GetDisputeResolversQueryQuery = {
10724
10815
  active: boolean;
10725
10816
  contractURI: string;
10726
10817
  royaltyPercentage: string;
10818
+ metadataUri: string;
10727
10819
  };
10728
10820
  };
10729
10821
  exchangePolicy: {
@@ -10868,6 +10960,7 @@ export type SellerFieldsFragment = {
10868
10960
  active: boolean;
10869
10961
  contractURI: string;
10870
10962
  royaltyPercentage: string;
10963
+ metadataUri: string;
10871
10964
  pendingSeller?: {
10872
10965
  __typename?: "PendingSeller";
10873
10966
  assistant?: string | null;
@@ -10939,6 +11032,7 @@ export type SellerFieldsFragment = {
10939
11032
  active: boolean;
10940
11033
  contractURI: string;
10941
11034
  royaltyPercentage: string;
11035
+ metadataUri: string;
10942
11036
  };
10943
11037
  exchangeToken: {
10944
11038
  __typename?: "ExchangeToken";
@@ -11114,6 +11208,7 @@ export type SellerFieldsFragment = {
11114
11208
  externalUrl?: string | null;
11115
11209
  tokenId?: string | null;
11116
11210
  sellerId?: string | null;
11211
+ contactPreference?: string | null;
11117
11212
  images?: Array<{
11118
11213
  __typename?: "ProductV1Media";
11119
11214
  id: string;
@@ -11142,6 +11237,7 @@ export type SellerFieldsFragment = {
11142
11237
  active: boolean;
11143
11238
  contractURI: string;
11144
11239
  royaltyPercentage: string;
11240
+ metadataUri: string;
11145
11241
  };
11146
11242
  } | null;
11147
11243
  };
@@ -11160,6 +11256,7 @@ export type SellerFieldsFragment = {
11160
11256
  externalUrl?: string | null;
11161
11257
  tokenId?: string | null;
11162
11258
  sellerId?: string | null;
11259
+ contactPreference?: string | null;
11163
11260
  images?: Array<{
11164
11261
  __typename?: "ProductV1Media";
11165
11262
  id: string;
@@ -11188,6 +11285,7 @@ export type SellerFieldsFragment = {
11188
11285
  active: boolean;
11189
11286
  contractURI: string;
11190
11287
  royaltyPercentage: string;
11288
+ metadataUri: string;
11191
11289
  };
11192
11290
  };
11193
11291
  exchangePolicy: {
@@ -11279,6 +11377,7 @@ export type SellerFieldsFragment = {
11279
11377
  active: boolean;
11280
11378
  contractURI: string;
11281
11379
  royaltyPercentage: string;
11380
+ metadataUri: string;
11282
11381
  };
11283
11382
  }>;
11284
11383
  logs?: Array<
@@ -11366,6 +11465,7 @@ export type BaseSellerFieldsFragment = {
11366
11465
  active: boolean;
11367
11466
  contractURI: string;
11368
11467
  royaltyPercentage: string;
11468
+ metadataUri: string;
11369
11469
  };
11370
11470
 
11371
11471
  export type PendingSellerFieldsFragment = {
@@ -11444,6 +11544,7 @@ export type BuyerFieldsFragment = {
11444
11544
  active: boolean;
11445
11545
  contractURI: string;
11446
11546
  royaltyPercentage: string;
11547
+ metadataUri: string;
11447
11548
  };
11448
11549
  }>;
11449
11550
  logs?: Array<
@@ -11591,6 +11692,7 @@ export type DisputeResolverFieldsFragment = {
11591
11692
  active: boolean;
11592
11693
  contractURI: string;
11593
11694
  royaltyPercentage: string;
11695
+ metadataUri: string;
11594
11696
  };
11595
11697
  exchangeToken: {
11596
11698
  __typename?: "ExchangeToken";
@@ -11766,6 +11868,7 @@ export type DisputeResolverFieldsFragment = {
11766
11868
  externalUrl?: string | null;
11767
11869
  tokenId?: string | null;
11768
11870
  sellerId?: string | null;
11871
+ contactPreference?: string | null;
11769
11872
  images?: Array<{
11770
11873
  __typename?: "ProductV1Media";
11771
11874
  id: string;
@@ -11794,6 +11897,7 @@ export type DisputeResolverFieldsFragment = {
11794
11897
  active: boolean;
11795
11898
  contractURI: string;
11796
11899
  royaltyPercentage: string;
11900
+ metadataUri: string;
11797
11901
  };
11798
11902
  } | null;
11799
11903
  };
@@ -11812,6 +11916,7 @@ export type DisputeResolverFieldsFragment = {
11812
11916
  externalUrl?: string | null;
11813
11917
  tokenId?: string | null;
11814
11918
  sellerId?: string | null;
11919
+ contactPreference?: string | null;
11815
11920
  images?: Array<{
11816
11921
  __typename?: "ProductV1Media";
11817
11922
  id: string;
@@ -11840,6 +11945,7 @@ export type DisputeResolverFieldsFragment = {
11840
11945
  active: boolean;
11841
11946
  contractURI: string;
11842
11947
  royaltyPercentage: string;
11948
+ metadataUri: string;
11843
11949
  };
11844
11950
  };
11845
11951
  exchangePolicy: {
@@ -12104,6 +12210,7 @@ export type GetDisputeByIdQueryQuery = {
12104
12210
  active: boolean;
12105
12211
  contractURI: string;
12106
12212
  royaltyPercentage: string;
12213
+ metadataUri: string;
12107
12214
  };
12108
12215
  };
12109
12216
  seller: {
@@ -12119,6 +12226,7 @@ export type GetDisputeByIdQueryQuery = {
12119
12226
  active: boolean;
12120
12227
  contractURI: string;
12121
12228
  royaltyPercentage: string;
12229
+ metadataUri: string;
12122
12230
  };
12123
12231
  buyer: {
12124
12232
  __typename?: "Buyer";
@@ -12201,6 +12309,7 @@ export type GetDisputesQueryQuery = {
12201
12309
  active: boolean;
12202
12310
  contractURI: string;
12203
12311
  royaltyPercentage: string;
12312
+ metadataUri: string;
12204
12313
  };
12205
12314
  };
12206
12315
  seller: {
@@ -12216,6 +12325,7 @@ export type GetDisputesQueryQuery = {
12216
12325
  active: boolean;
12217
12326
  contractURI: string;
12218
12327
  royaltyPercentage: string;
12328
+ metadataUri: string;
12219
12329
  };
12220
12330
  buyer: {
12221
12331
  __typename?: "Buyer";
@@ -12288,6 +12398,7 @@ export type DisputeFieldsFragment = {
12288
12398
  active: boolean;
12289
12399
  contractURI: string;
12290
12400
  royaltyPercentage: string;
12401
+ metadataUri: string;
12291
12402
  };
12292
12403
  };
12293
12404
  seller: {
@@ -12303,6 +12414,7 @@ export type DisputeFieldsFragment = {
12303
12414
  active: boolean;
12304
12415
  contractURI: string;
12305
12416
  royaltyPercentage: string;
12417
+ metadataUri: string;
12306
12418
  };
12307
12419
  buyer: { __typename?: "Buyer"; id: string; wallet: string; active: boolean };
12308
12420
  };
@@ -12402,6 +12514,7 @@ export type GetExchangeTokenByIdQueryQuery = {
12402
12514
  active: boolean;
12403
12515
  contractURI: string;
12404
12516
  royaltyPercentage: string;
12517
+ metadataUri: string;
12405
12518
  };
12406
12519
  exchangeToken: {
12407
12520
  __typename?: "ExchangeToken";
@@ -12581,6 +12694,7 @@ export type GetExchangeTokenByIdQueryQuery = {
12581
12694
  externalUrl?: string | null;
12582
12695
  tokenId?: string | null;
12583
12696
  sellerId?: string | null;
12697
+ contactPreference?: string | null;
12584
12698
  images?: Array<{
12585
12699
  __typename?: "ProductV1Media";
12586
12700
  id: string;
@@ -12609,6 +12723,7 @@ export type GetExchangeTokenByIdQueryQuery = {
12609
12723
  active: boolean;
12610
12724
  contractURI: string;
12611
12725
  royaltyPercentage: string;
12726
+ metadataUri: string;
12612
12727
  };
12613
12728
  } | null;
12614
12729
  };
@@ -12627,6 +12742,7 @@ export type GetExchangeTokenByIdQueryQuery = {
12627
12742
  externalUrl?: string | null;
12628
12743
  tokenId?: string | null;
12629
12744
  sellerId?: string | null;
12745
+ contactPreference?: string | null;
12630
12746
  images?: Array<{
12631
12747
  __typename?: "ProductV1Media";
12632
12748
  id: string;
@@ -12655,6 +12771,7 @@ export type GetExchangeTokenByIdQueryQuery = {
12655
12771
  active: boolean;
12656
12772
  contractURI: string;
12657
12773
  royaltyPercentage: string;
12774
+ metadataUri: string;
12658
12775
  };
12659
12776
  };
12660
12777
  exchangePolicy: {
@@ -12785,6 +12902,7 @@ export type GetExchangeTokensQueryQuery = {
12785
12902
  active: boolean;
12786
12903
  contractURI: string;
12787
12904
  royaltyPercentage: string;
12905
+ metadataUri: string;
12788
12906
  };
12789
12907
  exchangeToken: {
12790
12908
  __typename?: "ExchangeToken";
@@ -12964,6 +13082,7 @@ export type GetExchangeTokensQueryQuery = {
12964
13082
  externalUrl?: string | null;
12965
13083
  tokenId?: string | null;
12966
13084
  sellerId?: string | null;
13085
+ contactPreference?: string | null;
12967
13086
  images?: Array<{
12968
13087
  __typename?: "ProductV1Media";
12969
13088
  id: string;
@@ -12992,6 +13111,7 @@ export type GetExchangeTokensQueryQuery = {
12992
13111
  active: boolean;
12993
13112
  contractURI: string;
12994
13113
  royaltyPercentage: string;
13114
+ metadataUri: string;
12995
13115
  };
12996
13116
  } | null;
12997
13117
  };
@@ -13010,6 +13130,7 @@ export type GetExchangeTokensQueryQuery = {
13010
13130
  externalUrl?: string | null;
13011
13131
  tokenId?: string | null;
13012
13132
  sellerId?: string | null;
13133
+ contactPreference?: string | null;
13013
13134
  images?: Array<{
13014
13135
  __typename?: "ProductV1Media";
13015
13136
  id: string;
@@ -13038,6 +13159,7 @@ export type GetExchangeTokensQueryQuery = {
13038
13159
  active: boolean;
13039
13160
  contractURI: string;
13040
13161
  royaltyPercentage: string;
13162
+ metadataUri: string;
13041
13163
  };
13042
13164
  };
13043
13165
  exchangePolicy: {
@@ -13146,6 +13268,7 @@ export type ExchangeTokenFieldsFragment = {
13146
13268
  active: boolean;
13147
13269
  contractURI: string;
13148
13270
  royaltyPercentage: string;
13271
+ metadataUri: string;
13149
13272
  };
13150
13273
  exchangeToken: {
13151
13274
  __typename?: "ExchangeToken";
@@ -13321,6 +13444,7 @@ export type ExchangeTokenFieldsFragment = {
13321
13444
  externalUrl?: string | null;
13322
13445
  tokenId?: string | null;
13323
13446
  sellerId?: string | null;
13447
+ contactPreference?: string | null;
13324
13448
  images?: Array<{
13325
13449
  __typename?: "ProductV1Media";
13326
13450
  id: string;
@@ -13349,6 +13473,7 @@ export type ExchangeTokenFieldsFragment = {
13349
13473
  active: boolean;
13350
13474
  contractURI: string;
13351
13475
  royaltyPercentage: string;
13476
+ metadataUri: string;
13352
13477
  };
13353
13478
  } | null;
13354
13479
  };
@@ -13367,6 +13492,7 @@ export type ExchangeTokenFieldsFragment = {
13367
13492
  externalUrl?: string | null;
13368
13493
  tokenId?: string | null;
13369
13494
  sellerId?: string | null;
13495
+ contactPreference?: string | null;
13370
13496
  images?: Array<{
13371
13497
  __typename?: "ProductV1Media";
13372
13498
  id: string;
@@ -13395,6 +13521,7 @@ export type ExchangeTokenFieldsFragment = {
13395
13521
  active: boolean;
13396
13522
  contractURI: string;
13397
13523
  royaltyPercentage: string;
13524
+ metadataUri: string;
13398
13525
  };
13399
13526
  };
13400
13527
  exchangePolicy: {
@@ -13686,6 +13813,7 @@ export type GetExchangeByIdQueryQuery = {
13686
13813
  active: boolean;
13687
13814
  contractURI: string;
13688
13815
  royaltyPercentage: string;
13816
+ metadataUri: string;
13689
13817
  };
13690
13818
  exchangeToken: {
13691
13819
  __typename?: "ExchangeToken";
@@ -13865,6 +13993,7 @@ export type GetExchangeByIdQueryQuery = {
13865
13993
  externalUrl?: string | null;
13866
13994
  tokenId?: string | null;
13867
13995
  sellerId?: string | null;
13996
+ contactPreference?: string | null;
13868
13997
  images?: Array<{
13869
13998
  __typename?: "ProductV1Media";
13870
13999
  id: string;
@@ -13893,6 +14022,7 @@ export type GetExchangeByIdQueryQuery = {
13893
14022
  active: boolean;
13894
14023
  contractURI: string;
13895
14024
  royaltyPercentage: string;
14025
+ metadataUri: string;
13896
14026
  };
13897
14027
  } | null;
13898
14028
  };
@@ -13911,6 +14041,7 @@ export type GetExchangeByIdQueryQuery = {
13911
14041
  externalUrl?: string | null;
13912
14042
  tokenId?: string | null;
13913
14043
  sellerId?: string | null;
14044
+ contactPreference?: string | null;
13914
14045
  images?: Array<{
13915
14046
  __typename?: "ProductV1Media";
13916
14047
  id: string;
@@ -13939,6 +14070,7 @@ export type GetExchangeByIdQueryQuery = {
13939
14070
  active: boolean;
13940
14071
  contractURI: string;
13941
14072
  royaltyPercentage: string;
14073
+ metadataUri: string;
13942
14074
  };
13943
14075
  };
13944
14076
  exchangePolicy: {
@@ -14016,6 +14148,7 @@ export type GetExchangeByIdQueryQuery = {
14016
14148
  active: boolean;
14017
14149
  contractURI: string;
14018
14150
  royaltyPercentage: string;
14151
+ metadataUri: string;
14019
14152
  };
14020
14153
  } | null;
14021
14154
  };
@@ -14093,6 +14226,7 @@ export type GetExchangesQueryQuery = {
14093
14226
  active: boolean;
14094
14227
  contractURI: string;
14095
14228
  royaltyPercentage: string;
14229
+ metadataUri: string;
14096
14230
  };
14097
14231
  exchangeToken: {
14098
14232
  __typename?: "ExchangeToken";
@@ -14272,6 +14406,7 @@ export type GetExchangesQueryQuery = {
14272
14406
  externalUrl?: string | null;
14273
14407
  tokenId?: string | null;
14274
14408
  sellerId?: string | null;
14409
+ contactPreference?: string | null;
14275
14410
  images?: Array<{
14276
14411
  __typename?: "ProductV1Media";
14277
14412
  id: string;
@@ -14300,6 +14435,7 @@ export type GetExchangesQueryQuery = {
14300
14435
  active: boolean;
14301
14436
  contractURI: string;
14302
14437
  royaltyPercentage: string;
14438
+ metadataUri: string;
14303
14439
  };
14304
14440
  } | null;
14305
14441
  };
@@ -14318,6 +14454,7 @@ export type GetExchangesQueryQuery = {
14318
14454
  externalUrl?: string | null;
14319
14455
  tokenId?: string | null;
14320
14456
  sellerId?: string | null;
14457
+ contactPreference?: string | null;
14321
14458
  images?: Array<{
14322
14459
  __typename?: "ProductV1Media";
14323
14460
  id: string;
@@ -14346,6 +14483,7 @@ export type GetExchangesQueryQuery = {
14346
14483
  active: boolean;
14347
14484
  contractURI: string;
14348
14485
  royaltyPercentage: string;
14486
+ metadataUri: string;
14349
14487
  };
14350
14488
  };
14351
14489
  exchangePolicy: {
@@ -14423,6 +14561,7 @@ export type GetExchangesQueryQuery = {
14423
14561
  active: boolean;
14424
14562
  contractURI: string;
14425
14563
  royaltyPercentage: string;
14564
+ metadataUri: string;
14426
14565
  };
14427
14566
  }>;
14428
14567
  };
@@ -14490,6 +14629,7 @@ export type ExchangeFieldsFragment = {
14490
14629
  active: boolean;
14491
14630
  contractURI: string;
14492
14631
  royaltyPercentage: string;
14632
+ metadataUri: string;
14493
14633
  };
14494
14634
  exchangeToken: {
14495
14635
  __typename?: "ExchangeToken";
@@ -14665,6 +14805,7 @@ export type ExchangeFieldsFragment = {
14665
14805
  externalUrl?: string | null;
14666
14806
  tokenId?: string | null;
14667
14807
  sellerId?: string | null;
14808
+ contactPreference?: string | null;
14668
14809
  images?: Array<{
14669
14810
  __typename?: "ProductV1Media";
14670
14811
  id: string;
@@ -14693,6 +14834,7 @@ export type ExchangeFieldsFragment = {
14693
14834
  active: boolean;
14694
14835
  contractURI: string;
14695
14836
  royaltyPercentage: string;
14837
+ metadataUri: string;
14696
14838
  };
14697
14839
  } | null;
14698
14840
  };
@@ -14711,6 +14853,7 @@ export type ExchangeFieldsFragment = {
14711
14853
  externalUrl?: string | null;
14712
14854
  tokenId?: string | null;
14713
14855
  sellerId?: string | null;
14856
+ contactPreference?: string | null;
14714
14857
  images?: Array<{
14715
14858
  __typename?: "ProductV1Media";
14716
14859
  id: string;
@@ -14739,6 +14882,7 @@ export type ExchangeFieldsFragment = {
14739
14882
  active: boolean;
14740
14883
  contractURI: string;
14741
14884
  royaltyPercentage: string;
14885
+ metadataUri: string;
14742
14886
  };
14743
14887
  };
14744
14888
  exchangePolicy: {
@@ -14811,6 +14955,7 @@ export type ExchangeFieldsFragment = {
14811
14955
  active: boolean;
14812
14956
  contractURI: string;
14813
14957
  royaltyPercentage: string;
14958
+ metadataUri: string;
14814
14959
  };
14815
14960
  };
14816
14961
 
@@ -14857,6 +15002,7 @@ export type BaseExchangeFieldsFragment = {
14857
15002
  active: boolean;
14858
15003
  contractURI: string;
14859
15004
  royaltyPercentage: string;
15005
+ metadataUri: string;
14860
15006
  };
14861
15007
  };
14862
15008
 
@@ -15033,6 +15179,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
15033
15179
  active: boolean;
15034
15180
  contractURI: string;
15035
15181
  royaltyPercentage: string;
15182
+ metadataUri: string;
15036
15183
  };
15037
15184
  exchangeToken: {
15038
15185
  __typename?: "ExchangeToken";
@@ -15212,6 +15359,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
15212
15359
  externalUrl?: string | null;
15213
15360
  tokenId?: string | null;
15214
15361
  sellerId?: string | null;
15362
+ contactPreference?: string | null;
15215
15363
  images?: Array<{
15216
15364
  __typename?: "ProductV1Media";
15217
15365
  id: string;
@@ -15240,6 +15388,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
15240
15388
  active: boolean;
15241
15389
  contractURI: string;
15242
15390
  royaltyPercentage: string;
15391
+ metadataUri: string;
15243
15392
  };
15244
15393
  } | null;
15245
15394
  };
@@ -15258,6 +15407,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
15258
15407
  externalUrl?: string | null;
15259
15408
  tokenId?: string | null;
15260
15409
  sellerId?: string | null;
15410
+ contactPreference?: string | null;
15261
15411
  images?: Array<{
15262
15412
  __typename?: "ProductV1Media";
15263
15413
  id: string;
@@ -15286,6 +15436,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
15286
15436
  active: boolean;
15287
15437
  contractURI: string;
15288
15438
  royaltyPercentage: string;
15439
+ metadataUri: string;
15289
15440
  };
15290
15441
  };
15291
15442
  exchangePolicy: {
@@ -15342,6 +15493,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
15342
15493
  active: boolean;
15343
15494
  contractURI: string;
15344
15495
  royaltyPercentage: string;
15496
+ metadataUri: string;
15345
15497
  };
15346
15498
  exchangeToken: {
15347
15499
  __typename?: "ExchangeToken";
@@ -15445,6 +15597,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
15445
15597
  active: boolean;
15446
15598
  contractURI: string;
15447
15599
  royaltyPercentage: string;
15600
+ metadataUri: string;
15448
15601
  };
15449
15602
  exchangeToken: {
15450
15603
  __typename?: "ExchangeToken";
@@ -15624,6 +15777,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
15624
15777
  externalUrl?: string | null;
15625
15778
  tokenId?: string | null;
15626
15779
  sellerId?: string | null;
15780
+ contactPreference?: string | null;
15627
15781
  images?: Array<{
15628
15782
  __typename?: "ProductV1Media";
15629
15783
  id: string;
@@ -15652,6 +15806,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
15652
15806
  active: boolean;
15653
15807
  contractURI: string;
15654
15808
  royaltyPercentage: string;
15809
+ metadataUri: string;
15655
15810
  };
15656
15811
  } | null;
15657
15812
  };
@@ -15670,6 +15825,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
15670
15825
  externalUrl?: string | null;
15671
15826
  tokenId?: string | null;
15672
15827
  sellerId?: string | null;
15828
+ contactPreference?: string | null;
15673
15829
  images?: Array<{
15674
15830
  __typename?: "ProductV1Media";
15675
15831
  id: string;
@@ -15698,6 +15854,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
15698
15854
  active: boolean;
15699
15855
  contractURI: string;
15700
15856
  royaltyPercentage: string;
15857
+ metadataUri: string;
15701
15858
  };
15702
15859
  };
15703
15860
  exchangePolicy: {
@@ -15754,6 +15911,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
15754
15911
  active: boolean;
15755
15912
  contractURI: string;
15756
15913
  royaltyPercentage: string;
15914
+ metadataUri: string;
15757
15915
  };
15758
15916
  exchangeToken: {
15759
15917
  __typename?: "ExchangeToken";
@@ -15847,6 +16005,7 @@ export type BaseMetadataEntityFieldsFragment = {
15847
16005
  active: boolean;
15848
16006
  contractURI: string;
15849
16007
  royaltyPercentage: string;
16008
+ metadataUri: string;
15850
16009
  };
15851
16010
  exchangeToken: {
15852
16011
  __typename?: "ExchangeToken";
@@ -16022,6 +16181,7 @@ export type BaseMetadataEntityFieldsFragment = {
16022
16181
  externalUrl?: string | null;
16023
16182
  tokenId?: string | null;
16024
16183
  sellerId?: string | null;
16184
+ contactPreference?: string | null;
16025
16185
  images?: Array<{
16026
16186
  __typename?: "ProductV1Media";
16027
16187
  id: string;
@@ -16050,6 +16210,7 @@ export type BaseMetadataEntityFieldsFragment = {
16050
16210
  active: boolean;
16051
16211
  contractURI: string;
16052
16212
  royaltyPercentage: string;
16213
+ metadataUri: string;
16053
16214
  };
16054
16215
  } | null;
16055
16216
  };
@@ -16068,6 +16229,7 @@ export type BaseMetadataEntityFieldsFragment = {
16068
16229
  externalUrl?: string | null;
16069
16230
  tokenId?: string | null;
16070
16231
  sellerId?: string | null;
16232
+ contactPreference?: string | null;
16071
16233
  images?: Array<{
16072
16234
  __typename?: "ProductV1Media";
16073
16235
  id: string;
@@ -16096,6 +16258,7 @@ export type BaseMetadataEntityFieldsFragment = {
16096
16258
  active: boolean;
16097
16259
  contractURI: string;
16098
16260
  royaltyPercentage: string;
16261
+ metadataUri: string;
16099
16262
  };
16100
16263
  };
16101
16264
  exchangePolicy: {
@@ -16152,6 +16315,7 @@ export type BaseMetadataEntityFieldsFragment = {
16152
16315
  active: boolean;
16153
16316
  contractURI: string;
16154
16317
  royaltyPercentage: string;
16318
+ metadataUri: string;
16155
16319
  };
16156
16320
  exchangeToken: {
16157
16321
  __typename?: "ExchangeToken";
@@ -16244,6 +16408,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
16244
16408
  active: boolean;
16245
16409
  contractURI: string;
16246
16410
  royaltyPercentage: string;
16411
+ metadataUri: string;
16247
16412
  };
16248
16413
  exchangeToken: {
16249
16414
  __typename?: "ExchangeToken";
@@ -16419,6 +16584,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
16419
16584
  externalUrl?: string | null;
16420
16585
  tokenId?: string | null;
16421
16586
  sellerId?: string | null;
16587
+ contactPreference?: string | null;
16422
16588
  images?: Array<{
16423
16589
  __typename?: "ProductV1Media";
16424
16590
  id: string;
@@ -16447,6 +16613,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
16447
16613
  active: boolean;
16448
16614
  contractURI: string;
16449
16615
  royaltyPercentage: string;
16616
+ metadataUri: string;
16450
16617
  };
16451
16618
  } | null;
16452
16619
  };
@@ -16465,6 +16632,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
16465
16632
  externalUrl?: string | null;
16466
16633
  tokenId?: string | null;
16467
16634
  sellerId?: string | null;
16635
+ contactPreference?: string | null;
16468
16636
  images?: Array<{
16469
16637
  __typename?: "ProductV1Media";
16470
16638
  id: string;
@@ -16493,6 +16661,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
16493
16661
  active: boolean;
16494
16662
  contractURI: string;
16495
16663
  royaltyPercentage: string;
16664
+ metadataUri: string;
16496
16665
  };
16497
16666
  };
16498
16667
  exchangePolicy: {
@@ -16549,6 +16718,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
16549
16718
  active: boolean;
16550
16719
  contractURI: string;
16551
16720
  royaltyPercentage: string;
16721
+ metadataUri: string;
16552
16722
  };
16553
16723
  exchangeToken: {
16554
16724
  __typename?: "ExchangeToken";
@@ -16675,6 +16845,7 @@ export type GetProductV1ProductsQueryQuery = {
16675
16845
  externalUrl?: string | null;
16676
16846
  tokenId?: string | null;
16677
16847
  sellerId?: string | null;
16848
+ contactPreference?: string | null;
16678
16849
  images?: Array<{
16679
16850
  __typename?: "ProductV1Media";
16680
16851
  id: string;
@@ -16703,6 +16874,7 @@ export type GetProductV1ProductsQueryQuery = {
16703
16874
  active: boolean;
16704
16875
  contractURI: string;
16705
16876
  royaltyPercentage: string;
16877
+ metadataUri: string;
16706
16878
  };
16707
16879
  } | null;
16708
16880
  }>;
@@ -16829,6 +17001,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
16829
17001
  active: boolean;
16830
17002
  contractURI: string;
16831
17003
  royaltyPercentage: string;
17004
+ metadataUri: string;
16832
17005
  };
16833
17006
  }>;
16834
17007
  condition?: {
@@ -16854,6 +17027,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
16854
17027
  active: boolean;
16855
17028
  contractURI: string;
16856
17029
  royaltyPercentage: string;
17030
+ metadataUri: string;
16857
17031
  };
16858
17032
  exchangeToken: {
16859
17033
  __typename?: "ExchangeToken";
@@ -17033,6 +17207,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
17033
17207
  externalUrl?: string | null;
17034
17208
  tokenId?: string | null;
17035
17209
  sellerId?: string | null;
17210
+ contactPreference?: string | null;
17036
17211
  images?: Array<{
17037
17212
  __typename?: "ProductV1Media";
17038
17213
  id: string;
@@ -17061,6 +17236,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
17061
17236
  active: boolean;
17062
17237
  contractURI: string;
17063
17238
  royaltyPercentage: string;
17239
+ metadataUri: string;
17064
17240
  };
17065
17241
  } | null;
17066
17242
  };
@@ -17079,6 +17255,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
17079
17255
  externalUrl?: string | null;
17080
17256
  tokenId?: string | null;
17081
17257
  sellerId?: string | null;
17258
+ contactPreference?: string | null;
17082
17259
  images?: Array<{
17083
17260
  __typename?: "ProductV1Media";
17084
17261
  id: string;
@@ -17107,6 +17284,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
17107
17284
  active: boolean;
17108
17285
  contractURI: string;
17109
17286
  royaltyPercentage: string;
17287
+ metadataUri: string;
17110
17288
  };
17111
17289
  };
17112
17290
  exchangePolicy: {
@@ -17215,6 +17393,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
17215
17393
  externalUrl?: string | null;
17216
17394
  tokenId?: string | null;
17217
17395
  sellerId?: string | null;
17396
+ contactPreference?: string | null;
17218
17397
  images?: Array<{
17219
17398
  __typename?: "ProductV1Media";
17220
17399
  id: string;
@@ -17243,6 +17422,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
17243
17422
  active: boolean;
17244
17423
  contractURI: string;
17245
17424
  royaltyPercentage: string;
17425
+ metadataUri: string;
17246
17426
  };
17247
17427
  } | null;
17248
17428
  }>;
@@ -17369,6 +17549,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
17369
17549
  active: boolean;
17370
17550
  contractURI: string;
17371
17551
  royaltyPercentage: string;
17552
+ metadataUri: string;
17372
17553
  };
17373
17554
  }>;
17374
17555
  condition?: {
@@ -17394,6 +17575,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
17394
17575
  active: boolean;
17395
17576
  contractURI: string;
17396
17577
  royaltyPercentage: string;
17578
+ metadataUri: string;
17397
17579
  };
17398
17580
  exchangeToken: {
17399
17581
  __typename?: "ExchangeToken";
@@ -17573,6 +17755,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
17573
17755
  externalUrl?: string | null;
17574
17756
  tokenId?: string | null;
17575
17757
  sellerId?: string | null;
17758
+ contactPreference?: string | null;
17576
17759
  images?: Array<{
17577
17760
  __typename?: "ProductV1Media";
17578
17761
  id: string;
@@ -17601,6 +17784,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
17601
17784
  active: boolean;
17602
17785
  contractURI: string;
17603
17786
  royaltyPercentage: string;
17787
+ metadataUri: string;
17604
17788
  };
17605
17789
  } | null;
17606
17790
  };
@@ -17619,6 +17803,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
17619
17803
  externalUrl?: string | null;
17620
17804
  tokenId?: string | null;
17621
17805
  sellerId?: string | null;
17806
+ contactPreference?: string | null;
17622
17807
  images?: Array<{
17623
17808
  __typename?: "ProductV1Media";
17624
17809
  id: string;
@@ -17647,6 +17832,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
17647
17832
  active: boolean;
17648
17833
  contractURI: string;
17649
17834
  royaltyPercentage: string;
17835
+ metadataUri: string;
17650
17836
  };
17651
17837
  };
17652
17838
  exchangePolicy: {
@@ -17755,6 +17941,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
17755
17941
  externalUrl?: string | null;
17756
17942
  tokenId?: string | null;
17757
17943
  sellerId?: string | null;
17944
+ contactPreference?: string | null;
17758
17945
  images?: Array<{
17759
17946
  __typename?: "ProductV1Media";
17760
17947
  id: string;
@@ -17783,6 +17970,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
17783
17970
  active: boolean;
17784
17971
  contractURI: string;
17785
17972
  royaltyPercentage: string;
17973
+ metadataUri: string;
17786
17974
  };
17787
17975
  } | null;
17788
17976
  }>;
@@ -17923,6 +18111,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
17923
18111
  active: boolean;
17924
18112
  contractURI: string;
17925
18113
  royaltyPercentage: string;
18114
+ metadataUri: string;
17926
18115
  };
17927
18116
  }>;
17928
18117
  condition?: {
@@ -17948,6 +18137,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
17948
18137
  active: boolean;
17949
18138
  contractURI: string;
17950
18139
  royaltyPercentage: string;
18140
+ metadataUri: string;
17951
18141
  };
17952
18142
  exchangeToken: {
17953
18143
  __typename?: "ExchangeToken";
@@ -18127,6 +18317,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
18127
18317
  externalUrl?: string | null;
18128
18318
  tokenId?: string | null;
18129
18319
  sellerId?: string | null;
18320
+ contactPreference?: string | null;
18130
18321
  images?: Array<{
18131
18322
  __typename?: "ProductV1Media";
18132
18323
  id: string;
@@ -18155,6 +18346,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
18155
18346
  active: boolean;
18156
18347
  contractURI: string;
18157
18348
  royaltyPercentage: string;
18349
+ metadataUri: string;
18158
18350
  };
18159
18351
  } | null;
18160
18352
  };
@@ -18173,6 +18365,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
18173
18365
  externalUrl?: string | null;
18174
18366
  tokenId?: string | null;
18175
18367
  sellerId?: string | null;
18368
+ contactPreference?: string | null;
18176
18369
  images?: Array<{
18177
18370
  __typename?: "ProductV1Media";
18178
18371
  id: string;
@@ -18201,6 +18394,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
18201
18394
  active: boolean;
18202
18395
  contractURI: string;
18203
18396
  royaltyPercentage: string;
18397
+ metadataUri: string;
18204
18398
  };
18205
18399
  };
18206
18400
  exchangePolicy: {
@@ -18257,6 +18451,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
18257
18451
  active: boolean;
18258
18452
  contractURI: string;
18259
18453
  royaltyPercentage: string;
18454
+ metadataUri: string;
18260
18455
  };
18261
18456
  exchangeToken: {
18262
18457
  __typename?: "ExchangeToken";
@@ -18354,6 +18549,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
18354
18549
  externalUrl?: string | null;
18355
18550
  tokenId?: string | null;
18356
18551
  sellerId?: string | null;
18552
+ contactPreference?: string | null;
18357
18553
  images?: Array<{
18358
18554
  __typename?: "ProductV1Media";
18359
18555
  id: string;
@@ -18382,6 +18578,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
18382
18578
  active: boolean;
18383
18579
  contractURI: string;
18384
18580
  royaltyPercentage: string;
18581
+ metadataUri: string;
18385
18582
  };
18386
18583
  } | null;
18387
18584
  };
@@ -18400,6 +18597,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
18400
18597
  externalUrl?: string | null;
18401
18598
  tokenId?: string | null;
18402
18599
  sellerId?: string | null;
18600
+ contactPreference?: string | null;
18403
18601
  images?: Array<{
18404
18602
  __typename?: "ProductV1Media";
18405
18603
  id: string;
@@ -18428,6 +18626,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
18428
18626
  active: boolean;
18429
18627
  contractURI: string;
18430
18628
  royaltyPercentage: string;
18629
+ metadataUri: string;
18431
18630
  };
18432
18631
  };
18433
18632
  exchangePolicy: {
@@ -18560,6 +18759,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
18560
18759
  active: boolean;
18561
18760
  contractURI: string;
18562
18761
  royaltyPercentage: string;
18762
+ metadataUri: string;
18563
18763
  };
18564
18764
  }>;
18565
18765
  condition?: {
@@ -18585,6 +18785,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
18585
18785
  active: boolean;
18586
18786
  contractURI: string;
18587
18787
  royaltyPercentage: string;
18788
+ metadataUri: string;
18588
18789
  };
18589
18790
  exchangeToken: {
18590
18791
  __typename?: "ExchangeToken";
@@ -18764,6 +18965,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
18764
18965
  externalUrl?: string | null;
18765
18966
  tokenId?: string | null;
18766
18967
  sellerId?: string | null;
18968
+ contactPreference?: string | null;
18767
18969
  images?: Array<{
18768
18970
  __typename?: "ProductV1Media";
18769
18971
  id: string;
@@ -18792,6 +18994,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
18792
18994
  active: boolean;
18793
18995
  contractURI: string;
18794
18996
  royaltyPercentage: string;
18997
+ metadataUri: string;
18795
18998
  };
18796
18999
  } | null;
18797
19000
  };
@@ -18810,6 +19013,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
18810
19013
  externalUrl?: string | null;
18811
19014
  tokenId?: string | null;
18812
19015
  sellerId?: string | null;
19016
+ contactPreference?: string | null;
18813
19017
  images?: Array<{
18814
19018
  __typename?: "ProductV1Media";
18815
19019
  id: string;
@@ -18838,6 +19042,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
18838
19042
  active: boolean;
18839
19043
  contractURI: string;
18840
19044
  royaltyPercentage: string;
19045
+ metadataUri: string;
18841
19046
  };
18842
19047
  };
18843
19048
  exchangePolicy: {
@@ -18894,6 +19099,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
18894
19099
  active: boolean;
18895
19100
  contractURI: string;
18896
19101
  royaltyPercentage: string;
19102
+ metadataUri: string;
18897
19103
  };
18898
19104
  exchangeToken: {
18899
19105
  __typename?: "ExchangeToken";
@@ -18991,6 +19197,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
18991
19197
  externalUrl?: string | null;
18992
19198
  tokenId?: string | null;
18993
19199
  sellerId?: string | null;
19200
+ contactPreference?: string | null;
18994
19201
  images?: Array<{
18995
19202
  __typename?: "ProductV1Media";
18996
19203
  id: string;
@@ -19019,6 +19226,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
19019
19226
  active: boolean;
19020
19227
  contractURI: string;
19021
19228
  royaltyPercentage: string;
19229
+ metadataUri: string;
19022
19230
  };
19023
19231
  } | null;
19024
19232
  };
@@ -19037,6 +19245,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
19037
19245
  externalUrl?: string | null;
19038
19246
  tokenId?: string | null;
19039
19247
  sellerId?: string | null;
19248
+ contactPreference?: string | null;
19040
19249
  images?: Array<{
19041
19250
  __typename?: "ProductV1Media";
19042
19251
  id: string;
@@ -19065,6 +19274,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
19065
19274
  active: boolean;
19066
19275
  contractURI: string;
19067
19276
  royaltyPercentage: string;
19277
+ metadataUri: string;
19068
19278
  };
19069
19279
  };
19070
19280
  exchangePolicy: {
@@ -19187,6 +19397,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19187
19397
  active: boolean;
19188
19398
  contractURI: string;
19189
19399
  royaltyPercentage: string;
19400
+ metadataUri: string;
19190
19401
  };
19191
19402
  }>;
19192
19403
  condition?: {
@@ -19212,6 +19423,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19212
19423
  active: boolean;
19213
19424
  contractURI: string;
19214
19425
  royaltyPercentage: string;
19426
+ metadataUri: string;
19215
19427
  };
19216
19428
  exchangeToken: {
19217
19429
  __typename?: "ExchangeToken";
@@ -19387,6 +19599,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19387
19599
  externalUrl?: string | null;
19388
19600
  tokenId?: string | null;
19389
19601
  sellerId?: string | null;
19602
+ contactPreference?: string | null;
19390
19603
  images?: Array<{
19391
19604
  __typename?: "ProductV1Media";
19392
19605
  id: string;
@@ -19415,6 +19628,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19415
19628
  active: boolean;
19416
19629
  contractURI: string;
19417
19630
  royaltyPercentage: string;
19631
+ metadataUri: string;
19418
19632
  };
19419
19633
  } | null;
19420
19634
  };
@@ -19433,6 +19647,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19433
19647
  externalUrl?: string | null;
19434
19648
  tokenId?: string | null;
19435
19649
  sellerId?: string | null;
19650
+ contactPreference?: string | null;
19436
19651
  images?: Array<{
19437
19652
  __typename?: "ProductV1Media";
19438
19653
  id: string;
@@ -19461,6 +19676,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19461
19676
  active: boolean;
19462
19677
  contractURI: string;
19463
19678
  royaltyPercentage: string;
19679
+ metadataUri: string;
19464
19680
  };
19465
19681
  };
19466
19682
  exchangePolicy: {
@@ -19517,6 +19733,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19517
19733
  active: boolean;
19518
19734
  contractURI: string;
19519
19735
  royaltyPercentage: string;
19736
+ metadataUri: string;
19520
19737
  };
19521
19738
  exchangeToken: {
19522
19739
  __typename?: "ExchangeToken";
@@ -19614,6 +19831,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19614
19831
  externalUrl?: string | null;
19615
19832
  tokenId?: string | null;
19616
19833
  sellerId?: string | null;
19834
+ contactPreference?: string | null;
19617
19835
  images?: Array<{
19618
19836
  __typename?: "ProductV1Media";
19619
19837
  id: string;
@@ -19642,6 +19860,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19642
19860
  active: boolean;
19643
19861
  contractURI: string;
19644
19862
  royaltyPercentage: string;
19863
+ metadataUri: string;
19645
19864
  };
19646
19865
  } | null;
19647
19866
  };
@@ -19660,6 +19879,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19660
19879
  externalUrl?: string | null;
19661
19880
  tokenId?: string | null;
19662
19881
  sellerId?: string | null;
19882
+ contactPreference?: string | null;
19663
19883
  images?: Array<{
19664
19884
  __typename?: "ProductV1Media";
19665
19885
  id: string;
@@ -19688,6 +19908,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
19688
19908
  active: boolean;
19689
19909
  contractURI: string;
19690
19910
  royaltyPercentage: string;
19911
+ metadataUri: string;
19691
19912
  };
19692
19913
  };
19693
19914
  exchangePolicy: {
@@ -19809,6 +20030,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
19809
20030
  active: boolean;
19810
20031
  contractURI: string;
19811
20032
  royaltyPercentage: string;
20033
+ metadataUri: string;
19812
20034
  };
19813
20035
  }>;
19814
20036
  condition?: {
@@ -19834,6 +20056,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
19834
20056
  active: boolean;
19835
20057
  contractURI: string;
19836
20058
  royaltyPercentage: string;
20059
+ metadataUri: string;
19837
20060
  };
19838
20061
  exchangeToken: {
19839
20062
  __typename?: "ExchangeToken";
@@ -20009,6 +20232,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
20009
20232
  externalUrl?: string | null;
20010
20233
  tokenId?: string | null;
20011
20234
  sellerId?: string | null;
20235
+ contactPreference?: string | null;
20012
20236
  images?: Array<{
20013
20237
  __typename?: "ProductV1Media";
20014
20238
  id: string;
@@ -20037,6 +20261,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
20037
20261
  active: boolean;
20038
20262
  contractURI: string;
20039
20263
  royaltyPercentage: string;
20264
+ metadataUri: string;
20040
20265
  };
20041
20266
  } | null;
20042
20267
  };
@@ -20055,6 +20280,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
20055
20280
  externalUrl?: string | null;
20056
20281
  tokenId?: string | null;
20057
20282
  sellerId?: string | null;
20283
+ contactPreference?: string | null;
20058
20284
  images?: Array<{
20059
20285
  __typename?: "ProductV1Media";
20060
20286
  id: string;
@@ -20083,6 +20309,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
20083
20309
  active: boolean;
20084
20310
  contractURI: string;
20085
20311
  royaltyPercentage: string;
20312
+ metadataUri: string;
20086
20313
  };
20087
20314
  };
20088
20315
  exchangePolicy: {
@@ -20139,6 +20366,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
20139
20366
  active: boolean;
20140
20367
  contractURI: string;
20141
20368
  royaltyPercentage: string;
20369
+ metadataUri: string;
20142
20370
  };
20143
20371
  exchangeToken: {
20144
20372
  __typename?: "ExchangeToken";
@@ -20236,6 +20464,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
20236
20464
  externalUrl?: string | null;
20237
20465
  tokenId?: string | null;
20238
20466
  sellerId?: string | null;
20467
+ contactPreference?: string | null;
20239
20468
  images?: Array<{
20240
20469
  __typename?: "ProductV1Media";
20241
20470
  id: string;
@@ -20264,6 +20493,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
20264
20493
  active: boolean;
20265
20494
  contractURI: string;
20266
20495
  royaltyPercentage: string;
20496
+ metadataUri: string;
20267
20497
  };
20268
20498
  } | null;
20269
20499
  };
@@ -20282,6 +20512,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
20282
20512
  externalUrl?: string | null;
20283
20513
  tokenId?: string | null;
20284
20514
  sellerId?: string | null;
20515
+ contactPreference?: string | null;
20285
20516
  images?: Array<{
20286
20517
  __typename?: "ProductV1Media";
20287
20518
  id: string;
@@ -20310,6 +20541,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
20310
20541
  active: boolean;
20311
20542
  contractURI: string;
20312
20543
  royaltyPercentage: string;
20544
+ metadataUri: string;
20313
20545
  };
20314
20546
  };
20315
20547
  exchangePolicy: {
@@ -20420,6 +20652,7 @@ export type BaseProductV1ProductFieldsFragment = {
20420
20652
  externalUrl?: string | null;
20421
20653
  tokenId?: string | null;
20422
20654
  sellerId?: string | null;
20655
+ contactPreference?: string | null;
20423
20656
  images?: Array<{
20424
20657
  __typename?: "ProductV1Media";
20425
20658
  id: string;
@@ -20448,6 +20681,7 @@ export type BaseProductV1ProductFieldsFragment = {
20448
20681
  active: boolean;
20449
20682
  contractURI: string;
20450
20683
  royaltyPercentage: string;
20684
+ metadataUri: string;
20451
20685
  };
20452
20686
  } | null;
20453
20687
  };
@@ -20563,6 +20797,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
20563
20797
  active: boolean;
20564
20798
  contractURI: string;
20565
20799
  royaltyPercentage: string;
20800
+ metadataUri: string;
20566
20801
  };
20567
20802
  }>;
20568
20803
  condition?: {
@@ -20588,6 +20823,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
20588
20823
  active: boolean;
20589
20824
  contractURI: string;
20590
20825
  royaltyPercentage: string;
20826
+ metadataUri: string;
20591
20827
  };
20592
20828
  exchangeToken: {
20593
20829
  __typename?: "ExchangeToken";
@@ -20767,6 +21003,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
20767
21003
  externalUrl?: string | null;
20768
21004
  tokenId?: string | null;
20769
21005
  sellerId?: string | null;
21006
+ contactPreference?: string | null;
20770
21007
  images?: Array<{
20771
21008
  __typename?: "ProductV1Media";
20772
21009
  id: string;
@@ -20795,6 +21032,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
20795
21032
  active: boolean;
20796
21033
  contractURI: string;
20797
21034
  royaltyPercentage: string;
21035
+ metadataUri: string;
20798
21036
  };
20799
21037
  } | null;
20800
21038
  };
@@ -20813,6 +21051,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
20813
21051
  externalUrl?: string | null;
20814
21052
  tokenId?: string | null;
20815
21053
  sellerId?: string | null;
21054
+ contactPreference?: string | null;
20816
21055
  images?: Array<{
20817
21056
  __typename?: "ProductV1Media";
20818
21057
  id: string;
@@ -20841,6 +21080,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
20841
21080
  active: boolean;
20842
21081
  contractURI: string;
20843
21082
  royaltyPercentage: string;
21083
+ metadataUri: string;
20844
21084
  };
20845
21085
  };
20846
21086
  exchangePolicy: {
@@ -20949,6 +21189,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
20949
21189
  externalUrl?: string | null;
20950
21190
  tokenId?: string | null;
20951
21191
  sellerId?: string | null;
21192
+ contactPreference?: string | null;
20952
21193
  images?: Array<{
20953
21194
  __typename?: "ProductV1Media";
20954
21195
  id: string;
@@ -20977,6 +21218,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
20977
21218
  active: boolean;
20978
21219
  contractURI: string;
20979
21220
  royaltyPercentage: string;
21221
+ metadataUri: string;
20980
21222
  };
20981
21223
  } | null;
20982
21224
  };
@@ -21092,6 +21334,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
21092
21334
  active: boolean;
21093
21335
  contractURI: string;
21094
21336
  royaltyPercentage: string;
21337
+ metadataUri: string;
21095
21338
  };
21096
21339
  }>;
21097
21340
  condition?: {
@@ -21117,6 +21360,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
21117
21360
  active: boolean;
21118
21361
  contractURI: string;
21119
21362
  royaltyPercentage: string;
21363
+ metadataUri: string;
21120
21364
  };
21121
21365
  exchangeToken: {
21122
21366
  __typename?: "ExchangeToken";
@@ -21296,6 +21540,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
21296
21540
  externalUrl?: string | null;
21297
21541
  tokenId?: string | null;
21298
21542
  sellerId?: string | null;
21543
+ contactPreference?: string | null;
21299
21544
  images?: Array<{
21300
21545
  __typename?: "ProductV1Media";
21301
21546
  id: string;
@@ -21324,6 +21569,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
21324
21569
  active: boolean;
21325
21570
  contractURI: string;
21326
21571
  royaltyPercentage: string;
21572
+ metadataUri: string;
21327
21573
  };
21328
21574
  } | null;
21329
21575
  };
@@ -21342,6 +21588,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
21342
21588
  externalUrl?: string | null;
21343
21589
  tokenId?: string | null;
21344
21590
  sellerId?: string | null;
21591
+ contactPreference?: string | null;
21345
21592
  images?: Array<{
21346
21593
  __typename?: "ProductV1Media";
21347
21594
  id: string;
@@ -21370,6 +21617,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
21370
21617
  active: boolean;
21371
21618
  contractURI: string;
21372
21619
  royaltyPercentage: string;
21620
+ metadataUri: string;
21373
21621
  };
21374
21622
  };
21375
21623
  exchangePolicy: {
@@ -21478,6 +21726,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
21478
21726
  externalUrl?: string | null;
21479
21727
  tokenId?: string | null;
21480
21728
  sellerId?: string | null;
21729
+ contactPreference?: string | null;
21481
21730
  images?: Array<{
21482
21731
  __typename?: "ProductV1Media";
21483
21732
  id: string;
@@ -21506,6 +21755,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
21506
21755
  active: boolean;
21507
21756
  contractURI: string;
21508
21757
  royaltyPercentage: string;
21758
+ metadataUri: string;
21509
21759
  };
21510
21760
  } | null;
21511
21761
  };
@@ -21566,6 +21816,7 @@ export type BaseProductV1SellerFieldsFragment = {
21566
21816
  externalUrl?: string | null;
21567
21817
  tokenId?: string | null;
21568
21818
  sellerId?: string | null;
21819
+ contactPreference?: string | null;
21569
21820
  images?: Array<{
21570
21821
  __typename?: "ProductV1Media";
21571
21822
  id: string;
@@ -21594,6 +21845,7 @@ export type BaseProductV1SellerFieldsFragment = {
21594
21845
  active: boolean;
21595
21846
  contractURI: string;
21596
21847
  royaltyPercentage: string;
21848
+ metadataUri: string;
21597
21849
  };
21598
21850
  };
21599
21851
 
@@ -21765,6 +22017,7 @@ export type GetOfferByIdQueryQuery = {
21765
22017
  active: boolean;
21766
22018
  contractURI: string;
21767
22019
  royaltyPercentage: string;
22020
+ metadataUri: string;
21768
22021
  };
21769
22022
  }>;
21770
22023
  condition?: {
@@ -21790,6 +22043,7 @@ export type GetOfferByIdQueryQuery = {
21790
22043
  active: boolean;
21791
22044
  contractURI: string;
21792
22045
  royaltyPercentage: string;
22046
+ metadataUri: string;
21793
22047
  };
21794
22048
  exchangeToken: {
21795
22049
  __typename?: "ExchangeToken";
@@ -21965,6 +22219,7 @@ export type GetOfferByIdQueryQuery = {
21965
22219
  externalUrl?: string | null;
21966
22220
  tokenId?: string | null;
21967
22221
  sellerId?: string | null;
22222
+ contactPreference?: string | null;
21968
22223
  images?: Array<{
21969
22224
  __typename?: "ProductV1Media";
21970
22225
  id: string;
@@ -21993,6 +22248,7 @@ export type GetOfferByIdQueryQuery = {
21993
22248
  active: boolean;
21994
22249
  contractURI: string;
21995
22250
  royaltyPercentage: string;
22251
+ metadataUri: string;
21996
22252
  };
21997
22253
  } | null;
21998
22254
  };
@@ -22011,6 +22267,7 @@ export type GetOfferByIdQueryQuery = {
22011
22267
  externalUrl?: string | null;
22012
22268
  tokenId?: string | null;
22013
22269
  sellerId?: string | null;
22270
+ contactPreference?: string | null;
22014
22271
  images?: Array<{
22015
22272
  __typename?: "ProductV1Media";
22016
22273
  id: string;
@@ -22039,6 +22296,7 @@ export type GetOfferByIdQueryQuery = {
22039
22296
  active: boolean;
22040
22297
  contractURI: string;
22041
22298
  royaltyPercentage: string;
22299
+ metadataUri: string;
22042
22300
  };
22043
22301
  };
22044
22302
  exchangePolicy: {
@@ -22174,6 +22432,7 @@ export type GetOffersQueryQuery = {
22174
22432
  active: boolean;
22175
22433
  contractURI: string;
22176
22434
  royaltyPercentage: string;
22435
+ metadataUri: string;
22177
22436
  };
22178
22437
  }>;
22179
22438
  condition?: {
@@ -22199,6 +22458,7 @@ export type GetOffersQueryQuery = {
22199
22458
  active: boolean;
22200
22459
  contractURI: string;
22201
22460
  royaltyPercentage: string;
22461
+ metadataUri: string;
22202
22462
  };
22203
22463
  exchangeToken: {
22204
22464
  __typename?: "ExchangeToken";
@@ -22374,6 +22634,7 @@ export type GetOffersQueryQuery = {
22374
22634
  externalUrl?: string | null;
22375
22635
  tokenId?: string | null;
22376
22636
  sellerId?: string | null;
22637
+ contactPreference?: string | null;
22377
22638
  images?: Array<{
22378
22639
  __typename?: "ProductV1Media";
22379
22640
  id: string;
@@ -22402,6 +22663,7 @@ export type GetOffersQueryQuery = {
22402
22663
  active: boolean;
22403
22664
  contractURI: string;
22404
22665
  royaltyPercentage: string;
22666
+ metadataUri: string;
22405
22667
  };
22406
22668
  } | null;
22407
22669
  };
@@ -22420,6 +22682,7 @@ export type GetOffersQueryQuery = {
22420
22682
  externalUrl?: string | null;
22421
22683
  tokenId?: string | null;
22422
22684
  sellerId?: string | null;
22685
+ contactPreference?: string | null;
22423
22686
  images?: Array<{
22424
22687
  __typename?: "ProductV1Media";
22425
22688
  id: string;
@@ -22448,6 +22711,7 @@ export type GetOffersQueryQuery = {
22448
22711
  active: boolean;
22449
22712
  contractURI: string;
22450
22713
  royaltyPercentage: string;
22714
+ metadataUri: string;
22451
22715
  };
22452
22716
  };
22453
22717
  exchangePolicy: {
@@ -22567,6 +22831,7 @@ export type OfferFieldsFragment = {
22567
22831
  active: boolean;
22568
22832
  contractURI: string;
22569
22833
  royaltyPercentage: string;
22834
+ metadataUri: string;
22570
22835
  };
22571
22836
  }>;
22572
22837
  condition?: {
@@ -22592,6 +22857,7 @@ export type OfferFieldsFragment = {
22592
22857
  active: boolean;
22593
22858
  contractURI: string;
22594
22859
  royaltyPercentage: string;
22860
+ metadataUri: string;
22595
22861
  };
22596
22862
  exchangeToken: {
22597
22863
  __typename?: "ExchangeToken";
@@ -22767,6 +23033,7 @@ export type OfferFieldsFragment = {
22767
23033
  externalUrl?: string | null;
22768
23034
  tokenId?: string | null;
22769
23035
  sellerId?: string | null;
23036
+ contactPreference?: string | null;
22770
23037
  images?: Array<{
22771
23038
  __typename?: "ProductV1Media";
22772
23039
  id: string;
@@ -22795,6 +23062,7 @@ export type OfferFieldsFragment = {
22795
23062
  active: boolean;
22796
23063
  contractURI: string;
22797
23064
  royaltyPercentage: string;
23065
+ metadataUri: string;
22798
23066
  };
22799
23067
  } | null;
22800
23068
  };
@@ -22813,6 +23081,7 @@ export type OfferFieldsFragment = {
22813
23081
  externalUrl?: string | null;
22814
23082
  tokenId?: string | null;
22815
23083
  sellerId?: string | null;
23084
+ contactPreference?: string | null;
22816
23085
  images?: Array<{
22817
23086
  __typename?: "ProductV1Media";
22818
23087
  id: string;
@@ -22841,6 +23110,7 @@ export type OfferFieldsFragment = {
22841
23110
  active: boolean;
22842
23111
  contractURI: string;
22843
23112
  royaltyPercentage: string;
23113
+ metadataUri: string;
22844
23114
  };
22845
23115
  };
22846
23116
  exchangePolicy: {
@@ -22934,6 +23204,7 @@ export type BaseOfferFieldsFragment = {
22934
23204
  active: boolean;
22935
23205
  contractURI: string;
22936
23206
  royaltyPercentage: string;
23207
+ metadataUri: string;
22937
23208
  };
22938
23209
  exchangeToken: {
22939
23210
  __typename?: "ExchangeToken";
@@ -23109,6 +23380,7 @@ export type BaseOfferFieldsFragment = {
23109
23380
  externalUrl?: string | null;
23110
23381
  tokenId?: string | null;
23111
23382
  sellerId?: string | null;
23383
+ contactPreference?: string | null;
23112
23384
  images?: Array<{
23113
23385
  __typename?: "ProductV1Media";
23114
23386
  id: string;
@@ -23137,6 +23409,7 @@ export type BaseOfferFieldsFragment = {
23137
23409
  active: boolean;
23138
23410
  contractURI: string;
23139
23411
  royaltyPercentage: string;
23412
+ metadataUri: string;
23140
23413
  };
23141
23414
  } | null;
23142
23415
  };
@@ -23155,6 +23428,7 @@ export type BaseOfferFieldsFragment = {
23155
23428
  externalUrl?: string | null;
23156
23429
  tokenId?: string | null;
23157
23430
  sellerId?: string | null;
23431
+ contactPreference?: string | null;
23158
23432
  images?: Array<{
23159
23433
  __typename?: "ProductV1Media";
23160
23434
  id: string;
@@ -23183,6 +23457,7 @@ export type BaseOfferFieldsFragment = {
23183
23457
  active: boolean;
23184
23458
  contractURI: string;
23185
23459
  royaltyPercentage: string;
23460
+ metadataUri: string;
23186
23461
  };
23187
23462
  };
23188
23463
  exchangePolicy: {
@@ -23248,6 +23523,7 @@ export const BaseSellerFieldsFragmentDoc = gql`
23248
23523
  active
23249
23524
  contractURI
23250
23525
  royaltyPercentage
23526
+ metadataUri
23251
23527
  }
23252
23528
  `;
23253
23529
  export const PendingSellerFieldsFragmentDoc = gql`
@@ -23404,6 +23680,7 @@ export const BaseProductV1SellerFieldsFragmentDoc = gql`
23404
23680
  contactLinks {
23405
23681
  ...BaseProductV1SellerContactLinkFields
23406
23682
  }
23683
+ contactPreference
23407
23684
  seller {
23408
23685
  ...BaseSellerFields
23409
23686
  }