@bosonprotocol/core-sdk 1.16.0-alpha.17 → 1.16.0-alpha.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/subgraph.d.ts +365 -133
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +40 -25
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +365 -133
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +39 -24
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/disputes/queries.graphql +9 -9
- package/src/exchanges/queries.graphql +3 -3
- package/src/metadata/base.graphql +2 -0
- package/src/metadata/product-v1.graphql +2 -1
- package/src/offers/queries.graphql +3 -0
- package/src/subgraph.ts +395 -151
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -75,6 +75,8 @@ export declare type BaseMetadataEntity = MetadataInterface & {
|
|
|
75
75
|
id: Scalars["ID"];
|
|
76
76
|
image: Scalars["String"];
|
|
77
77
|
name: Scalars["String"];
|
|
78
|
+
numberOfCommits: Scalars["BigInt"];
|
|
79
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
78
80
|
/**
|
|
79
81
|
* References to entities
|
|
80
82
|
*
|
|
@@ -219,6 +221,22 @@ export declare type BaseMetadataEntity_Filter = {
|
|
|
219
221
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
220
222
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
221
223
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
224
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
225
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
226
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
227
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
228
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
229
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
230
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
231
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
232
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
233
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
234
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
235
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
236
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
237
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
238
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
239
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
222
240
|
offer?: InputMaybe<Scalars["String"]>;
|
|
223
241
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
224
242
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -321,6 +339,8 @@ export declare enum BaseMetadataEntity_OrderBy {
|
|
|
321
339
|
Id = "id",
|
|
322
340
|
Image = "image",
|
|
323
341
|
Name = "name",
|
|
342
|
+
NumberOfCommits = "numberOfCommits",
|
|
343
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
324
344
|
Offer = "offer",
|
|
325
345
|
QuantityAvailable = "quantityAvailable",
|
|
326
346
|
SchemaUrl = "schemaUrl",
|
|
@@ -1413,6 +1433,8 @@ export declare type MetadataInterface = {
|
|
|
1413
1433
|
id: Scalars["ID"];
|
|
1414
1434
|
image: Scalars["String"];
|
|
1415
1435
|
name: Scalars["String"];
|
|
1436
|
+
numberOfCommits: Scalars["BigInt"];
|
|
1437
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
1416
1438
|
/**
|
|
1417
1439
|
* References to entities
|
|
1418
1440
|
*
|
|
@@ -1556,6 +1578,22 @@ export declare type MetadataInterface_Filter = {
|
|
|
1556
1578
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1557
1579
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1558
1580
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1581
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
1582
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1583
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1584
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1585
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1586
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1587
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1588
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1589
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
1590
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1591
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1592
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1593
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1594
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1595
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1596
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1559
1597
|
offer?: InputMaybe<Scalars["String"]>;
|
|
1560
1598
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
1561
1599
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1658,6 +1696,8 @@ export declare enum MetadataInterface_OrderBy {
|
|
|
1658
1696
|
Id = "id",
|
|
1659
1697
|
Image = "image",
|
|
1660
1698
|
Name = "name",
|
|
1699
|
+
NumberOfCommits = "numberOfCommits",
|
|
1700
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
1661
1701
|
Offer = "offer",
|
|
1662
1702
|
QuantityAvailable = "quantityAvailable",
|
|
1663
1703
|
SchemaUrl = "schemaUrl",
|
|
@@ -1692,6 +1732,9 @@ export declare type Offer = {
|
|
|
1692
1732
|
metadata?: Maybe<MetadataInterface>;
|
|
1693
1733
|
metadataHash: Scalars["String"];
|
|
1694
1734
|
metadataUri: Scalars["String"];
|
|
1735
|
+
/** Stats */
|
|
1736
|
+
numberOfCommits: Scalars["BigInt"];
|
|
1737
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
1695
1738
|
price: Scalars["BigInt"];
|
|
1696
1739
|
protocolFee: Scalars["BigInt"];
|
|
1697
1740
|
quantityAvailable: Scalars["BigInt"];
|
|
@@ -1897,6 +1940,22 @@ export declare type Offer_Filter = {
|
|
|
1897
1940
|
metadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1898
1941
|
metadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1899
1942
|
metadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1943
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
1944
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1945
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1946
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1947
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1948
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1949
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1950
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1951
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
1952
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1953
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1954
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1955
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1956
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1957
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1958
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1900
1959
|
price?: InputMaybe<Scalars["BigInt"]>;
|
|
1901
1960
|
price_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1902
1961
|
price_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -2041,6 +2100,8 @@ export declare enum Offer_OrderBy {
|
|
|
2041
2100
|
Metadata = "metadata",
|
|
2042
2101
|
MetadataHash = "metadataHash",
|
|
2043
2102
|
MetadataUri = "metadataUri",
|
|
2103
|
+
NumberOfCommits = "numberOfCommits",
|
|
2104
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
2044
2105
|
Price = "price",
|
|
2045
2106
|
ProtocolFee = "protocolFee",
|
|
2046
2107
|
QuantityAvailable = "quantityAvailable",
|
|
@@ -2332,6 +2393,8 @@ export declare type ProductV1MetadataEntity = MetadataInterface & {
|
|
|
2332
2393
|
id: Scalars["ID"];
|
|
2333
2394
|
image: Scalars["String"];
|
|
2334
2395
|
name: Scalars["String"];
|
|
2396
|
+
numberOfCommits: Scalars["BigInt"];
|
|
2397
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
2335
2398
|
/**
|
|
2336
2399
|
* References to entities
|
|
2337
2400
|
*
|
|
@@ -2513,6 +2576,22 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
2513
2576
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2514
2577
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2515
2578
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2579
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
2580
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2581
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2582
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2583
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2584
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2585
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2586
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2587
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
2588
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2589
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2590
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2591
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2592
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2593
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2594
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2516
2595
|
offer?: InputMaybe<Scalars["String"]>;
|
|
2517
2596
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
2518
2597
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2722,6 +2801,8 @@ export declare enum ProductV1MetadataEntity_OrderBy {
|
|
|
2722
2801
|
Id = "id",
|
|
2723
2802
|
Image = "image",
|
|
2724
2803
|
Name = "name",
|
|
2804
|
+
NumberOfCommits = "numberOfCommits",
|
|
2805
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
2725
2806
|
Offer = "offer",
|
|
2726
2807
|
Product = "product",
|
|
2727
2808
|
ProductOverrides = "productOverrides",
|
|
@@ -5598,8 +5679,11 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
5598
5679
|
resolutionPeriodDuration: string;
|
|
5599
5680
|
metadataUri: string;
|
|
5600
5681
|
metadataHash: string;
|
|
5682
|
+
voided: boolean;
|
|
5601
5683
|
voidedAt?: string | null;
|
|
5602
5684
|
disputeResolverId: string;
|
|
5685
|
+
numberOfCommits: string;
|
|
5686
|
+
numberOfRedemptions: string;
|
|
5603
5687
|
seller: {
|
|
5604
5688
|
__typename?: "Seller";
|
|
5605
5689
|
id: string;
|
|
@@ -5839,6 +5923,21 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
5839
5923
|
completedDate?: string | null;
|
|
5840
5924
|
disputedDate?: string | null;
|
|
5841
5925
|
expired: boolean;
|
|
5926
|
+
dispute?: {
|
|
5927
|
+
__typename?: "Dispute";
|
|
5928
|
+
id: string;
|
|
5929
|
+
exchangeId: string;
|
|
5930
|
+
state: DisputeState;
|
|
5931
|
+
buyerPercent: string;
|
|
5932
|
+
disputedDate: string;
|
|
5933
|
+
escalatedDate?: string | null;
|
|
5934
|
+
finalizedDate?: string | null;
|
|
5935
|
+
retractedDate?: string | null;
|
|
5936
|
+
resolvedDate?: string | null;
|
|
5937
|
+
decidedDate?: string | null;
|
|
5938
|
+
refusedDate?: string | null;
|
|
5939
|
+
timeout: string;
|
|
5940
|
+
} | null;
|
|
5842
5941
|
}>;
|
|
5843
5942
|
} | null;
|
|
5844
5943
|
};
|
|
@@ -5915,8 +6014,11 @@ export declare type GetSellersQueryQuery = {
|
|
|
5915
6014
|
resolutionPeriodDuration: string;
|
|
5916
6015
|
metadataUri: string;
|
|
5917
6016
|
metadataHash: string;
|
|
6017
|
+
voided: boolean;
|
|
5918
6018
|
voidedAt?: string | null;
|
|
5919
6019
|
disputeResolverId: string;
|
|
6020
|
+
numberOfCommits: string;
|
|
6021
|
+
numberOfRedemptions: string;
|
|
5920
6022
|
seller: {
|
|
5921
6023
|
__typename?: "Seller";
|
|
5922
6024
|
id: string;
|
|
@@ -6156,6 +6258,21 @@ export declare type GetSellersQueryQuery = {
|
|
|
6156
6258
|
completedDate?: string | null;
|
|
6157
6259
|
disputedDate?: string | null;
|
|
6158
6260
|
expired: boolean;
|
|
6261
|
+
dispute?: {
|
|
6262
|
+
__typename?: "Dispute";
|
|
6263
|
+
id: string;
|
|
6264
|
+
exchangeId: string;
|
|
6265
|
+
state: DisputeState;
|
|
6266
|
+
buyerPercent: string;
|
|
6267
|
+
disputedDate: string;
|
|
6268
|
+
escalatedDate?: string | null;
|
|
6269
|
+
finalizedDate?: string | null;
|
|
6270
|
+
retractedDate?: string | null;
|
|
6271
|
+
resolvedDate?: string | null;
|
|
6272
|
+
decidedDate?: string | null;
|
|
6273
|
+
refusedDate?: string | null;
|
|
6274
|
+
timeout: string;
|
|
6275
|
+
} | null;
|
|
6159
6276
|
}>;
|
|
6160
6277
|
}>;
|
|
6161
6278
|
};
|
|
@@ -6209,6 +6326,21 @@ export declare type GetBuyerByIdQueryQuery = {
|
|
|
6209
6326
|
completedDate?: string | null;
|
|
6210
6327
|
disputedDate?: string | null;
|
|
6211
6328
|
expired: boolean;
|
|
6329
|
+
dispute?: {
|
|
6330
|
+
__typename?: "Dispute";
|
|
6331
|
+
id: string;
|
|
6332
|
+
exchangeId: string;
|
|
6333
|
+
state: DisputeState;
|
|
6334
|
+
buyerPercent: string;
|
|
6335
|
+
disputedDate: string;
|
|
6336
|
+
escalatedDate?: string | null;
|
|
6337
|
+
finalizedDate?: string | null;
|
|
6338
|
+
retractedDate?: string | null;
|
|
6339
|
+
resolvedDate?: string | null;
|
|
6340
|
+
decidedDate?: string | null;
|
|
6341
|
+
refusedDate?: string | null;
|
|
6342
|
+
timeout: string;
|
|
6343
|
+
} | null;
|
|
6212
6344
|
}>;
|
|
6213
6345
|
} | null;
|
|
6214
6346
|
};
|
|
@@ -6272,6 +6404,21 @@ export declare type GetBuyersQueryQuery = {
|
|
|
6272
6404
|
completedDate?: string | null;
|
|
6273
6405
|
disputedDate?: string | null;
|
|
6274
6406
|
expired: boolean;
|
|
6407
|
+
dispute?: {
|
|
6408
|
+
__typename?: "Dispute";
|
|
6409
|
+
id: string;
|
|
6410
|
+
exchangeId: string;
|
|
6411
|
+
state: DisputeState;
|
|
6412
|
+
buyerPercent: string;
|
|
6413
|
+
disputedDate: string;
|
|
6414
|
+
escalatedDate?: string | null;
|
|
6415
|
+
finalizedDate?: string | null;
|
|
6416
|
+
retractedDate?: string | null;
|
|
6417
|
+
resolvedDate?: string | null;
|
|
6418
|
+
decidedDate?: string | null;
|
|
6419
|
+
refusedDate?: string | null;
|
|
6420
|
+
timeout: string;
|
|
6421
|
+
} | null;
|
|
6275
6422
|
}>;
|
|
6276
6423
|
}>;
|
|
6277
6424
|
};
|
|
@@ -6318,8 +6465,11 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
6318
6465
|
resolutionPeriodDuration: string;
|
|
6319
6466
|
metadataUri: string;
|
|
6320
6467
|
metadataHash: string;
|
|
6468
|
+
voided: boolean;
|
|
6321
6469
|
voidedAt?: string | null;
|
|
6322
6470
|
disputeResolverId: string;
|
|
6471
|
+
numberOfCommits: string;
|
|
6472
|
+
numberOfRedemptions: string;
|
|
6323
6473
|
seller: {
|
|
6324
6474
|
__typename?: "Seller";
|
|
6325
6475
|
id: string;
|
|
@@ -6609,8 +6759,11 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
6609
6759
|
resolutionPeriodDuration: string;
|
|
6610
6760
|
metadataUri: string;
|
|
6611
6761
|
metadataHash: string;
|
|
6762
|
+
voided: boolean;
|
|
6612
6763
|
voidedAt?: string | null;
|
|
6613
6764
|
disputeResolverId: string;
|
|
6765
|
+
numberOfCommits: string;
|
|
6766
|
+
numberOfRedemptions: string;
|
|
6614
6767
|
seller: {
|
|
6615
6768
|
__typename?: "Seller";
|
|
6616
6769
|
id: string;
|
|
@@ -6899,8 +7052,11 @@ export declare type SellerFieldsFragment = {
|
|
|
6899
7052
|
resolutionPeriodDuration: string;
|
|
6900
7053
|
metadataUri: string;
|
|
6901
7054
|
metadataHash: string;
|
|
7055
|
+
voided: boolean;
|
|
6902
7056
|
voidedAt?: string | null;
|
|
6903
7057
|
disputeResolverId: string;
|
|
7058
|
+
numberOfCommits: string;
|
|
7059
|
+
numberOfRedemptions: string;
|
|
6904
7060
|
seller: {
|
|
6905
7061
|
__typename?: "Seller";
|
|
6906
7062
|
id: string;
|
|
@@ -7140,6 +7296,21 @@ export declare type SellerFieldsFragment = {
|
|
|
7140
7296
|
completedDate?: string | null;
|
|
7141
7297
|
disputedDate?: string | null;
|
|
7142
7298
|
expired: boolean;
|
|
7299
|
+
dispute?: {
|
|
7300
|
+
__typename?: "Dispute";
|
|
7301
|
+
id: string;
|
|
7302
|
+
exchangeId: string;
|
|
7303
|
+
state: DisputeState;
|
|
7304
|
+
buyerPercent: string;
|
|
7305
|
+
disputedDate: string;
|
|
7306
|
+
escalatedDate?: string | null;
|
|
7307
|
+
finalizedDate?: string | null;
|
|
7308
|
+
retractedDate?: string | null;
|
|
7309
|
+
resolvedDate?: string | null;
|
|
7310
|
+
decidedDate?: string | null;
|
|
7311
|
+
refusedDate?: string | null;
|
|
7312
|
+
timeout: string;
|
|
7313
|
+
} | null;
|
|
7143
7314
|
}>;
|
|
7144
7315
|
};
|
|
7145
7316
|
export declare type BaseSellerFieldsFragment = {
|
|
@@ -7187,6 +7358,21 @@ export declare type BuyerFieldsFragment = {
|
|
|
7187
7358
|
completedDate?: string | null;
|
|
7188
7359
|
disputedDate?: string | null;
|
|
7189
7360
|
expired: boolean;
|
|
7361
|
+
dispute?: {
|
|
7362
|
+
__typename?: "Dispute";
|
|
7363
|
+
id: string;
|
|
7364
|
+
exchangeId: string;
|
|
7365
|
+
state: DisputeState;
|
|
7366
|
+
buyerPercent: string;
|
|
7367
|
+
disputedDate: string;
|
|
7368
|
+
escalatedDate?: string | null;
|
|
7369
|
+
finalizedDate?: string | null;
|
|
7370
|
+
retractedDate?: string | null;
|
|
7371
|
+
resolvedDate?: string | null;
|
|
7372
|
+
decidedDate?: string | null;
|
|
7373
|
+
refusedDate?: string | null;
|
|
7374
|
+
timeout: string;
|
|
7375
|
+
} | null;
|
|
7190
7376
|
}>;
|
|
7191
7377
|
};
|
|
7192
7378
|
export declare type BaseBuyerFieldsFragment = {
|
|
@@ -7227,8 +7413,11 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
7227
7413
|
resolutionPeriodDuration: string;
|
|
7228
7414
|
metadataUri: string;
|
|
7229
7415
|
metadataHash: string;
|
|
7416
|
+
voided: boolean;
|
|
7230
7417
|
voidedAt?: string | null;
|
|
7231
7418
|
disputeResolverId: string;
|
|
7419
|
+
numberOfCommits: string;
|
|
7420
|
+
numberOfRedemptions: string;
|
|
7232
7421
|
seller: {
|
|
7233
7422
|
__typename?: "Seller";
|
|
7234
7423
|
id: string;
|
|
@@ -7559,6 +7748,21 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
7559
7748
|
completedDate?: string | null;
|
|
7560
7749
|
disputedDate?: string | null;
|
|
7561
7750
|
expired: boolean;
|
|
7751
|
+
dispute?: {
|
|
7752
|
+
__typename?: "Dispute";
|
|
7753
|
+
id: string;
|
|
7754
|
+
exchangeId: string;
|
|
7755
|
+
state: DisputeState;
|
|
7756
|
+
buyerPercent: string;
|
|
7757
|
+
disputedDate: string;
|
|
7758
|
+
escalatedDate?: string | null;
|
|
7759
|
+
finalizedDate?: string | null;
|
|
7760
|
+
retractedDate?: string | null;
|
|
7761
|
+
resolvedDate?: string | null;
|
|
7762
|
+
decidedDate?: string | null;
|
|
7763
|
+
refusedDate?: string | null;
|
|
7764
|
+
timeout: string;
|
|
7765
|
+
} | null;
|
|
7562
7766
|
};
|
|
7563
7767
|
seller: {
|
|
7564
7768
|
__typename?: "Seller";
|
|
@@ -7617,6 +7821,21 @@ export declare type GetDisputesQueryQuery = {
|
|
|
7617
7821
|
completedDate?: string | null;
|
|
7618
7822
|
disputedDate?: string | null;
|
|
7619
7823
|
expired: boolean;
|
|
7824
|
+
dispute?: {
|
|
7825
|
+
__typename?: "Dispute";
|
|
7826
|
+
id: string;
|
|
7827
|
+
exchangeId: string;
|
|
7828
|
+
state: DisputeState;
|
|
7829
|
+
buyerPercent: string;
|
|
7830
|
+
disputedDate: string;
|
|
7831
|
+
escalatedDate?: string | null;
|
|
7832
|
+
finalizedDate?: string | null;
|
|
7833
|
+
retractedDate?: string | null;
|
|
7834
|
+
resolvedDate?: string | null;
|
|
7835
|
+
decidedDate?: string | null;
|
|
7836
|
+
refusedDate?: string | null;
|
|
7837
|
+
timeout: string;
|
|
7838
|
+
} | null;
|
|
7620
7839
|
};
|
|
7621
7840
|
seller: {
|
|
7622
7841
|
__typename?: "Seller";
|
|
@@ -7666,6 +7885,21 @@ export declare type DisputeFieldsFragment = {
|
|
|
7666
7885
|
completedDate?: string | null;
|
|
7667
7886
|
disputedDate?: string | null;
|
|
7668
7887
|
expired: boolean;
|
|
7888
|
+
dispute?: {
|
|
7889
|
+
__typename?: "Dispute";
|
|
7890
|
+
id: string;
|
|
7891
|
+
exchangeId: string;
|
|
7892
|
+
state: DisputeState;
|
|
7893
|
+
buyerPercent: string;
|
|
7894
|
+
disputedDate: string;
|
|
7895
|
+
escalatedDate?: string | null;
|
|
7896
|
+
finalizedDate?: string | null;
|
|
7897
|
+
retractedDate?: string | null;
|
|
7898
|
+
resolvedDate?: string | null;
|
|
7899
|
+
decidedDate?: string | null;
|
|
7900
|
+
refusedDate?: string | null;
|
|
7901
|
+
timeout: string;
|
|
7902
|
+
} | null;
|
|
7669
7903
|
};
|
|
7670
7904
|
seller: {
|
|
7671
7905
|
__typename?: "Seller";
|
|
@@ -7700,39 +7934,6 @@ export declare type BaseDisputeFieldsFragment = {
|
|
|
7700
7934
|
decidedDate?: string | null;
|
|
7701
7935
|
refusedDate?: string | null;
|
|
7702
7936
|
timeout: string;
|
|
7703
|
-
exchange: {
|
|
7704
|
-
__typename?: "Exchange";
|
|
7705
|
-
id: string;
|
|
7706
|
-
disputed: boolean;
|
|
7707
|
-
state: ExchangeState;
|
|
7708
|
-
committedDate: string;
|
|
7709
|
-
finalizedDate?: string | null;
|
|
7710
|
-
validUntilDate: string;
|
|
7711
|
-
redeemedDate?: string | null;
|
|
7712
|
-
revokedDate?: string | null;
|
|
7713
|
-
cancelledDate?: string | null;
|
|
7714
|
-
completedDate?: string | null;
|
|
7715
|
-
disputedDate?: string | null;
|
|
7716
|
-
expired: boolean;
|
|
7717
|
-
};
|
|
7718
|
-
seller: {
|
|
7719
|
-
__typename?: "Seller";
|
|
7720
|
-
id: string;
|
|
7721
|
-
operator: string;
|
|
7722
|
-
admin: string;
|
|
7723
|
-
clerk: string;
|
|
7724
|
-
treasury: string;
|
|
7725
|
-
authTokenId: string;
|
|
7726
|
-
authTokenType: number;
|
|
7727
|
-
voucherCloneAddress: string;
|
|
7728
|
-
active: boolean;
|
|
7729
|
-
};
|
|
7730
|
-
buyer: {
|
|
7731
|
-
__typename?: "Buyer";
|
|
7732
|
-
id: string;
|
|
7733
|
-
wallet: string;
|
|
7734
|
-
active: boolean;
|
|
7735
|
-
};
|
|
7736
7937
|
};
|
|
7737
7938
|
export declare type GetExchangeTokenByIdQueryQueryVariables = Exact<{
|
|
7738
7939
|
exchangeTokenId: Scalars["ID"];
|
|
@@ -7784,8 +7985,11 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
7784
7985
|
resolutionPeriodDuration: string;
|
|
7785
7986
|
metadataUri: string;
|
|
7786
7987
|
metadataHash: string;
|
|
7988
|
+
voided: boolean;
|
|
7787
7989
|
voidedAt?: string | null;
|
|
7788
7990
|
disputeResolverId: string;
|
|
7991
|
+
numberOfCommits: string;
|
|
7992
|
+
numberOfRedemptions: string;
|
|
7789
7993
|
seller: {
|
|
7790
7994
|
__typename?: "Seller";
|
|
7791
7995
|
id: string;
|
|
@@ -8068,8 +8272,11 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
8068
8272
|
resolutionPeriodDuration: string;
|
|
8069
8273
|
metadataUri: string;
|
|
8070
8274
|
metadataHash: string;
|
|
8275
|
+
voided: boolean;
|
|
8071
8276
|
voidedAt?: string | null;
|
|
8072
8277
|
disputeResolverId: string;
|
|
8278
|
+
numberOfCommits: string;
|
|
8279
|
+
numberOfRedemptions: string;
|
|
8073
8280
|
seller: {
|
|
8074
8281
|
__typename?: "Seller";
|
|
8075
8282
|
id: string;
|
|
@@ -8331,8 +8538,11 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
8331
8538
|
resolutionPeriodDuration: string;
|
|
8332
8539
|
metadataUri: string;
|
|
8333
8540
|
metadataHash: string;
|
|
8541
|
+
voided: boolean;
|
|
8334
8542
|
voidedAt?: string | null;
|
|
8335
8543
|
disputeResolverId: string;
|
|
8544
|
+
numberOfCommits: string;
|
|
8545
|
+
numberOfRedemptions: string;
|
|
8336
8546
|
seller: {
|
|
8337
8547
|
__typename?: "Seller";
|
|
8338
8548
|
id: string;
|
|
@@ -8631,8 +8841,11 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
8631
8841
|
resolutionPeriodDuration: string;
|
|
8632
8842
|
metadataUri: string;
|
|
8633
8843
|
metadataHash: string;
|
|
8844
|
+
voided: boolean;
|
|
8634
8845
|
voidedAt?: string | null;
|
|
8635
8846
|
disputeResolverId: string;
|
|
8847
|
+
numberOfCommits: string;
|
|
8848
|
+
numberOfRedemptions: string;
|
|
8636
8849
|
seller: {
|
|
8637
8850
|
__typename?: "Seller";
|
|
8638
8851
|
id: string;
|
|
@@ -8872,39 +9085,6 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
8872
9085
|
decidedDate?: string | null;
|
|
8873
9086
|
refusedDate?: string | null;
|
|
8874
9087
|
timeout: string;
|
|
8875
|
-
exchange: {
|
|
8876
|
-
__typename?: "Exchange";
|
|
8877
|
-
id: string;
|
|
8878
|
-
disputed: boolean;
|
|
8879
|
-
state: ExchangeState;
|
|
8880
|
-
committedDate: string;
|
|
8881
|
-
finalizedDate?: string | null;
|
|
8882
|
-
validUntilDate: string;
|
|
8883
|
-
redeemedDate?: string | null;
|
|
8884
|
-
revokedDate?: string | null;
|
|
8885
|
-
cancelledDate?: string | null;
|
|
8886
|
-
completedDate?: string | null;
|
|
8887
|
-
disputedDate?: string | null;
|
|
8888
|
-
expired: boolean;
|
|
8889
|
-
};
|
|
8890
|
-
seller: {
|
|
8891
|
-
__typename?: "Seller";
|
|
8892
|
-
id: string;
|
|
8893
|
-
operator: string;
|
|
8894
|
-
admin: string;
|
|
8895
|
-
clerk: string;
|
|
8896
|
-
treasury: string;
|
|
8897
|
-
authTokenId: string;
|
|
8898
|
-
authTokenType: number;
|
|
8899
|
-
voucherCloneAddress: string;
|
|
8900
|
-
active: boolean;
|
|
8901
|
-
};
|
|
8902
|
-
buyer: {
|
|
8903
|
-
__typename?: "Buyer";
|
|
8904
|
-
id: string;
|
|
8905
|
-
wallet: string;
|
|
8906
|
-
active: boolean;
|
|
8907
|
-
};
|
|
8908
9088
|
} | null;
|
|
8909
9089
|
} | null;
|
|
8910
9090
|
};
|
|
@@ -8970,8 +9150,11 @@ export declare type GetExchangesQueryQuery = {
|
|
|
8970
9150
|
resolutionPeriodDuration: string;
|
|
8971
9151
|
metadataUri: string;
|
|
8972
9152
|
metadataHash: string;
|
|
9153
|
+
voided: boolean;
|
|
8973
9154
|
voidedAt?: string | null;
|
|
8974
9155
|
disputeResolverId: string;
|
|
9156
|
+
numberOfCommits: string;
|
|
9157
|
+
numberOfRedemptions: string;
|
|
8975
9158
|
seller: {
|
|
8976
9159
|
__typename?: "Seller";
|
|
8977
9160
|
id: string;
|
|
@@ -9211,39 +9394,6 @@ export declare type GetExchangesQueryQuery = {
|
|
|
9211
9394
|
decidedDate?: string | null;
|
|
9212
9395
|
refusedDate?: string | null;
|
|
9213
9396
|
timeout: string;
|
|
9214
|
-
exchange: {
|
|
9215
|
-
__typename?: "Exchange";
|
|
9216
|
-
id: string;
|
|
9217
|
-
disputed: boolean;
|
|
9218
|
-
state: ExchangeState;
|
|
9219
|
-
committedDate: string;
|
|
9220
|
-
finalizedDate?: string | null;
|
|
9221
|
-
validUntilDate: string;
|
|
9222
|
-
redeemedDate?: string | null;
|
|
9223
|
-
revokedDate?: string | null;
|
|
9224
|
-
cancelledDate?: string | null;
|
|
9225
|
-
completedDate?: string | null;
|
|
9226
|
-
disputedDate?: string | null;
|
|
9227
|
-
expired: boolean;
|
|
9228
|
-
};
|
|
9229
|
-
seller: {
|
|
9230
|
-
__typename?: "Seller";
|
|
9231
|
-
id: string;
|
|
9232
|
-
operator: string;
|
|
9233
|
-
admin: string;
|
|
9234
|
-
clerk: string;
|
|
9235
|
-
treasury: string;
|
|
9236
|
-
authTokenId: string;
|
|
9237
|
-
authTokenType: number;
|
|
9238
|
-
voucherCloneAddress: string;
|
|
9239
|
-
active: boolean;
|
|
9240
|
-
};
|
|
9241
|
-
buyer: {
|
|
9242
|
-
__typename?: "Buyer";
|
|
9243
|
-
id: string;
|
|
9244
|
-
wallet: string;
|
|
9245
|
-
active: boolean;
|
|
9246
|
-
};
|
|
9247
9397
|
} | null;
|
|
9248
9398
|
}>;
|
|
9249
9399
|
};
|
|
@@ -9300,8 +9450,11 @@ export declare type ExchangeFieldsFragment = {
|
|
|
9300
9450
|
resolutionPeriodDuration: string;
|
|
9301
9451
|
metadataUri: string;
|
|
9302
9452
|
metadataHash: string;
|
|
9453
|
+
voided: boolean;
|
|
9303
9454
|
voidedAt?: string | null;
|
|
9304
9455
|
disputeResolverId: string;
|
|
9456
|
+
numberOfCommits: string;
|
|
9457
|
+
numberOfRedemptions: string;
|
|
9305
9458
|
seller: {
|
|
9306
9459
|
__typename?: "Seller";
|
|
9307
9460
|
id: string;
|
|
@@ -9541,39 +9694,6 @@ export declare type ExchangeFieldsFragment = {
|
|
|
9541
9694
|
decidedDate?: string | null;
|
|
9542
9695
|
refusedDate?: string | null;
|
|
9543
9696
|
timeout: string;
|
|
9544
|
-
exchange: {
|
|
9545
|
-
__typename?: "Exchange";
|
|
9546
|
-
id: string;
|
|
9547
|
-
disputed: boolean;
|
|
9548
|
-
state: ExchangeState;
|
|
9549
|
-
committedDate: string;
|
|
9550
|
-
finalizedDate?: string | null;
|
|
9551
|
-
validUntilDate: string;
|
|
9552
|
-
redeemedDate?: string | null;
|
|
9553
|
-
revokedDate?: string | null;
|
|
9554
|
-
cancelledDate?: string | null;
|
|
9555
|
-
completedDate?: string | null;
|
|
9556
|
-
disputedDate?: string | null;
|
|
9557
|
-
expired: boolean;
|
|
9558
|
-
};
|
|
9559
|
-
seller: {
|
|
9560
|
-
__typename?: "Seller";
|
|
9561
|
-
id: string;
|
|
9562
|
-
operator: string;
|
|
9563
|
-
admin: string;
|
|
9564
|
-
clerk: string;
|
|
9565
|
-
treasury: string;
|
|
9566
|
-
authTokenId: string;
|
|
9567
|
-
authTokenType: number;
|
|
9568
|
-
voucherCloneAddress: string;
|
|
9569
|
-
active: boolean;
|
|
9570
|
-
};
|
|
9571
|
-
buyer: {
|
|
9572
|
-
__typename?: "Buyer";
|
|
9573
|
-
id: string;
|
|
9574
|
-
wallet: string;
|
|
9575
|
-
active: boolean;
|
|
9576
|
-
};
|
|
9577
9697
|
} | null;
|
|
9578
9698
|
};
|
|
9579
9699
|
export declare type BaseExchangeFieldsFragment = {
|
|
@@ -9590,6 +9710,21 @@ export declare type BaseExchangeFieldsFragment = {
|
|
|
9590
9710
|
completedDate?: string | null;
|
|
9591
9711
|
disputedDate?: string | null;
|
|
9592
9712
|
expired: boolean;
|
|
9713
|
+
dispute?: {
|
|
9714
|
+
__typename?: "Dispute";
|
|
9715
|
+
id: string;
|
|
9716
|
+
exchangeId: string;
|
|
9717
|
+
state: DisputeState;
|
|
9718
|
+
buyerPercent: string;
|
|
9719
|
+
disputedDate: string;
|
|
9720
|
+
escalatedDate?: string | null;
|
|
9721
|
+
finalizedDate?: string | null;
|
|
9722
|
+
retractedDate?: string | null;
|
|
9723
|
+
resolvedDate?: string | null;
|
|
9724
|
+
decidedDate?: string | null;
|
|
9725
|
+
refusedDate?: string | null;
|
|
9726
|
+
timeout: string;
|
|
9727
|
+
} | null;
|
|
9593
9728
|
};
|
|
9594
9729
|
export declare type GetFundsByIdQueryVariables = Exact<{
|
|
9595
9730
|
fundsId: Scalars["ID"];
|
|
@@ -9679,6 +9814,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
9679
9814
|
validFromDate: string;
|
|
9680
9815
|
validUntilDate: string;
|
|
9681
9816
|
quantityAvailable: string;
|
|
9817
|
+
numberOfCommits: string;
|
|
9818
|
+
numberOfRedemptions: string;
|
|
9682
9819
|
attributes?: Array<{
|
|
9683
9820
|
__typename?: "MetadataAttribute";
|
|
9684
9821
|
traitType: string;
|
|
@@ -9706,8 +9843,11 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
9706
9843
|
resolutionPeriodDuration: string;
|
|
9707
9844
|
metadataUri: string;
|
|
9708
9845
|
metadataHash: string;
|
|
9846
|
+
voided: boolean;
|
|
9709
9847
|
voidedAt?: string | null;
|
|
9710
9848
|
disputeResolverId: string;
|
|
9849
|
+
numberOfCommits: string;
|
|
9850
|
+
numberOfRedemptions: string;
|
|
9711
9851
|
seller: {
|
|
9712
9852
|
__typename?: "Seller";
|
|
9713
9853
|
id: string;
|
|
@@ -9978,6 +10118,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
9978
10118
|
validFromDate: string;
|
|
9979
10119
|
validUntilDate: string;
|
|
9980
10120
|
quantityAvailable: string;
|
|
10121
|
+
numberOfCommits: string;
|
|
10122
|
+
numberOfRedemptions: string;
|
|
9981
10123
|
attributes?: Array<{
|
|
9982
10124
|
__typename?: "MetadataAttribute";
|
|
9983
10125
|
traitType: string;
|
|
@@ -10005,8 +10147,11 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
10005
10147
|
resolutionPeriodDuration: string;
|
|
10006
10148
|
metadataUri: string;
|
|
10007
10149
|
metadataHash: string;
|
|
10150
|
+
voided: boolean;
|
|
10008
10151
|
voidedAt?: string | null;
|
|
10009
10152
|
disputeResolverId: string;
|
|
10153
|
+
numberOfCommits: string;
|
|
10154
|
+
numberOfRedemptions: string;
|
|
10010
10155
|
seller: {
|
|
10011
10156
|
__typename?: "Seller";
|
|
10012
10157
|
id: string;
|
|
@@ -10268,6 +10413,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
10268
10413
|
validFromDate: string;
|
|
10269
10414
|
validUntilDate: string;
|
|
10270
10415
|
quantityAvailable: string;
|
|
10416
|
+
numberOfCommits: string;
|
|
10417
|
+
numberOfRedemptions: string;
|
|
10271
10418
|
attributes?: Array<{
|
|
10272
10419
|
__typename?: "MetadataAttribute";
|
|
10273
10420
|
traitType: string;
|
|
@@ -10295,8 +10442,11 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
10295
10442
|
resolutionPeriodDuration: string;
|
|
10296
10443
|
metadataUri: string;
|
|
10297
10444
|
metadataHash: string;
|
|
10445
|
+
voided: boolean;
|
|
10298
10446
|
voidedAt?: string | null;
|
|
10299
10447
|
disputeResolverId: string;
|
|
10448
|
+
numberOfCommits: string;
|
|
10449
|
+
numberOfRedemptions: string;
|
|
10300
10450
|
seller: {
|
|
10301
10451
|
__typename?: "Seller";
|
|
10302
10452
|
id: string;
|
|
@@ -10557,6 +10707,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
10557
10707
|
validFromDate: string;
|
|
10558
10708
|
validUntilDate: string;
|
|
10559
10709
|
quantityAvailable: string;
|
|
10710
|
+
numberOfCommits: string;
|
|
10711
|
+
numberOfRedemptions: string;
|
|
10560
10712
|
attributes?: Array<{
|
|
10561
10713
|
__typename?: "MetadataAttribute";
|
|
10562
10714
|
traitType: string;
|
|
@@ -10584,8 +10736,11 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
10584
10736
|
resolutionPeriodDuration: string;
|
|
10585
10737
|
metadataUri: string;
|
|
10586
10738
|
metadataHash: string;
|
|
10739
|
+
voided: boolean;
|
|
10587
10740
|
voidedAt?: string | null;
|
|
10588
10741
|
disputeResolverId: string;
|
|
10742
|
+
numberOfCommits: string;
|
|
10743
|
+
numberOfRedemptions: string;
|
|
10589
10744
|
seller: {
|
|
10590
10745
|
__typename?: "Seller";
|
|
10591
10746
|
id: string;
|
|
@@ -10886,6 +11041,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
10886
11041
|
validFromDate: string;
|
|
10887
11042
|
validUntilDate: string;
|
|
10888
11043
|
quantityAvailable: string;
|
|
11044
|
+
numberOfCommits: string;
|
|
11045
|
+
numberOfRedemptions: string;
|
|
10889
11046
|
uuid: string;
|
|
10890
11047
|
attributes?: Array<{
|
|
10891
11048
|
__typename?: "MetadataAttribute";
|
|
@@ -10914,8 +11071,11 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
10914
11071
|
resolutionPeriodDuration: string;
|
|
10915
11072
|
metadataUri: string;
|
|
10916
11073
|
metadataHash: string;
|
|
11074
|
+
voided: boolean;
|
|
10917
11075
|
voidedAt?: string | null;
|
|
10918
11076
|
disputeResolverId: string;
|
|
11077
|
+
numberOfCommits: string;
|
|
11078
|
+
numberOfRedemptions: string;
|
|
10919
11079
|
seller: {
|
|
10920
11080
|
__typename?: "Seller";
|
|
10921
11081
|
id: string;
|
|
@@ -11314,6 +11474,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
11314
11474
|
validFromDate: string;
|
|
11315
11475
|
validUntilDate: string;
|
|
11316
11476
|
quantityAvailable: string;
|
|
11477
|
+
numberOfCommits: string;
|
|
11478
|
+
numberOfRedemptions: string;
|
|
11317
11479
|
uuid: string;
|
|
11318
11480
|
attributes?: Array<{
|
|
11319
11481
|
__typename?: "MetadataAttribute";
|
|
@@ -11342,8 +11504,11 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
11342
11504
|
resolutionPeriodDuration: string;
|
|
11343
11505
|
metadataUri: string;
|
|
11344
11506
|
metadataHash: string;
|
|
11507
|
+
voided: boolean;
|
|
11345
11508
|
voidedAt?: string | null;
|
|
11346
11509
|
disputeResolverId: string;
|
|
11510
|
+
numberOfCommits: string;
|
|
11511
|
+
numberOfRedemptions: string;
|
|
11347
11512
|
seller: {
|
|
11348
11513
|
__typename?: "Seller";
|
|
11349
11514
|
id: string;
|
|
@@ -11733,6 +11898,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
11733
11898
|
validFromDate: string;
|
|
11734
11899
|
validUntilDate: string;
|
|
11735
11900
|
quantityAvailable: string;
|
|
11901
|
+
numberOfCommits: string;
|
|
11902
|
+
numberOfRedemptions: string;
|
|
11736
11903
|
uuid: string;
|
|
11737
11904
|
attributes?: Array<{
|
|
11738
11905
|
__typename?: "MetadataAttribute";
|
|
@@ -11761,8 +11928,11 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
11761
11928
|
resolutionPeriodDuration: string;
|
|
11762
11929
|
metadataUri: string;
|
|
11763
11930
|
metadataHash: string;
|
|
11931
|
+
voided: boolean;
|
|
11764
11932
|
voidedAt?: string | null;
|
|
11765
11933
|
disputeResolverId: string;
|
|
11934
|
+
numberOfCommits: string;
|
|
11935
|
+
numberOfRedemptions: string;
|
|
11766
11936
|
seller: {
|
|
11767
11937
|
__typename?: "Seller";
|
|
11768
11938
|
id: string;
|
|
@@ -12151,6 +12321,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12151
12321
|
validFromDate: string;
|
|
12152
12322
|
validUntilDate: string;
|
|
12153
12323
|
quantityAvailable: string;
|
|
12324
|
+
numberOfCommits: string;
|
|
12325
|
+
numberOfRedemptions: string;
|
|
12154
12326
|
uuid: string;
|
|
12155
12327
|
attributes?: Array<{
|
|
12156
12328
|
__typename?: "MetadataAttribute";
|
|
@@ -12179,8 +12351,11 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12179
12351
|
resolutionPeriodDuration: string;
|
|
12180
12352
|
metadataUri: string;
|
|
12181
12353
|
metadataHash: string;
|
|
12354
|
+
voided: boolean;
|
|
12182
12355
|
voidedAt?: string | null;
|
|
12183
12356
|
disputeResolverId: string;
|
|
12357
|
+
numberOfCommits: string;
|
|
12358
|
+
numberOfRedemptions: string;
|
|
12184
12359
|
seller: {
|
|
12185
12360
|
__typename?: "Seller";
|
|
12186
12361
|
id: string;
|
|
@@ -12813,8 +12988,11 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
12813
12988
|
resolutionPeriodDuration: string;
|
|
12814
12989
|
metadataUri: string;
|
|
12815
12990
|
metadataHash: string;
|
|
12991
|
+
voided: boolean;
|
|
12816
12992
|
voidedAt?: string | null;
|
|
12817
12993
|
disputeResolverId: string;
|
|
12994
|
+
numberOfCommits: string;
|
|
12995
|
+
numberOfRedemptions: string;
|
|
12818
12996
|
exchanges?: Array<{
|
|
12819
12997
|
__typename?: "Exchange";
|
|
12820
12998
|
id: string;
|
|
@@ -12829,6 +13007,21 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
12829
13007
|
completedDate?: string | null;
|
|
12830
13008
|
disputedDate?: string | null;
|
|
12831
13009
|
expired: boolean;
|
|
13010
|
+
dispute?: {
|
|
13011
|
+
__typename?: "Dispute";
|
|
13012
|
+
id: string;
|
|
13013
|
+
exchangeId: string;
|
|
13014
|
+
state: DisputeState;
|
|
13015
|
+
buyerPercent: string;
|
|
13016
|
+
disputedDate: string;
|
|
13017
|
+
escalatedDate?: string | null;
|
|
13018
|
+
finalizedDate?: string | null;
|
|
13019
|
+
retractedDate?: string | null;
|
|
13020
|
+
resolvedDate?: string | null;
|
|
13021
|
+
decidedDate?: string | null;
|
|
13022
|
+
refusedDate?: string | null;
|
|
13023
|
+
timeout: string;
|
|
13024
|
+
} | null;
|
|
12832
13025
|
}>;
|
|
12833
13026
|
seller: {
|
|
12834
13027
|
__typename?: "Seller";
|
|
@@ -13092,8 +13285,11 @@ export declare type GetOffersQueryQuery = {
|
|
|
13092
13285
|
resolutionPeriodDuration: string;
|
|
13093
13286
|
metadataUri: string;
|
|
13094
13287
|
metadataHash: string;
|
|
13288
|
+
voided: boolean;
|
|
13095
13289
|
voidedAt?: string | null;
|
|
13096
13290
|
disputeResolverId: string;
|
|
13291
|
+
numberOfCommits: string;
|
|
13292
|
+
numberOfRedemptions: string;
|
|
13097
13293
|
exchanges?: Array<{
|
|
13098
13294
|
__typename?: "Exchange";
|
|
13099
13295
|
id: string;
|
|
@@ -13108,6 +13304,21 @@ export declare type GetOffersQueryQuery = {
|
|
|
13108
13304
|
completedDate?: string | null;
|
|
13109
13305
|
disputedDate?: string | null;
|
|
13110
13306
|
expired: boolean;
|
|
13307
|
+
dispute?: {
|
|
13308
|
+
__typename?: "Dispute";
|
|
13309
|
+
id: string;
|
|
13310
|
+
exchangeId: string;
|
|
13311
|
+
state: DisputeState;
|
|
13312
|
+
buyerPercent: string;
|
|
13313
|
+
disputedDate: string;
|
|
13314
|
+
escalatedDate?: string | null;
|
|
13315
|
+
finalizedDate?: string | null;
|
|
13316
|
+
retractedDate?: string | null;
|
|
13317
|
+
resolvedDate?: string | null;
|
|
13318
|
+
decidedDate?: string | null;
|
|
13319
|
+
refusedDate?: string | null;
|
|
13320
|
+
timeout: string;
|
|
13321
|
+
} | null;
|
|
13111
13322
|
}>;
|
|
13112
13323
|
seller: {
|
|
13113
13324
|
__typename?: "Seller";
|
|
@@ -13356,8 +13567,11 @@ export declare type OfferFieldsFragment = {
|
|
|
13356
13567
|
resolutionPeriodDuration: string;
|
|
13357
13568
|
metadataUri: string;
|
|
13358
13569
|
metadataHash: string;
|
|
13570
|
+
voided: boolean;
|
|
13359
13571
|
voidedAt?: string | null;
|
|
13360
13572
|
disputeResolverId: string;
|
|
13573
|
+
numberOfCommits: string;
|
|
13574
|
+
numberOfRedemptions: string;
|
|
13361
13575
|
exchanges?: Array<{
|
|
13362
13576
|
__typename?: "Exchange";
|
|
13363
13577
|
id: string;
|
|
@@ -13372,6 +13586,21 @@ export declare type OfferFieldsFragment = {
|
|
|
13372
13586
|
completedDate?: string | null;
|
|
13373
13587
|
disputedDate?: string | null;
|
|
13374
13588
|
expired: boolean;
|
|
13589
|
+
dispute?: {
|
|
13590
|
+
__typename?: "Dispute";
|
|
13591
|
+
id: string;
|
|
13592
|
+
exchangeId: string;
|
|
13593
|
+
state: DisputeState;
|
|
13594
|
+
buyerPercent: string;
|
|
13595
|
+
disputedDate: string;
|
|
13596
|
+
escalatedDate?: string | null;
|
|
13597
|
+
finalizedDate?: string | null;
|
|
13598
|
+
retractedDate?: string | null;
|
|
13599
|
+
resolvedDate?: string | null;
|
|
13600
|
+
decidedDate?: string | null;
|
|
13601
|
+
refusedDate?: string | null;
|
|
13602
|
+
timeout: string;
|
|
13603
|
+
} | null;
|
|
13375
13604
|
}>;
|
|
13376
13605
|
seller: {
|
|
13377
13606
|
__typename?: "Seller";
|
|
@@ -13619,8 +13848,11 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
13619
13848
|
resolutionPeriodDuration: string;
|
|
13620
13849
|
metadataUri: string;
|
|
13621
13850
|
metadataHash: string;
|
|
13851
|
+
voided: boolean;
|
|
13622
13852
|
voidedAt?: string | null;
|
|
13623
13853
|
disputeResolverId: string;
|
|
13854
|
+
numberOfCommits: string;
|
|
13855
|
+
numberOfRedemptions: string;
|
|
13624
13856
|
seller: {
|
|
13625
13857
|
__typename?: "Seller";
|
|
13626
13858
|
id: string;
|
|
@@ -13867,12 +14099,12 @@ export declare const BaseProductV1ExchangePolicyFieldsFragmentDoc: string;
|
|
|
13867
14099
|
export declare const BaseProductV1ShippingJurisdictionFieldsFragmentDoc: string;
|
|
13868
14100
|
export declare const BaseProductV1ShippingOptionFieldsFragmentDoc: string;
|
|
13869
14101
|
export declare const BaseOfferFieldsFragmentDoc: string;
|
|
14102
|
+
export declare const BaseDisputeFieldsFragmentDoc: string;
|
|
13870
14103
|
export declare const BaseExchangeFieldsFragmentDoc: string;
|
|
13871
14104
|
export declare const SellerFieldsFragmentDoc: string;
|
|
13872
14105
|
export declare const BaseBuyerFieldsFragmentDoc: string;
|
|
13873
14106
|
export declare const BuyerFieldsFragmentDoc: string;
|
|
13874
14107
|
export declare const DisputeResolverFieldsFragmentDoc: string;
|
|
13875
|
-
export declare const BaseDisputeFieldsFragmentDoc: string;
|
|
13876
14108
|
export declare const DisputeFieldsFragmentDoc: string;
|
|
13877
14109
|
export declare const ExchangeTokenFieldsFragmentDoc: string;
|
|
13878
14110
|
export declare const ExchangeFieldsFragmentDoc: string;
|