@bosonprotocol/core-sdk 1.16.0-alpha.21 → 1.16.0-alpha.3
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/README.md +104 -3
- package/dist/cjs/core-sdk.d.ts +1 -32
- package/dist/cjs/core-sdk.d.ts.map +1 -1
- package/dist/cjs/core-sdk.js +1 -66
- package/dist/cjs/core-sdk.js.map +1 -1
- package/dist/cjs/exchanges/handler.d.ts +0 -3
- package/dist/cjs/exchanges/handler.d.ts.map +1 -1
- package/dist/cjs/exchanges/handler.js +11 -34
- package/dist/cjs/exchanges/handler.js.map +1 -1
- package/dist/cjs/exchanges/interface.d.ts +0 -1
- package/dist/cjs/exchanges/interface.d.ts.map +1 -1
- package/dist/cjs/exchanges/interface.js +1 -7
- package/dist/cjs/exchanges/interface.js.map +1 -1
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/meta-tx/handler.d.ts +1 -20
- package/dist/cjs/meta-tx/handler.d.ts.map +1 -1
- package/dist/cjs/meta-tx/handler.js +1 -61
- package/dist/cjs/meta-tx/handler.js.map +1 -1
- package/dist/cjs/subgraph.d.ts +189 -655
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +40 -55
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/core-sdk.d.ts +1 -32
- package/dist/esm/core-sdk.d.ts.map +1 -1
- package/dist/esm/core-sdk.js +1 -65
- package/dist/esm/core-sdk.js.map +1 -1
- package/dist/esm/exchanges/handler.d.ts +0 -3
- package/dist/esm/exchanges/handler.d.ts.map +1 -1
- package/dist/esm/exchanges/handler.js +12 -32
- package/dist/esm/exchanges/handler.js.map +1 -1
- package/dist/esm/exchanges/interface.d.ts +0 -1
- package/dist/esm/exchanges/interface.d.ts.map +1 -1
- package/dist/esm/exchanges/interface.js +0 -5
- package/dist/esm/exchanges/interface.js.map +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/meta-tx/handler.d.ts +1 -20
- package/dist/esm/meta-tx/handler.d.ts.map +1 -1
- package/dist/esm/meta-tx/handler.js +0 -56
- package/dist/esm/meta-tx/handler.js.map +1 -1
- package/dist/esm/subgraph.d.ts +189 -655
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +39 -54
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/core-sdk.ts +2 -101
- package/src/disputes/queries.graphql +9 -9
- package/src/exchanges/handler.ts +20 -50
- package/src/exchanges/interface.ts +0 -6
- package/src/exchanges/queries.graphql +9 -9
- package/src/index.ts +1 -2
- package/src/meta-tx/handler.ts +2 -84
- package/src/metadata/base.graphql +0 -2
- package/src/metadata/product-v1.graphql +1 -2
- package/src/offers/queries.graphql +0 -3
- package/src/subgraph.ts +216 -689
- package/dist/cjs/meta-tx/biconomy.d.ts +0 -45
- package/dist/cjs/meta-tx/biconomy.d.ts.map +0 -1
- package/dist/cjs/meta-tx/biconomy.js +0 -76
- package/dist/cjs/meta-tx/biconomy.js.map +0 -1
- package/dist/cjs/utils/errors.d.ts +0 -5
- package/dist/cjs/utils/errors.d.ts.map +0 -1
- package/dist/cjs/utils/errors.js +0 -11
- package/dist/cjs/utils/errors.js.map +0 -1
- package/dist/esm/meta-tx/biconomy.d.ts +0 -45
- package/dist/esm/meta-tx/biconomy.d.ts.map +0 -1
- package/dist/esm/meta-tx/biconomy.js +0 -60
- package/dist/esm/meta-tx/biconomy.js.map +0 -1
- package/dist/esm/utils/errors.d.ts +0 -5
- package/dist/esm/utils/errors.d.ts.map +0 -1
- package/dist/esm/utils/errors.js +0 -8
- package/dist/esm/utils/errors.js.map +0 -1
- package/src/meta-tx/biconomy.ts +0 -129
- package/src/utils/errors.ts +0 -5
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -75,8 +75,6 @@ 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"];
|
|
80
78
|
/**
|
|
81
79
|
* References to entities
|
|
82
80
|
*
|
|
@@ -221,22 +219,6 @@ export declare type BaseMetadataEntity_Filter = {
|
|
|
221
219
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
222
220
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
223
221
|
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"]>>;
|
|
240
222
|
offer?: InputMaybe<Scalars["String"]>;
|
|
241
223
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
242
224
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -339,8 +321,6 @@ export declare enum BaseMetadataEntity_OrderBy {
|
|
|
339
321
|
Id = "id",
|
|
340
322
|
Image = "image",
|
|
341
323
|
Name = "name",
|
|
342
|
-
NumberOfCommits = "numberOfCommits",
|
|
343
|
-
NumberOfRedemptions = "numberOfRedemptions",
|
|
344
324
|
Offer = "offer",
|
|
345
325
|
QuantityAvailable = "quantityAvailable",
|
|
346
326
|
SchemaUrl = "schemaUrl",
|
|
@@ -1433,8 +1413,6 @@ export declare type MetadataInterface = {
|
|
|
1433
1413
|
id: Scalars["ID"];
|
|
1434
1414
|
image: Scalars["String"];
|
|
1435
1415
|
name: Scalars["String"];
|
|
1436
|
-
numberOfCommits: Scalars["BigInt"];
|
|
1437
|
-
numberOfRedemptions: Scalars["BigInt"];
|
|
1438
1416
|
/**
|
|
1439
1417
|
* References to entities
|
|
1440
1418
|
*
|
|
@@ -1578,22 +1556,6 @@ export declare type MetadataInterface_Filter = {
|
|
|
1578
1556
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1579
1557
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1580
1558
|
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"]>>;
|
|
1597
1559
|
offer?: InputMaybe<Scalars["String"]>;
|
|
1598
1560
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
1599
1561
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1696,8 +1658,6 @@ export declare enum MetadataInterface_OrderBy {
|
|
|
1696
1658
|
Id = "id",
|
|
1697
1659
|
Image = "image",
|
|
1698
1660
|
Name = "name",
|
|
1699
|
-
NumberOfCommits = "numberOfCommits",
|
|
1700
|
-
NumberOfRedemptions = "numberOfRedemptions",
|
|
1701
1661
|
Offer = "offer",
|
|
1702
1662
|
QuantityAvailable = "quantityAvailable",
|
|
1703
1663
|
SchemaUrl = "schemaUrl",
|
|
@@ -1732,9 +1692,6 @@ export declare type Offer = {
|
|
|
1732
1692
|
metadata?: Maybe<MetadataInterface>;
|
|
1733
1693
|
metadataHash: Scalars["String"];
|
|
1734
1694
|
metadataUri: Scalars["String"];
|
|
1735
|
-
/** Stats */
|
|
1736
|
-
numberOfCommits: Scalars["BigInt"];
|
|
1737
|
-
numberOfRedemptions: Scalars["BigInt"];
|
|
1738
1695
|
price: Scalars["BigInt"];
|
|
1739
1696
|
protocolFee: Scalars["BigInt"];
|
|
1740
1697
|
quantityAvailable: Scalars["BigInt"];
|
|
@@ -1940,22 +1897,6 @@ export declare type Offer_Filter = {
|
|
|
1940
1897
|
metadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1941
1898
|
metadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1942
1899
|
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"]>>;
|
|
1959
1900
|
price?: InputMaybe<Scalars["BigInt"]>;
|
|
1960
1901
|
price_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1961
1902
|
price_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -2100,8 +2041,6 @@ export declare enum Offer_OrderBy {
|
|
|
2100
2041
|
Metadata = "metadata",
|
|
2101
2042
|
MetadataHash = "metadataHash",
|
|
2102
2043
|
MetadataUri = "metadataUri",
|
|
2103
|
-
NumberOfCommits = "numberOfCommits",
|
|
2104
|
-
NumberOfRedemptions = "numberOfRedemptions",
|
|
2105
2044
|
Price = "price",
|
|
2106
2045
|
ProtocolFee = "protocolFee",
|
|
2107
2046
|
QuantityAvailable = "quantityAvailable",
|
|
@@ -2393,8 +2332,6 @@ export declare type ProductV1MetadataEntity = MetadataInterface & {
|
|
|
2393
2332
|
id: Scalars["ID"];
|
|
2394
2333
|
image: Scalars["String"];
|
|
2395
2334
|
name: Scalars["String"];
|
|
2396
|
-
numberOfCommits: Scalars["BigInt"];
|
|
2397
|
-
numberOfRedemptions: Scalars["BigInt"];
|
|
2398
2335
|
/**
|
|
2399
2336
|
* References to entities
|
|
2400
2337
|
*
|
|
@@ -2576,22 +2513,6 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
2576
2513
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2577
2514
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2578
2515
|
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"]>>;
|
|
2595
2516
|
offer?: InputMaybe<Scalars["String"]>;
|
|
2596
2517
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
2597
2518
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2801,8 +2722,6 @@ export declare enum ProductV1MetadataEntity_OrderBy {
|
|
|
2801
2722
|
Id = "id",
|
|
2802
2723
|
Image = "image",
|
|
2803
2724
|
Name = "name",
|
|
2804
|
-
NumberOfCommits = "numberOfCommits",
|
|
2805
|
-
NumberOfRedemptions = "numberOfRedemptions",
|
|
2806
2725
|
Offer = "offer",
|
|
2807
2726
|
Product = "product",
|
|
2808
2727
|
ProductOverrides = "productOverrides",
|
|
@@ -5679,11 +5598,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
5679
5598
|
resolutionPeriodDuration: string;
|
|
5680
5599
|
metadataUri: string;
|
|
5681
5600
|
metadataHash: string;
|
|
5682
|
-
voided: boolean;
|
|
5683
5601
|
voidedAt?: string | null;
|
|
5684
5602
|
disputeResolverId: string;
|
|
5685
|
-
numberOfCommits: string;
|
|
5686
|
-
numberOfRedemptions: string;
|
|
5687
5603
|
seller: {
|
|
5688
5604
|
__typename?: "Seller";
|
|
5689
5605
|
id: string;
|
|
@@ -5923,39 +5839,6 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
5923
5839
|
completedDate?: string | null;
|
|
5924
5840
|
disputedDate?: string | null;
|
|
5925
5841
|
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;
|
|
5941
|
-
buyer: {
|
|
5942
|
-
__typename?: "Buyer";
|
|
5943
|
-
id: string;
|
|
5944
|
-
wallet: string;
|
|
5945
|
-
active: boolean;
|
|
5946
|
-
};
|
|
5947
|
-
seller: {
|
|
5948
|
-
__typename?: "Seller";
|
|
5949
|
-
id: string;
|
|
5950
|
-
operator: string;
|
|
5951
|
-
admin: string;
|
|
5952
|
-
clerk: string;
|
|
5953
|
-
treasury: string;
|
|
5954
|
-
authTokenId: string;
|
|
5955
|
-
authTokenType: number;
|
|
5956
|
-
voucherCloneAddress: string;
|
|
5957
|
-
active: boolean;
|
|
5958
|
-
};
|
|
5959
5842
|
}>;
|
|
5960
5843
|
} | null;
|
|
5961
5844
|
};
|
|
@@ -6032,11 +5915,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
6032
5915
|
resolutionPeriodDuration: string;
|
|
6033
5916
|
metadataUri: string;
|
|
6034
5917
|
metadataHash: string;
|
|
6035
|
-
voided: boolean;
|
|
6036
5918
|
voidedAt?: string | null;
|
|
6037
5919
|
disputeResolverId: string;
|
|
6038
|
-
numberOfCommits: string;
|
|
6039
|
-
numberOfRedemptions: string;
|
|
6040
5920
|
seller: {
|
|
6041
5921
|
__typename?: "Seller";
|
|
6042
5922
|
id: string;
|
|
@@ -6276,39 +6156,6 @@ export declare type GetSellersQueryQuery = {
|
|
|
6276
6156
|
completedDate?: string | null;
|
|
6277
6157
|
disputedDate?: string | null;
|
|
6278
6158
|
expired: boolean;
|
|
6279
|
-
dispute?: {
|
|
6280
|
-
__typename?: "Dispute";
|
|
6281
|
-
id: string;
|
|
6282
|
-
exchangeId: string;
|
|
6283
|
-
state: DisputeState;
|
|
6284
|
-
buyerPercent: string;
|
|
6285
|
-
disputedDate: string;
|
|
6286
|
-
escalatedDate?: string | null;
|
|
6287
|
-
finalizedDate?: string | null;
|
|
6288
|
-
retractedDate?: string | null;
|
|
6289
|
-
resolvedDate?: string | null;
|
|
6290
|
-
decidedDate?: string | null;
|
|
6291
|
-
refusedDate?: string | null;
|
|
6292
|
-
timeout: string;
|
|
6293
|
-
} | null;
|
|
6294
|
-
buyer: {
|
|
6295
|
-
__typename?: "Buyer";
|
|
6296
|
-
id: string;
|
|
6297
|
-
wallet: string;
|
|
6298
|
-
active: boolean;
|
|
6299
|
-
};
|
|
6300
|
-
seller: {
|
|
6301
|
-
__typename?: "Seller";
|
|
6302
|
-
id: string;
|
|
6303
|
-
operator: string;
|
|
6304
|
-
admin: string;
|
|
6305
|
-
clerk: string;
|
|
6306
|
-
treasury: string;
|
|
6307
|
-
authTokenId: string;
|
|
6308
|
-
authTokenType: number;
|
|
6309
|
-
voucherCloneAddress: string;
|
|
6310
|
-
active: boolean;
|
|
6311
|
-
};
|
|
6312
6159
|
}>;
|
|
6313
6160
|
}>;
|
|
6314
6161
|
};
|
|
@@ -6362,39 +6209,6 @@ export declare type GetBuyerByIdQueryQuery = {
|
|
|
6362
6209
|
completedDate?: string | null;
|
|
6363
6210
|
disputedDate?: string | null;
|
|
6364
6211
|
expired: boolean;
|
|
6365
|
-
dispute?: {
|
|
6366
|
-
__typename?: "Dispute";
|
|
6367
|
-
id: string;
|
|
6368
|
-
exchangeId: string;
|
|
6369
|
-
state: DisputeState;
|
|
6370
|
-
buyerPercent: string;
|
|
6371
|
-
disputedDate: string;
|
|
6372
|
-
escalatedDate?: string | null;
|
|
6373
|
-
finalizedDate?: string | null;
|
|
6374
|
-
retractedDate?: string | null;
|
|
6375
|
-
resolvedDate?: string | null;
|
|
6376
|
-
decidedDate?: string | null;
|
|
6377
|
-
refusedDate?: string | null;
|
|
6378
|
-
timeout: string;
|
|
6379
|
-
} | null;
|
|
6380
|
-
buyer: {
|
|
6381
|
-
__typename?: "Buyer";
|
|
6382
|
-
id: string;
|
|
6383
|
-
wallet: string;
|
|
6384
|
-
active: boolean;
|
|
6385
|
-
};
|
|
6386
|
-
seller: {
|
|
6387
|
-
__typename?: "Seller";
|
|
6388
|
-
id: string;
|
|
6389
|
-
operator: string;
|
|
6390
|
-
admin: string;
|
|
6391
|
-
clerk: string;
|
|
6392
|
-
treasury: string;
|
|
6393
|
-
authTokenId: string;
|
|
6394
|
-
authTokenType: number;
|
|
6395
|
-
voucherCloneAddress: string;
|
|
6396
|
-
active: boolean;
|
|
6397
|
-
};
|
|
6398
6212
|
}>;
|
|
6399
6213
|
} | null;
|
|
6400
6214
|
};
|
|
@@ -6458,39 +6272,6 @@ export declare type GetBuyersQueryQuery = {
|
|
|
6458
6272
|
completedDate?: string | null;
|
|
6459
6273
|
disputedDate?: string | null;
|
|
6460
6274
|
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;
|
|
6476
|
-
buyer: {
|
|
6477
|
-
__typename?: "Buyer";
|
|
6478
|
-
id: string;
|
|
6479
|
-
wallet: string;
|
|
6480
|
-
active: boolean;
|
|
6481
|
-
};
|
|
6482
|
-
seller: {
|
|
6483
|
-
__typename?: "Seller";
|
|
6484
|
-
id: string;
|
|
6485
|
-
operator: string;
|
|
6486
|
-
admin: string;
|
|
6487
|
-
clerk: string;
|
|
6488
|
-
treasury: string;
|
|
6489
|
-
authTokenId: string;
|
|
6490
|
-
authTokenType: number;
|
|
6491
|
-
voucherCloneAddress: string;
|
|
6492
|
-
active: boolean;
|
|
6493
|
-
};
|
|
6494
6275
|
}>;
|
|
6495
6276
|
}>;
|
|
6496
6277
|
};
|
|
@@ -6537,11 +6318,8 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
6537
6318
|
resolutionPeriodDuration: string;
|
|
6538
6319
|
metadataUri: string;
|
|
6539
6320
|
metadataHash: string;
|
|
6540
|
-
voided: boolean;
|
|
6541
6321
|
voidedAt?: string | null;
|
|
6542
6322
|
disputeResolverId: string;
|
|
6543
|
-
numberOfCommits: string;
|
|
6544
|
-
numberOfRedemptions: string;
|
|
6545
6323
|
seller: {
|
|
6546
6324
|
__typename?: "Seller";
|
|
6547
6325
|
id: string;
|
|
@@ -6831,11 +6609,8 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
6831
6609
|
resolutionPeriodDuration: string;
|
|
6832
6610
|
metadataUri: string;
|
|
6833
6611
|
metadataHash: string;
|
|
6834
|
-
voided: boolean;
|
|
6835
6612
|
voidedAt?: string | null;
|
|
6836
6613
|
disputeResolverId: string;
|
|
6837
|
-
numberOfCommits: string;
|
|
6838
|
-
numberOfRedemptions: string;
|
|
6839
6614
|
seller: {
|
|
6840
6615
|
__typename?: "Seller";
|
|
6841
6616
|
id: string;
|
|
@@ -7124,11 +6899,8 @@ export declare type SellerFieldsFragment = {
|
|
|
7124
6899
|
resolutionPeriodDuration: string;
|
|
7125
6900
|
metadataUri: string;
|
|
7126
6901
|
metadataHash: string;
|
|
7127
|
-
voided: boolean;
|
|
7128
6902
|
voidedAt?: string | null;
|
|
7129
6903
|
disputeResolverId: string;
|
|
7130
|
-
numberOfCommits: string;
|
|
7131
|
-
numberOfRedemptions: string;
|
|
7132
6904
|
seller: {
|
|
7133
6905
|
__typename?: "Seller";
|
|
7134
6906
|
id: string;
|
|
@@ -7368,39 +7140,6 @@ export declare type SellerFieldsFragment = {
|
|
|
7368
7140
|
completedDate?: string | null;
|
|
7369
7141
|
disputedDate?: string | null;
|
|
7370
7142
|
expired: boolean;
|
|
7371
|
-
dispute?: {
|
|
7372
|
-
__typename?: "Dispute";
|
|
7373
|
-
id: string;
|
|
7374
|
-
exchangeId: string;
|
|
7375
|
-
state: DisputeState;
|
|
7376
|
-
buyerPercent: string;
|
|
7377
|
-
disputedDate: string;
|
|
7378
|
-
escalatedDate?: string | null;
|
|
7379
|
-
finalizedDate?: string | null;
|
|
7380
|
-
retractedDate?: string | null;
|
|
7381
|
-
resolvedDate?: string | null;
|
|
7382
|
-
decidedDate?: string | null;
|
|
7383
|
-
refusedDate?: string | null;
|
|
7384
|
-
timeout: string;
|
|
7385
|
-
} | null;
|
|
7386
|
-
buyer: {
|
|
7387
|
-
__typename?: "Buyer";
|
|
7388
|
-
id: string;
|
|
7389
|
-
wallet: string;
|
|
7390
|
-
active: boolean;
|
|
7391
|
-
};
|
|
7392
|
-
seller: {
|
|
7393
|
-
__typename?: "Seller";
|
|
7394
|
-
id: string;
|
|
7395
|
-
operator: string;
|
|
7396
|
-
admin: string;
|
|
7397
|
-
clerk: string;
|
|
7398
|
-
treasury: string;
|
|
7399
|
-
authTokenId: string;
|
|
7400
|
-
authTokenType: number;
|
|
7401
|
-
voucherCloneAddress: string;
|
|
7402
|
-
active: boolean;
|
|
7403
|
-
};
|
|
7404
7143
|
}>;
|
|
7405
7144
|
};
|
|
7406
7145
|
export declare type BaseSellerFieldsFragment = {
|
|
@@ -7448,39 +7187,6 @@ export declare type BuyerFieldsFragment = {
|
|
|
7448
7187
|
completedDate?: string | null;
|
|
7449
7188
|
disputedDate?: string | null;
|
|
7450
7189
|
expired: boolean;
|
|
7451
|
-
dispute?: {
|
|
7452
|
-
__typename?: "Dispute";
|
|
7453
|
-
id: string;
|
|
7454
|
-
exchangeId: string;
|
|
7455
|
-
state: DisputeState;
|
|
7456
|
-
buyerPercent: string;
|
|
7457
|
-
disputedDate: string;
|
|
7458
|
-
escalatedDate?: string | null;
|
|
7459
|
-
finalizedDate?: string | null;
|
|
7460
|
-
retractedDate?: string | null;
|
|
7461
|
-
resolvedDate?: string | null;
|
|
7462
|
-
decidedDate?: string | null;
|
|
7463
|
-
refusedDate?: string | null;
|
|
7464
|
-
timeout: string;
|
|
7465
|
-
} | null;
|
|
7466
|
-
buyer: {
|
|
7467
|
-
__typename?: "Buyer";
|
|
7468
|
-
id: string;
|
|
7469
|
-
wallet: string;
|
|
7470
|
-
active: boolean;
|
|
7471
|
-
};
|
|
7472
|
-
seller: {
|
|
7473
|
-
__typename?: "Seller";
|
|
7474
|
-
id: string;
|
|
7475
|
-
operator: string;
|
|
7476
|
-
admin: string;
|
|
7477
|
-
clerk: string;
|
|
7478
|
-
treasury: string;
|
|
7479
|
-
authTokenId: string;
|
|
7480
|
-
authTokenType: number;
|
|
7481
|
-
voucherCloneAddress: string;
|
|
7482
|
-
active: boolean;
|
|
7483
|
-
};
|
|
7484
7190
|
}>;
|
|
7485
7191
|
};
|
|
7486
7192
|
export declare type BaseBuyerFieldsFragment = {
|
|
@@ -7521,11 +7227,8 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
7521
7227
|
resolutionPeriodDuration: string;
|
|
7522
7228
|
metadataUri: string;
|
|
7523
7229
|
metadataHash: string;
|
|
7524
|
-
voided: boolean;
|
|
7525
7230
|
voidedAt?: string | null;
|
|
7526
7231
|
disputeResolverId: string;
|
|
7527
|
-
numberOfCommits: string;
|
|
7528
|
-
numberOfRedemptions: string;
|
|
7529
7232
|
seller: {
|
|
7530
7233
|
__typename?: "Seller";
|
|
7531
7234
|
id: string;
|
|
@@ -7856,39 +7559,6 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
7856
7559
|
completedDate?: string | null;
|
|
7857
7560
|
disputedDate?: string | null;
|
|
7858
7561
|
expired: boolean;
|
|
7859
|
-
dispute?: {
|
|
7860
|
-
__typename?: "Dispute";
|
|
7861
|
-
id: string;
|
|
7862
|
-
exchangeId: string;
|
|
7863
|
-
state: DisputeState;
|
|
7864
|
-
buyerPercent: string;
|
|
7865
|
-
disputedDate: string;
|
|
7866
|
-
escalatedDate?: string | null;
|
|
7867
|
-
finalizedDate?: string | null;
|
|
7868
|
-
retractedDate?: string | null;
|
|
7869
|
-
resolvedDate?: string | null;
|
|
7870
|
-
decidedDate?: string | null;
|
|
7871
|
-
refusedDate?: string | null;
|
|
7872
|
-
timeout: string;
|
|
7873
|
-
} | null;
|
|
7874
|
-
buyer: {
|
|
7875
|
-
__typename?: "Buyer";
|
|
7876
|
-
id: string;
|
|
7877
|
-
wallet: string;
|
|
7878
|
-
active: boolean;
|
|
7879
|
-
};
|
|
7880
|
-
seller: {
|
|
7881
|
-
__typename?: "Seller";
|
|
7882
|
-
id: string;
|
|
7883
|
-
operator: string;
|
|
7884
|
-
admin: string;
|
|
7885
|
-
clerk: string;
|
|
7886
|
-
treasury: string;
|
|
7887
|
-
authTokenId: string;
|
|
7888
|
-
authTokenType: number;
|
|
7889
|
-
voucherCloneAddress: string;
|
|
7890
|
-
active: boolean;
|
|
7891
|
-
};
|
|
7892
7562
|
};
|
|
7893
7563
|
seller: {
|
|
7894
7564
|
__typename?: "Seller";
|
|
@@ -7947,39 +7617,6 @@ export declare type GetDisputesQueryQuery = {
|
|
|
7947
7617
|
completedDate?: string | null;
|
|
7948
7618
|
disputedDate?: string | null;
|
|
7949
7619
|
expired: boolean;
|
|
7950
|
-
dispute?: {
|
|
7951
|
-
__typename?: "Dispute";
|
|
7952
|
-
id: string;
|
|
7953
|
-
exchangeId: string;
|
|
7954
|
-
state: DisputeState;
|
|
7955
|
-
buyerPercent: string;
|
|
7956
|
-
disputedDate: string;
|
|
7957
|
-
escalatedDate?: string | null;
|
|
7958
|
-
finalizedDate?: string | null;
|
|
7959
|
-
retractedDate?: string | null;
|
|
7960
|
-
resolvedDate?: string | null;
|
|
7961
|
-
decidedDate?: string | null;
|
|
7962
|
-
refusedDate?: string | null;
|
|
7963
|
-
timeout: string;
|
|
7964
|
-
} | null;
|
|
7965
|
-
buyer: {
|
|
7966
|
-
__typename?: "Buyer";
|
|
7967
|
-
id: string;
|
|
7968
|
-
wallet: string;
|
|
7969
|
-
active: boolean;
|
|
7970
|
-
};
|
|
7971
|
-
seller: {
|
|
7972
|
-
__typename?: "Seller";
|
|
7973
|
-
id: string;
|
|
7974
|
-
operator: string;
|
|
7975
|
-
admin: string;
|
|
7976
|
-
clerk: string;
|
|
7977
|
-
treasury: string;
|
|
7978
|
-
authTokenId: string;
|
|
7979
|
-
authTokenType: number;
|
|
7980
|
-
voucherCloneAddress: string;
|
|
7981
|
-
active: boolean;
|
|
7982
|
-
};
|
|
7983
7620
|
};
|
|
7984
7621
|
seller: {
|
|
7985
7622
|
__typename?: "Seller";
|
|
@@ -8029,39 +7666,6 @@ export declare type DisputeFieldsFragment = {
|
|
|
8029
7666
|
completedDate?: string | null;
|
|
8030
7667
|
disputedDate?: string | null;
|
|
8031
7668
|
expired: boolean;
|
|
8032
|
-
dispute?: {
|
|
8033
|
-
__typename?: "Dispute";
|
|
8034
|
-
id: string;
|
|
8035
|
-
exchangeId: string;
|
|
8036
|
-
state: DisputeState;
|
|
8037
|
-
buyerPercent: string;
|
|
8038
|
-
disputedDate: string;
|
|
8039
|
-
escalatedDate?: string | null;
|
|
8040
|
-
finalizedDate?: string | null;
|
|
8041
|
-
retractedDate?: string | null;
|
|
8042
|
-
resolvedDate?: string | null;
|
|
8043
|
-
decidedDate?: string | null;
|
|
8044
|
-
refusedDate?: string | null;
|
|
8045
|
-
timeout: string;
|
|
8046
|
-
} | null;
|
|
8047
|
-
buyer: {
|
|
8048
|
-
__typename?: "Buyer";
|
|
8049
|
-
id: string;
|
|
8050
|
-
wallet: string;
|
|
8051
|
-
active: boolean;
|
|
8052
|
-
};
|
|
8053
|
-
seller: {
|
|
8054
|
-
__typename?: "Seller";
|
|
8055
|
-
id: string;
|
|
8056
|
-
operator: string;
|
|
8057
|
-
admin: string;
|
|
8058
|
-
clerk: string;
|
|
8059
|
-
treasury: string;
|
|
8060
|
-
authTokenId: string;
|
|
8061
|
-
authTokenType: number;
|
|
8062
|
-
voucherCloneAddress: string;
|
|
8063
|
-
active: boolean;
|
|
8064
|
-
};
|
|
8065
7669
|
};
|
|
8066
7670
|
seller: {
|
|
8067
7671
|
__typename?: "Seller";
|
|
@@ -8096,6 +7700,39 @@ export declare type BaseDisputeFieldsFragment = {
|
|
|
8096
7700
|
decidedDate?: string | null;
|
|
8097
7701
|
refusedDate?: string | null;
|
|
8098
7702
|
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
|
+
};
|
|
8099
7736
|
};
|
|
8100
7737
|
export declare type GetExchangeTokenByIdQueryQueryVariables = Exact<{
|
|
8101
7738
|
exchangeTokenId: Scalars["ID"];
|
|
@@ -8147,11 +7784,8 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
8147
7784
|
resolutionPeriodDuration: string;
|
|
8148
7785
|
metadataUri: string;
|
|
8149
7786
|
metadataHash: string;
|
|
8150
|
-
voided: boolean;
|
|
8151
7787
|
voidedAt?: string | null;
|
|
8152
7788
|
disputeResolverId: string;
|
|
8153
|
-
numberOfCommits: string;
|
|
8154
|
-
numberOfRedemptions: string;
|
|
8155
7789
|
seller: {
|
|
8156
7790
|
__typename?: "Seller";
|
|
8157
7791
|
id: string;
|
|
@@ -8434,11 +8068,8 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
8434
8068
|
resolutionPeriodDuration: string;
|
|
8435
8069
|
metadataUri: string;
|
|
8436
8070
|
metadataHash: string;
|
|
8437
|
-
voided: boolean;
|
|
8438
8071
|
voidedAt?: string | null;
|
|
8439
8072
|
disputeResolverId: string;
|
|
8440
|
-
numberOfCommits: string;
|
|
8441
|
-
numberOfRedemptions: string;
|
|
8442
8073
|
seller: {
|
|
8443
8074
|
__typename?: "Seller";
|
|
8444
8075
|
id: string;
|
|
@@ -8700,11 +8331,8 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
8700
8331
|
resolutionPeriodDuration: string;
|
|
8701
8332
|
metadataUri: string;
|
|
8702
8333
|
metadataHash: string;
|
|
8703
|
-
voided: boolean;
|
|
8704
8334
|
voidedAt?: string | null;
|
|
8705
8335
|
disputeResolverId: string;
|
|
8706
|
-
numberOfCommits: string;
|
|
8707
|
-
numberOfRedemptions: string;
|
|
8708
8336
|
seller: {
|
|
8709
8337
|
__typename?: "Seller";
|
|
8710
8338
|
id: string;
|
|
@@ -8964,6 +8592,24 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
8964
8592
|
completedDate?: string | null;
|
|
8965
8593
|
disputedDate?: string | null;
|
|
8966
8594
|
expired: boolean;
|
|
8595
|
+
buyer: {
|
|
8596
|
+
__typename?: "Buyer";
|
|
8597
|
+
id: string;
|
|
8598
|
+
wallet: string;
|
|
8599
|
+
active: boolean;
|
|
8600
|
+
};
|
|
8601
|
+
seller: {
|
|
8602
|
+
__typename?: "Seller";
|
|
8603
|
+
id: string;
|
|
8604
|
+
operator: string;
|
|
8605
|
+
admin: string;
|
|
8606
|
+
clerk: string;
|
|
8607
|
+
treasury: string;
|
|
8608
|
+
authTokenId: string;
|
|
8609
|
+
authTokenType: number;
|
|
8610
|
+
voucherCloneAddress: string;
|
|
8611
|
+
active: boolean;
|
|
8612
|
+
};
|
|
8967
8613
|
offer: {
|
|
8968
8614
|
__typename?: "Offer";
|
|
8969
8615
|
id: string;
|
|
@@ -8985,11 +8631,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
8985
8631
|
resolutionPeriodDuration: string;
|
|
8986
8632
|
metadataUri: string;
|
|
8987
8633
|
metadataHash: string;
|
|
8988
|
-
voided: boolean;
|
|
8989
8634
|
voidedAt?: string | null;
|
|
8990
8635
|
disputeResolverId: string;
|
|
8991
|
-
numberOfCommits: string;
|
|
8992
|
-
numberOfRedemptions: string;
|
|
8993
8636
|
seller: {
|
|
8994
8637
|
__typename?: "Seller";
|
|
8995
8638
|
id: string;
|
|
@@ -9229,25 +8872,40 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
9229
8872
|
decidedDate?: string | null;
|
|
9230
8873
|
refusedDate?: string | null;
|
|
9231
8874
|
timeout: string;
|
|
9232
|
-
|
|
9233
|
-
|
|
9234
|
-
|
|
9235
|
-
|
|
9236
|
-
|
|
9237
|
-
|
|
9238
|
-
|
|
9239
|
-
|
|
9240
|
-
|
|
9241
|
-
|
|
9242
|
-
|
|
9243
|
-
|
|
9244
|
-
|
|
9245
|
-
|
|
9246
|
-
|
|
9247
|
-
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
|
|
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
|
+
} | null;
|
|
9251
8909
|
} | null;
|
|
9252
8910
|
};
|
|
9253
8911
|
export declare type GetExchangesQueryQueryVariables = Exact<{
|
|
@@ -9273,6 +8931,24 @@ export declare type GetExchangesQueryQuery = {
|
|
|
9273
8931
|
completedDate?: string | null;
|
|
9274
8932
|
disputedDate?: string | null;
|
|
9275
8933
|
expired: boolean;
|
|
8934
|
+
buyer: {
|
|
8935
|
+
__typename?: "Buyer";
|
|
8936
|
+
id: string;
|
|
8937
|
+
wallet: string;
|
|
8938
|
+
active: boolean;
|
|
8939
|
+
};
|
|
8940
|
+
seller: {
|
|
8941
|
+
__typename?: "Seller";
|
|
8942
|
+
id: string;
|
|
8943
|
+
operator: string;
|
|
8944
|
+
admin: string;
|
|
8945
|
+
clerk: string;
|
|
8946
|
+
treasury: string;
|
|
8947
|
+
authTokenId: string;
|
|
8948
|
+
authTokenType: number;
|
|
8949
|
+
voucherCloneAddress: string;
|
|
8950
|
+
active: boolean;
|
|
8951
|
+
};
|
|
9276
8952
|
offer: {
|
|
9277
8953
|
__typename?: "Offer";
|
|
9278
8954
|
id: string;
|
|
@@ -9294,11 +8970,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
9294
8970
|
resolutionPeriodDuration: string;
|
|
9295
8971
|
metadataUri: string;
|
|
9296
8972
|
metadataHash: string;
|
|
9297
|
-
voided: boolean;
|
|
9298
8973
|
voidedAt?: string | null;
|
|
9299
8974
|
disputeResolverId: string;
|
|
9300
|
-
numberOfCommits: string;
|
|
9301
|
-
numberOfRedemptions: string;
|
|
9302
8975
|
seller: {
|
|
9303
8976
|
__typename?: "Seller";
|
|
9304
8977
|
id: string;
|
|
@@ -9538,25 +9211,40 @@ export declare type GetExchangesQueryQuery = {
|
|
|
9538
9211
|
decidedDate?: string | null;
|
|
9539
9212
|
refusedDate?: string | null;
|
|
9540
9213
|
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
|
+
};
|
|
9541
9247
|
} | null;
|
|
9542
|
-
buyer: {
|
|
9543
|
-
__typename?: "Buyer";
|
|
9544
|
-
id: string;
|
|
9545
|
-
wallet: string;
|
|
9546
|
-
active: boolean;
|
|
9547
|
-
};
|
|
9548
|
-
seller: {
|
|
9549
|
-
__typename?: "Seller";
|
|
9550
|
-
id: string;
|
|
9551
|
-
operator: string;
|
|
9552
|
-
admin: string;
|
|
9553
|
-
clerk: string;
|
|
9554
|
-
treasury: string;
|
|
9555
|
-
authTokenId: string;
|
|
9556
|
-
authTokenType: number;
|
|
9557
|
-
voucherCloneAddress: string;
|
|
9558
|
-
active: boolean;
|
|
9559
|
-
};
|
|
9560
9248
|
}>;
|
|
9561
9249
|
};
|
|
9562
9250
|
export declare type ExchangeFieldsFragment = {
|
|
@@ -9573,6 +9261,24 @@ export declare type ExchangeFieldsFragment = {
|
|
|
9573
9261
|
completedDate?: string | null;
|
|
9574
9262
|
disputedDate?: string | null;
|
|
9575
9263
|
expired: boolean;
|
|
9264
|
+
buyer: {
|
|
9265
|
+
__typename?: "Buyer";
|
|
9266
|
+
id: string;
|
|
9267
|
+
wallet: string;
|
|
9268
|
+
active: boolean;
|
|
9269
|
+
};
|
|
9270
|
+
seller: {
|
|
9271
|
+
__typename?: "Seller";
|
|
9272
|
+
id: string;
|
|
9273
|
+
operator: string;
|
|
9274
|
+
admin: string;
|
|
9275
|
+
clerk: string;
|
|
9276
|
+
treasury: string;
|
|
9277
|
+
authTokenId: string;
|
|
9278
|
+
authTokenType: number;
|
|
9279
|
+
voucherCloneAddress: string;
|
|
9280
|
+
active: boolean;
|
|
9281
|
+
};
|
|
9576
9282
|
offer: {
|
|
9577
9283
|
__typename?: "Offer";
|
|
9578
9284
|
id: string;
|
|
@@ -9594,11 +9300,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
9594
9300
|
resolutionPeriodDuration: string;
|
|
9595
9301
|
metadataUri: string;
|
|
9596
9302
|
metadataHash: string;
|
|
9597
|
-
voided: boolean;
|
|
9598
9303
|
voidedAt?: string | null;
|
|
9599
9304
|
disputeResolverId: string;
|
|
9600
|
-
numberOfCommits: string;
|
|
9601
|
-
numberOfRedemptions: string;
|
|
9602
9305
|
seller: {
|
|
9603
9306
|
__typename?: "Seller";
|
|
9604
9307
|
id: string;
|
|
@@ -9838,25 +9541,40 @@ export declare type ExchangeFieldsFragment = {
|
|
|
9838
9541
|
decidedDate?: string | null;
|
|
9839
9542
|
refusedDate?: string | null;
|
|
9840
9543
|
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
|
+
};
|
|
9841
9577
|
} | null;
|
|
9842
|
-
buyer: {
|
|
9843
|
-
__typename?: "Buyer";
|
|
9844
|
-
id: string;
|
|
9845
|
-
wallet: string;
|
|
9846
|
-
active: boolean;
|
|
9847
|
-
};
|
|
9848
|
-
seller: {
|
|
9849
|
-
__typename?: "Seller";
|
|
9850
|
-
id: string;
|
|
9851
|
-
operator: string;
|
|
9852
|
-
admin: string;
|
|
9853
|
-
clerk: string;
|
|
9854
|
-
treasury: string;
|
|
9855
|
-
authTokenId: string;
|
|
9856
|
-
authTokenType: number;
|
|
9857
|
-
voucherCloneAddress: string;
|
|
9858
|
-
active: boolean;
|
|
9859
|
-
};
|
|
9860
9578
|
};
|
|
9861
9579
|
export declare type BaseExchangeFieldsFragment = {
|
|
9862
9580
|
__typename?: "Exchange";
|
|
@@ -9872,39 +9590,6 @@ export declare type BaseExchangeFieldsFragment = {
|
|
|
9872
9590
|
completedDate?: string | null;
|
|
9873
9591
|
disputedDate?: string | null;
|
|
9874
9592
|
expired: boolean;
|
|
9875
|
-
dispute?: {
|
|
9876
|
-
__typename?: "Dispute";
|
|
9877
|
-
id: string;
|
|
9878
|
-
exchangeId: string;
|
|
9879
|
-
state: DisputeState;
|
|
9880
|
-
buyerPercent: string;
|
|
9881
|
-
disputedDate: string;
|
|
9882
|
-
escalatedDate?: string | null;
|
|
9883
|
-
finalizedDate?: string | null;
|
|
9884
|
-
retractedDate?: string | null;
|
|
9885
|
-
resolvedDate?: string | null;
|
|
9886
|
-
decidedDate?: string | null;
|
|
9887
|
-
refusedDate?: string | null;
|
|
9888
|
-
timeout: string;
|
|
9889
|
-
} | null;
|
|
9890
|
-
buyer: {
|
|
9891
|
-
__typename?: "Buyer";
|
|
9892
|
-
id: string;
|
|
9893
|
-
wallet: string;
|
|
9894
|
-
active: boolean;
|
|
9895
|
-
};
|
|
9896
|
-
seller: {
|
|
9897
|
-
__typename?: "Seller";
|
|
9898
|
-
id: string;
|
|
9899
|
-
operator: string;
|
|
9900
|
-
admin: string;
|
|
9901
|
-
clerk: string;
|
|
9902
|
-
treasury: string;
|
|
9903
|
-
authTokenId: string;
|
|
9904
|
-
authTokenType: number;
|
|
9905
|
-
voucherCloneAddress: string;
|
|
9906
|
-
active: boolean;
|
|
9907
|
-
};
|
|
9908
9593
|
};
|
|
9909
9594
|
export declare type GetFundsByIdQueryVariables = Exact<{
|
|
9910
9595
|
fundsId: Scalars["ID"];
|
|
@@ -9994,8 +9679,6 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
9994
9679
|
validFromDate: string;
|
|
9995
9680
|
validUntilDate: string;
|
|
9996
9681
|
quantityAvailable: string;
|
|
9997
|
-
numberOfCommits: string;
|
|
9998
|
-
numberOfRedemptions: string;
|
|
9999
9682
|
attributes?: Array<{
|
|
10000
9683
|
__typename?: "MetadataAttribute";
|
|
10001
9684
|
traitType: string;
|
|
@@ -10023,11 +9706,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
10023
9706
|
resolutionPeriodDuration: string;
|
|
10024
9707
|
metadataUri: string;
|
|
10025
9708
|
metadataHash: string;
|
|
10026
|
-
voided: boolean;
|
|
10027
9709
|
voidedAt?: string | null;
|
|
10028
9710
|
disputeResolverId: string;
|
|
10029
|
-
numberOfCommits: string;
|
|
10030
|
-
numberOfRedemptions: string;
|
|
10031
9711
|
seller: {
|
|
10032
9712
|
__typename?: "Seller";
|
|
10033
9713
|
id: string;
|
|
@@ -10298,8 +9978,6 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
10298
9978
|
validFromDate: string;
|
|
10299
9979
|
validUntilDate: string;
|
|
10300
9980
|
quantityAvailable: string;
|
|
10301
|
-
numberOfCommits: string;
|
|
10302
|
-
numberOfRedemptions: string;
|
|
10303
9981
|
attributes?: Array<{
|
|
10304
9982
|
__typename?: "MetadataAttribute";
|
|
10305
9983
|
traitType: string;
|
|
@@ -10327,11 +10005,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
10327
10005
|
resolutionPeriodDuration: string;
|
|
10328
10006
|
metadataUri: string;
|
|
10329
10007
|
metadataHash: string;
|
|
10330
|
-
voided: boolean;
|
|
10331
10008
|
voidedAt?: string | null;
|
|
10332
10009
|
disputeResolverId: string;
|
|
10333
|
-
numberOfCommits: string;
|
|
10334
|
-
numberOfRedemptions: string;
|
|
10335
10010
|
seller: {
|
|
10336
10011
|
__typename?: "Seller";
|
|
10337
10012
|
id: string;
|
|
@@ -10593,8 +10268,6 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
10593
10268
|
validFromDate: string;
|
|
10594
10269
|
validUntilDate: string;
|
|
10595
10270
|
quantityAvailable: string;
|
|
10596
|
-
numberOfCommits: string;
|
|
10597
|
-
numberOfRedemptions: string;
|
|
10598
10271
|
attributes?: Array<{
|
|
10599
10272
|
__typename?: "MetadataAttribute";
|
|
10600
10273
|
traitType: string;
|
|
@@ -10622,11 +10295,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
10622
10295
|
resolutionPeriodDuration: string;
|
|
10623
10296
|
metadataUri: string;
|
|
10624
10297
|
metadataHash: string;
|
|
10625
|
-
voided: boolean;
|
|
10626
10298
|
voidedAt?: string | null;
|
|
10627
10299
|
disputeResolverId: string;
|
|
10628
|
-
numberOfCommits: string;
|
|
10629
|
-
numberOfRedemptions: string;
|
|
10630
10300
|
seller: {
|
|
10631
10301
|
__typename?: "Seller";
|
|
10632
10302
|
id: string;
|
|
@@ -10887,8 +10557,6 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
10887
10557
|
validFromDate: string;
|
|
10888
10558
|
validUntilDate: string;
|
|
10889
10559
|
quantityAvailable: string;
|
|
10890
|
-
numberOfCommits: string;
|
|
10891
|
-
numberOfRedemptions: string;
|
|
10892
10560
|
attributes?: Array<{
|
|
10893
10561
|
__typename?: "MetadataAttribute";
|
|
10894
10562
|
traitType: string;
|
|
@@ -10916,11 +10584,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
10916
10584
|
resolutionPeriodDuration: string;
|
|
10917
10585
|
metadataUri: string;
|
|
10918
10586
|
metadataHash: string;
|
|
10919
|
-
voided: boolean;
|
|
10920
10587
|
voidedAt?: string | null;
|
|
10921
10588
|
disputeResolverId: string;
|
|
10922
|
-
numberOfCommits: string;
|
|
10923
|
-
numberOfRedemptions: string;
|
|
10924
10589
|
seller: {
|
|
10925
10590
|
__typename?: "Seller";
|
|
10926
10591
|
id: string;
|
|
@@ -11221,8 +10886,6 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
11221
10886
|
validFromDate: string;
|
|
11222
10887
|
validUntilDate: string;
|
|
11223
10888
|
quantityAvailable: string;
|
|
11224
|
-
numberOfCommits: string;
|
|
11225
|
-
numberOfRedemptions: string;
|
|
11226
10889
|
uuid: string;
|
|
11227
10890
|
attributes?: Array<{
|
|
11228
10891
|
__typename?: "MetadataAttribute";
|
|
@@ -11251,11 +10914,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
11251
10914
|
resolutionPeriodDuration: string;
|
|
11252
10915
|
metadataUri: string;
|
|
11253
10916
|
metadataHash: string;
|
|
11254
|
-
voided: boolean;
|
|
11255
10917
|
voidedAt?: string | null;
|
|
11256
10918
|
disputeResolverId: string;
|
|
11257
|
-
numberOfCommits: string;
|
|
11258
|
-
numberOfRedemptions: string;
|
|
11259
10919
|
seller: {
|
|
11260
10920
|
__typename?: "Seller";
|
|
11261
10921
|
id: string;
|
|
@@ -11654,8 +11314,6 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
11654
11314
|
validFromDate: string;
|
|
11655
11315
|
validUntilDate: string;
|
|
11656
11316
|
quantityAvailable: string;
|
|
11657
|
-
numberOfCommits: string;
|
|
11658
|
-
numberOfRedemptions: string;
|
|
11659
11317
|
uuid: string;
|
|
11660
11318
|
attributes?: Array<{
|
|
11661
11319
|
__typename?: "MetadataAttribute";
|
|
@@ -11684,11 +11342,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
11684
11342
|
resolutionPeriodDuration: string;
|
|
11685
11343
|
metadataUri: string;
|
|
11686
11344
|
metadataHash: string;
|
|
11687
|
-
voided: boolean;
|
|
11688
11345
|
voidedAt?: string | null;
|
|
11689
11346
|
disputeResolverId: string;
|
|
11690
|
-
numberOfCommits: string;
|
|
11691
|
-
numberOfRedemptions: string;
|
|
11692
11347
|
seller: {
|
|
11693
11348
|
__typename?: "Seller";
|
|
11694
11349
|
id: string;
|
|
@@ -12078,8 +11733,6 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
12078
11733
|
validFromDate: string;
|
|
12079
11734
|
validUntilDate: string;
|
|
12080
11735
|
quantityAvailable: string;
|
|
12081
|
-
numberOfCommits: string;
|
|
12082
|
-
numberOfRedemptions: string;
|
|
12083
11736
|
uuid: string;
|
|
12084
11737
|
attributes?: Array<{
|
|
12085
11738
|
__typename?: "MetadataAttribute";
|
|
@@ -12108,11 +11761,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
12108
11761
|
resolutionPeriodDuration: string;
|
|
12109
11762
|
metadataUri: string;
|
|
12110
11763
|
metadataHash: string;
|
|
12111
|
-
voided: boolean;
|
|
12112
11764
|
voidedAt?: string | null;
|
|
12113
11765
|
disputeResolverId: string;
|
|
12114
|
-
numberOfCommits: string;
|
|
12115
|
-
numberOfRedemptions: string;
|
|
12116
11766
|
seller: {
|
|
12117
11767
|
__typename?: "Seller";
|
|
12118
11768
|
id: string;
|
|
@@ -12501,8 +12151,6 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12501
12151
|
validFromDate: string;
|
|
12502
12152
|
validUntilDate: string;
|
|
12503
12153
|
quantityAvailable: string;
|
|
12504
|
-
numberOfCommits: string;
|
|
12505
|
-
numberOfRedemptions: string;
|
|
12506
12154
|
uuid: string;
|
|
12507
12155
|
attributes?: Array<{
|
|
12508
12156
|
__typename?: "MetadataAttribute";
|
|
@@ -12531,11 +12179,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12531
12179
|
resolutionPeriodDuration: string;
|
|
12532
12180
|
metadataUri: string;
|
|
12533
12181
|
metadataHash: string;
|
|
12534
|
-
voided: boolean;
|
|
12535
12182
|
voidedAt?: string | null;
|
|
12536
12183
|
disputeResolverId: string;
|
|
12537
|
-
numberOfCommits: string;
|
|
12538
|
-
numberOfRedemptions: string;
|
|
12539
12184
|
seller: {
|
|
12540
12185
|
__typename?: "Seller";
|
|
12541
12186
|
id: string;
|
|
@@ -13168,11 +12813,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
13168
12813
|
resolutionPeriodDuration: string;
|
|
13169
12814
|
metadataUri: string;
|
|
13170
12815
|
metadataHash: string;
|
|
13171
|
-
voided: boolean;
|
|
13172
12816
|
voidedAt?: string | null;
|
|
13173
12817
|
disputeResolverId: string;
|
|
13174
|
-
numberOfCommits: string;
|
|
13175
|
-
numberOfRedemptions: string;
|
|
13176
12818
|
exchanges?: Array<{
|
|
13177
12819
|
__typename?: "Exchange";
|
|
13178
12820
|
id: string;
|
|
@@ -13187,39 +12829,6 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
13187
12829
|
completedDate?: string | null;
|
|
13188
12830
|
disputedDate?: string | null;
|
|
13189
12831
|
expired: boolean;
|
|
13190
|
-
dispute?: {
|
|
13191
|
-
__typename?: "Dispute";
|
|
13192
|
-
id: string;
|
|
13193
|
-
exchangeId: string;
|
|
13194
|
-
state: DisputeState;
|
|
13195
|
-
buyerPercent: string;
|
|
13196
|
-
disputedDate: string;
|
|
13197
|
-
escalatedDate?: string | null;
|
|
13198
|
-
finalizedDate?: string | null;
|
|
13199
|
-
retractedDate?: string | null;
|
|
13200
|
-
resolvedDate?: string | null;
|
|
13201
|
-
decidedDate?: string | null;
|
|
13202
|
-
refusedDate?: string | null;
|
|
13203
|
-
timeout: string;
|
|
13204
|
-
} | null;
|
|
13205
|
-
buyer: {
|
|
13206
|
-
__typename?: "Buyer";
|
|
13207
|
-
id: string;
|
|
13208
|
-
wallet: string;
|
|
13209
|
-
active: boolean;
|
|
13210
|
-
};
|
|
13211
|
-
seller: {
|
|
13212
|
-
__typename?: "Seller";
|
|
13213
|
-
id: string;
|
|
13214
|
-
operator: string;
|
|
13215
|
-
admin: string;
|
|
13216
|
-
clerk: string;
|
|
13217
|
-
treasury: string;
|
|
13218
|
-
authTokenId: string;
|
|
13219
|
-
authTokenType: number;
|
|
13220
|
-
voucherCloneAddress: string;
|
|
13221
|
-
active: boolean;
|
|
13222
|
-
};
|
|
13223
12832
|
}>;
|
|
13224
12833
|
seller: {
|
|
13225
12834
|
__typename?: "Seller";
|
|
@@ -13483,11 +13092,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
13483
13092
|
resolutionPeriodDuration: string;
|
|
13484
13093
|
metadataUri: string;
|
|
13485
13094
|
metadataHash: string;
|
|
13486
|
-
voided: boolean;
|
|
13487
13095
|
voidedAt?: string | null;
|
|
13488
13096
|
disputeResolverId: string;
|
|
13489
|
-
numberOfCommits: string;
|
|
13490
|
-
numberOfRedemptions: string;
|
|
13491
13097
|
exchanges?: Array<{
|
|
13492
13098
|
__typename?: "Exchange";
|
|
13493
13099
|
id: string;
|
|
@@ -13502,39 +13108,6 @@ export declare type GetOffersQueryQuery = {
|
|
|
13502
13108
|
completedDate?: string | null;
|
|
13503
13109
|
disputedDate?: string | null;
|
|
13504
13110
|
expired: boolean;
|
|
13505
|
-
dispute?: {
|
|
13506
|
-
__typename?: "Dispute";
|
|
13507
|
-
id: string;
|
|
13508
|
-
exchangeId: string;
|
|
13509
|
-
state: DisputeState;
|
|
13510
|
-
buyerPercent: string;
|
|
13511
|
-
disputedDate: string;
|
|
13512
|
-
escalatedDate?: string | null;
|
|
13513
|
-
finalizedDate?: string | null;
|
|
13514
|
-
retractedDate?: string | null;
|
|
13515
|
-
resolvedDate?: string | null;
|
|
13516
|
-
decidedDate?: string | null;
|
|
13517
|
-
refusedDate?: string | null;
|
|
13518
|
-
timeout: string;
|
|
13519
|
-
} | null;
|
|
13520
|
-
buyer: {
|
|
13521
|
-
__typename?: "Buyer";
|
|
13522
|
-
id: string;
|
|
13523
|
-
wallet: string;
|
|
13524
|
-
active: boolean;
|
|
13525
|
-
};
|
|
13526
|
-
seller: {
|
|
13527
|
-
__typename?: "Seller";
|
|
13528
|
-
id: string;
|
|
13529
|
-
operator: string;
|
|
13530
|
-
admin: string;
|
|
13531
|
-
clerk: string;
|
|
13532
|
-
treasury: string;
|
|
13533
|
-
authTokenId: string;
|
|
13534
|
-
authTokenType: number;
|
|
13535
|
-
voucherCloneAddress: string;
|
|
13536
|
-
active: boolean;
|
|
13537
|
-
};
|
|
13538
13111
|
}>;
|
|
13539
13112
|
seller: {
|
|
13540
13113
|
__typename?: "Seller";
|
|
@@ -13783,11 +13356,8 @@ export declare type OfferFieldsFragment = {
|
|
|
13783
13356
|
resolutionPeriodDuration: string;
|
|
13784
13357
|
metadataUri: string;
|
|
13785
13358
|
metadataHash: string;
|
|
13786
|
-
voided: boolean;
|
|
13787
13359
|
voidedAt?: string | null;
|
|
13788
13360
|
disputeResolverId: string;
|
|
13789
|
-
numberOfCommits: string;
|
|
13790
|
-
numberOfRedemptions: string;
|
|
13791
13361
|
exchanges?: Array<{
|
|
13792
13362
|
__typename?: "Exchange";
|
|
13793
13363
|
id: string;
|
|
@@ -13802,39 +13372,6 @@ export declare type OfferFieldsFragment = {
|
|
|
13802
13372
|
completedDate?: string | null;
|
|
13803
13373
|
disputedDate?: string | null;
|
|
13804
13374
|
expired: boolean;
|
|
13805
|
-
dispute?: {
|
|
13806
|
-
__typename?: "Dispute";
|
|
13807
|
-
id: string;
|
|
13808
|
-
exchangeId: string;
|
|
13809
|
-
state: DisputeState;
|
|
13810
|
-
buyerPercent: string;
|
|
13811
|
-
disputedDate: string;
|
|
13812
|
-
escalatedDate?: string | null;
|
|
13813
|
-
finalizedDate?: string | null;
|
|
13814
|
-
retractedDate?: string | null;
|
|
13815
|
-
resolvedDate?: string | null;
|
|
13816
|
-
decidedDate?: string | null;
|
|
13817
|
-
refusedDate?: string | null;
|
|
13818
|
-
timeout: string;
|
|
13819
|
-
} | null;
|
|
13820
|
-
buyer: {
|
|
13821
|
-
__typename?: "Buyer";
|
|
13822
|
-
id: string;
|
|
13823
|
-
wallet: string;
|
|
13824
|
-
active: boolean;
|
|
13825
|
-
};
|
|
13826
|
-
seller: {
|
|
13827
|
-
__typename?: "Seller";
|
|
13828
|
-
id: string;
|
|
13829
|
-
operator: string;
|
|
13830
|
-
admin: string;
|
|
13831
|
-
clerk: string;
|
|
13832
|
-
treasury: string;
|
|
13833
|
-
authTokenId: string;
|
|
13834
|
-
authTokenType: number;
|
|
13835
|
-
voucherCloneAddress: string;
|
|
13836
|
-
active: boolean;
|
|
13837
|
-
};
|
|
13838
13375
|
}>;
|
|
13839
13376
|
seller: {
|
|
13840
13377
|
__typename?: "Seller";
|
|
@@ -14082,11 +13619,8 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
14082
13619
|
resolutionPeriodDuration: string;
|
|
14083
13620
|
metadataUri: string;
|
|
14084
13621
|
metadataHash: string;
|
|
14085
|
-
voided: boolean;
|
|
14086
13622
|
voidedAt?: string | null;
|
|
14087
13623
|
disputeResolverId: string;
|
|
14088
|
-
numberOfCommits: string;
|
|
14089
|
-
numberOfRedemptions: string;
|
|
14090
13624
|
seller: {
|
|
14091
13625
|
__typename?: "Seller";
|
|
14092
13626
|
id: string;
|
|
@@ -14333,12 +13867,12 @@ export declare const BaseProductV1ExchangePolicyFieldsFragmentDoc: string;
|
|
|
14333
13867
|
export declare const BaseProductV1ShippingJurisdictionFieldsFragmentDoc: string;
|
|
14334
13868
|
export declare const BaseProductV1ShippingOptionFieldsFragmentDoc: string;
|
|
14335
13869
|
export declare const BaseOfferFieldsFragmentDoc: string;
|
|
14336
|
-
export declare const BaseDisputeFieldsFragmentDoc: string;
|
|
14337
|
-
export declare const BaseBuyerFieldsFragmentDoc: string;
|
|
14338
13870
|
export declare const BaseExchangeFieldsFragmentDoc: string;
|
|
14339
13871
|
export declare const SellerFieldsFragmentDoc: string;
|
|
13872
|
+
export declare const BaseBuyerFieldsFragmentDoc: string;
|
|
14340
13873
|
export declare const BuyerFieldsFragmentDoc: string;
|
|
14341
13874
|
export declare const DisputeResolverFieldsFragmentDoc: string;
|
|
13875
|
+
export declare const BaseDisputeFieldsFragmentDoc: string;
|
|
14342
13876
|
export declare const DisputeFieldsFragmentDoc: string;
|
|
14343
13877
|
export declare const ExchangeTokenFieldsFragmentDoc: string;
|
|
14344
13878
|
export declare const ExchangeFieldsFragmentDoc: string;
|