@bosonprotocol/core-sdk 1.44.1-alpha.1 → 1.45.0-alpha.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/dist/cjs/exchanges/handler.d.ts +11 -1
- package/dist/cjs/exchanges/handler.d.ts.map +1 -1
- package/dist/cjs/exchanges/handler.js +38 -0
- package/dist/cjs/exchanges/handler.js.map +1 -1
- package/dist/cjs/exchanges/interface.d.ts +3 -0
- package/dist/cjs/exchanges/interface.d.ts.map +1 -1
- package/dist/cjs/exchanges/interface.js +21 -0
- package/dist/cjs/exchanges/interface.js.map +1 -1
- package/dist/cjs/exchanges/mixin.d.ts +17 -4
- package/dist/cjs/exchanges/mixin.d.ts.map +1 -1
- package/dist/cjs/exchanges/mixin.js +27 -3
- package/dist/cjs/exchanges/mixin.js.map +1 -1
- package/dist/cjs/offers/renderContractualAgreement.d.ts.map +1 -1
- package/dist/cjs/offers/renderContractualAgreement.js +1 -1
- package/dist/cjs/offers/renderContractualAgreement.js.map +1 -1
- package/dist/cjs/subgraph.d.ts +938 -265
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +295 -75
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/cjs/utils/graphql.d.ts +32 -32
- package/dist/esm/exchanges/handler.d.ts +11 -1
- package/dist/esm/exchanges/handler.d.ts.map +1 -1
- package/dist/esm/exchanges/handler.js +36 -1
- package/dist/esm/exchanges/handler.js.map +1 -1
- package/dist/esm/exchanges/interface.d.ts +3 -0
- package/dist/esm/exchanges/interface.d.ts.map +1 -1
- package/dist/esm/exchanges/interface.js +23 -0
- package/dist/esm/exchanges/interface.js.map +1 -1
- package/dist/esm/exchanges/mixin.d.ts +17 -4
- package/dist/esm/exchanges/mixin.d.ts.map +1 -1
- package/dist/esm/exchanges/mixin.js +32 -4
- package/dist/esm/exchanges/mixin.js.map +1 -1
- package/dist/esm/offers/renderContractualAgreement.d.ts.map +1 -1
- package/dist/esm/offers/renderContractualAgreement.js +1 -0
- package/dist/esm/offers/renderContractualAgreement.js.map +1 -1
- package/dist/esm/subgraph.d.ts +938 -265
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +289 -75
- package/dist/esm/subgraph.js.map +1 -1
- package/dist/esm/utils/graphql.d.ts +32 -32
- package/package.json +3 -3
- package/src/accounts/queries.graphql +1 -0
- package/src/exchanges/handler.ts +74 -2
- package/src/exchanges/interface.ts +38 -1
- package/src/exchanges/mixin.ts +72 -11
- package/src/exchanges/queries.graphql +1 -0
- package/src/offers/queries.graphql +6 -0
- package/src/offers/renderContractualAgreement.ts +1 -0
- package/src/subgraph.ts +1153 -397
package/src/subgraph.ts
CHANGED
|
@@ -660,8 +660,10 @@ export enum BaseMetadataEntity_OrderBy {
|
|
|
660
660
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
661
661
|
OFFER__AGENTID = "offer__agentId",
|
|
662
662
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
663
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
663
664
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
664
665
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
666
|
+
OFFER__CREATOR = "offer__creator",
|
|
665
667
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
666
668
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
667
669
|
OFFER__ID = "offer__id",
|
|
@@ -1193,8 +1195,10 @@ export enum BundleMetadataEntity_OrderBy {
|
|
|
1193
1195
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
1194
1196
|
OFFER__AGENTID = "offer__agentId",
|
|
1195
1197
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
1198
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
1196
1199
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
1197
1200
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
1201
|
+
OFFER__CREATOR = "offer__creator",
|
|
1198
1202
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
1199
1203
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
1200
1204
|
OFFER__ID = "offer__id",
|
|
@@ -1679,6 +1683,128 @@ export enum ConditionalCommitAuthorizedEventLog_OrderBy {
|
|
|
1679
1683
|
TYPE = "type"
|
|
1680
1684
|
}
|
|
1681
1685
|
|
|
1686
|
+
export type DrFeeRequestedEvent = {
|
|
1687
|
+
__typename?: "DRFeeRequestedEvent";
|
|
1688
|
+
exchangeId: Scalars["BigInt"]["output"];
|
|
1689
|
+
executedBy: Scalars["Bytes"]["output"];
|
|
1690
|
+
feeAmount: Scalars["BigInt"]["output"];
|
|
1691
|
+
id: Scalars["ID"]["output"];
|
|
1692
|
+
logIndex: Scalars["BigInt"]["output"];
|
|
1693
|
+
mutualizerAddress: Scalars["Bytes"]["output"];
|
|
1694
|
+
timestamp: Scalars["BigInt"]["output"];
|
|
1695
|
+
tokenAddress: Scalars["Bytes"]["output"];
|
|
1696
|
+
txHash: Scalars["String"]["output"];
|
|
1697
|
+
};
|
|
1698
|
+
|
|
1699
|
+
export type DrFeeRequestedEvent_Filter = {
|
|
1700
|
+
/** Filter for the block changed event. */
|
|
1701
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1702
|
+
and?: InputMaybe<Array<InputMaybe<DrFeeRequestedEvent_Filter>>>;
|
|
1703
|
+
exchangeId?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1704
|
+
exchangeId_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1705
|
+
exchangeId_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1706
|
+
exchangeId_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1707
|
+
exchangeId_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1708
|
+
exchangeId_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1709
|
+
exchangeId_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1710
|
+
exchangeId_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1711
|
+
executedBy?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1712
|
+
executedBy_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1713
|
+
executedBy_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1714
|
+
executedBy_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1715
|
+
executedBy_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1716
|
+
executedBy_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1717
|
+
executedBy_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1718
|
+
executedBy_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1719
|
+
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1720
|
+
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1721
|
+
feeAmount?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1722
|
+
feeAmount_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1723
|
+
feeAmount_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1724
|
+
feeAmount_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1725
|
+
feeAmount_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1726
|
+
feeAmount_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1727
|
+
feeAmount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1728
|
+
feeAmount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1729
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1730
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1731
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1732
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
1733
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1734
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1735
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1736
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
1737
|
+
logIndex?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1738
|
+
logIndex_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1739
|
+
logIndex_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1740
|
+
logIndex_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1741
|
+
logIndex_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1742
|
+
logIndex_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1743
|
+
logIndex_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1744
|
+
logIndex_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1745
|
+
mutualizerAddress?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1746
|
+
mutualizerAddress_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1747
|
+
mutualizerAddress_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1748
|
+
mutualizerAddress_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1749
|
+
mutualizerAddress_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1750
|
+
mutualizerAddress_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1751
|
+
mutualizerAddress_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1752
|
+
mutualizerAddress_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1753
|
+
mutualizerAddress_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1754
|
+
mutualizerAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1755
|
+
or?: InputMaybe<Array<InputMaybe<DrFeeRequestedEvent_Filter>>>;
|
|
1756
|
+
timestamp?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1757
|
+
timestamp_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1758
|
+
timestamp_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1759
|
+
timestamp_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1760
|
+
timestamp_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1761
|
+
timestamp_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1762
|
+
timestamp_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1763
|
+
timestamp_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1764
|
+
tokenAddress?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1765
|
+
tokenAddress_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1766
|
+
tokenAddress_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1767
|
+
tokenAddress_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1768
|
+
tokenAddress_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1769
|
+
tokenAddress_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1770
|
+
tokenAddress_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1771
|
+
tokenAddress_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1772
|
+
tokenAddress_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1773
|
+
tokenAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1774
|
+
txHash?: InputMaybe<Scalars["String"]["input"]>;
|
|
1775
|
+
txHash_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
1776
|
+
txHash_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1777
|
+
txHash_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1778
|
+
txHash_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1779
|
+
txHash_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
1780
|
+
txHash_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
1781
|
+
txHash_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
1782
|
+
txHash_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
1783
|
+
txHash_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
1784
|
+
txHash_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
1785
|
+
txHash_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
1786
|
+
txHash_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1787
|
+
txHash_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1788
|
+
txHash_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1789
|
+
txHash_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
1790
|
+
txHash_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1791
|
+
txHash_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1792
|
+
txHash_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1793
|
+
txHash_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1794
|
+
};
|
|
1795
|
+
|
|
1796
|
+
export enum DrFeeRequestedEvent_OrderBy {
|
|
1797
|
+
EXCHANGEID = "exchangeId",
|
|
1798
|
+
EXECUTEDBY = "executedBy",
|
|
1799
|
+
FEEAMOUNT = "feeAmount",
|
|
1800
|
+
ID = "id",
|
|
1801
|
+
LOGINDEX = "logIndex",
|
|
1802
|
+
MUTUALIZERADDRESS = "mutualizerAddress",
|
|
1803
|
+
TIMESTAMP = "timestamp",
|
|
1804
|
+
TOKENADDRESS = "tokenAddress",
|
|
1805
|
+
TXHASH = "txHash"
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1682
1808
|
export type Dispute = {
|
|
1683
1809
|
__typename?: "Dispute";
|
|
1684
1810
|
buyer: Buyer;
|
|
@@ -1841,6 +1967,7 @@ export type DisputeResolutionTermsEntity = {
|
|
|
1841
1967
|
feeAmount: Scalars["BigInt"]["output"];
|
|
1842
1968
|
/** <DISPUTE_RESOLVER_ID>-terms */
|
|
1843
1969
|
id: Scalars["ID"]["output"];
|
|
1970
|
+
mutualizerAddress: Scalars["Bytes"]["output"];
|
|
1844
1971
|
offer: Offer;
|
|
1845
1972
|
};
|
|
1846
1973
|
|
|
@@ -1913,6 +2040,16 @@ export type DisputeResolutionTermsEntity_Filter = {
|
|
|
1913
2040
|
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1914
2041
|
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1915
2042
|
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
2043
|
+
mutualizerAddress?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
2044
|
+
mutualizerAddress_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
2045
|
+
mutualizerAddress_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
2046
|
+
mutualizerAddress_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
2047
|
+
mutualizerAddress_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
2048
|
+
mutualizerAddress_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
2049
|
+
mutualizerAddress_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
2050
|
+
mutualizerAddress_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
2051
|
+
mutualizerAddress_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
2052
|
+
mutualizerAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1916
2053
|
offer?: InputMaybe<Scalars["String"]["input"]>;
|
|
1917
2054
|
offer_?: InputMaybe<Offer_Filter>;
|
|
1918
2055
|
offer_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -1952,12 +2089,15 @@ export enum DisputeResolutionTermsEntity_OrderBy {
|
|
|
1952
2089
|
ESCALATIONRESPONSEPERIOD = "escalationResponsePeriod",
|
|
1953
2090
|
FEEAMOUNT = "feeAmount",
|
|
1954
2091
|
ID = "id",
|
|
2092
|
+
MUTUALIZERADDRESS = "mutualizerAddress",
|
|
1955
2093
|
OFFER = "offer",
|
|
1956
2094
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
1957
2095
|
OFFER__AGENTID = "offer__agentId",
|
|
1958
2096
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
2097
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
1959
2098
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
1960
2099
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
2100
|
+
OFFER__CREATOR = "offer__creator",
|
|
1961
2101
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
1962
2102
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
1963
2103
|
OFFER__ID = "offer__id",
|
|
@@ -2486,6 +2626,7 @@ export enum Dispute_OrderBy {
|
|
|
2486
2626
|
EXCHANGE__EXPIRED = "exchange__expired",
|
|
2487
2627
|
EXCHANGE__FINALIZEDDATE = "exchange__finalizedDate",
|
|
2488
2628
|
EXCHANGE__ID = "exchange__id",
|
|
2629
|
+
EXCHANGE__MUTUALIZERADDRESS = "exchange__mutualizerAddress",
|
|
2489
2630
|
EXCHANGE__REDEEMEDDATE = "exchange__redeemedDate",
|
|
2490
2631
|
EXCHANGE__REVOKEDDATE = "exchange__revokedDate",
|
|
2491
2632
|
EXCHANGE__STATE = "exchange__state",
|
|
@@ -2645,6 +2786,7 @@ export enum EventType {
|
|
|
2645
2786
|
OFFER_EXTENDED = "OFFER_EXTENDED",
|
|
2646
2787
|
OFFER_RANGE_RESERVED = "OFFER_RANGE_RESERVED",
|
|
2647
2788
|
OFFER_VOIDED = "OFFER_VOIDED",
|
|
2789
|
+
SELLER_COMMITTED = "SELLER_COMMITTED",
|
|
2648
2790
|
/** AccountHandler events */
|
|
2649
2791
|
SELLER_CREATED = "SELLER_CREATED",
|
|
2650
2792
|
SELLER_UPDATED = "SELLER_UPDATED",
|
|
@@ -2669,6 +2811,7 @@ export type Exchange = {
|
|
|
2669
2811
|
expired: Scalars["Boolean"]["output"];
|
|
2670
2812
|
finalizedDate?: Maybe<Scalars["BigInt"]["output"]>;
|
|
2671
2813
|
id: Scalars["ID"]["output"];
|
|
2814
|
+
mutualizerAddress: Scalars["Bytes"]["output"];
|
|
2672
2815
|
offer: Offer;
|
|
2673
2816
|
protocolFeeCollected?: Maybe<ProtocolFeeCollected>;
|
|
2674
2817
|
redeemedDate?: Maybe<Scalars["BigInt"]["output"]>;
|
|
@@ -2800,6 +2943,7 @@ export enum ExchangeEventLog_OrderBy {
|
|
|
2800
2943
|
EXCHANGE__EXPIRED = "exchange__expired",
|
|
2801
2944
|
EXCHANGE__FINALIZEDDATE = "exchange__finalizedDate",
|
|
2802
2945
|
EXCHANGE__ID = "exchange__id",
|
|
2946
|
+
EXCHANGE__MUTUALIZERADDRESS = "exchange__mutualizerAddress",
|
|
2803
2947
|
EXCHANGE__REDEEMEDDATE = "exchange__redeemedDate",
|
|
2804
2948
|
EXCHANGE__REVOKEDDATE = "exchange__revokedDate",
|
|
2805
2949
|
EXCHANGE__STATE = "exchange__state",
|
|
@@ -3073,6 +3217,16 @@ export type Exchange_Filter = {
|
|
|
3073
3217
|
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
3074
3218
|
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
3075
3219
|
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
3220
|
+
mutualizerAddress?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
3221
|
+
mutualizerAddress_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
3222
|
+
mutualizerAddress_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
3223
|
+
mutualizerAddress_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
3224
|
+
mutualizerAddress_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
3225
|
+
mutualizerAddress_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
3226
|
+
mutualizerAddress_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
3227
|
+
mutualizerAddress_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
3228
|
+
mutualizerAddress_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
3229
|
+
mutualizerAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
3076
3230
|
offer?: InputMaybe<Scalars["String"]["input"]>;
|
|
3077
3231
|
offer_?: InputMaybe<Offer_Filter>;
|
|
3078
3232
|
offer_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -3182,12 +3336,15 @@ export enum Exchange_OrderBy {
|
|
|
3182
3336
|
EXPIRED = "expired",
|
|
3183
3337
|
FINALIZEDDATE = "finalizedDate",
|
|
3184
3338
|
ID = "id",
|
|
3339
|
+
MUTUALIZERADDRESS = "mutualizerAddress",
|
|
3185
3340
|
OFFER = "offer",
|
|
3186
3341
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
3187
3342
|
OFFER__AGENTID = "offer__agentId",
|
|
3188
3343
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
3344
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
3189
3345
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
3190
3346
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
3347
|
+
OFFER__CREATOR = "offer__creator",
|
|
3191
3348
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
3192
3349
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
3193
3350
|
OFFER__ID = "offer__id",
|
|
@@ -3349,6 +3506,7 @@ export enum FundsEntity_OrderBy {
|
|
|
3349
3506
|
export type FundsEventLog = EventLog & {
|
|
3350
3507
|
__typename?: "FundsEventLog";
|
|
3351
3508
|
account: Account;
|
|
3509
|
+
amount: Scalars["BigInt"]["output"];
|
|
3352
3510
|
executedBy: Scalars["Bytes"]["output"];
|
|
3353
3511
|
funds: FundsEntity;
|
|
3354
3512
|
hash: Scalars["String"]["output"];
|
|
@@ -3381,6 +3539,14 @@ export type FundsEventLog_Filter = {
|
|
|
3381
3539
|
account_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
3382
3540
|
account_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
3383
3541
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
3542
|
+
amount?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
3543
|
+
amount_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
3544
|
+
amount_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
3545
|
+
amount_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
3546
|
+
amount_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
3547
|
+
amount_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
3548
|
+
amount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
3549
|
+
amount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
3384
3550
|
and?: InputMaybe<Array<InputMaybe<FundsEventLog_Filter>>>;
|
|
3385
3551
|
executedBy?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
3386
3552
|
executedBy_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
@@ -3459,6 +3625,7 @@ export type FundsEventLog_Filter = {
|
|
|
3459
3625
|
export enum FundsEventLog_OrderBy {
|
|
3460
3626
|
ACCOUNT = "account",
|
|
3461
3627
|
ACCOUNT__ID = "account__id",
|
|
3628
|
+
AMOUNT = "amount",
|
|
3462
3629
|
EXECUTEDBY = "executedBy",
|
|
3463
3630
|
FUNDS = "funds",
|
|
3464
3631
|
FUNDS__ACCOUNTID = "funds__accountId",
|
|
@@ -4084,8 +4251,10 @@ export enum MetadataInterface_OrderBy {
|
|
|
4084
4251
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
4085
4252
|
OFFER__AGENTID = "offer__agentId",
|
|
4086
4253
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
4254
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
4087
4255
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
4088
4256
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
4257
|
+
OFFER__CREATOR = "offer__creator",
|
|
4089
4258
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
4090
4259
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
4091
4260
|
OFFER__ID = "offer__id",
|
|
@@ -4651,11 +4820,14 @@ export type Offer = {
|
|
|
4651
4820
|
__typename?: "Offer";
|
|
4652
4821
|
agentFee: Scalars["BigInt"]["output"];
|
|
4653
4822
|
agentId: Scalars["BigInt"]["output"];
|
|
4823
|
+
buyer?: Maybe<Buyer>;
|
|
4654
4824
|
buyerCancelPenalty: Scalars["BigInt"]["output"];
|
|
4655
|
-
|
|
4656
|
-
|
|
4825
|
+
buyerId: Scalars["BigInt"]["output"];
|
|
4826
|
+
collection?: Maybe<OfferCollection>;
|
|
4827
|
+
collectionIndex?: Maybe<Scalars["BigInt"]["output"]>;
|
|
4657
4828
|
condition?: Maybe<ConditionEntity>;
|
|
4658
4829
|
createdAt: Scalars["BigInt"]["output"];
|
|
4830
|
+
creator: Scalars["Int"]["output"];
|
|
4659
4831
|
/** Offer durations */
|
|
4660
4832
|
disputePeriodDuration: Scalars["BigInt"]["output"];
|
|
4661
4833
|
disputeResolutionTerms: DisputeResolutionTermsEntity;
|
|
@@ -4679,7 +4851,7 @@ export type Offer = {
|
|
|
4679
4851
|
range?: Maybe<RangeEntity>;
|
|
4680
4852
|
resolutionPeriodDuration: Scalars["BigInt"]["output"];
|
|
4681
4853
|
royaltyInfos: Array<RoyaltyInfo>;
|
|
4682
|
-
seller
|
|
4854
|
+
seller?: Maybe<Seller>;
|
|
4683
4855
|
sellerDeposit: Scalars["BigInt"]["output"];
|
|
4684
4856
|
sellerId: Scalars["BigInt"]["output"];
|
|
4685
4857
|
/** Offer dates */
|
|
@@ -4910,6 +5082,11 @@ export enum OfferCollection_OrderBy {
|
|
|
4910
5082
|
SELLER__VOUCHERCLONEADDRESS = "seller__voucherCloneAddress"
|
|
4911
5083
|
}
|
|
4912
5084
|
|
|
5085
|
+
export enum OfferCreator {
|
|
5086
|
+
BUYER = "BUYER",
|
|
5087
|
+
SELLER = "SELLER"
|
|
5088
|
+
}
|
|
5089
|
+
|
|
4913
5090
|
export type OfferEventLog = EventLog & {
|
|
4914
5091
|
__typename?: "OfferEventLog";
|
|
4915
5092
|
account: Account;
|
|
@@ -5030,8 +5207,10 @@ export enum OfferEventLog_OrderBy {
|
|
|
5030
5207
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
5031
5208
|
OFFER__AGENTID = "offer__agentId",
|
|
5032
5209
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
5210
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
5033
5211
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
5034
5212
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
5213
|
+
OFFER__CREATOR = "offer__creator",
|
|
5035
5214
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
5036
5215
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
5037
5216
|
OFFER__ID = "offer__id",
|
|
@@ -5078,6 +5257,7 @@ export type Offer_Filter = {
|
|
|
5078
5257
|
agentId_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5079
5258
|
agentId_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
5080
5259
|
and?: InputMaybe<Array<InputMaybe<Offer_Filter>>>;
|
|
5260
|
+
buyer?: InputMaybe<Scalars["String"]["input"]>;
|
|
5081
5261
|
buyerCancelPenalty?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5082
5262
|
buyerCancelPenalty_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5083
5263
|
buyerCancelPenalty_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
@@ -5086,6 +5266,34 @@ export type Offer_Filter = {
|
|
|
5086
5266
|
buyerCancelPenalty_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5087
5267
|
buyerCancelPenalty_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5088
5268
|
buyerCancelPenalty_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
5269
|
+
buyerId?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5270
|
+
buyerId_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5271
|
+
buyerId_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5272
|
+
buyerId_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
5273
|
+
buyerId_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5274
|
+
buyerId_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5275
|
+
buyerId_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5276
|
+
buyerId_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
5277
|
+
buyer_?: InputMaybe<Buyer_Filter>;
|
|
5278
|
+
buyer_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
5279
|
+
buyer_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
5280
|
+
buyer_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
5281
|
+
buyer_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
5282
|
+
buyer_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
5283
|
+
buyer_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
5284
|
+
buyer_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
5285
|
+
buyer_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
5286
|
+
buyer_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
5287
|
+
buyer_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
5288
|
+
buyer_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
5289
|
+
buyer_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
5290
|
+
buyer_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
5291
|
+
buyer_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
5292
|
+
buyer_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
5293
|
+
buyer_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
5294
|
+
buyer_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
5295
|
+
buyer_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
5296
|
+
buyer_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
5089
5297
|
collection?: InputMaybe<Scalars["String"]["input"]>;
|
|
5090
5298
|
collectionIndex?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5091
5299
|
collectionIndex_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
@@ -5144,6 +5352,14 @@ export type Offer_Filter = {
|
|
|
5144
5352
|
createdAt_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5145
5353
|
createdAt_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5146
5354
|
createdAt_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
5355
|
+
creator?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5356
|
+
creator_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5357
|
+
creator_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5358
|
+
creator_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
5359
|
+
creator_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5360
|
+
creator_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5361
|
+
creator_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5362
|
+
creator_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
5147
5363
|
disputePeriodDuration?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5148
5364
|
disputePeriodDuration_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5149
5365
|
disputePeriodDuration_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
@@ -5496,7 +5712,12 @@ export type Offer_Filter = {
|
|
|
5496
5712
|
export enum Offer_OrderBy {
|
|
5497
5713
|
AGENTFEE = "agentFee",
|
|
5498
5714
|
AGENTID = "agentId",
|
|
5715
|
+
BUYER = "buyer",
|
|
5499
5716
|
BUYERCANCELPENALTY = "buyerCancelPenalty",
|
|
5717
|
+
BUYERID = "buyerId",
|
|
5718
|
+
BUYER__ACTIVE = "buyer__active",
|
|
5719
|
+
BUYER__ID = "buyer__id",
|
|
5720
|
+
BUYER__WALLET = "buyer__wallet",
|
|
5500
5721
|
COLLECTION = "collection",
|
|
5501
5722
|
COLLECTIONINDEX = "collectionIndex",
|
|
5502
5723
|
COLLECTION__COLLECTIONINDEX = "collection__collectionIndex",
|
|
@@ -5515,6 +5736,7 @@ export enum Offer_OrderBy {
|
|
|
5515
5736
|
CONDITION__TOKENADDRESS = "condition__tokenAddress",
|
|
5516
5737
|
CONDITION__TOKENTYPE = "condition__tokenType",
|
|
5517
5738
|
CREATEDAT = "createdAt",
|
|
5739
|
+
CREATOR = "creator",
|
|
5518
5740
|
DISPUTEPERIODDURATION = "disputePeriodDuration",
|
|
5519
5741
|
DISPUTERESOLUTIONTERMS = "disputeResolutionTerms",
|
|
5520
5742
|
DISPUTERESOLUTIONTERMS__BUYERESCALATIONDEPOSIT = "disputeResolutionTerms__buyerEscalationDeposit",
|
|
@@ -5522,6 +5744,7 @@ export enum Offer_OrderBy {
|
|
|
5522
5744
|
DISPUTERESOLUTIONTERMS__ESCALATIONRESPONSEPERIOD = "disputeResolutionTerms__escalationResponsePeriod",
|
|
5523
5745
|
DISPUTERESOLUTIONTERMS__FEEAMOUNT = "disputeResolutionTerms__feeAmount",
|
|
5524
5746
|
DISPUTERESOLUTIONTERMS__ID = "disputeResolutionTerms__id",
|
|
5747
|
+
DISPUTERESOLUTIONTERMS__MUTUALIZERADDRESS = "disputeResolutionTerms__mutualizerAddress",
|
|
5525
5748
|
DISPUTERESOLVER = "disputeResolver",
|
|
5526
5749
|
DISPUTERESOLVERID = "disputeResolverId",
|
|
5527
5750
|
DISPUTERESOLVER__ACTIVE = "disputeResolver__active",
|
|
@@ -7204,8 +7427,10 @@ export enum ProductV1MetadataEntity_OrderBy {
|
|
|
7204
7427
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
7205
7428
|
OFFER__AGENTID = "offer__agentId",
|
|
7206
7429
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
7430
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
7207
7431
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
7208
7432
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
7433
|
+
OFFER__CREATOR = "offer__creator",
|
|
7209
7434
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
7210
7435
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
7211
7436
|
OFFER__ID = "offer__id",
|
|
@@ -10208,8 +10433,10 @@ export enum ProductV1Variant_OrderBy {
|
|
|
10208
10433
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
10209
10434
|
OFFER__AGENTID = "offer__agentId",
|
|
10210
10435
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
10436
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
10211
10437
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
10212
10438
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
10439
|
+
OFFER__CREATOR = "offer__creator",
|
|
10213
10440
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
10214
10441
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
10215
10442
|
OFFER__ID = "offer__id",
|
|
@@ -10398,6 +10625,7 @@ export enum ProtocolFeeCollected_OrderBy {
|
|
|
10398
10625
|
EXCHANGE__EXPIRED = "exchange__expired",
|
|
10399
10626
|
EXCHANGE__FINALIZEDDATE = "exchange__finalizedDate",
|
|
10400
10627
|
EXCHANGE__ID = "exchange__id",
|
|
10628
|
+
EXCHANGE__MUTUALIZERADDRESS = "exchange__mutualizerAddress",
|
|
10401
10629
|
EXCHANGE__REDEEMEDDATE = "exchange__redeemedDate",
|
|
10402
10630
|
EXCHANGE__REVOKEDDATE = "exchange__revokedDate",
|
|
10403
10631
|
EXCHANGE__STATE = "exchange__state",
|
|
@@ -10437,6 +10665,8 @@ export type Query = {
|
|
|
10437
10665
|
disputeResolverFees: Array<DisputeResolverFee>;
|
|
10438
10666
|
disputeResolvers: Array<DisputeResolver>;
|
|
10439
10667
|
disputes: Array<Dispute>;
|
|
10668
|
+
drfeeRequestedEvent?: Maybe<DrFeeRequestedEvent>;
|
|
10669
|
+
drfeeRequestedEvents: Array<DrFeeRequestedEvent>;
|
|
10440
10670
|
eventLog?: Maybe<EventLog>;
|
|
10441
10671
|
eventLogs: Array<EventLog>;
|
|
10442
10672
|
exchange?: Maybe<Exchange>;
|
|
@@ -10756,6 +10986,22 @@ export type QueryDisputesArgs = {
|
|
|
10756
10986
|
where?: InputMaybe<Dispute_Filter>;
|
|
10757
10987
|
};
|
|
10758
10988
|
|
|
10989
|
+
export type QueryDrfeeRequestedEventArgs = {
|
|
10990
|
+
block?: InputMaybe<Block_Height>;
|
|
10991
|
+
id: Scalars["ID"]["input"];
|
|
10992
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
10993
|
+
};
|
|
10994
|
+
|
|
10995
|
+
export type QueryDrfeeRequestedEventsArgs = {
|
|
10996
|
+
block?: InputMaybe<Block_Height>;
|
|
10997
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10998
|
+
orderBy?: InputMaybe<DrFeeRequestedEvent_OrderBy>;
|
|
10999
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
11000
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11001
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
11002
|
+
where?: InputMaybe<DrFeeRequestedEvent_Filter>;
|
|
11003
|
+
};
|
|
11004
|
+
|
|
10759
11005
|
export type QueryEventLogArgs = {
|
|
10760
11006
|
block?: InputMaybe<Block_Height>;
|
|
10761
11007
|
id: Scalars["ID"]["input"];
|
|
@@ -11667,8 +11913,10 @@ export enum RoyaltyInfo_OrderBy {
|
|
|
11667
11913
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
11668
11914
|
OFFER__AGENTID = "offer__agentId",
|
|
11669
11915
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
11916
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
11670
11917
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
11671
11918
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
11919
|
+
OFFER__CREATOR = "offer__creator",
|
|
11672
11920
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
11673
11921
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
11674
11922
|
OFFER__ID = "offer__id",
|
|
@@ -11799,8 +12047,10 @@ export enum RoyaltyRecipientXOffer_OrderBy {
|
|
|
11799
12047
|
OFFER__AGENTFEE = "offer__agentFee",
|
|
11800
12048
|
OFFER__AGENTID = "offer__agentId",
|
|
11801
12049
|
OFFER__BUYERCANCELPENALTY = "offer__buyerCancelPenalty",
|
|
12050
|
+
OFFER__BUYERID = "offer__buyerId",
|
|
11802
12051
|
OFFER__COLLECTIONINDEX = "offer__collectionIndex",
|
|
11803
12052
|
OFFER__CREATEDAT = "offer__createdAt",
|
|
12053
|
+
OFFER__CREATOR = "offer__creator",
|
|
11804
12054
|
OFFER__DISPUTEPERIODDURATION = "offer__disputePeriodDuration",
|
|
11805
12055
|
OFFER__DISPUTERESOLVERID = "offer__disputeResolverId",
|
|
11806
12056
|
OFFER__ID = "offer__id",
|
|
@@ -13086,6 +13336,8 @@ export type Subscription = {
|
|
|
13086
13336
|
disputeResolverFees: Array<DisputeResolverFee>;
|
|
13087
13337
|
disputeResolvers: Array<DisputeResolver>;
|
|
13088
13338
|
disputes: Array<Dispute>;
|
|
13339
|
+
drfeeRequestedEvent?: Maybe<DrFeeRequestedEvent>;
|
|
13340
|
+
drfeeRequestedEvents: Array<DrFeeRequestedEvent>;
|
|
13089
13341
|
eventLog?: Maybe<EventLog>;
|
|
13090
13342
|
eventLogs: Array<EventLog>;
|
|
13091
13343
|
exchange?: Maybe<Exchange>;
|
|
@@ -13405,6 +13657,22 @@ export type SubscriptionDisputesArgs = {
|
|
|
13405
13657
|
where?: InputMaybe<Dispute_Filter>;
|
|
13406
13658
|
};
|
|
13407
13659
|
|
|
13660
|
+
export type SubscriptionDrfeeRequestedEventArgs = {
|
|
13661
|
+
block?: InputMaybe<Block_Height>;
|
|
13662
|
+
id: Scalars["ID"]["input"];
|
|
13663
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
13664
|
+
};
|
|
13665
|
+
|
|
13666
|
+
export type SubscriptionDrfeeRequestedEventsArgs = {
|
|
13667
|
+
block?: InputMaybe<Block_Height>;
|
|
13668
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13669
|
+
orderBy?: InputMaybe<DrFeeRequestedEvent_OrderBy>;
|
|
13670
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
13671
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13672
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
13673
|
+
where?: InputMaybe<DrFeeRequestedEvent_Filter>;
|
|
13674
|
+
};
|
|
13675
|
+
|
|
13408
13676
|
export type SubscriptionEventLogArgs = {
|
|
13409
13677
|
block?: InputMaybe<Block_Height>;
|
|
13410
13678
|
id: Scalars["ID"]["input"];
|
|
@@ -14570,7 +14838,10 @@ export type GetSellerByIdQueryQuery = {
|
|
|
14570
14838
|
id: string;
|
|
14571
14839
|
createdAt: string;
|
|
14572
14840
|
price: string;
|
|
14841
|
+
sellerId: string;
|
|
14573
14842
|
sellerDeposit: string;
|
|
14843
|
+
buyerId: string;
|
|
14844
|
+
creator: number;
|
|
14574
14845
|
protocolFee: string;
|
|
14575
14846
|
agentFee: string;
|
|
14576
14847
|
agentId: string;
|
|
@@ -14588,7 +14859,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
14588
14859
|
metadataHash: string;
|
|
14589
14860
|
voided: boolean;
|
|
14590
14861
|
voidedAt?: string | null;
|
|
14591
|
-
collectionIndex
|
|
14862
|
+
collectionIndex?: string | null;
|
|
14592
14863
|
disputeResolverId: string;
|
|
14593
14864
|
numberOfCommits: string;
|
|
14594
14865
|
numberOfRedemptions: string;
|
|
@@ -14639,13 +14910,13 @@ export type GetSellerByIdQueryQuery = {
|
|
|
14639
14910
|
metadataHash: string;
|
|
14640
14911
|
voided: boolean;
|
|
14641
14912
|
voidedAt?: string | null;
|
|
14642
|
-
collectionIndex
|
|
14913
|
+
collectionIndex?: string | null;
|
|
14643
14914
|
disputeResolverId: string;
|
|
14644
14915
|
numberOfCommits: string;
|
|
14645
14916
|
numberOfRedemptions: string;
|
|
14646
14917
|
}> | null;
|
|
14647
14918
|
} | null;
|
|
14648
|
-
seller
|
|
14919
|
+
seller?: {
|
|
14649
14920
|
__typename?: "Seller";
|
|
14650
14921
|
id: string;
|
|
14651
14922
|
assistant: string;
|
|
@@ -14729,8 +15000,14 @@ export type GetSellerByIdQueryQuery = {
|
|
|
14729
15000
|
}> | null;
|
|
14730
15001
|
}> | null;
|
|
14731
15002
|
} | null;
|
|
14732
|
-
};
|
|
14733
|
-
|
|
15003
|
+
} | null;
|
|
15004
|
+
buyer?: {
|
|
15005
|
+
__typename?: "Buyer";
|
|
15006
|
+
id: string;
|
|
15007
|
+
wallet: string;
|
|
15008
|
+
active: boolean;
|
|
15009
|
+
} | null;
|
|
15010
|
+
collection?: {
|
|
14734
15011
|
__typename?: "OfferCollection";
|
|
14735
15012
|
id: string;
|
|
14736
15013
|
sellerId: string;
|
|
@@ -14752,7 +15029,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
14752
15029
|
createdAt: string;
|
|
14753
15030
|
collaborators?: Array<string> | null;
|
|
14754
15031
|
} | null;
|
|
14755
|
-
};
|
|
15032
|
+
} | null;
|
|
14756
15033
|
exchangeToken: {
|
|
14757
15034
|
__typename?: "ExchangeToken";
|
|
14758
15035
|
id: string;
|
|
@@ -14795,6 +15072,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
14795
15072
|
escalationResponsePeriod: string;
|
|
14796
15073
|
feeAmount: string;
|
|
14797
15074
|
buyerEscalationDeposit: string;
|
|
15075
|
+
mutualizerAddress: string;
|
|
14798
15076
|
};
|
|
14799
15077
|
metadata?:
|
|
14800
15078
|
| {
|
|
@@ -15756,6 +16034,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
15756
16034
|
completedDate?: string | null;
|
|
15757
16035
|
disputedDate?: string | null;
|
|
15758
16036
|
expired: boolean;
|
|
16037
|
+
mutualizerAddress: string;
|
|
15759
16038
|
dispute?: {
|
|
15760
16039
|
__typename?: "Dispute";
|
|
15761
16040
|
id: string;
|
|
@@ -16108,7 +16387,10 @@ export type GetSellersQueryQuery = {
|
|
|
16108
16387
|
id: string;
|
|
16109
16388
|
createdAt: string;
|
|
16110
16389
|
price: string;
|
|
16390
|
+
sellerId: string;
|
|
16111
16391
|
sellerDeposit: string;
|
|
16392
|
+
buyerId: string;
|
|
16393
|
+
creator: number;
|
|
16112
16394
|
protocolFee: string;
|
|
16113
16395
|
agentFee: string;
|
|
16114
16396
|
agentId: string;
|
|
@@ -16126,7 +16408,7 @@ export type GetSellersQueryQuery = {
|
|
|
16126
16408
|
metadataHash: string;
|
|
16127
16409
|
voided: boolean;
|
|
16128
16410
|
voidedAt?: string | null;
|
|
16129
|
-
collectionIndex
|
|
16411
|
+
collectionIndex?: string | null;
|
|
16130
16412
|
disputeResolverId: string;
|
|
16131
16413
|
numberOfCommits: string;
|
|
16132
16414
|
numberOfRedemptions: string;
|
|
@@ -16177,13 +16459,13 @@ export type GetSellersQueryQuery = {
|
|
|
16177
16459
|
metadataHash: string;
|
|
16178
16460
|
voided: boolean;
|
|
16179
16461
|
voidedAt?: string | null;
|
|
16180
|
-
collectionIndex
|
|
16462
|
+
collectionIndex?: string | null;
|
|
16181
16463
|
disputeResolverId: string;
|
|
16182
16464
|
numberOfCommits: string;
|
|
16183
16465
|
numberOfRedemptions: string;
|
|
16184
16466
|
}> | null;
|
|
16185
16467
|
} | null;
|
|
16186
|
-
seller
|
|
16468
|
+
seller?: {
|
|
16187
16469
|
__typename?: "Seller";
|
|
16188
16470
|
id: string;
|
|
16189
16471
|
assistant: string;
|
|
@@ -16267,8 +16549,14 @@ export type GetSellersQueryQuery = {
|
|
|
16267
16549
|
}> | null;
|
|
16268
16550
|
}> | null;
|
|
16269
16551
|
} | null;
|
|
16270
|
-
};
|
|
16271
|
-
|
|
16552
|
+
} | null;
|
|
16553
|
+
buyer?: {
|
|
16554
|
+
__typename?: "Buyer";
|
|
16555
|
+
id: string;
|
|
16556
|
+
wallet: string;
|
|
16557
|
+
active: boolean;
|
|
16558
|
+
} | null;
|
|
16559
|
+
collection?: {
|
|
16272
16560
|
__typename?: "OfferCollection";
|
|
16273
16561
|
id: string;
|
|
16274
16562
|
sellerId: string;
|
|
@@ -16290,7 +16578,7 @@ export type GetSellersQueryQuery = {
|
|
|
16290
16578
|
createdAt: string;
|
|
16291
16579
|
collaborators?: Array<string> | null;
|
|
16292
16580
|
} | null;
|
|
16293
|
-
};
|
|
16581
|
+
} | null;
|
|
16294
16582
|
exchangeToken: {
|
|
16295
16583
|
__typename?: "ExchangeToken";
|
|
16296
16584
|
id: string;
|
|
@@ -16333,6 +16621,7 @@ export type GetSellersQueryQuery = {
|
|
|
16333
16621
|
escalationResponsePeriod: string;
|
|
16334
16622
|
feeAmount: string;
|
|
16335
16623
|
buyerEscalationDeposit: string;
|
|
16624
|
+
mutualizerAddress: string;
|
|
16336
16625
|
};
|
|
16337
16626
|
metadata?:
|
|
16338
16627
|
| {
|
|
@@ -17294,6 +17583,7 @@ export type GetSellersQueryQuery = {
|
|
|
17294
17583
|
completedDate?: string | null;
|
|
17295
17584
|
disputedDate?: string | null;
|
|
17296
17585
|
expired: boolean;
|
|
17586
|
+
mutualizerAddress: string;
|
|
17297
17587
|
dispute?: {
|
|
17298
17588
|
__typename?: "Dispute";
|
|
17299
17589
|
id: string;
|
|
@@ -17607,6 +17897,7 @@ export type GetBuyerByIdQueryQuery = {
|
|
|
17607
17897
|
completedDate?: string | null;
|
|
17608
17898
|
disputedDate?: string | null;
|
|
17609
17899
|
expired: boolean;
|
|
17900
|
+
mutualizerAddress: string;
|
|
17610
17901
|
dispute?: {
|
|
17611
17902
|
__typename?: "Dispute";
|
|
17612
17903
|
id: string;
|
|
@@ -17858,6 +18149,7 @@ export type GetBuyersQueryQuery = {
|
|
|
17858
18149
|
completedDate?: string | null;
|
|
17859
18150
|
disputedDate?: string | null;
|
|
17860
18151
|
expired: boolean;
|
|
18152
|
+
mutualizerAddress: string;
|
|
17861
18153
|
dispute?: {
|
|
17862
18154
|
__typename?: "Dispute";
|
|
17863
18155
|
id: string;
|
|
@@ -18082,7 +18374,10 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
18082
18374
|
id: string;
|
|
18083
18375
|
createdAt: string;
|
|
18084
18376
|
price: string;
|
|
18377
|
+
sellerId: string;
|
|
18085
18378
|
sellerDeposit: string;
|
|
18379
|
+
buyerId: string;
|
|
18380
|
+
creator: number;
|
|
18086
18381
|
protocolFee: string;
|
|
18087
18382
|
agentFee: string;
|
|
18088
18383
|
agentId: string;
|
|
@@ -18100,7 +18395,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
18100
18395
|
metadataHash: string;
|
|
18101
18396
|
voided: boolean;
|
|
18102
18397
|
voidedAt?: string | null;
|
|
18103
|
-
collectionIndex
|
|
18398
|
+
collectionIndex?: string | null;
|
|
18104
18399
|
disputeResolverId: string;
|
|
18105
18400
|
numberOfCommits: string;
|
|
18106
18401
|
numberOfRedemptions: string;
|
|
@@ -18151,13 +18446,13 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
18151
18446
|
metadataHash: string;
|
|
18152
18447
|
voided: boolean;
|
|
18153
18448
|
voidedAt?: string | null;
|
|
18154
|
-
collectionIndex
|
|
18449
|
+
collectionIndex?: string | null;
|
|
18155
18450
|
disputeResolverId: string;
|
|
18156
18451
|
numberOfCommits: string;
|
|
18157
18452
|
numberOfRedemptions: string;
|
|
18158
18453
|
}> | null;
|
|
18159
18454
|
} | null;
|
|
18160
|
-
seller
|
|
18455
|
+
seller?: {
|
|
18161
18456
|
__typename?: "Seller";
|
|
18162
18457
|
id: string;
|
|
18163
18458
|
assistant: string;
|
|
@@ -18241,8 +18536,14 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
18241
18536
|
}> | null;
|
|
18242
18537
|
}> | null;
|
|
18243
18538
|
} | null;
|
|
18244
|
-
};
|
|
18245
|
-
|
|
18539
|
+
} | null;
|
|
18540
|
+
buyer?: {
|
|
18541
|
+
__typename?: "Buyer";
|
|
18542
|
+
id: string;
|
|
18543
|
+
wallet: string;
|
|
18544
|
+
active: boolean;
|
|
18545
|
+
} | null;
|
|
18546
|
+
collection?: {
|
|
18246
18547
|
__typename?: "OfferCollection";
|
|
18247
18548
|
id: string;
|
|
18248
18549
|
sellerId: string;
|
|
@@ -18264,7 +18565,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
18264
18565
|
createdAt: string;
|
|
18265
18566
|
collaborators?: Array<string> | null;
|
|
18266
18567
|
} | null;
|
|
18267
|
-
};
|
|
18568
|
+
} | null;
|
|
18268
18569
|
exchangeToken: {
|
|
18269
18570
|
__typename?: "ExchangeToken";
|
|
18270
18571
|
id: string;
|
|
@@ -18307,6 +18608,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
18307
18608
|
escalationResponsePeriod: string;
|
|
18308
18609
|
feeAmount: string;
|
|
18309
18610
|
buyerEscalationDeposit: string;
|
|
18611
|
+
mutualizerAddress: string;
|
|
18310
18612
|
};
|
|
18311
18613
|
metadata?:
|
|
18312
18614
|
| {
|
|
@@ -19386,7 +19688,10 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
19386
19688
|
id: string;
|
|
19387
19689
|
createdAt: string;
|
|
19388
19690
|
price: string;
|
|
19691
|
+
sellerId: string;
|
|
19389
19692
|
sellerDeposit: string;
|
|
19693
|
+
buyerId: string;
|
|
19694
|
+
creator: number;
|
|
19390
19695
|
protocolFee: string;
|
|
19391
19696
|
agentFee: string;
|
|
19392
19697
|
agentId: string;
|
|
@@ -19404,7 +19709,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
19404
19709
|
metadataHash: string;
|
|
19405
19710
|
voided: boolean;
|
|
19406
19711
|
voidedAt?: string | null;
|
|
19407
|
-
collectionIndex
|
|
19712
|
+
collectionIndex?: string | null;
|
|
19408
19713
|
disputeResolverId: string;
|
|
19409
19714
|
numberOfCommits: string;
|
|
19410
19715
|
numberOfRedemptions: string;
|
|
@@ -19455,13 +19760,13 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
19455
19760
|
metadataHash: string;
|
|
19456
19761
|
voided: boolean;
|
|
19457
19762
|
voidedAt?: string | null;
|
|
19458
|
-
collectionIndex
|
|
19763
|
+
collectionIndex?: string | null;
|
|
19459
19764
|
disputeResolverId: string;
|
|
19460
19765
|
numberOfCommits: string;
|
|
19461
19766
|
numberOfRedemptions: string;
|
|
19462
19767
|
}> | null;
|
|
19463
19768
|
} | null;
|
|
19464
|
-
seller
|
|
19769
|
+
seller?: {
|
|
19465
19770
|
__typename?: "Seller";
|
|
19466
19771
|
id: string;
|
|
19467
19772
|
assistant: string;
|
|
@@ -19545,8 +19850,14 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
19545
19850
|
}> | null;
|
|
19546
19851
|
}> | null;
|
|
19547
19852
|
} | null;
|
|
19548
|
-
};
|
|
19549
|
-
|
|
19853
|
+
} | null;
|
|
19854
|
+
buyer?: {
|
|
19855
|
+
__typename?: "Buyer";
|
|
19856
|
+
id: string;
|
|
19857
|
+
wallet: string;
|
|
19858
|
+
active: boolean;
|
|
19859
|
+
} | null;
|
|
19860
|
+
collection?: {
|
|
19550
19861
|
__typename?: "OfferCollection";
|
|
19551
19862
|
id: string;
|
|
19552
19863
|
sellerId: string;
|
|
@@ -19568,7 +19879,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
19568
19879
|
createdAt: string;
|
|
19569
19880
|
collaborators?: Array<string> | null;
|
|
19570
19881
|
} | null;
|
|
19571
|
-
};
|
|
19882
|
+
} | null;
|
|
19572
19883
|
exchangeToken: {
|
|
19573
19884
|
__typename?: "ExchangeToken";
|
|
19574
19885
|
id: string;
|
|
@@ -19611,6 +19922,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
19611
19922
|
escalationResponsePeriod: string;
|
|
19612
19923
|
feeAmount: string;
|
|
19613
19924
|
buyerEscalationDeposit: string;
|
|
19925
|
+
mutualizerAddress: string;
|
|
19614
19926
|
};
|
|
19615
19927
|
metadata?:
|
|
19616
19928
|
| {
|
|
@@ -20785,7 +21097,10 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
20785
21097
|
id: string;
|
|
20786
21098
|
createdAt: string;
|
|
20787
21099
|
price: string;
|
|
21100
|
+
sellerId: string;
|
|
20788
21101
|
sellerDeposit: string;
|
|
21102
|
+
buyerId: string;
|
|
21103
|
+
creator: number;
|
|
20789
21104
|
protocolFee: string;
|
|
20790
21105
|
agentFee: string;
|
|
20791
21106
|
agentId: string;
|
|
@@ -20803,7 +21118,7 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
20803
21118
|
metadataHash: string;
|
|
20804
21119
|
voided: boolean;
|
|
20805
21120
|
voidedAt?: string | null;
|
|
20806
|
-
collectionIndex
|
|
21121
|
+
collectionIndex?: string | null;
|
|
20807
21122
|
disputeResolverId: string;
|
|
20808
21123
|
numberOfCommits: string;
|
|
20809
21124
|
numberOfRedemptions: string;
|
|
@@ -20854,13 +21169,13 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
20854
21169
|
metadataHash: string;
|
|
20855
21170
|
voided: boolean;
|
|
20856
21171
|
voidedAt?: string | null;
|
|
20857
|
-
collectionIndex
|
|
21172
|
+
collectionIndex?: string | null;
|
|
20858
21173
|
disputeResolverId: string;
|
|
20859
21174
|
numberOfCommits: string;
|
|
20860
21175
|
numberOfRedemptions: string;
|
|
20861
21176
|
}> | null;
|
|
20862
21177
|
} | null;
|
|
20863
|
-
seller
|
|
21178
|
+
seller?: {
|
|
20864
21179
|
__typename?: "Seller";
|
|
20865
21180
|
id: string;
|
|
20866
21181
|
assistant: string;
|
|
@@ -20944,8 +21259,14 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
20944
21259
|
}> | null;
|
|
20945
21260
|
}> | null;
|
|
20946
21261
|
} | null;
|
|
20947
|
-
};
|
|
20948
|
-
|
|
21262
|
+
} | null;
|
|
21263
|
+
buyer?: {
|
|
21264
|
+
__typename?: "Buyer";
|
|
21265
|
+
id: string;
|
|
21266
|
+
wallet: string;
|
|
21267
|
+
active: boolean;
|
|
21268
|
+
} | null;
|
|
21269
|
+
collection?: {
|
|
20949
21270
|
__typename?: "OfferCollection";
|
|
20950
21271
|
id: string;
|
|
20951
21272
|
sellerId: string;
|
|
@@ -20967,7 +21288,7 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
20967
21288
|
createdAt: string;
|
|
20968
21289
|
collaborators?: Array<string> | null;
|
|
20969
21290
|
} | null;
|
|
20970
|
-
};
|
|
21291
|
+
} | null;
|
|
20971
21292
|
exchangeToken: {
|
|
20972
21293
|
__typename?: "ExchangeToken";
|
|
20973
21294
|
id: string;
|
|
@@ -21010,6 +21331,7 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
21010
21331
|
escalationResponsePeriod: string;
|
|
21011
21332
|
feeAmount: string;
|
|
21012
21333
|
buyerEscalationDeposit: string;
|
|
21334
|
+
mutualizerAddress: string;
|
|
21013
21335
|
};
|
|
21014
21336
|
metadata?:
|
|
21015
21337
|
| {
|
|
@@ -22088,7 +22410,10 @@ export type OfferCollectionFieldsFragment = {
|
|
|
22088
22410
|
id: string;
|
|
22089
22411
|
createdAt: string;
|
|
22090
22412
|
price: string;
|
|
22413
|
+
sellerId: string;
|
|
22091
22414
|
sellerDeposit: string;
|
|
22415
|
+
buyerId: string;
|
|
22416
|
+
creator: number;
|
|
22092
22417
|
protocolFee: string;
|
|
22093
22418
|
agentFee: string;
|
|
22094
22419
|
agentId: string;
|
|
@@ -22106,7 +22431,7 @@ export type OfferCollectionFieldsFragment = {
|
|
|
22106
22431
|
metadataHash: string;
|
|
22107
22432
|
voided: boolean;
|
|
22108
22433
|
voidedAt?: string | null;
|
|
22109
|
-
collectionIndex
|
|
22434
|
+
collectionIndex?: string | null;
|
|
22110
22435
|
disputeResolverId: string;
|
|
22111
22436
|
numberOfCommits: string;
|
|
22112
22437
|
numberOfRedemptions: string;
|
|
@@ -22157,13 +22482,13 @@ export type OfferCollectionFieldsFragment = {
|
|
|
22157
22482
|
metadataHash: string;
|
|
22158
22483
|
voided: boolean;
|
|
22159
22484
|
voidedAt?: string | null;
|
|
22160
|
-
collectionIndex
|
|
22485
|
+
collectionIndex?: string | null;
|
|
22161
22486
|
disputeResolverId: string;
|
|
22162
22487
|
numberOfCommits: string;
|
|
22163
22488
|
numberOfRedemptions: string;
|
|
22164
22489
|
}> | null;
|
|
22165
22490
|
} | null;
|
|
22166
|
-
seller
|
|
22491
|
+
seller?: {
|
|
22167
22492
|
__typename?: "Seller";
|
|
22168
22493
|
id: string;
|
|
22169
22494
|
assistant: string;
|
|
@@ -22247,8 +22572,14 @@ export type OfferCollectionFieldsFragment = {
|
|
|
22247
22572
|
}> | null;
|
|
22248
22573
|
}> | null;
|
|
22249
22574
|
} | null;
|
|
22250
|
-
};
|
|
22251
|
-
|
|
22575
|
+
} | null;
|
|
22576
|
+
buyer?: {
|
|
22577
|
+
__typename?: "Buyer";
|
|
22578
|
+
id: string;
|
|
22579
|
+
wallet: string;
|
|
22580
|
+
active: boolean;
|
|
22581
|
+
} | null;
|
|
22582
|
+
collection?: {
|
|
22252
22583
|
__typename?: "OfferCollection";
|
|
22253
22584
|
id: string;
|
|
22254
22585
|
sellerId: string;
|
|
@@ -22270,7 +22601,7 @@ export type OfferCollectionFieldsFragment = {
|
|
|
22270
22601
|
createdAt: string;
|
|
22271
22602
|
collaborators?: Array<string> | null;
|
|
22272
22603
|
} | null;
|
|
22273
|
-
};
|
|
22604
|
+
} | null;
|
|
22274
22605
|
exchangeToken: {
|
|
22275
22606
|
__typename?: "ExchangeToken";
|
|
22276
22607
|
id: string;
|
|
@@ -22313,6 +22644,7 @@ export type OfferCollectionFieldsFragment = {
|
|
|
22313
22644
|
escalationResponsePeriod: string;
|
|
22314
22645
|
feeAmount: string;
|
|
22315
22646
|
buyerEscalationDeposit: string;
|
|
22647
|
+
mutualizerAddress: string;
|
|
22316
22648
|
};
|
|
22317
22649
|
metadata?:
|
|
22318
22650
|
| {
|
|
@@ -23351,7 +23683,10 @@ export type SellerFieldsFragment = {
|
|
|
23351
23683
|
id: string;
|
|
23352
23684
|
createdAt: string;
|
|
23353
23685
|
price: string;
|
|
23686
|
+
sellerId: string;
|
|
23354
23687
|
sellerDeposit: string;
|
|
23688
|
+
buyerId: string;
|
|
23689
|
+
creator: number;
|
|
23355
23690
|
protocolFee: string;
|
|
23356
23691
|
agentFee: string;
|
|
23357
23692
|
agentId: string;
|
|
@@ -23369,7 +23704,7 @@ export type SellerFieldsFragment = {
|
|
|
23369
23704
|
metadataHash: string;
|
|
23370
23705
|
voided: boolean;
|
|
23371
23706
|
voidedAt?: string | null;
|
|
23372
|
-
collectionIndex
|
|
23707
|
+
collectionIndex?: string | null;
|
|
23373
23708
|
disputeResolverId: string;
|
|
23374
23709
|
numberOfCommits: string;
|
|
23375
23710
|
numberOfRedemptions: string;
|
|
@@ -23420,13 +23755,13 @@ export type SellerFieldsFragment = {
|
|
|
23420
23755
|
metadataHash: string;
|
|
23421
23756
|
voided: boolean;
|
|
23422
23757
|
voidedAt?: string | null;
|
|
23423
|
-
collectionIndex
|
|
23758
|
+
collectionIndex?: string | null;
|
|
23424
23759
|
disputeResolverId: string;
|
|
23425
23760
|
numberOfCommits: string;
|
|
23426
23761
|
numberOfRedemptions: string;
|
|
23427
23762
|
}> | null;
|
|
23428
23763
|
} | null;
|
|
23429
|
-
seller
|
|
23764
|
+
seller?: {
|
|
23430
23765
|
__typename?: "Seller";
|
|
23431
23766
|
id: string;
|
|
23432
23767
|
assistant: string;
|
|
@@ -23510,8 +23845,14 @@ export type SellerFieldsFragment = {
|
|
|
23510
23845
|
}> | null;
|
|
23511
23846
|
}> | null;
|
|
23512
23847
|
} | null;
|
|
23513
|
-
};
|
|
23514
|
-
|
|
23848
|
+
} | null;
|
|
23849
|
+
buyer?: {
|
|
23850
|
+
__typename?: "Buyer";
|
|
23851
|
+
id: string;
|
|
23852
|
+
wallet: string;
|
|
23853
|
+
active: boolean;
|
|
23854
|
+
} | null;
|
|
23855
|
+
collection?: {
|
|
23515
23856
|
__typename?: "OfferCollection";
|
|
23516
23857
|
id: string;
|
|
23517
23858
|
sellerId: string;
|
|
@@ -23533,7 +23874,7 @@ export type SellerFieldsFragment = {
|
|
|
23533
23874
|
createdAt: string;
|
|
23534
23875
|
collaborators?: Array<string> | null;
|
|
23535
23876
|
} | null;
|
|
23536
|
-
};
|
|
23877
|
+
} | null;
|
|
23537
23878
|
exchangeToken: {
|
|
23538
23879
|
__typename?: "ExchangeToken";
|
|
23539
23880
|
id: string;
|
|
@@ -23576,6 +23917,7 @@ export type SellerFieldsFragment = {
|
|
|
23576
23917
|
escalationResponsePeriod: string;
|
|
23577
23918
|
feeAmount: string;
|
|
23578
23919
|
buyerEscalationDeposit: string;
|
|
23920
|
+
mutualizerAddress: string;
|
|
23579
23921
|
};
|
|
23580
23922
|
metadata?:
|
|
23581
23923
|
| {
|
|
@@ -24525,6 +24867,7 @@ export type SellerFieldsFragment = {
|
|
|
24525
24867
|
completedDate?: string | null;
|
|
24526
24868
|
disputedDate?: string | null;
|
|
24527
24869
|
expired: boolean;
|
|
24870
|
+
mutualizerAddress: string;
|
|
24528
24871
|
dispute?: {
|
|
24529
24872
|
__typename?: "Dispute";
|
|
24530
24873
|
id: string;
|
|
@@ -24964,6 +25307,7 @@ export type BuyerFieldsFragment = {
|
|
|
24964
25307
|
completedDate?: string | null;
|
|
24965
25308
|
disputedDate?: string | null;
|
|
24966
25309
|
expired: boolean;
|
|
25310
|
+
mutualizerAddress: string;
|
|
24967
25311
|
dispute?: {
|
|
24968
25312
|
__typename?: "Dispute";
|
|
24969
25313
|
id: string;
|
|
@@ -25176,7 +25520,10 @@ export type DisputeResolverFieldsFragment = {
|
|
|
25176
25520
|
id: string;
|
|
25177
25521
|
createdAt: string;
|
|
25178
25522
|
price: string;
|
|
25523
|
+
sellerId: string;
|
|
25179
25524
|
sellerDeposit: string;
|
|
25525
|
+
buyerId: string;
|
|
25526
|
+
creator: number;
|
|
25180
25527
|
protocolFee: string;
|
|
25181
25528
|
agentFee: string;
|
|
25182
25529
|
agentId: string;
|
|
@@ -25194,7 +25541,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
25194
25541
|
metadataHash: string;
|
|
25195
25542
|
voided: boolean;
|
|
25196
25543
|
voidedAt?: string | null;
|
|
25197
|
-
collectionIndex
|
|
25544
|
+
collectionIndex?: string | null;
|
|
25198
25545
|
disputeResolverId: string;
|
|
25199
25546
|
numberOfCommits: string;
|
|
25200
25547
|
numberOfRedemptions: string;
|
|
@@ -25245,13 +25592,13 @@ export type DisputeResolverFieldsFragment = {
|
|
|
25245
25592
|
metadataHash: string;
|
|
25246
25593
|
voided: boolean;
|
|
25247
25594
|
voidedAt?: string | null;
|
|
25248
|
-
collectionIndex
|
|
25595
|
+
collectionIndex?: string | null;
|
|
25249
25596
|
disputeResolverId: string;
|
|
25250
25597
|
numberOfCommits: string;
|
|
25251
25598
|
numberOfRedemptions: string;
|
|
25252
25599
|
}> | null;
|
|
25253
25600
|
} | null;
|
|
25254
|
-
seller
|
|
25601
|
+
seller?: {
|
|
25255
25602
|
__typename?: "Seller";
|
|
25256
25603
|
id: string;
|
|
25257
25604
|
assistant: string;
|
|
@@ -25335,8 +25682,14 @@ export type DisputeResolverFieldsFragment = {
|
|
|
25335
25682
|
}> | null;
|
|
25336
25683
|
}> | null;
|
|
25337
25684
|
} | null;
|
|
25338
|
-
};
|
|
25339
|
-
|
|
25685
|
+
} | null;
|
|
25686
|
+
buyer?: {
|
|
25687
|
+
__typename?: "Buyer";
|
|
25688
|
+
id: string;
|
|
25689
|
+
wallet: string;
|
|
25690
|
+
active: boolean;
|
|
25691
|
+
} | null;
|
|
25692
|
+
collection?: {
|
|
25340
25693
|
__typename?: "OfferCollection";
|
|
25341
25694
|
id: string;
|
|
25342
25695
|
sellerId: string;
|
|
@@ -25358,7 +25711,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
25358
25711
|
createdAt: string;
|
|
25359
25712
|
collaborators?: Array<string> | null;
|
|
25360
25713
|
} | null;
|
|
25361
|
-
};
|
|
25714
|
+
} | null;
|
|
25362
25715
|
exchangeToken: {
|
|
25363
25716
|
__typename?: "ExchangeToken";
|
|
25364
25717
|
id: string;
|
|
@@ -25401,6 +25754,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
25401
25754
|
escalationResponsePeriod: string;
|
|
25402
25755
|
feeAmount: string;
|
|
25403
25756
|
buyerEscalationDeposit: string;
|
|
25757
|
+
mutualizerAddress: string;
|
|
25404
25758
|
};
|
|
25405
25759
|
metadata?:
|
|
25406
25760
|
| {
|
|
@@ -26481,6 +26835,7 @@ export type BaseDisputeResolutionTermsEntityFieldsFragment = {
|
|
|
26481
26835
|
escalationResponsePeriod: string;
|
|
26482
26836
|
feeAmount: string;
|
|
26483
26837
|
buyerEscalationDeposit: string;
|
|
26838
|
+
mutualizerAddress: string;
|
|
26484
26839
|
};
|
|
26485
26840
|
|
|
26486
26841
|
export type BaseConditionalCommitAuthorizedEventLogsFieldsFragment = {
|
|
@@ -26538,6 +26893,7 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
26538
26893
|
completedDate?: string | null;
|
|
26539
26894
|
disputedDate?: string | null;
|
|
26540
26895
|
expired: boolean;
|
|
26896
|
+
mutualizerAddress: string;
|
|
26541
26897
|
dispute?: {
|
|
26542
26898
|
__typename?: "Dispute";
|
|
26543
26899
|
id: string;
|
|
@@ -26781,6 +27137,7 @@ export type GetDisputesQueryQuery = {
|
|
|
26781
27137
|
completedDate?: string | null;
|
|
26782
27138
|
disputedDate?: string | null;
|
|
26783
27139
|
expired: boolean;
|
|
27140
|
+
mutualizerAddress: string;
|
|
26784
27141
|
dispute?: {
|
|
26785
27142
|
__typename?: "Dispute";
|
|
26786
27143
|
id: string;
|
|
@@ -27014,6 +27371,7 @@ export type DisputeFieldsFragment = {
|
|
|
27014
27371
|
completedDate?: string | null;
|
|
27015
27372
|
disputedDate?: string | null;
|
|
27016
27373
|
expired: boolean;
|
|
27374
|
+
mutualizerAddress: string;
|
|
27017
27375
|
dispute?: {
|
|
27018
27376
|
__typename?: "Dispute";
|
|
27019
27377
|
id: string;
|
|
@@ -27264,7 +27622,10 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
27264
27622
|
id: string;
|
|
27265
27623
|
createdAt: string;
|
|
27266
27624
|
price: string;
|
|
27625
|
+
sellerId: string;
|
|
27267
27626
|
sellerDeposit: string;
|
|
27627
|
+
buyerId: string;
|
|
27628
|
+
creator: number;
|
|
27268
27629
|
protocolFee: string;
|
|
27269
27630
|
agentFee: string;
|
|
27270
27631
|
agentId: string;
|
|
@@ -27282,7 +27643,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
27282
27643
|
metadataHash: string;
|
|
27283
27644
|
voided: boolean;
|
|
27284
27645
|
voidedAt?: string | null;
|
|
27285
|
-
collectionIndex
|
|
27646
|
+
collectionIndex?: string | null;
|
|
27286
27647
|
disputeResolverId: string;
|
|
27287
27648
|
numberOfCommits: string;
|
|
27288
27649
|
numberOfRedemptions: string;
|
|
@@ -27333,13 +27694,13 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
27333
27694
|
metadataHash: string;
|
|
27334
27695
|
voided: boolean;
|
|
27335
27696
|
voidedAt?: string | null;
|
|
27336
|
-
collectionIndex
|
|
27697
|
+
collectionIndex?: string | null;
|
|
27337
27698
|
disputeResolverId: string;
|
|
27338
27699
|
numberOfCommits: string;
|
|
27339
27700
|
numberOfRedemptions: string;
|
|
27340
27701
|
}> | null;
|
|
27341
27702
|
} | null;
|
|
27342
|
-
seller
|
|
27703
|
+
seller?: {
|
|
27343
27704
|
__typename?: "Seller";
|
|
27344
27705
|
id: string;
|
|
27345
27706
|
assistant: string;
|
|
@@ -27423,8 +27784,14 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
27423
27784
|
}> | null;
|
|
27424
27785
|
}> | null;
|
|
27425
27786
|
} | null;
|
|
27426
|
-
};
|
|
27427
|
-
|
|
27787
|
+
} | null;
|
|
27788
|
+
buyer?: {
|
|
27789
|
+
__typename?: "Buyer";
|
|
27790
|
+
id: string;
|
|
27791
|
+
wallet: string;
|
|
27792
|
+
active: boolean;
|
|
27793
|
+
} | null;
|
|
27794
|
+
collection?: {
|
|
27428
27795
|
__typename?: "OfferCollection";
|
|
27429
27796
|
id: string;
|
|
27430
27797
|
sellerId: string;
|
|
@@ -27446,7 +27813,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
27446
27813
|
createdAt: string;
|
|
27447
27814
|
collaborators?: Array<string> | null;
|
|
27448
27815
|
} | null;
|
|
27449
|
-
};
|
|
27816
|
+
} | null;
|
|
27450
27817
|
exchangeToken: {
|
|
27451
27818
|
__typename?: "ExchangeToken";
|
|
27452
27819
|
id: string;
|
|
@@ -27489,6 +27856,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
27489
27856
|
escalationResponsePeriod: string;
|
|
27490
27857
|
feeAmount: string;
|
|
27491
27858
|
buyerEscalationDeposit: string;
|
|
27859
|
+
mutualizerAddress: string;
|
|
27492
27860
|
};
|
|
27493
27861
|
metadata?:
|
|
27494
27862
|
| {
|
|
@@ -28479,7 +28847,10 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
28479
28847
|
id: string;
|
|
28480
28848
|
createdAt: string;
|
|
28481
28849
|
price: string;
|
|
28850
|
+
sellerId: string;
|
|
28482
28851
|
sellerDeposit: string;
|
|
28852
|
+
buyerId: string;
|
|
28853
|
+
creator: number;
|
|
28483
28854
|
protocolFee: string;
|
|
28484
28855
|
agentFee: string;
|
|
28485
28856
|
agentId: string;
|
|
@@ -28497,7 +28868,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
28497
28868
|
metadataHash: string;
|
|
28498
28869
|
voided: boolean;
|
|
28499
28870
|
voidedAt?: string | null;
|
|
28500
|
-
collectionIndex
|
|
28871
|
+
collectionIndex?: string | null;
|
|
28501
28872
|
disputeResolverId: string;
|
|
28502
28873
|
numberOfCommits: string;
|
|
28503
28874
|
numberOfRedemptions: string;
|
|
@@ -28548,13 +28919,13 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
28548
28919
|
metadataHash: string;
|
|
28549
28920
|
voided: boolean;
|
|
28550
28921
|
voidedAt?: string | null;
|
|
28551
|
-
collectionIndex
|
|
28922
|
+
collectionIndex?: string | null;
|
|
28552
28923
|
disputeResolverId: string;
|
|
28553
28924
|
numberOfCommits: string;
|
|
28554
28925
|
numberOfRedemptions: string;
|
|
28555
28926
|
}> | null;
|
|
28556
28927
|
} | null;
|
|
28557
|
-
seller
|
|
28928
|
+
seller?: {
|
|
28558
28929
|
__typename?: "Seller";
|
|
28559
28930
|
id: string;
|
|
28560
28931
|
assistant: string;
|
|
@@ -28638,8 +29009,14 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
28638
29009
|
}> | null;
|
|
28639
29010
|
}> | null;
|
|
28640
29011
|
} | null;
|
|
28641
|
-
};
|
|
28642
|
-
|
|
29012
|
+
} | null;
|
|
29013
|
+
buyer?: {
|
|
29014
|
+
__typename?: "Buyer";
|
|
29015
|
+
id: string;
|
|
29016
|
+
wallet: string;
|
|
29017
|
+
active: boolean;
|
|
29018
|
+
} | null;
|
|
29019
|
+
collection?: {
|
|
28643
29020
|
__typename?: "OfferCollection";
|
|
28644
29021
|
id: string;
|
|
28645
29022
|
sellerId: string;
|
|
@@ -28661,7 +29038,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
28661
29038
|
createdAt: string;
|
|
28662
29039
|
collaborators?: Array<string> | null;
|
|
28663
29040
|
} | null;
|
|
28664
|
-
};
|
|
29041
|
+
} | null;
|
|
28665
29042
|
exchangeToken: {
|
|
28666
29043
|
__typename?: "ExchangeToken";
|
|
28667
29044
|
id: string;
|
|
@@ -28704,6 +29081,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
28704
29081
|
escalationResponsePeriod: string;
|
|
28705
29082
|
feeAmount: string;
|
|
28706
29083
|
buyerEscalationDeposit: string;
|
|
29084
|
+
mutualizerAddress: string;
|
|
28707
29085
|
};
|
|
28708
29086
|
metadata?:
|
|
28709
29087
|
| {
|
|
@@ -29672,7 +30050,10 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
29672
30050
|
id: string;
|
|
29673
30051
|
createdAt: string;
|
|
29674
30052
|
price: string;
|
|
30053
|
+
sellerId: string;
|
|
29675
30054
|
sellerDeposit: string;
|
|
30055
|
+
buyerId: string;
|
|
30056
|
+
creator: number;
|
|
29676
30057
|
protocolFee: string;
|
|
29677
30058
|
agentFee: string;
|
|
29678
30059
|
agentId: string;
|
|
@@ -29690,7 +30071,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
29690
30071
|
metadataHash: string;
|
|
29691
30072
|
voided: boolean;
|
|
29692
30073
|
voidedAt?: string | null;
|
|
29693
|
-
collectionIndex
|
|
30074
|
+
collectionIndex?: string | null;
|
|
29694
30075
|
disputeResolverId: string;
|
|
29695
30076
|
numberOfCommits: string;
|
|
29696
30077
|
numberOfRedemptions: string;
|
|
@@ -29741,13 +30122,13 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
29741
30122
|
metadataHash: string;
|
|
29742
30123
|
voided: boolean;
|
|
29743
30124
|
voidedAt?: string | null;
|
|
29744
|
-
collectionIndex
|
|
30125
|
+
collectionIndex?: string | null;
|
|
29745
30126
|
disputeResolverId: string;
|
|
29746
30127
|
numberOfCommits: string;
|
|
29747
30128
|
numberOfRedemptions: string;
|
|
29748
30129
|
}> | null;
|
|
29749
30130
|
} | null;
|
|
29750
|
-
seller
|
|
30131
|
+
seller?: {
|
|
29751
30132
|
__typename?: "Seller";
|
|
29752
30133
|
id: string;
|
|
29753
30134
|
assistant: string;
|
|
@@ -29831,8 +30212,14 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
29831
30212
|
}> | null;
|
|
29832
30213
|
}> | null;
|
|
29833
30214
|
} | null;
|
|
29834
|
-
};
|
|
29835
|
-
|
|
30215
|
+
} | null;
|
|
30216
|
+
buyer?: {
|
|
30217
|
+
__typename?: "Buyer";
|
|
30218
|
+
id: string;
|
|
30219
|
+
wallet: string;
|
|
30220
|
+
active: boolean;
|
|
30221
|
+
} | null;
|
|
30222
|
+
collection?: {
|
|
29836
30223
|
__typename?: "OfferCollection";
|
|
29837
30224
|
id: string;
|
|
29838
30225
|
sellerId: string;
|
|
@@ -29854,7 +30241,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
29854
30241
|
createdAt: string;
|
|
29855
30242
|
collaborators?: Array<string> | null;
|
|
29856
30243
|
} | null;
|
|
29857
|
-
};
|
|
30244
|
+
} | null;
|
|
29858
30245
|
exchangeToken: {
|
|
29859
30246
|
__typename?: "ExchangeToken";
|
|
29860
30247
|
id: string;
|
|
@@ -29897,6 +30284,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
29897
30284
|
escalationResponsePeriod: string;
|
|
29898
30285
|
feeAmount: string;
|
|
29899
30286
|
buyerEscalationDeposit: string;
|
|
30287
|
+
mutualizerAddress: string;
|
|
29900
30288
|
};
|
|
29901
30289
|
metadata?:
|
|
29902
30290
|
| {
|
|
@@ -31031,12 +31419,16 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
31031
31419
|
completedDate?: string | null;
|
|
31032
31420
|
disputedDate?: string | null;
|
|
31033
31421
|
expired: boolean;
|
|
31422
|
+
mutualizerAddress: string;
|
|
31034
31423
|
offer: {
|
|
31035
31424
|
__typename?: "Offer";
|
|
31036
31425
|
id: string;
|
|
31037
31426
|
createdAt: string;
|
|
31038
31427
|
price: string;
|
|
31428
|
+
sellerId: string;
|
|
31039
31429
|
sellerDeposit: string;
|
|
31430
|
+
buyerId: string;
|
|
31431
|
+
creator: number;
|
|
31040
31432
|
protocolFee: string;
|
|
31041
31433
|
agentFee: string;
|
|
31042
31434
|
agentId: string;
|
|
@@ -31054,7 +31446,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
31054
31446
|
metadataHash: string;
|
|
31055
31447
|
voided: boolean;
|
|
31056
31448
|
voidedAt?: string | null;
|
|
31057
|
-
collectionIndex
|
|
31449
|
+
collectionIndex?: string | null;
|
|
31058
31450
|
disputeResolverId: string;
|
|
31059
31451
|
numberOfCommits: string;
|
|
31060
31452
|
numberOfRedemptions: string;
|
|
@@ -31105,13 +31497,13 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
31105
31497
|
metadataHash: string;
|
|
31106
31498
|
voided: boolean;
|
|
31107
31499
|
voidedAt?: string | null;
|
|
31108
|
-
collectionIndex
|
|
31500
|
+
collectionIndex?: string | null;
|
|
31109
31501
|
disputeResolverId: string;
|
|
31110
31502
|
numberOfCommits: string;
|
|
31111
31503
|
numberOfRedemptions: string;
|
|
31112
31504
|
}> | null;
|
|
31113
31505
|
} | null;
|
|
31114
|
-
seller
|
|
31506
|
+
seller?: {
|
|
31115
31507
|
__typename?: "Seller";
|
|
31116
31508
|
id: string;
|
|
31117
31509
|
assistant: string;
|
|
@@ -31195,8 +31587,14 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
31195
31587
|
}> | null;
|
|
31196
31588
|
}> | null;
|
|
31197
31589
|
} | null;
|
|
31198
|
-
};
|
|
31199
|
-
|
|
31590
|
+
} | null;
|
|
31591
|
+
buyer?: {
|
|
31592
|
+
__typename?: "Buyer";
|
|
31593
|
+
id: string;
|
|
31594
|
+
wallet: string;
|
|
31595
|
+
active: boolean;
|
|
31596
|
+
} | null;
|
|
31597
|
+
collection?: {
|
|
31200
31598
|
__typename?: "OfferCollection";
|
|
31201
31599
|
id: string;
|
|
31202
31600
|
sellerId: string;
|
|
@@ -31218,7 +31616,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
31218
31616
|
createdAt: string;
|
|
31219
31617
|
collaborators?: Array<string> | null;
|
|
31220
31618
|
} | null;
|
|
31221
|
-
};
|
|
31619
|
+
} | null;
|
|
31222
31620
|
exchangeToken: {
|
|
31223
31621
|
__typename?: "ExchangeToken";
|
|
31224
31622
|
id: string;
|
|
@@ -31261,6 +31659,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
31261
31659
|
escalationResponsePeriod: string;
|
|
31262
31660
|
feeAmount: string;
|
|
31263
31661
|
buyerEscalationDeposit: string;
|
|
31662
|
+
mutualizerAddress: string;
|
|
31264
31663
|
};
|
|
31265
31664
|
metadata?:
|
|
31266
31665
|
| {
|
|
@@ -32345,12 +32744,16 @@ export type GetExchangesQueryQuery = {
|
|
|
32345
32744
|
completedDate?: string | null;
|
|
32346
32745
|
disputedDate?: string | null;
|
|
32347
32746
|
expired: boolean;
|
|
32747
|
+
mutualizerAddress: string;
|
|
32348
32748
|
offer: {
|
|
32349
32749
|
__typename?: "Offer";
|
|
32350
32750
|
id: string;
|
|
32351
32751
|
createdAt: string;
|
|
32352
32752
|
price: string;
|
|
32753
|
+
sellerId: string;
|
|
32353
32754
|
sellerDeposit: string;
|
|
32755
|
+
buyerId: string;
|
|
32756
|
+
creator: number;
|
|
32354
32757
|
protocolFee: string;
|
|
32355
32758
|
agentFee: string;
|
|
32356
32759
|
agentId: string;
|
|
@@ -32368,7 +32771,7 @@ export type GetExchangesQueryQuery = {
|
|
|
32368
32771
|
metadataHash: string;
|
|
32369
32772
|
voided: boolean;
|
|
32370
32773
|
voidedAt?: string | null;
|
|
32371
|
-
collectionIndex
|
|
32774
|
+
collectionIndex?: string | null;
|
|
32372
32775
|
disputeResolverId: string;
|
|
32373
32776
|
numberOfCommits: string;
|
|
32374
32777
|
numberOfRedemptions: string;
|
|
@@ -32419,13 +32822,13 @@ export type GetExchangesQueryQuery = {
|
|
|
32419
32822
|
metadataHash: string;
|
|
32420
32823
|
voided: boolean;
|
|
32421
32824
|
voidedAt?: string | null;
|
|
32422
|
-
collectionIndex
|
|
32825
|
+
collectionIndex?: string | null;
|
|
32423
32826
|
disputeResolverId: string;
|
|
32424
32827
|
numberOfCommits: string;
|
|
32425
32828
|
numberOfRedemptions: string;
|
|
32426
32829
|
}> | null;
|
|
32427
32830
|
} | null;
|
|
32428
|
-
seller
|
|
32831
|
+
seller?: {
|
|
32429
32832
|
__typename?: "Seller";
|
|
32430
32833
|
id: string;
|
|
32431
32834
|
assistant: string;
|
|
@@ -32509,8 +32912,14 @@ export type GetExchangesQueryQuery = {
|
|
|
32509
32912
|
}> | null;
|
|
32510
32913
|
}> | null;
|
|
32511
32914
|
} | null;
|
|
32512
|
-
};
|
|
32513
|
-
|
|
32915
|
+
} | null;
|
|
32916
|
+
buyer?: {
|
|
32917
|
+
__typename?: "Buyer";
|
|
32918
|
+
id: string;
|
|
32919
|
+
wallet: string;
|
|
32920
|
+
active: boolean;
|
|
32921
|
+
} | null;
|
|
32922
|
+
collection?: {
|
|
32514
32923
|
__typename?: "OfferCollection";
|
|
32515
32924
|
id: string;
|
|
32516
32925
|
sellerId: string;
|
|
@@ -32532,7 +32941,7 @@ export type GetExchangesQueryQuery = {
|
|
|
32532
32941
|
createdAt: string;
|
|
32533
32942
|
collaborators?: Array<string> | null;
|
|
32534
32943
|
} | null;
|
|
32535
|
-
};
|
|
32944
|
+
} | null;
|
|
32536
32945
|
exchangeToken: {
|
|
32537
32946
|
__typename?: "ExchangeToken";
|
|
32538
32947
|
id: string;
|
|
@@ -32575,6 +32984,7 @@ export type GetExchangesQueryQuery = {
|
|
|
32575
32984
|
escalationResponsePeriod: string;
|
|
32576
32985
|
feeAmount: string;
|
|
32577
32986
|
buyerEscalationDeposit: string;
|
|
32987
|
+
mutualizerAddress: string;
|
|
32578
32988
|
};
|
|
32579
32989
|
metadata?:
|
|
32580
32990
|
| {
|
|
@@ -33649,12 +34059,16 @@ export type ExchangeFieldsFragment = {
|
|
|
33649
34059
|
completedDate?: string | null;
|
|
33650
34060
|
disputedDate?: string | null;
|
|
33651
34061
|
expired: boolean;
|
|
34062
|
+
mutualizerAddress: string;
|
|
33652
34063
|
offer: {
|
|
33653
34064
|
__typename?: "Offer";
|
|
33654
34065
|
id: string;
|
|
33655
34066
|
createdAt: string;
|
|
33656
34067
|
price: string;
|
|
34068
|
+
sellerId: string;
|
|
33657
34069
|
sellerDeposit: string;
|
|
34070
|
+
buyerId: string;
|
|
34071
|
+
creator: number;
|
|
33658
34072
|
protocolFee: string;
|
|
33659
34073
|
agentFee: string;
|
|
33660
34074
|
agentId: string;
|
|
@@ -33672,7 +34086,7 @@ export type ExchangeFieldsFragment = {
|
|
|
33672
34086
|
metadataHash: string;
|
|
33673
34087
|
voided: boolean;
|
|
33674
34088
|
voidedAt?: string | null;
|
|
33675
|
-
collectionIndex
|
|
34089
|
+
collectionIndex?: string | null;
|
|
33676
34090
|
disputeResolverId: string;
|
|
33677
34091
|
numberOfCommits: string;
|
|
33678
34092
|
numberOfRedemptions: string;
|
|
@@ -33723,13 +34137,13 @@ export type ExchangeFieldsFragment = {
|
|
|
33723
34137
|
metadataHash: string;
|
|
33724
34138
|
voided: boolean;
|
|
33725
34139
|
voidedAt?: string | null;
|
|
33726
|
-
collectionIndex
|
|
34140
|
+
collectionIndex?: string | null;
|
|
33727
34141
|
disputeResolverId: string;
|
|
33728
34142
|
numberOfCommits: string;
|
|
33729
34143
|
numberOfRedemptions: string;
|
|
33730
34144
|
}> | null;
|
|
33731
34145
|
} | null;
|
|
33732
|
-
seller
|
|
34146
|
+
seller?: {
|
|
33733
34147
|
__typename?: "Seller";
|
|
33734
34148
|
id: string;
|
|
33735
34149
|
assistant: string;
|
|
@@ -33813,8 +34227,14 @@ export type ExchangeFieldsFragment = {
|
|
|
33813
34227
|
}> | null;
|
|
33814
34228
|
}> | null;
|
|
33815
34229
|
} | null;
|
|
33816
|
-
};
|
|
33817
|
-
|
|
34230
|
+
} | null;
|
|
34231
|
+
buyer?: {
|
|
34232
|
+
__typename?: "Buyer";
|
|
34233
|
+
id: string;
|
|
34234
|
+
wallet: string;
|
|
34235
|
+
active: boolean;
|
|
34236
|
+
} | null;
|
|
34237
|
+
collection?: {
|
|
33818
34238
|
__typename?: "OfferCollection";
|
|
33819
34239
|
id: string;
|
|
33820
34240
|
sellerId: string;
|
|
@@ -33836,7 +34256,7 @@ export type ExchangeFieldsFragment = {
|
|
|
33836
34256
|
createdAt: string;
|
|
33837
34257
|
collaborators?: Array<string> | null;
|
|
33838
34258
|
} | null;
|
|
33839
|
-
};
|
|
34259
|
+
} | null;
|
|
33840
34260
|
exchangeToken: {
|
|
33841
34261
|
__typename?: "ExchangeToken";
|
|
33842
34262
|
id: string;
|
|
@@ -33879,6 +34299,7 @@ export type ExchangeFieldsFragment = {
|
|
|
33879
34299
|
escalationResponsePeriod: string;
|
|
33880
34300
|
feeAmount: string;
|
|
33881
34301
|
buyerEscalationDeposit: string;
|
|
34302
|
+
mutualizerAddress: string;
|
|
33882
34303
|
};
|
|
33883
34304
|
metadata?:
|
|
33884
34305
|
| {
|
|
@@ -34935,6 +35356,7 @@ export type BaseExchangeFieldsFragment = {
|
|
|
34935
35356
|
completedDate?: string | null;
|
|
34936
35357
|
disputedDate?: string | null;
|
|
34937
35358
|
expired: boolean;
|
|
35359
|
+
mutualizerAddress: string;
|
|
34938
35360
|
dispute?: {
|
|
34939
35361
|
__typename?: "Dispute";
|
|
34940
35362
|
id: string;
|
|
@@ -35145,7 +35567,7 @@ export type BaseConditionFieldsFragment = {
|
|
|
35145
35567
|
metadataHash: string;
|
|
35146
35568
|
voided: boolean;
|
|
35147
35569
|
voidedAt?: string | null;
|
|
35148
|
-
collectionIndex
|
|
35570
|
+
collectionIndex?: string | null;
|
|
35149
35571
|
disputeResolverId: string;
|
|
35150
35572
|
numberOfCommits: string;
|
|
35151
35573
|
numberOfRedemptions: string;
|
|
@@ -35200,7 +35622,10 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
35200
35622
|
id: string;
|
|
35201
35623
|
createdAt: string;
|
|
35202
35624
|
price: string;
|
|
35625
|
+
sellerId: string;
|
|
35203
35626
|
sellerDeposit: string;
|
|
35627
|
+
buyerId: string;
|
|
35628
|
+
creator: number;
|
|
35204
35629
|
protocolFee: string;
|
|
35205
35630
|
agentFee: string;
|
|
35206
35631
|
agentId: string;
|
|
@@ -35218,7 +35643,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
35218
35643
|
metadataHash: string;
|
|
35219
35644
|
voided: boolean;
|
|
35220
35645
|
voidedAt?: string | null;
|
|
35221
|
-
collectionIndex
|
|
35646
|
+
collectionIndex?: string | null;
|
|
35222
35647
|
disputeResolverId: string;
|
|
35223
35648
|
numberOfCommits: string;
|
|
35224
35649
|
numberOfRedemptions: string;
|
|
@@ -35269,13 +35694,13 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
35269
35694
|
metadataHash: string;
|
|
35270
35695
|
voided: boolean;
|
|
35271
35696
|
voidedAt?: string | null;
|
|
35272
|
-
collectionIndex
|
|
35697
|
+
collectionIndex?: string | null;
|
|
35273
35698
|
disputeResolverId: string;
|
|
35274
35699
|
numberOfCommits: string;
|
|
35275
35700
|
numberOfRedemptions: string;
|
|
35276
35701
|
}> | null;
|
|
35277
35702
|
} | null;
|
|
35278
|
-
seller
|
|
35703
|
+
seller?: {
|
|
35279
35704
|
__typename?: "Seller";
|
|
35280
35705
|
id: string;
|
|
35281
35706
|
assistant: string;
|
|
@@ -35359,8 +35784,14 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
35359
35784
|
}> | null;
|
|
35360
35785
|
}> | null;
|
|
35361
35786
|
} | null;
|
|
35362
|
-
};
|
|
35363
|
-
|
|
35787
|
+
} | null;
|
|
35788
|
+
buyer?: {
|
|
35789
|
+
__typename?: "Buyer";
|
|
35790
|
+
id: string;
|
|
35791
|
+
wallet: string;
|
|
35792
|
+
active: boolean;
|
|
35793
|
+
} | null;
|
|
35794
|
+
collection?: {
|
|
35364
35795
|
__typename?: "OfferCollection";
|
|
35365
35796
|
id: string;
|
|
35366
35797
|
sellerId: string;
|
|
@@ -35382,7 +35813,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
35382
35813
|
createdAt: string;
|
|
35383
35814
|
collaborators?: Array<string> | null;
|
|
35384
35815
|
} | null;
|
|
35385
|
-
};
|
|
35816
|
+
} | null;
|
|
35386
35817
|
exchangeToken: {
|
|
35387
35818
|
__typename?: "ExchangeToken";
|
|
35388
35819
|
id: string;
|
|
@@ -35425,6 +35856,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
35425
35856
|
escalationResponsePeriod: string;
|
|
35426
35857
|
feeAmount: string;
|
|
35427
35858
|
buyerEscalationDeposit: string;
|
|
35859
|
+
mutualizerAddress: string;
|
|
35428
35860
|
};
|
|
35429
35861
|
metadata?:
|
|
35430
35862
|
| {
|
|
@@ -36515,7 +36947,10 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
36515
36947
|
id: string;
|
|
36516
36948
|
createdAt: string;
|
|
36517
36949
|
price: string;
|
|
36950
|
+
sellerId: string;
|
|
36518
36951
|
sellerDeposit: string;
|
|
36952
|
+
buyerId: string;
|
|
36953
|
+
creator: number;
|
|
36519
36954
|
protocolFee: string;
|
|
36520
36955
|
agentFee: string;
|
|
36521
36956
|
agentId: string;
|
|
@@ -36533,7 +36968,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
36533
36968
|
metadataHash: string;
|
|
36534
36969
|
voided: boolean;
|
|
36535
36970
|
voidedAt?: string | null;
|
|
36536
|
-
collectionIndex
|
|
36971
|
+
collectionIndex?: string | null;
|
|
36537
36972
|
disputeResolverId: string;
|
|
36538
36973
|
numberOfCommits: string;
|
|
36539
36974
|
numberOfRedemptions: string;
|
|
@@ -36584,13 +37019,13 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
36584
37019
|
metadataHash: string;
|
|
36585
37020
|
voided: boolean;
|
|
36586
37021
|
voidedAt?: string | null;
|
|
36587
|
-
collectionIndex
|
|
37022
|
+
collectionIndex?: string | null;
|
|
36588
37023
|
disputeResolverId: string;
|
|
36589
37024
|
numberOfCommits: string;
|
|
36590
37025
|
numberOfRedemptions: string;
|
|
36591
37026
|
}> | null;
|
|
36592
37027
|
} | null;
|
|
36593
|
-
seller
|
|
37028
|
+
seller?: {
|
|
36594
37029
|
__typename?: "Seller";
|
|
36595
37030
|
id: string;
|
|
36596
37031
|
assistant: string;
|
|
@@ -36674,8 +37109,14 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
36674
37109
|
}> | null;
|
|
36675
37110
|
}> | null;
|
|
36676
37111
|
} | null;
|
|
36677
|
-
};
|
|
36678
|
-
|
|
37112
|
+
} | null;
|
|
37113
|
+
buyer?: {
|
|
37114
|
+
__typename?: "Buyer";
|
|
37115
|
+
id: string;
|
|
37116
|
+
wallet: string;
|
|
37117
|
+
active: boolean;
|
|
37118
|
+
} | null;
|
|
37119
|
+
collection?: {
|
|
36679
37120
|
__typename?: "OfferCollection";
|
|
36680
37121
|
id: string;
|
|
36681
37122
|
sellerId: string;
|
|
@@ -36697,7 +37138,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
36697
37138
|
createdAt: string;
|
|
36698
37139
|
collaborators?: Array<string> | null;
|
|
36699
37140
|
} | null;
|
|
36700
|
-
};
|
|
37141
|
+
} | null;
|
|
36701
37142
|
exchangeToken: {
|
|
36702
37143
|
__typename?: "ExchangeToken";
|
|
36703
37144
|
id: string;
|
|
@@ -36740,6 +37181,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
36740
37181
|
escalationResponsePeriod: string;
|
|
36741
37182
|
feeAmount: string;
|
|
36742
37183
|
buyerEscalationDeposit: string;
|
|
37184
|
+
mutualizerAddress: string;
|
|
36743
37185
|
};
|
|
36744
37186
|
metadata?:
|
|
36745
37187
|
| {
|
|
@@ -37820,7 +38262,10 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
37820
38262
|
id: string;
|
|
37821
38263
|
createdAt: string;
|
|
37822
38264
|
price: string;
|
|
38265
|
+
sellerId: string;
|
|
37823
38266
|
sellerDeposit: string;
|
|
38267
|
+
buyerId: string;
|
|
38268
|
+
creator: number;
|
|
37824
38269
|
protocolFee: string;
|
|
37825
38270
|
agentFee: string;
|
|
37826
38271
|
agentId: string;
|
|
@@ -37838,7 +38283,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
37838
38283
|
metadataHash: string;
|
|
37839
38284
|
voided: boolean;
|
|
37840
38285
|
voidedAt?: string | null;
|
|
37841
|
-
collectionIndex
|
|
38286
|
+
collectionIndex?: string | null;
|
|
37842
38287
|
disputeResolverId: string;
|
|
37843
38288
|
numberOfCommits: string;
|
|
37844
38289
|
numberOfRedemptions: string;
|
|
@@ -37889,13 +38334,13 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
37889
38334
|
metadataHash: string;
|
|
37890
38335
|
voided: boolean;
|
|
37891
38336
|
voidedAt?: string | null;
|
|
37892
|
-
collectionIndex
|
|
38337
|
+
collectionIndex?: string | null;
|
|
37893
38338
|
disputeResolverId: string;
|
|
37894
38339
|
numberOfCommits: string;
|
|
37895
38340
|
numberOfRedemptions: string;
|
|
37896
38341
|
}> | null;
|
|
37897
38342
|
} | null;
|
|
37898
|
-
seller
|
|
38343
|
+
seller?: {
|
|
37899
38344
|
__typename?: "Seller";
|
|
37900
38345
|
id: string;
|
|
37901
38346
|
assistant: string;
|
|
@@ -37979,8 +38424,14 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
37979
38424
|
}> | null;
|
|
37980
38425
|
}> | null;
|
|
37981
38426
|
} | null;
|
|
37982
|
-
};
|
|
37983
|
-
|
|
38427
|
+
} | null;
|
|
38428
|
+
buyer?: {
|
|
38429
|
+
__typename?: "Buyer";
|
|
38430
|
+
id: string;
|
|
38431
|
+
wallet: string;
|
|
38432
|
+
active: boolean;
|
|
38433
|
+
} | null;
|
|
38434
|
+
collection?: {
|
|
37984
38435
|
__typename?: "OfferCollection";
|
|
37985
38436
|
id: string;
|
|
37986
38437
|
sellerId: string;
|
|
@@ -38002,7 +38453,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
38002
38453
|
createdAt: string;
|
|
38003
38454
|
collaborators?: Array<string> | null;
|
|
38004
38455
|
} | null;
|
|
38005
|
-
};
|
|
38456
|
+
} | null;
|
|
38006
38457
|
exchangeToken: {
|
|
38007
38458
|
__typename?: "ExchangeToken";
|
|
38008
38459
|
id: string;
|
|
@@ -38045,6 +38496,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
38045
38496
|
escalationResponsePeriod: string;
|
|
38046
38497
|
feeAmount: string;
|
|
38047
38498
|
buyerEscalationDeposit: string;
|
|
38499
|
+
mutualizerAddress: string;
|
|
38048
38500
|
};
|
|
38049
38501
|
metadata?:
|
|
38050
38502
|
| {
|
|
@@ -39112,7 +39564,10 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
39112
39564
|
id: string;
|
|
39113
39565
|
createdAt: string;
|
|
39114
39566
|
price: string;
|
|
39567
|
+
sellerId: string;
|
|
39115
39568
|
sellerDeposit: string;
|
|
39569
|
+
buyerId: string;
|
|
39570
|
+
creator: number;
|
|
39116
39571
|
protocolFee: string;
|
|
39117
39572
|
agentFee: string;
|
|
39118
39573
|
agentId: string;
|
|
@@ -39130,7 +39585,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
39130
39585
|
metadataHash: string;
|
|
39131
39586
|
voided: boolean;
|
|
39132
39587
|
voidedAt?: string | null;
|
|
39133
|
-
collectionIndex
|
|
39588
|
+
collectionIndex?: string | null;
|
|
39134
39589
|
disputeResolverId: string;
|
|
39135
39590
|
numberOfCommits: string;
|
|
39136
39591
|
numberOfRedemptions: string;
|
|
@@ -39181,13 +39636,13 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
39181
39636
|
metadataHash: string;
|
|
39182
39637
|
voided: boolean;
|
|
39183
39638
|
voidedAt?: string | null;
|
|
39184
|
-
collectionIndex
|
|
39639
|
+
collectionIndex?: string | null;
|
|
39185
39640
|
disputeResolverId: string;
|
|
39186
39641
|
numberOfCommits: string;
|
|
39187
39642
|
numberOfRedemptions: string;
|
|
39188
39643
|
}> | null;
|
|
39189
39644
|
} | null;
|
|
39190
|
-
seller
|
|
39645
|
+
seller?: {
|
|
39191
39646
|
__typename?: "Seller";
|
|
39192
39647
|
id: string;
|
|
39193
39648
|
assistant: string;
|
|
@@ -39271,8 +39726,14 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
39271
39726
|
}> | null;
|
|
39272
39727
|
}> | null;
|
|
39273
39728
|
} | null;
|
|
39274
|
-
};
|
|
39275
|
-
|
|
39729
|
+
} | null;
|
|
39730
|
+
buyer?: {
|
|
39731
|
+
__typename?: "Buyer";
|
|
39732
|
+
id: string;
|
|
39733
|
+
wallet: string;
|
|
39734
|
+
active: boolean;
|
|
39735
|
+
} | null;
|
|
39736
|
+
collection?: {
|
|
39276
39737
|
__typename?: "OfferCollection";
|
|
39277
39738
|
id: string;
|
|
39278
39739
|
sellerId: string;
|
|
@@ -39294,7 +39755,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
39294
39755
|
createdAt: string;
|
|
39295
39756
|
collaborators?: Array<string> | null;
|
|
39296
39757
|
} | null;
|
|
39297
|
-
};
|
|
39758
|
+
} | null;
|
|
39298
39759
|
exchangeToken: {
|
|
39299
39760
|
__typename?: "ExchangeToken";
|
|
39300
39761
|
id: string;
|
|
@@ -39337,6 +39798,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
39337
39798
|
escalationResponsePeriod: string;
|
|
39338
39799
|
feeAmount: string;
|
|
39339
39800
|
buyerEscalationDeposit: string;
|
|
39801
|
+
mutualizerAddress: string;
|
|
39340
39802
|
};
|
|
39341
39803
|
metadata?:
|
|
39342
39804
|
| {
|
|
@@ -40417,7 +40879,10 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40417
40879
|
id: string;
|
|
40418
40880
|
createdAt: string;
|
|
40419
40881
|
price: string;
|
|
40882
|
+
sellerId: string;
|
|
40420
40883
|
sellerDeposit: string;
|
|
40884
|
+
buyerId: string;
|
|
40885
|
+
creator: number;
|
|
40421
40886
|
protocolFee: string;
|
|
40422
40887
|
agentFee: string;
|
|
40423
40888
|
agentId: string;
|
|
@@ -40435,7 +40900,7 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40435
40900
|
metadataHash: string;
|
|
40436
40901
|
voided: boolean;
|
|
40437
40902
|
voidedAt?: string | null;
|
|
40438
|
-
collectionIndex
|
|
40903
|
+
collectionIndex?: string | null;
|
|
40439
40904
|
disputeResolverId: string;
|
|
40440
40905
|
numberOfCommits: string;
|
|
40441
40906
|
numberOfRedemptions: string;
|
|
@@ -40454,6 +40919,7 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40454
40919
|
completedDate?: string | null;
|
|
40455
40920
|
disputedDate?: string | null;
|
|
40456
40921
|
expired: boolean;
|
|
40922
|
+
mutualizerAddress: string;
|
|
40457
40923
|
dispute?: {
|
|
40458
40924
|
__typename?: "Dispute";
|
|
40459
40925
|
id: string;
|
|
@@ -40611,13 +41077,13 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40611
41077
|
metadataHash: string;
|
|
40612
41078
|
voided: boolean;
|
|
40613
41079
|
voidedAt?: string | null;
|
|
40614
|
-
collectionIndex
|
|
41080
|
+
collectionIndex?: string | null;
|
|
40615
41081
|
disputeResolverId: string;
|
|
40616
41082
|
numberOfCommits: string;
|
|
40617
41083
|
numberOfRedemptions: string;
|
|
40618
41084
|
}> | null;
|
|
40619
41085
|
} | null;
|
|
40620
|
-
seller
|
|
41086
|
+
seller?: {
|
|
40621
41087
|
__typename?: "Seller";
|
|
40622
41088
|
id: string;
|
|
40623
41089
|
assistant: string;
|
|
@@ -40701,8 +41167,14 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40701
41167
|
}> | null;
|
|
40702
41168
|
}> | null;
|
|
40703
41169
|
} | null;
|
|
40704
|
-
};
|
|
40705
|
-
|
|
41170
|
+
} | null;
|
|
41171
|
+
buyer?: {
|
|
41172
|
+
__typename?: "Buyer";
|
|
41173
|
+
id: string;
|
|
41174
|
+
wallet: string;
|
|
41175
|
+
active: boolean;
|
|
41176
|
+
} | null;
|
|
41177
|
+
collection?: {
|
|
40706
41178
|
__typename?: "OfferCollection";
|
|
40707
41179
|
id: string;
|
|
40708
41180
|
sellerId: string;
|
|
@@ -40724,7 +41196,7 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40724
41196
|
createdAt: string;
|
|
40725
41197
|
collaborators?: Array<string> | null;
|
|
40726
41198
|
} | null;
|
|
40727
|
-
};
|
|
41199
|
+
} | null;
|
|
40728
41200
|
exchangeToken: {
|
|
40729
41201
|
__typename?: "ExchangeToken";
|
|
40730
41202
|
id: string;
|
|
@@ -40767,6 +41239,7 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40767
41239
|
escalationResponsePeriod: string;
|
|
40768
41240
|
feeAmount: string;
|
|
40769
41241
|
buyerEscalationDeposit: string;
|
|
41242
|
+
mutualizerAddress: string;
|
|
40770
41243
|
};
|
|
40771
41244
|
metadata?:
|
|
40772
41245
|
| {
|
|
@@ -42307,7 +42780,10 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42307
42780
|
id: string;
|
|
42308
42781
|
createdAt: string;
|
|
42309
42782
|
price: string;
|
|
42783
|
+
sellerId: string;
|
|
42310
42784
|
sellerDeposit: string;
|
|
42785
|
+
buyerId: string;
|
|
42786
|
+
creator: number;
|
|
42311
42787
|
protocolFee: string;
|
|
42312
42788
|
agentFee: string;
|
|
42313
42789
|
agentId: string;
|
|
@@ -42325,7 +42801,7 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42325
42801
|
metadataHash: string;
|
|
42326
42802
|
voided: boolean;
|
|
42327
42803
|
voidedAt?: string | null;
|
|
42328
|
-
collectionIndex
|
|
42804
|
+
collectionIndex?: string | null;
|
|
42329
42805
|
disputeResolverId: string;
|
|
42330
42806
|
numberOfCommits: string;
|
|
42331
42807
|
numberOfRedemptions: string;
|
|
@@ -42344,6 +42820,7 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42344
42820
|
completedDate?: string | null;
|
|
42345
42821
|
disputedDate?: string | null;
|
|
42346
42822
|
expired: boolean;
|
|
42823
|
+
mutualizerAddress: string;
|
|
42347
42824
|
dispute?: {
|
|
42348
42825
|
__typename?: "Dispute";
|
|
42349
42826
|
id: string;
|
|
@@ -42501,13 +42978,13 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42501
42978
|
metadataHash: string;
|
|
42502
42979
|
voided: boolean;
|
|
42503
42980
|
voidedAt?: string | null;
|
|
42504
|
-
collectionIndex
|
|
42981
|
+
collectionIndex?: string | null;
|
|
42505
42982
|
disputeResolverId: string;
|
|
42506
42983
|
numberOfCommits: string;
|
|
42507
42984
|
numberOfRedemptions: string;
|
|
42508
42985
|
}> | null;
|
|
42509
42986
|
} | null;
|
|
42510
|
-
seller
|
|
42987
|
+
seller?: {
|
|
42511
42988
|
__typename?: "Seller";
|
|
42512
42989
|
id: string;
|
|
42513
42990
|
assistant: string;
|
|
@@ -42591,8 +43068,14 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42591
43068
|
}> | null;
|
|
42592
43069
|
}> | null;
|
|
42593
43070
|
} | null;
|
|
42594
|
-
};
|
|
42595
|
-
|
|
43071
|
+
} | null;
|
|
43072
|
+
buyer?: {
|
|
43073
|
+
__typename?: "Buyer";
|
|
43074
|
+
id: string;
|
|
43075
|
+
wallet: string;
|
|
43076
|
+
active: boolean;
|
|
43077
|
+
} | null;
|
|
43078
|
+
collection?: {
|
|
42596
43079
|
__typename?: "OfferCollection";
|
|
42597
43080
|
id: string;
|
|
42598
43081
|
sellerId: string;
|
|
@@ -42614,7 +43097,7 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42614
43097
|
createdAt: string;
|
|
42615
43098
|
collaborators?: Array<string> | null;
|
|
42616
43099
|
} | null;
|
|
42617
|
-
};
|
|
43100
|
+
} | null;
|
|
42618
43101
|
exchangeToken: {
|
|
42619
43102
|
__typename?: "ExchangeToken";
|
|
42620
43103
|
id: string;
|
|
@@ -42657,6 +43140,7 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42657
43140
|
escalationResponsePeriod: string;
|
|
42658
43141
|
feeAmount: string;
|
|
42659
43142
|
buyerEscalationDeposit: string;
|
|
43143
|
+
mutualizerAddress: string;
|
|
42660
43144
|
};
|
|
42661
43145
|
metadata?:
|
|
42662
43146
|
| {
|
|
@@ -44187,7 +44671,10 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44187
44671
|
id: string;
|
|
44188
44672
|
createdAt: string;
|
|
44189
44673
|
price: string;
|
|
44674
|
+
sellerId: string;
|
|
44190
44675
|
sellerDeposit: string;
|
|
44676
|
+
buyerId: string;
|
|
44677
|
+
creator: number;
|
|
44191
44678
|
protocolFee: string;
|
|
44192
44679
|
agentFee: string;
|
|
44193
44680
|
agentId: string;
|
|
@@ -44205,7 +44692,7 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44205
44692
|
metadataHash: string;
|
|
44206
44693
|
voided: boolean;
|
|
44207
44694
|
voidedAt?: string | null;
|
|
44208
|
-
collectionIndex
|
|
44695
|
+
collectionIndex?: string | null;
|
|
44209
44696
|
disputeResolverId: string;
|
|
44210
44697
|
numberOfCommits: string;
|
|
44211
44698
|
numberOfRedemptions: string;
|
|
@@ -44224,6 +44711,7 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44224
44711
|
completedDate?: string | null;
|
|
44225
44712
|
disputedDate?: string | null;
|
|
44226
44713
|
expired: boolean;
|
|
44714
|
+
mutualizerAddress: string;
|
|
44227
44715
|
dispute?: {
|
|
44228
44716
|
__typename?: "Dispute";
|
|
44229
44717
|
id: string;
|
|
@@ -44381,13 +44869,13 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44381
44869
|
metadataHash: string;
|
|
44382
44870
|
voided: boolean;
|
|
44383
44871
|
voidedAt?: string | null;
|
|
44384
|
-
collectionIndex
|
|
44872
|
+
collectionIndex?: string | null;
|
|
44385
44873
|
disputeResolverId: string;
|
|
44386
44874
|
numberOfCommits: string;
|
|
44387
44875
|
numberOfRedemptions: string;
|
|
44388
44876
|
}> | null;
|
|
44389
44877
|
} | null;
|
|
44390
|
-
seller
|
|
44878
|
+
seller?: {
|
|
44391
44879
|
__typename?: "Seller";
|
|
44392
44880
|
id: string;
|
|
44393
44881
|
assistant: string;
|
|
@@ -44471,8 +44959,14 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44471
44959
|
}> | null;
|
|
44472
44960
|
}> | null;
|
|
44473
44961
|
} | null;
|
|
44474
|
-
};
|
|
44475
|
-
|
|
44962
|
+
} | null;
|
|
44963
|
+
buyer?: {
|
|
44964
|
+
__typename?: "Buyer";
|
|
44965
|
+
id: string;
|
|
44966
|
+
wallet: string;
|
|
44967
|
+
active: boolean;
|
|
44968
|
+
} | null;
|
|
44969
|
+
collection?: {
|
|
44476
44970
|
__typename?: "OfferCollection";
|
|
44477
44971
|
id: string;
|
|
44478
44972
|
sellerId: string;
|
|
@@ -44494,7 +44988,7 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44494
44988
|
createdAt: string;
|
|
44495
44989
|
collaborators?: Array<string> | null;
|
|
44496
44990
|
} | null;
|
|
44497
|
-
};
|
|
44991
|
+
} | null;
|
|
44498
44992
|
exchangeToken: {
|
|
44499
44993
|
__typename?: "ExchangeToken";
|
|
44500
44994
|
id: string;
|
|
@@ -44537,6 +45031,7 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44537
45031
|
escalationResponsePeriod: string;
|
|
44538
45032
|
feeAmount: string;
|
|
44539
45033
|
buyerEscalationDeposit: string;
|
|
45034
|
+
mutualizerAddress: string;
|
|
44540
45035
|
};
|
|
44541
45036
|
metadata?:
|
|
44542
45037
|
| {
|
|
@@ -46054,7 +46549,10 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46054
46549
|
id: string;
|
|
46055
46550
|
createdAt: string;
|
|
46056
46551
|
price: string;
|
|
46552
|
+
sellerId: string;
|
|
46057
46553
|
sellerDeposit: string;
|
|
46554
|
+
buyerId: string;
|
|
46555
|
+
creator: number;
|
|
46058
46556
|
protocolFee: string;
|
|
46059
46557
|
agentFee: string;
|
|
46060
46558
|
agentId: string;
|
|
@@ -46072,7 +46570,7 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46072
46570
|
metadataHash: string;
|
|
46073
46571
|
voided: boolean;
|
|
46074
46572
|
voidedAt?: string | null;
|
|
46075
|
-
collectionIndex
|
|
46573
|
+
collectionIndex?: string | null;
|
|
46076
46574
|
disputeResolverId: string;
|
|
46077
46575
|
numberOfCommits: string;
|
|
46078
46576
|
numberOfRedemptions: string;
|
|
@@ -46091,6 +46589,7 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46091
46589
|
completedDate?: string | null;
|
|
46092
46590
|
disputedDate?: string | null;
|
|
46093
46591
|
expired: boolean;
|
|
46592
|
+
mutualizerAddress: string;
|
|
46094
46593
|
dispute?: {
|
|
46095
46594
|
__typename?: "Dispute";
|
|
46096
46595
|
id: string;
|
|
@@ -46248,13 +46747,13 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46248
46747
|
metadataHash: string;
|
|
46249
46748
|
voided: boolean;
|
|
46250
46749
|
voidedAt?: string | null;
|
|
46251
|
-
collectionIndex
|
|
46750
|
+
collectionIndex?: string | null;
|
|
46252
46751
|
disputeResolverId: string;
|
|
46253
46752
|
numberOfCommits: string;
|
|
46254
46753
|
numberOfRedemptions: string;
|
|
46255
46754
|
}> | null;
|
|
46256
46755
|
} | null;
|
|
46257
|
-
seller
|
|
46756
|
+
seller?: {
|
|
46258
46757
|
__typename?: "Seller";
|
|
46259
46758
|
id: string;
|
|
46260
46759
|
assistant: string;
|
|
@@ -46338,8 +46837,14 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46338
46837
|
}> | null;
|
|
46339
46838
|
}> | null;
|
|
46340
46839
|
} | null;
|
|
46341
|
-
};
|
|
46342
|
-
|
|
46840
|
+
} | null;
|
|
46841
|
+
buyer?: {
|
|
46842
|
+
__typename?: "Buyer";
|
|
46843
|
+
id: string;
|
|
46844
|
+
wallet: string;
|
|
46845
|
+
active: boolean;
|
|
46846
|
+
} | null;
|
|
46847
|
+
collection?: {
|
|
46343
46848
|
__typename?: "OfferCollection";
|
|
46344
46849
|
id: string;
|
|
46345
46850
|
sellerId: string;
|
|
@@ -46361,7 +46866,7 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46361
46866
|
createdAt: string;
|
|
46362
46867
|
collaborators?: Array<string> | null;
|
|
46363
46868
|
} | null;
|
|
46364
|
-
};
|
|
46869
|
+
} | null;
|
|
46365
46870
|
exchangeToken: {
|
|
46366
46871
|
__typename?: "ExchangeToken";
|
|
46367
46872
|
id: string;
|
|
@@ -46404,6 +46909,7 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46404
46909
|
escalationResponsePeriod: string;
|
|
46405
46910
|
feeAmount: string;
|
|
46406
46911
|
buyerEscalationDeposit: string;
|
|
46912
|
+
mutualizerAddress: string;
|
|
46407
46913
|
};
|
|
46408
46914
|
metadata?:
|
|
46409
46915
|
| {
|
|
@@ -48176,7 +48682,10 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48176
48682
|
id: string;
|
|
48177
48683
|
createdAt: string;
|
|
48178
48684
|
price: string;
|
|
48685
|
+
sellerId: string;
|
|
48179
48686
|
sellerDeposit: string;
|
|
48687
|
+
buyerId: string;
|
|
48688
|
+
creator: number;
|
|
48180
48689
|
protocolFee: string;
|
|
48181
48690
|
agentFee: string;
|
|
48182
48691
|
agentId: string;
|
|
@@ -48194,7 +48703,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48194
48703
|
metadataHash: string;
|
|
48195
48704
|
voided: boolean;
|
|
48196
48705
|
voidedAt?: string | null;
|
|
48197
|
-
collectionIndex
|
|
48706
|
+
collectionIndex?: string | null;
|
|
48198
48707
|
disputeResolverId: string;
|
|
48199
48708
|
numberOfCommits: string;
|
|
48200
48709
|
numberOfRedemptions: string;
|
|
@@ -48213,6 +48722,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48213
48722
|
completedDate?: string | null;
|
|
48214
48723
|
disputedDate?: string | null;
|
|
48215
48724
|
expired: boolean;
|
|
48725
|
+
mutualizerAddress: string;
|
|
48216
48726
|
dispute?: {
|
|
48217
48727
|
__typename?: "Dispute";
|
|
48218
48728
|
id: string;
|
|
@@ -48370,13 +48880,13 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48370
48880
|
metadataHash: string;
|
|
48371
48881
|
voided: boolean;
|
|
48372
48882
|
voidedAt?: string | null;
|
|
48373
|
-
collectionIndex
|
|
48883
|
+
collectionIndex?: string | null;
|
|
48374
48884
|
disputeResolverId: string;
|
|
48375
48885
|
numberOfCommits: string;
|
|
48376
48886
|
numberOfRedemptions: string;
|
|
48377
48887
|
}> | null;
|
|
48378
48888
|
} | null;
|
|
48379
|
-
seller
|
|
48889
|
+
seller?: {
|
|
48380
48890
|
__typename?: "Seller";
|
|
48381
48891
|
id: string;
|
|
48382
48892
|
assistant: string;
|
|
@@ -48460,8 +48970,14 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48460
48970
|
}> | null;
|
|
48461
48971
|
}> | null;
|
|
48462
48972
|
} | null;
|
|
48463
|
-
};
|
|
48464
|
-
|
|
48973
|
+
} | null;
|
|
48974
|
+
buyer?: {
|
|
48975
|
+
__typename?: "Buyer";
|
|
48976
|
+
id: string;
|
|
48977
|
+
wallet: string;
|
|
48978
|
+
active: boolean;
|
|
48979
|
+
} | null;
|
|
48980
|
+
collection?: {
|
|
48465
48981
|
__typename?: "OfferCollection";
|
|
48466
48982
|
id: string;
|
|
48467
48983
|
sellerId: string;
|
|
@@ -48483,7 +48999,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48483
48999
|
createdAt: string;
|
|
48484
49000
|
collaborators?: Array<string> | null;
|
|
48485
49001
|
} | null;
|
|
48486
|
-
};
|
|
49002
|
+
} | null;
|
|
48487
49003
|
exchangeToken: {
|
|
48488
49004
|
__typename?: "ExchangeToken";
|
|
48489
49005
|
id: string;
|
|
@@ -48526,6 +49042,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48526
49042
|
escalationResponsePeriod: string;
|
|
48527
49043
|
feeAmount: string;
|
|
48528
49044
|
buyerEscalationDeposit: string;
|
|
49045
|
+
mutualizerAddress: string;
|
|
48529
49046
|
};
|
|
48530
49047
|
metadata?:
|
|
48531
49048
|
| {
|
|
@@ -49518,7 +50035,10 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49518
50035
|
id: string;
|
|
49519
50036
|
createdAt: string;
|
|
49520
50037
|
price: string;
|
|
50038
|
+
sellerId: string;
|
|
49521
50039
|
sellerDeposit: string;
|
|
50040
|
+
buyerId: string;
|
|
50041
|
+
creator: number;
|
|
49522
50042
|
protocolFee: string;
|
|
49523
50043
|
agentFee: string;
|
|
49524
50044
|
agentId: string;
|
|
@@ -49536,7 +50056,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49536
50056
|
metadataHash: string;
|
|
49537
50057
|
voided: boolean;
|
|
49538
50058
|
voidedAt?: string | null;
|
|
49539
|
-
collectionIndex
|
|
50059
|
+
collectionIndex?: string | null;
|
|
49540
50060
|
disputeResolverId: string;
|
|
49541
50061
|
numberOfCommits: string;
|
|
49542
50062
|
numberOfRedemptions: string;
|
|
@@ -49555,6 +50075,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49555
50075
|
completedDate?: string | null;
|
|
49556
50076
|
disputedDate?: string | null;
|
|
49557
50077
|
expired: boolean;
|
|
50078
|
+
mutualizerAddress: string;
|
|
49558
50079
|
dispute?: {
|
|
49559
50080
|
__typename?: "Dispute";
|
|
49560
50081
|
id: string;
|
|
@@ -49712,13 +50233,13 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49712
50233
|
metadataHash: string;
|
|
49713
50234
|
voided: boolean;
|
|
49714
50235
|
voidedAt?: string | null;
|
|
49715
|
-
collectionIndex
|
|
50236
|
+
collectionIndex?: string | null;
|
|
49716
50237
|
disputeResolverId: string;
|
|
49717
50238
|
numberOfCommits: string;
|
|
49718
50239
|
numberOfRedemptions: string;
|
|
49719
50240
|
}> | null;
|
|
49720
50241
|
} | null;
|
|
49721
|
-
seller
|
|
50242
|
+
seller?: {
|
|
49722
50243
|
__typename?: "Seller";
|
|
49723
50244
|
id: string;
|
|
49724
50245
|
assistant: string;
|
|
@@ -49802,8 +50323,14 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49802
50323
|
}> | null;
|
|
49803
50324
|
}> | null;
|
|
49804
50325
|
} | null;
|
|
49805
|
-
};
|
|
49806
|
-
|
|
50326
|
+
} | null;
|
|
50327
|
+
buyer?: {
|
|
50328
|
+
__typename?: "Buyer";
|
|
50329
|
+
id: string;
|
|
50330
|
+
wallet: string;
|
|
50331
|
+
active: boolean;
|
|
50332
|
+
} | null;
|
|
50333
|
+
collection?: {
|
|
49807
50334
|
__typename?: "OfferCollection";
|
|
49808
50335
|
id: string;
|
|
49809
50336
|
sellerId: string;
|
|
@@ -49825,7 +50352,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49825
50352
|
createdAt: string;
|
|
49826
50353
|
collaborators?: Array<string> | null;
|
|
49827
50354
|
} | null;
|
|
49828
|
-
};
|
|
50355
|
+
} | null;
|
|
49829
50356
|
exchangeToken: {
|
|
49830
50357
|
__typename?: "ExchangeToken";
|
|
49831
50358
|
id: string;
|
|
@@ -49868,6 +50395,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49868
50395
|
escalationResponsePeriod: string;
|
|
49869
50396
|
feeAmount: string;
|
|
49870
50397
|
buyerEscalationDeposit: string;
|
|
50398
|
+
mutualizerAddress: string;
|
|
49871
50399
|
};
|
|
49872
50400
|
metadata?:
|
|
49873
50401
|
| {
|
|
@@ -51603,7 +52131,10 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51603
52131
|
id: string;
|
|
51604
52132
|
createdAt: string;
|
|
51605
52133
|
price: string;
|
|
52134
|
+
sellerId: string;
|
|
51606
52135
|
sellerDeposit: string;
|
|
52136
|
+
buyerId: string;
|
|
52137
|
+
creator: number;
|
|
51607
52138
|
protocolFee: string;
|
|
51608
52139
|
agentFee: string;
|
|
51609
52140
|
agentId: string;
|
|
@@ -51621,7 +52152,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51621
52152
|
metadataHash: string;
|
|
51622
52153
|
voided: boolean;
|
|
51623
52154
|
voidedAt?: string | null;
|
|
51624
|
-
collectionIndex
|
|
52155
|
+
collectionIndex?: string | null;
|
|
51625
52156
|
disputeResolverId: string;
|
|
51626
52157
|
numberOfCommits: string;
|
|
51627
52158
|
numberOfRedemptions: string;
|
|
@@ -51640,6 +52171,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51640
52171
|
completedDate?: string | null;
|
|
51641
52172
|
disputedDate?: string | null;
|
|
51642
52173
|
expired: boolean;
|
|
52174
|
+
mutualizerAddress: string;
|
|
51643
52175
|
dispute?: {
|
|
51644
52176
|
__typename?: "Dispute";
|
|
51645
52177
|
id: string;
|
|
@@ -51797,13 +52329,13 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51797
52329
|
metadataHash: string;
|
|
51798
52330
|
voided: boolean;
|
|
51799
52331
|
voidedAt?: string | null;
|
|
51800
|
-
collectionIndex
|
|
52332
|
+
collectionIndex?: string | null;
|
|
51801
52333
|
disputeResolverId: string;
|
|
51802
52334
|
numberOfCommits: string;
|
|
51803
52335
|
numberOfRedemptions: string;
|
|
51804
52336
|
}> | null;
|
|
51805
52337
|
} | null;
|
|
51806
|
-
seller
|
|
52338
|
+
seller?: {
|
|
51807
52339
|
__typename?: "Seller";
|
|
51808
52340
|
id: string;
|
|
51809
52341
|
assistant: string;
|
|
@@ -51887,8 +52419,14 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51887
52419
|
}> | null;
|
|
51888
52420
|
}> | null;
|
|
51889
52421
|
} | null;
|
|
51890
|
-
};
|
|
51891
|
-
|
|
52422
|
+
} | null;
|
|
52423
|
+
buyer?: {
|
|
52424
|
+
__typename?: "Buyer";
|
|
52425
|
+
id: string;
|
|
52426
|
+
wallet: string;
|
|
52427
|
+
active: boolean;
|
|
52428
|
+
} | null;
|
|
52429
|
+
collection?: {
|
|
51892
52430
|
__typename?: "OfferCollection";
|
|
51893
52431
|
id: string;
|
|
51894
52432
|
sellerId: string;
|
|
@@ -51910,7 +52448,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51910
52448
|
createdAt: string;
|
|
51911
52449
|
collaborators?: Array<string> | null;
|
|
51912
52450
|
} | null;
|
|
51913
|
-
};
|
|
52451
|
+
} | null;
|
|
51914
52452
|
exchangeToken: {
|
|
51915
52453
|
__typename?: "ExchangeToken";
|
|
51916
52454
|
id: string;
|
|
@@ -51953,6 +52491,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51953
52491
|
escalationResponsePeriod: string;
|
|
51954
52492
|
feeAmount: string;
|
|
51955
52493
|
buyerEscalationDeposit: string;
|
|
52494
|
+
mutualizerAddress: string;
|
|
51956
52495
|
};
|
|
51957
52496
|
metadata?:
|
|
51958
52497
|
| {
|
|
@@ -52945,7 +53484,10 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52945
53484
|
id: string;
|
|
52946
53485
|
createdAt: string;
|
|
52947
53486
|
price: string;
|
|
53487
|
+
sellerId: string;
|
|
52948
53488
|
sellerDeposit: string;
|
|
53489
|
+
buyerId: string;
|
|
53490
|
+
creator: number;
|
|
52949
53491
|
protocolFee: string;
|
|
52950
53492
|
agentFee: string;
|
|
52951
53493
|
agentId: string;
|
|
@@ -52963,7 +53505,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52963
53505
|
metadataHash: string;
|
|
52964
53506
|
voided: boolean;
|
|
52965
53507
|
voidedAt?: string | null;
|
|
52966
|
-
collectionIndex
|
|
53508
|
+
collectionIndex?: string | null;
|
|
52967
53509
|
disputeResolverId: string;
|
|
52968
53510
|
numberOfCommits: string;
|
|
52969
53511
|
numberOfRedemptions: string;
|
|
@@ -52982,6 +53524,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52982
53524
|
completedDate?: string | null;
|
|
52983
53525
|
disputedDate?: string | null;
|
|
52984
53526
|
expired: boolean;
|
|
53527
|
+
mutualizerAddress: string;
|
|
52985
53528
|
dispute?: {
|
|
52986
53529
|
__typename?: "Dispute";
|
|
52987
53530
|
id: string;
|
|
@@ -53139,13 +53682,13 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
53139
53682
|
metadataHash: string;
|
|
53140
53683
|
voided: boolean;
|
|
53141
53684
|
voidedAt?: string | null;
|
|
53142
|
-
collectionIndex
|
|
53685
|
+
collectionIndex?: string | null;
|
|
53143
53686
|
disputeResolverId: string;
|
|
53144
53687
|
numberOfCommits: string;
|
|
53145
53688
|
numberOfRedemptions: string;
|
|
53146
53689
|
}> | null;
|
|
53147
53690
|
} | null;
|
|
53148
|
-
seller
|
|
53691
|
+
seller?: {
|
|
53149
53692
|
__typename?: "Seller";
|
|
53150
53693
|
id: string;
|
|
53151
53694
|
assistant: string;
|
|
@@ -53229,8 +53772,14 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
53229
53772
|
}> | null;
|
|
53230
53773
|
}> | null;
|
|
53231
53774
|
} | null;
|
|
53232
|
-
};
|
|
53233
|
-
|
|
53775
|
+
} | null;
|
|
53776
|
+
buyer?: {
|
|
53777
|
+
__typename?: "Buyer";
|
|
53778
|
+
id: string;
|
|
53779
|
+
wallet: string;
|
|
53780
|
+
active: boolean;
|
|
53781
|
+
} | null;
|
|
53782
|
+
collection?: {
|
|
53234
53783
|
__typename?: "OfferCollection";
|
|
53235
53784
|
id: string;
|
|
53236
53785
|
sellerId: string;
|
|
@@ -53252,7 +53801,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
53252
53801
|
createdAt: string;
|
|
53253
53802
|
collaborators?: Array<string> | null;
|
|
53254
53803
|
} | null;
|
|
53255
|
-
};
|
|
53804
|
+
} | null;
|
|
53256
53805
|
exchangeToken: {
|
|
53257
53806
|
__typename?: "ExchangeToken";
|
|
53258
53807
|
id: string;
|
|
@@ -53295,6 +53844,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
53295
53844
|
escalationResponsePeriod: string;
|
|
53296
53845
|
feeAmount: string;
|
|
53297
53846
|
buyerEscalationDeposit: string;
|
|
53847
|
+
mutualizerAddress: string;
|
|
53298
53848
|
};
|
|
53299
53849
|
metadata?:
|
|
53300
53850
|
| {
|
|
@@ -55044,7 +55594,10 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55044
55594
|
id: string;
|
|
55045
55595
|
createdAt: string;
|
|
55046
55596
|
price: string;
|
|
55597
|
+
sellerId: string;
|
|
55047
55598
|
sellerDeposit: string;
|
|
55599
|
+
buyerId: string;
|
|
55600
|
+
creator: number;
|
|
55048
55601
|
protocolFee: string;
|
|
55049
55602
|
agentFee: string;
|
|
55050
55603
|
agentId: string;
|
|
@@ -55062,7 +55615,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55062
55615
|
metadataHash: string;
|
|
55063
55616
|
voided: boolean;
|
|
55064
55617
|
voidedAt?: string | null;
|
|
55065
|
-
collectionIndex
|
|
55618
|
+
collectionIndex?: string | null;
|
|
55066
55619
|
disputeResolverId: string;
|
|
55067
55620
|
numberOfCommits: string;
|
|
55068
55621
|
numberOfRedemptions: string;
|
|
@@ -55081,6 +55634,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55081
55634
|
completedDate?: string | null;
|
|
55082
55635
|
disputedDate?: string | null;
|
|
55083
55636
|
expired: boolean;
|
|
55637
|
+
mutualizerAddress: string;
|
|
55084
55638
|
dispute?: {
|
|
55085
55639
|
__typename?: "Dispute";
|
|
55086
55640
|
id: string;
|
|
@@ -55238,13 +55792,13 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55238
55792
|
metadataHash: string;
|
|
55239
55793
|
voided: boolean;
|
|
55240
55794
|
voidedAt?: string | null;
|
|
55241
|
-
collectionIndex
|
|
55795
|
+
collectionIndex?: string | null;
|
|
55242
55796
|
disputeResolverId: string;
|
|
55243
55797
|
numberOfCommits: string;
|
|
55244
55798
|
numberOfRedemptions: string;
|
|
55245
55799
|
}> | null;
|
|
55246
55800
|
} | null;
|
|
55247
|
-
seller
|
|
55801
|
+
seller?: {
|
|
55248
55802
|
__typename?: "Seller";
|
|
55249
55803
|
id: string;
|
|
55250
55804
|
assistant: string;
|
|
@@ -55328,8 +55882,14 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55328
55882
|
}> | null;
|
|
55329
55883
|
}> | null;
|
|
55330
55884
|
} | null;
|
|
55331
|
-
};
|
|
55332
|
-
|
|
55885
|
+
} | null;
|
|
55886
|
+
buyer?: {
|
|
55887
|
+
__typename?: "Buyer";
|
|
55888
|
+
id: string;
|
|
55889
|
+
wallet: string;
|
|
55890
|
+
active: boolean;
|
|
55891
|
+
} | null;
|
|
55892
|
+
collection?: {
|
|
55333
55893
|
__typename?: "OfferCollection";
|
|
55334
55894
|
id: string;
|
|
55335
55895
|
sellerId: string;
|
|
@@ -55351,7 +55911,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55351
55911
|
createdAt: string;
|
|
55352
55912
|
collaborators?: Array<string> | null;
|
|
55353
55913
|
} | null;
|
|
55354
|
-
};
|
|
55914
|
+
} | null;
|
|
55355
55915
|
exchangeToken: {
|
|
55356
55916
|
__typename?: "ExchangeToken";
|
|
55357
55917
|
id: string;
|
|
@@ -55394,6 +55954,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55394
55954
|
escalationResponsePeriod: string;
|
|
55395
55955
|
feeAmount: string;
|
|
55396
55956
|
buyerEscalationDeposit: string;
|
|
55957
|
+
mutualizerAddress: string;
|
|
55397
55958
|
};
|
|
55398
55959
|
metadata?:
|
|
55399
55960
|
| {
|
|
@@ -56825,7 +57386,10 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
56825
57386
|
id: string;
|
|
56826
57387
|
createdAt: string;
|
|
56827
57388
|
price: string;
|
|
57389
|
+
sellerId: string;
|
|
56828
57390
|
sellerDeposit: string;
|
|
57391
|
+
buyerId: string;
|
|
57392
|
+
creator: number;
|
|
56829
57393
|
protocolFee: string;
|
|
56830
57394
|
agentFee: string;
|
|
56831
57395
|
agentId: string;
|
|
@@ -56843,7 +57407,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
56843
57407
|
metadataHash: string;
|
|
56844
57408
|
voided: boolean;
|
|
56845
57409
|
voidedAt?: string | null;
|
|
56846
|
-
collectionIndex
|
|
57410
|
+
collectionIndex?: string | null;
|
|
56847
57411
|
disputeResolverId: string;
|
|
56848
57412
|
numberOfCommits: string;
|
|
56849
57413
|
numberOfRedemptions: string;
|
|
@@ -56862,6 +57426,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
56862
57426
|
completedDate?: string | null;
|
|
56863
57427
|
disputedDate?: string | null;
|
|
56864
57428
|
expired: boolean;
|
|
57429
|
+
mutualizerAddress: string;
|
|
56865
57430
|
dispute?: {
|
|
56866
57431
|
__typename?: "Dispute";
|
|
56867
57432
|
id: string;
|
|
@@ -57019,13 +57584,13 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
57019
57584
|
metadataHash: string;
|
|
57020
57585
|
voided: boolean;
|
|
57021
57586
|
voidedAt?: string | null;
|
|
57022
|
-
collectionIndex
|
|
57587
|
+
collectionIndex?: string | null;
|
|
57023
57588
|
disputeResolverId: string;
|
|
57024
57589
|
numberOfCommits: string;
|
|
57025
57590
|
numberOfRedemptions: string;
|
|
57026
57591
|
}> | null;
|
|
57027
57592
|
} | null;
|
|
57028
|
-
seller
|
|
57593
|
+
seller?: {
|
|
57029
57594
|
__typename?: "Seller";
|
|
57030
57595
|
id: string;
|
|
57031
57596
|
assistant: string;
|
|
@@ -57109,8 +57674,14 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
57109
57674
|
}> | null;
|
|
57110
57675
|
}> | null;
|
|
57111
57676
|
} | null;
|
|
57112
|
-
};
|
|
57113
|
-
|
|
57677
|
+
} | null;
|
|
57678
|
+
buyer?: {
|
|
57679
|
+
__typename?: "Buyer";
|
|
57680
|
+
id: string;
|
|
57681
|
+
wallet: string;
|
|
57682
|
+
active: boolean;
|
|
57683
|
+
} | null;
|
|
57684
|
+
collection?: {
|
|
57114
57685
|
__typename?: "OfferCollection";
|
|
57115
57686
|
id: string;
|
|
57116
57687
|
sellerId: string;
|
|
@@ -57132,7 +57703,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
57132
57703
|
createdAt: string;
|
|
57133
57704
|
collaborators?: Array<string> | null;
|
|
57134
57705
|
} | null;
|
|
57135
|
-
};
|
|
57706
|
+
} | null;
|
|
57136
57707
|
exchangeToken: {
|
|
57137
57708
|
__typename?: "ExchangeToken";
|
|
57138
57709
|
id: string;
|
|
@@ -57175,6 +57746,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
57175
57746
|
escalationResponsePeriod: string;
|
|
57176
57747
|
feeAmount: string;
|
|
57177
57748
|
buyerEscalationDeposit: string;
|
|
57749
|
+
mutualizerAddress: string;
|
|
57178
57750
|
};
|
|
57179
57751
|
metadata?:
|
|
57180
57752
|
| {
|
|
@@ -58596,7 +59168,10 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58596
59168
|
id: string;
|
|
58597
59169
|
createdAt: string;
|
|
58598
59170
|
price: string;
|
|
59171
|
+
sellerId: string;
|
|
58599
59172
|
sellerDeposit: string;
|
|
59173
|
+
buyerId: string;
|
|
59174
|
+
creator: number;
|
|
58600
59175
|
protocolFee: string;
|
|
58601
59176
|
agentFee: string;
|
|
58602
59177
|
agentId: string;
|
|
@@ -58614,7 +59189,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58614
59189
|
metadataHash: string;
|
|
58615
59190
|
voided: boolean;
|
|
58616
59191
|
voidedAt?: string | null;
|
|
58617
|
-
collectionIndex
|
|
59192
|
+
collectionIndex?: string | null;
|
|
58618
59193
|
disputeResolverId: string;
|
|
58619
59194
|
numberOfCommits: string;
|
|
58620
59195
|
numberOfRedemptions: string;
|
|
@@ -58633,6 +59208,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58633
59208
|
completedDate?: string | null;
|
|
58634
59209
|
disputedDate?: string | null;
|
|
58635
59210
|
expired: boolean;
|
|
59211
|
+
mutualizerAddress: string;
|
|
58636
59212
|
dispute?: {
|
|
58637
59213
|
__typename?: "Dispute";
|
|
58638
59214
|
id: string;
|
|
@@ -58790,13 +59366,13 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58790
59366
|
metadataHash: string;
|
|
58791
59367
|
voided: boolean;
|
|
58792
59368
|
voidedAt?: string | null;
|
|
58793
|
-
collectionIndex
|
|
59369
|
+
collectionIndex?: string | null;
|
|
58794
59370
|
disputeResolverId: string;
|
|
58795
59371
|
numberOfCommits: string;
|
|
58796
59372
|
numberOfRedemptions: string;
|
|
58797
59373
|
}> | null;
|
|
58798
59374
|
} | null;
|
|
58799
|
-
seller
|
|
59375
|
+
seller?: {
|
|
58800
59376
|
__typename?: "Seller";
|
|
58801
59377
|
id: string;
|
|
58802
59378
|
assistant: string;
|
|
@@ -58880,8 +59456,14 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58880
59456
|
}> | null;
|
|
58881
59457
|
}> | null;
|
|
58882
59458
|
} | null;
|
|
58883
|
-
};
|
|
58884
|
-
|
|
59459
|
+
} | null;
|
|
59460
|
+
buyer?: {
|
|
59461
|
+
__typename?: "Buyer";
|
|
59462
|
+
id: string;
|
|
59463
|
+
wallet: string;
|
|
59464
|
+
active: boolean;
|
|
59465
|
+
} | null;
|
|
59466
|
+
collection?: {
|
|
58885
59467
|
__typename?: "OfferCollection";
|
|
58886
59468
|
id: string;
|
|
58887
59469
|
sellerId: string;
|
|
@@ -58903,7 +59485,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58903
59485
|
createdAt: string;
|
|
58904
59486
|
collaborators?: Array<string> | null;
|
|
58905
59487
|
} | null;
|
|
58906
|
-
};
|
|
59488
|
+
} | null;
|
|
58907
59489
|
exchangeToken: {
|
|
58908
59490
|
__typename?: "ExchangeToken";
|
|
58909
59491
|
id: string;
|
|
@@ -58946,6 +59528,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58946
59528
|
escalationResponsePeriod: string;
|
|
58947
59529
|
feeAmount: string;
|
|
58948
59530
|
buyerEscalationDeposit: string;
|
|
59531
|
+
mutualizerAddress: string;
|
|
58949
59532
|
};
|
|
58950
59533
|
metadata?:
|
|
58951
59534
|
| {
|
|
@@ -60354,7 +60937,10 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60354
60937
|
id: string;
|
|
60355
60938
|
createdAt: string;
|
|
60356
60939
|
price: string;
|
|
60940
|
+
sellerId: string;
|
|
60357
60941
|
sellerDeposit: string;
|
|
60942
|
+
buyerId: string;
|
|
60943
|
+
creator: number;
|
|
60358
60944
|
protocolFee: string;
|
|
60359
60945
|
agentFee: string;
|
|
60360
60946
|
agentId: string;
|
|
@@ -60372,7 +60958,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60372
60958
|
metadataHash: string;
|
|
60373
60959
|
voided: boolean;
|
|
60374
60960
|
voidedAt?: string | null;
|
|
60375
|
-
collectionIndex
|
|
60961
|
+
collectionIndex?: string | null;
|
|
60376
60962
|
disputeResolverId: string;
|
|
60377
60963
|
numberOfCommits: string;
|
|
60378
60964
|
numberOfRedemptions: string;
|
|
@@ -60391,6 +60977,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60391
60977
|
completedDate?: string | null;
|
|
60392
60978
|
disputedDate?: string | null;
|
|
60393
60979
|
expired: boolean;
|
|
60980
|
+
mutualizerAddress: string;
|
|
60394
60981
|
dispute?: {
|
|
60395
60982
|
__typename?: "Dispute";
|
|
60396
60983
|
id: string;
|
|
@@ -60548,13 +61135,13 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60548
61135
|
metadataHash: string;
|
|
60549
61136
|
voided: boolean;
|
|
60550
61137
|
voidedAt?: string | null;
|
|
60551
|
-
collectionIndex
|
|
61138
|
+
collectionIndex?: string | null;
|
|
60552
61139
|
disputeResolverId: string;
|
|
60553
61140
|
numberOfCommits: string;
|
|
60554
61141
|
numberOfRedemptions: string;
|
|
60555
61142
|
}> | null;
|
|
60556
61143
|
} | null;
|
|
60557
|
-
seller
|
|
61144
|
+
seller?: {
|
|
60558
61145
|
__typename?: "Seller";
|
|
60559
61146
|
id: string;
|
|
60560
61147
|
assistant: string;
|
|
@@ -60638,8 +61225,14 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60638
61225
|
}> | null;
|
|
60639
61226
|
}> | null;
|
|
60640
61227
|
} | null;
|
|
60641
|
-
};
|
|
60642
|
-
|
|
61228
|
+
} | null;
|
|
61229
|
+
buyer?: {
|
|
61230
|
+
__typename?: "Buyer";
|
|
61231
|
+
id: string;
|
|
61232
|
+
wallet: string;
|
|
61233
|
+
active: boolean;
|
|
61234
|
+
} | null;
|
|
61235
|
+
collection?: {
|
|
60643
61236
|
__typename?: "OfferCollection";
|
|
60644
61237
|
id: string;
|
|
60645
61238
|
sellerId: string;
|
|
@@ -60661,7 +61254,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60661
61254
|
createdAt: string;
|
|
60662
61255
|
collaborators?: Array<string> | null;
|
|
60663
61256
|
} | null;
|
|
60664
|
-
};
|
|
61257
|
+
} | null;
|
|
60665
61258
|
exchangeToken: {
|
|
60666
61259
|
__typename?: "ExchangeToken";
|
|
60667
61260
|
id: string;
|
|
@@ -60704,6 +61297,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60704
61297
|
escalationResponsePeriod: string;
|
|
60705
61298
|
feeAmount: string;
|
|
60706
61299
|
buyerEscalationDeposit: string;
|
|
61300
|
+
mutualizerAddress: string;
|
|
60707
61301
|
};
|
|
60708
61302
|
metadata?:
|
|
60709
61303
|
| {
|
|
@@ -62338,7 +62932,10 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62338
62932
|
id: string;
|
|
62339
62933
|
createdAt: string;
|
|
62340
62934
|
price: string;
|
|
62935
|
+
sellerId: string;
|
|
62341
62936
|
sellerDeposit: string;
|
|
62937
|
+
buyerId: string;
|
|
62938
|
+
creator: number;
|
|
62342
62939
|
protocolFee: string;
|
|
62343
62940
|
agentFee: string;
|
|
62344
62941
|
agentId: string;
|
|
@@ -62356,7 +62953,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62356
62953
|
metadataHash: string;
|
|
62357
62954
|
voided: boolean;
|
|
62358
62955
|
voidedAt?: string | null;
|
|
62359
|
-
collectionIndex
|
|
62956
|
+
collectionIndex?: string | null;
|
|
62360
62957
|
disputeResolverId: string;
|
|
62361
62958
|
numberOfCommits: string;
|
|
62362
62959
|
numberOfRedemptions: string;
|
|
@@ -62375,6 +62972,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62375
62972
|
completedDate?: string | null;
|
|
62376
62973
|
disputedDate?: string | null;
|
|
62377
62974
|
expired: boolean;
|
|
62975
|
+
mutualizerAddress: string;
|
|
62378
62976
|
dispute?: {
|
|
62379
62977
|
__typename?: "Dispute";
|
|
62380
62978
|
id: string;
|
|
@@ -62532,13 +63130,13 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62532
63130
|
metadataHash: string;
|
|
62533
63131
|
voided: boolean;
|
|
62534
63132
|
voidedAt?: string | null;
|
|
62535
|
-
collectionIndex
|
|
63133
|
+
collectionIndex?: string | null;
|
|
62536
63134
|
disputeResolverId: string;
|
|
62537
63135
|
numberOfCommits: string;
|
|
62538
63136
|
numberOfRedemptions: string;
|
|
62539
63137
|
}> | null;
|
|
62540
63138
|
} | null;
|
|
62541
|
-
seller
|
|
63139
|
+
seller?: {
|
|
62542
63140
|
__typename?: "Seller";
|
|
62543
63141
|
id: string;
|
|
62544
63142
|
assistant: string;
|
|
@@ -62622,8 +63220,14 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62622
63220
|
}> | null;
|
|
62623
63221
|
}> | null;
|
|
62624
63222
|
} | null;
|
|
62625
|
-
};
|
|
62626
|
-
|
|
63223
|
+
} | null;
|
|
63224
|
+
buyer?: {
|
|
63225
|
+
__typename?: "Buyer";
|
|
63226
|
+
id: string;
|
|
63227
|
+
wallet: string;
|
|
63228
|
+
active: boolean;
|
|
63229
|
+
} | null;
|
|
63230
|
+
collection?: {
|
|
62627
63231
|
__typename?: "OfferCollection";
|
|
62628
63232
|
id: string;
|
|
62629
63233
|
sellerId: string;
|
|
@@ -62645,7 +63249,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62645
63249
|
createdAt: string;
|
|
62646
63250
|
collaborators?: Array<string> | null;
|
|
62647
63251
|
} | null;
|
|
62648
|
-
};
|
|
63252
|
+
} | null;
|
|
62649
63253
|
exchangeToken: {
|
|
62650
63254
|
__typename?: "ExchangeToken";
|
|
62651
63255
|
id: string;
|
|
@@ -62688,6 +63292,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62688
63292
|
escalationResponsePeriod: string;
|
|
62689
63293
|
feeAmount: string;
|
|
62690
63294
|
buyerEscalationDeposit: string;
|
|
63295
|
+
mutualizerAddress: string;
|
|
62691
63296
|
};
|
|
62692
63297
|
metadata?:
|
|
62693
63298
|
| {
|
|
@@ -63680,7 +64285,10 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63680
64285
|
id: string;
|
|
63681
64286
|
createdAt: string;
|
|
63682
64287
|
price: string;
|
|
64288
|
+
sellerId: string;
|
|
63683
64289
|
sellerDeposit: string;
|
|
64290
|
+
buyerId: string;
|
|
64291
|
+
creator: number;
|
|
63684
64292
|
protocolFee: string;
|
|
63685
64293
|
agentFee: string;
|
|
63686
64294
|
agentId: string;
|
|
@@ -63698,7 +64306,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63698
64306
|
metadataHash: string;
|
|
63699
64307
|
voided: boolean;
|
|
63700
64308
|
voidedAt?: string | null;
|
|
63701
|
-
collectionIndex
|
|
64309
|
+
collectionIndex?: string | null;
|
|
63702
64310
|
disputeResolverId: string;
|
|
63703
64311
|
numberOfCommits: string;
|
|
63704
64312
|
numberOfRedemptions: string;
|
|
@@ -63717,6 +64325,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63717
64325
|
completedDate?: string | null;
|
|
63718
64326
|
disputedDate?: string | null;
|
|
63719
64327
|
expired: boolean;
|
|
64328
|
+
mutualizerAddress: string;
|
|
63720
64329
|
dispute?: {
|
|
63721
64330
|
__typename?: "Dispute";
|
|
63722
64331
|
id: string;
|
|
@@ -63874,13 +64483,13 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63874
64483
|
metadataHash: string;
|
|
63875
64484
|
voided: boolean;
|
|
63876
64485
|
voidedAt?: string | null;
|
|
63877
|
-
collectionIndex
|
|
64486
|
+
collectionIndex?: string | null;
|
|
63878
64487
|
disputeResolverId: string;
|
|
63879
64488
|
numberOfCommits: string;
|
|
63880
64489
|
numberOfRedemptions: string;
|
|
63881
64490
|
}> | null;
|
|
63882
64491
|
} | null;
|
|
63883
|
-
seller
|
|
64492
|
+
seller?: {
|
|
63884
64493
|
__typename?: "Seller";
|
|
63885
64494
|
id: string;
|
|
63886
64495
|
assistant: string;
|
|
@@ -63964,8 +64573,14 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63964
64573
|
}> | null;
|
|
63965
64574
|
}> | null;
|
|
63966
64575
|
} | null;
|
|
63967
|
-
};
|
|
63968
|
-
|
|
64576
|
+
} | null;
|
|
64577
|
+
buyer?: {
|
|
64578
|
+
__typename?: "Buyer";
|
|
64579
|
+
id: string;
|
|
64580
|
+
wallet: string;
|
|
64581
|
+
active: boolean;
|
|
64582
|
+
} | null;
|
|
64583
|
+
collection?: {
|
|
63969
64584
|
__typename?: "OfferCollection";
|
|
63970
64585
|
id: string;
|
|
63971
64586
|
sellerId: string;
|
|
@@ -63987,7 +64602,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63987
64602
|
createdAt: string;
|
|
63988
64603
|
collaborators?: Array<string> | null;
|
|
63989
64604
|
} | null;
|
|
63990
|
-
};
|
|
64605
|
+
} | null;
|
|
63991
64606
|
exchangeToken: {
|
|
63992
64607
|
__typename?: "ExchangeToken";
|
|
63993
64608
|
id: string;
|
|
@@ -64030,6 +64645,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
64030
64645
|
escalationResponsePeriod: string;
|
|
64031
64646
|
feeAmount: string;
|
|
64032
64647
|
buyerEscalationDeposit: string;
|
|
64648
|
+
mutualizerAddress: string;
|
|
64033
64649
|
};
|
|
64034
64650
|
metadata?:
|
|
64035
64651
|
| {
|
|
@@ -65754,7 +66370,10 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65754
66370
|
id: string;
|
|
65755
66371
|
createdAt: string;
|
|
65756
66372
|
price: string;
|
|
66373
|
+
sellerId: string;
|
|
65757
66374
|
sellerDeposit: string;
|
|
66375
|
+
buyerId: string;
|
|
66376
|
+
creator: number;
|
|
65758
66377
|
protocolFee: string;
|
|
65759
66378
|
agentFee: string;
|
|
65760
66379
|
agentId: string;
|
|
@@ -65772,7 +66391,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65772
66391
|
metadataHash: string;
|
|
65773
66392
|
voided: boolean;
|
|
65774
66393
|
voidedAt?: string | null;
|
|
65775
|
-
collectionIndex
|
|
66394
|
+
collectionIndex?: string | null;
|
|
65776
66395
|
disputeResolverId: string;
|
|
65777
66396
|
numberOfCommits: string;
|
|
65778
66397
|
numberOfRedemptions: string;
|
|
@@ -65791,6 +66410,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65791
66410
|
completedDate?: string | null;
|
|
65792
66411
|
disputedDate?: string | null;
|
|
65793
66412
|
expired: boolean;
|
|
66413
|
+
mutualizerAddress: string;
|
|
65794
66414
|
dispute?: {
|
|
65795
66415
|
__typename?: "Dispute";
|
|
65796
66416
|
id: string;
|
|
@@ -65948,13 +66568,13 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65948
66568
|
metadataHash: string;
|
|
65949
66569
|
voided: boolean;
|
|
65950
66570
|
voidedAt?: string | null;
|
|
65951
|
-
collectionIndex
|
|
66571
|
+
collectionIndex?: string | null;
|
|
65952
66572
|
disputeResolverId: string;
|
|
65953
66573
|
numberOfCommits: string;
|
|
65954
66574
|
numberOfRedemptions: string;
|
|
65955
66575
|
}> | null;
|
|
65956
66576
|
} | null;
|
|
65957
|
-
seller
|
|
66577
|
+
seller?: {
|
|
65958
66578
|
__typename?: "Seller";
|
|
65959
66579
|
id: string;
|
|
65960
66580
|
assistant: string;
|
|
@@ -66038,8 +66658,14 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66038
66658
|
}> | null;
|
|
66039
66659
|
}> | null;
|
|
66040
66660
|
} | null;
|
|
66041
|
-
};
|
|
66042
|
-
|
|
66661
|
+
} | null;
|
|
66662
|
+
buyer?: {
|
|
66663
|
+
__typename?: "Buyer";
|
|
66664
|
+
id: string;
|
|
66665
|
+
wallet: string;
|
|
66666
|
+
active: boolean;
|
|
66667
|
+
} | null;
|
|
66668
|
+
collection?: {
|
|
66043
66669
|
__typename?: "OfferCollection";
|
|
66044
66670
|
id: string;
|
|
66045
66671
|
sellerId: string;
|
|
@@ -66061,7 +66687,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66061
66687
|
createdAt: string;
|
|
66062
66688
|
collaborators?: Array<string> | null;
|
|
66063
66689
|
} | null;
|
|
66064
|
-
};
|
|
66690
|
+
} | null;
|
|
66065
66691
|
exchangeToken: {
|
|
66066
66692
|
__typename?: "ExchangeToken";
|
|
66067
66693
|
id: string;
|
|
@@ -66104,6 +66730,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66104
66730
|
escalationResponsePeriod: string;
|
|
66105
66731
|
feeAmount: string;
|
|
66106
66732
|
buyerEscalationDeposit: string;
|
|
66733
|
+
mutualizerAddress: string;
|
|
66107
66734
|
};
|
|
66108
66735
|
metadata?:
|
|
66109
66736
|
| {
|
|
@@ -67096,7 +67723,10 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67096
67723
|
id: string;
|
|
67097
67724
|
createdAt: string;
|
|
67098
67725
|
price: string;
|
|
67726
|
+
sellerId: string;
|
|
67099
67727
|
sellerDeposit: string;
|
|
67728
|
+
buyerId: string;
|
|
67729
|
+
creator: number;
|
|
67100
67730
|
protocolFee: string;
|
|
67101
67731
|
agentFee: string;
|
|
67102
67732
|
agentId: string;
|
|
@@ -67114,7 +67744,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67114
67744
|
metadataHash: string;
|
|
67115
67745
|
voided: boolean;
|
|
67116
67746
|
voidedAt?: string | null;
|
|
67117
|
-
collectionIndex
|
|
67747
|
+
collectionIndex?: string | null;
|
|
67118
67748
|
disputeResolverId: string;
|
|
67119
67749
|
numberOfCommits: string;
|
|
67120
67750
|
numberOfRedemptions: string;
|
|
@@ -67133,6 +67763,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67133
67763
|
completedDate?: string | null;
|
|
67134
67764
|
disputedDate?: string | null;
|
|
67135
67765
|
expired: boolean;
|
|
67766
|
+
mutualizerAddress: string;
|
|
67136
67767
|
dispute?: {
|
|
67137
67768
|
__typename?: "Dispute";
|
|
67138
67769
|
id: string;
|
|
@@ -67290,13 +67921,13 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67290
67921
|
metadataHash: string;
|
|
67291
67922
|
voided: boolean;
|
|
67292
67923
|
voidedAt?: string | null;
|
|
67293
|
-
collectionIndex
|
|
67924
|
+
collectionIndex?: string | null;
|
|
67294
67925
|
disputeResolverId: string;
|
|
67295
67926
|
numberOfCommits: string;
|
|
67296
67927
|
numberOfRedemptions: string;
|
|
67297
67928
|
}> | null;
|
|
67298
67929
|
} | null;
|
|
67299
|
-
seller
|
|
67930
|
+
seller?: {
|
|
67300
67931
|
__typename?: "Seller";
|
|
67301
67932
|
id: string;
|
|
67302
67933
|
assistant: string;
|
|
@@ -67380,8 +68011,14 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67380
68011
|
}> | null;
|
|
67381
68012
|
}> | null;
|
|
67382
68013
|
} | null;
|
|
67383
|
-
};
|
|
67384
|
-
|
|
68014
|
+
} | null;
|
|
68015
|
+
buyer?: {
|
|
68016
|
+
__typename?: "Buyer";
|
|
68017
|
+
id: string;
|
|
68018
|
+
wallet: string;
|
|
68019
|
+
active: boolean;
|
|
68020
|
+
} | null;
|
|
68021
|
+
collection?: {
|
|
67385
68022
|
__typename?: "OfferCollection";
|
|
67386
68023
|
id: string;
|
|
67387
68024
|
sellerId: string;
|
|
@@ -67403,7 +68040,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67403
68040
|
createdAt: string;
|
|
67404
68041
|
collaborators?: Array<string> | null;
|
|
67405
68042
|
} | null;
|
|
67406
|
-
};
|
|
68043
|
+
} | null;
|
|
67407
68044
|
exchangeToken: {
|
|
67408
68045
|
__typename?: "ExchangeToken";
|
|
67409
68046
|
id: string;
|
|
@@ -67446,6 +68083,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67446
68083
|
escalationResponsePeriod: string;
|
|
67447
68084
|
feeAmount: string;
|
|
67448
68085
|
buyerEscalationDeposit: string;
|
|
68086
|
+
mutualizerAddress: string;
|
|
67449
68087
|
};
|
|
67450
68088
|
metadata?:
|
|
67451
68089
|
| {
|
|
@@ -69386,7 +70024,10 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69386
70024
|
id: string;
|
|
69387
70025
|
createdAt: string;
|
|
69388
70026
|
price: string;
|
|
70027
|
+
sellerId: string;
|
|
69389
70028
|
sellerDeposit: string;
|
|
70029
|
+
buyerId: string;
|
|
70030
|
+
creator: number;
|
|
69390
70031
|
protocolFee: string;
|
|
69391
70032
|
agentFee: string;
|
|
69392
70033
|
agentId: string;
|
|
@@ -69404,7 +70045,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69404
70045
|
metadataHash: string;
|
|
69405
70046
|
voided: boolean;
|
|
69406
70047
|
voidedAt?: string | null;
|
|
69407
|
-
collectionIndex
|
|
70048
|
+
collectionIndex?: string | null;
|
|
69408
70049
|
disputeResolverId: string;
|
|
69409
70050
|
numberOfCommits: string;
|
|
69410
70051
|
numberOfRedemptions: string;
|
|
@@ -69423,6 +70064,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69423
70064
|
completedDate?: string | null;
|
|
69424
70065
|
disputedDate?: string | null;
|
|
69425
70066
|
expired: boolean;
|
|
70067
|
+
mutualizerAddress: string;
|
|
69426
70068
|
dispute?: {
|
|
69427
70069
|
__typename?: "Dispute";
|
|
69428
70070
|
id: string;
|
|
@@ -69580,13 +70222,13 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69580
70222
|
metadataHash: string;
|
|
69581
70223
|
voided: boolean;
|
|
69582
70224
|
voidedAt?: string | null;
|
|
69583
|
-
collectionIndex
|
|
70225
|
+
collectionIndex?: string | null;
|
|
69584
70226
|
disputeResolverId: string;
|
|
69585
70227
|
numberOfCommits: string;
|
|
69586
70228
|
numberOfRedemptions: string;
|
|
69587
70229
|
}> | null;
|
|
69588
70230
|
} | null;
|
|
69589
|
-
seller
|
|
70231
|
+
seller?: {
|
|
69590
70232
|
__typename?: "Seller";
|
|
69591
70233
|
id: string;
|
|
69592
70234
|
assistant: string;
|
|
@@ -69670,8 +70312,14 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69670
70312
|
}> | null;
|
|
69671
70313
|
}> | null;
|
|
69672
70314
|
} | null;
|
|
69673
|
-
};
|
|
69674
|
-
|
|
70315
|
+
} | null;
|
|
70316
|
+
buyer?: {
|
|
70317
|
+
__typename?: "Buyer";
|
|
70318
|
+
id: string;
|
|
70319
|
+
wallet: string;
|
|
70320
|
+
active: boolean;
|
|
70321
|
+
} | null;
|
|
70322
|
+
collection?: {
|
|
69675
70323
|
__typename?: "OfferCollection";
|
|
69676
70324
|
id: string;
|
|
69677
70325
|
sellerId: string;
|
|
@@ -69693,7 +70341,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69693
70341
|
createdAt: string;
|
|
69694
70342
|
collaborators?: Array<string> | null;
|
|
69695
70343
|
} | null;
|
|
69696
|
-
};
|
|
70344
|
+
} | null;
|
|
69697
70345
|
exchangeToken: {
|
|
69698
70346
|
__typename?: "ExchangeToken";
|
|
69699
70347
|
id: string;
|
|
@@ -69736,6 +70384,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69736
70384
|
escalationResponsePeriod: string;
|
|
69737
70385
|
feeAmount: string;
|
|
69738
70386
|
buyerEscalationDeposit: string;
|
|
70387
|
+
mutualizerAddress: string;
|
|
69739
70388
|
};
|
|
69740
70389
|
metadata?:
|
|
69741
70390
|
| {
|
|
@@ -70694,7 +71343,10 @@ export type GetOffersQueryQuery = {
|
|
|
70694
71343
|
id: string;
|
|
70695
71344
|
createdAt: string;
|
|
70696
71345
|
price: string;
|
|
71346
|
+
sellerId: string;
|
|
70697
71347
|
sellerDeposit: string;
|
|
71348
|
+
buyerId: string;
|
|
71349
|
+
creator: number;
|
|
70698
71350
|
protocolFee: string;
|
|
70699
71351
|
agentFee: string;
|
|
70700
71352
|
agentId: string;
|
|
@@ -70712,7 +71364,7 @@ export type GetOffersQueryQuery = {
|
|
|
70712
71364
|
metadataHash: string;
|
|
70713
71365
|
voided: boolean;
|
|
70714
71366
|
voidedAt?: string | null;
|
|
70715
|
-
collectionIndex
|
|
71367
|
+
collectionIndex?: string | null;
|
|
70716
71368
|
disputeResolverId: string;
|
|
70717
71369
|
numberOfCommits: string;
|
|
70718
71370
|
numberOfRedemptions: string;
|
|
@@ -70731,6 +71383,7 @@ export type GetOffersQueryQuery = {
|
|
|
70731
71383
|
completedDate?: string | null;
|
|
70732
71384
|
disputedDate?: string | null;
|
|
70733
71385
|
expired: boolean;
|
|
71386
|
+
mutualizerAddress: string;
|
|
70734
71387
|
dispute?: {
|
|
70735
71388
|
__typename?: "Dispute";
|
|
70736
71389
|
id: string;
|
|
@@ -70888,13 +71541,13 @@ export type GetOffersQueryQuery = {
|
|
|
70888
71541
|
metadataHash: string;
|
|
70889
71542
|
voided: boolean;
|
|
70890
71543
|
voidedAt?: string | null;
|
|
70891
|
-
collectionIndex
|
|
71544
|
+
collectionIndex?: string | null;
|
|
70892
71545
|
disputeResolverId: string;
|
|
70893
71546
|
numberOfCommits: string;
|
|
70894
71547
|
numberOfRedemptions: string;
|
|
70895
71548
|
}> | null;
|
|
70896
71549
|
} | null;
|
|
70897
|
-
seller
|
|
71550
|
+
seller?: {
|
|
70898
71551
|
__typename?: "Seller";
|
|
70899
71552
|
id: string;
|
|
70900
71553
|
assistant: string;
|
|
@@ -70978,8 +71631,14 @@ export type GetOffersQueryQuery = {
|
|
|
70978
71631
|
}> | null;
|
|
70979
71632
|
}> | null;
|
|
70980
71633
|
} | null;
|
|
70981
|
-
};
|
|
70982
|
-
|
|
71634
|
+
} | null;
|
|
71635
|
+
buyer?: {
|
|
71636
|
+
__typename?: "Buyer";
|
|
71637
|
+
id: string;
|
|
71638
|
+
wallet: string;
|
|
71639
|
+
active: boolean;
|
|
71640
|
+
} | null;
|
|
71641
|
+
collection?: {
|
|
70983
71642
|
__typename?: "OfferCollection";
|
|
70984
71643
|
id: string;
|
|
70985
71644
|
sellerId: string;
|
|
@@ -71001,7 +71660,7 @@ export type GetOffersQueryQuery = {
|
|
|
71001
71660
|
createdAt: string;
|
|
71002
71661
|
collaborators?: Array<string> | null;
|
|
71003
71662
|
} | null;
|
|
71004
|
-
};
|
|
71663
|
+
} | null;
|
|
71005
71664
|
exchangeToken: {
|
|
71006
71665
|
__typename?: "ExchangeToken";
|
|
71007
71666
|
id: string;
|
|
@@ -71044,6 +71703,7 @@ export type GetOffersQueryQuery = {
|
|
|
71044
71703
|
escalationResponsePeriod: string;
|
|
71045
71704
|
feeAmount: string;
|
|
71046
71705
|
buyerEscalationDeposit: string;
|
|
71706
|
+
mutualizerAddress: string;
|
|
71047
71707
|
};
|
|
71048
71708
|
metadata?:
|
|
71049
71709
|
| {
|
|
@@ -72094,7 +72754,10 @@ export type OfferFieldsFragment = {
|
|
|
72094
72754
|
id: string;
|
|
72095
72755
|
createdAt: string;
|
|
72096
72756
|
price: string;
|
|
72757
|
+
sellerId: string;
|
|
72097
72758
|
sellerDeposit: string;
|
|
72759
|
+
buyerId: string;
|
|
72760
|
+
creator: number;
|
|
72098
72761
|
protocolFee: string;
|
|
72099
72762
|
agentFee: string;
|
|
72100
72763
|
agentId: string;
|
|
@@ -72112,7 +72775,7 @@ export type OfferFieldsFragment = {
|
|
|
72112
72775
|
metadataHash: string;
|
|
72113
72776
|
voided: boolean;
|
|
72114
72777
|
voidedAt?: string | null;
|
|
72115
|
-
collectionIndex
|
|
72778
|
+
collectionIndex?: string | null;
|
|
72116
72779
|
disputeResolverId: string;
|
|
72117
72780
|
numberOfCommits: string;
|
|
72118
72781
|
numberOfRedemptions: string;
|
|
@@ -72131,6 +72794,7 @@ export type OfferFieldsFragment = {
|
|
|
72131
72794
|
completedDate?: string | null;
|
|
72132
72795
|
disputedDate?: string | null;
|
|
72133
72796
|
expired: boolean;
|
|
72797
|
+
mutualizerAddress: string;
|
|
72134
72798
|
dispute?: {
|
|
72135
72799
|
__typename?: "Dispute";
|
|
72136
72800
|
id: string;
|
|
@@ -72288,13 +72952,13 @@ export type OfferFieldsFragment = {
|
|
|
72288
72952
|
metadataHash: string;
|
|
72289
72953
|
voided: boolean;
|
|
72290
72954
|
voidedAt?: string | null;
|
|
72291
|
-
collectionIndex
|
|
72955
|
+
collectionIndex?: string | null;
|
|
72292
72956
|
disputeResolverId: string;
|
|
72293
72957
|
numberOfCommits: string;
|
|
72294
72958
|
numberOfRedemptions: string;
|
|
72295
72959
|
}> | null;
|
|
72296
72960
|
} | null;
|
|
72297
|
-
seller
|
|
72961
|
+
seller?: {
|
|
72298
72962
|
__typename?: "Seller";
|
|
72299
72963
|
id: string;
|
|
72300
72964
|
assistant: string;
|
|
@@ -72378,8 +73042,14 @@ export type OfferFieldsFragment = {
|
|
|
72378
73042
|
}> | null;
|
|
72379
73043
|
}> | null;
|
|
72380
73044
|
} | null;
|
|
72381
|
-
};
|
|
72382
|
-
|
|
73045
|
+
} | null;
|
|
73046
|
+
buyer?: {
|
|
73047
|
+
__typename?: "Buyer";
|
|
73048
|
+
id: string;
|
|
73049
|
+
wallet: string;
|
|
73050
|
+
active: boolean;
|
|
73051
|
+
} | null;
|
|
73052
|
+
collection?: {
|
|
72383
73053
|
__typename?: "OfferCollection";
|
|
72384
73054
|
id: string;
|
|
72385
73055
|
sellerId: string;
|
|
@@ -72401,7 +73071,7 @@ export type OfferFieldsFragment = {
|
|
|
72401
73071
|
createdAt: string;
|
|
72402
73072
|
collaborators?: Array<string> | null;
|
|
72403
73073
|
} | null;
|
|
72404
|
-
};
|
|
73074
|
+
} | null;
|
|
72405
73075
|
exchangeToken: {
|
|
72406
73076
|
__typename?: "ExchangeToken";
|
|
72407
73077
|
id: string;
|
|
@@ -72444,6 +73114,7 @@ export type OfferFieldsFragment = {
|
|
|
72444
73114
|
escalationResponsePeriod: string;
|
|
72445
73115
|
feeAmount: string;
|
|
72446
73116
|
buyerEscalationDeposit: string;
|
|
73117
|
+
mutualizerAddress: string;
|
|
72447
73118
|
};
|
|
72448
73119
|
metadata?:
|
|
72449
73120
|
| {
|
|
@@ -73385,7 +74056,10 @@ export type BaseOfferFieldsFragment = {
|
|
|
73385
74056
|
id: string;
|
|
73386
74057
|
createdAt: string;
|
|
73387
74058
|
price: string;
|
|
74059
|
+
sellerId: string;
|
|
73388
74060
|
sellerDeposit: string;
|
|
74061
|
+
buyerId: string;
|
|
74062
|
+
creator: number;
|
|
73389
74063
|
protocolFee: string;
|
|
73390
74064
|
agentFee: string;
|
|
73391
74065
|
agentId: string;
|
|
@@ -73403,7 +74077,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
73403
74077
|
metadataHash: string;
|
|
73404
74078
|
voided: boolean;
|
|
73405
74079
|
voidedAt?: string | null;
|
|
73406
|
-
collectionIndex
|
|
74080
|
+
collectionIndex?: string | null;
|
|
73407
74081
|
disputeResolverId: string;
|
|
73408
74082
|
numberOfCommits: string;
|
|
73409
74083
|
numberOfRedemptions: string;
|
|
@@ -73454,13 +74128,13 @@ export type BaseOfferFieldsFragment = {
|
|
|
73454
74128
|
metadataHash: string;
|
|
73455
74129
|
voided: boolean;
|
|
73456
74130
|
voidedAt?: string | null;
|
|
73457
|
-
collectionIndex
|
|
74131
|
+
collectionIndex?: string | null;
|
|
73458
74132
|
disputeResolverId: string;
|
|
73459
74133
|
numberOfCommits: string;
|
|
73460
74134
|
numberOfRedemptions: string;
|
|
73461
74135
|
}> | null;
|
|
73462
74136
|
} | null;
|
|
73463
|
-
seller
|
|
74137
|
+
seller?: {
|
|
73464
74138
|
__typename?: "Seller";
|
|
73465
74139
|
id: string;
|
|
73466
74140
|
assistant: string;
|
|
@@ -73544,8 +74218,14 @@ export type BaseOfferFieldsFragment = {
|
|
|
73544
74218
|
}> | null;
|
|
73545
74219
|
}> | null;
|
|
73546
74220
|
} | null;
|
|
73547
|
-
};
|
|
73548
|
-
|
|
74221
|
+
} | null;
|
|
74222
|
+
buyer?: {
|
|
74223
|
+
__typename?: "Buyer";
|
|
74224
|
+
id: string;
|
|
74225
|
+
wallet: string;
|
|
74226
|
+
active: boolean;
|
|
74227
|
+
} | null;
|
|
74228
|
+
collection?: {
|
|
73549
74229
|
__typename?: "OfferCollection";
|
|
73550
74230
|
id: string;
|
|
73551
74231
|
sellerId: string;
|
|
@@ -73567,7 +74247,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
73567
74247
|
createdAt: string;
|
|
73568
74248
|
collaborators?: Array<string> | null;
|
|
73569
74249
|
} | null;
|
|
73570
|
-
};
|
|
74250
|
+
} | null;
|
|
73571
74251
|
exchangeToken: {
|
|
73572
74252
|
__typename?: "ExchangeToken";
|
|
73573
74253
|
id: string;
|
|
@@ -73610,6 +74290,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
73610
74290
|
escalationResponsePeriod: string;
|
|
73611
74291
|
feeAmount: string;
|
|
73612
74292
|
buyerEscalationDeposit: string;
|
|
74293
|
+
mutualizerAddress: string;
|
|
73613
74294
|
};
|
|
73614
74295
|
metadata?:
|
|
73615
74296
|
| {
|
|
@@ -74717,6 +75398,13 @@ export const BaseConditionFieldsFragmentDoc = gql`
|
|
|
74717
75398
|
}
|
|
74718
75399
|
}
|
|
74719
75400
|
`;
|
|
75401
|
+
export const BaseBuyerFieldsFragmentDoc = gql`
|
|
75402
|
+
fragment BaseBuyerFields on Buyer {
|
|
75403
|
+
id
|
|
75404
|
+
wallet
|
|
75405
|
+
active
|
|
75406
|
+
}
|
|
75407
|
+
`;
|
|
74720
75408
|
export const BaseExchangeTokenFieldsFragmentDoc = gql`
|
|
74721
75409
|
fragment BaseExchangeTokenFields on ExchangeToken {
|
|
74722
75410
|
id
|
|
@@ -74762,6 +75450,7 @@ export const BaseDisputeResolutionTermsEntityFieldsFragmentDoc = gql`
|
|
|
74762
75450
|
escalationResponsePeriod
|
|
74763
75451
|
feeAmount
|
|
74764
75452
|
buyerEscalationDeposit
|
|
75453
|
+
mutualizerAddress
|
|
74765
75454
|
}
|
|
74766
75455
|
`;
|
|
74767
75456
|
export const BaseAnimationMetadataFieldsFragmentDoc = gql`
|
|
@@ -75001,7 +75690,10 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
75001
75690
|
id
|
|
75002
75691
|
createdAt
|
|
75003
75692
|
price
|
|
75693
|
+
sellerId
|
|
75004
75694
|
sellerDeposit
|
|
75695
|
+
buyerId
|
|
75696
|
+
creator
|
|
75005
75697
|
protocolFee
|
|
75006
75698
|
agentFee
|
|
75007
75699
|
agentId
|
|
@@ -75040,6 +75732,9 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
75040
75732
|
seller {
|
|
75041
75733
|
...BaseSellerFields
|
|
75042
75734
|
}
|
|
75735
|
+
buyer {
|
|
75736
|
+
...BaseBuyerFields
|
|
75737
|
+
}
|
|
75043
75738
|
collection {
|
|
75044
75739
|
...BaseOfferCollectionFields
|
|
75045
75740
|
}
|
|
@@ -75168,6 +75863,7 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
75168
75863
|
}
|
|
75169
75864
|
${BaseConditionFieldsFragmentDoc}
|
|
75170
75865
|
${BaseSellerFieldsFragmentDoc}
|
|
75866
|
+
${BaseBuyerFieldsFragmentDoc}
|
|
75171
75867
|
${BaseOfferCollectionFieldsFragmentDoc}
|
|
75172
75868
|
${BaseExchangeTokenFieldsFragmentDoc}
|
|
75173
75869
|
${BaseDisputeResolverFieldsFragmentDoc}
|
|
@@ -75243,13 +75939,6 @@ export const BaseDisputeFieldsFragmentDoc = gql`
|
|
|
75243
75939
|
timeout
|
|
75244
75940
|
}
|
|
75245
75941
|
`;
|
|
75246
|
-
export const BaseBuyerFieldsFragmentDoc = gql`
|
|
75247
|
-
fragment BaseBuyerFields on Buyer {
|
|
75248
|
-
id
|
|
75249
|
-
wallet
|
|
75250
|
-
active
|
|
75251
|
-
}
|
|
75252
|
-
`;
|
|
75253
75942
|
export const BaseExchangeFieldsFragmentDoc = gql`
|
|
75254
75943
|
fragment BaseExchangeFields on Exchange {
|
|
75255
75944
|
id
|
|
@@ -75264,6 +75953,7 @@ export const BaseExchangeFieldsFragmentDoc = gql`
|
|
|
75264
75953
|
completedDate
|
|
75265
75954
|
disputedDate
|
|
75266
75955
|
expired
|
|
75956
|
+
mutualizerAddress
|
|
75267
75957
|
dispute {
|
|
75268
75958
|
...BaseDisputeFields
|
|
75269
75959
|
}
|
|
@@ -76612,15 +77302,17 @@ export function getSdk(
|
|
|
76612
77302
|
return {
|
|
76613
77303
|
getSellerByIdQuery(
|
|
76614
77304
|
variables: GetSellerByIdQueryQueryVariables,
|
|
76615
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77305
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77306
|
+
signal?: RequestInit["signal"]
|
|
76616
77307
|
): Promise<GetSellerByIdQueryQuery> {
|
|
76617
77308
|
return withWrapper(
|
|
76618
77309
|
(wrappedRequestHeaders) =>
|
|
76619
|
-
client.request<GetSellerByIdQueryQuery>(
|
|
76620
|
-
GetSellerByIdQueryDocument,
|
|
77310
|
+
client.request<GetSellerByIdQueryQuery>({
|
|
77311
|
+
document: GetSellerByIdQueryDocument,
|
|
76621
77312
|
variables,
|
|
76622
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76623
|
-
|
|
77313
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77314
|
+
signal
|
|
77315
|
+
}),
|
|
76624
77316
|
"getSellerByIdQuery",
|
|
76625
77317
|
"query",
|
|
76626
77318
|
variables
|
|
@@ -76628,15 +77320,17 @@ export function getSdk(
|
|
|
76628
77320
|
},
|
|
76629
77321
|
getSellersQuery(
|
|
76630
77322
|
variables?: GetSellersQueryQueryVariables,
|
|
76631
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77323
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77324
|
+
signal?: RequestInit["signal"]
|
|
76632
77325
|
): Promise<GetSellersQueryQuery> {
|
|
76633
77326
|
return withWrapper(
|
|
76634
77327
|
(wrappedRequestHeaders) =>
|
|
76635
|
-
client.request<GetSellersQueryQuery>(
|
|
76636
|
-
GetSellersQueryDocument,
|
|
77328
|
+
client.request<GetSellersQueryQuery>({
|
|
77329
|
+
document: GetSellersQueryDocument,
|
|
76637
77330
|
variables,
|
|
76638
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76639
|
-
|
|
77331
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77332
|
+
signal
|
|
77333
|
+
}),
|
|
76640
77334
|
"getSellersQuery",
|
|
76641
77335
|
"query",
|
|
76642
77336
|
variables
|
|
@@ -76644,15 +77338,17 @@ export function getSdk(
|
|
|
76644
77338
|
},
|
|
76645
77339
|
getBuyerByIdQuery(
|
|
76646
77340
|
variables: GetBuyerByIdQueryQueryVariables,
|
|
76647
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77341
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77342
|
+
signal?: RequestInit["signal"]
|
|
76648
77343
|
): Promise<GetBuyerByIdQueryQuery> {
|
|
76649
77344
|
return withWrapper(
|
|
76650
77345
|
(wrappedRequestHeaders) =>
|
|
76651
|
-
client.request<GetBuyerByIdQueryQuery>(
|
|
76652
|
-
GetBuyerByIdQueryDocument,
|
|
77346
|
+
client.request<GetBuyerByIdQueryQuery>({
|
|
77347
|
+
document: GetBuyerByIdQueryDocument,
|
|
76653
77348
|
variables,
|
|
76654
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76655
|
-
|
|
77349
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77350
|
+
signal
|
|
77351
|
+
}),
|
|
76656
77352
|
"getBuyerByIdQuery",
|
|
76657
77353
|
"query",
|
|
76658
77354
|
variables
|
|
@@ -76660,15 +77356,17 @@ export function getSdk(
|
|
|
76660
77356
|
},
|
|
76661
77357
|
getBuyersQuery(
|
|
76662
77358
|
variables?: GetBuyersQueryQueryVariables,
|
|
76663
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77359
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77360
|
+
signal?: RequestInit["signal"]
|
|
76664
77361
|
): Promise<GetBuyersQueryQuery> {
|
|
76665
77362
|
return withWrapper(
|
|
76666
77363
|
(wrappedRequestHeaders) =>
|
|
76667
|
-
client.request<GetBuyersQueryQuery>(
|
|
76668
|
-
GetBuyersQueryDocument,
|
|
77364
|
+
client.request<GetBuyersQueryQuery>({
|
|
77365
|
+
document: GetBuyersQueryDocument,
|
|
76669
77366
|
variables,
|
|
76670
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76671
|
-
|
|
77367
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77368
|
+
signal
|
|
77369
|
+
}),
|
|
76672
77370
|
"getBuyersQuery",
|
|
76673
77371
|
"query",
|
|
76674
77372
|
variables
|
|
@@ -76676,15 +77374,17 @@ export function getSdk(
|
|
|
76676
77374
|
},
|
|
76677
77375
|
getDisputeResolverByIdQuery(
|
|
76678
77376
|
variables: GetDisputeResolverByIdQueryQueryVariables,
|
|
76679
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77377
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77378
|
+
signal?: RequestInit["signal"]
|
|
76680
77379
|
): Promise<GetDisputeResolverByIdQueryQuery> {
|
|
76681
77380
|
return withWrapper(
|
|
76682
77381
|
(wrappedRequestHeaders) =>
|
|
76683
|
-
client.request<GetDisputeResolverByIdQueryQuery>(
|
|
76684
|
-
GetDisputeResolverByIdQueryDocument,
|
|
77382
|
+
client.request<GetDisputeResolverByIdQueryQuery>({
|
|
77383
|
+
document: GetDisputeResolverByIdQueryDocument,
|
|
76685
77384
|
variables,
|
|
76686
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76687
|
-
|
|
77385
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77386
|
+
signal
|
|
77387
|
+
}),
|
|
76688
77388
|
"getDisputeResolverByIdQuery",
|
|
76689
77389
|
"query",
|
|
76690
77390
|
variables
|
|
@@ -76692,15 +77392,17 @@ export function getSdk(
|
|
|
76692
77392
|
},
|
|
76693
77393
|
getDisputeResolversQuery(
|
|
76694
77394
|
variables?: GetDisputeResolversQueryQueryVariables,
|
|
76695
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77395
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77396
|
+
signal?: RequestInit["signal"]
|
|
76696
77397
|
): Promise<GetDisputeResolversQueryQuery> {
|
|
76697
77398
|
return withWrapper(
|
|
76698
77399
|
(wrappedRequestHeaders) =>
|
|
76699
|
-
client.request<GetDisputeResolversQueryQuery>(
|
|
76700
|
-
GetDisputeResolversQueryDocument,
|
|
77400
|
+
client.request<GetDisputeResolversQueryQuery>({
|
|
77401
|
+
document: GetDisputeResolversQueryDocument,
|
|
76701
77402
|
variables,
|
|
76702
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76703
|
-
|
|
77403
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77404
|
+
signal
|
|
77405
|
+
}),
|
|
76704
77406
|
"getDisputeResolversQuery",
|
|
76705
77407
|
"query",
|
|
76706
77408
|
variables
|
|
@@ -76708,15 +77410,17 @@ export function getSdk(
|
|
|
76708
77410
|
},
|
|
76709
77411
|
getConditionalCommitAuthorizedEventLogsQuery(
|
|
76710
77412
|
variables?: GetConditionalCommitAuthorizedEventLogsQueryQueryVariables,
|
|
76711
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77413
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77414
|
+
signal?: RequestInit["signal"]
|
|
76712
77415
|
): Promise<GetConditionalCommitAuthorizedEventLogsQueryQuery> {
|
|
76713
77416
|
return withWrapper(
|
|
76714
77417
|
(wrappedRequestHeaders) =>
|
|
76715
|
-
client.request<GetConditionalCommitAuthorizedEventLogsQueryQuery>(
|
|
76716
|
-
GetConditionalCommitAuthorizedEventLogsQueryDocument,
|
|
77418
|
+
client.request<GetConditionalCommitAuthorizedEventLogsQueryQuery>({
|
|
77419
|
+
document: GetConditionalCommitAuthorizedEventLogsQueryDocument,
|
|
76717
77420
|
variables,
|
|
76718
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76719
|
-
|
|
77421
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77422
|
+
signal
|
|
77423
|
+
}),
|
|
76720
77424
|
"getConditionalCommitAuthorizedEventLogsQuery",
|
|
76721
77425
|
"query",
|
|
76722
77426
|
variables
|
|
@@ -76724,15 +77428,17 @@ export function getSdk(
|
|
|
76724
77428
|
},
|
|
76725
77429
|
getOfferCollectionsQuery(
|
|
76726
77430
|
variables?: GetOfferCollectionsQueryQueryVariables,
|
|
76727
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77431
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77432
|
+
signal?: RequestInit["signal"]
|
|
76728
77433
|
): Promise<GetOfferCollectionsQueryQuery> {
|
|
76729
77434
|
return withWrapper(
|
|
76730
77435
|
(wrappedRequestHeaders) =>
|
|
76731
|
-
client.request<GetOfferCollectionsQueryQuery>(
|
|
76732
|
-
GetOfferCollectionsQueryDocument,
|
|
77436
|
+
client.request<GetOfferCollectionsQueryQuery>({
|
|
77437
|
+
document: GetOfferCollectionsQueryDocument,
|
|
76733
77438
|
variables,
|
|
76734
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76735
|
-
|
|
77439
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77440
|
+
signal
|
|
77441
|
+
}),
|
|
76736
77442
|
"getOfferCollectionsQuery",
|
|
76737
77443
|
"query",
|
|
76738
77444
|
variables
|
|
@@ -76740,15 +77446,17 @@ export function getSdk(
|
|
|
76740
77446
|
},
|
|
76741
77447
|
getAuthTokenIds(
|
|
76742
77448
|
variables?: GetAuthTokenIdsQueryVariables,
|
|
76743
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77449
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77450
|
+
signal?: RequestInit["signal"]
|
|
76744
77451
|
): Promise<GetAuthTokenIdsQuery> {
|
|
76745
77452
|
return withWrapper(
|
|
76746
77453
|
(wrappedRequestHeaders) =>
|
|
76747
|
-
client.request<GetAuthTokenIdsQuery>(
|
|
76748
|
-
GetAuthTokenIdsDocument,
|
|
77454
|
+
client.request<GetAuthTokenIdsQuery>({
|
|
77455
|
+
document: GetAuthTokenIdsDocument,
|
|
76749
77456
|
variables,
|
|
76750
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76751
|
-
|
|
77457
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77458
|
+
signal
|
|
77459
|
+
}),
|
|
76752
77460
|
"getAuthTokenIds",
|
|
76753
77461
|
"query",
|
|
76754
77462
|
variables
|
|
@@ -76756,15 +77464,17 @@ export function getSdk(
|
|
|
76756
77464
|
},
|
|
76757
77465
|
getDisputeByIdQuery(
|
|
76758
77466
|
variables: GetDisputeByIdQueryQueryVariables,
|
|
76759
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77467
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77468
|
+
signal?: RequestInit["signal"]
|
|
76760
77469
|
): Promise<GetDisputeByIdQueryQuery> {
|
|
76761
77470
|
return withWrapper(
|
|
76762
77471
|
(wrappedRequestHeaders) =>
|
|
76763
|
-
client.request<GetDisputeByIdQueryQuery>(
|
|
76764
|
-
GetDisputeByIdQueryDocument,
|
|
77472
|
+
client.request<GetDisputeByIdQueryQuery>({
|
|
77473
|
+
document: GetDisputeByIdQueryDocument,
|
|
76765
77474
|
variables,
|
|
76766
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76767
|
-
|
|
77475
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77476
|
+
signal
|
|
77477
|
+
}),
|
|
76768
77478
|
"getDisputeByIdQuery",
|
|
76769
77479
|
"query",
|
|
76770
77480
|
variables
|
|
@@ -76772,15 +77482,17 @@ export function getSdk(
|
|
|
76772
77482
|
},
|
|
76773
77483
|
getDisputesQuery(
|
|
76774
77484
|
variables?: GetDisputesQueryQueryVariables,
|
|
76775
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77485
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77486
|
+
signal?: RequestInit["signal"]
|
|
76776
77487
|
): Promise<GetDisputesQueryQuery> {
|
|
76777
77488
|
return withWrapper(
|
|
76778
77489
|
(wrappedRequestHeaders) =>
|
|
76779
|
-
client.request<GetDisputesQueryQuery>(
|
|
76780
|
-
GetDisputesQueryDocument,
|
|
77490
|
+
client.request<GetDisputesQueryQuery>({
|
|
77491
|
+
document: GetDisputesQueryDocument,
|
|
76781
77492
|
variables,
|
|
76782
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76783
|
-
|
|
77493
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77494
|
+
signal
|
|
77495
|
+
}),
|
|
76784
77496
|
"getDisputesQuery",
|
|
76785
77497
|
"query",
|
|
76786
77498
|
variables
|
|
@@ -76788,15 +77500,17 @@ export function getSdk(
|
|
|
76788
77500
|
},
|
|
76789
77501
|
getExchangeTokenByIdQuery(
|
|
76790
77502
|
variables: GetExchangeTokenByIdQueryQueryVariables,
|
|
76791
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77503
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77504
|
+
signal?: RequestInit["signal"]
|
|
76792
77505
|
): Promise<GetExchangeTokenByIdQueryQuery> {
|
|
76793
77506
|
return withWrapper(
|
|
76794
77507
|
(wrappedRequestHeaders) =>
|
|
76795
|
-
client.request<GetExchangeTokenByIdQueryQuery>(
|
|
76796
|
-
GetExchangeTokenByIdQueryDocument,
|
|
77508
|
+
client.request<GetExchangeTokenByIdQueryQuery>({
|
|
77509
|
+
document: GetExchangeTokenByIdQueryDocument,
|
|
76797
77510
|
variables,
|
|
76798
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76799
|
-
|
|
77511
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77512
|
+
signal
|
|
77513
|
+
}),
|
|
76800
77514
|
"getExchangeTokenByIdQuery",
|
|
76801
77515
|
"query",
|
|
76802
77516
|
variables
|
|
@@ -76804,15 +77518,17 @@ export function getSdk(
|
|
|
76804
77518
|
},
|
|
76805
77519
|
getExchangeTokensQuery(
|
|
76806
77520
|
variables?: GetExchangeTokensQueryQueryVariables,
|
|
76807
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77521
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77522
|
+
signal?: RequestInit["signal"]
|
|
76808
77523
|
): Promise<GetExchangeTokensQueryQuery> {
|
|
76809
77524
|
return withWrapper(
|
|
76810
77525
|
(wrappedRequestHeaders) =>
|
|
76811
|
-
client.request<GetExchangeTokensQueryQuery>(
|
|
76812
|
-
GetExchangeTokensQueryDocument,
|
|
77526
|
+
client.request<GetExchangeTokensQueryQuery>({
|
|
77527
|
+
document: GetExchangeTokensQueryDocument,
|
|
76813
77528
|
variables,
|
|
76814
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76815
|
-
|
|
77529
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77530
|
+
signal
|
|
77531
|
+
}),
|
|
76816
77532
|
"getExchangeTokensQuery",
|
|
76817
77533
|
"query",
|
|
76818
77534
|
variables
|
|
@@ -76820,15 +77536,17 @@ export function getSdk(
|
|
|
76820
77536
|
},
|
|
76821
77537
|
getEventLogsQuery(
|
|
76822
77538
|
variables?: GetEventLogsQueryQueryVariables,
|
|
76823
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77539
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77540
|
+
signal?: RequestInit["signal"]
|
|
76824
77541
|
): Promise<GetEventLogsQueryQuery> {
|
|
76825
77542
|
return withWrapper(
|
|
76826
77543
|
(wrappedRequestHeaders) =>
|
|
76827
|
-
client.request<GetEventLogsQueryQuery>(
|
|
76828
|
-
GetEventLogsQueryDocument,
|
|
77544
|
+
client.request<GetEventLogsQueryQuery>({
|
|
77545
|
+
document: GetEventLogsQueryDocument,
|
|
76829
77546
|
variables,
|
|
76830
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76831
|
-
|
|
77547
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77548
|
+
signal
|
|
77549
|
+
}),
|
|
76832
77550
|
"getEventLogsQuery",
|
|
76833
77551
|
"query",
|
|
76834
77552
|
variables
|
|
@@ -76836,15 +77554,17 @@ export function getSdk(
|
|
|
76836
77554
|
},
|
|
76837
77555
|
getExchangeByIdQuery(
|
|
76838
77556
|
variables: GetExchangeByIdQueryQueryVariables,
|
|
76839
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77557
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77558
|
+
signal?: RequestInit["signal"]
|
|
76840
77559
|
): Promise<GetExchangeByIdQueryQuery> {
|
|
76841
77560
|
return withWrapper(
|
|
76842
77561
|
(wrappedRequestHeaders) =>
|
|
76843
|
-
client.request<GetExchangeByIdQueryQuery>(
|
|
76844
|
-
GetExchangeByIdQueryDocument,
|
|
77562
|
+
client.request<GetExchangeByIdQueryQuery>({
|
|
77563
|
+
document: GetExchangeByIdQueryDocument,
|
|
76845
77564
|
variables,
|
|
76846
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76847
|
-
|
|
77565
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77566
|
+
signal
|
|
77567
|
+
}),
|
|
76848
77568
|
"getExchangeByIdQuery",
|
|
76849
77569
|
"query",
|
|
76850
77570
|
variables
|
|
@@ -76852,15 +77572,17 @@ export function getSdk(
|
|
|
76852
77572
|
},
|
|
76853
77573
|
getExchangesQuery(
|
|
76854
77574
|
variables?: GetExchangesQueryQueryVariables,
|
|
76855
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77575
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77576
|
+
signal?: RequestInit["signal"]
|
|
76856
77577
|
): Promise<GetExchangesQueryQuery> {
|
|
76857
77578
|
return withWrapper(
|
|
76858
77579
|
(wrappedRequestHeaders) =>
|
|
76859
|
-
client.request<GetExchangesQueryQuery>(
|
|
76860
|
-
GetExchangesQueryDocument,
|
|
77580
|
+
client.request<GetExchangesQueryQuery>({
|
|
77581
|
+
document: GetExchangesQueryDocument,
|
|
76861
77582
|
variables,
|
|
76862
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76863
|
-
|
|
77583
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77584
|
+
signal
|
|
77585
|
+
}),
|
|
76864
77586
|
"getExchangesQuery",
|
|
76865
77587
|
"query",
|
|
76866
77588
|
variables
|
|
@@ -76868,13 +77590,16 @@ export function getSdk(
|
|
|
76868
77590
|
},
|
|
76869
77591
|
getFundsById(
|
|
76870
77592
|
variables: GetFundsByIdQueryVariables,
|
|
76871
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77593
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77594
|
+
signal?: RequestInit["signal"]
|
|
76872
77595
|
): Promise<GetFundsByIdQuery> {
|
|
76873
77596
|
return withWrapper(
|
|
76874
77597
|
(wrappedRequestHeaders) =>
|
|
76875
|
-
client.request<GetFundsByIdQuery>(
|
|
76876
|
-
|
|
76877
|
-
|
|
77598
|
+
client.request<GetFundsByIdQuery>({
|
|
77599
|
+
document: GetFundsByIdDocument,
|
|
77600
|
+
variables,
|
|
77601
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77602
|
+
signal
|
|
76878
77603
|
}),
|
|
76879
77604
|
"getFundsById",
|
|
76880
77605
|
"query",
|
|
@@ -76883,13 +77608,16 @@ export function getSdk(
|
|
|
76883
77608
|
},
|
|
76884
77609
|
getFunds(
|
|
76885
77610
|
variables?: GetFundsQueryVariables,
|
|
76886
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77611
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77612
|
+
signal?: RequestInit["signal"]
|
|
76887
77613
|
): Promise<GetFundsQuery> {
|
|
76888
77614
|
return withWrapper(
|
|
76889
77615
|
(wrappedRequestHeaders) =>
|
|
76890
|
-
client.request<GetFundsQuery>(
|
|
76891
|
-
|
|
76892
|
-
|
|
77616
|
+
client.request<GetFundsQuery>({
|
|
77617
|
+
document: GetFundsDocument,
|
|
77618
|
+
variables,
|
|
77619
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77620
|
+
signal
|
|
76893
77621
|
}),
|
|
76894
77622
|
"getFunds",
|
|
76895
77623
|
"query",
|
|
@@ -76898,15 +77626,17 @@ export function getSdk(
|
|
|
76898
77626
|
},
|
|
76899
77627
|
getBaseMetadataEntityByIdQuery(
|
|
76900
77628
|
variables: GetBaseMetadataEntityByIdQueryQueryVariables,
|
|
76901
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77629
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77630
|
+
signal?: RequestInit["signal"]
|
|
76902
77631
|
): Promise<GetBaseMetadataEntityByIdQueryQuery> {
|
|
76903
77632
|
return withWrapper(
|
|
76904
77633
|
(wrappedRequestHeaders) =>
|
|
76905
|
-
client.request<GetBaseMetadataEntityByIdQueryQuery>(
|
|
76906
|
-
GetBaseMetadataEntityByIdQueryDocument,
|
|
77634
|
+
client.request<GetBaseMetadataEntityByIdQueryQuery>({
|
|
77635
|
+
document: GetBaseMetadataEntityByIdQueryDocument,
|
|
76907
77636
|
variables,
|
|
76908
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76909
|
-
|
|
77637
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77638
|
+
signal
|
|
77639
|
+
}),
|
|
76910
77640
|
"getBaseMetadataEntityByIdQuery",
|
|
76911
77641
|
"query",
|
|
76912
77642
|
variables
|
|
@@ -76914,15 +77644,17 @@ export function getSdk(
|
|
|
76914
77644
|
},
|
|
76915
77645
|
getBaseMetadataEntitiesQuery(
|
|
76916
77646
|
variables?: GetBaseMetadataEntitiesQueryQueryVariables,
|
|
76917
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77647
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77648
|
+
signal?: RequestInit["signal"]
|
|
76918
77649
|
): Promise<GetBaseMetadataEntitiesQueryQuery> {
|
|
76919
77650
|
return withWrapper(
|
|
76920
77651
|
(wrappedRequestHeaders) =>
|
|
76921
|
-
client.request<GetBaseMetadataEntitiesQueryQuery>(
|
|
76922
|
-
GetBaseMetadataEntitiesQueryDocument,
|
|
77652
|
+
client.request<GetBaseMetadataEntitiesQueryQuery>({
|
|
77653
|
+
document: GetBaseMetadataEntitiesQueryDocument,
|
|
76923
77654
|
variables,
|
|
76924
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76925
|
-
|
|
77655
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77656
|
+
signal
|
|
77657
|
+
}),
|
|
76926
77658
|
"getBaseMetadataEntitiesQuery",
|
|
76927
77659
|
"query",
|
|
76928
77660
|
variables
|
|
@@ -76930,15 +77662,17 @@ export function getSdk(
|
|
|
76930
77662
|
},
|
|
76931
77663
|
getBundleMetadataEntityByIdQuery(
|
|
76932
77664
|
variables: GetBundleMetadataEntityByIdQueryQueryVariables,
|
|
76933
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77665
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77666
|
+
signal?: RequestInit["signal"]
|
|
76934
77667
|
): Promise<GetBundleMetadataEntityByIdQueryQuery> {
|
|
76935
77668
|
return withWrapper(
|
|
76936
77669
|
(wrappedRequestHeaders) =>
|
|
76937
|
-
client.request<GetBundleMetadataEntityByIdQueryQuery>(
|
|
76938
|
-
GetBundleMetadataEntityByIdQueryDocument,
|
|
77670
|
+
client.request<GetBundleMetadataEntityByIdQueryQuery>({
|
|
77671
|
+
document: GetBundleMetadataEntityByIdQueryDocument,
|
|
76939
77672
|
variables,
|
|
76940
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76941
|
-
|
|
77673
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77674
|
+
signal
|
|
77675
|
+
}),
|
|
76942
77676
|
"getBundleMetadataEntityByIdQuery",
|
|
76943
77677
|
"query",
|
|
76944
77678
|
variables
|
|
@@ -76946,15 +77680,17 @@ export function getSdk(
|
|
|
76946
77680
|
},
|
|
76947
77681
|
getBundleMetadataEntitiesQuery(
|
|
76948
77682
|
variables?: GetBundleMetadataEntitiesQueryQueryVariables,
|
|
76949
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77683
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77684
|
+
signal?: RequestInit["signal"]
|
|
76950
77685
|
): Promise<GetBundleMetadataEntitiesQueryQuery> {
|
|
76951
77686
|
return withWrapper(
|
|
76952
77687
|
(wrappedRequestHeaders) =>
|
|
76953
|
-
client.request<GetBundleMetadataEntitiesQueryQuery>(
|
|
76954
|
-
GetBundleMetadataEntitiesQueryDocument,
|
|
77688
|
+
client.request<GetBundleMetadataEntitiesQueryQuery>({
|
|
77689
|
+
document: GetBundleMetadataEntitiesQueryDocument,
|
|
76955
77690
|
variables,
|
|
76956
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76957
|
-
|
|
77691
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77692
|
+
signal
|
|
77693
|
+
}),
|
|
76958
77694
|
"getBundleMetadataEntitiesQuery",
|
|
76959
77695
|
"query",
|
|
76960
77696
|
variables
|
|
@@ -76962,15 +77698,17 @@ export function getSdk(
|
|
|
76962
77698
|
},
|
|
76963
77699
|
getProductV1BrandsQuery(
|
|
76964
77700
|
variables?: GetProductV1BrandsQueryQueryVariables,
|
|
76965
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77701
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77702
|
+
signal?: RequestInit["signal"]
|
|
76966
77703
|
): Promise<GetProductV1BrandsQueryQuery> {
|
|
76967
77704
|
return withWrapper(
|
|
76968
77705
|
(wrappedRequestHeaders) =>
|
|
76969
|
-
client.request<GetProductV1BrandsQueryQuery>(
|
|
76970
|
-
GetProductV1BrandsQueryDocument,
|
|
77706
|
+
client.request<GetProductV1BrandsQueryQuery>({
|
|
77707
|
+
document: GetProductV1BrandsQueryDocument,
|
|
76971
77708
|
variables,
|
|
76972
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76973
|
-
|
|
77709
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77710
|
+
signal
|
|
77711
|
+
}),
|
|
76974
77712
|
"getProductV1BrandsQuery",
|
|
76975
77713
|
"query",
|
|
76976
77714
|
variables
|
|
@@ -76978,15 +77716,17 @@ export function getSdk(
|
|
|
76978
77716
|
},
|
|
76979
77717
|
getProductV1ProductsQuery(
|
|
76980
77718
|
variables?: GetProductV1ProductsQueryQueryVariables,
|
|
76981
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77719
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77720
|
+
signal?: RequestInit["signal"]
|
|
76982
77721
|
): Promise<GetProductV1ProductsQueryQuery> {
|
|
76983
77722
|
return withWrapper(
|
|
76984
77723
|
(wrappedRequestHeaders) =>
|
|
76985
|
-
client.request<GetProductV1ProductsQueryQuery>(
|
|
76986
|
-
GetProductV1ProductsQueryDocument,
|
|
77724
|
+
client.request<GetProductV1ProductsQueryQuery>({
|
|
77725
|
+
document: GetProductV1ProductsQueryDocument,
|
|
76987
77726
|
variables,
|
|
76988
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
76989
|
-
|
|
77727
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77728
|
+
signal
|
|
77729
|
+
}),
|
|
76990
77730
|
"getProductV1ProductsQuery",
|
|
76991
77731
|
"query",
|
|
76992
77732
|
variables
|
|
@@ -76994,15 +77734,17 @@ export function getSdk(
|
|
|
76994
77734
|
},
|
|
76995
77735
|
getProductV1ProductsWithVariantsQuery(
|
|
76996
77736
|
variables?: GetProductV1ProductsWithVariantsQueryQueryVariables,
|
|
76997
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77737
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77738
|
+
signal?: RequestInit["signal"]
|
|
76998
77739
|
): Promise<GetProductV1ProductsWithVariantsQueryQuery> {
|
|
76999
77740
|
return withWrapper(
|
|
77000
77741
|
(wrappedRequestHeaders) =>
|
|
77001
|
-
client.request<GetProductV1ProductsWithVariantsQueryQuery>(
|
|
77002
|
-
GetProductV1ProductsWithVariantsQueryDocument,
|
|
77742
|
+
client.request<GetProductV1ProductsWithVariantsQueryQuery>({
|
|
77743
|
+
document: GetProductV1ProductsWithVariantsQueryDocument,
|
|
77003
77744
|
variables,
|
|
77004
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
77005
|
-
|
|
77745
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77746
|
+
signal
|
|
77747
|
+
}),
|
|
77006
77748
|
"getProductV1ProductsWithVariantsQuery",
|
|
77007
77749
|
"query",
|
|
77008
77750
|
variables
|
|
@@ -77010,15 +77752,17 @@ export function getSdk(
|
|
|
77010
77752
|
},
|
|
77011
77753
|
getAllProductsWithNotVoidedVariantsQuery(
|
|
77012
77754
|
variables?: GetAllProductsWithNotVoidedVariantsQueryQueryVariables,
|
|
77013
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77755
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77756
|
+
signal?: RequestInit["signal"]
|
|
77014
77757
|
): Promise<GetAllProductsWithNotVoidedVariantsQueryQuery> {
|
|
77015
77758
|
return withWrapper(
|
|
77016
77759
|
(wrappedRequestHeaders) =>
|
|
77017
|
-
client.request<GetAllProductsWithNotVoidedVariantsQueryQuery>(
|
|
77018
|
-
GetAllProductsWithNotVoidedVariantsQueryDocument,
|
|
77760
|
+
client.request<GetAllProductsWithNotVoidedVariantsQueryQuery>({
|
|
77761
|
+
document: GetAllProductsWithNotVoidedVariantsQueryDocument,
|
|
77019
77762
|
variables,
|
|
77020
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
77021
|
-
|
|
77763
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77764
|
+
signal
|
|
77765
|
+
}),
|
|
77022
77766
|
"getAllProductsWithNotVoidedVariantsQuery",
|
|
77023
77767
|
"query",
|
|
77024
77768
|
variables
|
|
@@ -77026,15 +77770,17 @@ export function getSdk(
|
|
|
77026
77770
|
},
|
|
77027
77771
|
getProductV1CategoriesQuery(
|
|
77028
77772
|
variables?: GetProductV1CategoriesQueryQueryVariables,
|
|
77029
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77773
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77774
|
+
signal?: RequestInit["signal"]
|
|
77030
77775
|
): Promise<GetProductV1CategoriesQueryQuery> {
|
|
77031
77776
|
return withWrapper(
|
|
77032
77777
|
(wrappedRequestHeaders) =>
|
|
77033
|
-
client.request<GetProductV1CategoriesQueryQuery>(
|
|
77034
|
-
GetProductV1CategoriesQueryDocument,
|
|
77778
|
+
client.request<GetProductV1CategoriesQueryQuery>({
|
|
77779
|
+
document: GetProductV1CategoriesQueryDocument,
|
|
77035
77780
|
variables,
|
|
77036
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
77037
|
-
|
|
77781
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77782
|
+
signal
|
|
77783
|
+
}),
|
|
77038
77784
|
"getProductV1CategoriesQuery",
|
|
77039
77785
|
"query",
|
|
77040
77786
|
variables
|
|
@@ -77042,15 +77788,17 @@ export function getSdk(
|
|
|
77042
77788
|
},
|
|
77043
77789
|
getProductV1MetadataEntityByIdQuery(
|
|
77044
77790
|
variables: GetProductV1MetadataEntityByIdQueryQueryVariables,
|
|
77045
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77791
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77792
|
+
signal?: RequestInit["signal"]
|
|
77046
77793
|
): Promise<GetProductV1MetadataEntityByIdQueryQuery> {
|
|
77047
77794
|
return withWrapper(
|
|
77048
77795
|
(wrappedRequestHeaders) =>
|
|
77049
|
-
client.request<GetProductV1MetadataEntityByIdQueryQuery>(
|
|
77050
|
-
GetProductV1MetadataEntityByIdQueryDocument,
|
|
77796
|
+
client.request<GetProductV1MetadataEntityByIdQueryQuery>({
|
|
77797
|
+
document: GetProductV1MetadataEntityByIdQueryDocument,
|
|
77051
77798
|
variables,
|
|
77052
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
77053
|
-
|
|
77799
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77800
|
+
signal
|
|
77801
|
+
}),
|
|
77054
77802
|
"getProductV1MetadataEntityByIdQuery",
|
|
77055
77803
|
"query",
|
|
77056
77804
|
variables
|
|
@@ -77058,15 +77806,17 @@ export function getSdk(
|
|
|
77058
77806
|
},
|
|
77059
77807
|
getProductV1MetadataEntitiesQuery(
|
|
77060
77808
|
variables?: GetProductV1MetadataEntitiesQueryQueryVariables,
|
|
77061
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77809
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77810
|
+
signal?: RequestInit["signal"]
|
|
77062
77811
|
): Promise<GetProductV1MetadataEntitiesQueryQuery> {
|
|
77063
77812
|
return withWrapper(
|
|
77064
77813
|
(wrappedRequestHeaders) =>
|
|
77065
|
-
client.request<GetProductV1MetadataEntitiesQueryQuery>(
|
|
77066
|
-
GetProductV1MetadataEntitiesQueryDocument,
|
|
77814
|
+
client.request<GetProductV1MetadataEntitiesQueryQuery>({
|
|
77815
|
+
document: GetProductV1MetadataEntitiesQueryDocument,
|
|
77067
77816
|
variables,
|
|
77068
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
77069
|
-
|
|
77817
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77818
|
+
signal
|
|
77819
|
+
}),
|
|
77070
77820
|
"getProductV1MetadataEntitiesQuery",
|
|
77071
77821
|
"query",
|
|
77072
77822
|
variables
|
|
@@ -77074,15 +77824,17 @@ export function getSdk(
|
|
|
77074
77824
|
},
|
|
77075
77825
|
getOfferByIdQuery(
|
|
77076
77826
|
variables: GetOfferByIdQueryQueryVariables,
|
|
77077
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77827
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77828
|
+
signal?: RequestInit["signal"]
|
|
77078
77829
|
): Promise<GetOfferByIdQueryQuery> {
|
|
77079
77830
|
return withWrapper(
|
|
77080
77831
|
(wrappedRequestHeaders) =>
|
|
77081
|
-
client.request<GetOfferByIdQueryQuery>(
|
|
77082
|
-
GetOfferByIdQueryDocument,
|
|
77832
|
+
client.request<GetOfferByIdQueryQuery>({
|
|
77833
|
+
document: GetOfferByIdQueryDocument,
|
|
77083
77834
|
variables,
|
|
77084
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
77085
|
-
|
|
77835
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77836
|
+
signal
|
|
77837
|
+
}),
|
|
77086
77838
|
"getOfferByIdQuery",
|
|
77087
77839
|
"query",
|
|
77088
77840
|
variables
|
|
@@ -77090,15 +77842,17 @@ export function getSdk(
|
|
|
77090
77842
|
},
|
|
77091
77843
|
getOffersQuery(
|
|
77092
77844
|
variables?: GetOffersQueryQueryVariables,
|
|
77093
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77845
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77846
|
+
signal?: RequestInit["signal"]
|
|
77094
77847
|
): Promise<GetOffersQueryQuery> {
|
|
77095
77848
|
return withWrapper(
|
|
77096
77849
|
(wrappedRequestHeaders) =>
|
|
77097
|
-
client.request<GetOffersQueryQuery>(
|
|
77098
|
-
GetOffersQueryDocument,
|
|
77850
|
+
client.request<GetOffersQueryQuery>({
|
|
77851
|
+
document: GetOffersQueryDocument,
|
|
77099
77852
|
variables,
|
|
77100
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
77101
|
-
|
|
77853
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77854
|
+
signal
|
|
77855
|
+
}),
|
|
77102
77856
|
"getOffersQuery",
|
|
77103
77857
|
"query",
|
|
77104
77858
|
variables
|
|
@@ -77106,15 +77860,17 @@ export function getSdk(
|
|
|
77106
77860
|
},
|
|
77107
77861
|
getOffersMediaQuery(
|
|
77108
77862
|
variables?: GetOffersMediaQueryQueryVariables,
|
|
77109
|
-
requestHeaders?: GraphQLClientRequestHeaders
|
|
77863
|
+
requestHeaders?: GraphQLClientRequestHeaders,
|
|
77864
|
+
signal?: RequestInit["signal"]
|
|
77110
77865
|
): Promise<GetOffersMediaQueryQuery> {
|
|
77111
77866
|
return withWrapper(
|
|
77112
77867
|
(wrappedRequestHeaders) =>
|
|
77113
|
-
client.request<GetOffersMediaQueryQuery>(
|
|
77114
|
-
GetOffersMediaQueryDocument,
|
|
77868
|
+
client.request<GetOffersMediaQueryQuery>({
|
|
77869
|
+
document: GetOffersMediaQueryDocument,
|
|
77115
77870
|
variables,
|
|
77116
|
-
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
77117
|
-
|
|
77871
|
+
requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders },
|
|
77872
|
+
signal
|
|
77873
|
+
}),
|
|
77118
77874
|
"getOffersMediaQuery",
|
|
77119
77875
|
"query",
|
|
77120
77876
|
variables
|