@bosonprotocol/core-sdk 1.16.0-alpha.8 → 1.16.0
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 +3 -104
- package/dist/cjs/core-sdk.d.ts +38 -1
- package/dist/cjs/core-sdk.d.ts.map +1 -1
- package/dist/cjs/core-sdk.js +80 -1
- package/dist/cjs/core-sdk.js.map +1 -1
- package/dist/cjs/event-logs/index.d.ts +2 -0
- package/dist/cjs/event-logs/index.d.ts.map +1 -0
- package/dist/cjs/event-logs/index.js +28 -0
- package/dist/cjs/event-logs/index.js.map +1 -0
- package/dist/cjs/event-logs/subgraph.d.ts +3 -0
- package/dist/cjs/event-logs/subgraph.d.ts.map +1 -0
- package/dist/cjs/event-logs/subgraph.js +22 -0
- package/dist/cjs/event-logs/subgraph.js.map +1 -0
- package/dist/cjs/exchanges/handler.d.ts +3 -0
- package/dist/cjs/exchanges/handler.d.ts.map +1 -1
- package/dist/cjs/exchanges/handler.js +34 -11
- package/dist/cjs/exchanges/handler.js.map +1 -1
- package/dist/cjs/exchanges/interface.d.ts +1 -0
- package/dist/cjs/exchanges/interface.d.ts.map +1 -1
- package/dist/cjs/exchanges/interface.js +7 -1
- 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/biconomy.d.ts +45 -0
- package/dist/cjs/meta-tx/biconomy.d.ts.map +1 -0
- package/dist/cjs/meta-tx/biconomy.js +76 -0
- package/dist/cjs/meta-tx/biconomy.js.map +1 -0
- package/dist/cjs/meta-tx/handler.d.ts +20 -1
- package/dist/cjs/meta-tx/handler.d.ts.map +1 -1
- package/dist/cjs/meta-tx/handler.js +61 -1
- package/dist/cjs/meta-tx/handler.js.map +1 -1
- package/dist/cjs/subgraph.d.ts +2848 -280
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +287 -41
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/cjs/utils/errors.d.ts +5 -0
- package/dist/cjs/utils/errors.d.ts.map +1 -0
- package/dist/cjs/utils/errors.js +11 -0
- package/dist/cjs/utils/errors.js.map +1 -0
- package/dist/cjs/utils/graphql.d.ts +43 -0
- package/dist/cjs/utils/graphql.d.ts.map +1 -1
- package/dist/esm/core-sdk.d.ts +38 -1
- package/dist/esm/core-sdk.d.ts.map +1 -1
- package/dist/esm/core-sdk.js +77 -1
- package/dist/esm/core-sdk.js.map +1 -1
- package/dist/esm/event-logs/index.d.ts +2 -0
- package/dist/esm/event-logs/index.d.ts.map +1 -0
- package/dist/esm/event-logs/index.js +2 -0
- package/dist/esm/event-logs/index.js.map +1 -0
- package/dist/esm/event-logs/subgraph.d.ts +3 -0
- package/dist/esm/event-logs/subgraph.d.ts.map +1 -0
- package/dist/esm/event-logs/subgraph.js +7 -0
- package/dist/esm/event-logs/subgraph.js.map +1 -0
- package/dist/esm/exchanges/handler.d.ts +3 -0
- package/dist/esm/exchanges/handler.d.ts.map +1 -1
- package/dist/esm/exchanges/handler.js +32 -12
- package/dist/esm/exchanges/handler.js.map +1 -1
- package/dist/esm/exchanges/interface.d.ts +1 -0
- package/dist/esm/exchanges/interface.d.ts.map +1 -1
- package/dist/esm/exchanges/interface.js +5 -0
- 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/biconomy.d.ts +45 -0
- package/dist/esm/meta-tx/biconomy.d.ts.map +1 -0
- package/dist/esm/meta-tx/biconomy.js +60 -0
- package/dist/esm/meta-tx/biconomy.js.map +1 -0
- package/dist/esm/meta-tx/handler.d.ts +20 -1
- package/dist/esm/meta-tx/handler.d.ts.map +1 -1
- package/dist/esm/meta-tx/handler.js +56 -0
- package/dist/esm/meta-tx/handler.js.map +1 -1
- package/dist/esm/subgraph.d.ts +2848 -280
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +284 -39
- package/dist/esm/subgraph.js.map +1 -1
- package/dist/esm/utils/errors.d.ts +5 -0
- package/dist/esm/utils/errors.d.ts.map +1 -0
- package/dist/esm/utils/errors.js +8 -0
- package/dist/esm/utils/errors.js.map +1 -0
- package/dist/esm/utils/graphql.d.ts +43 -0
- package/dist/esm/utils/graphql.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/accounts/queries.graphql +63 -0
- package/src/core-sdk.ts +117 -2
- package/src/disputes/queries.graphql +9 -9
- package/src/event-logs/index.ts +1 -0
- package/src/event-logs/queries.graphql +53 -0
- package/src/event-logs/subgraph.ts +14 -0
- package/src/exchanges/handler.ts +50 -20
- package/src/exchanges/interface.ts +6 -0
- package/src/exchanges/queries.graphql +9 -9
- package/src/index.ts +2 -1
- package/src/meta-tx/biconomy.ts +129 -0
- package/src/meta-tx/handler.ts +84 -2
- 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 +2603 -240
- package/src/utils/errors.ts +5 -0
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export declare type Scalars = {
|
|
|
31
31
|
export declare type Account = {
|
|
32
32
|
funds: Array<FundsEntity>;
|
|
33
33
|
id: Scalars["ID"];
|
|
34
|
+
logs: Array<EventLog>;
|
|
34
35
|
};
|
|
35
36
|
/**
|
|
36
37
|
* Accounts
|
|
@@ -43,6 +44,102 @@ export declare type AccountFundsArgs = {
|
|
|
43
44
|
skip?: InputMaybe<Scalars["Int"]>;
|
|
44
45
|
where?: InputMaybe<FundsEntity_Filter>;
|
|
45
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* Accounts
|
|
49
|
+
*
|
|
50
|
+
*/
|
|
51
|
+
export declare type AccountLogsArgs = {
|
|
52
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
53
|
+
orderBy?: InputMaybe<EventLog_OrderBy>;
|
|
54
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
55
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
56
|
+
where?: InputMaybe<EventLog_Filter>;
|
|
57
|
+
};
|
|
58
|
+
export declare type AccountEventLog = EventLog & {
|
|
59
|
+
__typename?: "AccountEventLog";
|
|
60
|
+
account: Account;
|
|
61
|
+
executedBy: Scalars["Bytes"];
|
|
62
|
+
hash: Scalars["String"];
|
|
63
|
+
id: Scalars["ID"];
|
|
64
|
+
timestamp: Scalars["BigInt"];
|
|
65
|
+
type: EventType;
|
|
66
|
+
};
|
|
67
|
+
export declare type AccountEventLog_Filter = {
|
|
68
|
+
account?: InputMaybe<Scalars["String"]>;
|
|
69
|
+
account_contains?: InputMaybe<Scalars["String"]>;
|
|
70
|
+
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
71
|
+
account_ends_with?: InputMaybe<Scalars["String"]>;
|
|
72
|
+
account_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
73
|
+
account_gt?: InputMaybe<Scalars["String"]>;
|
|
74
|
+
account_gte?: InputMaybe<Scalars["String"]>;
|
|
75
|
+
account_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
76
|
+
account_lt?: InputMaybe<Scalars["String"]>;
|
|
77
|
+
account_lte?: InputMaybe<Scalars["String"]>;
|
|
78
|
+
account_not?: InputMaybe<Scalars["String"]>;
|
|
79
|
+
account_not_contains?: InputMaybe<Scalars["String"]>;
|
|
80
|
+
account_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
81
|
+
account_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
82
|
+
account_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
83
|
+
account_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
84
|
+
account_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
85
|
+
account_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
86
|
+
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
87
|
+
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
88
|
+
executedBy?: InputMaybe<Scalars["Bytes"]>;
|
|
89
|
+
executedBy_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
90
|
+
executedBy_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
91
|
+
executedBy_not?: InputMaybe<Scalars["Bytes"]>;
|
|
92
|
+
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
93
|
+
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
94
|
+
hash?: InputMaybe<Scalars["String"]>;
|
|
95
|
+
hash_contains?: InputMaybe<Scalars["String"]>;
|
|
96
|
+
hash_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
97
|
+
hash_ends_with?: InputMaybe<Scalars["String"]>;
|
|
98
|
+
hash_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
99
|
+
hash_gt?: InputMaybe<Scalars["String"]>;
|
|
100
|
+
hash_gte?: InputMaybe<Scalars["String"]>;
|
|
101
|
+
hash_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
102
|
+
hash_lt?: InputMaybe<Scalars["String"]>;
|
|
103
|
+
hash_lte?: InputMaybe<Scalars["String"]>;
|
|
104
|
+
hash_not?: InputMaybe<Scalars["String"]>;
|
|
105
|
+
hash_not_contains?: InputMaybe<Scalars["String"]>;
|
|
106
|
+
hash_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
107
|
+
hash_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
108
|
+
hash_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
109
|
+
hash_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
110
|
+
hash_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
111
|
+
hash_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
112
|
+
hash_starts_with?: InputMaybe<Scalars["String"]>;
|
|
113
|
+
hash_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
114
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
115
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
116
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
117
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
118
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
119
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
120
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
121
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
122
|
+
timestamp?: InputMaybe<Scalars["BigInt"]>;
|
|
123
|
+
timestamp_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
124
|
+
timestamp_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
125
|
+
timestamp_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
126
|
+
timestamp_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
127
|
+
timestamp_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
128
|
+
timestamp_not?: InputMaybe<Scalars["BigInt"]>;
|
|
129
|
+
timestamp_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
130
|
+
type?: InputMaybe<EventType>;
|
|
131
|
+
type_in?: InputMaybe<Array<EventType>>;
|
|
132
|
+
type_not?: InputMaybe<EventType>;
|
|
133
|
+
type_not_in?: InputMaybe<Array<EventType>>;
|
|
134
|
+
};
|
|
135
|
+
export declare enum AccountEventLog_OrderBy {
|
|
136
|
+
Account = "account",
|
|
137
|
+
ExecutedBy = "executedBy",
|
|
138
|
+
Hash = "hash",
|
|
139
|
+
Id = "id",
|
|
140
|
+
Timestamp = "timestamp",
|
|
141
|
+
Type = "type"
|
|
142
|
+
}
|
|
46
143
|
export declare type Account_Filter = {
|
|
47
144
|
id?: InputMaybe<Scalars["ID"]>;
|
|
48
145
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
@@ -55,7 +152,8 @@ export declare type Account_Filter = {
|
|
|
55
152
|
};
|
|
56
153
|
export declare enum Account_OrderBy {
|
|
57
154
|
Funds = "funds",
|
|
58
|
-
Id = "id"
|
|
155
|
+
Id = "id",
|
|
156
|
+
Logs = "logs"
|
|
59
157
|
}
|
|
60
158
|
export declare type BaseMetadataEntity = MetadataInterface & {
|
|
61
159
|
__typename?: "BaseMetadataEntity";
|
|
@@ -75,6 +173,8 @@ export declare type BaseMetadataEntity = MetadataInterface & {
|
|
|
75
173
|
id: Scalars["ID"];
|
|
76
174
|
image: Scalars["String"];
|
|
77
175
|
name: Scalars["String"];
|
|
176
|
+
numberOfCommits: Scalars["BigInt"];
|
|
177
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
78
178
|
/**
|
|
79
179
|
* References to entities
|
|
80
180
|
*
|
|
@@ -219,6 +319,22 @@ export declare type BaseMetadataEntity_Filter = {
|
|
|
219
319
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
220
320
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
221
321
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
322
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
323
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
324
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
325
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
326
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
327
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
328
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
329
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
330
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
331
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
332
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
333
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
334
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
335
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
336
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
337
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
222
338
|
offer?: InputMaybe<Scalars["String"]>;
|
|
223
339
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
224
340
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -321,6 +437,8 @@ export declare enum BaseMetadataEntity_OrderBy {
|
|
|
321
437
|
Id = "id",
|
|
322
438
|
Image = "image",
|
|
323
439
|
Name = "name",
|
|
440
|
+
NumberOfCommits = "numberOfCommits",
|
|
441
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
324
442
|
Offer = "offer",
|
|
325
443
|
QuantityAvailable = "quantityAvailable",
|
|
326
444
|
SchemaUrl = "schemaUrl",
|
|
@@ -351,6 +469,7 @@ export declare type Buyer = Account & {
|
|
|
351
469
|
exchanges: Array<Exchange>;
|
|
352
470
|
funds: Array<FundsEntity>;
|
|
353
471
|
id: Scalars["ID"];
|
|
472
|
+
logs: Array<EventLog>;
|
|
354
473
|
wallet: Scalars["Bytes"];
|
|
355
474
|
};
|
|
356
475
|
export declare type BuyerExchangesArgs = {
|
|
@@ -367,6 +486,13 @@ export declare type BuyerFundsArgs = {
|
|
|
367
486
|
skip?: InputMaybe<Scalars["Int"]>;
|
|
368
487
|
where?: InputMaybe<FundsEntity_Filter>;
|
|
369
488
|
};
|
|
489
|
+
export declare type BuyerLogsArgs = {
|
|
490
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
491
|
+
orderBy?: InputMaybe<EventLog_OrderBy>;
|
|
492
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
493
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
494
|
+
where?: InputMaybe<EventLog_Filter>;
|
|
495
|
+
};
|
|
370
496
|
export declare type Buyer_Filter = {
|
|
371
497
|
active?: InputMaybe<Scalars["Boolean"]>;
|
|
372
498
|
active_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
@@ -392,6 +518,7 @@ export declare enum Buyer_OrderBy {
|
|
|
392
518
|
Exchanges = "exchanges",
|
|
393
519
|
Funds = "funds",
|
|
394
520
|
Id = "id",
|
|
521
|
+
Logs = "logs",
|
|
395
522
|
Wallet = "wallet"
|
|
396
523
|
}
|
|
397
524
|
export declare type Dispute = {
|
|
@@ -399,6 +526,7 @@ export declare type Dispute = {
|
|
|
399
526
|
buyer: Buyer;
|
|
400
527
|
buyerPercent: Scalars["BigInt"];
|
|
401
528
|
decidedDate?: Maybe<Scalars["BigInt"]>;
|
|
529
|
+
disputeResolver: DisputeResolver;
|
|
402
530
|
disputedDate: Scalars["BigInt"];
|
|
403
531
|
escalatedDate?: Maybe<Scalars["BigInt"]>;
|
|
404
532
|
exchange: Exchange;
|
|
@@ -412,6 +540,113 @@ export declare type Dispute = {
|
|
|
412
540
|
state: DisputeState;
|
|
413
541
|
timeout: Scalars["BigInt"];
|
|
414
542
|
};
|
|
543
|
+
export declare type DisputeEventLog = EventLog & {
|
|
544
|
+
__typename?: "DisputeEventLog";
|
|
545
|
+
account: Account;
|
|
546
|
+
dispute: Dispute;
|
|
547
|
+
executedBy: Scalars["Bytes"];
|
|
548
|
+
hash: Scalars["String"];
|
|
549
|
+
id: Scalars["ID"];
|
|
550
|
+
timestamp: Scalars["BigInt"];
|
|
551
|
+
type: EventType;
|
|
552
|
+
};
|
|
553
|
+
export declare type DisputeEventLog_Filter = {
|
|
554
|
+
account?: InputMaybe<Scalars["String"]>;
|
|
555
|
+
account_contains?: InputMaybe<Scalars["String"]>;
|
|
556
|
+
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
557
|
+
account_ends_with?: InputMaybe<Scalars["String"]>;
|
|
558
|
+
account_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
559
|
+
account_gt?: InputMaybe<Scalars["String"]>;
|
|
560
|
+
account_gte?: InputMaybe<Scalars["String"]>;
|
|
561
|
+
account_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
562
|
+
account_lt?: InputMaybe<Scalars["String"]>;
|
|
563
|
+
account_lte?: InputMaybe<Scalars["String"]>;
|
|
564
|
+
account_not?: InputMaybe<Scalars["String"]>;
|
|
565
|
+
account_not_contains?: InputMaybe<Scalars["String"]>;
|
|
566
|
+
account_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
567
|
+
account_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
568
|
+
account_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
569
|
+
account_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
570
|
+
account_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
571
|
+
account_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
572
|
+
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
573
|
+
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
574
|
+
dispute?: InputMaybe<Scalars["String"]>;
|
|
575
|
+
dispute_contains?: InputMaybe<Scalars["String"]>;
|
|
576
|
+
dispute_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
577
|
+
dispute_ends_with?: InputMaybe<Scalars["String"]>;
|
|
578
|
+
dispute_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
579
|
+
dispute_gt?: InputMaybe<Scalars["String"]>;
|
|
580
|
+
dispute_gte?: InputMaybe<Scalars["String"]>;
|
|
581
|
+
dispute_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
582
|
+
dispute_lt?: InputMaybe<Scalars["String"]>;
|
|
583
|
+
dispute_lte?: InputMaybe<Scalars["String"]>;
|
|
584
|
+
dispute_not?: InputMaybe<Scalars["String"]>;
|
|
585
|
+
dispute_not_contains?: InputMaybe<Scalars["String"]>;
|
|
586
|
+
dispute_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
587
|
+
dispute_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
588
|
+
dispute_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
589
|
+
dispute_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
590
|
+
dispute_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
591
|
+
dispute_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
592
|
+
dispute_starts_with?: InputMaybe<Scalars["String"]>;
|
|
593
|
+
dispute_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
594
|
+
executedBy?: InputMaybe<Scalars["Bytes"]>;
|
|
595
|
+
executedBy_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
596
|
+
executedBy_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
597
|
+
executedBy_not?: InputMaybe<Scalars["Bytes"]>;
|
|
598
|
+
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
599
|
+
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
600
|
+
hash?: InputMaybe<Scalars["String"]>;
|
|
601
|
+
hash_contains?: InputMaybe<Scalars["String"]>;
|
|
602
|
+
hash_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
603
|
+
hash_ends_with?: InputMaybe<Scalars["String"]>;
|
|
604
|
+
hash_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
605
|
+
hash_gt?: InputMaybe<Scalars["String"]>;
|
|
606
|
+
hash_gte?: InputMaybe<Scalars["String"]>;
|
|
607
|
+
hash_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
608
|
+
hash_lt?: InputMaybe<Scalars["String"]>;
|
|
609
|
+
hash_lte?: InputMaybe<Scalars["String"]>;
|
|
610
|
+
hash_not?: InputMaybe<Scalars["String"]>;
|
|
611
|
+
hash_not_contains?: InputMaybe<Scalars["String"]>;
|
|
612
|
+
hash_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
613
|
+
hash_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
614
|
+
hash_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
615
|
+
hash_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
616
|
+
hash_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
617
|
+
hash_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
618
|
+
hash_starts_with?: InputMaybe<Scalars["String"]>;
|
|
619
|
+
hash_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
620
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
621
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
622
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
623
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
624
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
625
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
626
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
627
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
628
|
+
timestamp?: InputMaybe<Scalars["BigInt"]>;
|
|
629
|
+
timestamp_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
630
|
+
timestamp_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
631
|
+
timestamp_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
632
|
+
timestamp_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
633
|
+
timestamp_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
634
|
+
timestamp_not?: InputMaybe<Scalars["BigInt"]>;
|
|
635
|
+
timestamp_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
636
|
+
type?: InputMaybe<EventType>;
|
|
637
|
+
type_in?: InputMaybe<Array<EventType>>;
|
|
638
|
+
type_not?: InputMaybe<EventType>;
|
|
639
|
+
type_not_in?: InputMaybe<Array<EventType>>;
|
|
640
|
+
};
|
|
641
|
+
export declare enum DisputeEventLog_OrderBy {
|
|
642
|
+
Account = "account",
|
|
643
|
+
Dispute = "dispute",
|
|
644
|
+
ExecutedBy = "executedBy",
|
|
645
|
+
Hash = "hash",
|
|
646
|
+
Id = "id",
|
|
647
|
+
Timestamp = "timestamp",
|
|
648
|
+
Type = "type"
|
|
649
|
+
}
|
|
415
650
|
export declare type DisputeResolutionTermsEntity = {
|
|
416
651
|
__typename?: "DisputeResolutionTermsEntity";
|
|
417
652
|
buyerEscalationDeposit: Scalars["BigInt"];
|
|
@@ -514,14 +749,16 @@ export declare enum DisputeResolutionTermsEntity_OrderBy {
|
|
|
514
749
|
Id = "id",
|
|
515
750
|
Offer = "offer"
|
|
516
751
|
}
|
|
517
|
-
export declare type DisputeResolver = {
|
|
752
|
+
export declare type DisputeResolver = Account & {
|
|
518
753
|
__typename?: "DisputeResolver";
|
|
519
754
|
active: Scalars["Boolean"];
|
|
520
755
|
admin: Scalars["Bytes"];
|
|
521
756
|
clerk: Scalars["Bytes"];
|
|
522
757
|
escalationResponsePeriod: Scalars["BigInt"];
|
|
523
758
|
fees: Array<DisputeResolverFee>;
|
|
759
|
+
funds: Array<FundsEntity>;
|
|
524
760
|
id: Scalars["ID"];
|
|
761
|
+
logs: Array<EventLog>;
|
|
525
762
|
metadataUri: Scalars["String"];
|
|
526
763
|
offers: Array<Offer>;
|
|
527
764
|
operator: Scalars["Bytes"];
|
|
@@ -535,6 +772,20 @@ export declare type DisputeResolverFeesArgs = {
|
|
|
535
772
|
skip?: InputMaybe<Scalars["Int"]>;
|
|
536
773
|
where?: InputMaybe<DisputeResolverFee_Filter>;
|
|
537
774
|
};
|
|
775
|
+
export declare type DisputeResolverFundsArgs = {
|
|
776
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
777
|
+
orderBy?: InputMaybe<FundsEntity_OrderBy>;
|
|
778
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
779
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
780
|
+
where?: InputMaybe<FundsEntity_Filter>;
|
|
781
|
+
};
|
|
782
|
+
export declare type DisputeResolverLogsArgs = {
|
|
783
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
784
|
+
orderBy?: InputMaybe<EventLog_OrderBy>;
|
|
785
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
786
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
787
|
+
where?: InputMaybe<EventLog_Filter>;
|
|
788
|
+
};
|
|
538
789
|
export declare type DisputeResolverOffersArgs = {
|
|
539
790
|
first?: InputMaybe<Scalars["Int"]>;
|
|
540
791
|
orderBy?: InputMaybe<Offer_OrderBy>;
|
|
@@ -706,7 +957,9 @@ export declare enum DisputeResolver_OrderBy {
|
|
|
706
957
|
Clerk = "clerk",
|
|
707
958
|
EscalationResponsePeriod = "escalationResponsePeriod",
|
|
708
959
|
Fees = "fees",
|
|
960
|
+
Funds = "funds",
|
|
709
961
|
Id = "id",
|
|
962
|
+
Logs = "logs",
|
|
710
963
|
MetadataUri = "metadataUri",
|
|
711
964
|
Offers = "offers",
|
|
712
965
|
Operator = "operator",
|
|
@@ -762,6 +1015,26 @@ export declare type Dispute_Filter = {
|
|
|
762
1015
|
decidedDate_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
763
1016
|
decidedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
764
1017
|
decidedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1018
|
+
disputeResolver?: InputMaybe<Scalars["String"]>;
|
|
1019
|
+
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
1020
|
+
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1021
|
+
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1022
|
+
disputeResolver_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1023
|
+
disputeResolver_gt?: InputMaybe<Scalars["String"]>;
|
|
1024
|
+
disputeResolver_gte?: InputMaybe<Scalars["String"]>;
|
|
1025
|
+
disputeResolver_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1026
|
+
disputeResolver_lt?: InputMaybe<Scalars["String"]>;
|
|
1027
|
+
disputeResolver_lte?: InputMaybe<Scalars["String"]>;
|
|
1028
|
+
disputeResolver_not?: InputMaybe<Scalars["String"]>;
|
|
1029
|
+
disputeResolver_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1030
|
+
disputeResolver_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1031
|
+
disputeResolver_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1032
|
+
disputeResolver_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1033
|
+
disputeResolver_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1034
|
+
disputeResolver_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1035
|
+
disputeResolver_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1036
|
+
disputeResolver_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1037
|
+
disputeResolver_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
765
1038
|
disputedDate?: InputMaybe<Scalars["BigInt"]>;
|
|
766
1039
|
disputedDate_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
767
1040
|
disputedDate_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -883,6 +1156,7 @@ export declare enum Dispute_OrderBy {
|
|
|
883
1156
|
Buyer = "buyer",
|
|
884
1157
|
BuyerPercent = "buyerPercent",
|
|
885
1158
|
DecidedDate = "decidedDate",
|
|
1159
|
+
DisputeResolver = "disputeResolver",
|
|
886
1160
|
DisputedDate = "disputedDate",
|
|
887
1161
|
EscalatedDate = "escalatedDate",
|
|
888
1162
|
Exchange = "exchange",
|
|
@@ -896,6 +1170,133 @@ export declare enum Dispute_OrderBy {
|
|
|
896
1170
|
State = "state",
|
|
897
1171
|
Timeout = "timeout"
|
|
898
1172
|
}
|
|
1173
|
+
export declare type EventLog = {
|
|
1174
|
+
account: Account;
|
|
1175
|
+
executedBy: Scalars["Bytes"];
|
|
1176
|
+
hash: Scalars["String"];
|
|
1177
|
+
id: Scalars["ID"];
|
|
1178
|
+
timestamp: Scalars["BigInt"];
|
|
1179
|
+
type: EventType;
|
|
1180
|
+
};
|
|
1181
|
+
export declare type EventLog_Filter = {
|
|
1182
|
+
account?: InputMaybe<Scalars["String"]>;
|
|
1183
|
+
account_contains?: InputMaybe<Scalars["String"]>;
|
|
1184
|
+
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1185
|
+
account_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1186
|
+
account_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1187
|
+
account_gt?: InputMaybe<Scalars["String"]>;
|
|
1188
|
+
account_gte?: InputMaybe<Scalars["String"]>;
|
|
1189
|
+
account_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1190
|
+
account_lt?: InputMaybe<Scalars["String"]>;
|
|
1191
|
+
account_lte?: InputMaybe<Scalars["String"]>;
|
|
1192
|
+
account_not?: InputMaybe<Scalars["String"]>;
|
|
1193
|
+
account_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1194
|
+
account_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1195
|
+
account_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1196
|
+
account_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1197
|
+
account_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1198
|
+
account_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1199
|
+
account_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1200
|
+
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1201
|
+
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1202
|
+
executedBy?: InputMaybe<Scalars["Bytes"]>;
|
|
1203
|
+
executedBy_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1204
|
+
executedBy_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1205
|
+
executedBy_not?: InputMaybe<Scalars["Bytes"]>;
|
|
1206
|
+
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1207
|
+
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1208
|
+
hash?: InputMaybe<Scalars["String"]>;
|
|
1209
|
+
hash_contains?: InputMaybe<Scalars["String"]>;
|
|
1210
|
+
hash_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1211
|
+
hash_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1212
|
+
hash_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1213
|
+
hash_gt?: InputMaybe<Scalars["String"]>;
|
|
1214
|
+
hash_gte?: InputMaybe<Scalars["String"]>;
|
|
1215
|
+
hash_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1216
|
+
hash_lt?: InputMaybe<Scalars["String"]>;
|
|
1217
|
+
hash_lte?: InputMaybe<Scalars["String"]>;
|
|
1218
|
+
hash_not?: InputMaybe<Scalars["String"]>;
|
|
1219
|
+
hash_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1220
|
+
hash_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1221
|
+
hash_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1222
|
+
hash_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1223
|
+
hash_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1224
|
+
hash_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1225
|
+
hash_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1226
|
+
hash_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1227
|
+
hash_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1228
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
1229
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
1230
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
1231
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
1232
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
1233
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
1234
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
1235
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
1236
|
+
timestamp?: InputMaybe<Scalars["BigInt"]>;
|
|
1237
|
+
timestamp_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1238
|
+
timestamp_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1239
|
+
timestamp_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1240
|
+
timestamp_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1241
|
+
timestamp_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1242
|
+
timestamp_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1243
|
+
timestamp_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1244
|
+
type?: InputMaybe<EventType>;
|
|
1245
|
+
type_in?: InputMaybe<Array<EventType>>;
|
|
1246
|
+
type_not?: InputMaybe<EventType>;
|
|
1247
|
+
type_not_in?: InputMaybe<Array<EventType>>;
|
|
1248
|
+
};
|
|
1249
|
+
export declare enum EventLog_OrderBy {
|
|
1250
|
+
Account = "account",
|
|
1251
|
+
ExecutedBy = "executedBy",
|
|
1252
|
+
Hash = "hash",
|
|
1253
|
+
Id = "id",
|
|
1254
|
+
Timestamp = "timestamp",
|
|
1255
|
+
Type = "type"
|
|
1256
|
+
}
|
|
1257
|
+
/**
|
|
1258
|
+
* Events
|
|
1259
|
+
*
|
|
1260
|
+
*/
|
|
1261
|
+
export declare enum EventType {
|
|
1262
|
+
AllowedSellersAdded = "ALLOWED_SELLERS_ADDED",
|
|
1263
|
+
AllowedSellersRemoved = "ALLOWED_SELLERS_REMOVED",
|
|
1264
|
+
/** ExchangeHandler events */
|
|
1265
|
+
BuyerCommitted = "BUYER_COMMITTED",
|
|
1266
|
+
BuyerCreated = "BUYER_CREATED",
|
|
1267
|
+
DisputeDecided = "DISPUTE_DECIDED",
|
|
1268
|
+
DisputeEscalated = "DISPUTE_ESCALATED",
|
|
1269
|
+
DisputeExpired = "DISPUTE_EXPIRED",
|
|
1270
|
+
/** DisputeHandler events */
|
|
1271
|
+
DisputeRaised = "DISPUTE_RAISED",
|
|
1272
|
+
DisputeResolved = "DISPUTE_RESOLVED",
|
|
1273
|
+
DisputeResolverActivated = "DISPUTE_RESOLVER_ACTIVATED",
|
|
1274
|
+
DisputeResolverCreated = "DISPUTE_RESOLVER_CREATED",
|
|
1275
|
+
DisputeResolverFeesAdded = "DISPUTE_RESOLVER_FEES_ADDED",
|
|
1276
|
+
DisputeResolverFeesRemoved = "DISPUTE_RESOLVER_FEES_REMOVED",
|
|
1277
|
+
DisputeResolverUpdated = "DISPUTE_RESOLVER_UPDATED",
|
|
1278
|
+
DisputeRetracted = "DISPUTE_RETRACTED",
|
|
1279
|
+
DisputeTimeoutExtended = "DISPUTE_TIMEOUT_EXTENDED",
|
|
1280
|
+
EscalatedDisputeExpired = "ESCALATED_DISPUTE_EXPIRED",
|
|
1281
|
+
EscalatedDisputeRefused = "ESCALATED_DISPUTE_REFUSED",
|
|
1282
|
+
ExchangeCompleted = "EXCHANGE_COMPLETED",
|
|
1283
|
+
/** FundsHandler events */
|
|
1284
|
+
FundsDeposited = "FUNDS_DEPOSITED",
|
|
1285
|
+
FundsEncumbered = "FUNDS_ENCUMBERED",
|
|
1286
|
+
FundsReleased = "FUNDS_RELEASED",
|
|
1287
|
+
FundsWithdrawn = "FUNDS_WITHDRAWN",
|
|
1288
|
+
/** OfferHandler events */
|
|
1289
|
+
OfferCreated = "OFFER_CREATED",
|
|
1290
|
+
OfferVoided = "OFFER_VOIDED",
|
|
1291
|
+
/** AccountHandler events */
|
|
1292
|
+
SellerCreated = "SELLER_CREATED",
|
|
1293
|
+
SellerUpdated = "SELLER_UPDATED",
|
|
1294
|
+
VoucherCanceled = "VOUCHER_CANCELED",
|
|
1295
|
+
VoucherExtended = "VOUCHER_EXTENDED",
|
|
1296
|
+
VoucherRedeemed = "VOUCHER_REDEEMED",
|
|
1297
|
+
VoucherRevoked = "VOUCHER_REVOKED",
|
|
1298
|
+
VoucherTransferred = "VOUCHER_TRANSFERRED"
|
|
1299
|
+
}
|
|
899
1300
|
export declare type Exchange = {
|
|
900
1301
|
__typename?: "Exchange";
|
|
901
1302
|
buyer: Buyer;
|
|
@@ -903,6 +1304,7 @@ export declare type Exchange = {
|
|
|
903
1304
|
committedDate: Scalars["BigInt"];
|
|
904
1305
|
completedDate?: Maybe<Scalars["BigInt"]>;
|
|
905
1306
|
dispute?: Maybe<Dispute>;
|
|
1307
|
+
disputeResolver: DisputeResolver;
|
|
906
1308
|
disputed: Scalars["Boolean"];
|
|
907
1309
|
disputedDate?: Maybe<Scalars["BigInt"]>;
|
|
908
1310
|
expired: Scalars["Boolean"];
|
|
@@ -915,6 +1317,113 @@ export declare type Exchange = {
|
|
|
915
1317
|
state: ExchangeState;
|
|
916
1318
|
validUntilDate: Scalars["BigInt"];
|
|
917
1319
|
};
|
|
1320
|
+
export declare type ExchangeEventLog = EventLog & {
|
|
1321
|
+
__typename?: "ExchangeEventLog";
|
|
1322
|
+
account: Account;
|
|
1323
|
+
exchange: Exchange;
|
|
1324
|
+
executedBy: Scalars["Bytes"];
|
|
1325
|
+
hash: Scalars["String"];
|
|
1326
|
+
id: Scalars["ID"];
|
|
1327
|
+
timestamp: Scalars["BigInt"];
|
|
1328
|
+
type: EventType;
|
|
1329
|
+
};
|
|
1330
|
+
export declare type ExchangeEventLog_Filter = {
|
|
1331
|
+
account?: InputMaybe<Scalars["String"]>;
|
|
1332
|
+
account_contains?: InputMaybe<Scalars["String"]>;
|
|
1333
|
+
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1334
|
+
account_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1335
|
+
account_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1336
|
+
account_gt?: InputMaybe<Scalars["String"]>;
|
|
1337
|
+
account_gte?: InputMaybe<Scalars["String"]>;
|
|
1338
|
+
account_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1339
|
+
account_lt?: InputMaybe<Scalars["String"]>;
|
|
1340
|
+
account_lte?: InputMaybe<Scalars["String"]>;
|
|
1341
|
+
account_not?: InputMaybe<Scalars["String"]>;
|
|
1342
|
+
account_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1343
|
+
account_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1344
|
+
account_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1345
|
+
account_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1346
|
+
account_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1347
|
+
account_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1348
|
+
account_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1349
|
+
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1350
|
+
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1351
|
+
exchange?: InputMaybe<Scalars["String"]>;
|
|
1352
|
+
exchange_contains?: InputMaybe<Scalars["String"]>;
|
|
1353
|
+
exchange_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1354
|
+
exchange_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1355
|
+
exchange_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1356
|
+
exchange_gt?: InputMaybe<Scalars["String"]>;
|
|
1357
|
+
exchange_gte?: InputMaybe<Scalars["String"]>;
|
|
1358
|
+
exchange_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1359
|
+
exchange_lt?: InputMaybe<Scalars["String"]>;
|
|
1360
|
+
exchange_lte?: InputMaybe<Scalars["String"]>;
|
|
1361
|
+
exchange_not?: InputMaybe<Scalars["String"]>;
|
|
1362
|
+
exchange_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1363
|
+
exchange_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1364
|
+
exchange_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1365
|
+
exchange_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1366
|
+
exchange_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1367
|
+
exchange_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1368
|
+
exchange_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1369
|
+
exchange_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1370
|
+
exchange_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1371
|
+
executedBy?: InputMaybe<Scalars["Bytes"]>;
|
|
1372
|
+
executedBy_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1373
|
+
executedBy_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1374
|
+
executedBy_not?: InputMaybe<Scalars["Bytes"]>;
|
|
1375
|
+
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1376
|
+
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1377
|
+
hash?: InputMaybe<Scalars["String"]>;
|
|
1378
|
+
hash_contains?: InputMaybe<Scalars["String"]>;
|
|
1379
|
+
hash_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1380
|
+
hash_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1381
|
+
hash_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1382
|
+
hash_gt?: InputMaybe<Scalars["String"]>;
|
|
1383
|
+
hash_gte?: InputMaybe<Scalars["String"]>;
|
|
1384
|
+
hash_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1385
|
+
hash_lt?: InputMaybe<Scalars["String"]>;
|
|
1386
|
+
hash_lte?: InputMaybe<Scalars["String"]>;
|
|
1387
|
+
hash_not?: InputMaybe<Scalars["String"]>;
|
|
1388
|
+
hash_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1389
|
+
hash_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1390
|
+
hash_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1391
|
+
hash_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1392
|
+
hash_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1393
|
+
hash_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1394
|
+
hash_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1395
|
+
hash_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1396
|
+
hash_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1397
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
1398
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
1399
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
1400
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
1401
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
1402
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
1403
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
1404
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
1405
|
+
timestamp?: InputMaybe<Scalars["BigInt"]>;
|
|
1406
|
+
timestamp_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1407
|
+
timestamp_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1408
|
+
timestamp_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1409
|
+
timestamp_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1410
|
+
timestamp_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1411
|
+
timestamp_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1412
|
+
timestamp_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1413
|
+
type?: InputMaybe<EventType>;
|
|
1414
|
+
type_in?: InputMaybe<Array<EventType>>;
|
|
1415
|
+
type_not?: InputMaybe<EventType>;
|
|
1416
|
+
type_not_in?: InputMaybe<Array<EventType>>;
|
|
1417
|
+
};
|
|
1418
|
+
export declare enum ExchangeEventLog_OrderBy {
|
|
1419
|
+
Account = "account",
|
|
1420
|
+
Exchange = "exchange",
|
|
1421
|
+
ExecutedBy = "executedBy",
|
|
1422
|
+
Hash = "hash",
|
|
1423
|
+
Id = "id",
|
|
1424
|
+
Timestamp = "timestamp",
|
|
1425
|
+
Type = "type"
|
|
1426
|
+
}
|
|
918
1427
|
/**
|
|
919
1428
|
* Exchange and Voucher
|
|
920
1429
|
*
|
|
@@ -1082,6 +1591,26 @@ export declare type Exchange_Filter = {
|
|
|
1082
1591
|
completedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1083
1592
|
completedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1084
1593
|
dispute?: InputMaybe<Scalars["String"]>;
|
|
1594
|
+
disputeResolver?: InputMaybe<Scalars["String"]>;
|
|
1595
|
+
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
1596
|
+
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1597
|
+
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1598
|
+
disputeResolver_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1599
|
+
disputeResolver_gt?: InputMaybe<Scalars["String"]>;
|
|
1600
|
+
disputeResolver_gte?: InputMaybe<Scalars["String"]>;
|
|
1601
|
+
disputeResolver_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1602
|
+
disputeResolver_lt?: InputMaybe<Scalars["String"]>;
|
|
1603
|
+
disputeResolver_lte?: InputMaybe<Scalars["String"]>;
|
|
1604
|
+
disputeResolver_not?: InputMaybe<Scalars["String"]>;
|
|
1605
|
+
disputeResolver_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1606
|
+
disputeResolver_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1607
|
+
disputeResolver_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1608
|
+
disputeResolver_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1609
|
+
disputeResolver_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1610
|
+
disputeResolver_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1611
|
+
disputeResolver_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1612
|
+
disputeResolver_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1613
|
+
disputeResolver_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1085
1614
|
dispute_contains?: InputMaybe<Scalars["String"]>;
|
|
1086
1615
|
dispute_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1087
1616
|
dispute_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1208,6 +1737,7 @@ export declare enum Exchange_OrderBy {
|
|
|
1208
1737
|
CommittedDate = "committedDate",
|
|
1209
1738
|
CompletedDate = "completedDate",
|
|
1210
1739
|
Dispute = "dispute",
|
|
1740
|
+
DisputeResolver = "disputeResolver",
|
|
1211
1741
|
Disputed = "disputed",
|
|
1212
1742
|
DisputedDate = "disputedDate",
|
|
1213
1743
|
Expired = "expired",
|
|
@@ -1313,6 +1843,113 @@ export declare enum FundsEntity_OrderBy {
|
|
|
1313
1843
|
Token = "token",
|
|
1314
1844
|
TokenAddress = "tokenAddress"
|
|
1315
1845
|
}
|
|
1846
|
+
export declare type FundsEventLog = EventLog & {
|
|
1847
|
+
__typename?: "FundsEventLog";
|
|
1848
|
+
account: Account;
|
|
1849
|
+
executedBy: Scalars["Bytes"];
|
|
1850
|
+
funds: FundsEntity;
|
|
1851
|
+
hash: Scalars["String"];
|
|
1852
|
+
id: Scalars["ID"];
|
|
1853
|
+
timestamp: Scalars["BigInt"];
|
|
1854
|
+
type: EventType;
|
|
1855
|
+
};
|
|
1856
|
+
export declare type FundsEventLog_Filter = {
|
|
1857
|
+
account?: InputMaybe<Scalars["String"]>;
|
|
1858
|
+
account_contains?: InputMaybe<Scalars["String"]>;
|
|
1859
|
+
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1860
|
+
account_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1861
|
+
account_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1862
|
+
account_gt?: InputMaybe<Scalars["String"]>;
|
|
1863
|
+
account_gte?: InputMaybe<Scalars["String"]>;
|
|
1864
|
+
account_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1865
|
+
account_lt?: InputMaybe<Scalars["String"]>;
|
|
1866
|
+
account_lte?: InputMaybe<Scalars["String"]>;
|
|
1867
|
+
account_not?: InputMaybe<Scalars["String"]>;
|
|
1868
|
+
account_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1869
|
+
account_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1870
|
+
account_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1871
|
+
account_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1872
|
+
account_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1873
|
+
account_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1874
|
+
account_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1875
|
+
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1876
|
+
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1877
|
+
executedBy?: InputMaybe<Scalars["Bytes"]>;
|
|
1878
|
+
executedBy_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1879
|
+
executedBy_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1880
|
+
executedBy_not?: InputMaybe<Scalars["Bytes"]>;
|
|
1881
|
+
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1882
|
+
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1883
|
+
funds?: InputMaybe<Scalars["String"]>;
|
|
1884
|
+
funds_contains?: InputMaybe<Scalars["String"]>;
|
|
1885
|
+
funds_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1886
|
+
funds_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1887
|
+
funds_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1888
|
+
funds_gt?: InputMaybe<Scalars["String"]>;
|
|
1889
|
+
funds_gte?: InputMaybe<Scalars["String"]>;
|
|
1890
|
+
funds_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1891
|
+
funds_lt?: InputMaybe<Scalars["String"]>;
|
|
1892
|
+
funds_lte?: InputMaybe<Scalars["String"]>;
|
|
1893
|
+
funds_not?: InputMaybe<Scalars["String"]>;
|
|
1894
|
+
funds_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1895
|
+
funds_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1896
|
+
funds_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1897
|
+
funds_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1898
|
+
funds_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1899
|
+
funds_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1900
|
+
funds_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1901
|
+
funds_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1902
|
+
funds_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1903
|
+
hash?: InputMaybe<Scalars["String"]>;
|
|
1904
|
+
hash_contains?: InputMaybe<Scalars["String"]>;
|
|
1905
|
+
hash_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1906
|
+
hash_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1907
|
+
hash_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1908
|
+
hash_gt?: InputMaybe<Scalars["String"]>;
|
|
1909
|
+
hash_gte?: InputMaybe<Scalars["String"]>;
|
|
1910
|
+
hash_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1911
|
+
hash_lt?: InputMaybe<Scalars["String"]>;
|
|
1912
|
+
hash_lte?: InputMaybe<Scalars["String"]>;
|
|
1913
|
+
hash_not?: InputMaybe<Scalars["String"]>;
|
|
1914
|
+
hash_not_contains?: InputMaybe<Scalars["String"]>;
|
|
1915
|
+
hash_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1916
|
+
hash_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
1917
|
+
hash_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1918
|
+
hash_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
1919
|
+
hash_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1920
|
+
hash_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1921
|
+
hash_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1922
|
+
hash_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1923
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
1924
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
1925
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
1926
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
1927
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
1928
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
1929
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
1930
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
1931
|
+
timestamp?: InputMaybe<Scalars["BigInt"]>;
|
|
1932
|
+
timestamp_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1933
|
+
timestamp_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1934
|
+
timestamp_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1935
|
+
timestamp_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1936
|
+
timestamp_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1937
|
+
timestamp_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1938
|
+
timestamp_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1939
|
+
type?: InputMaybe<EventType>;
|
|
1940
|
+
type_in?: InputMaybe<Array<EventType>>;
|
|
1941
|
+
type_not?: InputMaybe<EventType>;
|
|
1942
|
+
type_not_in?: InputMaybe<Array<EventType>>;
|
|
1943
|
+
};
|
|
1944
|
+
export declare enum FundsEventLog_OrderBy {
|
|
1945
|
+
Account = "account",
|
|
1946
|
+
ExecutedBy = "executedBy",
|
|
1947
|
+
Funds = "funds",
|
|
1948
|
+
Hash = "hash",
|
|
1949
|
+
Id = "id",
|
|
1950
|
+
Timestamp = "timestamp",
|
|
1951
|
+
Type = "type"
|
|
1952
|
+
}
|
|
1316
1953
|
export declare type MetadataAttribute = {
|
|
1317
1954
|
__typename?: "MetadataAttribute";
|
|
1318
1955
|
displayType: Scalars["String"];
|
|
@@ -1413,6 +2050,8 @@ export declare type MetadataInterface = {
|
|
|
1413
2050
|
id: Scalars["ID"];
|
|
1414
2051
|
image: Scalars["String"];
|
|
1415
2052
|
name: Scalars["String"];
|
|
2053
|
+
numberOfCommits: Scalars["BigInt"];
|
|
2054
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
1416
2055
|
/**
|
|
1417
2056
|
* References to entities
|
|
1418
2057
|
*
|
|
@@ -1556,6 +2195,22 @@ export declare type MetadataInterface_Filter = {
|
|
|
1556
2195
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1557
2196
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1558
2197
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2198
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
2199
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2200
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2201
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2202
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2203
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2204
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2205
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2206
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
2207
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2208
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2209
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2210
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2211
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2212
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2213
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1559
2214
|
offer?: InputMaybe<Scalars["String"]>;
|
|
1560
2215
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
1561
2216
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1658,6 +2313,8 @@ export declare enum MetadataInterface_OrderBy {
|
|
|
1658
2313
|
Id = "id",
|
|
1659
2314
|
Image = "image",
|
|
1660
2315
|
Name = "name",
|
|
2316
|
+
NumberOfCommits = "numberOfCommits",
|
|
2317
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
1661
2318
|
Offer = "offer",
|
|
1662
2319
|
QuantityAvailable = "quantityAvailable",
|
|
1663
2320
|
SchemaUrl = "schemaUrl",
|
|
@@ -1692,6 +2349,9 @@ export declare type Offer = {
|
|
|
1692
2349
|
metadata?: Maybe<MetadataInterface>;
|
|
1693
2350
|
metadataHash: Scalars["String"];
|
|
1694
2351
|
metadataUri: Scalars["String"];
|
|
2352
|
+
/** Stats */
|
|
2353
|
+
numberOfCommits: Scalars["BigInt"];
|
|
2354
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
1695
2355
|
price: Scalars["BigInt"];
|
|
1696
2356
|
protocolFee: Scalars["BigInt"];
|
|
1697
2357
|
quantityAvailable: Scalars["BigInt"];
|
|
@@ -1720,6 +2380,113 @@ export declare type OfferExchangesArgs = {
|
|
|
1720
2380
|
skip?: InputMaybe<Scalars["Int"]>;
|
|
1721
2381
|
where?: InputMaybe<Exchange_Filter>;
|
|
1722
2382
|
};
|
|
2383
|
+
export declare type OfferEventLog = EventLog & {
|
|
2384
|
+
__typename?: "OfferEventLog";
|
|
2385
|
+
account: Account;
|
|
2386
|
+
executedBy: Scalars["Bytes"];
|
|
2387
|
+
hash: Scalars["String"];
|
|
2388
|
+
id: Scalars["ID"];
|
|
2389
|
+
offer: Offer;
|
|
2390
|
+
timestamp: Scalars["BigInt"];
|
|
2391
|
+
type: EventType;
|
|
2392
|
+
};
|
|
2393
|
+
export declare type OfferEventLog_Filter = {
|
|
2394
|
+
account?: InputMaybe<Scalars["String"]>;
|
|
2395
|
+
account_contains?: InputMaybe<Scalars["String"]>;
|
|
2396
|
+
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2397
|
+
account_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2398
|
+
account_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2399
|
+
account_gt?: InputMaybe<Scalars["String"]>;
|
|
2400
|
+
account_gte?: InputMaybe<Scalars["String"]>;
|
|
2401
|
+
account_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2402
|
+
account_lt?: InputMaybe<Scalars["String"]>;
|
|
2403
|
+
account_lte?: InputMaybe<Scalars["String"]>;
|
|
2404
|
+
account_not?: InputMaybe<Scalars["String"]>;
|
|
2405
|
+
account_not_contains?: InputMaybe<Scalars["String"]>;
|
|
2406
|
+
account_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2407
|
+
account_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2408
|
+
account_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2409
|
+
account_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2410
|
+
account_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2411
|
+
account_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2412
|
+
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2413
|
+
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2414
|
+
executedBy?: InputMaybe<Scalars["Bytes"]>;
|
|
2415
|
+
executedBy_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
2416
|
+
executedBy_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
2417
|
+
executedBy_not?: InputMaybe<Scalars["Bytes"]>;
|
|
2418
|
+
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
2419
|
+
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
2420
|
+
hash?: InputMaybe<Scalars["String"]>;
|
|
2421
|
+
hash_contains?: InputMaybe<Scalars["String"]>;
|
|
2422
|
+
hash_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2423
|
+
hash_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2424
|
+
hash_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2425
|
+
hash_gt?: InputMaybe<Scalars["String"]>;
|
|
2426
|
+
hash_gte?: InputMaybe<Scalars["String"]>;
|
|
2427
|
+
hash_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2428
|
+
hash_lt?: InputMaybe<Scalars["String"]>;
|
|
2429
|
+
hash_lte?: InputMaybe<Scalars["String"]>;
|
|
2430
|
+
hash_not?: InputMaybe<Scalars["String"]>;
|
|
2431
|
+
hash_not_contains?: InputMaybe<Scalars["String"]>;
|
|
2432
|
+
hash_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2433
|
+
hash_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2434
|
+
hash_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2435
|
+
hash_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2436
|
+
hash_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2437
|
+
hash_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2438
|
+
hash_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2439
|
+
hash_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2440
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
2441
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
2442
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
2443
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
2444
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
2445
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
2446
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
2447
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
2448
|
+
offer?: InputMaybe<Scalars["String"]>;
|
|
2449
|
+
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
2450
|
+
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2451
|
+
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2452
|
+
offer_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2453
|
+
offer_gt?: InputMaybe<Scalars["String"]>;
|
|
2454
|
+
offer_gte?: InputMaybe<Scalars["String"]>;
|
|
2455
|
+
offer_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2456
|
+
offer_lt?: InputMaybe<Scalars["String"]>;
|
|
2457
|
+
offer_lte?: InputMaybe<Scalars["String"]>;
|
|
2458
|
+
offer_not?: InputMaybe<Scalars["String"]>;
|
|
2459
|
+
offer_not_contains?: InputMaybe<Scalars["String"]>;
|
|
2460
|
+
offer_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2461
|
+
offer_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2462
|
+
offer_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2463
|
+
offer_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2464
|
+
offer_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2465
|
+
offer_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2466
|
+
offer_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2467
|
+
offer_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2468
|
+
timestamp?: InputMaybe<Scalars["BigInt"]>;
|
|
2469
|
+
timestamp_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2470
|
+
timestamp_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2471
|
+
timestamp_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2472
|
+
timestamp_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2473
|
+
timestamp_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2474
|
+
timestamp_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2475
|
+
timestamp_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2476
|
+
type?: InputMaybe<EventType>;
|
|
2477
|
+
type_in?: InputMaybe<Array<EventType>>;
|
|
2478
|
+
type_not?: InputMaybe<EventType>;
|
|
2479
|
+
type_not_in?: InputMaybe<Array<EventType>>;
|
|
2480
|
+
};
|
|
2481
|
+
export declare enum OfferEventLog_OrderBy {
|
|
2482
|
+
Account = "account",
|
|
2483
|
+
ExecutedBy = "executedBy",
|
|
2484
|
+
Hash = "hash",
|
|
2485
|
+
Id = "id",
|
|
2486
|
+
Offer = "offer",
|
|
2487
|
+
Timestamp = "timestamp",
|
|
2488
|
+
Type = "type"
|
|
2489
|
+
}
|
|
1723
2490
|
export declare type Offer_Filter = {
|
|
1724
2491
|
agentFee?: InputMaybe<Scalars["BigInt"]>;
|
|
1725
2492
|
agentFee_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -1897,6 +2664,22 @@ export declare type Offer_Filter = {
|
|
|
1897
2664
|
metadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1898
2665
|
metadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1899
2666
|
metadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2667
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
2668
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2669
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2670
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2671
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2672
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2673
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2674
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2675
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
2676
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2677
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2678
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2679
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2680
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2681
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2682
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1900
2683
|
price?: InputMaybe<Scalars["BigInt"]>;
|
|
1901
2684
|
price_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1902
2685
|
price_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -2041,6 +2824,8 @@ export declare enum Offer_OrderBy {
|
|
|
2041
2824
|
Metadata = "metadata",
|
|
2042
2825
|
MetadataHash = "metadataHash",
|
|
2043
2826
|
MetadataUri = "metadataUri",
|
|
2827
|
+
NumberOfCommits = "numberOfCommits",
|
|
2828
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
2044
2829
|
Price = "price",
|
|
2045
2830
|
ProtocolFee = "protocolFee",
|
|
2046
2831
|
QuantityAvailable = "quantityAvailable",
|
|
@@ -2332,6 +3117,8 @@ export declare type ProductV1MetadataEntity = MetadataInterface & {
|
|
|
2332
3117
|
id: Scalars["ID"];
|
|
2333
3118
|
image: Scalars["String"];
|
|
2334
3119
|
name: Scalars["String"];
|
|
3120
|
+
numberOfCommits: Scalars["BigInt"];
|
|
3121
|
+
numberOfRedemptions: Scalars["BigInt"];
|
|
2335
3122
|
/**
|
|
2336
3123
|
* References to entities
|
|
2337
3124
|
*
|
|
@@ -2513,6 +3300,22 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
2513
3300
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2514
3301
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2515
3302
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3303
|
+
numberOfCommits?: InputMaybe<Scalars["BigInt"]>;
|
|
3304
|
+
numberOfCommits_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
3305
|
+
numberOfCommits_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
3306
|
+
numberOfCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
3307
|
+
numberOfCommits_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
3308
|
+
numberOfCommits_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
3309
|
+
numberOfCommits_not?: InputMaybe<Scalars["BigInt"]>;
|
|
3310
|
+
numberOfCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
3311
|
+
numberOfRedemptions?: InputMaybe<Scalars["BigInt"]>;
|
|
3312
|
+
numberOfRedemptions_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
3313
|
+
numberOfRedemptions_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
3314
|
+
numberOfRedemptions_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
3315
|
+
numberOfRedemptions_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
3316
|
+
numberOfRedemptions_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
3317
|
+
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
3318
|
+
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2516
3319
|
offer?: InputMaybe<Scalars["String"]>;
|
|
2517
3320
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
2518
3321
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2722,6 +3525,8 @@ export declare enum ProductV1MetadataEntity_OrderBy {
|
|
|
2722
3525
|
Id = "id",
|
|
2723
3526
|
Image = "image",
|
|
2724
3527
|
Name = "name",
|
|
3528
|
+
NumberOfCommits = "numberOfCommits",
|
|
3529
|
+
NumberOfRedemptions = "numberOfRedemptions",
|
|
2725
3530
|
Offer = "offer",
|
|
2726
3531
|
Product = "product",
|
|
2727
3532
|
ProductOverrides = "productOverrides",
|
|
@@ -4453,12 +5258,16 @@ export declare type Query = {
|
|
|
4453
5258
|
/** Access to subgraph metadata */
|
|
4454
5259
|
_meta?: Maybe<_Meta_>;
|
|
4455
5260
|
account?: Maybe<Account>;
|
|
5261
|
+
accountEventLog?: Maybe<AccountEventLog>;
|
|
5262
|
+
accountEventLogs: Array<AccountEventLog>;
|
|
4456
5263
|
accounts: Array<Account>;
|
|
4457
5264
|
baseMetadataEntities: Array<BaseMetadataEntity>;
|
|
4458
5265
|
baseMetadataEntity?: Maybe<BaseMetadataEntity>;
|
|
4459
5266
|
buyer?: Maybe<Buyer>;
|
|
4460
5267
|
buyers: Array<Buyer>;
|
|
4461
5268
|
dispute?: Maybe<Dispute>;
|
|
5269
|
+
disputeEventLog?: Maybe<DisputeEventLog>;
|
|
5270
|
+
disputeEventLogs: Array<DisputeEventLog>;
|
|
4462
5271
|
disputeResolutionTermsEntities: Array<DisputeResolutionTermsEntity>;
|
|
4463
5272
|
disputeResolutionTermsEntity?: Maybe<DisputeResolutionTermsEntity>;
|
|
4464
5273
|
disputeResolver?: Maybe<DisputeResolver>;
|
|
@@ -4466,17 +5275,25 @@ export declare type Query = {
|
|
|
4466
5275
|
disputeResolverFees: Array<DisputeResolverFee>;
|
|
4467
5276
|
disputeResolvers: Array<DisputeResolver>;
|
|
4468
5277
|
disputes: Array<Dispute>;
|
|
5278
|
+
eventLog?: Maybe<EventLog>;
|
|
5279
|
+
eventLogs: Array<EventLog>;
|
|
4469
5280
|
exchange?: Maybe<Exchange>;
|
|
5281
|
+
exchangeEventLog?: Maybe<ExchangeEventLog>;
|
|
5282
|
+
exchangeEventLogs: Array<ExchangeEventLog>;
|
|
4470
5283
|
exchangeToken?: Maybe<ExchangeToken>;
|
|
4471
5284
|
exchangeTokens: Array<ExchangeToken>;
|
|
4472
5285
|
exchanges: Array<Exchange>;
|
|
4473
5286
|
fundsEntities: Array<FundsEntity>;
|
|
4474
5287
|
fundsEntity?: Maybe<FundsEntity>;
|
|
5288
|
+
fundsEventLog?: Maybe<FundsEventLog>;
|
|
5289
|
+
fundsEventLogs: Array<FundsEventLog>;
|
|
4475
5290
|
metadataAttribute?: Maybe<MetadataAttribute>;
|
|
4476
5291
|
metadataAttributes: Array<MetadataAttribute>;
|
|
4477
5292
|
metadataInterface?: Maybe<MetadataInterface>;
|
|
4478
5293
|
metadataInterfaces: Array<MetadataInterface>;
|
|
4479
5294
|
offer?: Maybe<Offer>;
|
|
5295
|
+
offerEventLog?: Maybe<OfferEventLog>;
|
|
5296
|
+
offerEventLogs: Array<OfferEventLog>;
|
|
4480
5297
|
offers: Array<Offer>;
|
|
4481
5298
|
productV1Brand?: Maybe<ProductV1Brand>;
|
|
4482
5299
|
productV1Brands: Array<ProductV1Brand>;
|
|
@@ -4518,6 +5335,20 @@ export declare type QueryAccountArgs = {
|
|
|
4518
5335
|
id: Scalars["ID"];
|
|
4519
5336
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
4520
5337
|
};
|
|
5338
|
+
export declare type QueryAccountEventLogArgs = {
|
|
5339
|
+
block?: InputMaybe<Block_Height>;
|
|
5340
|
+
id: Scalars["ID"];
|
|
5341
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5342
|
+
};
|
|
5343
|
+
export declare type QueryAccountEventLogsArgs = {
|
|
5344
|
+
block?: InputMaybe<Block_Height>;
|
|
5345
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
5346
|
+
orderBy?: InputMaybe<AccountEventLog_OrderBy>;
|
|
5347
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5348
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
5349
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5350
|
+
where?: InputMaybe<AccountEventLog_Filter>;
|
|
5351
|
+
};
|
|
4521
5352
|
export declare type QueryAccountsArgs = {
|
|
4522
5353
|
block?: InputMaybe<Block_Height>;
|
|
4523
5354
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -4560,6 +5391,20 @@ export declare type QueryDisputeArgs = {
|
|
|
4560
5391
|
id: Scalars["ID"];
|
|
4561
5392
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
4562
5393
|
};
|
|
5394
|
+
export declare type QueryDisputeEventLogArgs = {
|
|
5395
|
+
block?: InputMaybe<Block_Height>;
|
|
5396
|
+
id: Scalars["ID"];
|
|
5397
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5398
|
+
};
|
|
5399
|
+
export declare type QueryDisputeEventLogsArgs = {
|
|
5400
|
+
block?: InputMaybe<Block_Height>;
|
|
5401
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
5402
|
+
orderBy?: InputMaybe<DisputeEventLog_OrderBy>;
|
|
5403
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5404
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
5405
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5406
|
+
where?: InputMaybe<DisputeEventLog_Filter>;
|
|
5407
|
+
};
|
|
4563
5408
|
export declare type QueryDisputeResolutionTermsEntitiesArgs = {
|
|
4564
5409
|
block?: InputMaybe<Block_Height>;
|
|
4565
5410
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -4611,11 +5456,39 @@ export declare type QueryDisputesArgs = {
|
|
|
4611
5456
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
4612
5457
|
where?: InputMaybe<Dispute_Filter>;
|
|
4613
5458
|
};
|
|
5459
|
+
export declare type QueryEventLogArgs = {
|
|
5460
|
+
block?: InputMaybe<Block_Height>;
|
|
5461
|
+
id: Scalars["ID"];
|
|
5462
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5463
|
+
};
|
|
5464
|
+
export declare type QueryEventLogsArgs = {
|
|
5465
|
+
block?: InputMaybe<Block_Height>;
|
|
5466
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
5467
|
+
orderBy?: InputMaybe<EventLog_OrderBy>;
|
|
5468
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5469
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
5470
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5471
|
+
where?: InputMaybe<EventLog_Filter>;
|
|
5472
|
+
};
|
|
4614
5473
|
export declare type QueryExchangeArgs = {
|
|
4615
5474
|
block?: InputMaybe<Block_Height>;
|
|
4616
5475
|
id: Scalars["ID"];
|
|
4617
5476
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
4618
5477
|
};
|
|
5478
|
+
export declare type QueryExchangeEventLogArgs = {
|
|
5479
|
+
block?: InputMaybe<Block_Height>;
|
|
5480
|
+
id: Scalars["ID"];
|
|
5481
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5482
|
+
};
|
|
5483
|
+
export declare type QueryExchangeEventLogsArgs = {
|
|
5484
|
+
block?: InputMaybe<Block_Height>;
|
|
5485
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
5486
|
+
orderBy?: InputMaybe<ExchangeEventLog_OrderBy>;
|
|
5487
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5488
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
5489
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5490
|
+
where?: InputMaybe<ExchangeEventLog_Filter>;
|
|
5491
|
+
};
|
|
4619
5492
|
export declare type QueryExchangeTokenArgs = {
|
|
4620
5493
|
block?: InputMaybe<Block_Height>;
|
|
4621
5494
|
id: Scalars["ID"];
|
|
@@ -4653,6 +5526,20 @@ export declare type QueryFundsEntityArgs = {
|
|
|
4653
5526
|
id: Scalars["ID"];
|
|
4654
5527
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
4655
5528
|
};
|
|
5529
|
+
export declare type QueryFundsEventLogArgs = {
|
|
5530
|
+
block?: InputMaybe<Block_Height>;
|
|
5531
|
+
id: Scalars["ID"];
|
|
5532
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5533
|
+
};
|
|
5534
|
+
export declare type QueryFundsEventLogsArgs = {
|
|
5535
|
+
block?: InputMaybe<Block_Height>;
|
|
5536
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
5537
|
+
orderBy?: InputMaybe<FundsEventLog_OrderBy>;
|
|
5538
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5539
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
5540
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5541
|
+
where?: InputMaybe<FundsEventLog_Filter>;
|
|
5542
|
+
};
|
|
4656
5543
|
export declare type QueryMetadataAttributeArgs = {
|
|
4657
5544
|
block?: InputMaybe<Block_Height>;
|
|
4658
5545
|
id: Scalars["ID"];
|
|
@@ -4686,6 +5573,20 @@ export declare type QueryOfferArgs = {
|
|
|
4686
5573
|
id: Scalars["ID"];
|
|
4687
5574
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
4688
5575
|
};
|
|
5576
|
+
export declare type QueryOfferEventLogArgs = {
|
|
5577
|
+
block?: InputMaybe<Block_Height>;
|
|
5578
|
+
id: Scalars["ID"];
|
|
5579
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5580
|
+
};
|
|
5581
|
+
export declare type QueryOfferEventLogsArgs = {
|
|
5582
|
+
block?: InputMaybe<Block_Height>;
|
|
5583
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
5584
|
+
orderBy?: InputMaybe<OfferEventLog_OrderBy>;
|
|
5585
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5586
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
5587
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5588
|
+
where?: InputMaybe<OfferEventLog_Filter>;
|
|
5589
|
+
};
|
|
4689
5590
|
export declare type QueryOffersArgs = {
|
|
4690
5591
|
block?: InputMaybe<Block_Height>;
|
|
4691
5592
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -4924,6 +5825,7 @@ export declare type Seller = Account & {
|
|
|
4924
5825
|
exchanges: Array<Exchange>;
|
|
4925
5826
|
funds: Array<FundsEntity>;
|
|
4926
5827
|
id: Scalars["ID"];
|
|
5828
|
+
logs: Array<EventLog>;
|
|
4927
5829
|
offers: Array<Offer>;
|
|
4928
5830
|
operator: Scalars["Bytes"];
|
|
4929
5831
|
sellerId: Scalars["BigInt"];
|
|
@@ -4944,6 +5846,13 @@ export declare type SellerFundsArgs = {
|
|
|
4944
5846
|
skip?: InputMaybe<Scalars["Int"]>;
|
|
4945
5847
|
where?: InputMaybe<FundsEntity_Filter>;
|
|
4946
5848
|
};
|
|
5849
|
+
export declare type SellerLogsArgs = {
|
|
5850
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
5851
|
+
orderBy?: InputMaybe<EventLog_OrderBy>;
|
|
5852
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5853
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
5854
|
+
where?: InputMaybe<EventLog_Filter>;
|
|
5855
|
+
};
|
|
4947
5856
|
export declare type SellerOffersArgs = {
|
|
4948
5857
|
first?: InputMaybe<Scalars["Int"]>;
|
|
4949
5858
|
orderBy?: InputMaybe<Offer_OrderBy>;
|
|
@@ -5028,6 +5937,7 @@ export declare enum Seller_OrderBy {
|
|
|
5028
5937
|
Exchanges = "exchanges",
|
|
5029
5938
|
Funds = "funds",
|
|
5030
5939
|
Id = "id",
|
|
5940
|
+
Logs = "logs",
|
|
5031
5941
|
Offers = "offers",
|
|
5032
5942
|
Operator = "operator",
|
|
5033
5943
|
SellerId = "sellerId",
|
|
@@ -5039,12 +5949,16 @@ export declare type Subscription = {
|
|
|
5039
5949
|
/** Access to subgraph metadata */
|
|
5040
5950
|
_meta?: Maybe<_Meta_>;
|
|
5041
5951
|
account?: Maybe<Account>;
|
|
5952
|
+
accountEventLog?: Maybe<AccountEventLog>;
|
|
5953
|
+
accountEventLogs: Array<AccountEventLog>;
|
|
5042
5954
|
accounts: Array<Account>;
|
|
5043
5955
|
baseMetadataEntities: Array<BaseMetadataEntity>;
|
|
5044
5956
|
baseMetadataEntity?: Maybe<BaseMetadataEntity>;
|
|
5045
5957
|
buyer?: Maybe<Buyer>;
|
|
5046
5958
|
buyers: Array<Buyer>;
|
|
5047
5959
|
dispute?: Maybe<Dispute>;
|
|
5960
|
+
disputeEventLog?: Maybe<DisputeEventLog>;
|
|
5961
|
+
disputeEventLogs: Array<DisputeEventLog>;
|
|
5048
5962
|
disputeResolutionTermsEntities: Array<DisputeResolutionTermsEntity>;
|
|
5049
5963
|
disputeResolutionTermsEntity?: Maybe<DisputeResolutionTermsEntity>;
|
|
5050
5964
|
disputeResolver?: Maybe<DisputeResolver>;
|
|
@@ -5052,17 +5966,25 @@ export declare type Subscription = {
|
|
|
5052
5966
|
disputeResolverFees: Array<DisputeResolverFee>;
|
|
5053
5967
|
disputeResolvers: Array<DisputeResolver>;
|
|
5054
5968
|
disputes: Array<Dispute>;
|
|
5969
|
+
eventLog?: Maybe<EventLog>;
|
|
5970
|
+
eventLogs: Array<EventLog>;
|
|
5055
5971
|
exchange?: Maybe<Exchange>;
|
|
5972
|
+
exchangeEventLog?: Maybe<ExchangeEventLog>;
|
|
5973
|
+
exchangeEventLogs: Array<ExchangeEventLog>;
|
|
5056
5974
|
exchangeToken?: Maybe<ExchangeToken>;
|
|
5057
5975
|
exchangeTokens: Array<ExchangeToken>;
|
|
5058
5976
|
exchanges: Array<Exchange>;
|
|
5059
5977
|
fundsEntities: Array<FundsEntity>;
|
|
5060
5978
|
fundsEntity?: Maybe<FundsEntity>;
|
|
5979
|
+
fundsEventLog?: Maybe<FundsEventLog>;
|
|
5980
|
+
fundsEventLogs: Array<FundsEventLog>;
|
|
5061
5981
|
metadataAttribute?: Maybe<MetadataAttribute>;
|
|
5062
5982
|
metadataAttributes: Array<MetadataAttribute>;
|
|
5063
5983
|
metadataInterface?: Maybe<MetadataInterface>;
|
|
5064
5984
|
metadataInterfaces: Array<MetadataInterface>;
|
|
5065
5985
|
offer?: Maybe<Offer>;
|
|
5986
|
+
offerEventLog?: Maybe<OfferEventLog>;
|
|
5987
|
+
offerEventLogs: Array<OfferEventLog>;
|
|
5066
5988
|
offers: Array<Offer>;
|
|
5067
5989
|
productV1Brand?: Maybe<ProductV1Brand>;
|
|
5068
5990
|
productV1Brands: Array<ProductV1Brand>;
|
|
@@ -5104,6 +6026,20 @@ export declare type SubscriptionAccountArgs = {
|
|
|
5104
6026
|
id: Scalars["ID"];
|
|
5105
6027
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5106
6028
|
};
|
|
6029
|
+
export declare type SubscriptionAccountEventLogArgs = {
|
|
6030
|
+
block?: InputMaybe<Block_Height>;
|
|
6031
|
+
id: Scalars["ID"];
|
|
6032
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6033
|
+
};
|
|
6034
|
+
export declare type SubscriptionAccountEventLogsArgs = {
|
|
6035
|
+
block?: InputMaybe<Block_Height>;
|
|
6036
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6037
|
+
orderBy?: InputMaybe<AccountEventLog_OrderBy>;
|
|
6038
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6039
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6040
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6041
|
+
where?: InputMaybe<AccountEventLog_Filter>;
|
|
6042
|
+
};
|
|
5107
6043
|
export declare type SubscriptionAccountsArgs = {
|
|
5108
6044
|
block?: InputMaybe<Block_Height>;
|
|
5109
6045
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -5146,6 +6082,20 @@ export declare type SubscriptionDisputeArgs = {
|
|
|
5146
6082
|
id: Scalars["ID"];
|
|
5147
6083
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5148
6084
|
};
|
|
6085
|
+
export declare type SubscriptionDisputeEventLogArgs = {
|
|
6086
|
+
block?: InputMaybe<Block_Height>;
|
|
6087
|
+
id: Scalars["ID"];
|
|
6088
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6089
|
+
};
|
|
6090
|
+
export declare type SubscriptionDisputeEventLogsArgs = {
|
|
6091
|
+
block?: InputMaybe<Block_Height>;
|
|
6092
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6093
|
+
orderBy?: InputMaybe<DisputeEventLog_OrderBy>;
|
|
6094
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6095
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6096
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6097
|
+
where?: InputMaybe<DisputeEventLog_Filter>;
|
|
6098
|
+
};
|
|
5149
6099
|
export declare type SubscriptionDisputeResolutionTermsEntitiesArgs = {
|
|
5150
6100
|
block?: InputMaybe<Block_Height>;
|
|
5151
6101
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -5197,11 +6147,39 @@ export declare type SubscriptionDisputesArgs = {
|
|
|
5197
6147
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5198
6148
|
where?: InputMaybe<Dispute_Filter>;
|
|
5199
6149
|
};
|
|
6150
|
+
export declare type SubscriptionEventLogArgs = {
|
|
6151
|
+
block?: InputMaybe<Block_Height>;
|
|
6152
|
+
id: Scalars["ID"];
|
|
6153
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6154
|
+
};
|
|
6155
|
+
export declare type SubscriptionEventLogsArgs = {
|
|
6156
|
+
block?: InputMaybe<Block_Height>;
|
|
6157
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6158
|
+
orderBy?: InputMaybe<EventLog_OrderBy>;
|
|
6159
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6160
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6161
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6162
|
+
where?: InputMaybe<EventLog_Filter>;
|
|
6163
|
+
};
|
|
5200
6164
|
export declare type SubscriptionExchangeArgs = {
|
|
5201
6165
|
block?: InputMaybe<Block_Height>;
|
|
5202
6166
|
id: Scalars["ID"];
|
|
5203
6167
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5204
6168
|
};
|
|
6169
|
+
export declare type SubscriptionExchangeEventLogArgs = {
|
|
6170
|
+
block?: InputMaybe<Block_Height>;
|
|
6171
|
+
id: Scalars["ID"];
|
|
6172
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6173
|
+
};
|
|
6174
|
+
export declare type SubscriptionExchangeEventLogsArgs = {
|
|
6175
|
+
block?: InputMaybe<Block_Height>;
|
|
6176
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6177
|
+
orderBy?: InputMaybe<ExchangeEventLog_OrderBy>;
|
|
6178
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6179
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6180
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6181
|
+
where?: InputMaybe<ExchangeEventLog_Filter>;
|
|
6182
|
+
};
|
|
5205
6183
|
export declare type SubscriptionExchangeTokenArgs = {
|
|
5206
6184
|
block?: InputMaybe<Block_Height>;
|
|
5207
6185
|
id: Scalars["ID"];
|
|
@@ -5239,6 +6217,20 @@ export declare type SubscriptionFundsEntityArgs = {
|
|
|
5239
6217
|
id: Scalars["ID"];
|
|
5240
6218
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5241
6219
|
};
|
|
6220
|
+
export declare type SubscriptionFundsEventLogArgs = {
|
|
6221
|
+
block?: InputMaybe<Block_Height>;
|
|
6222
|
+
id: Scalars["ID"];
|
|
6223
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6224
|
+
};
|
|
6225
|
+
export declare type SubscriptionFundsEventLogsArgs = {
|
|
6226
|
+
block?: InputMaybe<Block_Height>;
|
|
6227
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6228
|
+
orderBy?: InputMaybe<FundsEventLog_OrderBy>;
|
|
6229
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6230
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6231
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6232
|
+
where?: InputMaybe<FundsEventLog_Filter>;
|
|
6233
|
+
};
|
|
5242
6234
|
export declare type SubscriptionMetadataAttributeArgs = {
|
|
5243
6235
|
block?: InputMaybe<Block_Height>;
|
|
5244
6236
|
id: Scalars["ID"];
|
|
@@ -5272,6 +6264,20 @@ export declare type SubscriptionOfferArgs = {
|
|
|
5272
6264
|
id: Scalars["ID"];
|
|
5273
6265
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5274
6266
|
};
|
|
6267
|
+
export declare type SubscriptionOfferEventLogArgs = {
|
|
6268
|
+
block?: InputMaybe<Block_Height>;
|
|
6269
|
+
id: Scalars["ID"];
|
|
6270
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6271
|
+
};
|
|
6272
|
+
export declare type SubscriptionOfferEventLogsArgs = {
|
|
6273
|
+
block?: InputMaybe<Block_Height>;
|
|
6274
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6275
|
+
orderBy?: InputMaybe<OfferEventLog_OrderBy>;
|
|
6276
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6277
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6278
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6279
|
+
where?: InputMaybe<OfferEventLog_Filter>;
|
|
6280
|
+
};
|
|
5275
6281
|
export declare type SubscriptionOffersArgs = {
|
|
5276
6282
|
block?: InputMaybe<Block_Height>;
|
|
5277
6283
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -5546,9 +6552,15 @@ export declare type GetSellerByIdQueryQueryVariables = Exact<{
|
|
|
5546
6552
|
exchangesOrderBy?: InputMaybe<Exchange_OrderBy>;
|
|
5547
6553
|
exchangesOrderDirection?: InputMaybe<OrderDirection>;
|
|
5548
6554
|
exchangesFilter?: InputMaybe<Exchange_Filter>;
|
|
6555
|
+
logsSkip?: InputMaybe<Scalars["Int"]>;
|
|
6556
|
+
logsFirst?: InputMaybe<Scalars["Int"]>;
|
|
6557
|
+
logsOrderBy?: InputMaybe<EventLog_OrderBy>;
|
|
6558
|
+
logsOrderDirection?: InputMaybe<OrderDirection>;
|
|
6559
|
+
logsFilter?: InputMaybe<EventLog_Filter>;
|
|
5549
6560
|
includeExchanges?: InputMaybe<Scalars["Boolean"]>;
|
|
5550
6561
|
includeOffers?: InputMaybe<Scalars["Boolean"]>;
|
|
5551
6562
|
includeFunds?: InputMaybe<Scalars["Boolean"]>;
|
|
6563
|
+
includeLogs?: InputMaybe<Scalars["Boolean"]>;
|
|
5552
6564
|
}>;
|
|
5553
6565
|
export declare type GetSellerByIdQueryQuery = {
|
|
5554
6566
|
__typename?: "Query";
|
|
@@ -5598,8 +6610,11 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
5598
6610
|
resolutionPeriodDuration: string;
|
|
5599
6611
|
metadataUri: string;
|
|
5600
6612
|
metadataHash: string;
|
|
6613
|
+
voided: boolean;
|
|
5601
6614
|
voidedAt?: string | null;
|
|
5602
6615
|
disputeResolverId: string;
|
|
6616
|
+
numberOfCommits: string;
|
|
6617
|
+
numberOfRedemptions: string;
|
|
5603
6618
|
seller: {
|
|
5604
6619
|
__typename?: "Seller";
|
|
5605
6620
|
id: string;
|
|
@@ -5839,33 +6854,174 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
5839
6854
|
completedDate?: string | null;
|
|
5840
6855
|
disputedDate?: string | null;
|
|
5841
6856
|
expired: boolean;
|
|
6857
|
+
dispute?: {
|
|
6858
|
+
__typename?: "Dispute";
|
|
6859
|
+
id: string;
|
|
6860
|
+
exchangeId: string;
|
|
6861
|
+
state: DisputeState;
|
|
6862
|
+
buyerPercent: string;
|
|
6863
|
+
disputedDate: string;
|
|
6864
|
+
escalatedDate?: string | null;
|
|
6865
|
+
finalizedDate?: string | null;
|
|
6866
|
+
retractedDate?: string | null;
|
|
6867
|
+
resolvedDate?: string | null;
|
|
6868
|
+
decidedDate?: string | null;
|
|
6869
|
+
refusedDate?: string | null;
|
|
6870
|
+
timeout: string;
|
|
6871
|
+
} | null;
|
|
6872
|
+
buyer: {
|
|
6873
|
+
__typename?: "Buyer";
|
|
6874
|
+
id: string;
|
|
6875
|
+
wallet: string;
|
|
6876
|
+
active: boolean;
|
|
6877
|
+
};
|
|
6878
|
+
seller: {
|
|
6879
|
+
__typename?: "Seller";
|
|
6880
|
+
id: string;
|
|
6881
|
+
operator: string;
|
|
6882
|
+
admin: string;
|
|
6883
|
+
clerk: string;
|
|
6884
|
+
treasury: string;
|
|
6885
|
+
authTokenId: string;
|
|
6886
|
+
authTokenType: number;
|
|
6887
|
+
voucherCloneAddress: string;
|
|
6888
|
+
active: boolean;
|
|
6889
|
+
};
|
|
5842
6890
|
}>;
|
|
5843
|
-
|
|
5844
|
-
|
|
5845
|
-
|
|
5846
|
-
|
|
5847
|
-
|
|
5848
|
-
|
|
5849
|
-
|
|
5850
|
-
|
|
5851
|
-
|
|
5852
|
-
|
|
5853
|
-
|
|
5854
|
-
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
|
|
5858
|
-
|
|
5859
|
-
|
|
6891
|
+
logs?: Array<{
|
|
6892
|
+
__typename?: "AccountEventLog";
|
|
6893
|
+
id: string;
|
|
6894
|
+
hash: string;
|
|
6895
|
+
type: EventType;
|
|
6896
|
+
timestamp: string;
|
|
6897
|
+
executedBy: string;
|
|
6898
|
+
account: {
|
|
6899
|
+
__typename?: "Buyer";
|
|
6900
|
+
id: string;
|
|
6901
|
+
} | {
|
|
6902
|
+
__typename?: "DisputeResolver";
|
|
6903
|
+
id: string;
|
|
6904
|
+
} | {
|
|
6905
|
+
__typename?: "Seller";
|
|
6906
|
+
id: string;
|
|
6907
|
+
};
|
|
6908
|
+
} | {
|
|
6909
|
+
__typename?: "DisputeEventLog";
|
|
6910
|
+
id: string;
|
|
6911
|
+
hash: string;
|
|
6912
|
+
type: EventType;
|
|
6913
|
+
timestamp: string;
|
|
6914
|
+
executedBy: string;
|
|
6915
|
+
dispute: {
|
|
6916
|
+
__typename?: "Dispute";
|
|
6917
|
+
id: string;
|
|
6918
|
+
};
|
|
6919
|
+
account: {
|
|
6920
|
+
__typename?: "Buyer";
|
|
6921
|
+
id: string;
|
|
6922
|
+
} | {
|
|
6923
|
+
__typename?: "DisputeResolver";
|
|
6924
|
+
id: string;
|
|
6925
|
+
} | {
|
|
6926
|
+
__typename?: "Seller";
|
|
6927
|
+
id: string;
|
|
6928
|
+
};
|
|
6929
|
+
} | {
|
|
6930
|
+
__typename?: "ExchangeEventLog";
|
|
6931
|
+
id: string;
|
|
6932
|
+
hash: string;
|
|
6933
|
+
type: EventType;
|
|
6934
|
+
timestamp: string;
|
|
6935
|
+
executedBy: string;
|
|
6936
|
+
exchange: {
|
|
6937
|
+
__typename?: "Exchange";
|
|
6938
|
+
id: string;
|
|
6939
|
+
};
|
|
6940
|
+
account: {
|
|
6941
|
+
__typename?: "Buyer";
|
|
6942
|
+
id: string;
|
|
6943
|
+
} | {
|
|
6944
|
+
__typename?: "DisputeResolver";
|
|
6945
|
+
id: string;
|
|
6946
|
+
} | {
|
|
6947
|
+
__typename?: "Seller";
|
|
6948
|
+
id: string;
|
|
6949
|
+
};
|
|
6950
|
+
} | {
|
|
6951
|
+
__typename?: "FundsEventLog";
|
|
6952
|
+
id: string;
|
|
6953
|
+
hash: string;
|
|
6954
|
+
type: EventType;
|
|
6955
|
+
timestamp: string;
|
|
6956
|
+
executedBy: string;
|
|
6957
|
+
funds: {
|
|
6958
|
+
__typename?: "FundsEntity";
|
|
6959
|
+
id: string;
|
|
6960
|
+
};
|
|
6961
|
+
account: {
|
|
6962
|
+
__typename?: "Buyer";
|
|
6963
|
+
id: string;
|
|
6964
|
+
} | {
|
|
6965
|
+
__typename?: "DisputeResolver";
|
|
6966
|
+
id: string;
|
|
6967
|
+
} | {
|
|
6968
|
+
__typename?: "Seller";
|
|
6969
|
+
id: string;
|
|
6970
|
+
};
|
|
6971
|
+
} | {
|
|
6972
|
+
__typename?: "OfferEventLog";
|
|
6973
|
+
id: string;
|
|
6974
|
+
hash: string;
|
|
6975
|
+
type: EventType;
|
|
6976
|
+
timestamp: string;
|
|
6977
|
+
executedBy: string;
|
|
6978
|
+
offer: {
|
|
6979
|
+
__typename?: "Offer";
|
|
6980
|
+
id: string;
|
|
6981
|
+
};
|
|
6982
|
+
account: {
|
|
6983
|
+
__typename?: "Buyer";
|
|
6984
|
+
id: string;
|
|
6985
|
+
} | {
|
|
6986
|
+
__typename?: "DisputeResolver";
|
|
6987
|
+
id: string;
|
|
6988
|
+
} | {
|
|
6989
|
+
__typename?: "Seller";
|
|
6990
|
+
id: string;
|
|
6991
|
+
};
|
|
6992
|
+
}>;
|
|
6993
|
+
} | null;
|
|
6994
|
+
};
|
|
6995
|
+
export declare type GetSellersQueryQueryVariables = Exact<{
|
|
6996
|
+
sellersSkip?: InputMaybe<Scalars["Int"]>;
|
|
6997
|
+
sellersFirst?: InputMaybe<Scalars["Int"]>;
|
|
6998
|
+
sellersOrderBy?: InputMaybe<Seller_OrderBy>;
|
|
6999
|
+
sellersOrderDirection?: InputMaybe<OrderDirection>;
|
|
7000
|
+
sellersFilter?: InputMaybe<Seller_Filter>;
|
|
7001
|
+
fundsSkip?: InputMaybe<Scalars["Int"]>;
|
|
7002
|
+
fundsFirst?: InputMaybe<Scalars["Int"]>;
|
|
7003
|
+
fundsOrderBy?: InputMaybe<FundsEntity_OrderBy>;
|
|
7004
|
+
fundsOrderDirection?: InputMaybe<OrderDirection>;
|
|
7005
|
+
fundsFilter?: InputMaybe<FundsEntity_Filter>;
|
|
7006
|
+
offersSkip?: InputMaybe<Scalars["Int"]>;
|
|
7007
|
+
offersFirst?: InputMaybe<Scalars["Int"]>;
|
|
7008
|
+
offersOrderBy?: InputMaybe<Offer_OrderBy>;
|
|
7009
|
+
offersOrderDirection?: InputMaybe<OrderDirection>;
|
|
5860
7010
|
offersFilter?: InputMaybe<Offer_Filter>;
|
|
5861
7011
|
exchangesSkip?: InputMaybe<Scalars["Int"]>;
|
|
5862
7012
|
exchangesFirst?: InputMaybe<Scalars["Int"]>;
|
|
5863
7013
|
exchangesOrderBy?: InputMaybe<Exchange_OrderBy>;
|
|
5864
7014
|
exchangesOrderDirection?: InputMaybe<OrderDirection>;
|
|
5865
7015
|
exchangesFilter?: InputMaybe<Exchange_Filter>;
|
|
7016
|
+
logsSkip?: InputMaybe<Scalars["Int"]>;
|
|
7017
|
+
logsFirst?: InputMaybe<Scalars["Int"]>;
|
|
7018
|
+
logsOrderBy?: InputMaybe<EventLog_OrderBy>;
|
|
7019
|
+
logsOrderDirection?: InputMaybe<OrderDirection>;
|
|
7020
|
+
logsFilter?: InputMaybe<EventLog_Filter>;
|
|
5866
7021
|
includeExchanges?: InputMaybe<Scalars["Boolean"]>;
|
|
5867
7022
|
includeOffers?: InputMaybe<Scalars["Boolean"]>;
|
|
5868
7023
|
includeFunds?: InputMaybe<Scalars["Boolean"]>;
|
|
7024
|
+
includeLogs?: InputMaybe<Scalars["Boolean"]>;
|
|
5869
7025
|
}>;
|
|
5870
7026
|
export declare type GetSellersQueryQuery = {
|
|
5871
7027
|
__typename?: "Query";
|
|
@@ -5915,8 +7071,11 @@ export declare type GetSellersQueryQuery = {
|
|
|
5915
7071
|
resolutionPeriodDuration: string;
|
|
5916
7072
|
metadataUri: string;
|
|
5917
7073
|
metadataHash: string;
|
|
7074
|
+
voided: boolean;
|
|
5918
7075
|
voidedAt?: string | null;
|
|
5919
7076
|
disputeResolverId: string;
|
|
7077
|
+
numberOfCommits: string;
|
|
7078
|
+
numberOfRedemptions: string;
|
|
5920
7079
|
seller: {
|
|
5921
7080
|
__typename?: "Seller";
|
|
5922
7081
|
id: string;
|
|
@@ -6156,6 +7315,141 @@ export declare type GetSellersQueryQuery = {
|
|
|
6156
7315
|
completedDate?: string | null;
|
|
6157
7316
|
disputedDate?: string | null;
|
|
6158
7317
|
expired: boolean;
|
|
7318
|
+
dispute?: {
|
|
7319
|
+
__typename?: "Dispute";
|
|
7320
|
+
id: string;
|
|
7321
|
+
exchangeId: string;
|
|
7322
|
+
state: DisputeState;
|
|
7323
|
+
buyerPercent: string;
|
|
7324
|
+
disputedDate: string;
|
|
7325
|
+
escalatedDate?: string | null;
|
|
7326
|
+
finalizedDate?: string | null;
|
|
7327
|
+
retractedDate?: string | null;
|
|
7328
|
+
resolvedDate?: string | null;
|
|
7329
|
+
decidedDate?: string | null;
|
|
7330
|
+
refusedDate?: string | null;
|
|
7331
|
+
timeout: string;
|
|
7332
|
+
} | null;
|
|
7333
|
+
buyer: {
|
|
7334
|
+
__typename?: "Buyer";
|
|
7335
|
+
id: string;
|
|
7336
|
+
wallet: string;
|
|
7337
|
+
active: boolean;
|
|
7338
|
+
};
|
|
7339
|
+
seller: {
|
|
7340
|
+
__typename?: "Seller";
|
|
7341
|
+
id: string;
|
|
7342
|
+
operator: string;
|
|
7343
|
+
admin: string;
|
|
7344
|
+
clerk: string;
|
|
7345
|
+
treasury: string;
|
|
7346
|
+
authTokenId: string;
|
|
7347
|
+
authTokenType: number;
|
|
7348
|
+
voucherCloneAddress: string;
|
|
7349
|
+
active: boolean;
|
|
7350
|
+
};
|
|
7351
|
+
}>;
|
|
7352
|
+
logs?: Array<{
|
|
7353
|
+
__typename?: "AccountEventLog";
|
|
7354
|
+
id: string;
|
|
7355
|
+
hash: string;
|
|
7356
|
+
type: EventType;
|
|
7357
|
+
timestamp: string;
|
|
7358
|
+
executedBy: string;
|
|
7359
|
+
account: {
|
|
7360
|
+
__typename?: "Buyer";
|
|
7361
|
+
id: string;
|
|
7362
|
+
} | {
|
|
7363
|
+
__typename?: "DisputeResolver";
|
|
7364
|
+
id: string;
|
|
7365
|
+
} | {
|
|
7366
|
+
__typename?: "Seller";
|
|
7367
|
+
id: string;
|
|
7368
|
+
};
|
|
7369
|
+
} | {
|
|
7370
|
+
__typename?: "DisputeEventLog";
|
|
7371
|
+
id: string;
|
|
7372
|
+
hash: string;
|
|
7373
|
+
type: EventType;
|
|
7374
|
+
timestamp: string;
|
|
7375
|
+
executedBy: string;
|
|
7376
|
+
dispute: {
|
|
7377
|
+
__typename?: "Dispute";
|
|
7378
|
+
id: string;
|
|
7379
|
+
};
|
|
7380
|
+
account: {
|
|
7381
|
+
__typename?: "Buyer";
|
|
7382
|
+
id: string;
|
|
7383
|
+
} | {
|
|
7384
|
+
__typename?: "DisputeResolver";
|
|
7385
|
+
id: string;
|
|
7386
|
+
} | {
|
|
7387
|
+
__typename?: "Seller";
|
|
7388
|
+
id: string;
|
|
7389
|
+
};
|
|
7390
|
+
} | {
|
|
7391
|
+
__typename?: "ExchangeEventLog";
|
|
7392
|
+
id: string;
|
|
7393
|
+
hash: string;
|
|
7394
|
+
type: EventType;
|
|
7395
|
+
timestamp: string;
|
|
7396
|
+
executedBy: string;
|
|
7397
|
+
exchange: {
|
|
7398
|
+
__typename?: "Exchange";
|
|
7399
|
+
id: string;
|
|
7400
|
+
};
|
|
7401
|
+
account: {
|
|
7402
|
+
__typename?: "Buyer";
|
|
7403
|
+
id: string;
|
|
7404
|
+
} | {
|
|
7405
|
+
__typename?: "DisputeResolver";
|
|
7406
|
+
id: string;
|
|
7407
|
+
} | {
|
|
7408
|
+
__typename?: "Seller";
|
|
7409
|
+
id: string;
|
|
7410
|
+
};
|
|
7411
|
+
} | {
|
|
7412
|
+
__typename?: "FundsEventLog";
|
|
7413
|
+
id: string;
|
|
7414
|
+
hash: string;
|
|
7415
|
+
type: EventType;
|
|
7416
|
+
timestamp: string;
|
|
7417
|
+
executedBy: string;
|
|
7418
|
+
funds: {
|
|
7419
|
+
__typename?: "FundsEntity";
|
|
7420
|
+
id: string;
|
|
7421
|
+
};
|
|
7422
|
+
account: {
|
|
7423
|
+
__typename?: "Buyer";
|
|
7424
|
+
id: string;
|
|
7425
|
+
} | {
|
|
7426
|
+
__typename?: "DisputeResolver";
|
|
7427
|
+
id: string;
|
|
7428
|
+
} | {
|
|
7429
|
+
__typename?: "Seller";
|
|
7430
|
+
id: string;
|
|
7431
|
+
};
|
|
7432
|
+
} | {
|
|
7433
|
+
__typename?: "OfferEventLog";
|
|
7434
|
+
id: string;
|
|
7435
|
+
hash: string;
|
|
7436
|
+
type: EventType;
|
|
7437
|
+
timestamp: string;
|
|
7438
|
+
executedBy: string;
|
|
7439
|
+
offer: {
|
|
7440
|
+
__typename?: "Offer";
|
|
7441
|
+
id: string;
|
|
7442
|
+
};
|
|
7443
|
+
account: {
|
|
7444
|
+
__typename?: "Buyer";
|
|
7445
|
+
id: string;
|
|
7446
|
+
} | {
|
|
7447
|
+
__typename?: "DisputeResolver";
|
|
7448
|
+
id: string;
|
|
7449
|
+
} | {
|
|
7450
|
+
__typename?: "Seller";
|
|
7451
|
+
id: string;
|
|
7452
|
+
};
|
|
6159
7453
|
}>;
|
|
6160
7454
|
}>;
|
|
6161
7455
|
};
|
|
@@ -6171,8 +7465,14 @@ export declare type GetBuyerByIdQueryQueryVariables = Exact<{
|
|
|
6171
7465
|
exchangesOrderBy?: InputMaybe<Exchange_OrderBy>;
|
|
6172
7466
|
exchangesOrderDirection?: InputMaybe<OrderDirection>;
|
|
6173
7467
|
exchangesFilter?: InputMaybe<Exchange_Filter>;
|
|
7468
|
+
logsSkip?: InputMaybe<Scalars["Int"]>;
|
|
7469
|
+
logsFirst?: InputMaybe<Scalars["Int"]>;
|
|
7470
|
+
logsOrderBy?: InputMaybe<EventLog_OrderBy>;
|
|
7471
|
+
logsOrderDirection?: InputMaybe<OrderDirection>;
|
|
7472
|
+
logsFilter?: InputMaybe<EventLog_Filter>;
|
|
6174
7473
|
includeExchanges?: InputMaybe<Scalars["Boolean"]>;
|
|
6175
7474
|
includeFunds?: InputMaybe<Scalars["Boolean"]>;
|
|
7475
|
+
includeLogs?: InputMaybe<Scalars["Boolean"]>;
|
|
6176
7476
|
}>;
|
|
6177
7477
|
export declare type GetBuyerByIdQueryQuery = {
|
|
6178
7478
|
__typename?: "Query";
|
|
@@ -6209,6 +7509,141 @@ export declare type GetBuyerByIdQueryQuery = {
|
|
|
6209
7509
|
completedDate?: string | null;
|
|
6210
7510
|
disputedDate?: string | null;
|
|
6211
7511
|
expired: boolean;
|
|
7512
|
+
dispute?: {
|
|
7513
|
+
__typename?: "Dispute";
|
|
7514
|
+
id: string;
|
|
7515
|
+
exchangeId: string;
|
|
7516
|
+
state: DisputeState;
|
|
7517
|
+
buyerPercent: string;
|
|
7518
|
+
disputedDate: string;
|
|
7519
|
+
escalatedDate?: string | null;
|
|
7520
|
+
finalizedDate?: string | null;
|
|
7521
|
+
retractedDate?: string | null;
|
|
7522
|
+
resolvedDate?: string | null;
|
|
7523
|
+
decidedDate?: string | null;
|
|
7524
|
+
refusedDate?: string | null;
|
|
7525
|
+
timeout: string;
|
|
7526
|
+
} | null;
|
|
7527
|
+
buyer: {
|
|
7528
|
+
__typename?: "Buyer";
|
|
7529
|
+
id: string;
|
|
7530
|
+
wallet: string;
|
|
7531
|
+
active: boolean;
|
|
7532
|
+
};
|
|
7533
|
+
seller: {
|
|
7534
|
+
__typename?: "Seller";
|
|
7535
|
+
id: string;
|
|
7536
|
+
operator: string;
|
|
7537
|
+
admin: string;
|
|
7538
|
+
clerk: string;
|
|
7539
|
+
treasury: string;
|
|
7540
|
+
authTokenId: string;
|
|
7541
|
+
authTokenType: number;
|
|
7542
|
+
voucherCloneAddress: string;
|
|
7543
|
+
active: boolean;
|
|
7544
|
+
};
|
|
7545
|
+
}>;
|
|
7546
|
+
logs?: Array<{
|
|
7547
|
+
__typename?: "AccountEventLog";
|
|
7548
|
+
id: string;
|
|
7549
|
+
hash: string;
|
|
7550
|
+
type: EventType;
|
|
7551
|
+
timestamp: string;
|
|
7552
|
+
executedBy: string;
|
|
7553
|
+
account: {
|
|
7554
|
+
__typename?: "Buyer";
|
|
7555
|
+
id: string;
|
|
7556
|
+
} | {
|
|
7557
|
+
__typename?: "DisputeResolver";
|
|
7558
|
+
id: string;
|
|
7559
|
+
} | {
|
|
7560
|
+
__typename?: "Seller";
|
|
7561
|
+
id: string;
|
|
7562
|
+
};
|
|
7563
|
+
} | {
|
|
7564
|
+
__typename?: "DisputeEventLog";
|
|
7565
|
+
id: string;
|
|
7566
|
+
hash: string;
|
|
7567
|
+
type: EventType;
|
|
7568
|
+
timestamp: string;
|
|
7569
|
+
executedBy: string;
|
|
7570
|
+
dispute: {
|
|
7571
|
+
__typename?: "Dispute";
|
|
7572
|
+
id: string;
|
|
7573
|
+
};
|
|
7574
|
+
account: {
|
|
7575
|
+
__typename?: "Buyer";
|
|
7576
|
+
id: string;
|
|
7577
|
+
} | {
|
|
7578
|
+
__typename?: "DisputeResolver";
|
|
7579
|
+
id: string;
|
|
7580
|
+
} | {
|
|
7581
|
+
__typename?: "Seller";
|
|
7582
|
+
id: string;
|
|
7583
|
+
};
|
|
7584
|
+
} | {
|
|
7585
|
+
__typename?: "ExchangeEventLog";
|
|
7586
|
+
id: string;
|
|
7587
|
+
hash: string;
|
|
7588
|
+
type: EventType;
|
|
7589
|
+
timestamp: string;
|
|
7590
|
+
executedBy: string;
|
|
7591
|
+
exchange: {
|
|
7592
|
+
__typename?: "Exchange";
|
|
7593
|
+
id: string;
|
|
7594
|
+
};
|
|
7595
|
+
account: {
|
|
7596
|
+
__typename?: "Buyer";
|
|
7597
|
+
id: string;
|
|
7598
|
+
} | {
|
|
7599
|
+
__typename?: "DisputeResolver";
|
|
7600
|
+
id: string;
|
|
7601
|
+
} | {
|
|
7602
|
+
__typename?: "Seller";
|
|
7603
|
+
id: string;
|
|
7604
|
+
};
|
|
7605
|
+
} | {
|
|
7606
|
+
__typename?: "FundsEventLog";
|
|
7607
|
+
id: string;
|
|
7608
|
+
hash: string;
|
|
7609
|
+
type: EventType;
|
|
7610
|
+
timestamp: string;
|
|
7611
|
+
executedBy: string;
|
|
7612
|
+
funds: {
|
|
7613
|
+
__typename?: "FundsEntity";
|
|
7614
|
+
id: string;
|
|
7615
|
+
};
|
|
7616
|
+
account: {
|
|
7617
|
+
__typename?: "Buyer";
|
|
7618
|
+
id: string;
|
|
7619
|
+
} | {
|
|
7620
|
+
__typename?: "DisputeResolver";
|
|
7621
|
+
id: string;
|
|
7622
|
+
} | {
|
|
7623
|
+
__typename?: "Seller";
|
|
7624
|
+
id: string;
|
|
7625
|
+
};
|
|
7626
|
+
} | {
|
|
7627
|
+
__typename?: "OfferEventLog";
|
|
7628
|
+
id: string;
|
|
7629
|
+
hash: string;
|
|
7630
|
+
type: EventType;
|
|
7631
|
+
timestamp: string;
|
|
7632
|
+
executedBy: string;
|
|
7633
|
+
offer: {
|
|
7634
|
+
__typename?: "Offer";
|
|
7635
|
+
id: string;
|
|
7636
|
+
};
|
|
7637
|
+
account: {
|
|
7638
|
+
__typename?: "Buyer";
|
|
7639
|
+
id: string;
|
|
7640
|
+
} | {
|
|
7641
|
+
__typename?: "DisputeResolver";
|
|
7642
|
+
id: string;
|
|
7643
|
+
} | {
|
|
7644
|
+
__typename?: "Seller";
|
|
7645
|
+
id: string;
|
|
7646
|
+
};
|
|
6212
7647
|
}>;
|
|
6213
7648
|
} | null;
|
|
6214
7649
|
};
|
|
@@ -6233,9 +7668,15 @@ export declare type GetBuyersQueryQueryVariables = Exact<{
|
|
|
6233
7668
|
exchangesOrderBy?: InputMaybe<Exchange_OrderBy>;
|
|
6234
7669
|
exchangesOrderDirection?: InputMaybe<OrderDirection>;
|
|
6235
7670
|
exchangesFilter?: InputMaybe<Exchange_Filter>;
|
|
7671
|
+
logsSkip?: InputMaybe<Scalars["Int"]>;
|
|
7672
|
+
logsFirst?: InputMaybe<Scalars["Int"]>;
|
|
7673
|
+
logsOrderBy?: InputMaybe<EventLog_OrderBy>;
|
|
7674
|
+
logsOrderDirection?: InputMaybe<OrderDirection>;
|
|
7675
|
+
logsFilter?: InputMaybe<EventLog_Filter>;
|
|
6236
7676
|
includeExchanges?: InputMaybe<Scalars["Boolean"]>;
|
|
6237
7677
|
includeOffers?: InputMaybe<Scalars["Boolean"]>;
|
|
6238
7678
|
includeFunds?: InputMaybe<Scalars["Boolean"]>;
|
|
7679
|
+
includeLogs?: InputMaybe<Scalars["Boolean"]>;
|
|
6239
7680
|
}>;
|
|
6240
7681
|
export declare type GetBuyersQueryQuery = {
|
|
6241
7682
|
__typename?: "Query";
|
|
@@ -6272,7 +7713,142 @@ export declare type GetBuyersQueryQuery = {
|
|
|
6272
7713
|
completedDate?: string | null;
|
|
6273
7714
|
disputedDate?: string | null;
|
|
6274
7715
|
expired: boolean;
|
|
6275
|
-
|
|
7716
|
+
dispute?: {
|
|
7717
|
+
__typename?: "Dispute";
|
|
7718
|
+
id: string;
|
|
7719
|
+
exchangeId: string;
|
|
7720
|
+
state: DisputeState;
|
|
7721
|
+
buyerPercent: string;
|
|
7722
|
+
disputedDate: string;
|
|
7723
|
+
escalatedDate?: string | null;
|
|
7724
|
+
finalizedDate?: string | null;
|
|
7725
|
+
retractedDate?: string | null;
|
|
7726
|
+
resolvedDate?: string | null;
|
|
7727
|
+
decidedDate?: string | null;
|
|
7728
|
+
refusedDate?: string | null;
|
|
7729
|
+
timeout: string;
|
|
7730
|
+
} | null;
|
|
7731
|
+
buyer: {
|
|
7732
|
+
__typename?: "Buyer";
|
|
7733
|
+
id: string;
|
|
7734
|
+
wallet: string;
|
|
7735
|
+
active: boolean;
|
|
7736
|
+
};
|
|
7737
|
+
seller: {
|
|
7738
|
+
__typename?: "Seller";
|
|
7739
|
+
id: string;
|
|
7740
|
+
operator: string;
|
|
7741
|
+
admin: string;
|
|
7742
|
+
clerk: string;
|
|
7743
|
+
treasury: string;
|
|
7744
|
+
authTokenId: string;
|
|
7745
|
+
authTokenType: number;
|
|
7746
|
+
voucherCloneAddress: string;
|
|
7747
|
+
active: boolean;
|
|
7748
|
+
};
|
|
7749
|
+
}>;
|
|
7750
|
+
logs?: Array<{
|
|
7751
|
+
__typename?: "AccountEventLog";
|
|
7752
|
+
id: string;
|
|
7753
|
+
hash: string;
|
|
7754
|
+
type: EventType;
|
|
7755
|
+
timestamp: string;
|
|
7756
|
+
executedBy: string;
|
|
7757
|
+
account: {
|
|
7758
|
+
__typename?: "Buyer";
|
|
7759
|
+
id: string;
|
|
7760
|
+
} | {
|
|
7761
|
+
__typename?: "DisputeResolver";
|
|
7762
|
+
id: string;
|
|
7763
|
+
} | {
|
|
7764
|
+
__typename?: "Seller";
|
|
7765
|
+
id: string;
|
|
7766
|
+
};
|
|
7767
|
+
} | {
|
|
7768
|
+
__typename?: "DisputeEventLog";
|
|
7769
|
+
id: string;
|
|
7770
|
+
hash: string;
|
|
7771
|
+
type: EventType;
|
|
7772
|
+
timestamp: string;
|
|
7773
|
+
executedBy: string;
|
|
7774
|
+
dispute: {
|
|
7775
|
+
__typename?: "Dispute";
|
|
7776
|
+
id: string;
|
|
7777
|
+
};
|
|
7778
|
+
account: {
|
|
7779
|
+
__typename?: "Buyer";
|
|
7780
|
+
id: string;
|
|
7781
|
+
} | {
|
|
7782
|
+
__typename?: "DisputeResolver";
|
|
7783
|
+
id: string;
|
|
7784
|
+
} | {
|
|
7785
|
+
__typename?: "Seller";
|
|
7786
|
+
id: string;
|
|
7787
|
+
};
|
|
7788
|
+
} | {
|
|
7789
|
+
__typename?: "ExchangeEventLog";
|
|
7790
|
+
id: string;
|
|
7791
|
+
hash: string;
|
|
7792
|
+
type: EventType;
|
|
7793
|
+
timestamp: string;
|
|
7794
|
+
executedBy: string;
|
|
7795
|
+
exchange: {
|
|
7796
|
+
__typename?: "Exchange";
|
|
7797
|
+
id: string;
|
|
7798
|
+
};
|
|
7799
|
+
account: {
|
|
7800
|
+
__typename?: "Buyer";
|
|
7801
|
+
id: string;
|
|
7802
|
+
} | {
|
|
7803
|
+
__typename?: "DisputeResolver";
|
|
7804
|
+
id: string;
|
|
7805
|
+
} | {
|
|
7806
|
+
__typename?: "Seller";
|
|
7807
|
+
id: string;
|
|
7808
|
+
};
|
|
7809
|
+
} | {
|
|
7810
|
+
__typename?: "FundsEventLog";
|
|
7811
|
+
id: string;
|
|
7812
|
+
hash: string;
|
|
7813
|
+
type: EventType;
|
|
7814
|
+
timestamp: string;
|
|
7815
|
+
executedBy: string;
|
|
7816
|
+
funds: {
|
|
7817
|
+
__typename?: "FundsEntity";
|
|
7818
|
+
id: string;
|
|
7819
|
+
};
|
|
7820
|
+
account: {
|
|
7821
|
+
__typename?: "Buyer";
|
|
7822
|
+
id: string;
|
|
7823
|
+
} | {
|
|
7824
|
+
__typename?: "DisputeResolver";
|
|
7825
|
+
id: string;
|
|
7826
|
+
} | {
|
|
7827
|
+
__typename?: "Seller";
|
|
7828
|
+
id: string;
|
|
7829
|
+
};
|
|
7830
|
+
} | {
|
|
7831
|
+
__typename?: "OfferEventLog";
|
|
7832
|
+
id: string;
|
|
7833
|
+
hash: string;
|
|
7834
|
+
type: EventType;
|
|
7835
|
+
timestamp: string;
|
|
7836
|
+
executedBy: string;
|
|
7837
|
+
offer: {
|
|
7838
|
+
__typename?: "Offer";
|
|
7839
|
+
id: string;
|
|
7840
|
+
};
|
|
7841
|
+
account: {
|
|
7842
|
+
__typename?: "Buyer";
|
|
7843
|
+
id: string;
|
|
7844
|
+
} | {
|
|
7845
|
+
__typename?: "DisputeResolver";
|
|
7846
|
+
id: string;
|
|
7847
|
+
} | {
|
|
7848
|
+
__typename?: "Seller";
|
|
7849
|
+
id: string;
|
|
7850
|
+
};
|
|
7851
|
+
}>;
|
|
6276
7852
|
}>;
|
|
6277
7853
|
};
|
|
6278
7854
|
export declare type GetDisputeResolverByIdQueryQueryVariables = Exact<{
|
|
@@ -6282,7 +7858,13 @@ export declare type GetDisputeResolverByIdQueryQueryVariables = Exact<{
|
|
|
6282
7858
|
offersOrderBy?: InputMaybe<Offer_OrderBy>;
|
|
6283
7859
|
offersOrderDirection?: InputMaybe<OrderDirection>;
|
|
6284
7860
|
offersFilter?: InputMaybe<Offer_Filter>;
|
|
7861
|
+
logsSkip?: InputMaybe<Scalars["Int"]>;
|
|
7862
|
+
logsFirst?: InputMaybe<Scalars["Int"]>;
|
|
7863
|
+
logsOrderBy?: InputMaybe<EventLog_OrderBy>;
|
|
7864
|
+
logsOrderDirection?: InputMaybe<OrderDirection>;
|
|
7865
|
+
logsFilter?: InputMaybe<EventLog_Filter>;
|
|
6285
7866
|
includeOffers?: InputMaybe<Scalars["Boolean"]>;
|
|
7867
|
+
includeLogs?: InputMaybe<Scalars["Boolean"]>;
|
|
6286
7868
|
}>;
|
|
6287
7869
|
export declare type GetDisputeResolverByIdQueryQuery = {
|
|
6288
7870
|
__typename?: "Query";
|
|
@@ -6318,8 +7900,11 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
6318
7900
|
resolutionPeriodDuration: string;
|
|
6319
7901
|
metadataUri: string;
|
|
6320
7902
|
metadataHash: string;
|
|
7903
|
+
voided: boolean;
|
|
6321
7904
|
voidedAt?: string | null;
|
|
6322
7905
|
disputeResolverId: string;
|
|
7906
|
+
numberOfCommits: string;
|
|
7907
|
+
numberOfRedemptions: string;
|
|
6323
7908
|
seller: {
|
|
6324
7909
|
__typename?: "Seller";
|
|
6325
7910
|
id: string;
|
|
@@ -6545,6 +8130,108 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
6545
8130
|
} | null;
|
|
6546
8131
|
} | null;
|
|
6547
8132
|
}>;
|
|
8133
|
+
logs?: Array<{
|
|
8134
|
+
__typename?: "AccountEventLog";
|
|
8135
|
+
id: string;
|
|
8136
|
+
hash: string;
|
|
8137
|
+
type: EventType;
|
|
8138
|
+
timestamp: string;
|
|
8139
|
+
executedBy: string;
|
|
8140
|
+
account: {
|
|
8141
|
+
__typename?: "Buyer";
|
|
8142
|
+
id: string;
|
|
8143
|
+
} | {
|
|
8144
|
+
__typename?: "DisputeResolver";
|
|
8145
|
+
id: string;
|
|
8146
|
+
} | {
|
|
8147
|
+
__typename?: "Seller";
|
|
8148
|
+
id: string;
|
|
8149
|
+
};
|
|
8150
|
+
} | {
|
|
8151
|
+
__typename?: "DisputeEventLog";
|
|
8152
|
+
id: string;
|
|
8153
|
+
hash: string;
|
|
8154
|
+
type: EventType;
|
|
8155
|
+
timestamp: string;
|
|
8156
|
+
executedBy: string;
|
|
8157
|
+
dispute: {
|
|
8158
|
+
__typename?: "Dispute";
|
|
8159
|
+
id: string;
|
|
8160
|
+
};
|
|
8161
|
+
account: {
|
|
8162
|
+
__typename?: "Buyer";
|
|
8163
|
+
id: string;
|
|
8164
|
+
} | {
|
|
8165
|
+
__typename?: "DisputeResolver";
|
|
8166
|
+
id: string;
|
|
8167
|
+
} | {
|
|
8168
|
+
__typename?: "Seller";
|
|
8169
|
+
id: string;
|
|
8170
|
+
};
|
|
8171
|
+
} | {
|
|
8172
|
+
__typename?: "ExchangeEventLog";
|
|
8173
|
+
id: string;
|
|
8174
|
+
hash: string;
|
|
8175
|
+
type: EventType;
|
|
8176
|
+
timestamp: string;
|
|
8177
|
+
executedBy: string;
|
|
8178
|
+
exchange: {
|
|
8179
|
+
__typename?: "Exchange";
|
|
8180
|
+
id: string;
|
|
8181
|
+
};
|
|
8182
|
+
account: {
|
|
8183
|
+
__typename?: "Buyer";
|
|
8184
|
+
id: string;
|
|
8185
|
+
} | {
|
|
8186
|
+
__typename?: "DisputeResolver";
|
|
8187
|
+
id: string;
|
|
8188
|
+
} | {
|
|
8189
|
+
__typename?: "Seller";
|
|
8190
|
+
id: string;
|
|
8191
|
+
};
|
|
8192
|
+
} | {
|
|
8193
|
+
__typename?: "FundsEventLog";
|
|
8194
|
+
id: string;
|
|
8195
|
+
hash: string;
|
|
8196
|
+
type: EventType;
|
|
8197
|
+
timestamp: string;
|
|
8198
|
+
executedBy: string;
|
|
8199
|
+
funds: {
|
|
8200
|
+
__typename?: "FundsEntity";
|
|
8201
|
+
id: string;
|
|
8202
|
+
};
|
|
8203
|
+
account: {
|
|
8204
|
+
__typename?: "Buyer";
|
|
8205
|
+
id: string;
|
|
8206
|
+
} | {
|
|
8207
|
+
__typename?: "DisputeResolver";
|
|
8208
|
+
id: string;
|
|
8209
|
+
} | {
|
|
8210
|
+
__typename?: "Seller";
|
|
8211
|
+
id: string;
|
|
8212
|
+
};
|
|
8213
|
+
} | {
|
|
8214
|
+
__typename?: "OfferEventLog";
|
|
8215
|
+
id: string;
|
|
8216
|
+
hash: string;
|
|
8217
|
+
type: EventType;
|
|
8218
|
+
timestamp: string;
|
|
8219
|
+
executedBy: string;
|
|
8220
|
+
offer: {
|
|
8221
|
+
__typename?: "Offer";
|
|
8222
|
+
id: string;
|
|
8223
|
+
};
|
|
8224
|
+
account: {
|
|
8225
|
+
__typename?: "Buyer";
|
|
8226
|
+
id: string;
|
|
8227
|
+
} | {
|
|
8228
|
+
__typename?: "DisputeResolver";
|
|
8229
|
+
id: string;
|
|
8230
|
+
} | {
|
|
8231
|
+
__typename?: "Seller";
|
|
8232
|
+
id: string;
|
|
8233
|
+
};
|
|
8234
|
+
}>;
|
|
6548
8235
|
fees: Array<{
|
|
6549
8236
|
__typename?: "DisputeResolverFee";
|
|
6550
8237
|
id: string;
|
|
@@ -6573,7 +8260,13 @@ export declare type GetDisputeResolversQueryQueryVariables = Exact<{
|
|
|
6573
8260
|
offersOrderBy?: InputMaybe<Offer_OrderBy>;
|
|
6574
8261
|
offersOrderDirection?: InputMaybe<OrderDirection>;
|
|
6575
8262
|
offersFilter?: InputMaybe<Offer_Filter>;
|
|
8263
|
+
logsSkip?: InputMaybe<Scalars["Int"]>;
|
|
8264
|
+
logsFirst?: InputMaybe<Scalars["Int"]>;
|
|
8265
|
+
logsOrderBy?: InputMaybe<EventLog_OrderBy>;
|
|
8266
|
+
logsOrderDirection?: InputMaybe<OrderDirection>;
|
|
8267
|
+
logsFilter?: InputMaybe<EventLog_Filter>;
|
|
6576
8268
|
includeOffers?: InputMaybe<Scalars["Boolean"]>;
|
|
8269
|
+
includeLogs?: InputMaybe<Scalars["Boolean"]>;
|
|
6577
8270
|
}>;
|
|
6578
8271
|
export declare type GetDisputeResolversQueryQuery = {
|
|
6579
8272
|
__typename?: "Query";
|
|
@@ -6609,8 +8302,11 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
6609
8302
|
resolutionPeriodDuration: string;
|
|
6610
8303
|
metadataUri: string;
|
|
6611
8304
|
metadataHash: string;
|
|
8305
|
+
voided: boolean;
|
|
6612
8306
|
voidedAt?: string | null;
|
|
6613
8307
|
disputeResolverId: string;
|
|
8308
|
+
numberOfCommits: string;
|
|
8309
|
+
numberOfRedemptions: string;
|
|
6614
8310
|
seller: {
|
|
6615
8311
|
__typename?: "Seller";
|
|
6616
8312
|
id: string;
|
|
@@ -6836,6 +8532,108 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
6836
8532
|
} | null;
|
|
6837
8533
|
} | null;
|
|
6838
8534
|
}>;
|
|
8535
|
+
logs?: Array<{
|
|
8536
|
+
__typename?: "AccountEventLog";
|
|
8537
|
+
id: string;
|
|
8538
|
+
hash: string;
|
|
8539
|
+
type: EventType;
|
|
8540
|
+
timestamp: string;
|
|
8541
|
+
executedBy: string;
|
|
8542
|
+
account: {
|
|
8543
|
+
__typename?: "Buyer";
|
|
8544
|
+
id: string;
|
|
8545
|
+
} | {
|
|
8546
|
+
__typename?: "DisputeResolver";
|
|
8547
|
+
id: string;
|
|
8548
|
+
} | {
|
|
8549
|
+
__typename?: "Seller";
|
|
8550
|
+
id: string;
|
|
8551
|
+
};
|
|
8552
|
+
} | {
|
|
8553
|
+
__typename?: "DisputeEventLog";
|
|
8554
|
+
id: string;
|
|
8555
|
+
hash: string;
|
|
8556
|
+
type: EventType;
|
|
8557
|
+
timestamp: string;
|
|
8558
|
+
executedBy: string;
|
|
8559
|
+
dispute: {
|
|
8560
|
+
__typename?: "Dispute";
|
|
8561
|
+
id: string;
|
|
8562
|
+
};
|
|
8563
|
+
account: {
|
|
8564
|
+
__typename?: "Buyer";
|
|
8565
|
+
id: string;
|
|
8566
|
+
} | {
|
|
8567
|
+
__typename?: "DisputeResolver";
|
|
8568
|
+
id: string;
|
|
8569
|
+
} | {
|
|
8570
|
+
__typename?: "Seller";
|
|
8571
|
+
id: string;
|
|
8572
|
+
};
|
|
8573
|
+
} | {
|
|
8574
|
+
__typename?: "ExchangeEventLog";
|
|
8575
|
+
id: string;
|
|
8576
|
+
hash: string;
|
|
8577
|
+
type: EventType;
|
|
8578
|
+
timestamp: string;
|
|
8579
|
+
executedBy: string;
|
|
8580
|
+
exchange: {
|
|
8581
|
+
__typename?: "Exchange";
|
|
8582
|
+
id: string;
|
|
8583
|
+
};
|
|
8584
|
+
account: {
|
|
8585
|
+
__typename?: "Buyer";
|
|
8586
|
+
id: string;
|
|
8587
|
+
} | {
|
|
8588
|
+
__typename?: "DisputeResolver";
|
|
8589
|
+
id: string;
|
|
8590
|
+
} | {
|
|
8591
|
+
__typename?: "Seller";
|
|
8592
|
+
id: string;
|
|
8593
|
+
};
|
|
8594
|
+
} | {
|
|
8595
|
+
__typename?: "FundsEventLog";
|
|
8596
|
+
id: string;
|
|
8597
|
+
hash: string;
|
|
8598
|
+
type: EventType;
|
|
8599
|
+
timestamp: string;
|
|
8600
|
+
executedBy: string;
|
|
8601
|
+
funds: {
|
|
8602
|
+
__typename?: "FundsEntity";
|
|
8603
|
+
id: string;
|
|
8604
|
+
};
|
|
8605
|
+
account: {
|
|
8606
|
+
__typename?: "Buyer";
|
|
8607
|
+
id: string;
|
|
8608
|
+
} | {
|
|
8609
|
+
__typename?: "DisputeResolver";
|
|
8610
|
+
id: string;
|
|
8611
|
+
} | {
|
|
8612
|
+
__typename?: "Seller";
|
|
8613
|
+
id: string;
|
|
8614
|
+
};
|
|
8615
|
+
} | {
|
|
8616
|
+
__typename?: "OfferEventLog";
|
|
8617
|
+
id: string;
|
|
8618
|
+
hash: string;
|
|
8619
|
+
type: EventType;
|
|
8620
|
+
timestamp: string;
|
|
8621
|
+
executedBy: string;
|
|
8622
|
+
offer: {
|
|
8623
|
+
__typename?: "Offer";
|
|
8624
|
+
id: string;
|
|
8625
|
+
};
|
|
8626
|
+
account: {
|
|
8627
|
+
__typename?: "Buyer";
|
|
8628
|
+
id: string;
|
|
8629
|
+
} | {
|
|
8630
|
+
__typename?: "DisputeResolver";
|
|
8631
|
+
id: string;
|
|
8632
|
+
} | {
|
|
8633
|
+
__typename?: "Seller";
|
|
8634
|
+
id: string;
|
|
8635
|
+
};
|
|
8636
|
+
}>;
|
|
6839
8637
|
fees: Array<{
|
|
6840
8638
|
__typename?: "DisputeResolverFee";
|
|
6841
8639
|
id: string;
|
|
@@ -6899,8 +8697,11 @@ export declare type SellerFieldsFragment = {
|
|
|
6899
8697
|
resolutionPeriodDuration: string;
|
|
6900
8698
|
metadataUri: string;
|
|
6901
8699
|
metadataHash: string;
|
|
8700
|
+
voided: boolean;
|
|
6902
8701
|
voidedAt?: string | null;
|
|
6903
8702
|
disputeResolverId: string;
|
|
8703
|
+
numberOfCommits: string;
|
|
8704
|
+
numberOfRedemptions: string;
|
|
6904
8705
|
seller: {
|
|
6905
8706
|
__typename?: "Seller";
|
|
6906
8707
|
id: string;
|
|
@@ -7129,64 +8930,334 @@ export declare type SellerFieldsFragment = {
|
|
|
7129
8930
|
exchanges?: Array<{
|
|
7130
8931
|
__typename?: "Exchange";
|
|
7131
8932
|
id: string;
|
|
7132
|
-
disputed: boolean;
|
|
7133
|
-
state: ExchangeState;
|
|
7134
|
-
committedDate: string;
|
|
7135
|
-
finalizedDate?: string | null;
|
|
7136
|
-
validUntilDate: string;
|
|
7137
|
-
redeemedDate?: string | null;
|
|
7138
|
-
revokedDate?: string | null;
|
|
7139
|
-
cancelledDate?: string | null;
|
|
7140
|
-
completedDate?: string | null;
|
|
7141
|
-
disputedDate?: string | null;
|
|
7142
|
-
expired: boolean;
|
|
7143
|
-
|
|
7144
|
-
|
|
7145
|
-
|
|
7146
|
-
|
|
7147
|
-
|
|
7148
|
-
|
|
7149
|
-
|
|
7150
|
-
|
|
7151
|
-
|
|
7152
|
-
|
|
7153
|
-
|
|
7154
|
-
|
|
7155
|
-
|
|
7156
|
-
|
|
7157
|
-
|
|
7158
|
-
|
|
7159
|
-
|
|
7160
|
-
|
|
7161
|
-
|
|
7162
|
-
|
|
7163
|
-
|
|
8933
|
+
disputed: boolean;
|
|
8934
|
+
state: ExchangeState;
|
|
8935
|
+
committedDate: string;
|
|
8936
|
+
finalizedDate?: string | null;
|
|
8937
|
+
validUntilDate: string;
|
|
8938
|
+
redeemedDate?: string | null;
|
|
8939
|
+
revokedDate?: string | null;
|
|
8940
|
+
cancelledDate?: string | null;
|
|
8941
|
+
completedDate?: string | null;
|
|
8942
|
+
disputedDate?: string | null;
|
|
8943
|
+
expired: boolean;
|
|
8944
|
+
dispute?: {
|
|
8945
|
+
__typename?: "Dispute";
|
|
8946
|
+
id: string;
|
|
8947
|
+
exchangeId: string;
|
|
8948
|
+
state: DisputeState;
|
|
8949
|
+
buyerPercent: string;
|
|
8950
|
+
disputedDate: string;
|
|
8951
|
+
escalatedDate?: string | null;
|
|
8952
|
+
finalizedDate?: string | null;
|
|
8953
|
+
retractedDate?: string | null;
|
|
8954
|
+
resolvedDate?: string | null;
|
|
8955
|
+
decidedDate?: string | null;
|
|
8956
|
+
refusedDate?: string | null;
|
|
8957
|
+
timeout: string;
|
|
8958
|
+
} | null;
|
|
8959
|
+
buyer: {
|
|
8960
|
+
__typename?: "Buyer";
|
|
8961
|
+
id: string;
|
|
8962
|
+
wallet: string;
|
|
8963
|
+
active: boolean;
|
|
8964
|
+
};
|
|
8965
|
+
seller: {
|
|
8966
|
+
__typename?: "Seller";
|
|
8967
|
+
id: string;
|
|
8968
|
+
operator: string;
|
|
8969
|
+
admin: string;
|
|
8970
|
+
clerk: string;
|
|
8971
|
+
treasury: string;
|
|
8972
|
+
authTokenId: string;
|
|
8973
|
+
authTokenType: number;
|
|
8974
|
+
voucherCloneAddress: string;
|
|
8975
|
+
active: boolean;
|
|
8976
|
+
};
|
|
8977
|
+
}>;
|
|
8978
|
+
logs?: Array<{
|
|
8979
|
+
__typename?: "AccountEventLog";
|
|
8980
|
+
id: string;
|
|
8981
|
+
hash: string;
|
|
8982
|
+
type: EventType;
|
|
8983
|
+
timestamp: string;
|
|
8984
|
+
executedBy: string;
|
|
8985
|
+
account: {
|
|
8986
|
+
__typename?: "Buyer";
|
|
8987
|
+
id: string;
|
|
8988
|
+
} | {
|
|
8989
|
+
__typename?: "DisputeResolver";
|
|
8990
|
+
id: string;
|
|
8991
|
+
} | {
|
|
8992
|
+
__typename?: "Seller";
|
|
8993
|
+
id: string;
|
|
8994
|
+
};
|
|
8995
|
+
} | {
|
|
8996
|
+
__typename?: "DisputeEventLog";
|
|
8997
|
+
id: string;
|
|
8998
|
+
hash: string;
|
|
8999
|
+
type: EventType;
|
|
9000
|
+
timestamp: string;
|
|
9001
|
+
executedBy: string;
|
|
9002
|
+
dispute: {
|
|
9003
|
+
__typename?: "Dispute";
|
|
9004
|
+
id: string;
|
|
9005
|
+
};
|
|
9006
|
+
account: {
|
|
9007
|
+
__typename?: "Buyer";
|
|
9008
|
+
id: string;
|
|
9009
|
+
} | {
|
|
9010
|
+
__typename?: "DisputeResolver";
|
|
9011
|
+
id: string;
|
|
9012
|
+
} | {
|
|
9013
|
+
__typename?: "Seller";
|
|
9014
|
+
id: string;
|
|
9015
|
+
};
|
|
9016
|
+
} | {
|
|
9017
|
+
__typename?: "ExchangeEventLog";
|
|
9018
|
+
id: string;
|
|
9019
|
+
hash: string;
|
|
9020
|
+
type: EventType;
|
|
9021
|
+
timestamp: string;
|
|
9022
|
+
executedBy: string;
|
|
9023
|
+
exchange: {
|
|
9024
|
+
__typename?: "Exchange";
|
|
9025
|
+
id: string;
|
|
9026
|
+
};
|
|
9027
|
+
account: {
|
|
9028
|
+
__typename?: "Buyer";
|
|
9029
|
+
id: string;
|
|
9030
|
+
} | {
|
|
9031
|
+
__typename?: "DisputeResolver";
|
|
9032
|
+
id: string;
|
|
9033
|
+
} | {
|
|
9034
|
+
__typename?: "Seller";
|
|
9035
|
+
id: string;
|
|
9036
|
+
};
|
|
9037
|
+
} | {
|
|
9038
|
+
__typename?: "FundsEventLog";
|
|
9039
|
+
id: string;
|
|
9040
|
+
hash: string;
|
|
9041
|
+
type: EventType;
|
|
9042
|
+
timestamp: string;
|
|
9043
|
+
executedBy: string;
|
|
9044
|
+
funds: {
|
|
9045
|
+
__typename?: "FundsEntity";
|
|
9046
|
+
id: string;
|
|
9047
|
+
};
|
|
9048
|
+
account: {
|
|
9049
|
+
__typename?: "Buyer";
|
|
9050
|
+
id: string;
|
|
9051
|
+
} | {
|
|
9052
|
+
__typename?: "DisputeResolver";
|
|
9053
|
+
id: string;
|
|
9054
|
+
} | {
|
|
9055
|
+
__typename?: "Seller";
|
|
9056
|
+
id: string;
|
|
9057
|
+
};
|
|
9058
|
+
} | {
|
|
9059
|
+
__typename?: "OfferEventLog";
|
|
9060
|
+
id: string;
|
|
9061
|
+
hash: string;
|
|
9062
|
+
type: EventType;
|
|
9063
|
+
timestamp: string;
|
|
9064
|
+
executedBy: string;
|
|
9065
|
+
offer: {
|
|
9066
|
+
__typename?: "Offer";
|
|
9067
|
+
id: string;
|
|
9068
|
+
};
|
|
9069
|
+
account: {
|
|
9070
|
+
__typename?: "Buyer";
|
|
9071
|
+
id: string;
|
|
9072
|
+
} | {
|
|
9073
|
+
__typename?: "DisputeResolver";
|
|
9074
|
+
id: string;
|
|
9075
|
+
} | {
|
|
9076
|
+
__typename?: "Seller";
|
|
9077
|
+
id: string;
|
|
9078
|
+
};
|
|
9079
|
+
}>;
|
|
9080
|
+
};
|
|
9081
|
+
export declare type BaseSellerFieldsFragment = {
|
|
9082
|
+
__typename?: "Seller";
|
|
9083
|
+
id: string;
|
|
9084
|
+
operator: string;
|
|
9085
|
+
admin: string;
|
|
9086
|
+
clerk: string;
|
|
9087
|
+
treasury: string;
|
|
9088
|
+
authTokenId: string;
|
|
9089
|
+
authTokenType: number;
|
|
9090
|
+
voucherCloneAddress: string;
|
|
9091
|
+
active: boolean;
|
|
9092
|
+
};
|
|
9093
|
+
export declare type BuyerFieldsFragment = {
|
|
9094
|
+
__typename?: "Buyer";
|
|
9095
|
+
id: string;
|
|
9096
|
+
wallet: string;
|
|
9097
|
+
active: boolean;
|
|
9098
|
+
funds?: Array<{
|
|
9099
|
+
__typename?: "FundsEntity";
|
|
9100
|
+
id: string;
|
|
9101
|
+
availableAmount: string;
|
|
9102
|
+
accountId: string;
|
|
9103
|
+
token: {
|
|
9104
|
+
__typename?: "ExchangeToken";
|
|
9105
|
+
id: string;
|
|
9106
|
+
address: string;
|
|
9107
|
+
decimals: string;
|
|
9108
|
+
symbol: string;
|
|
9109
|
+
name: string;
|
|
9110
|
+
};
|
|
9111
|
+
}>;
|
|
9112
|
+
exchanges?: Array<{
|
|
9113
|
+
__typename?: "Exchange";
|
|
9114
|
+
id: string;
|
|
9115
|
+
disputed: boolean;
|
|
9116
|
+
state: ExchangeState;
|
|
9117
|
+
committedDate: string;
|
|
9118
|
+
finalizedDate?: string | null;
|
|
9119
|
+
validUntilDate: string;
|
|
9120
|
+
redeemedDate?: string | null;
|
|
9121
|
+
revokedDate?: string | null;
|
|
9122
|
+
cancelledDate?: string | null;
|
|
9123
|
+
completedDate?: string | null;
|
|
9124
|
+
disputedDate?: string | null;
|
|
9125
|
+
expired: boolean;
|
|
9126
|
+
dispute?: {
|
|
9127
|
+
__typename?: "Dispute";
|
|
9128
|
+
id: string;
|
|
9129
|
+
exchangeId: string;
|
|
9130
|
+
state: DisputeState;
|
|
9131
|
+
buyerPercent: string;
|
|
9132
|
+
disputedDate: string;
|
|
9133
|
+
escalatedDate?: string | null;
|
|
9134
|
+
finalizedDate?: string | null;
|
|
9135
|
+
retractedDate?: string | null;
|
|
9136
|
+
resolvedDate?: string | null;
|
|
9137
|
+
decidedDate?: string | null;
|
|
9138
|
+
refusedDate?: string | null;
|
|
9139
|
+
timeout: string;
|
|
9140
|
+
} | null;
|
|
9141
|
+
buyer: {
|
|
9142
|
+
__typename?: "Buyer";
|
|
9143
|
+
id: string;
|
|
9144
|
+
wallet: string;
|
|
9145
|
+
active: boolean;
|
|
9146
|
+
};
|
|
9147
|
+
seller: {
|
|
9148
|
+
__typename?: "Seller";
|
|
9149
|
+
id: string;
|
|
9150
|
+
operator: string;
|
|
9151
|
+
admin: string;
|
|
9152
|
+
clerk: string;
|
|
9153
|
+
treasury: string;
|
|
9154
|
+
authTokenId: string;
|
|
9155
|
+
authTokenType: number;
|
|
9156
|
+
voucherCloneAddress: string;
|
|
9157
|
+
active: boolean;
|
|
9158
|
+
};
|
|
9159
|
+
}>;
|
|
9160
|
+
logs?: Array<{
|
|
9161
|
+
__typename?: "AccountEventLog";
|
|
9162
|
+
id: string;
|
|
9163
|
+
hash: string;
|
|
9164
|
+
type: EventType;
|
|
9165
|
+
timestamp: string;
|
|
9166
|
+
executedBy: string;
|
|
9167
|
+
account: {
|
|
9168
|
+
__typename?: "Buyer";
|
|
9169
|
+
id: string;
|
|
9170
|
+
} | {
|
|
9171
|
+
__typename?: "DisputeResolver";
|
|
9172
|
+
id: string;
|
|
9173
|
+
} | {
|
|
9174
|
+
__typename?: "Seller";
|
|
9175
|
+
id: string;
|
|
9176
|
+
};
|
|
9177
|
+
} | {
|
|
9178
|
+
__typename?: "DisputeEventLog";
|
|
9179
|
+
id: string;
|
|
9180
|
+
hash: string;
|
|
9181
|
+
type: EventType;
|
|
9182
|
+
timestamp: string;
|
|
9183
|
+
executedBy: string;
|
|
9184
|
+
dispute: {
|
|
9185
|
+
__typename?: "Dispute";
|
|
9186
|
+
id: string;
|
|
9187
|
+
};
|
|
9188
|
+
account: {
|
|
9189
|
+
__typename?: "Buyer";
|
|
9190
|
+
id: string;
|
|
9191
|
+
} | {
|
|
9192
|
+
__typename?: "DisputeResolver";
|
|
9193
|
+
id: string;
|
|
9194
|
+
} | {
|
|
9195
|
+
__typename?: "Seller";
|
|
9196
|
+
id: string;
|
|
9197
|
+
};
|
|
9198
|
+
} | {
|
|
9199
|
+
__typename?: "ExchangeEventLog";
|
|
9200
|
+
id: string;
|
|
9201
|
+
hash: string;
|
|
9202
|
+
type: EventType;
|
|
9203
|
+
timestamp: string;
|
|
9204
|
+
executedBy: string;
|
|
9205
|
+
exchange: {
|
|
9206
|
+
__typename?: "Exchange";
|
|
9207
|
+
id: string;
|
|
9208
|
+
};
|
|
9209
|
+
account: {
|
|
9210
|
+
__typename?: "Buyer";
|
|
9211
|
+
id: string;
|
|
9212
|
+
} | {
|
|
9213
|
+
__typename?: "DisputeResolver";
|
|
9214
|
+
id: string;
|
|
9215
|
+
} | {
|
|
9216
|
+
__typename?: "Seller";
|
|
9217
|
+
id: string;
|
|
9218
|
+
};
|
|
9219
|
+
} | {
|
|
9220
|
+
__typename?: "FundsEventLog";
|
|
7164
9221
|
id: string;
|
|
7165
|
-
|
|
7166
|
-
|
|
7167
|
-
|
|
7168
|
-
|
|
9222
|
+
hash: string;
|
|
9223
|
+
type: EventType;
|
|
9224
|
+
timestamp: string;
|
|
9225
|
+
executedBy: string;
|
|
9226
|
+
funds: {
|
|
9227
|
+
__typename?: "FundsEntity";
|
|
7169
9228
|
id: string;
|
|
7170
|
-
address: string;
|
|
7171
|
-
decimals: string;
|
|
7172
|
-
symbol: string;
|
|
7173
|
-
name: string;
|
|
7174
9229
|
};
|
|
7175
|
-
|
|
7176
|
-
|
|
7177
|
-
|
|
9230
|
+
account: {
|
|
9231
|
+
__typename?: "Buyer";
|
|
9232
|
+
id: string;
|
|
9233
|
+
} | {
|
|
9234
|
+
__typename?: "DisputeResolver";
|
|
9235
|
+
id: string;
|
|
9236
|
+
} | {
|
|
9237
|
+
__typename?: "Seller";
|
|
9238
|
+
id: string;
|
|
9239
|
+
};
|
|
9240
|
+
} | {
|
|
9241
|
+
__typename?: "OfferEventLog";
|
|
7178
9242
|
id: string;
|
|
7179
|
-
|
|
7180
|
-
|
|
7181
|
-
|
|
7182
|
-
|
|
7183
|
-
|
|
7184
|
-
|
|
7185
|
-
|
|
7186
|
-
|
|
7187
|
-
|
|
7188
|
-
|
|
7189
|
-
|
|
9243
|
+
hash: string;
|
|
9244
|
+
type: EventType;
|
|
9245
|
+
timestamp: string;
|
|
9246
|
+
executedBy: string;
|
|
9247
|
+
offer: {
|
|
9248
|
+
__typename?: "Offer";
|
|
9249
|
+
id: string;
|
|
9250
|
+
};
|
|
9251
|
+
account: {
|
|
9252
|
+
__typename?: "Buyer";
|
|
9253
|
+
id: string;
|
|
9254
|
+
} | {
|
|
9255
|
+
__typename?: "DisputeResolver";
|
|
9256
|
+
id: string;
|
|
9257
|
+
} | {
|
|
9258
|
+
__typename?: "Seller";
|
|
9259
|
+
id: string;
|
|
9260
|
+
};
|
|
7190
9261
|
}>;
|
|
7191
9262
|
};
|
|
7192
9263
|
export declare type BaseBuyerFieldsFragment = {
|
|
@@ -7227,8 +9298,11 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
7227
9298
|
resolutionPeriodDuration: string;
|
|
7228
9299
|
metadataUri: string;
|
|
7229
9300
|
metadataHash: string;
|
|
9301
|
+
voided: boolean;
|
|
7230
9302
|
voidedAt?: string | null;
|
|
7231
9303
|
disputeResolverId: string;
|
|
9304
|
+
numberOfCommits: string;
|
|
9305
|
+
numberOfRedemptions: string;
|
|
7232
9306
|
seller: {
|
|
7233
9307
|
__typename?: "Seller";
|
|
7234
9308
|
id: string;
|
|
@@ -7454,6 +9528,108 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
7454
9528
|
} | null;
|
|
7455
9529
|
} | null;
|
|
7456
9530
|
}>;
|
|
9531
|
+
logs?: Array<{
|
|
9532
|
+
__typename?: "AccountEventLog";
|
|
9533
|
+
id: string;
|
|
9534
|
+
hash: string;
|
|
9535
|
+
type: EventType;
|
|
9536
|
+
timestamp: string;
|
|
9537
|
+
executedBy: string;
|
|
9538
|
+
account: {
|
|
9539
|
+
__typename?: "Buyer";
|
|
9540
|
+
id: string;
|
|
9541
|
+
} | {
|
|
9542
|
+
__typename?: "DisputeResolver";
|
|
9543
|
+
id: string;
|
|
9544
|
+
} | {
|
|
9545
|
+
__typename?: "Seller";
|
|
9546
|
+
id: string;
|
|
9547
|
+
};
|
|
9548
|
+
} | {
|
|
9549
|
+
__typename?: "DisputeEventLog";
|
|
9550
|
+
id: string;
|
|
9551
|
+
hash: string;
|
|
9552
|
+
type: EventType;
|
|
9553
|
+
timestamp: string;
|
|
9554
|
+
executedBy: string;
|
|
9555
|
+
dispute: {
|
|
9556
|
+
__typename?: "Dispute";
|
|
9557
|
+
id: string;
|
|
9558
|
+
};
|
|
9559
|
+
account: {
|
|
9560
|
+
__typename?: "Buyer";
|
|
9561
|
+
id: string;
|
|
9562
|
+
} | {
|
|
9563
|
+
__typename?: "DisputeResolver";
|
|
9564
|
+
id: string;
|
|
9565
|
+
} | {
|
|
9566
|
+
__typename?: "Seller";
|
|
9567
|
+
id: string;
|
|
9568
|
+
};
|
|
9569
|
+
} | {
|
|
9570
|
+
__typename?: "ExchangeEventLog";
|
|
9571
|
+
id: string;
|
|
9572
|
+
hash: string;
|
|
9573
|
+
type: EventType;
|
|
9574
|
+
timestamp: string;
|
|
9575
|
+
executedBy: string;
|
|
9576
|
+
exchange: {
|
|
9577
|
+
__typename?: "Exchange";
|
|
9578
|
+
id: string;
|
|
9579
|
+
};
|
|
9580
|
+
account: {
|
|
9581
|
+
__typename?: "Buyer";
|
|
9582
|
+
id: string;
|
|
9583
|
+
} | {
|
|
9584
|
+
__typename?: "DisputeResolver";
|
|
9585
|
+
id: string;
|
|
9586
|
+
} | {
|
|
9587
|
+
__typename?: "Seller";
|
|
9588
|
+
id: string;
|
|
9589
|
+
};
|
|
9590
|
+
} | {
|
|
9591
|
+
__typename?: "FundsEventLog";
|
|
9592
|
+
id: string;
|
|
9593
|
+
hash: string;
|
|
9594
|
+
type: EventType;
|
|
9595
|
+
timestamp: string;
|
|
9596
|
+
executedBy: string;
|
|
9597
|
+
funds: {
|
|
9598
|
+
__typename?: "FundsEntity";
|
|
9599
|
+
id: string;
|
|
9600
|
+
};
|
|
9601
|
+
account: {
|
|
9602
|
+
__typename?: "Buyer";
|
|
9603
|
+
id: string;
|
|
9604
|
+
} | {
|
|
9605
|
+
__typename?: "DisputeResolver";
|
|
9606
|
+
id: string;
|
|
9607
|
+
} | {
|
|
9608
|
+
__typename?: "Seller";
|
|
9609
|
+
id: string;
|
|
9610
|
+
};
|
|
9611
|
+
} | {
|
|
9612
|
+
__typename?: "OfferEventLog";
|
|
9613
|
+
id: string;
|
|
9614
|
+
hash: string;
|
|
9615
|
+
type: EventType;
|
|
9616
|
+
timestamp: string;
|
|
9617
|
+
executedBy: string;
|
|
9618
|
+
offer: {
|
|
9619
|
+
__typename?: "Offer";
|
|
9620
|
+
id: string;
|
|
9621
|
+
};
|
|
9622
|
+
account: {
|
|
9623
|
+
__typename?: "Buyer";
|
|
9624
|
+
id: string;
|
|
9625
|
+
} | {
|
|
9626
|
+
__typename?: "DisputeResolver";
|
|
9627
|
+
id: string;
|
|
9628
|
+
} | {
|
|
9629
|
+
__typename?: "Seller";
|
|
9630
|
+
id: string;
|
|
9631
|
+
};
|
|
9632
|
+
}>;
|
|
7457
9633
|
fees: Array<{
|
|
7458
9634
|
__typename?: "DisputeResolverFee";
|
|
7459
9635
|
id: string;
|
|
@@ -7559,6 +9735,39 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
7559
9735
|
completedDate?: string | null;
|
|
7560
9736
|
disputedDate?: string | null;
|
|
7561
9737
|
expired: boolean;
|
|
9738
|
+
dispute?: {
|
|
9739
|
+
__typename?: "Dispute";
|
|
9740
|
+
id: string;
|
|
9741
|
+
exchangeId: string;
|
|
9742
|
+
state: DisputeState;
|
|
9743
|
+
buyerPercent: string;
|
|
9744
|
+
disputedDate: string;
|
|
9745
|
+
escalatedDate?: string | null;
|
|
9746
|
+
finalizedDate?: string | null;
|
|
9747
|
+
retractedDate?: string | null;
|
|
9748
|
+
resolvedDate?: string | null;
|
|
9749
|
+
decidedDate?: string | null;
|
|
9750
|
+
refusedDate?: string | null;
|
|
9751
|
+
timeout: string;
|
|
9752
|
+
} | null;
|
|
9753
|
+
buyer: {
|
|
9754
|
+
__typename?: "Buyer";
|
|
9755
|
+
id: string;
|
|
9756
|
+
wallet: string;
|
|
9757
|
+
active: boolean;
|
|
9758
|
+
};
|
|
9759
|
+
seller: {
|
|
9760
|
+
__typename?: "Seller";
|
|
9761
|
+
id: string;
|
|
9762
|
+
operator: string;
|
|
9763
|
+
admin: string;
|
|
9764
|
+
clerk: string;
|
|
9765
|
+
treasury: string;
|
|
9766
|
+
authTokenId: string;
|
|
9767
|
+
authTokenType: number;
|
|
9768
|
+
voucherCloneAddress: string;
|
|
9769
|
+
active: boolean;
|
|
9770
|
+
};
|
|
7562
9771
|
};
|
|
7563
9772
|
seller: {
|
|
7564
9773
|
__typename?: "Seller";
|
|
@@ -7617,6 +9826,39 @@ export declare type GetDisputesQueryQuery = {
|
|
|
7617
9826
|
completedDate?: string | null;
|
|
7618
9827
|
disputedDate?: string | null;
|
|
7619
9828
|
expired: boolean;
|
|
9829
|
+
dispute?: {
|
|
9830
|
+
__typename?: "Dispute";
|
|
9831
|
+
id: string;
|
|
9832
|
+
exchangeId: string;
|
|
9833
|
+
state: DisputeState;
|
|
9834
|
+
buyerPercent: string;
|
|
9835
|
+
disputedDate: string;
|
|
9836
|
+
escalatedDate?: string | null;
|
|
9837
|
+
finalizedDate?: string | null;
|
|
9838
|
+
retractedDate?: string | null;
|
|
9839
|
+
resolvedDate?: string | null;
|
|
9840
|
+
decidedDate?: string | null;
|
|
9841
|
+
refusedDate?: string | null;
|
|
9842
|
+
timeout: string;
|
|
9843
|
+
} | null;
|
|
9844
|
+
buyer: {
|
|
9845
|
+
__typename?: "Buyer";
|
|
9846
|
+
id: string;
|
|
9847
|
+
wallet: string;
|
|
9848
|
+
active: boolean;
|
|
9849
|
+
};
|
|
9850
|
+
seller: {
|
|
9851
|
+
__typename?: "Seller";
|
|
9852
|
+
id: string;
|
|
9853
|
+
operator: string;
|
|
9854
|
+
admin: string;
|
|
9855
|
+
clerk: string;
|
|
9856
|
+
treasury: string;
|
|
9857
|
+
authTokenId: string;
|
|
9858
|
+
authTokenType: number;
|
|
9859
|
+
voucherCloneAddress: string;
|
|
9860
|
+
active: boolean;
|
|
9861
|
+
};
|
|
7620
9862
|
};
|
|
7621
9863
|
seller: {
|
|
7622
9864
|
__typename?: "Seller";
|
|
@@ -7635,58 +9877,10 @@ export declare type GetDisputesQueryQuery = {
|
|
|
7635
9877
|
id: string;
|
|
7636
9878
|
wallet: string;
|
|
7637
9879
|
active: boolean;
|
|
7638
|
-
};
|
|
7639
|
-
}>;
|
|
7640
|
-
};
|
|
7641
|
-
export declare type DisputeFieldsFragment = {
|
|
7642
|
-
__typename?: "Dispute";
|
|
7643
|
-
id: string;
|
|
7644
|
-
exchangeId: string;
|
|
7645
|
-
state: DisputeState;
|
|
7646
|
-
buyerPercent: string;
|
|
7647
|
-
disputedDate: string;
|
|
7648
|
-
escalatedDate?: string | null;
|
|
7649
|
-
finalizedDate?: string | null;
|
|
7650
|
-
retractedDate?: string | null;
|
|
7651
|
-
resolvedDate?: string | null;
|
|
7652
|
-
decidedDate?: string | null;
|
|
7653
|
-
refusedDate?: string | null;
|
|
7654
|
-
timeout: string;
|
|
7655
|
-
exchange: {
|
|
7656
|
-
__typename?: "Exchange";
|
|
7657
|
-
id: string;
|
|
7658
|
-
disputed: boolean;
|
|
7659
|
-
state: ExchangeState;
|
|
7660
|
-
committedDate: string;
|
|
7661
|
-
finalizedDate?: string | null;
|
|
7662
|
-
validUntilDate: string;
|
|
7663
|
-
redeemedDate?: string | null;
|
|
7664
|
-
revokedDate?: string | null;
|
|
7665
|
-
cancelledDate?: string | null;
|
|
7666
|
-
completedDate?: string | null;
|
|
7667
|
-
disputedDate?: string | null;
|
|
7668
|
-
expired: boolean;
|
|
7669
|
-
};
|
|
7670
|
-
seller: {
|
|
7671
|
-
__typename?: "Seller";
|
|
7672
|
-
id: string;
|
|
7673
|
-
operator: string;
|
|
7674
|
-
admin: string;
|
|
7675
|
-
clerk: string;
|
|
7676
|
-
treasury: string;
|
|
7677
|
-
authTokenId: string;
|
|
7678
|
-
authTokenType: number;
|
|
7679
|
-
voucherCloneAddress: string;
|
|
7680
|
-
active: boolean;
|
|
7681
|
-
};
|
|
7682
|
-
buyer: {
|
|
7683
|
-
__typename?: "Buyer";
|
|
7684
|
-
id: string;
|
|
7685
|
-
wallet: string;
|
|
7686
|
-
active: boolean;
|
|
7687
|
-
};
|
|
9880
|
+
};
|
|
9881
|
+
}>;
|
|
7688
9882
|
};
|
|
7689
|
-
export declare type
|
|
9883
|
+
export declare type DisputeFieldsFragment = {
|
|
7690
9884
|
__typename?: "Dispute";
|
|
7691
9885
|
id: string;
|
|
7692
9886
|
exchangeId: string;
|
|
@@ -7714,6 +9908,39 @@ export declare type BaseDisputeFieldsFragment = {
|
|
|
7714
9908
|
completedDate?: string | null;
|
|
7715
9909
|
disputedDate?: string | null;
|
|
7716
9910
|
expired: boolean;
|
|
9911
|
+
dispute?: {
|
|
9912
|
+
__typename?: "Dispute";
|
|
9913
|
+
id: string;
|
|
9914
|
+
exchangeId: string;
|
|
9915
|
+
state: DisputeState;
|
|
9916
|
+
buyerPercent: string;
|
|
9917
|
+
disputedDate: string;
|
|
9918
|
+
escalatedDate?: string | null;
|
|
9919
|
+
finalizedDate?: string | null;
|
|
9920
|
+
retractedDate?: string | null;
|
|
9921
|
+
resolvedDate?: string | null;
|
|
9922
|
+
decidedDate?: string | null;
|
|
9923
|
+
refusedDate?: string | null;
|
|
9924
|
+
timeout: string;
|
|
9925
|
+
} | null;
|
|
9926
|
+
buyer: {
|
|
9927
|
+
__typename?: "Buyer";
|
|
9928
|
+
id: string;
|
|
9929
|
+
wallet: string;
|
|
9930
|
+
active: boolean;
|
|
9931
|
+
};
|
|
9932
|
+
seller: {
|
|
9933
|
+
__typename?: "Seller";
|
|
9934
|
+
id: string;
|
|
9935
|
+
operator: string;
|
|
9936
|
+
admin: string;
|
|
9937
|
+
clerk: string;
|
|
9938
|
+
treasury: string;
|
|
9939
|
+
authTokenId: string;
|
|
9940
|
+
authTokenType: number;
|
|
9941
|
+
voucherCloneAddress: string;
|
|
9942
|
+
active: boolean;
|
|
9943
|
+
};
|
|
7717
9944
|
};
|
|
7718
9945
|
seller: {
|
|
7719
9946
|
__typename?: "Seller";
|
|
@@ -7734,6 +9961,21 @@ export declare type BaseDisputeFieldsFragment = {
|
|
|
7734
9961
|
active: boolean;
|
|
7735
9962
|
};
|
|
7736
9963
|
};
|
|
9964
|
+
export declare type BaseDisputeFieldsFragment = {
|
|
9965
|
+
__typename?: "Dispute";
|
|
9966
|
+
id: string;
|
|
9967
|
+
exchangeId: string;
|
|
9968
|
+
state: DisputeState;
|
|
9969
|
+
buyerPercent: string;
|
|
9970
|
+
disputedDate: string;
|
|
9971
|
+
escalatedDate?: string | null;
|
|
9972
|
+
finalizedDate?: string | null;
|
|
9973
|
+
retractedDate?: string | null;
|
|
9974
|
+
resolvedDate?: string | null;
|
|
9975
|
+
decidedDate?: string | null;
|
|
9976
|
+
refusedDate?: string | null;
|
|
9977
|
+
timeout: string;
|
|
9978
|
+
};
|
|
7737
9979
|
export declare type GetExchangeTokenByIdQueryQueryVariables = Exact<{
|
|
7738
9980
|
exchangeTokenId: Scalars["ID"];
|
|
7739
9981
|
exchangeTokensSkip?: InputMaybe<Scalars["Int"]>;
|
|
@@ -7784,8 +10026,11 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
7784
10026
|
resolutionPeriodDuration: string;
|
|
7785
10027
|
metadataUri: string;
|
|
7786
10028
|
metadataHash: string;
|
|
10029
|
+
voided: boolean;
|
|
7787
10030
|
voidedAt?: string | null;
|
|
7788
10031
|
disputeResolverId: string;
|
|
10032
|
+
numberOfCommits: string;
|
|
10033
|
+
numberOfRedemptions: string;
|
|
7789
10034
|
seller: {
|
|
7790
10035
|
__typename?: "Seller";
|
|
7791
10036
|
id: string;
|
|
@@ -8068,8 +10313,11 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
8068
10313
|
resolutionPeriodDuration: string;
|
|
8069
10314
|
metadataUri: string;
|
|
8070
10315
|
metadataHash: string;
|
|
10316
|
+
voided: boolean;
|
|
8071
10317
|
voidedAt?: string | null;
|
|
8072
10318
|
disputeResolverId: string;
|
|
10319
|
+
numberOfCommits: string;
|
|
10320
|
+
numberOfRedemptions: string;
|
|
8073
10321
|
seller: {
|
|
8074
10322
|
__typename?: "Seller";
|
|
8075
10323
|
id: string;
|
|
@@ -8331,8 +10579,11 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
8331
10579
|
resolutionPeriodDuration: string;
|
|
8332
10580
|
metadataUri: string;
|
|
8333
10581
|
metadataHash: string;
|
|
10582
|
+
voided: boolean;
|
|
8334
10583
|
voidedAt?: string | null;
|
|
8335
10584
|
disputeResolverId: string;
|
|
10585
|
+
numberOfCommits: string;
|
|
10586
|
+
numberOfRedemptions: string;
|
|
8336
10587
|
seller: {
|
|
8337
10588
|
__typename?: "Seller";
|
|
8338
10589
|
id: string;
|
|
@@ -8573,6 +10824,225 @@ export declare type BaseExchangeTokenFieldsFragment = {
|
|
|
8573
10824
|
symbol: string;
|
|
8574
10825
|
name: string;
|
|
8575
10826
|
};
|
|
10827
|
+
export declare type GetEventLogsQueryQueryVariables = Exact<{
|
|
10828
|
+
logsSkip?: InputMaybe<Scalars["Int"]>;
|
|
10829
|
+
logsFirst?: InputMaybe<Scalars["Int"]>;
|
|
10830
|
+
logsOrderBy?: InputMaybe<EventLog_OrderBy>;
|
|
10831
|
+
logsOrderDirection?: InputMaybe<OrderDirection>;
|
|
10832
|
+
logsFilter?: InputMaybe<EventLog_Filter>;
|
|
10833
|
+
}>;
|
|
10834
|
+
export declare type GetEventLogsQueryQuery = {
|
|
10835
|
+
__typename?: "Query";
|
|
10836
|
+
eventLogs: Array<{
|
|
10837
|
+
__typename?: "AccountEventLog";
|
|
10838
|
+
id: string;
|
|
10839
|
+
hash: string;
|
|
10840
|
+
type: EventType;
|
|
10841
|
+
timestamp: string;
|
|
10842
|
+
executedBy: string;
|
|
10843
|
+
account: {
|
|
10844
|
+
__typename?: "Buyer";
|
|
10845
|
+
id: string;
|
|
10846
|
+
} | {
|
|
10847
|
+
__typename?: "DisputeResolver";
|
|
10848
|
+
id: string;
|
|
10849
|
+
} | {
|
|
10850
|
+
__typename?: "Seller";
|
|
10851
|
+
id: string;
|
|
10852
|
+
};
|
|
10853
|
+
} | {
|
|
10854
|
+
__typename?: "DisputeEventLog";
|
|
10855
|
+
id: string;
|
|
10856
|
+
hash: string;
|
|
10857
|
+
type: EventType;
|
|
10858
|
+
timestamp: string;
|
|
10859
|
+
executedBy: string;
|
|
10860
|
+
dispute: {
|
|
10861
|
+
__typename?: "Dispute";
|
|
10862
|
+
id: string;
|
|
10863
|
+
};
|
|
10864
|
+
account: {
|
|
10865
|
+
__typename?: "Buyer";
|
|
10866
|
+
id: string;
|
|
10867
|
+
} | {
|
|
10868
|
+
__typename?: "DisputeResolver";
|
|
10869
|
+
id: string;
|
|
10870
|
+
} | {
|
|
10871
|
+
__typename?: "Seller";
|
|
10872
|
+
id: string;
|
|
10873
|
+
};
|
|
10874
|
+
} | {
|
|
10875
|
+
__typename?: "ExchangeEventLog";
|
|
10876
|
+
id: string;
|
|
10877
|
+
hash: string;
|
|
10878
|
+
type: EventType;
|
|
10879
|
+
timestamp: string;
|
|
10880
|
+
executedBy: string;
|
|
10881
|
+
exchange: {
|
|
10882
|
+
__typename?: "Exchange";
|
|
10883
|
+
id: string;
|
|
10884
|
+
};
|
|
10885
|
+
account: {
|
|
10886
|
+
__typename?: "Buyer";
|
|
10887
|
+
id: string;
|
|
10888
|
+
} | {
|
|
10889
|
+
__typename?: "DisputeResolver";
|
|
10890
|
+
id: string;
|
|
10891
|
+
} | {
|
|
10892
|
+
__typename?: "Seller";
|
|
10893
|
+
id: string;
|
|
10894
|
+
};
|
|
10895
|
+
} | {
|
|
10896
|
+
__typename?: "FundsEventLog";
|
|
10897
|
+
id: string;
|
|
10898
|
+
hash: string;
|
|
10899
|
+
type: EventType;
|
|
10900
|
+
timestamp: string;
|
|
10901
|
+
executedBy: string;
|
|
10902
|
+
funds: {
|
|
10903
|
+
__typename?: "FundsEntity";
|
|
10904
|
+
id: string;
|
|
10905
|
+
};
|
|
10906
|
+
account: {
|
|
10907
|
+
__typename?: "Buyer";
|
|
10908
|
+
id: string;
|
|
10909
|
+
} | {
|
|
10910
|
+
__typename?: "DisputeResolver";
|
|
10911
|
+
id: string;
|
|
10912
|
+
} | {
|
|
10913
|
+
__typename?: "Seller";
|
|
10914
|
+
id: string;
|
|
10915
|
+
};
|
|
10916
|
+
} | {
|
|
10917
|
+
__typename?: "OfferEventLog";
|
|
10918
|
+
id: string;
|
|
10919
|
+
hash: string;
|
|
10920
|
+
type: EventType;
|
|
10921
|
+
timestamp: string;
|
|
10922
|
+
executedBy: string;
|
|
10923
|
+
offer: {
|
|
10924
|
+
__typename?: "Offer";
|
|
10925
|
+
id: string;
|
|
10926
|
+
};
|
|
10927
|
+
account: {
|
|
10928
|
+
__typename?: "Buyer";
|
|
10929
|
+
id: string;
|
|
10930
|
+
} | {
|
|
10931
|
+
__typename?: "DisputeResolver";
|
|
10932
|
+
id: string;
|
|
10933
|
+
} | {
|
|
10934
|
+
__typename?: "Seller";
|
|
10935
|
+
id: string;
|
|
10936
|
+
};
|
|
10937
|
+
}>;
|
|
10938
|
+
};
|
|
10939
|
+
declare type BaseEventLogFields_AccountEventLog_Fragment = {
|
|
10940
|
+
__typename?: "AccountEventLog";
|
|
10941
|
+
id: string;
|
|
10942
|
+
hash: string;
|
|
10943
|
+
type: EventType;
|
|
10944
|
+
timestamp: string;
|
|
10945
|
+
executedBy: string;
|
|
10946
|
+
account: {
|
|
10947
|
+
__typename?: "Buyer";
|
|
10948
|
+
id: string;
|
|
10949
|
+
} | {
|
|
10950
|
+
__typename?: "DisputeResolver";
|
|
10951
|
+
id: string;
|
|
10952
|
+
} | {
|
|
10953
|
+
__typename?: "Seller";
|
|
10954
|
+
id: string;
|
|
10955
|
+
};
|
|
10956
|
+
};
|
|
10957
|
+
declare type BaseEventLogFields_DisputeEventLog_Fragment = {
|
|
10958
|
+
__typename?: "DisputeEventLog";
|
|
10959
|
+
id: string;
|
|
10960
|
+
hash: string;
|
|
10961
|
+
type: EventType;
|
|
10962
|
+
timestamp: string;
|
|
10963
|
+
executedBy: string;
|
|
10964
|
+
dispute: {
|
|
10965
|
+
__typename?: "Dispute";
|
|
10966
|
+
id: string;
|
|
10967
|
+
};
|
|
10968
|
+
account: {
|
|
10969
|
+
__typename?: "Buyer";
|
|
10970
|
+
id: string;
|
|
10971
|
+
} | {
|
|
10972
|
+
__typename?: "DisputeResolver";
|
|
10973
|
+
id: string;
|
|
10974
|
+
} | {
|
|
10975
|
+
__typename?: "Seller";
|
|
10976
|
+
id: string;
|
|
10977
|
+
};
|
|
10978
|
+
};
|
|
10979
|
+
declare type BaseEventLogFields_ExchangeEventLog_Fragment = {
|
|
10980
|
+
__typename?: "ExchangeEventLog";
|
|
10981
|
+
id: string;
|
|
10982
|
+
hash: string;
|
|
10983
|
+
type: EventType;
|
|
10984
|
+
timestamp: string;
|
|
10985
|
+
executedBy: string;
|
|
10986
|
+
exchange: {
|
|
10987
|
+
__typename?: "Exchange";
|
|
10988
|
+
id: string;
|
|
10989
|
+
};
|
|
10990
|
+
account: {
|
|
10991
|
+
__typename?: "Buyer";
|
|
10992
|
+
id: string;
|
|
10993
|
+
} | {
|
|
10994
|
+
__typename?: "DisputeResolver";
|
|
10995
|
+
id: string;
|
|
10996
|
+
} | {
|
|
10997
|
+
__typename?: "Seller";
|
|
10998
|
+
id: string;
|
|
10999
|
+
};
|
|
11000
|
+
};
|
|
11001
|
+
declare type BaseEventLogFields_FundsEventLog_Fragment = {
|
|
11002
|
+
__typename?: "FundsEventLog";
|
|
11003
|
+
id: string;
|
|
11004
|
+
hash: string;
|
|
11005
|
+
type: EventType;
|
|
11006
|
+
timestamp: string;
|
|
11007
|
+
executedBy: string;
|
|
11008
|
+
funds: {
|
|
11009
|
+
__typename?: "FundsEntity";
|
|
11010
|
+
id: string;
|
|
11011
|
+
};
|
|
11012
|
+
account: {
|
|
11013
|
+
__typename?: "Buyer";
|
|
11014
|
+
id: string;
|
|
11015
|
+
} | {
|
|
11016
|
+
__typename?: "DisputeResolver";
|
|
11017
|
+
id: string;
|
|
11018
|
+
} | {
|
|
11019
|
+
__typename?: "Seller";
|
|
11020
|
+
id: string;
|
|
11021
|
+
};
|
|
11022
|
+
};
|
|
11023
|
+
declare type BaseEventLogFields_OfferEventLog_Fragment = {
|
|
11024
|
+
__typename?: "OfferEventLog";
|
|
11025
|
+
id: string;
|
|
11026
|
+
hash: string;
|
|
11027
|
+
type: EventType;
|
|
11028
|
+
timestamp: string;
|
|
11029
|
+
executedBy: string;
|
|
11030
|
+
offer: {
|
|
11031
|
+
__typename?: "Offer";
|
|
11032
|
+
id: string;
|
|
11033
|
+
};
|
|
11034
|
+
account: {
|
|
11035
|
+
__typename?: "Buyer";
|
|
11036
|
+
id: string;
|
|
11037
|
+
} | {
|
|
11038
|
+
__typename?: "DisputeResolver";
|
|
11039
|
+
id: string;
|
|
11040
|
+
} | {
|
|
11041
|
+
__typename?: "Seller";
|
|
11042
|
+
id: string;
|
|
11043
|
+
};
|
|
11044
|
+
};
|
|
11045
|
+
export declare type BaseEventLogFieldsFragment = BaseEventLogFields_AccountEventLog_Fragment | BaseEventLogFields_DisputeEventLog_Fragment | BaseEventLogFields_ExchangeEventLog_Fragment | BaseEventLogFields_FundsEventLog_Fragment | BaseEventLogFields_OfferEventLog_Fragment;
|
|
8576
11046
|
export declare type GetExchangeByIdQueryQueryVariables = Exact<{
|
|
8577
11047
|
exchangeId: Scalars["ID"];
|
|
8578
11048
|
}>;
|
|
@@ -8592,24 +11062,6 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
8592
11062
|
completedDate?: string | null;
|
|
8593
11063
|
disputedDate?: string | null;
|
|
8594
11064
|
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
|
-
};
|
|
8613
11065
|
offer: {
|
|
8614
11066
|
__typename?: "Offer";
|
|
8615
11067
|
id: string;
|
|
@@ -8631,8 +11083,11 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
8631
11083
|
resolutionPeriodDuration: string;
|
|
8632
11084
|
metadataUri: string;
|
|
8633
11085
|
metadataHash: string;
|
|
11086
|
+
voided: boolean;
|
|
8634
11087
|
voidedAt?: string | null;
|
|
8635
11088
|
disputeResolverId: string;
|
|
11089
|
+
numberOfCommits: string;
|
|
11090
|
+
numberOfRedemptions: string;
|
|
8636
11091
|
seller: {
|
|
8637
11092
|
__typename?: "Seller";
|
|
8638
11093
|
id: string;
|
|
@@ -8872,40 +11327,25 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
8872
11327
|
decidedDate?: string | null;
|
|
8873
11328
|
refusedDate?: string | null;
|
|
8874
11329
|
timeout: string;
|
|
8875
|
-
exchange: {
|
|
8876
|
-
__typename?: "Exchange";
|
|
8877
|
-
id: string;
|
|
8878
|
-
disputed: boolean;
|
|
8879
|
-
state: ExchangeState;
|
|
8880
|
-
committedDate: string;
|
|
8881
|
-
finalizedDate?: string | null;
|
|
8882
|
-
validUntilDate: string;
|
|
8883
|
-
redeemedDate?: string | null;
|
|
8884
|
-
revokedDate?: string | null;
|
|
8885
|
-
cancelledDate?: string | null;
|
|
8886
|
-
completedDate?: string | null;
|
|
8887
|
-
disputedDate?: string | null;
|
|
8888
|
-
expired: boolean;
|
|
8889
|
-
};
|
|
8890
|
-
seller: {
|
|
8891
|
-
__typename?: "Seller";
|
|
8892
|
-
id: string;
|
|
8893
|
-
operator: string;
|
|
8894
|
-
admin: string;
|
|
8895
|
-
clerk: string;
|
|
8896
|
-
treasury: string;
|
|
8897
|
-
authTokenId: string;
|
|
8898
|
-
authTokenType: number;
|
|
8899
|
-
voucherCloneAddress: string;
|
|
8900
|
-
active: boolean;
|
|
8901
|
-
};
|
|
8902
|
-
buyer: {
|
|
8903
|
-
__typename?: "Buyer";
|
|
8904
|
-
id: string;
|
|
8905
|
-
wallet: string;
|
|
8906
|
-
active: boolean;
|
|
8907
|
-
};
|
|
8908
11330
|
} | null;
|
|
11331
|
+
buyer: {
|
|
11332
|
+
__typename?: "Buyer";
|
|
11333
|
+
id: string;
|
|
11334
|
+
wallet: string;
|
|
11335
|
+
active: boolean;
|
|
11336
|
+
};
|
|
11337
|
+
seller: {
|
|
11338
|
+
__typename?: "Seller";
|
|
11339
|
+
id: string;
|
|
11340
|
+
operator: string;
|
|
11341
|
+
admin: string;
|
|
11342
|
+
clerk: string;
|
|
11343
|
+
treasury: string;
|
|
11344
|
+
authTokenId: string;
|
|
11345
|
+
authTokenType: number;
|
|
11346
|
+
voucherCloneAddress: string;
|
|
11347
|
+
active: boolean;
|
|
11348
|
+
};
|
|
8909
11349
|
} | null;
|
|
8910
11350
|
};
|
|
8911
11351
|
export declare type GetExchangesQueryQueryVariables = Exact<{
|
|
@@ -8931,24 +11371,6 @@ export declare type GetExchangesQueryQuery = {
|
|
|
8931
11371
|
completedDate?: string | null;
|
|
8932
11372
|
disputedDate?: string | null;
|
|
8933
11373
|
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
|
-
};
|
|
8952
11374
|
offer: {
|
|
8953
11375
|
__typename?: "Offer";
|
|
8954
11376
|
id: string;
|
|
@@ -8970,8 +11392,11 @@ export declare type GetExchangesQueryQuery = {
|
|
|
8970
11392
|
resolutionPeriodDuration: string;
|
|
8971
11393
|
metadataUri: string;
|
|
8972
11394
|
metadataHash: string;
|
|
11395
|
+
voided: boolean;
|
|
8973
11396
|
voidedAt?: string | null;
|
|
8974
11397
|
disputeResolverId: string;
|
|
11398
|
+
numberOfCommits: string;
|
|
11399
|
+
numberOfRedemptions: string;
|
|
8975
11400
|
seller: {
|
|
8976
11401
|
__typename?: "Seller";
|
|
8977
11402
|
id: string;
|
|
@@ -9211,40 +11636,25 @@ export declare type GetExchangesQueryQuery = {
|
|
|
9211
11636
|
decidedDate?: string | null;
|
|
9212
11637
|
refusedDate?: string | null;
|
|
9213
11638
|
timeout: string;
|
|
9214
|
-
exchange: {
|
|
9215
|
-
__typename?: "Exchange";
|
|
9216
|
-
id: string;
|
|
9217
|
-
disputed: boolean;
|
|
9218
|
-
state: ExchangeState;
|
|
9219
|
-
committedDate: string;
|
|
9220
|
-
finalizedDate?: string | null;
|
|
9221
|
-
validUntilDate: string;
|
|
9222
|
-
redeemedDate?: string | null;
|
|
9223
|
-
revokedDate?: string | null;
|
|
9224
|
-
cancelledDate?: string | null;
|
|
9225
|
-
completedDate?: string | null;
|
|
9226
|
-
disputedDate?: string | null;
|
|
9227
|
-
expired: boolean;
|
|
9228
|
-
};
|
|
9229
|
-
seller: {
|
|
9230
|
-
__typename?: "Seller";
|
|
9231
|
-
id: string;
|
|
9232
|
-
operator: string;
|
|
9233
|
-
admin: string;
|
|
9234
|
-
clerk: string;
|
|
9235
|
-
treasury: string;
|
|
9236
|
-
authTokenId: string;
|
|
9237
|
-
authTokenType: number;
|
|
9238
|
-
voucherCloneAddress: string;
|
|
9239
|
-
active: boolean;
|
|
9240
|
-
};
|
|
9241
|
-
buyer: {
|
|
9242
|
-
__typename?: "Buyer";
|
|
9243
|
-
id: string;
|
|
9244
|
-
wallet: string;
|
|
9245
|
-
active: boolean;
|
|
9246
|
-
};
|
|
9247
11639
|
} | null;
|
|
11640
|
+
buyer: {
|
|
11641
|
+
__typename?: "Buyer";
|
|
11642
|
+
id: string;
|
|
11643
|
+
wallet: string;
|
|
11644
|
+
active: boolean;
|
|
11645
|
+
};
|
|
11646
|
+
seller: {
|
|
11647
|
+
__typename?: "Seller";
|
|
11648
|
+
id: string;
|
|
11649
|
+
operator: string;
|
|
11650
|
+
admin: string;
|
|
11651
|
+
clerk: string;
|
|
11652
|
+
treasury: string;
|
|
11653
|
+
authTokenId: string;
|
|
11654
|
+
authTokenType: number;
|
|
11655
|
+
voucherCloneAddress: string;
|
|
11656
|
+
active: boolean;
|
|
11657
|
+
};
|
|
9248
11658
|
}>;
|
|
9249
11659
|
};
|
|
9250
11660
|
export declare type ExchangeFieldsFragment = {
|
|
@@ -9261,24 +11671,6 @@ export declare type ExchangeFieldsFragment = {
|
|
|
9261
11671
|
completedDate?: string | null;
|
|
9262
11672
|
disputedDate?: string | null;
|
|
9263
11673
|
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
|
-
};
|
|
9282
11674
|
offer: {
|
|
9283
11675
|
__typename?: "Offer";
|
|
9284
11676
|
id: string;
|
|
@@ -9300,8 +11692,11 @@ export declare type ExchangeFieldsFragment = {
|
|
|
9300
11692
|
resolutionPeriodDuration: string;
|
|
9301
11693
|
metadataUri: string;
|
|
9302
11694
|
metadataHash: string;
|
|
11695
|
+
voided: boolean;
|
|
9303
11696
|
voidedAt?: string | null;
|
|
9304
11697
|
disputeResolverId: string;
|
|
11698
|
+
numberOfCommits: string;
|
|
11699
|
+
numberOfRedemptions: string;
|
|
9305
11700
|
seller: {
|
|
9306
11701
|
__typename?: "Seller";
|
|
9307
11702
|
id: string;
|
|
@@ -9541,40 +11936,25 @@ export declare type ExchangeFieldsFragment = {
|
|
|
9541
11936
|
decidedDate?: string | null;
|
|
9542
11937
|
refusedDate?: string | null;
|
|
9543
11938
|
timeout: string;
|
|
9544
|
-
exchange: {
|
|
9545
|
-
__typename?: "Exchange";
|
|
9546
|
-
id: string;
|
|
9547
|
-
disputed: boolean;
|
|
9548
|
-
state: ExchangeState;
|
|
9549
|
-
committedDate: string;
|
|
9550
|
-
finalizedDate?: string | null;
|
|
9551
|
-
validUntilDate: string;
|
|
9552
|
-
redeemedDate?: string | null;
|
|
9553
|
-
revokedDate?: string | null;
|
|
9554
|
-
cancelledDate?: string | null;
|
|
9555
|
-
completedDate?: string | null;
|
|
9556
|
-
disputedDate?: string | null;
|
|
9557
|
-
expired: boolean;
|
|
9558
|
-
};
|
|
9559
|
-
seller: {
|
|
9560
|
-
__typename?: "Seller";
|
|
9561
|
-
id: string;
|
|
9562
|
-
operator: string;
|
|
9563
|
-
admin: string;
|
|
9564
|
-
clerk: string;
|
|
9565
|
-
treasury: string;
|
|
9566
|
-
authTokenId: string;
|
|
9567
|
-
authTokenType: number;
|
|
9568
|
-
voucherCloneAddress: string;
|
|
9569
|
-
active: boolean;
|
|
9570
|
-
};
|
|
9571
|
-
buyer: {
|
|
9572
|
-
__typename?: "Buyer";
|
|
9573
|
-
id: string;
|
|
9574
|
-
wallet: string;
|
|
9575
|
-
active: boolean;
|
|
9576
|
-
};
|
|
9577
11939
|
} | null;
|
|
11940
|
+
buyer: {
|
|
11941
|
+
__typename?: "Buyer";
|
|
11942
|
+
id: string;
|
|
11943
|
+
wallet: string;
|
|
11944
|
+
active: boolean;
|
|
11945
|
+
};
|
|
11946
|
+
seller: {
|
|
11947
|
+
__typename?: "Seller";
|
|
11948
|
+
id: string;
|
|
11949
|
+
operator: string;
|
|
11950
|
+
admin: string;
|
|
11951
|
+
clerk: string;
|
|
11952
|
+
treasury: string;
|
|
11953
|
+
authTokenId: string;
|
|
11954
|
+
authTokenType: number;
|
|
11955
|
+
voucherCloneAddress: string;
|
|
11956
|
+
active: boolean;
|
|
11957
|
+
};
|
|
9578
11958
|
};
|
|
9579
11959
|
export declare type BaseExchangeFieldsFragment = {
|
|
9580
11960
|
__typename?: "Exchange";
|
|
@@ -9590,6 +11970,39 @@ export declare type BaseExchangeFieldsFragment = {
|
|
|
9590
11970
|
completedDate?: string | null;
|
|
9591
11971
|
disputedDate?: string | null;
|
|
9592
11972
|
expired: boolean;
|
|
11973
|
+
dispute?: {
|
|
11974
|
+
__typename?: "Dispute";
|
|
11975
|
+
id: string;
|
|
11976
|
+
exchangeId: string;
|
|
11977
|
+
state: DisputeState;
|
|
11978
|
+
buyerPercent: string;
|
|
11979
|
+
disputedDate: string;
|
|
11980
|
+
escalatedDate?: string | null;
|
|
11981
|
+
finalizedDate?: string | null;
|
|
11982
|
+
retractedDate?: string | null;
|
|
11983
|
+
resolvedDate?: string | null;
|
|
11984
|
+
decidedDate?: string | null;
|
|
11985
|
+
refusedDate?: string | null;
|
|
11986
|
+
timeout: string;
|
|
11987
|
+
} | null;
|
|
11988
|
+
buyer: {
|
|
11989
|
+
__typename?: "Buyer";
|
|
11990
|
+
id: string;
|
|
11991
|
+
wallet: string;
|
|
11992
|
+
active: boolean;
|
|
11993
|
+
};
|
|
11994
|
+
seller: {
|
|
11995
|
+
__typename?: "Seller";
|
|
11996
|
+
id: string;
|
|
11997
|
+
operator: string;
|
|
11998
|
+
admin: string;
|
|
11999
|
+
clerk: string;
|
|
12000
|
+
treasury: string;
|
|
12001
|
+
authTokenId: string;
|
|
12002
|
+
authTokenType: number;
|
|
12003
|
+
voucherCloneAddress: string;
|
|
12004
|
+
active: boolean;
|
|
12005
|
+
};
|
|
9593
12006
|
};
|
|
9594
12007
|
export declare type GetFundsByIdQueryVariables = Exact<{
|
|
9595
12008
|
fundsId: Scalars["ID"];
|
|
@@ -9679,6 +12092,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
9679
12092
|
validFromDate: string;
|
|
9680
12093
|
validUntilDate: string;
|
|
9681
12094
|
quantityAvailable: string;
|
|
12095
|
+
numberOfCommits: string;
|
|
12096
|
+
numberOfRedemptions: string;
|
|
9682
12097
|
attributes?: Array<{
|
|
9683
12098
|
__typename?: "MetadataAttribute";
|
|
9684
12099
|
traitType: string;
|
|
@@ -9706,8 +12121,11 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
9706
12121
|
resolutionPeriodDuration: string;
|
|
9707
12122
|
metadataUri: string;
|
|
9708
12123
|
metadataHash: string;
|
|
12124
|
+
voided: boolean;
|
|
9709
12125
|
voidedAt?: string | null;
|
|
9710
12126
|
disputeResolverId: string;
|
|
12127
|
+
numberOfCommits: string;
|
|
12128
|
+
numberOfRedemptions: string;
|
|
9711
12129
|
seller: {
|
|
9712
12130
|
__typename?: "Seller";
|
|
9713
12131
|
id: string;
|
|
@@ -9978,6 +12396,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
9978
12396
|
validFromDate: string;
|
|
9979
12397
|
validUntilDate: string;
|
|
9980
12398
|
quantityAvailable: string;
|
|
12399
|
+
numberOfCommits: string;
|
|
12400
|
+
numberOfRedemptions: string;
|
|
9981
12401
|
attributes?: Array<{
|
|
9982
12402
|
__typename?: "MetadataAttribute";
|
|
9983
12403
|
traitType: string;
|
|
@@ -10005,8 +12425,11 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
10005
12425
|
resolutionPeriodDuration: string;
|
|
10006
12426
|
metadataUri: string;
|
|
10007
12427
|
metadataHash: string;
|
|
12428
|
+
voided: boolean;
|
|
10008
12429
|
voidedAt?: string | null;
|
|
10009
12430
|
disputeResolverId: string;
|
|
12431
|
+
numberOfCommits: string;
|
|
12432
|
+
numberOfRedemptions: string;
|
|
10010
12433
|
seller: {
|
|
10011
12434
|
__typename?: "Seller";
|
|
10012
12435
|
id: string;
|
|
@@ -10268,6 +12691,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
10268
12691
|
validFromDate: string;
|
|
10269
12692
|
validUntilDate: string;
|
|
10270
12693
|
quantityAvailable: string;
|
|
12694
|
+
numberOfCommits: string;
|
|
12695
|
+
numberOfRedemptions: string;
|
|
10271
12696
|
attributes?: Array<{
|
|
10272
12697
|
__typename?: "MetadataAttribute";
|
|
10273
12698
|
traitType: string;
|
|
@@ -10295,8 +12720,11 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
10295
12720
|
resolutionPeriodDuration: string;
|
|
10296
12721
|
metadataUri: string;
|
|
10297
12722
|
metadataHash: string;
|
|
12723
|
+
voided: boolean;
|
|
10298
12724
|
voidedAt?: string | null;
|
|
10299
12725
|
disputeResolverId: string;
|
|
12726
|
+
numberOfCommits: string;
|
|
12727
|
+
numberOfRedemptions: string;
|
|
10300
12728
|
seller: {
|
|
10301
12729
|
__typename?: "Seller";
|
|
10302
12730
|
id: string;
|
|
@@ -10557,6 +12985,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
10557
12985
|
validFromDate: string;
|
|
10558
12986
|
validUntilDate: string;
|
|
10559
12987
|
quantityAvailable: string;
|
|
12988
|
+
numberOfCommits: string;
|
|
12989
|
+
numberOfRedemptions: string;
|
|
10560
12990
|
attributes?: Array<{
|
|
10561
12991
|
__typename?: "MetadataAttribute";
|
|
10562
12992
|
traitType: string;
|
|
@@ -10584,8 +13014,11 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
10584
13014
|
resolutionPeriodDuration: string;
|
|
10585
13015
|
metadataUri: string;
|
|
10586
13016
|
metadataHash: string;
|
|
13017
|
+
voided: boolean;
|
|
10587
13018
|
voidedAt?: string | null;
|
|
10588
13019
|
disputeResolverId: string;
|
|
13020
|
+
numberOfCommits: string;
|
|
13021
|
+
numberOfRedemptions: string;
|
|
10589
13022
|
seller: {
|
|
10590
13023
|
__typename?: "Seller";
|
|
10591
13024
|
id: string;
|
|
@@ -10886,6 +13319,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
10886
13319
|
validFromDate: string;
|
|
10887
13320
|
validUntilDate: string;
|
|
10888
13321
|
quantityAvailable: string;
|
|
13322
|
+
numberOfCommits: string;
|
|
13323
|
+
numberOfRedemptions: string;
|
|
10889
13324
|
uuid: string;
|
|
10890
13325
|
attributes?: Array<{
|
|
10891
13326
|
__typename?: "MetadataAttribute";
|
|
@@ -10914,8 +13349,11 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
10914
13349
|
resolutionPeriodDuration: string;
|
|
10915
13350
|
metadataUri: string;
|
|
10916
13351
|
metadataHash: string;
|
|
13352
|
+
voided: boolean;
|
|
10917
13353
|
voidedAt?: string | null;
|
|
10918
13354
|
disputeResolverId: string;
|
|
13355
|
+
numberOfCommits: string;
|
|
13356
|
+
numberOfRedemptions: string;
|
|
10919
13357
|
seller: {
|
|
10920
13358
|
__typename?: "Seller";
|
|
10921
13359
|
id: string;
|
|
@@ -11314,6 +13752,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
11314
13752
|
validFromDate: string;
|
|
11315
13753
|
validUntilDate: string;
|
|
11316
13754
|
quantityAvailable: string;
|
|
13755
|
+
numberOfCommits: string;
|
|
13756
|
+
numberOfRedemptions: string;
|
|
11317
13757
|
uuid: string;
|
|
11318
13758
|
attributes?: Array<{
|
|
11319
13759
|
__typename?: "MetadataAttribute";
|
|
@@ -11342,8 +13782,11 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
11342
13782
|
resolutionPeriodDuration: string;
|
|
11343
13783
|
metadataUri: string;
|
|
11344
13784
|
metadataHash: string;
|
|
13785
|
+
voided: boolean;
|
|
11345
13786
|
voidedAt?: string | null;
|
|
11346
13787
|
disputeResolverId: string;
|
|
13788
|
+
numberOfCommits: string;
|
|
13789
|
+
numberOfRedemptions: string;
|
|
11347
13790
|
seller: {
|
|
11348
13791
|
__typename?: "Seller";
|
|
11349
13792
|
id: string;
|
|
@@ -11733,6 +14176,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
11733
14176
|
validFromDate: string;
|
|
11734
14177
|
validUntilDate: string;
|
|
11735
14178
|
quantityAvailable: string;
|
|
14179
|
+
numberOfCommits: string;
|
|
14180
|
+
numberOfRedemptions: string;
|
|
11736
14181
|
uuid: string;
|
|
11737
14182
|
attributes?: Array<{
|
|
11738
14183
|
__typename?: "MetadataAttribute";
|
|
@@ -11761,8 +14206,11 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
11761
14206
|
resolutionPeriodDuration: string;
|
|
11762
14207
|
metadataUri: string;
|
|
11763
14208
|
metadataHash: string;
|
|
14209
|
+
voided: boolean;
|
|
11764
14210
|
voidedAt?: string | null;
|
|
11765
14211
|
disputeResolverId: string;
|
|
14212
|
+
numberOfCommits: string;
|
|
14213
|
+
numberOfRedemptions: string;
|
|
11766
14214
|
seller: {
|
|
11767
14215
|
__typename?: "Seller";
|
|
11768
14216
|
id: string;
|
|
@@ -12151,6 +14599,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12151
14599
|
validFromDate: string;
|
|
12152
14600
|
validUntilDate: string;
|
|
12153
14601
|
quantityAvailable: string;
|
|
14602
|
+
numberOfCommits: string;
|
|
14603
|
+
numberOfRedemptions: string;
|
|
12154
14604
|
uuid: string;
|
|
12155
14605
|
attributes?: Array<{
|
|
12156
14606
|
__typename?: "MetadataAttribute";
|
|
@@ -12179,8 +14629,11 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12179
14629
|
resolutionPeriodDuration: string;
|
|
12180
14630
|
metadataUri: string;
|
|
12181
14631
|
metadataHash: string;
|
|
14632
|
+
voided: boolean;
|
|
12182
14633
|
voidedAt?: string | null;
|
|
12183
14634
|
disputeResolverId: string;
|
|
14635
|
+
numberOfCommits: string;
|
|
14636
|
+
numberOfRedemptions: string;
|
|
12184
14637
|
seller: {
|
|
12185
14638
|
__typename?: "Seller";
|
|
12186
14639
|
id: string;
|
|
@@ -12813,8 +15266,11 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
12813
15266
|
resolutionPeriodDuration: string;
|
|
12814
15267
|
metadataUri: string;
|
|
12815
15268
|
metadataHash: string;
|
|
15269
|
+
voided: boolean;
|
|
12816
15270
|
voidedAt?: string | null;
|
|
12817
15271
|
disputeResolverId: string;
|
|
15272
|
+
numberOfCommits: string;
|
|
15273
|
+
numberOfRedemptions: string;
|
|
12818
15274
|
exchanges?: Array<{
|
|
12819
15275
|
__typename?: "Exchange";
|
|
12820
15276
|
id: string;
|
|
@@ -12829,6 +15285,39 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
12829
15285
|
completedDate?: string | null;
|
|
12830
15286
|
disputedDate?: string | null;
|
|
12831
15287
|
expired: boolean;
|
|
15288
|
+
dispute?: {
|
|
15289
|
+
__typename?: "Dispute";
|
|
15290
|
+
id: string;
|
|
15291
|
+
exchangeId: string;
|
|
15292
|
+
state: DisputeState;
|
|
15293
|
+
buyerPercent: string;
|
|
15294
|
+
disputedDate: string;
|
|
15295
|
+
escalatedDate?: string | null;
|
|
15296
|
+
finalizedDate?: string | null;
|
|
15297
|
+
retractedDate?: string | null;
|
|
15298
|
+
resolvedDate?: string | null;
|
|
15299
|
+
decidedDate?: string | null;
|
|
15300
|
+
refusedDate?: string | null;
|
|
15301
|
+
timeout: string;
|
|
15302
|
+
} | null;
|
|
15303
|
+
buyer: {
|
|
15304
|
+
__typename?: "Buyer";
|
|
15305
|
+
id: string;
|
|
15306
|
+
wallet: string;
|
|
15307
|
+
active: boolean;
|
|
15308
|
+
};
|
|
15309
|
+
seller: {
|
|
15310
|
+
__typename?: "Seller";
|
|
15311
|
+
id: string;
|
|
15312
|
+
operator: string;
|
|
15313
|
+
admin: string;
|
|
15314
|
+
clerk: string;
|
|
15315
|
+
treasury: string;
|
|
15316
|
+
authTokenId: string;
|
|
15317
|
+
authTokenType: number;
|
|
15318
|
+
voucherCloneAddress: string;
|
|
15319
|
+
active: boolean;
|
|
15320
|
+
};
|
|
12832
15321
|
}>;
|
|
12833
15322
|
seller: {
|
|
12834
15323
|
__typename?: "Seller";
|
|
@@ -13092,8 +15581,11 @@ export declare type GetOffersQueryQuery = {
|
|
|
13092
15581
|
resolutionPeriodDuration: string;
|
|
13093
15582
|
metadataUri: string;
|
|
13094
15583
|
metadataHash: string;
|
|
15584
|
+
voided: boolean;
|
|
13095
15585
|
voidedAt?: string | null;
|
|
13096
15586
|
disputeResolverId: string;
|
|
15587
|
+
numberOfCommits: string;
|
|
15588
|
+
numberOfRedemptions: string;
|
|
13097
15589
|
exchanges?: Array<{
|
|
13098
15590
|
__typename?: "Exchange";
|
|
13099
15591
|
id: string;
|
|
@@ -13108,6 +15600,39 @@ export declare type GetOffersQueryQuery = {
|
|
|
13108
15600
|
completedDate?: string | null;
|
|
13109
15601
|
disputedDate?: string | null;
|
|
13110
15602
|
expired: boolean;
|
|
15603
|
+
dispute?: {
|
|
15604
|
+
__typename?: "Dispute";
|
|
15605
|
+
id: string;
|
|
15606
|
+
exchangeId: string;
|
|
15607
|
+
state: DisputeState;
|
|
15608
|
+
buyerPercent: string;
|
|
15609
|
+
disputedDate: string;
|
|
15610
|
+
escalatedDate?: string | null;
|
|
15611
|
+
finalizedDate?: string | null;
|
|
15612
|
+
retractedDate?: string | null;
|
|
15613
|
+
resolvedDate?: string | null;
|
|
15614
|
+
decidedDate?: string | null;
|
|
15615
|
+
refusedDate?: string | null;
|
|
15616
|
+
timeout: string;
|
|
15617
|
+
} | null;
|
|
15618
|
+
buyer: {
|
|
15619
|
+
__typename?: "Buyer";
|
|
15620
|
+
id: string;
|
|
15621
|
+
wallet: string;
|
|
15622
|
+
active: boolean;
|
|
15623
|
+
};
|
|
15624
|
+
seller: {
|
|
15625
|
+
__typename?: "Seller";
|
|
15626
|
+
id: string;
|
|
15627
|
+
operator: string;
|
|
15628
|
+
admin: string;
|
|
15629
|
+
clerk: string;
|
|
15630
|
+
treasury: string;
|
|
15631
|
+
authTokenId: string;
|
|
15632
|
+
authTokenType: number;
|
|
15633
|
+
voucherCloneAddress: string;
|
|
15634
|
+
active: boolean;
|
|
15635
|
+
};
|
|
13111
15636
|
}>;
|
|
13112
15637
|
seller: {
|
|
13113
15638
|
__typename?: "Seller";
|
|
@@ -13356,8 +15881,11 @@ export declare type OfferFieldsFragment = {
|
|
|
13356
15881
|
resolutionPeriodDuration: string;
|
|
13357
15882
|
metadataUri: string;
|
|
13358
15883
|
metadataHash: string;
|
|
15884
|
+
voided: boolean;
|
|
13359
15885
|
voidedAt?: string | null;
|
|
13360
15886
|
disputeResolverId: string;
|
|
15887
|
+
numberOfCommits: string;
|
|
15888
|
+
numberOfRedemptions: string;
|
|
13361
15889
|
exchanges?: Array<{
|
|
13362
15890
|
__typename?: "Exchange";
|
|
13363
15891
|
id: string;
|
|
@@ -13372,6 +15900,39 @@ export declare type OfferFieldsFragment = {
|
|
|
13372
15900
|
completedDate?: string | null;
|
|
13373
15901
|
disputedDate?: string | null;
|
|
13374
15902
|
expired: boolean;
|
|
15903
|
+
dispute?: {
|
|
15904
|
+
__typename?: "Dispute";
|
|
15905
|
+
id: string;
|
|
15906
|
+
exchangeId: string;
|
|
15907
|
+
state: DisputeState;
|
|
15908
|
+
buyerPercent: string;
|
|
15909
|
+
disputedDate: string;
|
|
15910
|
+
escalatedDate?: string | null;
|
|
15911
|
+
finalizedDate?: string | null;
|
|
15912
|
+
retractedDate?: string | null;
|
|
15913
|
+
resolvedDate?: string | null;
|
|
15914
|
+
decidedDate?: string | null;
|
|
15915
|
+
refusedDate?: string | null;
|
|
15916
|
+
timeout: string;
|
|
15917
|
+
} | null;
|
|
15918
|
+
buyer: {
|
|
15919
|
+
__typename?: "Buyer";
|
|
15920
|
+
id: string;
|
|
15921
|
+
wallet: string;
|
|
15922
|
+
active: boolean;
|
|
15923
|
+
};
|
|
15924
|
+
seller: {
|
|
15925
|
+
__typename?: "Seller";
|
|
15926
|
+
id: string;
|
|
15927
|
+
operator: string;
|
|
15928
|
+
admin: string;
|
|
15929
|
+
clerk: string;
|
|
15930
|
+
treasury: string;
|
|
15931
|
+
authTokenId: string;
|
|
15932
|
+
authTokenType: number;
|
|
15933
|
+
voucherCloneAddress: string;
|
|
15934
|
+
active: boolean;
|
|
15935
|
+
};
|
|
13375
15936
|
}>;
|
|
13376
15937
|
seller: {
|
|
13377
15938
|
__typename?: "Seller";
|
|
@@ -13619,8 +16180,11 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
13619
16180
|
resolutionPeriodDuration: string;
|
|
13620
16181
|
metadataUri: string;
|
|
13621
16182
|
metadataHash: string;
|
|
16183
|
+
voided: boolean;
|
|
13622
16184
|
voidedAt?: string | null;
|
|
13623
16185
|
disputeResolverId: string;
|
|
16186
|
+
numberOfCommits: string;
|
|
16187
|
+
numberOfRedemptions: string;
|
|
13624
16188
|
seller: {
|
|
13625
16189
|
__typename?: "Seller";
|
|
13626
16190
|
id: string;
|
|
@@ -13867,12 +16431,13 @@ export declare const BaseProductV1ExchangePolicyFieldsFragmentDoc: string;
|
|
|
13867
16431
|
export declare const BaseProductV1ShippingJurisdictionFieldsFragmentDoc: string;
|
|
13868
16432
|
export declare const BaseProductV1ShippingOptionFieldsFragmentDoc: string;
|
|
13869
16433
|
export declare const BaseOfferFieldsFragmentDoc: string;
|
|
16434
|
+
export declare const BaseDisputeFieldsFragmentDoc: string;
|
|
16435
|
+
export declare const BaseBuyerFieldsFragmentDoc: string;
|
|
13870
16436
|
export declare const BaseExchangeFieldsFragmentDoc: string;
|
|
16437
|
+
export declare const BaseEventLogFieldsFragmentDoc: string;
|
|
13871
16438
|
export declare const SellerFieldsFragmentDoc: string;
|
|
13872
|
-
export declare const BaseBuyerFieldsFragmentDoc: string;
|
|
13873
16439
|
export declare const BuyerFieldsFragmentDoc: string;
|
|
13874
16440
|
export declare const DisputeResolverFieldsFragmentDoc: string;
|
|
13875
|
-
export declare const BaseDisputeFieldsFragmentDoc: string;
|
|
13876
16441
|
export declare const DisputeFieldsFragmentDoc: string;
|
|
13877
16442
|
export declare const ExchangeTokenFieldsFragmentDoc: string;
|
|
13878
16443
|
export declare const ExchangeFieldsFragmentDoc: string;
|
|
@@ -13892,6 +16457,7 @@ export declare const GetDisputeByIdQueryDocument: string;
|
|
|
13892
16457
|
export declare const GetDisputesQueryDocument: string;
|
|
13893
16458
|
export declare const GetExchangeTokenByIdQueryDocument: string;
|
|
13894
16459
|
export declare const GetExchangeTokensQueryDocument: string;
|
|
16460
|
+
export declare const GetEventLogsQueryDocument: string;
|
|
13895
16461
|
export declare const GetExchangeByIdQueryDocument: string;
|
|
13896
16462
|
export declare const GetExchangesQueryDocument: string;
|
|
13897
16463
|
export declare const GetFundsByIdDocument: string;
|
|
@@ -13916,6 +16482,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
13916
16482
|
getDisputesQuery(variables?: GetDisputesQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetDisputesQueryQuery>;
|
|
13917
16483
|
getExchangeTokenByIdQuery(variables: GetExchangeTokenByIdQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetExchangeTokenByIdQueryQuery>;
|
|
13918
16484
|
getExchangeTokensQuery(variables?: GetExchangeTokensQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetExchangeTokensQueryQuery>;
|
|
16485
|
+
getEventLogsQuery(variables?: GetEventLogsQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetEventLogsQueryQuery>;
|
|
13919
16486
|
getExchangeByIdQuery(variables: GetExchangeByIdQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetExchangeByIdQueryQuery>;
|
|
13920
16487
|
getExchangesQuery(variables?: GetExchangesQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetExchangesQueryQuery>;
|
|
13921
16488
|
getFundsById(variables: GetFundsByIdQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetFundsByIdQuery>;
|
|
@@ -13930,4 +16497,5 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
13930
16497
|
getOffersQuery(variables?: GetOffersQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetOffersQueryQuery>;
|
|
13931
16498
|
};
|
|
13932
16499
|
export declare type Sdk = ReturnType<typeof getSdk>;
|
|
16500
|
+
export {};
|
|
13933
16501
|
//# sourceMappingURL=subgraph.d.ts.map
|