@bosonprotocol/core-sdk 1.25.0-alpha.27 → 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/dist/cjs/accounts/interface.js.map +1 -1
- package/dist/cjs/meta-tx/handler.js +2 -2
- package/dist/cjs/meta-tx/handler.js.map +1 -1
- package/dist/cjs/subgraph.d.ts +275 -0
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +5 -0
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/accounts/interface.js.map +1 -1
- package/dist/esm/meta-tx/handler.js +2 -2
- package/dist/esm/meta-tx/handler.js.map +1 -1
- package/dist/esm/subgraph.d.ts +275 -0
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +5 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/accounts/interface.ts +1 -0
- package/src/accounts/queries.graphql +1 -0
- package/src/meta-tx/handler.ts +2 -2
- package/src/metadata/product-v1.graphql +1 -0
- package/src/subgraph.ts +277 -0
package/dist/esm/subgraph.d.ts
CHANGED
|
@@ -3363,6 +3363,7 @@ export declare type PendingSeller = {
|
|
|
3363
3363
|
authTokenType?: Maybe<Scalars["Int"]>;
|
|
3364
3364
|
clerk?: Maybe<Scalars["Bytes"]>;
|
|
3365
3365
|
id: Scalars["ID"];
|
|
3366
|
+
metadataUri: Scalars["String"];
|
|
3366
3367
|
seller: Seller;
|
|
3367
3368
|
};
|
|
3368
3369
|
export declare type PendingSeller_Filter = {
|
|
@@ -3410,6 +3411,26 @@ export declare type PendingSeller_Filter = {
|
|
|
3410
3411
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
3411
3412
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
3412
3413
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
3414
|
+
metadataUri?: InputMaybe<Scalars["String"]>;
|
|
3415
|
+
metadataUri_contains?: InputMaybe<Scalars["String"]>;
|
|
3416
|
+
metadataUri_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3417
|
+
metadataUri_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3418
|
+
metadataUri_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3419
|
+
metadataUri_gt?: InputMaybe<Scalars["String"]>;
|
|
3420
|
+
metadataUri_gte?: InputMaybe<Scalars["String"]>;
|
|
3421
|
+
metadataUri_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3422
|
+
metadataUri_lt?: InputMaybe<Scalars["String"]>;
|
|
3423
|
+
metadataUri_lte?: InputMaybe<Scalars["String"]>;
|
|
3424
|
+
metadataUri_not?: InputMaybe<Scalars["String"]>;
|
|
3425
|
+
metadataUri_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3426
|
+
metadataUri_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3427
|
+
metadataUri_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3428
|
+
metadataUri_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3429
|
+
metadataUri_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3430
|
+
metadataUri_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3431
|
+
metadataUri_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3432
|
+
metadataUri_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3433
|
+
metadataUri_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3413
3434
|
seller?: InputMaybe<Scalars["String"]>;
|
|
3414
3435
|
seller_?: InputMaybe<Seller_Filter>;
|
|
3415
3436
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
@@ -3439,6 +3460,7 @@ export declare enum PendingSeller_OrderBy {
|
|
|
3439
3460
|
AuthTokenType = "authTokenType",
|
|
3440
3461
|
Clerk = "clerk",
|
|
3441
3462
|
Id = "id",
|
|
3463
|
+
MetadataUri = "metadataUri",
|
|
3442
3464
|
Seller = "seller"
|
|
3443
3465
|
}
|
|
3444
3466
|
export declare type ProductV1Brand = {
|
|
@@ -5726,6 +5748,7 @@ export declare enum ProductV1Section_OrderBy {
|
|
|
5726
5748
|
export declare type ProductV1Seller = {
|
|
5727
5749
|
__typename?: "ProductV1Seller";
|
|
5728
5750
|
contactLinks?: Maybe<Array<ProductV1SellerContactLink>>;
|
|
5751
|
+
contactPreference?: Maybe<Scalars["String"]>;
|
|
5729
5752
|
defaultVersion: Scalars["Int"];
|
|
5730
5753
|
description?: Maybe<Scalars["String"]>;
|
|
5731
5754
|
externalUrl?: Maybe<Scalars["String"]>;
|
|
@@ -5827,6 +5850,26 @@ export declare type ProductV1Seller_Filter = {
|
|
|
5827
5850
|
contactLinks_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
5828
5851
|
contactLinks_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5829
5852
|
contactLinks_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5853
|
+
contactPreference?: InputMaybe<Scalars["String"]>;
|
|
5854
|
+
contactPreference_contains?: InputMaybe<Scalars["String"]>;
|
|
5855
|
+
contactPreference_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
5856
|
+
contactPreference_ends_with?: InputMaybe<Scalars["String"]>;
|
|
5857
|
+
contactPreference_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5858
|
+
contactPreference_gt?: InputMaybe<Scalars["String"]>;
|
|
5859
|
+
contactPreference_gte?: InputMaybe<Scalars["String"]>;
|
|
5860
|
+
contactPreference_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
5861
|
+
contactPreference_lt?: InputMaybe<Scalars["String"]>;
|
|
5862
|
+
contactPreference_lte?: InputMaybe<Scalars["String"]>;
|
|
5863
|
+
contactPreference_not?: InputMaybe<Scalars["String"]>;
|
|
5864
|
+
contactPreference_not_contains?: InputMaybe<Scalars["String"]>;
|
|
5865
|
+
contactPreference_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
5866
|
+
contactPreference_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
5867
|
+
contactPreference_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5868
|
+
contactPreference_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
5869
|
+
contactPreference_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
5870
|
+
contactPreference_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5871
|
+
contactPreference_starts_with?: InputMaybe<Scalars["String"]>;
|
|
5872
|
+
contactPreference_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5830
5873
|
defaultVersion?: InputMaybe<Scalars["Int"]>;
|
|
5831
5874
|
defaultVersion_gt?: InputMaybe<Scalars["Int"]>;
|
|
5832
5875
|
defaultVersion_gte?: InputMaybe<Scalars["Int"]>;
|
|
@@ -5974,6 +6017,7 @@ export declare type ProductV1Seller_Filter = {
|
|
|
5974
6017
|
};
|
|
5975
6018
|
export declare enum ProductV1Seller_OrderBy {
|
|
5976
6019
|
ContactLinks = "contactLinks",
|
|
6020
|
+
ContactPreference = "contactPreference",
|
|
5977
6021
|
DefaultVersion = "defaultVersion",
|
|
5978
6022
|
Description = "description",
|
|
5979
6023
|
ExternalUrl = "externalUrl",
|
|
@@ -7034,6 +7078,7 @@ export declare type Seller = Account & {
|
|
|
7034
7078
|
funds: Array<FundsEntity>;
|
|
7035
7079
|
id: Scalars["ID"];
|
|
7036
7080
|
logs: Array<EventLog>;
|
|
7081
|
+
metadataUri: Scalars["String"];
|
|
7037
7082
|
offers: Array<Offer>;
|
|
7038
7083
|
pendingSeller?: Maybe<PendingSeller>;
|
|
7039
7084
|
/** Percentage as integer, to get decimals divide by 10000. E.g. 1 = 0.01%, 10000 = 100% */
|
|
@@ -7141,6 +7186,26 @@ export declare type Seller_Filter = {
|
|
|
7141
7186
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
7142
7187
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
7143
7188
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
7189
|
+
metadataUri?: InputMaybe<Scalars["String"]>;
|
|
7190
|
+
metadataUri_contains?: InputMaybe<Scalars["String"]>;
|
|
7191
|
+
metadataUri_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7192
|
+
metadataUri_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7193
|
+
metadataUri_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7194
|
+
metadataUri_gt?: InputMaybe<Scalars["String"]>;
|
|
7195
|
+
metadataUri_gte?: InputMaybe<Scalars["String"]>;
|
|
7196
|
+
metadataUri_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7197
|
+
metadataUri_lt?: InputMaybe<Scalars["String"]>;
|
|
7198
|
+
metadataUri_lte?: InputMaybe<Scalars["String"]>;
|
|
7199
|
+
metadataUri_not?: InputMaybe<Scalars["String"]>;
|
|
7200
|
+
metadataUri_not_contains?: InputMaybe<Scalars["String"]>;
|
|
7201
|
+
metadataUri_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
7202
|
+
metadataUri_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
7203
|
+
metadataUri_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7204
|
+
metadataUri_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
7205
|
+
metadataUri_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7206
|
+
metadataUri_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7207
|
+
metadataUri_starts_with?: InputMaybe<Scalars["String"]>;
|
|
7208
|
+
metadataUri_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
7144
7209
|
offers_?: InputMaybe<Offer_Filter>;
|
|
7145
7210
|
pendingSeller_?: InputMaybe<PendingSeller_Filter>;
|
|
7146
7211
|
royaltyPercentage?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -7184,6 +7249,7 @@ export declare enum Seller_OrderBy {
|
|
|
7184
7249
|
Funds = "funds",
|
|
7185
7250
|
Id = "id",
|
|
7186
7251
|
Logs = "logs",
|
|
7252
|
+
MetadataUri = "metadataUri",
|
|
7187
7253
|
Offers = "offers",
|
|
7188
7254
|
PendingSeller = "pendingSeller",
|
|
7189
7255
|
RoyaltyPercentage = "royaltyPercentage",
|
|
@@ -7914,6 +7980,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
7914
7980
|
active: boolean;
|
|
7915
7981
|
contractURI: string;
|
|
7916
7982
|
royaltyPercentage: string;
|
|
7983
|
+
metadataUri: string;
|
|
7917
7984
|
pendingSeller?: {
|
|
7918
7985
|
__typename?: "PendingSeller";
|
|
7919
7986
|
assistant?: string | null;
|
|
@@ -7985,6 +8052,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
7985
8052
|
active: boolean;
|
|
7986
8053
|
contractURI: string;
|
|
7987
8054
|
royaltyPercentage: string;
|
|
8055
|
+
metadataUri: string;
|
|
7988
8056
|
};
|
|
7989
8057
|
exchangeToken: {
|
|
7990
8058
|
__typename?: "ExchangeToken";
|
|
@@ -8162,6 +8230,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8162
8230
|
externalUrl?: string | null;
|
|
8163
8231
|
tokenId?: string | null;
|
|
8164
8232
|
sellerId?: string | null;
|
|
8233
|
+
contactPreference?: string | null;
|
|
8165
8234
|
images?: Array<{
|
|
8166
8235
|
__typename?: "ProductV1Media";
|
|
8167
8236
|
id: string;
|
|
@@ -8190,6 +8259,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8190
8259
|
active: boolean;
|
|
8191
8260
|
contractURI: string;
|
|
8192
8261
|
royaltyPercentage: string;
|
|
8262
|
+
metadataUri: string;
|
|
8193
8263
|
};
|
|
8194
8264
|
} | null;
|
|
8195
8265
|
};
|
|
@@ -8208,6 +8278,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8208
8278
|
externalUrl?: string | null;
|
|
8209
8279
|
tokenId?: string | null;
|
|
8210
8280
|
sellerId?: string | null;
|
|
8281
|
+
contactPreference?: string | null;
|
|
8211
8282
|
images?: Array<{
|
|
8212
8283
|
__typename?: "ProductV1Media";
|
|
8213
8284
|
id: string;
|
|
@@ -8236,6 +8307,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8236
8307
|
active: boolean;
|
|
8237
8308
|
contractURI: string;
|
|
8238
8309
|
royaltyPercentage: string;
|
|
8310
|
+
metadataUri: string;
|
|
8239
8311
|
};
|
|
8240
8312
|
};
|
|
8241
8313
|
exchangePolicy: {
|
|
@@ -8326,6 +8398,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8326
8398
|
active: boolean;
|
|
8327
8399
|
contractURI: string;
|
|
8328
8400
|
royaltyPercentage: string;
|
|
8401
|
+
metadataUri: string;
|
|
8329
8402
|
};
|
|
8330
8403
|
}>;
|
|
8331
8404
|
logs?: Array<{
|
|
@@ -8482,6 +8555,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
8482
8555
|
active: boolean;
|
|
8483
8556
|
contractURI: string;
|
|
8484
8557
|
royaltyPercentage: string;
|
|
8558
|
+
metadataUri: string;
|
|
8485
8559
|
pendingSeller?: {
|
|
8486
8560
|
__typename?: "PendingSeller";
|
|
8487
8561
|
assistant?: string | null;
|
|
@@ -8553,6 +8627,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
8553
8627
|
active: boolean;
|
|
8554
8628
|
contractURI: string;
|
|
8555
8629
|
royaltyPercentage: string;
|
|
8630
|
+
metadataUri: string;
|
|
8556
8631
|
};
|
|
8557
8632
|
exchangeToken: {
|
|
8558
8633
|
__typename?: "ExchangeToken";
|
|
@@ -8730,6 +8805,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
8730
8805
|
externalUrl?: string | null;
|
|
8731
8806
|
tokenId?: string | null;
|
|
8732
8807
|
sellerId?: string | null;
|
|
8808
|
+
contactPreference?: string | null;
|
|
8733
8809
|
images?: Array<{
|
|
8734
8810
|
__typename?: "ProductV1Media";
|
|
8735
8811
|
id: string;
|
|
@@ -8758,6 +8834,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
8758
8834
|
active: boolean;
|
|
8759
8835
|
contractURI: string;
|
|
8760
8836
|
royaltyPercentage: string;
|
|
8837
|
+
metadataUri: string;
|
|
8761
8838
|
};
|
|
8762
8839
|
} | null;
|
|
8763
8840
|
};
|
|
@@ -8776,6 +8853,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
8776
8853
|
externalUrl?: string | null;
|
|
8777
8854
|
tokenId?: string | null;
|
|
8778
8855
|
sellerId?: string | null;
|
|
8856
|
+
contactPreference?: string | null;
|
|
8779
8857
|
images?: Array<{
|
|
8780
8858
|
__typename?: "ProductV1Media";
|
|
8781
8859
|
id: string;
|
|
@@ -8804,6 +8882,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
8804
8882
|
active: boolean;
|
|
8805
8883
|
contractURI: string;
|
|
8806
8884
|
royaltyPercentage: string;
|
|
8885
|
+
metadataUri: string;
|
|
8807
8886
|
};
|
|
8808
8887
|
};
|
|
8809
8888
|
exchangePolicy: {
|
|
@@ -8894,6 +8973,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
8894
8973
|
active: boolean;
|
|
8895
8974
|
contractURI: string;
|
|
8896
8975
|
royaltyPercentage: string;
|
|
8976
|
+
metadataUri: string;
|
|
8897
8977
|
};
|
|
8898
8978
|
}>;
|
|
8899
8979
|
logs?: Array<{
|
|
@@ -9094,6 +9174,7 @@ export declare type GetBuyerByIdQueryQuery = {
|
|
|
9094
9174
|
active: boolean;
|
|
9095
9175
|
contractURI: string;
|
|
9096
9176
|
royaltyPercentage: string;
|
|
9177
|
+
metadataUri: string;
|
|
9097
9178
|
};
|
|
9098
9179
|
}>;
|
|
9099
9180
|
logs?: Array<{
|
|
@@ -9304,6 +9385,7 @@ export declare type GetBuyersQueryQuery = {
|
|
|
9304
9385
|
active: boolean;
|
|
9305
9386
|
contractURI: string;
|
|
9306
9387
|
royaltyPercentage: string;
|
|
9388
|
+
metadataUri: string;
|
|
9307
9389
|
};
|
|
9308
9390
|
}>;
|
|
9309
9391
|
logs?: Array<{
|
|
@@ -9497,6 +9579,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9497
9579
|
active: boolean;
|
|
9498
9580
|
contractURI: string;
|
|
9499
9581
|
royaltyPercentage: string;
|
|
9582
|
+
metadataUri: string;
|
|
9500
9583
|
};
|
|
9501
9584
|
exchangeToken: {
|
|
9502
9585
|
__typename?: "ExchangeToken";
|
|
@@ -9674,6 +9757,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9674
9757
|
externalUrl?: string | null;
|
|
9675
9758
|
tokenId?: string | null;
|
|
9676
9759
|
sellerId?: string | null;
|
|
9760
|
+
contactPreference?: string | null;
|
|
9677
9761
|
images?: Array<{
|
|
9678
9762
|
__typename?: "ProductV1Media";
|
|
9679
9763
|
id: string;
|
|
@@ -9702,6 +9786,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9702
9786
|
active: boolean;
|
|
9703
9787
|
contractURI: string;
|
|
9704
9788
|
royaltyPercentage: string;
|
|
9789
|
+
metadataUri: string;
|
|
9705
9790
|
};
|
|
9706
9791
|
} | null;
|
|
9707
9792
|
};
|
|
@@ -9720,6 +9805,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9720
9805
|
externalUrl?: string | null;
|
|
9721
9806
|
tokenId?: string | null;
|
|
9722
9807
|
sellerId?: string | null;
|
|
9808
|
+
contactPreference?: string | null;
|
|
9723
9809
|
images?: Array<{
|
|
9724
9810
|
__typename?: "ProductV1Media";
|
|
9725
9811
|
id: string;
|
|
@@ -9748,6 +9834,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9748
9834
|
active: boolean;
|
|
9749
9835
|
contractURI: string;
|
|
9750
9836
|
royaltyPercentage: string;
|
|
9837
|
+
metadataUri: string;
|
|
9751
9838
|
};
|
|
9752
9839
|
};
|
|
9753
9840
|
exchangePolicy: {
|
|
@@ -10000,6 +10087,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10000
10087
|
active: boolean;
|
|
10001
10088
|
contractURI: string;
|
|
10002
10089
|
royaltyPercentage: string;
|
|
10090
|
+
metadataUri: string;
|
|
10003
10091
|
};
|
|
10004
10092
|
exchangeToken: {
|
|
10005
10093
|
__typename?: "ExchangeToken";
|
|
@@ -10177,6 +10265,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10177
10265
|
externalUrl?: string | null;
|
|
10178
10266
|
tokenId?: string | null;
|
|
10179
10267
|
sellerId?: string | null;
|
|
10268
|
+
contactPreference?: string | null;
|
|
10180
10269
|
images?: Array<{
|
|
10181
10270
|
__typename?: "ProductV1Media";
|
|
10182
10271
|
id: string;
|
|
@@ -10205,6 +10294,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10205
10294
|
active: boolean;
|
|
10206
10295
|
contractURI: string;
|
|
10207
10296
|
royaltyPercentage: string;
|
|
10297
|
+
metadataUri: string;
|
|
10208
10298
|
};
|
|
10209
10299
|
} | null;
|
|
10210
10300
|
};
|
|
@@ -10223,6 +10313,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10223
10313
|
externalUrl?: string | null;
|
|
10224
10314
|
tokenId?: string | null;
|
|
10225
10315
|
sellerId?: string | null;
|
|
10316
|
+
contactPreference?: string | null;
|
|
10226
10317
|
images?: Array<{
|
|
10227
10318
|
__typename?: "ProductV1Media";
|
|
10228
10319
|
id: string;
|
|
@@ -10251,6 +10342,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10251
10342
|
active: boolean;
|
|
10252
10343
|
contractURI: string;
|
|
10253
10344
|
royaltyPercentage: string;
|
|
10345
|
+
metadataUri: string;
|
|
10254
10346
|
};
|
|
10255
10347
|
};
|
|
10256
10348
|
exchangePolicy: {
|
|
@@ -10429,6 +10521,7 @@ export declare type SellerFieldsFragment = {
|
|
|
10429
10521
|
active: boolean;
|
|
10430
10522
|
contractURI: string;
|
|
10431
10523
|
royaltyPercentage: string;
|
|
10524
|
+
metadataUri: string;
|
|
10432
10525
|
pendingSeller?: {
|
|
10433
10526
|
__typename?: "PendingSeller";
|
|
10434
10527
|
assistant?: string | null;
|
|
@@ -10500,6 +10593,7 @@ export declare type SellerFieldsFragment = {
|
|
|
10500
10593
|
active: boolean;
|
|
10501
10594
|
contractURI: string;
|
|
10502
10595
|
royaltyPercentage: string;
|
|
10596
|
+
metadataUri: string;
|
|
10503
10597
|
};
|
|
10504
10598
|
exchangeToken: {
|
|
10505
10599
|
__typename?: "ExchangeToken";
|
|
@@ -10677,6 +10771,7 @@ export declare type SellerFieldsFragment = {
|
|
|
10677
10771
|
externalUrl?: string | null;
|
|
10678
10772
|
tokenId?: string | null;
|
|
10679
10773
|
sellerId?: string | null;
|
|
10774
|
+
contactPreference?: string | null;
|
|
10680
10775
|
images?: Array<{
|
|
10681
10776
|
__typename?: "ProductV1Media";
|
|
10682
10777
|
id: string;
|
|
@@ -10705,6 +10800,7 @@ export declare type SellerFieldsFragment = {
|
|
|
10705
10800
|
active: boolean;
|
|
10706
10801
|
contractURI: string;
|
|
10707
10802
|
royaltyPercentage: string;
|
|
10803
|
+
metadataUri: string;
|
|
10708
10804
|
};
|
|
10709
10805
|
} | null;
|
|
10710
10806
|
};
|
|
@@ -10723,6 +10819,7 @@ export declare type SellerFieldsFragment = {
|
|
|
10723
10819
|
externalUrl?: string | null;
|
|
10724
10820
|
tokenId?: string | null;
|
|
10725
10821
|
sellerId?: string | null;
|
|
10822
|
+
contactPreference?: string | null;
|
|
10726
10823
|
images?: Array<{
|
|
10727
10824
|
__typename?: "ProductV1Media";
|
|
10728
10825
|
id: string;
|
|
@@ -10751,6 +10848,7 @@ export declare type SellerFieldsFragment = {
|
|
|
10751
10848
|
active: boolean;
|
|
10752
10849
|
contractURI: string;
|
|
10753
10850
|
royaltyPercentage: string;
|
|
10851
|
+
metadataUri: string;
|
|
10754
10852
|
};
|
|
10755
10853
|
};
|
|
10756
10854
|
exchangePolicy: {
|
|
@@ -10841,6 +10939,7 @@ export declare type SellerFieldsFragment = {
|
|
|
10841
10939
|
active: boolean;
|
|
10842
10940
|
contractURI: string;
|
|
10843
10941
|
royaltyPercentage: string;
|
|
10942
|
+
metadataUri: string;
|
|
10844
10943
|
};
|
|
10845
10944
|
}>;
|
|
10846
10945
|
logs?: Array<{
|
|
@@ -10963,6 +11062,7 @@ export declare type BaseSellerFieldsFragment = {
|
|
|
10963
11062
|
active: boolean;
|
|
10964
11063
|
contractURI: string;
|
|
10965
11064
|
royaltyPercentage: string;
|
|
11065
|
+
metadataUri: string;
|
|
10966
11066
|
};
|
|
10967
11067
|
export declare type PendingSellerFieldsFragment = {
|
|
10968
11068
|
__typename?: "PendingSeller";
|
|
@@ -11039,6 +11139,7 @@ export declare type BuyerFieldsFragment = {
|
|
|
11039
11139
|
active: boolean;
|
|
11040
11140
|
contractURI: string;
|
|
11041
11141
|
royaltyPercentage: string;
|
|
11142
|
+
metadataUri: string;
|
|
11042
11143
|
};
|
|
11043
11144
|
}>;
|
|
11044
11145
|
logs?: Array<{
|
|
@@ -11220,6 +11321,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11220
11321
|
active: boolean;
|
|
11221
11322
|
contractURI: string;
|
|
11222
11323
|
royaltyPercentage: string;
|
|
11324
|
+
metadataUri: string;
|
|
11223
11325
|
};
|
|
11224
11326
|
exchangeToken: {
|
|
11225
11327
|
__typename?: "ExchangeToken";
|
|
@@ -11397,6 +11499,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11397
11499
|
externalUrl?: string | null;
|
|
11398
11500
|
tokenId?: string | null;
|
|
11399
11501
|
sellerId?: string | null;
|
|
11502
|
+
contactPreference?: string | null;
|
|
11400
11503
|
images?: Array<{
|
|
11401
11504
|
__typename?: "ProductV1Media";
|
|
11402
11505
|
id: string;
|
|
@@ -11425,6 +11528,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11425
11528
|
active: boolean;
|
|
11426
11529
|
contractURI: string;
|
|
11427
11530
|
royaltyPercentage: string;
|
|
11531
|
+
metadataUri: string;
|
|
11428
11532
|
};
|
|
11429
11533
|
} | null;
|
|
11430
11534
|
};
|
|
@@ -11443,6 +11547,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11443
11547
|
externalUrl?: string | null;
|
|
11444
11548
|
tokenId?: string | null;
|
|
11445
11549
|
sellerId?: string | null;
|
|
11550
|
+
contactPreference?: string | null;
|
|
11446
11551
|
images?: Array<{
|
|
11447
11552
|
__typename?: "ProductV1Media";
|
|
11448
11553
|
id: string;
|
|
@@ -11471,6 +11576,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11471
11576
|
active: boolean;
|
|
11472
11577
|
contractURI: string;
|
|
11473
11578
|
royaltyPercentage: string;
|
|
11579
|
+
metadataUri: string;
|
|
11474
11580
|
};
|
|
11475
11581
|
};
|
|
11476
11582
|
exchangePolicy: {
|
|
@@ -11764,6 +11870,7 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
11764
11870
|
active: boolean;
|
|
11765
11871
|
contractURI: string;
|
|
11766
11872
|
royaltyPercentage: string;
|
|
11873
|
+
metadataUri: string;
|
|
11767
11874
|
};
|
|
11768
11875
|
};
|
|
11769
11876
|
seller: {
|
|
@@ -11779,6 +11886,7 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
11779
11886
|
active: boolean;
|
|
11780
11887
|
contractURI: string;
|
|
11781
11888
|
royaltyPercentage: string;
|
|
11889
|
+
metadataUri: string;
|
|
11782
11890
|
};
|
|
11783
11891
|
buyer: {
|
|
11784
11892
|
__typename?: "Buyer";
|
|
@@ -11859,6 +11967,7 @@ export declare type GetDisputesQueryQuery = {
|
|
|
11859
11967
|
active: boolean;
|
|
11860
11968
|
contractURI: string;
|
|
11861
11969
|
royaltyPercentage: string;
|
|
11970
|
+
metadataUri: string;
|
|
11862
11971
|
};
|
|
11863
11972
|
};
|
|
11864
11973
|
seller: {
|
|
@@ -11874,6 +11983,7 @@ export declare type GetDisputesQueryQuery = {
|
|
|
11874
11983
|
active: boolean;
|
|
11875
11984
|
contractURI: string;
|
|
11876
11985
|
royaltyPercentage: string;
|
|
11986
|
+
metadataUri: string;
|
|
11877
11987
|
};
|
|
11878
11988
|
buyer: {
|
|
11879
11989
|
__typename?: "Buyer";
|
|
@@ -11945,6 +12055,7 @@ export declare type DisputeFieldsFragment = {
|
|
|
11945
12055
|
active: boolean;
|
|
11946
12056
|
contractURI: string;
|
|
11947
12057
|
royaltyPercentage: string;
|
|
12058
|
+
metadataUri: string;
|
|
11948
12059
|
};
|
|
11949
12060
|
};
|
|
11950
12061
|
seller: {
|
|
@@ -11960,6 +12071,7 @@ export declare type DisputeFieldsFragment = {
|
|
|
11960
12071
|
active: boolean;
|
|
11961
12072
|
contractURI: string;
|
|
11962
12073
|
royaltyPercentage: string;
|
|
12074
|
+
metadataUri: string;
|
|
11963
12075
|
};
|
|
11964
12076
|
buyer: {
|
|
11965
12077
|
__typename?: "Buyer";
|
|
@@ -12061,6 +12173,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12061
12173
|
active: boolean;
|
|
12062
12174
|
contractURI: string;
|
|
12063
12175
|
royaltyPercentage: string;
|
|
12176
|
+
metadataUri: string;
|
|
12064
12177
|
};
|
|
12065
12178
|
exchangeToken: {
|
|
12066
12179
|
__typename?: "ExchangeToken";
|
|
@@ -12238,6 +12351,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12238
12351
|
externalUrl?: string | null;
|
|
12239
12352
|
tokenId?: string | null;
|
|
12240
12353
|
sellerId?: string | null;
|
|
12354
|
+
contactPreference?: string | null;
|
|
12241
12355
|
images?: Array<{
|
|
12242
12356
|
__typename?: "ProductV1Media";
|
|
12243
12357
|
id: string;
|
|
@@ -12266,6 +12380,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12266
12380
|
active: boolean;
|
|
12267
12381
|
contractURI: string;
|
|
12268
12382
|
royaltyPercentage: string;
|
|
12383
|
+
metadataUri: string;
|
|
12269
12384
|
};
|
|
12270
12385
|
} | null;
|
|
12271
12386
|
};
|
|
@@ -12284,6 +12399,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12284
12399
|
externalUrl?: string | null;
|
|
12285
12400
|
tokenId?: string | null;
|
|
12286
12401
|
sellerId?: string | null;
|
|
12402
|
+
contactPreference?: string | null;
|
|
12287
12403
|
images?: Array<{
|
|
12288
12404
|
__typename?: "ProductV1Media";
|
|
12289
12405
|
id: string;
|
|
@@ -12312,6 +12428,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12312
12428
|
active: boolean;
|
|
12313
12429
|
contractURI: string;
|
|
12314
12430
|
royaltyPercentage: string;
|
|
12431
|
+
metadataUri: string;
|
|
12315
12432
|
};
|
|
12316
12433
|
};
|
|
12317
12434
|
exchangePolicy: {
|
|
@@ -12439,6 +12556,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12439
12556
|
active: boolean;
|
|
12440
12557
|
contractURI: string;
|
|
12441
12558
|
royaltyPercentage: string;
|
|
12559
|
+
metadataUri: string;
|
|
12442
12560
|
};
|
|
12443
12561
|
exchangeToken: {
|
|
12444
12562
|
__typename?: "ExchangeToken";
|
|
@@ -12616,6 +12734,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12616
12734
|
externalUrl?: string | null;
|
|
12617
12735
|
tokenId?: string | null;
|
|
12618
12736
|
sellerId?: string | null;
|
|
12737
|
+
contactPreference?: string | null;
|
|
12619
12738
|
images?: Array<{
|
|
12620
12739
|
__typename?: "ProductV1Media";
|
|
12621
12740
|
id: string;
|
|
@@ -12644,6 +12763,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12644
12763
|
active: boolean;
|
|
12645
12764
|
contractURI: string;
|
|
12646
12765
|
royaltyPercentage: string;
|
|
12766
|
+
metadataUri: string;
|
|
12647
12767
|
};
|
|
12648
12768
|
} | null;
|
|
12649
12769
|
};
|
|
@@ -12662,6 +12782,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12662
12782
|
externalUrl?: string | null;
|
|
12663
12783
|
tokenId?: string | null;
|
|
12664
12784
|
sellerId?: string | null;
|
|
12785
|
+
contactPreference?: string | null;
|
|
12665
12786
|
images?: Array<{
|
|
12666
12787
|
__typename?: "ProductV1Media";
|
|
12667
12788
|
id: string;
|
|
@@ -12690,6 +12811,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12690
12811
|
active: boolean;
|
|
12691
12812
|
contractURI: string;
|
|
12692
12813
|
royaltyPercentage: string;
|
|
12814
|
+
metadataUri: string;
|
|
12693
12815
|
};
|
|
12694
12816
|
};
|
|
12695
12817
|
exchangePolicy: {
|
|
@@ -12796,6 +12918,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12796
12918
|
active: boolean;
|
|
12797
12919
|
contractURI: string;
|
|
12798
12920
|
royaltyPercentage: string;
|
|
12921
|
+
metadataUri: string;
|
|
12799
12922
|
};
|
|
12800
12923
|
exchangeToken: {
|
|
12801
12924
|
__typename?: "ExchangeToken";
|
|
@@ -12973,6 +13096,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12973
13096
|
externalUrl?: string | null;
|
|
12974
13097
|
tokenId?: string | null;
|
|
12975
13098
|
sellerId?: string | null;
|
|
13099
|
+
contactPreference?: string | null;
|
|
12976
13100
|
images?: Array<{
|
|
12977
13101
|
__typename?: "ProductV1Media";
|
|
12978
13102
|
id: string;
|
|
@@ -13001,6 +13125,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
13001
13125
|
active: boolean;
|
|
13002
13126
|
contractURI: string;
|
|
13003
13127
|
royaltyPercentage: string;
|
|
13128
|
+
metadataUri: string;
|
|
13004
13129
|
};
|
|
13005
13130
|
} | null;
|
|
13006
13131
|
};
|
|
@@ -13019,6 +13144,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
13019
13144
|
externalUrl?: string | null;
|
|
13020
13145
|
tokenId?: string | null;
|
|
13021
13146
|
sellerId?: string | null;
|
|
13147
|
+
contactPreference?: string | null;
|
|
13022
13148
|
images?: Array<{
|
|
13023
13149
|
__typename?: "ProductV1Media";
|
|
13024
13150
|
id: string;
|
|
@@ -13047,6 +13173,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
13047
13173
|
active: boolean;
|
|
13048
13174
|
contractURI: string;
|
|
13049
13175
|
royaltyPercentage: string;
|
|
13176
|
+
metadataUri: string;
|
|
13050
13177
|
};
|
|
13051
13178
|
};
|
|
13052
13179
|
exchangePolicy: {
|
|
@@ -13399,6 +13526,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13399
13526
|
active: boolean;
|
|
13400
13527
|
contractURI: string;
|
|
13401
13528
|
royaltyPercentage: string;
|
|
13529
|
+
metadataUri: string;
|
|
13402
13530
|
};
|
|
13403
13531
|
exchangeToken: {
|
|
13404
13532
|
__typename?: "ExchangeToken";
|
|
@@ -13576,6 +13704,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13576
13704
|
externalUrl?: string | null;
|
|
13577
13705
|
tokenId?: string | null;
|
|
13578
13706
|
sellerId?: string | null;
|
|
13707
|
+
contactPreference?: string | null;
|
|
13579
13708
|
images?: Array<{
|
|
13580
13709
|
__typename?: "ProductV1Media";
|
|
13581
13710
|
id: string;
|
|
@@ -13604,6 +13733,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13604
13733
|
active: boolean;
|
|
13605
13734
|
contractURI: string;
|
|
13606
13735
|
royaltyPercentage: string;
|
|
13736
|
+
metadataUri: string;
|
|
13607
13737
|
};
|
|
13608
13738
|
} | null;
|
|
13609
13739
|
};
|
|
@@ -13622,6 +13752,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13622
13752
|
externalUrl?: string | null;
|
|
13623
13753
|
tokenId?: string | null;
|
|
13624
13754
|
sellerId?: string | null;
|
|
13755
|
+
contactPreference?: string | null;
|
|
13625
13756
|
images?: Array<{
|
|
13626
13757
|
__typename?: "ProductV1Media";
|
|
13627
13758
|
id: string;
|
|
@@ -13650,6 +13781,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13650
13781
|
active: boolean;
|
|
13651
13782
|
contractURI: string;
|
|
13652
13783
|
royaltyPercentage: string;
|
|
13784
|
+
metadataUri: string;
|
|
13653
13785
|
};
|
|
13654
13786
|
};
|
|
13655
13787
|
exchangePolicy: {
|
|
@@ -13726,6 +13858,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13726
13858
|
active: boolean;
|
|
13727
13859
|
contractURI: string;
|
|
13728
13860
|
royaltyPercentage: string;
|
|
13861
|
+
metadataUri: string;
|
|
13729
13862
|
};
|
|
13730
13863
|
} | null;
|
|
13731
13864
|
};
|
|
@@ -13801,6 +13934,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13801
13934
|
active: boolean;
|
|
13802
13935
|
contractURI: string;
|
|
13803
13936
|
royaltyPercentage: string;
|
|
13937
|
+
metadataUri: string;
|
|
13804
13938
|
};
|
|
13805
13939
|
exchangeToken: {
|
|
13806
13940
|
__typename?: "ExchangeToken";
|
|
@@ -13978,6 +14112,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13978
14112
|
externalUrl?: string | null;
|
|
13979
14113
|
tokenId?: string | null;
|
|
13980
14114
|
sellerId?: string | null;
|
|
14115
|
+
contactPreference?: string | null;
|
|
13981
14116
|
images?: Array<{
|
|
13982
14117
|
__typename?: "ProductV1Media";
|
|
13983
14118
|
id: string;
|
|
@@ -14006,6 +14141,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
14006
14141
|
active: boolean;
|
|
14007
14142
|
contractURI: string;
|
|
14008
14143
|
royaltyPercentage: string;
|
|
14144
|
+
metadataUri: string;
|
|
14009
14145
|
};
|
|
14010
14146
|
} | null;
|
|
14011
14147
|
};
|
|
@@ -14024,6 +14160,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
14024
14160
|
externalUrl?: string | null;
|
|
14025
14161
|
tokenId?: string | null;
|
|
14026
14162
|
sellerId?: string | null;
|
|
14163
|
+
contactPreference?: string | null;
|
|
14027
14164
|
images?: Array<{
|
|
14028
14165
|
__typename?: "ProductV1Media";
|
|
14029
14166
|
id: string;
|
|
@@ -14052,6 +14189,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
14052
14189
|
active: boolean;
|
|
14053
14190
|
contractURI: string;
|
|
14054
14191
|
royaltyPercentage: string;
|
|
14192
|
+
metadataUri: string;
|
|
14055
14193
|
};
|
|
14056
14194
|
};
|
|
14057
14195
|
exchangePolicy: {
|
|
@@ -14128,6 +14266,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
14128
14266
|
active: boolean;
|
|
14129
14267
|
contractURI: string;
|
|
14130
14268
|
royaltyPercentage: string;
|
|
14269
|
+
metadataUri: string;
|
|
14131
14270
|
};
|
|
14132
14271
|
}>;
|
|
14133
14272
|
};
|
|
@@ -14194,6 +14333,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14194
14333
|
active: boolean;
|
|
14195
14334
|
contractURI: string;
|
|
14196
14335
|
royaltyPercentage: string;
|
|
14336
|
+
metadataUri: string;
|
|
14197
14337
|
};
|
|
14198
14338
|
exchangeToken: {
|
|
14199
14339
|
__typename?: "ExchangeToken";
|
|
@@ -14371,6 +14511,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14371
14511
|
externalUrl?: string | null;
|
|
14372
14512
|
tokenId?: string | null;
|
|
14373
14513
|
sellerId?: string | null;
|
|
14514
|
+
contactPreference?: string | null;
|
|
14374
14515
|
images?: Array<{
|
|
14375
14516
|
__typename?: "ProductV1Media";
|
|
14376
14517
|
id: string;
|
|
@@ -14399,6 +14540,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14399
14540
|
active: boolean;
|
|
14400
14541
|
contractURI: string;
|
|
14401
14542
|
royaltyPercentage: string;
|
|
14543
|
+
metadataUri: string;
|
|
14402
14544
|
};
|
|
14403
14545
|
} | null;
|
|
14404
14546
|
};
|
|
@@ -14417,6 +14559,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14417
14559
|
externalUrl?: string | null;
|
|
14418
14560
|
tokenId?: string | null;
|
|
14419
14561
|
sellerId?: string | null;
|
|
14562
|
+
contactPreference?: string | null;
|
|
14420
14563
|
images?: Array<{
|
|
14421
14564
|
__typename?: "ProductV1Media";
|
|
14422
14565
|
id: string;
|
|
@@ -14445,6 +14588,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14445
14588
|
active: boolean;
|
|
14446
14589
|
contractURI: string;
|
|
14447
14590
|
royaltyPercentage: string;
|
|
14591
|
+
metadataUri: string;
|
|
14448
14592
|
};
|
|
14449
14593
|
};
|
|
14450
14594
|
exchangePolicy: {
|
|
@@ -14521,6 +14665,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14521
14665
|
active: boolean;
|
|
14522
14666
|
contractURI: string;
|
|
14523
14667
|
royaltyPercentage: string;
|
|
14668
|
+
metadataUri: string;
|
|
14524
14669
|
};
|
|
14525
14670
|
};
|
|
14526
14671
|
export declare type BaseExchangeFieldsFragment = {
|
|
@@ -14571,6 +14716,7 @@ export declare type BaseExchangeFieldsFragment = {
|
|
|
14571
14716
|
active: boolean;
|
|
14572
14717
|
contractURI: string;
|
|
14573
14718
|
royaltyPercentage: string;
|
|
14719
|
+
metadataUri: string;
|
|
14574
14720
|
};
|
|
14575
14721
|
};
|
|
14576
14722
|
export declare type GetFundsByIdQueryVariables = Exact<{
|
|
@@ -14738,6 +14884,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14738
14884
|
active: boolean;
|
|
14739
14885
|
contractURI: string;
|
|
14740
14886
|
royaltyPercentage: string;
|
|
14887
|
+
metadataUri: string;
|
|
14741
14888
|
};
|
|
14742
14889
|
exchangeToken: {
|
|
14743
14890
|
__typename?: "ExchangeToken";
|
|
@@ -14915,6 +15062,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14915
15062
|
externalUrl?: string | null;
|
|
14916
15063
|
tokenId?: string | null;
|
|
14917
15064
|
sellerId?: string | null;
|
|
15065
|
+
contactPreference?: string | null;
|
|
14918
15066
|
images?: Array<{
|
|
14919
15067
|
__typename?: "ProductV1Media";
|
|
14920
15068
|
id: string;
|
|
@@ -14943,6 +15091,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14943
15091
|
active: boolean;
|
|
14944
15092
|
contractURI: string;
|
|
14945
15093
|
royaltyPercentage: string;
|
|
15094
|
+
metadataUri: string;
|
|
14946
15095
|
};
|
|
14947
15096
|
} | null;
|
|
14948
15097
|
};
|
|
@@ -14961,6 +15110,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14961
15110
|
externalUrl?: string | null;
|
|
14962
15111
|
tokenId?: string | null;
|
|
14963
15112
|
sellerId?: string | null;
|
|
15113
|
+
contactPreference?: string | null;
|
|
14964
15114
|
images?: Array<{
|
|
14965
15115
|
__typename?: "ProductV1Media";
|
|
14966
15116
|
id: string;
|
|
@@ -14989,6 +15139,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14989
15139
|
active: boolean;
|
|
14990
15140
|
contractURI: string;
|
|
14991
15141
|
royaltyPercentage: string;
|
|
15142
|
+
metadataUri: string;
|
|
14992
15143
|
};
|
|
14993
15144
|
};
|
|
14994
15145
|
exchangePolicy: {
|
|
@@ -15044,6 +15195,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
15044
15195
|
active: boolean;
|
|
15045
15196
|
contractURI: string;
|
|
15046
15197
|
royaltyPercentage: string;
|
|
15198
|
+
metadataUri: string;
|
|
15047
15199
|
};
|
|
15048
15200
|
exchangeToken: {
|
|
15049
15201
|
__typename?: "ExchangeToken";
|
|
@@ -15145,6 +15297,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15145
15297
|
active: boolean;
|
|
15146
15298
|
contractURI: string;
|
|
15147
15299
|
royaltyPercentage: string;
|
|
15300
|
+
metadataUri: string;
|
|
15148
15301
|
};
|
|
15149
15302
|
exchangeToken: {
|
|
15150
15303
|
__typename?: "ExchangeToken";
|
|
@@ -15322,6 +15475,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15322
15475
|
externalUrl?: string | null;
|
|
15323
15476
|
tokenId?: string | null;
|
|
15324
15477
|
sellerId?: string | null;
|
|
15478
|
+
contactPreference?: string | null;
|
|
15325
15479
|
images?: Array<{
|
|
15326
15480
|
__typename?: "ProductV1Media";
|
|
15327
15481
|
id: string;
|
|
@@ -15350,6 +15504,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15350
15504
|
active: boolean;
|
|
15351
15505
|
contractURI: string;
|
|
15352
15506
|
royaltyPercentage: string;
|
|
15507
|
+
metadataUri: string;
|
|
15353
15508
|
};
|
|
15354
15509
|
} | null;
|
|
15355
15510
|
};
|
|
@@ -15368,6 +15523,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15368
15523
|
externalUrl?: string | null;
|
|
15369
15524
|
tokenId?: string | null;
|
|
15370
15525
|
sellerId?: string | null;
|
|
15526
|
+
contactPreference?: string | null;
|
|
15371
15527
|
images?: Array<{
|
|
15372
15528
|
__typename?: "ProductV1Media";
|
|
15373
15529
|
id: string;
|
|
@@ -15396,6 +15552,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15396
15552
|
active: boolean;
|
|
15397
15553
|
contractURI: string;
|
|
15398
15554
|
royaltyPercentage: string;
|
|
15555
|
+
metadataUri: string;
|
|
15399
15556
|
};
|
|
15400
15557
|
};
|
|
15401
15558
|
exchangePolicy: {
|
|
@@ -15451,6 +15608,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15451
15608
|
active: boolean;
|
|
15452
15609
|
contractURI: string;
|
|
15453
15610
|
royaltyPercentage: string;
|
|
15611
|
+
metadataUri: string;
|
|
15454
15612
|
};
|
|
15455
15613
|
exchangeToken: {
|
|
15456
15614
|
__typename?: "ExchangeToken";
|
|
@@ -15543,6 +15701,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15543
15701
|
active: boolean;
|
|
15544
15702
|
contractURI: string;
|
|
15545
15703
|
royaltyPercentage: string;
|
|
15704
|
+
metadataUri: string;
|
|
15546
15705
|
};
|
|
15547
15706
|
exchangeToken: {
|
|
15548
15707
|
__typename?: "ExchangeToken";
|
|
@@ -15720,6 +15879,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15720
15879
|
externalUrl?: string | null;
|
|
15721
15880
|
tokenId?: string | null;
|
|
15722
15881
|
sellerId?: string | null;
|
|
15882
|
+
contactPreference?: string | null;
|
|
15723
15883
|
images?: Array<{
|
|
15724
15884
|
__typename?: "ProductV1Media";
|
|
15725
15885
|
id: string;
|
|
@@ -15748,6 +15908,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15748
15908
|
active: boolean;
|
|
15749
15909
|
contractURI: string;
|
|
15750
15910
|
royaltyPercentage: string;
|
|
15911
|
+
metadataUri: string;
|
|
15751
15912
|
};
|
|
15752
15913
|
} | null;
|
|
15753
15914
|
};
|
|
@@ -15766,6 +15927,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15766
15927
|
externalUrl?: string | null;
|
|
15767
15928
|
tokenId?: string | null;
|
|
15768
15929
|
sellerId?: string | null;
|
|
15930
|
+
contactPreference?: string | null;
|
|
15769
15931
|
images?: Array<{
|
|
15770
15932
|
__typename?: "ProductV1Media";
|
|
15771
15933
|
id: string;
|
|
@@ -15794,6 +15956,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15794
15956
|
active: boolean;
|
|
15795
15957
|
contractURI: string;
|
|
15796
15958
|
royaltyPercentage: string;
|
|
15959
|
+
metadataUri: string;
|
|
15797
15960
|
};
|
|
15798
15961
|
};
|
|
15799
15962
|
exchangePolicy: {
|
|
@@ -15849,6 +16012,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15849
16012
|
active: boolean;
|
|
15850
16013
|
contractURI: string;
|
|
15851
16014
|
royaltyPercentage: string;
|
|
16015
|
+
metadataUri: string;
|
|
15852
16016
|
};
|
|
15853
16017
|
exchangeToken: {
|
|
15854
16018
|
__typename?: "ExchangeToken";
|
|
@@ -15940,6 +16104,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15940
16104
|
active: boolean;
|
|
15941
16105
|
contractURI: string;
|
|
15942
16106
|
royaltyPercentage: string;
|
|
16107
|
+
metadataUri: string;
|
|
15943
16108
|
};
|
|
15944
16109
|
exchangeToken: {
|
|
15945
16110
|
__typename?: "ExchangeToken";
|
|
@@ -16117,6 +16282,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
16117
16282
|
externalUrl?: string | null;
|
|
16118
16283
|
tokenId?: string | null;
|
|
16119
16284
|
sellerId?: string | null;
|
|
16285
|
+
contactPreference?: string | null;
|
|
16120
16286
|
images?: Array<{
|
|
16121
16287
|
__typename?: "ProductV1Media";
|
|
16122
16288
|
id: string;
|
|
@@ -16145,6 +16311,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
16145
16311
|
active: boolean;
|
|
16146
16312
|
contractURI: string;
|
|
16147
16313
|
royaltyPercentage: string;
|
|
16314
|
+
metadataUri: string;
|
|
16148
16315
|
};
|
|
16149
16316
|
} | null;
|
|
16150
16317
|
};
|
|
@@ -16163,6 +16330,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
16163
16330
|
externalUrl?: string | null;
|
|
16164
16331
|
tokenId?: string | null;
|
|
16165
16332
|
sellerId?: string | null;
|
|
16333
|
+
contactPreference?: string | null;
|
|
16166
16334
|
images?: Array<{
|
|
16167
16335
|
__typename?: "ProductV1Media";
|
|
16168
16336
|
id: string;
|
|
@@ -16191,6 +16359,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
16191
16359
|
active: boolean;
|
|
16192
16360
|
contractURI: string;
|
|
16193
16361
|
royaltyPercentage: string;
|
|
16362
|
+
metadataUri: string;
|
|
16194
16363
|
};
|
|
16195
16364
|
};
|
|
16196
16365
|
exchangePolicy: {
|
|
@@ -16246,6 +16415,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
16246
16415
|
active: boolean;
|
|
16247
16416
|
contractURI: string;
|
|
16248
16417
|
royaltyPercentage: string;
|
|
16418
|
+
metadataUri: string;
|
|
16249
16419
|
};
|
|
16250
16420
|
exchangeToken: {
|
|
16251
16421
|
__typename?: "ExchangeToken";
|
|
@@ -16372,6 +16542,7 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
16372
16542
|
externalUrl?: string | null;
|
|
16373
16543
|
tokenId?: string | null;
|
|
16374
16544
|
sellerId?: string | null;
|
|
16545
|
+
contactPreference?: string | null;
|
|
16375
16546
|
images?: Array<{
|
|
16376
16547
|
__typename?: "ProductV1Media";
|
|
16377
16548
|
id: string;
|
|
@@ -16400,6 +16571,7 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
16400
16571
|
active: boolean;
|
|
16401
16572
|
contractURI: string;
|
|
16402
16573
|
royaltyPercentage: string;
|
|
16574
|
+
metadataUri: string;
|
|
16403
16575
|
};
|
|
16404
16576
|
} | null;
|
|
16405
16577
|
}>;
|
|
@@ -16524,6 +16696,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16524
16696
|
active: boolean;
|
|
16525
16697
|
contractURI: string;
|
|
16526
16698
|
royaltyPercentage: string;
|
|
16699
|
+
metadataUri: string;
|
|
16527
16700
|
};
|
|
16528
16701
|
}>;
|
|
16529
16702
|
condition?: {
|
|
@@ -16549,6 +16722,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16549
16722
|
active: boolean;
|
|
16550
16723
|
contractURI: string;
|
|
16551
16724
|
royaltyPercentage: string;
|
|
16725
|
+
metadataUri: string;
|
|
16552
16726
|
};
|
|
16553
16727
|
exchangeToken: {
|
|
16554
16728
|
__typename?: "ExchangeToken";
|
|
@@ -16726,6 +16900,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16726
16900
|
externalUrl?: string | null;
|
|
16727
16901
|
tokenId?: string | null;
|
|
16728
16902
|
sellerId?: string | null;
|
|
16903
|
+
contactPreference?: string | null;
|
|
16729
16904
|
images?: Array<{
|
|
16730
16905
|
__typename?: "ProductV1Media";
|
|
16731
16906
|
id: string;
|
|
@@ -16754,6 +16929,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16754
16929
|
active: boolean;
|
|
16755
16930
|
contractURI: string;
|
|
16756
16931
|
royaltyPercentage: string;
|
|
16932
|
+
metadataUri: string;
|
|
16757
16933
|
};
|
|
16758
16934
|
} | null;
|
|
16759
16935
|
};
|
|
@@ -16772,6 +16948,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16772
16948
|
externalUrl?: string | null;
|
|
16773
16949
|
tokenId?: string | null;
|
|
16774
16950
|
sellerId?: string | null;
|
|
16951
|
+
contactPreference?: string | null;
|
|
16775
16952
|
images?: Array<{
|
|
16776
16953
|
__typename?: "ProductV1Media";
|
|
16777
16954
|
id: string;
|
|
@@ -16800,6 +16977,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16800
16977
|
active: boolean;
|
|
16801
16978
|
contractURI: string;
|
|
16802
16979
|
royaltyPercentage: string;
|
|
16980
|
+
metadataUri: string;
|
|
16803
16981
|
};
|
|
16804
16982
|
};
|
|
16805
16983
|
exchangePolicy: {
|
|
@@ -16911,6 +17089,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16911
17089
|
externalUrl?: string | null;
|
|
16912
17090
|
tokenId?: string | null;
|
|
16913
17091
|
sellerId?: string | null;
|
|
17092
|
+
contactPreference?: string | null;
|
|
16914
17093
|
images?: Array<{
|
|
16915
17094
|
__typename?: "ProductV1Media";
|
|
16916
17095
|
id: string;
|
|
@@ -16939,6 +17118,7 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16939
17118
|
active: boolean;
|
|
16940
17119
|
contractURI: string;
|
|
16941
17120
|
royaltyPercentage: string;
|
|
17121
|
+
metadataUri: string;
|
|
16942
17122
|
};
|
|
16943
17123
|
} | null;
|
|
16944
17124
|
}>;
|
|
@@ -17063,6 +17243,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17063
17243
|
active: boolean;
|
|
17064
17244
|
contractURI: string;
|
|
17065
17245
|
royaltyPercentage: string;
|
|
17246
|
+
metadataUri: string;
|
|
17066
17247
|
};
|
|
17067
17248
|
}>;
|
|
17068
17249
|
condition?: {
|
|
@@ -17088,6 +17269,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17088
17269
|
active: boolean;
|
|
17089
17270
|
contractURI: string;
|
|
17090
17271
|
royaltyPercentage: string;
|
|
17272
|
+
metadataUri: string;
|
|
17091
17273
|
};
|
|
17092
17274
|
exchangeToken: {
|
|
17093
17275
|
__typename?: "ExchangeToken";
|
|
@@ -17265,6 +17447,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17265
17447
|
externalUrl?: string | null;
|
|
17266
17448
|
tokenId?: string | null;
|
|
17267
17449
|
sellerId?: string | null;
|
|
17450
|
+
contactPreference?: string | null;
|
|
17268
17451
|
images?: Array<{
|
|
17269
17452
|
__typename?: "ProductV1Media";
|
|
17270
17453
|
id: string;
|
|
@@ -17293,6 +17476,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17293
17476
|
active: boolean;
|
|
17294
17477
|
contractURI: string;
|
|
17295
17478
|
royaltyPercentage: string;
|
|
17479
|
+
metadataUri: string;
|
|
17296
17480
|
};
|
|
17297
17481
|
} | null;
|
|
17298
17482
|
};
|
|
@@ -17311,6 +17495,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17311
17495
|
externalUrl?: string | null;
|
|
17312
17496
|
tokenId?: string | null;
|
|
17313
17497
|
sellerId?: string | null;
|
|
17498
|
+
contactPreference?: string | null;
|
|
17314
17499
|
images?: Array<{
|
|
17315
17500
|
__typename?: "ProductV1Media";
|
|
17316
17501
|
id: string;
|
|
@@ -17339,6 +17524,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17339
17524
|
active: boolean;
|
|
17340
17525
|
contractURI: string;
|
|
17341
17526
|
royaltyPercentage: string;
|
|
17527
|
+
metadataUri: string;
|
|
17342
17528
|
};
|
|
17343
17529
|
};
|
|
17344
17530
|
exchangePolicy: {
|
|
@@ -17450,6 +17636,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17450
17636
|
externalUrl?: string | null;
|
|
17451
17637
|
tokenId?: string | null;
|
|
17452
17638
|
sellerId?: string | null;
|
|
17639
|
+
contactPreference?: string | null;
|
|
17453
17640
|
images?: Array<{
|
|
17454
17641
|
__typename?: "ProductV1Media";
|
|
17455
17642
|
id: string;
|
|
@@ -17478,6 +17665,7 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17478
17665
|
active: boolean;
|
|
17479
17666
|
contractURI: string;
|
|
17480
17667
|
royaltyPercentage: string;
|
|
17668
|
+
metadataUri: string;
|
|
17481
17669
|
};
|
|
17482
17670
|
} | null;
|
|
17483
17671
|
}>;
|
|
@@ -17614,6 +17802,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17614
17802
|
active: boolean;
|
|
17615
17803
|
contractURI: string;
|
|
17616
17804
|
royaltyPercentage: string;
|
|
17805
|
+
metadataUri: string;
|
|
17617
17806
|
};
|
|
17618
17807
|
}>;
|
|
17619
17808
|
condition?: {
|
|
@@ -17639,6 +17828,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17639
17828
|
active: boolean;
|
|
17640
17829
|
contractURI: string;
|
|
17641
17830
|
royaltyPercentage: string;
|
|
17831
|
+
metadataUri: string;
|
|
17642
17832
|
};
|
|
17643
17833
|
exchangeToken: {
|
|
17644
17834
|
__typename?: "ExchangeToken";
|
|
@@ -17816,6 +18006,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17816
18006
|
externalUrl?: string | null;
|
|
17817
18007
|
tokenId?: string | null;
|
|
17818
18008
|
sellerId?: string | null;
|
|
18009
|
+
contactPreference?: string | null;
|
|
17819
18010
|
images?: Array<{
|
|
17820
18011
|
__typename?: "ProductV1Media";
|
|
17821
18012
|
id: string;
|
|
@@ -17844,6 +18035,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17844
18035
|
active: boolean;
|
|
17845
18036
|
contractURI: string;
|
|
17846
18037
|
royaltyPercentage: string;
|
|
18038
|
+
metadataUri: string;
|
|
17847
18039
|
};
|
|
17848
18040
|
} | null;
|
|
17849
18041
|
};
|
|
@@ -17862,6 +18054,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17862
18054
|
externalUrl?: string | null;
|
|
17863
18055
|
tokenId?: string | null;
|
|
17864
18056
|
sellerId?: string | null;
|
|
18057
|
+
contactPreference?: string | null;
|
|
17865
18058
|
images?: Array<{
|
|
17866
18059
|
__typename?: "ProductV1Media";
|
|
17867
18060
|
id: string;
|
|
@@ -17890,6 +18083,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17890
18083
|
active: boolean;
|
|
17891
18084
|
contractURI: string;
|
|
17892
18085
|
royaltyPercentage: string;
|
|
18086
|
+
metadataUri: string;
|
|
17893
18087
|
};
|
|
17894
18088
|
};
|
|
17895
18089
|
exchangePolicy: {
|
|
@@ -17945,6 +18139,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17945
18139
|
active: boolean;
|
|
17946
18140
|
contractURI: string;
|
|
17947
18141
|
royaltyPercentage: string;
|
|
18142
|
+
metadataUri: string;
|
|
17948
18143
|
};
|
|
17949
18144
|
exchangeToken: {
|
|
17950
18145
|
__typename?: "ExchangeToken";
|
|
@@ -18046,6 +18241,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
18046
18241
|
externalUrl?: string | null;
|
|
18047
18242
|
tokenId?: string | null;
|
|
18048
18243
|
sellerId?: string | null;
|
|
18244
|
+
contactPreference?: string | null;
|
|
18049
18245
|
images?: Array<{
|
|
18050
18246
|
__typename?: "ProductV1Media";
|
|
18051
18247
|
id: string;
|
|
@@ -18074,6 +18270,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
18074
18270
|
active: boolean;
|
|
18075
18271
|
contractURI: string;
|
|
18076
18272
|
royaltyPercentage: string;
|
|
18273
|
+
metadataUri: string;
|
|
18077
18274
|
};
|
|
18078
18275
|
} | null;
|
|
18079
18276
|
};
|
|
@@ -18092,6 +18289,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
18092
18289
|
externalUrl?: string | null;
|
|
18093
18290
|
tokenId?: string | null;
|
|
18094
18291
|
sellerId?: string | null;
|
|
18292
|
+
contactPreference?: string | null;
|
|
18095
18293
|
images?: Array<{
|
|
18096
18294
|
__typename?: "ProductV1Media";
|
|
18097
18295
|
id: string;
|
|
@@ -18120,6 +18318,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
18120
18318
|
active: boolean;
|
|
18121
18319
|
contractURI: string;
|
|
18122
18320
|
royaltyPercentage: string;
|
|
18321
|
+
metadataUri: string;
|
|
18123
18322
|
};
|
|
18124
18323
|
};
|
|
18125
18324
|
exchangePolicy: {
|
|
@@ -18250,6 +18449,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18250
18449
|
active: boolean;
|
|
18251
18450
|
contractURI: string;
|
|
18252
18451
|
royaltyPercentage: string;
|
|
18452
|
+
metadataUri: string;
|
|
18253
18453
|
};
|
|
18254
18454
|
}>;
|
|
18255
18455
|
condition?: {
|
|
@@ -18275,6 +18475,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18275
18475
|
active: boolean;
|
|
18276
18476
|
contractURI: string;
|
|
18277
18477
|
royaltyPercentage: string;
|
|
18478
|
+
metadataUri: string;
|
|
18278
18479
|
};
|
|
18279
18480
|
exchangeToken: {
|
|
18280
18481
|
__typename?: "ExchangeToken";
|
|
@@ -18452,6 +18653,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18452
18653
|
externalUrl?: string | null;
|
|
18453
18654
|
tokenId?: string | null;
|
|
18454
18655
|
sellerId?: string | null;
|
|
18656
|
+
contactPreference?: string | null;
|
|
18455
18657
|
images?: Array<{
|
|
18456
18658
|
__typename?: "ProductV1Media";
|
|
18457
18659
|
id: string;
|
|
@@ -18480,6 +18682,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18480
18682
|
active: boolean;
|
|
18481
18683
|
contractURI: string;
|
|
18482
18684
|
royaltyPercentage: string;
|
|
18685
|
+
metadataUri: string;
|
|
18483
18686
|
};
|
|
18484
18687
|
} | null;
|
|
18485
18688
|
};
|
|
@@ -18498,6 +18701,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18498
18701
|
externalUrl?: string | null;
|
|
18499
18702
|
tokenId?: string | null;
|
|
18500
18703
|
sellerId?: string | null;
|
|
18704
|
+
contactPreference?: string | null;
|
|
18501
18705
|
images?: Array<{
|
|
18502
18706
|
__typename?: "ProductV1Media";
|
|
18503
18707
|
id: string;
|
|
@@ -18526,6 +18730,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18526
18730
|
active: boolean;
|
|
18527
18731
|
contractURI: string;
|
|
18528
18732
|
royaltyPercentage: string;
|
|
18733
|
+
metadataUri: string;
|
|
18529
18734
|
};
|
|
18530
18735
|
};
|
|
18531
18736
|
exchangePolicy: {
|
|
@@ -18581,6 +18786,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18581
18786
|
active: boolean;
|
|
18582
18787
|
contractURI: string;
|
|
18583
18788
|
royaltyPercentage: string;
|
|
18789
|
+
metadataUri: string;
|
|
18584
18790
|
};
|
|
18585
18791
|
exchangeToken: {
|
|
18586
18792
|
__typename?: "ExchangeToken";
|
|
@@ -18682,6 +18888,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18682
18888
|
externalUrl?: string | null;
|
|
18683
18889
|
tokenId?: string | null;
|
|
18684
18890
|
sellerId?: string | null;
|
|
18891
|
+
contactPreference?: string | null;
|
|
18685
18892
|
images?: Array<{
|
|
18686
18893
|
__typename?: "ProductV1Media";
|
|
18687
18894
|
id: string;
|
|
@@ -18710,6 +18917,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18710
18917
|
active: boolean;
|
|
18711
18918
|
contractURI: string;
|
|
18712
18919
|
royaltyPercentage: string;
|
|
18920
|
+
metadataUri: string;
|
|
18713
18921
|
};
|
|
18714
18922
|
} | null;
|
|
18715
18923
|
};
|
|
@@ -18728,6 +18936,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18728
18936
|
externalUrl?: string | null;
|
|
18729
18937
|
tokenId?: string | null;
|
|
18730
18938
|
sellerId?: string | null;
|
|
18939
|
+
contactPreference?: string | null;
|
|
18731
18940
|
images?: Array<{
|
|
18732
18941
|
__typename?: "ProductV1Media";
|
|
18733
18942
|
id: string;
|
|
@@ -18756,6 +18965,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18756
18965
|
active: boolean;
|
|
18757
18966
|
contractURI: string;
|
|
18758
18967
|
royaltyPercentage: string;
|
|
18968
|
+
metadataUri: string;
|
|
18759
18969
|
};
|
|
18760
18970
|
};
|
|
18761
18971
|
exchangePolicy: {
|
|
@@ -18877,6 +19087,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18877
19087
|
active: boolean;
|
|
18878
19088
|
contractURI: string;
|
|
18879
19089
|
royaltyPercentage: string;
|
|
19090
|
+
metadataUri: string;
|
|
18880
19091
|
};
|
|
18881
19092
|
}>;
|
|
18882
19093
|
condition?: {
|
|
@@ -18902,6 +19113,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18902
19113
|
active: boolean;
|
|
18903
19114
|
contractURI: string;
|
|
18904
19115
|
royaltyPercentage: string;
|
|
19116
|
+
metadataUri: string;
|
|
18905
19117
|
};
|
|
18906
19118
|
exchangeToken: {
|
|
18907
19119
|
__typename?: "ExchangeToken";
|
|
@@ -19079,6 +19291,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19079
19291
|
externalUrl?: string | null;
|
|
19080
19292
|
tokenId?: string | null;
|
|
19081
19293
|
sellerId?: string | null;
|
|
19294
|
+
contactPreference?: string | null;
|
|
19082
19295
|
images?: Array<{
|
|
19083
19296
|
__typename?: "ProductV1Media";
|
|
19084
19297
|
id: string;
|
|
@@ -19107,6 +19320,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19107
19320
|
active: boolean;
|
|
19108
19321
|
contractURI: string;
|
|
19109
19322
|
royaltyPercentage: string;
|
|
19323
|
+
metadataUri: string;
|
|
19110
19324
|
};
|
|
19111
19325
|
} | null;
|
|
19112
19326
|
};
|
|
@@ -19125,6 +19339,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19125
19339
|
externalUrl?: string | null;
|
|
19126
19340
|
tokenId?: string | null;
|
|
19127
19341
|
sellerId?: string | null;
|
|
19342
|
+
contactPreference?: string | null;
|
|
19128
19343
|
images?: Array<{
|
|
19129
19344
|
__typename?: "ProductV1Media";
|
|
19130
19345
|
id: string;
|
|
@@ -19153,6 +19368,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19153
19368
|
active: boolean;
|
|
19154
19369
|
contractURI: string;
|
|
19155
19370
|
royaltyPercentage: string;
|
|
19371
|
+
metadataUri: string;
|
|
19156
19372
|
};
|
|
19157
19373
|
};
|
|
19158
19374
|
exchangePolicy: {
|
|
@@ -19208,6 +19424,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19208
19424
|
active: boolean;
|
|
19209
19425
|
contractURI: string;
|
|
19210
19426
|
royaltyPercentage: string;
|
|
19427
|
+
metadataUri: string;
|
|
19211
19428
|
};
|
|
19212
19429
|
exchangeToken: {
|
|
19213
19430
|
__typename?: "ExchangeToken";
|
|
@@ -19309,6 +19526,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19309
19526
|
externalUrl?: string | null;
|
|
19310
19527
|
tokenId?: string | null;
|
|
19311
19528
|
sellerId?: string | null;
|
|
19529
|
+
contactPreference?: string | null;
|
|
19312
19530
|
images?: Array<{
|
|
19313
19531
|
__typename?: "ProductV1Media";
|
|
19314
19532
|
id: string;
|
|
@@ -19337,6 +19555,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19337
19555
|
active: boolean;
|
|
19338
19556
|
contractURI: string;
|
|
19339
19557
|
royaltyPercentage: string;
|
|
19558
|
+
metadataUri: string;
|
|
19340
19559
|
};
|
|
19341
19560
|
} | null;
|
|
19342
19561
|
};
|
|
@@ -19355,6 +19574,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19355
19574
|
externalUrl?: string | null;
|
|
19356
19575
|
tokenId?: string | null;
|
|
19357
19576
|
sellerId?: string | null;
|
|
19577
|
+
contactPreference?: string | null;
|
|
19358
19578
|
images?: Array<{
|
|
19359
19579
|
__typename?: "ProductV1Media";
|
|
19360
19580
|
id: string;
|
|
@@ -19383,6 +19603,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19383
19603
|
active: boolean;
|
|
19384
19604
|
contractURI: string;
|
|
19385
19605
|
royaltyPercentage: string;
|
|
19606
|
+
metadataUri: string;
|
|
19386
19607
|
};
|
|
19387
19608
|
};
|
|
19388
19609
|
exchangePolicy: {
|
|
@@ -19503,6 +19724,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19503
19724
|
active: boolean;
|
|
19504
19725
|
contractURI: string;
|
|
19505
19726
|
royaltyPercentage: string;
|
|
19727
|
+
metadataUri: string;
|
|
19506
19728
|
};
|
|
19507
19729
|
}>;
|
|
19508
19730
|
condition?: {
|
|
@@ -19528,6 +19750,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19528
19750
|
active: boolean;
|
|
19529
19751
|
contractURI: string;
|
|
19530
19752
|
royaltyPercentage: string;
|
|
19753
|
+
metadataUri: string;
|
|
19531
19754
|
};
|
|
19532
19755
|
exchangeToken: {
|
|
19533
19756
|
__typename?: "ExchangeToken";
|
|
@@ -19705,6 +19928,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19705
19928
|
externalUrl?: string | null;
|
|
19706
19929
|
tokenId?: string | null;
|
|
19707
19930
|
sellerId?: string | null;
|
|
19931
|
+
contactPreference?: string | null;
|
|
19708
19932
|
images?: Array<{
|
|
19709
19933
|
__typename?: "ProductV1Media";
|
|
19710
19934
|
id: string;
|
|
@@ -19733,6 +19957,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19733
19957
|
active: boolean;
|
|
19734
19958
|
contractURI: string;
|
|
19735
19959
|
royaltyPercentage: string;
|
|
19960
|
+
metadataUri: string;
|
|
19736
19961
|
};
|
|
19737
19962
|
} | null;
|
|
19738
19963
|
};
|
|
@@ -19751,6 +19976,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19751
19976
|
externalUrl?: string | null;
|
|
19752
19977
|
tokenId?: string | null;
|
|
19753
19978
|
sellerId?: string | null;
|
|
19979
|
+
contactPreference?: string | null;
|
|
19754
19980
|
images?: Array<{
|
|
19755
19981
|
__typename?: "ProductV1Media";
|
|
19756
19982
|
id: string;
|
|
@@ -19779,6 +20005,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19779
20005
|
active: boolean;
|
|
19780
20006
|
contractURI: string;
|
|
19781
20007
|
royaltyPercentage: string;
|
|
20008
|
+
metadataUri: string;
|
|
19782
20009
|
};
|
|
19783
20010
|
};
|
|
19784
20011
|
exchangePolicy: {
|
|
@@ -19834,6 +20061,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19834
20061
|
active: boolean;
|
|
19835
20062
|
contractURI: string;
|
|
19836
20063
|
royaltyPercentage: string;
|
|
20064
|
+
metadataUri: string;
|
|
19837
20065
|
};
|
|
19838
20066
|
exchangeToken: {
|
|
19839
20067
|
__typename?: "ExchangeToken";
|
|
@@ -19935,6 +20163,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19935
20163
|
externalUrl?: string | null;
|
|
19936
20164
|
tokenId?: string | null;
|
|
19937
20165
|
sellerId?: string | null;
|
|
20166
|
+
contactPreference?: string | null;
|
|
19938
20167
|
images?: Array<{
|
|
19939
20168
|
__typename?: "ProductV1Media";
|
|
19940
20169
|
id: string;
|
|
@@ -19963,6 +20192,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19963
20192
|
active: boolean;
|
|
19964
20193
|
contractURI: string;
|
|
19965
20194
|
royaltyPercentage: string;
|
|
20195
|
+
metadataUri: string;
|
|
19966
20196
|
};
|
|
19967
20197
|
} | null;
|
|
19968
20198
|
};
|
|
@@ -19981,6 +20211,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19981
20211
|
externalUrl?: string | null;
|
|
19982
20212
|
tokenId?: string | null;
|
|
19983
20213
|
sellerId?: string | null;
|
|
20214
|
+
contactPreference?: string | null;
|
|
19984
20215
|
images?: Array<{
|
|
19985
20216
|
__typename?: "ProductV1Media";
|
|
19986
20217
|
id: string;
|
|
@@ -20009,6 +20240,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
20009
20240
|
active: boolean;
|
|
20010
20241
|
contractURI: string;
|
|
20011
20242
|
royaltyPercentage: string;
|
|
20243
|
+
metadataUri: string;
|
|
20012
20244
|
};
|
|
20013
20245
|
};
|
|
20014
20246
|
exchangePolicy: {
|
|
@@ -20121,6 +20353,7 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
20121
20353
|
externalUrl?: string | null;
|
|
20122
20354
|
tokenId?: string | null;
|
|
20123
20355
|
sellerId?: string | null;
|
|
20356
|
+
contactPreference?: string | null;
|
|
20124
20357
|
images?: Array<{
|
|
20125
20358
|
__typename?: "ProductV1Media";
|
|
20126
20359
|
id: string;
|
|
@@ -20149,6 +20382,7 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
20149
20382
|
active: boolean;
|
|
20150
20383
|
contractURI: string;
|
|
20151
20384
|
royaltyPercentage: string;
|
|
20385
|
+
metadataUri: string;
|
|
20152
20386
|
};
|
|
20153
20387
|
} | null;
|
|
20154
20388
|
};
|
|
@@ -20263,6 +20497,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20263
20497
|
active: boolean;
|
|
20264
20498
|
contractURI: string;
|
|
20265
20499
|
royaltyPercentage: string;
|
|
20500
|
+
metadataUri: string;
|
|
20266
20501
|
};
|
|
20267
20502
|
}>;
|
|
20268
20503
|
condition?: {
|
|
@@ -20288,6 +20523,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20288
20523
|
active: boolean;
|
|
20289
20524
|
contractURI: string;
|
|
20290
20525
|
royaltyPercentage: string;
|
|
20526
|
+
metadataUri: string;
|
|
20291
20527
|
};
|
|
20292
20528
|
exchangeToken: {
|
|
20293
20529
|
__typename?: "ExchangeToken";
|
|
@@ -20465,6 +20701,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20465
20701
|
externalUrl?: string | null;
|
|
20466
20702
|
tokenId?: string | null;
|
|
20467
20703
|
sellerId?: string | null;
|
|
20704
|
+
contactPreference?: string | null;
|
|
20468
20705
|
images?: Array<{
|
|
20469
20706
|
__typename?: "ProductV1Media";
|
|
20470
20707
|
id: string;
|
|
@@ -20493,6 +20730,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20493
20730
|
active: boolean;
|
|
20494
20731
|
contractURI: string;
|
|
20495
20732
|
royaltyPercentage: string;
|
|
20733
|
+
metadataUri: string;
|
|
20496
20734
|
};
|
|
20497
20735
|
} | null;
|
|
20498
20736
|
};
|
|
@@ -20511,6 +20749,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20511
20749
|
externalUrl?: string | null;
|
|
20512
20750
|
tokenId?: string | null;
|
|
20513
20751
|
sellerId?: string | null;
|
|
20752
|
+
contactPreference?: string | null;
|
|
20514
20753
|
images?: Array<{
|
|
20515
20754
|
__typename?: "ProductV1Media";
|
|
20516
20755
|
id: string;
|
|
@@ -20539,6 +20778,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20539
20778
|
active: boolean;
|
|
20540
20779
|
contractURI: string;
|
|
20541
20780
|
royaltyPercentage: string;
|
|
20781
|
+
metadataUri: string;
|
|
20542
20782
|
};
|
|
20543
20783
|
};
|
|
20544
20784
|
exchangePolicy: {
|
|
@@ -20650,6 +20890,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20650
20890
|
externalUrl?: string | null;
|
|
20651
20891
|
tokenId?: string | null;
|
|
20652
20892
|
sellerId?: string | null;
|
|
20893
|
+
contactPreference?: string | null;
|
|
20653
20894
|
images?: Array<{
|
|
20654
20895
|
__typename?: "ProductV1Media";
|
|
20655
20896
|
id: string;
|
|
@@ -20678,6 +20919,7 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20678
20919
|
active: boolean;
|
|
20679
20920
|
contractURI: string;
|
|
20680
20921
|
royaltyPercentage: string;
|
|
20922
|
+
metadataUri: string;
|
|
20681
20923
|
};
|
|
20682
20924
|
} | null;
|
|
20683
20925
|
};
|
|
@@ -20792,6 +21034,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20792
21034
|
active: boolean;
|
|
20793
21035
|
contractURI: string;
|
|
20794
21036
|
royaltyPercentage: string;
|
|
21037
|
+
metadataUri: string;
|
|
20795
21038
|
};
|
|
20796
21039
|
}>;
|
|
20797
21040
|
condition?: {
|
|
@@ -20817,6 +21060,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20817
21060
|
active: boolean;
|
|
20818
21061
|
contractURI: string;
|
|
20819
21062
|
royaltyPercentage: string;
|
|
21063
|
+
metadataUri: string;
|
|
20820
21064
|
};
|
|
20821
21065
|
exchangeToken: {
|
|
20822
21066
|
__typename?: "ExchangeToken";
|
|
@@ -20994,6 +21238,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20994
21238
|
externalUrl?: string | null;
|
|
20995
21239
|
tokenId?: string | null;
|
|
20996
21240
|
sellerId?: string | null;
|
|
21241
|
+
contactPreference?: string | null;
|
|
20997
21242
|
images?: Array<{
|
|
20998
21243
|
__typename?: "ProductV1Media";
|
|
20999
21244
|
id: string;
|
|
@@ -21022,6 +21267,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
21022
21267
|
active: boolean;
|
|
21023
21268
|
contractURI: string;
|
|
21024
21269
|
royaltyPercentage: string;
|
|
21270
|
+
metadataUri: string;
|
|
21025
21271
|
};
|
|
21026
21272
|
} | null;
|
|
21027
21273
|
};
|
|
@@ -21040,6 +21286,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
21040
21286
|
externalUrl?: string | null;
|
|
21041
21287
|
tokenId?: string | null;
|
|
21042
21288
|
sellerId?: string | null;
|
|
21289
|
+
contactPreference?: string | null;
|
|
21043
21290
|
images?: Array<{
|
|
21044
21291
|
__typename?: "ProductV1Media";
|
|
21045
21292
|
id: string;
|
|
@@ -21068,6 +21315,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
21068
21315
|
active: boolean;
|
|
21069
21316
|
contractURI: string;
|
|
21070
21317
|
royaltyPercentage: string;
|
|
21318
|
+
metadataUri: string;
|
|
21071
21319
|
};
|
|
21072
21320
|
};
|
|
21073
21321
|
exchangePolicy: {
|
|
@@ -21179,6 +21427,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
21179
21427
|
externalUrl?: string | null;
|
|
21180
21428
|
tokenId?: string | null;
|
|
21181
21429
|
sellerId?: string | null;
|
|
21430
|
+
contactPreference?: string | null;
|
|
21182
21431
|
images?: Array<{
|
|
21183
21432
|
__typename?: "ProductV1Media";
|
|
21184
21433
|
id: string;
|
|
@@ -21207,6 +21456,7 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
21207
21456
|
active: boolean;
|
|
21208
21457
|
contractURI: string;
|
|
21209
21458
|
royaltyPercentage: string;
|
|
21459
|
+
metadataUri: string;
|
|
21210
21460
|
};
|
|
21211
21461
|
} | null;
|
|
21212
21462
|
};
|
|
@@ -21259,6 +21509,7 @@ export declare type BaseProductV1SellerFieldsFragment = {
|
|
|
21259
21509
|
externalUrl?: string | null;
|
|
21260
21510
|
tokenId?: string | null;
|
|
21261
21511
|
sellerId?: string | null;
|
|
21512
|
+
contactPreference?: string | null;
|
|
21262
21513
|
images?: Array<{
|
|
21263
21514
|
__typename?: "ProductV1Media";
|
|
21264
21515
|
id: string;
|
|
@@ -21287,6 +21538,7 @@ export declare type BaseProductV1SellerFieldsFragment = {
|
|
|
21287
21538
|
active: boolean;
|
|
21288
21539
|
contractURI: string;
|
|
21289
21540
|
royaltyPercentage: string;
|
|
21541
|
+
metadataUri: string;
|
|
21290
21542
|
};
|
|
21291
21543
|
};
|
|
21292
21544
|
export declare type BaseProductV1SellerContactLinkFieldsFragment = {
|
|
@@ -21455,6 +21707,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21455
21707
|
active: boolean;
|
|
21456
21708
|
contractURI: string;
|
|
21457
21709
|
royaltyPercentage: string;
|
|
21710
|
+
metadataUri: string;
|
|
21458
21711
|
};
|
|
21459
21712
|
}>;
|
|
21460
21713
|
condition?: {
|
|
@@ -21480,6 +21733,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21480
21733
|
active: boolean;
|
|
21481
21734
|
contractURI: string;
|
|
21482
21735
|
royaltyPercentage: string;
|
|
21736
|
+
metadataUri: string;
|
|
21483
21737
|
};
|
|
21484
21738
|
exchangeToken: {
|
|
21485
21739
|
__typename?: "ExchangeToken";
|
|
@@ -21657,6 +21911,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21657
21911
|
externalUrl?: string | null;
|
|
21658
21912
|
tokenId?: string | null;
|
|
21659
21913
|
sellerId?: string | null;
|
|
21914
|
+
contactPreference?: string | null;
|
|
21660
21915
|
images?: Array<{
|
|
21661
21916
|
__typename?: "ProductV1Media";
|
|
21662
21917
|
id: string;
|
|
@@ -21685,6 +21940,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21685
21940
|
active: boolean;
|
|
21686
21941
|
contractURI: string;
|
|
21687
21942
|
royaltyPercentage: string;
|
|
21943
|
+
metadataUri: string;
|
|
21688
21944
|
};
|
|
21689
21945
|
} | null;
|
|
21690
21946
|
};
|
|
@@ -21703,6 +21959,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21703
21959
|
externalUrl?: string | null;
|
|
21704
21960
|
tokenId?: string | null;
|
|
21705
21961
|
sellerId?: string | null;
|
|
21962
|
+
contactPreference?: string | null;
|
|
21706
21963
|
images?: Array<{
|
|
21707
21964
|
__typename?: "ProductV1Media";
|
|
21708
21965
|
id: string;
|
|
@@ -21731,6 +21988,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21731
21988
|
active: boolean;
|
|
21732
21989
|
contractURI: string;
|
|
21733
21990
|
royaltyPercentage: string;
|
|
21991
|
+
metadataUri: string;
|
|
21734
21992
|
};
|
|
21735
21993
|
};
|
|
21736
21994
|
exchangePolicy: {
|
|
@@ -21863,6 +22121,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
21863
22121
|
active: boolean;
|
|
21864
22122
|
contractURI: string;
|
|
21865
22123
|
royaltyPercentage: string;
|
|
22124
|
+
metadataUri: string;
|
|
21866
22125
|
};
|
|
21867
22126
|
}>;
|
|
21868
22127
|
condition?: {
|
|
@@ -21888,6 +22147,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
21888
22147
|
active: boolean;
|
|
21889
22148
|
contractURI: string;
|
|
21890
22149
|
royaltyPercentage: string;
|
|
22150
|
+
metadataUri: string;
|
|
21891
22151
|
};
|
|
21892
22152
|
exchangeToken: {
|
|
21893
22153
|
__typename?: "ExchangeToken";
|
|
@@ -22065,6 +22325,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
22065
22325
|
externalUrl?: string | null;
|
|
22066
22326
|
tokenId?: string | null;
|
|
22067
22327
|
sellerId?: string | null;
|
|
22328
|
+
contactPreference?: string | null;
|
|
22068
22329
|
images?: Array<{
|
|
22069
22330
|
__typename?: "ProductV1Media";
|
|
22070
22331
|
id: string;
|
|
@@ -22093,6 +22354,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
22093
22354
|
active: boolean;
|
|
22094
22355
|
contractURI: string;
|
|
22095
22356
|
royaltyPercentage: string;
|
|
22357
|
+
metadataUri: string;
|
|
22096
22358
|
};
|
|
22097
22359
|
} | null;
|
|
22098
22360
|
};
|
|
@@ -22111,6 +22373,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
22111
22373
|
externalUrl?: string | null;
|
|
22112
22374
|
tokenId?: string | null;
|
|
22113
22375
|
sellerId?: string | null;
|
|
22376
|
+
contactPreference?: string | null;
|
|
22114
22377
|
images?: Array<{
|
|
22115
22378
|
__typename?: "ProductV1Media";
|
|
22116
22379
|
id: string;
|
|
@@ -22139,6 +22402,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
22139
22402
|
active: boolean;
|
|
22140
22403
|
contractURI: string;
|
|
22141
22404
|
royaltyPercentage: string;
|
|
22405
|
+
metadataUri: string;
|
|
22142
22406
|
};
|
|
22143
22407
|
};
|
|
22144
22408
|
exchangePolicy: {
|
|
@@ -22256,6 +22520,7 @@ export declare type OfferFieldsFragment = {
|
|
|
22256
22520
|
active: boolean;
|
|
22257
22521
|
contractURI: string;
|
|
22258
22522
|
royaltyPercentage: string;
|
|
22523
|
+
metadataUri: string;
|
|
22259
22524
|
};
|
|
22260
22525
|
}>;
|
|
22261
22526
|
condition?: {
|
|
@@ -22281,6 +22546,7 @@ export declare type OfferFieldsFragment = {
|
|
|
22281
22546
|
active: boolean;
|
|
22282
22547
|
contractURI: string;
|
|
22283
22548
|
royaltyPercentage: string;
|
|
22549
|
+
metadataUri: string;
|
|
22284
22550
|
};
|
|
22285
22551
|
exchangeToken: {
|
|
22286
22552
|
__typename?: "ExchangeToken";
|
|
@@ -22458,6 +22724,7 @@ export declare type OfferFieldsFragment = {
|
|
|
22458
22724
|
externalUrl?: string | null;
|
|
22459
22725
|
tokenId?: string | null;
|
|
22460
22726
|
sellerId?: string | null;
|
|
22727
|
+
contactPreference?: string | null;
|
|
22461
22728
|
images?: Array<{
|
|
22462
22729
|
__typename?: "ProductV1Media";
|
|
22463
22730
|
id: string;
|
|
@@ -22486,6 +22753,7 @@ export declare type OfferFieldsFragment = {
|
|
|
22486
22753
|
active: boolean;
|
|
22487
22754
|
contractURI: string;
|
|
22488
22755
|
royaltyPercentage: string;
|
|
22756
|
+
metadataUri: string;
|
|
22489
22757
|
};
|
|
22490
22758
|
} | null;
|
|
22491
22759
|
};
|
|
@@ -22504,6 +22772,7 @@ export declare type OfferFieldsFragment = {
|
|
|
22504
22772
|
externalUrl?: string | null;
|
|
22505
22773
|
tokenId?: string | null;
|
|
22506
22774
|
sellerId?: string | null;
|
|
22775
|
+
contactPreference?: string | null;
|
|
22507
22776
|
images?: Array<{
|
|
22508
22777
|
__typename?: "ProductV1Media";
|
|
22509
22778
|
id: string;
|
|
@@ -22532,6 +22801,7 @@ export declare type OfferFieldsFragment = {
|
|
|
22532
22801
|
active: boolean;
|
|
22533
22802
|
contractURI: string;
|
|
22534
22803
|
royaltyPercentage: string;
|
|
22804
|
+
metadataUri: string;
|
|
22535
22805
|
};
|
|
22536
22806
|
};
|
|
22537
22807
|
exchangePolicy: {
|
|
@@ -22623,6 +22893,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22623
22893
|
active: boolean;
|
|
22624
22894
|
contractURI: string;
|
|
22625
22895
|
royaltyPercentage: string;
|
|
22896
|
+
metadataUri: string;
|
|
22626
22897
|
};
|
|
22627
22898
|
exchangeToken: {
|
|
22628
22899
|
__typename?: "ExchangeToken";
|
|
@@ -22800,6 +23071,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22800
23071
|
externalUrl?: string | null;
|
|
22801
23072
|
tokenId?: string | null;
|
|
22802
23073
|
sellerId?: string | null;
|
|
23074
|
+
contactPreference?: string | null;
|
|
22803
23075
|
images?: Array<{
|
|
22804
23076
|
__typename?: "ProductV1Media";
|
|
22805
23077
|
id: string;
|
|
@@ -22828,6 +23100,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22828
23100
|
active: boolean;
|
|
22829
23101
|
contractURI: string;
|
|
22830
23102
|
royaltyPercentage: string;
|
|
23103
|
+
metadataUri: string;
|
|
22831
23104
|
};
|
|
22832
23105
|
} | null;
|
|
22833
23106
|
};
|
|
@@ -22846,6 +23119,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22846
23119
|
externalUrl?: string | null;
|
|
22847
23120
|
tokenId?: string | null;
|
|
22848
23121
|
sellerId?: string | null;
|
|
23122
|
+
contactPreference?: string | null;
|
|
22849
23123
|
images?: Array<{
|
|
22850
23124
|
__typename?: "ProductV1Media";
|
|
22851
23125
|
id: string;
|
|
@@ -22874,6 +23148,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22874
23148
|
active: boolean;
|
|
22875
23149
|
contractURI: string;
|
|
22876
23150
|
royaltyPercentage: string;
|
|
23151
|
+
metadataUri: string;
|
|
22877
23152
|
};
|
|
22878
23153
|
};
|
|
22879
23154
|
exchangePolicy: {
|