@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/src/subgraph.ts
CHANGED
|
@@ -79,6 +79,8 @@ export type BaseMetadataEntity = MetadataInterface & {
|
|
|
79
79
|
id: Scalars["ID"];
|
|
80
80
|
image: Scalars["String"];
|
|
81
81
|
name: Scalars["String"];
|
|
82
|
+
numberOfCommits: Scalars["BigInt"];
|
|
83
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
82
84
|
/**
|
|
83
85
|
* References to entities
|
|
84
86
|
*
|
|
@@ -225,6 +227,22 @@ export type BaseMetadataEntity_Filter = {
|
|
|
225
227
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
226
228
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
227
229
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
230
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
231
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
232
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
233
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
234
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
235
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
236
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
237
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
238
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
239
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
240
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
241
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
242
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
243
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
244
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
245
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
228
246
|
offer?: InputMaybe<Scalars["String"]>;
|
|
229
247
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
230
248
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -328,6 +346,8 @@ export enum BaseMetadataEntity_OrderBy {
|
|
|
328
346
|
Id = "id",
|
|
329
347
|
Image = "image",
|
|
330
348
|
Name = "name",
|
|
349
|
+
NumberOfCommits = "numberOfCommits",
|
|
350
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
331
351
|
Offer = "offer",
|
|
332
352
|
QuantityAvailable = "quantityAvailable",
|
|
333
353
|
SchemaUrl = "schemaUrl",
|
|
@@ -1457,6 +1477,8 @@ export type MetadataInterface = {
|
|
|
1457
1477
|
id: Scalars["ID"];
|
|
1458
1478
|
image: Scalars["String"];
|
|
1459
1479
|
name: Scalars["String"];
|
|
1480
|
+
numberOfCommits: Scalars["BigInt"];
|
|
1481
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
1460
1482
|
/**
|
|
1461
1483
|
* References to entities
|
|
1462
1484
|
*
|
|
@@ -1602,6 +1624,22 @@ export type MetadataInterface_Filter = {
|
|
|
1602
1624
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1603
1625
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1604
1626
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1627
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
1628
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1629
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1630
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1631
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1632
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1633
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1634
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1635
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
1636
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1637
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1638
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1639
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1640
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1641
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1642
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1605
1643
|
offer?: InputMaybe<Scalars["String"]>;
|
|
1606
1644
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
1607
1645
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1705,6 +1743,8 @@ export enum MetadataInterface_OrderBy {
|
|
|
1705
1743
|
Id = "id",
|
|
1706
1744
|
Image = "image",
|
|
1707
1745
|
Name = "name",
|
|
1746
|
+
NumberOfCommits = "numberOfCommits",
|
|
1747
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
1708
1748
|
Offer = "offer",
|
|
1709
1749
|
QuantityAvailable = "quantityAvailable",
|
|
1710
1750
|
SchemaUrl = "schemaUrl",
|
|
@@ -1741,6 +1781,9 @@ export type Offer = {
|
|
|
1741
1781
|
metadata?: Maybe<MetadataInterface>;
|
|
1742
1782
|
metadataHash: Scalars["String"];
|
|
1743
1783
|
metadataUri: Scalars["String"];
|
|
1784
|
+
/** Stats */
|
|
1785
|
+
numberOfCommits: Scalars["BigInt"];
|
|
1786
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
1744
1787
|
price: Scalars["BigInt"];
|
|
1745
1788
|
protocolFee: Scalars["BigInt"];
|
|
1746
1789
|
quantityAvailable: Scalars["BigInt"];
|
|
@@ -1948,6 +1991,22 @@ export type Offer_Filter = {
|
|
|
1948
1991
|
metadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1949
1992
|
metadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1950
1993
|
metadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1994
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
1995
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1996
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1997
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1998
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1999
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2000
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2001
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2002
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
2003
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2004
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2005
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2006
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2007
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2008
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2009
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1951
2010
|
price?: InputMaybe<Scalars["BigInt"]>;
|
|
1952
2011
|
price_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1953
2012
|
price_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -2093,6 +2152,8 @@ export enum Offer_OrderBy {
|
|
|
2093
2152
|
Metadata = "metadata",
|
|
2094
2153
|
MetadataHash = "metadataHash",
|
|
2095
2154
|
MetadataUri = "metadataUri",
|
|
2155
|
+
NumberOfCommits = "numberOfCommits",
|
|
2156
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
2096
2157
|
Price = "price",
|
|
2097
2158
|
ProtocolFee = "protocolFee",
|
|
2098
2159
|
QuantityAvailable = "quantityAvailable",
|
|
@@ -2400,6 +2461,8 @@ export type ProductV1MetadataEntity = MetadataInterface & {
|
|
|
2400
2461
|
id: Scalars["ID"];
|
|
2401
2462
|
image: Scalars["String"];
|
|
2402
2463
|
name: Scalars["String"];
|
|
2464
|
+
numberOfCommits: Scalars["BigInt"];
|
|
2465
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
2403
2466
|
/**
|
|
2404
2467
|
* References to entities
|
|
2405
2468
|
*
|
|
@@ -2584,6 +2647,22 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
2584
2647
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2585
2648
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2586
2649
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2650
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
2651
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2652
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2653
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2654
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2655
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2656
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2657
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2658
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
2659
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2660
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2661
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2662
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2663
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2664
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2665
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2587
2666
|
offer?: InputMaybe<Scalars["String"]>;
|
|
2588
2667
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
2589
2668
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2794,6 +2873,8 @@ export enum ProductV1MetadataEntity_OrderBy {
|
|
|
2794
2873
|
Id = "id",
|
|
2795
2874
|
Image = "image",
|
|
2796
2875
|
Name = "name",
|
|
2876
|
+
NumberOfCommits = "numberOfCommits",
|
|
2877
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
2797
2878
|
Offer = "offer",
|
|
2798
2879
|
Product = "product",
|
|
2799
2880
|
ProductOverrides = "productOverrides",
|
|
@@ -6130,8 +6211,11 @@ export type GetSellerByIdQueryQuery = {
|
|
|
6130
6211
|
resolutionPeriodDuration: string;
|
|
6131
6212
|
metadataUri: string;
|
|
6132
6213
|
metadataHash: string;
|
|
6214
|
+
voided: boolean;
|
|
6133
6215
|
voidedAt?: string | null;
|
|
6134
6216
|
disputeResolverId: string;
|
|
6217
|
+
numberOfCommits: string;
|
|
6218
|
+
numberOfRedemptions: string;
|
|
6135
6219
|
seller: {
|
|
6136
6220
|
__typename?: "Seller";
|
|
6137
6221
|
id: string;
|
|
@@ -6374,6 +6458,21 @@ export type GetSellerByIdQueryQuery = {
|
|
|
6374
6458
|
completedDate?: string | null;
|
|
6375
6459
|
disputedDate?: string | null;
|
|
6376
6460
|
expired: boolean;
|
|
6461
|
+
dispute?: {
|
|
6462
|
+
__typename?: "Dispute";
|
|
6463
|
+
id: string;
|
|
6464
|
+
exchangeId: string;
|
|
6465
|
+
state: DisputeState;
|
|
6466
|
+
buyerPercent: string;
|
|
6467
|
+
disputedDate: string;
|
|
6468
|
+
escalatedDate?: string | null;
|
|
6469
|
+
finalizedDate?: string | null;
|
|
6470
|
+
retractedDate?: string | null;
|
|
6471
|
+
resolvedDate?: string | null;
|
|
6472
|
+
decidedDate?: string | null;
|
|
6473
|
+
refusedDate?: string | null;
|
|
6474
|
+
timeout: string;
|
|
6475
|
+
} | null;
|
|
6377
6476
|
}>;
|
|
6378
6477
|
} | null;
|
|
6379
6478
|
};
|
|
@@ -6452,8 +6551,11 @@ export type GetSellersQueryQuery = {
|
|
|
6452
6551
|
resolutionPeriodDuration: string;
|
|
6453
6552
|
metadataUri: string;
|
|
6454
6553
|
metadataHash: string;
|
|
6554
|
+
voided: boolean;
|
|
6455
6555
|
voidedAt?: string | null;
|
|
6456
6556
|
disputeResolverId: string;
|
|
6557
|
+
numberOfCommits: string;
|
|
6558
|
+
numberOfRedemptions: string;
|
|
6457
6559
|
seller: {
|
|
6458
6560
|
__typename?: "Seller";
|
|
6459
6561
|
id: string;
|
|
@@ -6696,6 +6798,21 @@ export type GetSellersQueryQuery = {
|
|
|
6696
6798
|
completedDate?: string | null;
|
|
6697
6799
|
disputedDate?: string | null;
|
|
6698
6800
|
expired: boolean;
|
|
6801
|
+
dispute?: {
|
|
6802
|
+
__typename?: "Dispute";
|
|
6803
|
+
id: string;
|
|
6804
|
+
exchangeId: string;
|
|
6805
|
+
state: DisputeState;
|
|
6806
|
+
buyerPercent: string;
|
|
6807
|
+
disputedDate: string;
|
|
6808
|
+
escalatedDate?: string | null;
|
|
6809
|
+
finalizedDate?: string | null;
|
|
6810
|
+
retractedDate?: string | null;
|
|
6811
|
+
resolvedDate?: string | null;
|
|
6812
|
+
decidedDate?: string | null;
|
|
6813
|
+
refusedDate?: string | null;
|
|
6814
|
+
timeout: string;
|
|
6815
|
+
} | null;
|
|
6699
6816
|
}>;
|
|
6700
6817
|
}>;
|
|
6701
6818
|
};
|
|
@@ -6751,6 +6868,21 @@ export type GetBuyerByIdQueryQuery = {
|
|
|
6751
6868
|
completedDate?: string | null;
|
|
6752
6869
|
disputedDate?: string | null;
|
|
6753
6870
|
expired: boolean;
|
|
6871
|
+
dispute?: {
|
|
6872
|
+
__typename?: "Dispute";
|
|
6873
|
+
id: string;
|
|
6874
|
+
exchangeId: string;
|
|
6875
|
+
state: DisputeState;
|
|
6876
|
+
buyerPercent: string;
|
|
6877
|
+
disputedDate: string;
|
|
6878
|
+
escalatedDate?: string | null;
|
|
6879
|
+
finalizedDate?: string | null;
|
|
6880
|
+
retractedDate?: string | null;
|
|
6881
|
+
resolvedDate?: string | null;
|
|
6882
|
+
decidedDate?: string | null;
|
|
6883
|
+
refusedDate?: string | null;
|
|
6884
|
+
timeout: string;
|
|
6885
|
+
} | null;
|
|
6754
6886
|
}>;
|
|
6755
6887
|
} | null;
|
|
6756
6888
|
};
|
|
@@ -6816,6 +6948,21 @@ export type GetBuyersQueryQuery = {
|
|
|
6816
6948
|
completedDate?: string | null;
|
|
6817
6949
|
disputedDate?: string | null;
|
|
6818
6950
|
expired: boolean;
|
|
6951
|
+
dispute?: {
|
|
6952
|
+
__typename?: "Dispute";
|
|
6953
|
+
id: string;
|
|
6954
|
+
exchangeId: string;
|
|
6955
|
+
state: DisputeState;
|
|
6956
|
+
buyerPercent: string;
|
|
6957
|
+
disputedDate: string;
|
|
6958
|
+
escalatedDate?: string | null;
|
|
6959
|
+
finalizedDate?: string | null;
|
|
6960
|
+
retractedDate?: string | null;
|
|
6961
|
+
resolvedDate?: string | null;
|
|
6962
|
+
decidedDate?: string | null;
|
|
6963
|
+
refusedDate?: string | null;
|
|
6964
|
+
timeout: string;
|
|
6965
|
+
} | null;
|
|
6819
6966
|
}>;
|
|
6820
6967
|
}>;
|
|
6821
6968
|
};
|
|
@@ -6864,8 +7011,11 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
6864
7011
|
resolutionPeriodDuration: string;
|
|
6865
7012
|
metadataUri: string;
|
|
6866
7013
|
metadataHash: string;
|
|
7014
|
+
voided: boolean;
|
|
6867
7015
|
voidedAt?: string | null;
|
|
6868
7016
|
disputeResolverId: string;
|
|
7017
|
+
numberOfCommits: string;
|
|
7018
|
+
numberOfRedemptions: string;
|
|
6869
7019
|
seller: {
|
|
6870
7020
|
__typename?: "Seller";
|
|
6871
7021
|
id: string;
|
|
@@ -7160,8 +7310,11 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
7160
7310
|
resolutionPeriodDuration: string;
|
|
7161
7311
|
metadataUri: string;
|
|
7162
7312
|
metadataHash: string;
|
|
7313
|
+
voided: boolean;
|
|
7163
7314
|
voidedAt?: string | null;
|
|
7164
7315
|
disputeResolverId: string;
|
|
7316
|
+
numberOfCommits: string;
|
|
7317
|
+
numberOfRedemptions: string;
|
|
7165
7318
|
seller: {
|
|
7166
7319
|
__typename?: "Seller";
|
|
7167
7320
|
id: string;
|
|
@@ -7454,8 +7607,11 @@ export type SellerFieldsFragment = {
|
|
|
7454
7607
|
resolutionPeriodDuration: string;
|
|
7455
7608
|
metadataUri: string;
|
|
7456
7609
|
metadataHash: string;
|
|
7610
|
+
voided: boolean;
|
|
7457
7611
|
voidedAt?: string | null;
|
|
7458
7612
|
disputeResolverId: string;
|
|
7613
|
+
numberOfCommits: string;
|
|
7614
|
+
numberOfRedemptions: string;
|
|
7459
7615
|
seller: {
|
|
7460
7616
|
__typename?: "Seller";
|
|
7461
7617
|
id: string;
|
|
@@ -7694,6 +7850,21 @@ export type SellerFieldsFragment = {
|
|
|
7694
7850
|
completedDate?: string | null;
|
|
7695
7851
|
disputedDate?: string | null;
|
|
7696
7852
|
expired: boolean;
|
|
7853
|
+
dispute?: {
|
|
7854
|
+
__typename?: "Dispute";
|
|
7855
|
+
id: string;
|
|
7856
|
+
exchangeId: string;
|
|
7857
|
+
state: DisputeState;
|
|
7858
|
+
buyerPercent: string;
|
|
7859
|
+
disputedDate: string;
|
|
7860
|
+
escalatedDate?: string | null;
|
|
7861
|
+
finalizedDate?: string | null;
|
|
7862
|
+
retractedDate?: string | null;
|
|
7863
|
+
resolvedDate?: string | null;
|
|
7864
|
+
decidedDate?: string | null;
|
|
7865
|
+
refusedDate?: string | null;
|
|
7866
|
+
timeout: string;
|
|
7867
|
+
} | null;
|
|
7697
7868
|
}>;
|
|
7698
7869
|
};
|
|
7699
7870
|
|
|
@@ -7743,6 +7914,21 @@ export type BuyerFieldsFragment = {
|
|
|
7743
7914
|
completedDate?: string | null;
|
|
7744
7915
|
disputedDate?: string | null;
|
|
7745
7916
|
expired: boolean;
|
|
7917
|
+
dispute?: {
|
|
7918
|
+
__typename?: "Dispute";
|
|
7919
|
+
id: string;
|
|
7920
|
+
exchangeId: string;
|
|
7921
|
+
state: DisputeState;
|
|
7922
|
+
buyerPercent: string;
|
|
7923
|
+
disputedDate: string;
|
|
7924
|
+
escalatedDate?: string | null;
|
|
7925
|
+
finalizedDate?: string | null;
|
|
7926
|
+
retractedDate?: string | null;
|
|
7927
|
+
resolvedDate?: string | null;
|
|
7928
|
+
decidedDate?: string | null;
|
|
7929
|
+
refusedDate?: string | null;
|
|
7930
|
+
timeout: string;
|
|
7931
|
+
} | null;
|
|
7746
7932
|
}>;
|
|
7747
7933
|
};
|
|
7748
7934
|
|
|
@@ -7785,8 +7971,11 @@ export type DisputeResolverFieldsFragment = {
|
|
|
7785
7971
|
resolutionPeriodDuration: string;
|
|
7786
7972
|
metadataUri: string;
|
|
7787
7973
|
metadataHash: string;
|
|
7974
|
+
voided: boolean;
|
|
7788
7975
|
voidedAt?: string | null;
|
|
7789
7976
|
disputeResolverId: string;
|
|
7977
|
+
numberOfCommits: string;
|
|
7978
|
+
numberOfRedemptions: string;
|
|
7790
7979
|
seller: {
|
|
7791
7980
|
__typename?: "Seller";
|
|
7792
7981
|
id: string;
|
|
@@ -8121,6 +8310,21 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
8121
8310
|
completedDate?: string | null;
|
|
8122
8311
|
disputedDate?: string | null;
|
|
8123
8312
|
expired: boolean;
|
|
8313
|
+
dispute?: {
|
|
8314
|
+
__typename?: "Dispute";
|
|
8315
|
+
id: string;
|
|
8316
|
+
exchangeId: string;
|
|
8317
|
+
state: DisputeState;
|
|
8318
|
+
buyerPercent: string;
|
|
8319
|
+
disputedDate: string;
|
|
8320
|
+
escalatedDate?: string | null;
|
|
8321
|
+
finalizedDate?: string | null;
|
|
8322
|
+
retractedDate?: string | null;
|
|
8323
|
+
resolvedDate?: string | null;
|
|
8324
|
+
decidedDate?: string | null;
|
|
8325
|
+
refusedDate?: string | null;
|
|
8326
|
+
timeout: string;
|
|
8327
|
+
} | null;
|
|
8124
8328
|
};
|
|
8125
8329
|
seller: {
|
|
8126
8330
|
__typename?: "Seller";
|
|
@@ -8181,6 +8385,21 @@ export type GetDisputesQueryQuery = {
|
|
|
8181
8385
|
completedDate?: string | null;
|
|
8182
8386
|
disputedDate?: string | null;
|
|
8183
8387
|
expired: boolean;
|
|
8388
|
+
dispute?: {
|
|
8389
|
+
__typename?: "Dispute";
|
|
8390
|
+
id: string;
|
|
8391
|
+
exchangeId: string;
|
|
8392
|
+
state: DisputeState;
|
|
8393
|
+
buyerPercent: string;
|
|
8394
|
+
disputedDate: string;
|
|
8395
|
+
escalatedDate?: string | null;
|
|
8396
|
+
finalizedDate?: string | null;
|
|
8397
|
+
retractedDate?: string | null;
|
|
8398
|
+
resolvedDate?: string | null;
|
|
8399
|
+
decidedDate?: string | null;
|
|
8400
|
+
refusedDate?: string | null;
|
|
8401
|
+
timeout: string;
|
|
8402
|
+
} | null;
|
|
8184
8403
|
};
|
|
8185
8404
|
seller: {
|
|
8186
8405
|
__typename?: "Seller";
|
|
@@ -8231,6 +8450,21 @@ export type DisputeFieldsFragment = {
|
|
|
8231
8450
|
completedDate?: string | null;
|
|
8232
8451
|
disputedDate?: string | null;
|
|
8233
8452
|
expired: boolean;
|
|
8453
|
+
dispute?: {
|
|
8454
|
+
__typename?: "Dispute";
|
|
8455
|
+
id: string;
|
|
8456
|
+
exchangeId: string;
|
|
8457
|
+
state: DisputeState;
|
|
8458
|
+
buyerPercent: string;
|
|
8459
|
+
disputedDate: string;
|
|
8460
|
+
escalatedDate?: string | null;
|
|
8461
|
+
finalizedDate?: string | null;
|
|
8462
|
+
retractedDate?: string | null;
|
|
8463
|
+
resolvedDate?: string | null;
|
|
8464
|
+
decidedDate?: string | null;
|
|
8465
|
+
refusedDate?: string | null;
|
|
8466
|
+
timeout: string;
|
|
8467
|
+
} | null;
|
|
8234
8468
|
};
|
|
8235
8469
|
seller: {
|
|
8236
8470
|
__typename?: "Seller";
|
|
@@ -8261,34 +8495,6 @@ export type BaseDisputeFieldsFragment = {
|
|
|
8261
8495
|
decidedDate?: string | null;
|
|
8262
8496
|
refusedDate?: string | null;
|
|
8263
8497
|
timeout: string;
|
|
8264
|
-
exchange: {
|
|
8265
|
-
__typename?: "Exchange";
|
|
8266
|
-
id: string;
|
|
8267
|
-
disputed: boolean;
|
|
8268
|
-
state: ExchangeState;
|
|
8269
|
-
committedDate: string;
|
|
8270
|
-
finalizedDate?: string | null;
|
|
8271
|
-
validUntilDate: string;
|
|
8272
|
-
redeemedDate?: string | null;
|
|
8273
|
-
revokedDate?: string | null;
|
|
8274
|
-
cancelledDate?: string | null;
|
|
8275
|
-
completedDate?: string | null;
|
|
8276
|
-
disputedDate?: string | null;
|
|
8277
|
-
expired: boolean;
|
|
8278
|
-
};
|
|
8279
|
-
seller: {
|
|
8280
|
-
__typename?: "Seller";
|
|
8281
|
-
id: string;
|
|
8282
|
-
operator: string;
|
|
8283
|
-
admin: string;
|
|
8284
|
-
clerk: string;
|
|
8285
|
-
treasury: string;
|
|
8286
|
-
authTokenId: string;
|
|
8287
|
-
authTokenType: number;
|
|
8288
|
-
voucherCloneAddress: string;
|
|
8289
|
-
active: boolean;
|
|
8290
|
-
};
|
|
8291
|
-
buyer: { __typename?: "Buyer"; id: string; wallet: string; active: boolean };
|
|
8292
8498
|
};
|
|
8293
8499
|
|
|
8294
8500
|
export type GetExchangeTokenByIdQueryQueryVariables = Exact<{
|
|
@@ -8342,8 +8548,11 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
8342
8548
|
resolutionPeriodDuration: string;
|
|
8343
8549
|
metadataUri: string;
|
|
8344
8550
|
metadataHash: string;
|
|
8551
|
+
voided: boolean;
|
|
8345
8552
|
voidedAt?: string | null;
|
|
8346
8553
|
disputeResolverId: string;
|
|
8554
|
+
numberOfCommits: string;
|
|
8555
|
+
numberOfRedemptions: string;
|
|
8347
8556
|
seller: {
|
|
8348
8557
|
__typename?: "Seller";
|
|
8349
8558
|
id: string;
|
|
@@ -8631,8 +8840,11 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
8631
8840
|
resolutionPeriodDuration: string;
|
|
8632
8841
|
metadataUri: string;
|
|
8633
8842
|
metadataHash: string;
|
|
8843
|
+
voided: boolean;
|
|
8634
8844
|
voidedAt?: string | null;
|
|
8635
8845
|
disputeResolverId: string;
|
|
8846
|
+
numberOfCommits: string;
|
|
8847
|
+
numberOfRedemptions: string;
|
|
8636
8848
|
seller: {
|
|
8637
8849
|
__typename?: "Seller";
|
|
8638
8850
|
id: string;
|
|
@@ -8898,8 +9110,11 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
8898
9110
|
resolutionPeriodDuration: string;
|
|
8899
9111
|
metadataUri: string;
|
|
8900
9112
|
metadataHash: string;
|
|
9113
|
+
voided: boolean;
|
|
8901
9114
|
voidedAt?: string | null;
|
|
8902
9115
|
disputeResolverId: string;
|
|
9116
|
+
numberOfCommits: string;
|
|
9117
|
+
numberOfRedemptions: string;
|
|
8903
9118
|
seller: {
|
|
8904
9119
|
__typename?: "Seller";
|
|
8905
9120
|
id: string;
|
|
@@ -9200,8 +9415,11 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
9200
9415
|
resolutionPeriodDuration: string;
|
|
9201
9416
|
metadataUri: string;
|
|
9202
9417
|
metadataHash: string;
|
|
9418
|
+
voided: boolean;
|
|
9203
9419
|
voidedAt?: string | null;
|
|
9204
9420
|
disputeResolverId: string;
|
|
9421
|
+
numberOfCommits: string;
|
|
9422
|
+
numberOfRedemptions: string;
|
|
9205
9423
|
seller: {
|
|
9206
9424
|
__typename?: "Seller";
|
|
9207
9425
|
id: string;
|
|
@@ -9444,39 +9662,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
9444
9662
|
decidedDate?: string | null;
|
|
9445
9663
|
refusedDate?: string | null;
|
|
9446
9664
|
timeout: string;
|
|
9447
|
-
exchange: {
|
|
9448
|
-
__typename?: "Exchange";
|
|
9449
|
-
id: string;
|
|
9450
|
-
disputed: boolean;
|
|
9451
|
-
state: ExchangeState;
|
|
9452
|
-
committedDate: string;
|
|
9453
|
-
finalizedDate?: string | null;
|
|
9454
|
-
validUntilDate: string;
|
|
9455
|
-
redeemedDate?: string | null;
|
|
9456
|
-
revokedDate?: string | null;
|
|
9457
|
-
cancelledDate?: string | null;
|
|
9458
|
-
completedDate?: string | null;
|
|
9459
|
-
disputedDate?: string | null;
|
|
9460
|
-
expired: boolean;
|
|
9461
|
-
};
|
|
9462
|
-
seller: {
|
|
9463
|
-
__typename?: "Seller";
|
|
9464
|
-
id: string;
|
|
9465
|
-
operator: string;
|
|
9466
|
-
admin: string;
|
|
9467
|
-
clerk: string;
|
|
9468
|
-
treasury: string;
|
|
9469
|
-
authTokenId: string;
|
|
9470
|
-
authTokenType: number;
|
|
9471
|
-
voucherCloneAddress: string;
|
|
9472
|
-
active: boolean;
|
|
9473
|
-
};
|
|
9474
|
-
buyer: {
|
|
9475
|
-
__typename?: "Buyer";
|
|
9476
|
-
id: string;
|
|
9477
|
-
wallet: string;
|
|
9478
|
-
active: boolean;
|
|
9479
|
-
};
|
|
9480
9665
|
} | null;
|
|
9481
9666
|
} | null;
|
|
9482
9667
|
};
|
|
@@ -9544,8 +9729,11 @@ export type GetExchangesQueryQuery = {
|
|
|
9544
9729
|
resolutionPeriodDuration: string;
|
|
9545
9730
|
metadataUri: string;
|
|
9546
9731
|
metadataHash: string;
|
|
9732
|
+
voided: boolean;
|
|
9547
9733
|
voidedAt?: string | null;
|
|
9548
9734
|
disputeResolverId: string;
|
|
9735
|
+
numberOfCommits: string;
|
|
9736
|
+
numberOfRedemptions: string;
|
|
9549
9737
|
seller: {
|
|
9550
9738
|
__typename?: "Seller";
|
|
9551
9739
|
id: string;
|
|
@@ -9788,39 +9976,6 @@ export type GetExchangesQueryQuery = {
|
|
|
9788
9976
|
decidedDate?: string | null;
|
|
9789
9977
|
refusedDate?: string | null;
|
|
9790
9978
|
timeout: string;
|
|
9791
|
-
exchange: {
|
|
9792
|
-
__typename?: "Exchange";
|
|
9793
|
-
id: string;
|
|
9794
|
-
disputed: boolean;
|
|
9795
|
-
state: ExchangeState;
|
|
9796
|
-
committedDate: string;
|
|
9797
|
-
finalizedDate?: string | null;
|
|
9798
|
-
validUntilDate: string;
|
|
9799
|
-
redeemedDate?: string | null;
|
|
9800
|
-
revokedDate?: string | null;
|
|
9801
|
-
cancelledDate?: string | null;
|
|
9802
|
-
completedDate?: string | null;
|
|
9803
|
-
disputedDate?: string | null;
|
|
9804
|
-
expired: boolean;
|
|
9805
|
-
};
|
|
9806
|
-
seller: {
|
|
9807
|
-
__typename?: "Seller";
|
|
9808
|
-
id: string;
|
|
9809
|
-
operator: string;
|
|
9810
|
-
admin: string;
|
|
9811
|
-
clerk: string;
|
|
9812
|
-
treasury: string;
|
|
9813
|
-
authTokenId: string;
|
|
9814
|
-
authTokenType: number;
|
|
9815
|
-
voucherCloneAddress: string;
|
|
9816
|
-
active: boolean;
|
|
9817
|
-
};
|
|
9818
|
-
buyer: {
|
|
9819
|
-
__typename?: "Buyer";
|
|
9820
|
-
id: string;
|
|
9821
|
-
wallet: string;
|
|
9822
|
-
active: boolean;
|
|
9823
|
-
};
|
|
9824
9979
|
} | null;
|
|
9825
9980
|
}>;
|
|
9826
9981
|
};
|
|
@@ -9873,8 +10028,11 @@ export type ExchangeFieldsFragment = {
|
|
|
9873
10028
|
resolutionPeriodDuration: string;
|
|
9874
10029
|
metadataUri: string;
|
|
9875
10030
|
metadataHash: string;
|
|
10031
|
+
voided: boolean;
|
|
9876
10032
|
voidedAt?: string | null;
|
|
9877
10033
|
disputeResolverId: string;
|
|
10034
|
+
numberOfCommits: string;
|
|
10035
|
+
numberOfRedemptions: string;
|
|
9878
10036
|
seller: {
|
|
9879
10037
|
__typename?: "Seller";
|
|
9880
10038
|
id: string;
|
|
@@ -10113,39 +10271,6 @@ export type ExchangeFieldsFragment = {
|
|
|
10113
10271
|
decidedDate?: string | null;
|
|
10114
10272
|
refusedDate?: string | null;
|
|
10115
10273
|
timeout: string;
|
|
10116
|
-
exchange: {
|
|
10117
|
-
__typename?: "Exchange";
|
|
10118
|
-
id: string;
|
|
10119
|
-
disputed: boolean;
|
|
10120
|
-
state: ExchangeState;
|
|
10121
|
-
committedDate: string;
|
|
10122
|
-
finalizedDate?: string | null;
|
|
10123
|
-
validUntilDate: string;
|
|
10124
|
-
redeemedDate?: string | null;
|
|
10125
|
-
revokedDate?: string | null;
|
|
10126
|
-
cancelledDate?: string | null;
|
|
10127
|
-
completedDate?: string | null;
|
|
10128
|
-
disputedDate?: string | null;
|
|
10129
|
-
expired: boolean;
|
|
10130
|
-
};
|
|
10131
|
-
seller: {
|
|
10132
|
-
__typename?: "Seller";
|
|
10133
|
-
id: string;
|
|
10134
|
-
operator: string;
|
|
10135
|
-
admin: string;
|
|
10136
|
-
clerk: string;
|
|
10137
|
-
treasury: string;
|
|
10138
|
-
authTokenId: string;
|
|
10139
|
-
authTokenType: number;
|
|
10140
|
-
voucherCloneAddress: string;
|
|
10141
|
-
active: boolean;
|
|
10142
|
-
};
|
|
10143
|
-
buyer: {
|
|
10144
|
-
__typename?: "Buyer";
|
|
10145
|
-
id: string;
|
|
10146
|
-
wallet: string;
|
|
10147
|
-
active: boolean;
|
|
10148
|
-
};
|
|
10149
10274
|
} | null;
|
|
10150
10275
|
};
|
|
10151
10276
|
|
|
@@ -10163,6 +10288,21 @@ export type BaseExchangeFieldsFragment = {
|
|
|
10163
10288
|
completedDate?: string | null;
|
|
10164
10289
|
disputedDate?: string | null;
|
|
10165
10290
|
expired: boolean;
|
|
10291
|
+
dispute?: {
|
|
10292
|
+
__typename?: "Dispute";
|
|
10293
|
+
id: string;
|
|
10294
|
+
exchangeId: string;
|
|
10295
|
+
state: DisputeState;
|
|
10296
|
+
buyerPercent: string;
|
|
10297
|
+
disputedDate: string;
|
|
10298
|
+
escalatedDate?: string | null;
|
|
10299
|
+
finalizedDate?: string | null;
|
|
10300
|
+
retractedDate?: string | null;
|
|
10301
|
+
resolvedDate?: string | null;
|
|
10302
|
+
decidedDate?: string | null;
|
|
10303
|
+
refusedDate?: string | null;
|
|
10304
|
+
timeout: string;
|
|
10305
|
+
} | null;
|
|
10166
10306
|
};
|
|
10167
10307
|
|
|
10168
10308
|
export type GetFundsByIdQueryVariables = Exact<{
|
|
@@ -10260,6 +10400,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
10260
10400
|
validFromDate: string;
|
|
10261
10401
|
validUntilDate: string;
|
|
10262
10402
|
quantityAvailable: string;
|
|
10403
|
+
numberOfCommits: string;
|
|
10404
|
+
numberOfRedemptions: string;
|
|
10263
10405
|
attributes?: Array<{
|
|
10264
10406
|
__typename?: "MetadataAttribute";
|
|
10265
10407
|
traitType: string;
|
|
@@ -10287,8 +10429,11 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
10287
10429
|
resolutionPeriodDuration: string;
|
|
10288
10430
|
metadataUri: string;
|
|
10289
10431
|
metadataHash: string;
|
|
10432
|
+
voided: boolean;
|
|
10290
10433
|
voidedAt?: string | null;
|
|
10291
10434
|
disputeResolverId: string;
|
|
10435
|
+
numberOfCommits: string;
|
|
10436
|
+
numberOfRedemptions: string;
|
|
10292
10437
|
seller: {
|
|
10293
10438
|
__typename?: "Seller";
|
|
10294
10439
|
id: string;
|
|
@@ -10564,6 +10709,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
10564
10709
|
validFromDate: string;
|
|
10565
10710
|
validUntilDate: string;
|
|
10566
10711
|
quantityAvailable: string;
|
|
10712
|
+
numberOfCommits: string;
|
|
10713
|
+
numberOfRedemptions: string;
|
|
10567
10714
|
attributes?: Array<{
|
|
10568
10715
|
__typename?: "MetadataAttribute";
|
|
10569
10716
|
traitType: string;
|
|
@@ -10591,8 +10738,11 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
10591
10738
|
resolutionPeriodDuration: string;
|
|
10592
10739
|
metadataUri: string;
|
|
10593
10740
|
metadataHash: string;
|
|
10741
|
+
voided: boolean;
|
|
10594
10742
|
voidedAt?: string | null;
|
|
10595
10743
|
disputeResolverId: string;
|
|
10744
|
+
numberOfCommits: string;
|
|
10745
|
+
numberOfRedemptions: string;
|
|
10596
10746
|
seller: {
|
|
10597
10747
|
__typename?: "Seller";
|
|
10598
10748
|
id: string;
|
|
@@ -10858,6 +11008,8 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
10858
11008
|
validFromDate: string;
|
|
10859
11009
|
validUntilDate: string;
|
|
10860
11010
|
quantityAvailable: string;
|
|
11011
|
+
numberOfCommits: string;
|
|
11012
|
+
numberOfRedemptions: string;
|
|
10861
11013
|
attributes?: Array<{
|
|
10862
11014
|
__typename?: "MetadataAttribute";
|
|
10863
11015
|
traitType: string;
|
|
@@ -10885,8 +11037,11 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
10885
11037
|
resolutionPeriodDuration: string;
|
|
10886
11038
|
metadataUri: string;
|
|
10887
11039
|
metadataHash: string;
|
|
11040
|
+
voided: boolean;
|
|
10888
11041
|
voidedAt?: string | null;
|
|
10889
11042
|
disputeResolverId: string;
|
|
11043
|
+
numberOfCommits: string;
|
|
11044
|
+
numberOfRedemptions: string;
|
|
10890
11045
|
seller: {
|
|
10891
11046
|
__typename?: "Seller";
|
|
10892
11047
|
id: string;
|
|
@@ -11147,6 +11302,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
11147
11302
|
validFromDate: string;
|
|
11148
11303
|
validUntilDate: string;
|
|
11149
11304
|
quantityAvailable: string;
|
|
11305
|
+
numberOfCommits: string;
|
|
11306
|
+
numberOfRedemptions: string;
|
|
11150
11307
|
attributes?: Array<{
|
|
11151
11308
|
__typename?: "MetadataAttribute";
|
|
11152
11309
|
traitType: string;
|
|
@@ -11174,8 +11331,11 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
11174
11331
|
resolutionPeriodDuration: string;
|
|
11175
11332
|
metadataUri: string;
|
|
11176
11333
|
metadataHash: string;
|
|
11334
|
+
voided: boolean;
|
|
11177
11335
|
voidedAt?: string | null;
|
|
11178
11336
|
disputeResolverId: string;
|
|
11337
|
+
numberOfCommits: string;
|
|
11338
|
+
numberOfRedemptions: string;
|
|
11179
11339
|
seller: {
|
|
11180
11340
|
__typename?: "Seller";
|
|
11181
11341
|
id: string;
|
|
@@ -11481,6 +11641,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
11481
11641
|
validFromDate: string;
|
|
11482
11642
|
validUntilDate: string;
|
|
11483
11643
|
quantityAvailable: string;
|
|
11644
|
+
numberOfCommits: string;
|
|
11645
|
+
numberOfRedemptions: string;
|
|
11484
11646
|
uuid: string;
|
|
11485
11647
|
attributes?: Array<{
|
|
11486
11648
|
__typename?: "MetadataAttribute";
|
|
@@ -11509,8 +11671,11 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
11509
11671
|
resolutionPeriodDuration: string;
|
|
11510
11672
|
metadataUri: string;
|
|
11511
11673
|
metadataHash: string;
|
|
11674
|
+
voided: boolean;
|
|
11512
11675
|
voidedAt?: string | null;
|
|
11513
11676
|
disputeResolverId: string;
|
|
11677
|
+
numberOfCommits: string;
|
|
11678
|
+
numberOfRedemptions: string;
|
|
11514
11679
|
seller: {
|
|
11515
11680
|
__typename?: "Seller";
|
|
11516
11681
|
id: string;
|
|
@@ -11910,6 +12075,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
11910
12075
|
validFromDate: string;
|
|
11911
12076
|
validUntilDate: string;
|
|
11912
12077
|
quantityAvailable: string;
|
|
12078
|
+
numberOfCommits: string;
|
|
12079
|
+
numberOfRedemptions: string;
|
|
11913
12080
|
uuid: string;
|
|
11914
12081
|
attributes?: Array<{
|
|
11915
12082
|
__typename?: "MetadataAttribute";
|
|
@@ -11938,8 +12105,11 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
11938
12105
|
resolutionPeriodDuration: string;
|
|
11939
12106
|
metadataUri: string;
|
|
11940
12107
|
metadataHash: string;
|
|
12108
|
+
voided: boolean;
|
|
11941
12109
|
voidedAt?: string | null;
|
|
11942
12110
|
disputeResolverId: string;
|
|
12111
|
+
numberOfCommits: string;
|
|
12112
|
+
numberOfRedemptions: string;
|
|
11943
12113
|
seller: {
|
|
11944
12114
|
__typename?: "Seller";
|
|
11945
12115
|
id: string;
|
|
@@ -12329,6 +12499,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
12329
12499
|
validFromDate: string;
|
|
12330
12500
|
validUntilDate: string;
|
|
12331
12501
|
quantityAvailable: string;
|
|
12502
|
+
numberOfCommits: string;
|
|
12503
|
+
numberOfRedemptions: string;
|
|
12332
12504
|
uuid: string;
|
|
12333
12505
|
attributes?: Array<{
|
|
12334
12506
|
__typename?: "MetadataAttribute";
|
|
@@ -12357,8 +12529,11 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
12357
12529
|
resolutionPeriodDuration: string;
|
|
12358
12530
|
metadataUri: string;
|
|
12359
12531
|
metadataHash: string;
|
|
12532
|
+
voided: boolean;
|
|
12360
12533
|
voidedAt?: string | null;
|
|
12361
12534
|
disputeResolverId: string;
|
|
12535
|
+
numberOfCommits: string;
|
|
12536
|
+
numberOfRedemptions: string;
|
|
12362
12537
|
seller: {
|
|
12363
12538
|
__typename?: "Seller";
|
|
12364
12539
|
id: string;
|
|
@@ -12743,6 +12918,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12743
12918
|
validFromDate: string;
|
|
12744
12919
|
validUntilDate: string;
|
|
12745
12920
|
quantityAvailable: string;
|
|
12921
|
+
numberOfCommits: string;
|
|
12922
|
+
numberOfRedemptions: string;
|
|
12746
12923
|
uuid: string;
|
|
12747
12924
|
attributes?: Array<{
|
|
12748
12925
|
__typename?: "MetadataAttribute";
|
|
@@ -12771,8 +12948,11 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12771
12948
|
resolutionPeriodDuration: string;
|
|
12772
12949
|
metadataUri: string;
|
|
12773
12950
|
metadataHash: string;
|
|
12951
|
+
voided: boolean;
|
|
12774
12952
|
voidedAt?: string | null;
|
|
12775
12953
|
disputeResolverId: string;
|
|
12954
|
+
numberOfCommits: string;
|
|
12955
|
+
numberOfRedemptions: string;
|
|
12776
12956
|
seller: {
|
|
12777
12957
|
__typename?: "Seller";
|
|
12778
12958
|
id: string;
|
|
@@ -13408,8 +13588,11 @@ export type GetOfferByIdQueryQuery = {
|
|
|
13408
13588
|
resolutionPeriodDuration: string;
|
|
13409
13589
|
metadataUri: string;
|
|
13410
13590
|
metadataHash: string;
|
|
13591
|
+
voided: boolean;
|
|
13411
13592
|
voidedAt?: string | null;
|
|
13412
13593
|
disputeResolverId: string;
|
|
13594
|
+
numberOfCommits: string;
|
|
13595
|
+
numberOfRedemptions: string;
|
|
13413
13596
|
exchanges?: Array<{
|
|
13414
13597
|
__typename?: "Exchange";
|
|
13415
13598
|
id: string;
|
|
@@ -13424,6 +13607,21 @@ export type GetOfferByIdQueryQuery = {
|
|
|
13424
13607
|
completedDate?: string | null;
|
|
13425
13608
|
disputedDate?: string | null;
|
|
13426
13609
|
expired: boolean;
|
|
13610
|
+
dispute?: {
|
|
13611
|
+
__typename?: "Dispute";
|
|
13612
|
+
id: string;
|
|
13613
|
+
exchangeId: string;
|
|
13614
|
+
state: DisputeState;
|
|
13615
|
+
buyerPercent: string;
|
|
13616
|
+
disputedDate: string;
|
|
13617
|
+
escalatedDate?: string | null;
|
|
13618
|
+
finalizedDate?: string | null;
|
|
13619
|
+
retractedDate?: string | null;
|
|
13620
|
+
resolvedDate?: string | null;
|
|
13621
|
+
decidedDate?: string | null;
|
|
13622
|
+
refusedDate?: string | null;
|
|
13623
|
+
timeout: string;
|
|
13624
|
+
} | null;
|
|
13427
13625
|
}>;
|
|
13428
13626
|
seller: {
|
|
13429
13627
|
__typename?: "Seller";
|
|
@@ -13688,8 +13886,11 @@ export type GetOffersQueryQuery = {
|
|
|
13688
13886
|
resolutionPeriodDuration: string;
|
|
13689
13887
|
metadataUri: string;
|
|
13690
13888
|
metadataHash: string;
|
|
13889
|
+
voided: boolean;
|
|
13691
13890
|
voidedAt?: string | null;
|
|
13692
13891
|
disputeResolverId: string;
|
|
13892
|
+
numberOfCommits: string;
|
|
13893
|
+
numberOfRedemptions: string;
|
|
13693
13894
|
exchanges?: Array<{
|
|
13694
13895
|
__typename?: "Exchange";
|
|
13695
13896
|
id: string;
|
|
@@ -13704,6 +13905,21 @@ export type GetOffersQueryQuery = {
|
|
|
13704
13905
|
completedDate?: string | null;
|
|
13705
13906
|
disputedDate?: string | null;
|
|
13706
13907
|
expired: boolean;
|
|
13908
|
+
dispute?: {
|
|
13909
|
+
__typename?: "Dispute";
|
|
13910
|
+
id: string;
|
|
13911
|
+
exchangeId: string;
|
|
13912
|
+
state: DisputeState;
|
|
13913
|
+
buyerPercent: string;
|
|
13914
|
+
disputedDate: string;
|
|
13915
|
+
escalatedDate?: string | null;
|
|
13916
|
+
finalizedDate?: string | null;
|
|
13917
|
+
retractedDate?: string | null;
|
|
13918
|
+
resolvedDate?: string | null;
|
|
13919
|
+
decidedDate?: string | null;
|
|
13920
|
+
refusedDate?: string | null;
|
|
13921
|
+
timeout: string;
|
|
13922
|
+
} | null;
|
|
13707
13923
|
}>;
|
|
13708
13924
|
seller: {
|
|
13709
13925
|
__typename?: "Seller";
|
|
@@ -13952,8 +14168,11 @@ export type OfferFieldsFragment = {
|
|
|
13952
14168
|
resolutionPeriodDuration: string;
|
|
13953
14169
|
metadataUri: string;
|
|
13954
14170
|
metadataHash: string;
|
|
14171
|
+
voided: boolean;
|
|
13955
14172
|
voidedAt?: string | null;
|
|
13956
14173
|
disputeResolverId: string;
|
|
14174
|
+
numberOfCommits: string;
|
|
14175
|
+
numberOfRedemptions: string;
|
|
13957
14176
|
exchanges?: Array<{
|
|
13958
14177
|
__typename?: "Exchange";
|
|
13959
14178
|
id: string;
|
|
@@ -13968,6 +14187,21 @@ export type OfferFieldsFragment = {
|
|
|
13968
14187
|
completedDate?: string | null;
|
|
13969
14188
|
disputedDate?: string | null;
|
|
13970
14189
|
expired: boolean;
|
|
14190
|
+
dispute?: {
|
|
14191
|
+
__typename?: "Dispute";
|
|
14192
|
+
id: string;
|
|
14193
|
+
exchangeId: string;
|
|
14194
|
+
state: DisputeState;
|
|
14195
|
+
buyerPercent: string;
|
|
14196
|
+
disputedDate: string;
|
|
14197
|
+
escalatedDate?: string | null;
|
|
14198
|
+
finalizedDate?: string | null;
|
|
14199
|
+
retractedDate?: string | null;
|
|
14200
|
+
resolvedDate?: string | null;
|
|
14201
|
+
decidedDate?: string | null;
|
|
14202
|
+
refusedDate?: string | null;
|
|
14203
|
+
timeout: string;
|
|
14204
|
+
} | null;
|
|
13971
14205
|
}>;
|
|
13972
14206
|
seller: {
|
|
13973
14207
|
__typename?: "Seller";
|
|
@@ -14215,8 +14449,11 @@ export type BaseOfferFieldsFragment = {
|
|
|
14215
14449
|
resolutionPeriodDuration: string;
|
|
14216
14450
|
metadataUri: string;
|
|
14217
14451
|
metadataHash: string;
|
|
14452
|
+
voided: boolean;
|
|
14218
14453
|
voidedAt?: string | null;
|
|
14219
14454
|
disputeResolverId: string;
|
|
14455
|
+
numberOfCommits: string;
|
|
14456
|
+
numberOfRedemptions: string;
|
|
14220
14457
|
seller: {
|
|
14221
14458
|
__typename?: "Seller";
|
|
14222
14459
|
id: string;
|
|
@@ -14707,8 +14944,11 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
14707
14944
|
resolutionPeriodDuration
|
|
14708
14945
|
metadataUri
|
|
14709
14946
|
metadataHash
|
|
14947
|
+
voided
|
|
14710
14948
|
voidedAt
|
|
14711
14949
|
disputeResolverId
|
|
14950
|
+
numberOfCommits
|
|
14951
|
+
numberOfRedemptions
|
|
14712
14952
|
seller {
|
|
14713
14953
|
...BaseSellerFields
|
|
14714
14954
|
}
|
|
@@ -14768,6 +15008,22 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
14768
15008
|
${BaseProductV1ExchangePolicyFieldsFragmentDoc}
|
|
14769
15009
|
${BaseProductV1ShippingOptionFieldsFragmentDoc}
|
|
14770
15010
|
`;
|
|
15011
|
+
export const BaseDisputeFieldsFragmentDoc = gql`
|
|
15012
|
+
fragment BaseDisputeFields on Dispute {
|
|
15013
|
+
id
|
|
15014
|
+
exchangeId
|
|
15015
|
+
state
|
|
15016
|
+
buyerPercent
|
|
15017
|
+
disputedDate
|
|
15018
|
+
escalatedDate
|
|
15019
|
+
finalizedDate
|
|
15020
|
+
retractedDate
|
|
15021
|
+
resolvedDate
|
|
15022
|
+
decidedDate
|
|
15023
|
+
refusedDate
|
|
15024
|
+
timeout
|
|
15025
|
+
}
|
|
15026
|
+
`;
|
|
14771
15027
|
export const BaseExchangeFieldsFragmentDoc = gql`
|
|
14772
15028
|
fragment BaseExchangeFields on Exchange {
|
|
14773
15029
|
id
|
|
@@ -14782,7 +15038,11 @@ export const BaseExchangeFieldsFragmentDoc = gql`
|
|
|
14782
15038
|
completedDate
|
|
14783
15039
|
disputedDate
|
|
14784
15040
|
expired
|
|
15041
|
+
dispute {
|
|
15042
|
+
...BaseDisputeFields
|
|
15043
|
+
}
|
|
14785
15044
|
}
|
|
15045
|
+
${BaseDisputeFieldsFragmentDoc}
|
|
14786
15046
|
`;
|
|
14787
15047
|
export const SellerFieldsFragmentDoc = gql`
|
|
14788
15048
|
fragment SellerFields on Seller {
|
|
@@ -14869,20 +15129,9 @@ export const DisputeResolverFieldsFragmentDoc = gql`
|
|
|
14869
15129
|
${BaseDisputeResolverFieldsFragmentDoc}
|
|
14870
15130
|
${BaseOfferFieldsFragmentDoc}
|
|
14871
15131
|
`;
|
|
14872
|
-
export const
|
|
14873
|
-
fragment
|
|
14874
|
-
|
|
14875
|
-
exchangeId
|
|
14876
|
-
state
|
|
14877
|
-
buyerPercent
|
|
14878
|
-
disputedDate
|
|
14879
|
-
escalatedDate
|
|
14880
|
-
finalizedDate
|
|
14881
|
-
retractedDate
|
|
14882
|
-
resolvedDate
|
|
14883
|
-
decidedDate
|
|
14884
|
-
refusedDate
|
|
14885
|
-
timeout
|
|
15132
|
+
export const DisputeFieldsFragmentDoc = gql`
|
|
15133
|
+
fragment DisputeFields on Dispute {
|
|
15134
|
+
...BaseDisputeFields
|
|
14886
15135
|
exchange {
|
|
14887
15136
|
...BaseExchangeFields
|
|
14888
15137
|
}
|
|
@@ -14893,16 +15142,11 @@ export const BaseDisputeFieldsFragmentDoc = gql`
|
|
|
14893
15142
|
...BaseBuyerFields
|
|
14894
15143
|
}
|
|
14895
15144
|
}
|
|
15145
|
+
${BaseDisputeFieldsFragmentDoc}
|
|
14896
15146
|
${BaseExchangeFieldsFragmentDoc}
|
|
14897
15147
|
${BaseSellerFieldsFragmentDoc}
|
|
14898
15148
|
${BaseBuyerFieldsFragmentDoc}
|
|
14899
15149
|
`;
|
|
14900
|
-
export const DisputeFieldsFragmentDoc = gql`
|
|
14901
|
-
fragment DisputeFields on Dispute {
|
|
14902
|
-
...BaseDisputeFields
|
|
14903
|
-
}
|
|
14904
|
-
${BaseDisputeFieldsFragmentDoc}
|
|
14905
|
-
`;
|
|
14906
15150
|
export const ExchangeTokenFieldsFragmentDoc = gql`
|
|
14907
15151
|
fragment ExchangeTokenFields on ExchangeToken {
|
|
14908
15152
|
...BaseExchangeTokenFields
|
|
@@ -14941,15 +15185,11 @@ export const ExchangeFieldsFragmentDoc = gql`
|
|
|
14941
15185
|
offer {
|
|
14942
15186
|
...BaseOfferFields
|
|
14943
15187
|
}
|
|
14944
|
-
dispute {
|
|
14945
|
-
...BaseDisputeFields
|
|
14946
|
-
}
|
|
14947
15188
|
}
|
|
14948
15189
|
${BaseExchangeFieldsFragmentDoc}
|
|
14949
15190
|
${BaseBuyerFieldsFragmentDoc}
|
|
14950
15191
|
${BaseSellerFieldsFragmentDoc}
|
|
14951
15192
|
${BaseOfferFieldsFragmentDoc}
|
|
14952
|
-
${BaseDisputeFieldsFragmentDoc}
|
|
14953
15193
|
`;
|
|
14954
15194
|
export const BaseBaseMetadataEntityFieldsFragmentDoc = gql`
|
|
14955
15195
|
fragment BaseBaseMetadataEntityFields on BaseMetadataEntity {
|
|
@@ -14979,6 +15219,8 @@ export const BaseBaseMetadataEntityFieldsFragmentDoc = gql`
|
|
|
14979
15219
|
validFromDate
|
|
14980
15220
|
validUntilDate
|
|
14981
15221
|
quantityAvailable
|
|
15222
|
+
numberOfCommits
|
|
15223
|
+
numberOfRedemptions
|
|
14982
15224
|
}
|
|
14983
15225
|
${BaseOfferFieldsFragmentDoc}
|
|
14984
15226
|
${BaseSellerFieldsFragmentDoc}
|
|
@@ -15018,6 +15260,8 @@ export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
|
15018
15260
|
validFromDate
|
|
15019
15261
|
validUntilDate
|
|
15020
15262
|
quantityAvailable
|
|
15263
|
+
numberOfCommits
|
|
15264
|
+
numberOfRedemptions
|
|
15021
15265
|
uuid
|
|
15022
15266
|
product {
|
|
15023
15267
|
...BaseProductV1ProductFields
|