@bosonprotocol/core-sdk 1.40.5 → 1.41.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/subgraph.d.ts +268 -0
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +33 -3
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +268 -0
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +30 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +2 -2
- package/src/exchanges/queries.graphql +3 -0
- package/src/subgraph.ts +278 -0
package/src/subgraph.ts
CHANGED
|
@@ -2670,6 +2670,7 @@ export type Exchange = {
|
|
|
2670
2670
|
finalizedDate?: Maybe<Scalars["BigInt"]["output"]>;
|
|
2671
2671
|
id: Scalars["ID"]["output"];
|
|
2672
2672
|
offer: Offer;
|
|
2673
|
+
protocolFeeCollected?: Maybe<ProtocolFeeCollected>;
|
|
2673
2674
|
redeemedDate?: Maybe<Scalars["BigInt"]["output"]>;
|
|
2674
2675
|
revokedDate?: Maybe<Scalars["BigInt"]["output"]>;
|
|
2675
2676
|
seller: Seller;
|
|
@@ -3094,6 +3095,7 @@ export type Exchange_Filter = {
|
|
|
3094
3095
|
offer_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
3095
3096
|
offer_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
3096
3097
|
or?: InputMaybe<Array<InputMaybe<Exchange_Filter>>>;
|
|
3098
|
+
protocolFeeCollected_?: InputMaybe<ProtocolFeeCollected_Filter>;
|
|
3097
3099
|
redeemedDate?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
3098
3100
|
redeemedDate_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
3099
3101
|
redeemedDate_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
@@ -3208,6 +3210,12 @@ export enum Exchange_OrderBy {
|
|
|
3208
3210
|
OFFER__VOUCHERREDEEMABLEFROMDATE = "offer__voucherRedeemableFromDate",
|
|
3209
3211
|
OFFER__VOUCHERREDEEMABLEUNTILDATE = "offer__voucherRedeemableUntilDate",
|
|
3210
3212
|
OFFER__VOUCHERVALIDDURATION = "offer__voucherValidDuration",
|
|
3213
|
+
PROTOCOLFEECOLLECTED = "protocolFeeCollected",
|
|
3214
|
+
PROTOCOLFEECOLLECTED__AMOUNT = "protocolFeeCollected__amount",
|
|
3215
|
+
PROTOCOLFEECOLLECTED__EXCHANGEID = "protocolFeeCollected__exchangeId",
|
|
3216
|
+
PROTOCOLFEECOLLECTED__EXCHANGETOKEN = "protocolFeeCollected__exchangeToken",
|
|
3217
|
+
PROTOCOLFEECOLLECTED__EXECUTEDBY = "protocolFeeCollected__executedBy",
|
|
3218
|
+
PROTOCOLFEECOLLECTED__ID = "protocolFeeCollected__id",
|
|
3211
3219
|
REDEEMEDDATE = "redeemedDate",
|
|
3212
3220
|
REVOKEDDATE = "revokedDate",
|
|
3213
3221
|
SELLER = "seller",
|
|
@@ -10295,6 +10303,109 @@ export enum ProductV1Variation_OrderBy {
|
|
|
10295
10303
|
TYPE = "type"
|
|
10296
10304
|
}
|
|
10297
10305
|
|
|
10306
|
+
export type ProtocolFeeCollected = {
|
|
10307
|
+
__typename?: "ProtocolFeeCollected";
|
|
10308
|
+
amount: Scalars["BigInt"]["output"];
|
|
10309
|
+
exchange: Exchange;
|
|
10310
|
+
exchangeId: Scalars["BigInt"]["output"];
|
|
10311
|
+
exchangeToken: Scalars["Bytes"]["output"];
|
|
10312
|
+
executedBy: Scalars["Bytes"]["output"];
|
|
10313
|
+
id: Scalars["ID"]["output"];
|
|
10314
|
+
};
|
|
10315
|
+
|
|
10316
|
+
export type ProtocolFeeCollected_Filter = {
|
|
10317
|
+
/** Filter for the block changed event. */
|
|
10318
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
10319
|
+
amount?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10320
|
+
amount_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10321
|
+
amount_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10322
|
+
amount_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
10323
|
+
amount_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10324
|
+
amount_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10325
|
+
amount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10326
|
+
amount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
10327
|
+
and?: InputMaybe<Array<InputMaybe<ProtocolFeeCollected_Filter>>>;
|
|
10328
|
+
exchange?: InputMaybe<Scalars["String"]["input"]>;
|
|
10329
|
+
exchangeId?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10330
|
+
exchangeId_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10331
|
+
exchangeId_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10332
|
+
exchangeId_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
10333
|
+
exchangeId_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10334
|
+
exchangeId_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10335
|
+
exchangeId_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
10336
|
+
exchangeId_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
10337
|
+
exchangeToken?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10338
|
+
exchangeToken_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10339
|
+
exchangeToken_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10340
|
+
exchangeToken_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10341
|
+
exchangeToken_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
10342
|
+
exchangeToken_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10343
|
+
exchangeToken_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10344
|
+
exchangeToken_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10345
|
+
exchangeToken_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10346
|
+
exchangeToken_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
10347
|
+
exchange_?: InputMaybe<Exchange_Filter>;
|
|
10348
|
+
exchange_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
10349
|
+
exchange_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
10350
|
+
exchange_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
10351
|
+
exchange_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
10352
|
+
exchange_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
10353
|
+
exchange_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
10354
|
+
exchange_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
10355
|
+
exchange_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
10356
|
+
exchange_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
10357
|
+
exchange_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
10358
|
+
exchange_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
10359
|
+
exchange_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
10360
|
+
exchange_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
10361
|
+
exchange_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
10362
|
+
exchange_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
10363
|
+
exchange_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
10364
|
+
exchange_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
10365
|
+
exchange_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
10366
|
+
exchange_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
10367
|
+
executedBy?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10368
|
+
executedBy_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10369
|
+
executedBy_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10370
|
+
executedBy_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10371
|
+
executedBy_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
10372
|
+
executedBy_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10373
|
+
executedBy_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10374
|
+
executedBy_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10375
|
+
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10376
|
+
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
10377
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
10378
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
10379
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
10380
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
10381
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
10382
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
10383
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
10384
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
10385
|
+
or?: InputMaybe<Array<InputMaybe<ProtocolFeeCollected_Filter>>>;
|
|
10386
|
+
};
|
|
10387
|
+
|
|
10388
|
+
export enum ProtocolFeeCollected_OrderBy {
|
|
10389
|
+
AMOUNT = "amount",
|
|
10390
|
+
EXCHANGE = "exchange",
|
|
10391
|
+
EXCHANGEID = "exchangeId",
|
|
10392
|
+
EXCHANGETOKEN = "exchangeToken",
|
|
10393
|
+
EXCHANGE__CANCELLEDDATE = "exchange__cancelledDate",
|
|
10394
|
+
EXCHANGE__COMMITTEDDATE = "exchange__committedDate",
|
|
10395
|
+
EXCHANGE__COMPLETEDDATE = "exchange__completedDate",
|
|
10396
|
+
EXCHANGE__DISPUTED = "exchange__disputed",
|
|
10397
|
+
EXCHANGE__DISPUTEDDATE = "exchange__disputedDate",
|
|
10398
|
+
EXCHANGE__EXPIRED = "exchange__expired",
|
|
10399
|
+
EXCHANGE__FINALIZEDDATE = "exchange__finalizedDate",
|
|
10400
|
+
EXCHANGE__ID = "exchange__id",
|
|
10401
|
+
EXCHANGE__REDEEMEDDATE = "exchange__redeemedDate",
|
|
10402
|
+
EXCHANGE__REVOKEDDATE = "exchange__revokedDate",
|
|
10403
|
+
EXCHANGE__STATE = "exchange__state",
|
|
10404
|
+
EXCHANGE__VALIDUNTILDATE = "exchange__validUntilDate",
|
|
10405
|
+
EXECUTEDBY = "executedBy",
|
|
10406
|
+
ID = "id"
|
|
10407
|
+
}
|
|
10408
|
+
|
|
10298
10409
|
export type Query = {
|
|
10299
10410
|
__typename?: "Query";
|
|
10300
10411
|
/** Access to subgraph metadata */
|
|
@@ -10390,6 +10501,8 @@ export type Query = {
|
|
|
10390
10501
|
productV1Variants: Array<ProductV1Variant>;
|
|
10391
10502
|
productV1Variation?: Maybe<ProductV1Variation>;
|
|
10392
10503
|
productV1Variations: Array<ProductV1Variation>;
|
|
10504
|
+
protocolFeeCollected?: Maybe<ProtocolFeeCollected>;
|
|
10505
|
+
protocolFeeCollecteds: Array<ProtocolFeeCollected>;
|
|
10393
10506
|
rangeEntities: Array<RangeEntity>;
|
|
10394
10507
|
rangeEntity?: Maybe<RangeEntity>;
|
|
10395
10508
|
royaltyInfo?: Maybe<RoyaltyInfo>;
|
|
@@ -11159,6 +11272,22 @@ export type QueryProductV1VariationsArgs = {
|
|
|
11159
11272
|
where?: InputMaybe<ProductV1Variation_Filter>;
|
|
11160
11273
|
};
|
|
11161
11274
|
|
|
11275
|
+
export type QueryProtocolFeeCollectedArgs = {
|
|
11276
|
+
block?: InputMaybe<Block_Height>;
|
|
11277
|
+
id: Scalars["ID"]["input"];
|
|
11278
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
11279
|
+
};
|
|
11280
|
+
|
|
11281
|
+
export type QueryProtocolFeeCollectedsArgs = {
|
|
11282
|
+
block?: InputMaybe<Block_Height>;
|
|
11283
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11284
|
+
orderBy?: InputMaybe<ProtocolFeeCollected_OrderBy>;
|
|
11285
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
11286
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11287
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
11288
|
+
where?: InputMaybe<ProtocolFeeCollected_Filter>;
|
|
11289
|
+
};
|
|
11290
|
+
|
|
11162
11291
|
export type QueryRangeEntitiesArgs = {
|
|
11163
11292
|
block?: InputMaybe<Block_Height>;
|
|
11164
11293
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -13021,6 +13150,8 @@ export type Subscription = {
|
|
|
13021
13150
|
productV1Variants: Array<ProductV1Variant>;
|
|
13022
13151
|
productV1Variation?: Maybe<ProductV1Variation>;
|
|
13023
13152
|
productV1Variations: Array<ProductV1Variation>;
|
|
13153
|
+
protocolFeeCollected?: Maybe<ProtocolFeeCollected>;
|
|
13154
|
+
protocolFeeCollecteds: Array<ProtocolFeeCollected>;
|
|
13024
13155
|
rangeEntities: Array<RangeEntity>;
|
|
13025
13156
|
rangeEntity?: Maybe<RangeEntity>;
|
|
13026
13157
|
royaltyInfo?: Maybe<RoyaltyInfo>;
|
|
@@ -13790,6 +13921,22 @@ export type SubscriptionProductV1VariationsArgs = {
|
|
|
13790
13921
|
where?: InputMaybe<ProductV1Variation_Filter>;
|
|
13791
13922
|
};
|
|
13792
13923
|
|
|
13924
|
+
export type SubscriptionProtocolFeeCollectedArgs = {
|
|
13925
|
+
block?: InputMaybe<Block_Height>;
|
|
13926
|
+
id: Scalars["ID"]["input"];
|
|
13927
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
13928
|
+
};
|
|
13929
|
+
|
|
13930
|
+
export type SubscriptionProtocolFeeCollectedsArgs = {
|
|
13931
|
+
block?: InputMaybe<Block_Height>;
|
|
13932
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13933
|
+
orderBy?: InputMaybe<ProtocolFeeCollected_OrderBy>;
|
|
13934
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
13935
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13936
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
13937
|
+
where?: InputMaybe<ProtocolFeeCollected_Filter>;
|
|
13938
|
+
};
|
|
13939
|
+
|
|
13793
13940
|
export type SubscriptionRangeEntitiesArgs = {
|
|
13794
13941
|
block?: InputMaybe<Block_Height>;
|
|
13795
13942
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -15715,6 +15862,10 @@ export type GetSellerByIdQueryQuery = {
|
|
|
15715
15862
|
}> | null;
|
|
15716
15863
|
} | null;
|
|
15717
15864
|
};
|
|
15865
|
+
protocolFeeCollected?: {
|
|
15866
|
+
__typename?: "ProtocolFeeCollected";
|
|
15867
|
+
amount: string;
|
|
15868
|
+
} | null;
|
|
15718
15869
|
}>;
|
|
15719
15870
|
logs?: Array<
|
|
15720
15871
|
| {
|
|
@@ -17249,6 +17400,10 @@ export type GetSellersQueryQuery = {
|
|
|
17249
17400
|
}> | null;
|
|
17250
17401
|
} | null;
|
|
17251
17402
|
};
|
|
17403
|
+
protocolFeeCollected?: {
|
|
17404
|
+
__typename?: "ProtocolFeeCollected";
|
|
17405
|
+
amount: string;
|
|
17406
|
+
} | null;
|
|
17252
17407
|
}>;
|
|
17253
17408
|
logs?: Array<
|
|
17254
17409
|
| {
|
|
@@ -17558,6 +17713,10 @@ export type GetBuyerByIdQueryQuery = {
|
|
|
17558
17713
|
}> | null;
|
|
17559
17714
|
} | null;
|
|
17560
17715
|
};
|
|
17716
|
+
protocolFeeCollected?: {
|
|
17717
|
+
__typename?: "ProtocolFeeCollected";
|
|
17718
|
+
amount: string;
|
|
17719
|
+
} | null;
|
|
17561
17720
|
}>;
|
|
17562
17721
|
logs?: Array<
|
|
17563
17722
|
| {
|
|
@@ -17805,6 +17964,10 @@ export type GetBuyersQueryQuery = {
|
|
|
17805
17964
|
}> | null;
|
|
17806
17965
|
} | null;
|
|
17807
17966
|
};
|
|
17967
|
+
protocolFeeCollected?: {
|
|
17968
|
+
__typename?: "ProtocolFeeCollected";
|
|
17969
|
+
amount: string;
|
|
17970
|
+
} | null;
|
|
17808
17971
|
}>;
|
|
17809
17972
|
logs?: Array<
|
|
17810
17973
|
| {
|
|
@@ -24468,6 +24631,10 @@ export type SellerFieldsFragment = {
|
|
|
24468
24631
|
}> | null;
|
|
24469
24632
|
} | null;
|
|
24470
24633
|
};
|
|
24634
|
+
protocolFeeCollected?: {
|
|
24635
|
+
__typename?: "ProtocolFeeCollected";
|
|
24636
|
+
amount: string;
|
|
24637
|
+
} | null;
|
|
24471
24638
|
}>;
|
|
24472
24639
|
logs?: Array<
|
|
24473
24640
|
| {
|
|
@@ -24903,6 +25070,10 @@ export type BuyerFieldsFragment = {
|
|
|
24903
25070
|
}> | null;
|
|
24904
25071
|
} | null;
|
|
24905
25072
|
};
|
|
25073
|
+
protocolFeeCollected?: {
|
|
25074
|
+
__typename?: "ProtocolFeeCollected";
|
|
25075
|
+
amount: string;
|
|
25076
|
+
} | null;
|
|
24906
25077
|
}>;
|
|
24907
25078
|
logs?: Array<
|
|
24908
25079
|
| {
|
|
@@ -26473,6 +26644,10 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
26473
26644
|
}> | null;
|
|
26474
26645
|
} | null;
|
|
26475
26646
|
};
|
|
26647
|
+
protocolFeeCollected?: {
|
|
26648
|
+
__typename?: "ProtocolFeeCollected";
|
|
26649
|
+
amount: string;
|
|
26650
|
+
} | null;
|
|
26476
26651
|
};
|
|
26477
26652
|
seller: {
|
|
26478
26653
|
__typename?: "Seller";
|
|
@@ -26712,6 +26887,10 @@ export type GetDisputesQueryQuery = {
|
|
|
26712
26887
|
}> | null;
|
|
26713
26888
|
} | null;
|
|
26714
26889
|
};
|
|
26890
|
+
protocolFeeCollected?: {
|
|
26891
|
+
__typename?: "ProtocolFeeCollected";
|
|
26892
|
+
amount: string;
|
|
26893
|
+
} | null;
|
|
26715
26894
|
};
|
|
26716
26895
|
seller: {
|
|
26717
26896
|
__typename?: "Seller";
|
|
@@ -26941,6 +27120,10 @@ export type DisputeFieldsFragment = {
|
|
|
26941
27120
|
}> | null;
|
|
26942
27121
|
} | null;
|
|
26943
27122
|
};
|
|
27123
|
+
protocolFeeCollected?: {
|
|
27124
|
+
__typename?: "ProtocolFeeCollected";
|
|
27125
|
+
amount: string;
|
|
27126
|
+
} | null;
|
|
26944
27127
|
};
|
|
26945
27128
|
seller: {
|
|
26946
27129
|
__typename?: "Seller";
|
|
@@ -32131,6 +32314,10 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
32131
32314
|
}> | null;
|
|
32132
32315
|
} | null;
|
|
32133
32316
|
};
|
|
32317
|
+
protocolFeeCollected?: {
|
|
32318
|
+
__typename?: "ProtocolFeeCollected";
|
|
32319
|
+
amount: string;
|
|
32320
|
+
} | null;
|
|
32134
32321
|
} | null;
|
|
32135
32322
|
};
|
|
32136
32323
|
|
|
@@ -33441,6 +33628,10 @@ export type GetExchangesQueryQuery = {
|
|
|
33441
33628
|
}> | null;
|
|
33442
33629
|
} | null;
|
|
33443
33630
|
};
|
|
33631
|
+
protocolFeeCollected?: {
|
|
33632
|
+
__typename?: "ProtocolFeeCollected";
|
|
33633
|
+
amount: string;
|
|
33634
|
+
} | null;
|
|
33444
33635
|
}>;
|
|
33445
33636
|
};
|
|
33446
33637
|
|
|
@@ -34724,6 +34915,10 @@ export type ExchangeFieldsFragment = {
|
|
|
34724
34915
|
}> | null;
|
|
34725
34916
|
} | null;
|
|
34726
34917
|
};
|
|
34918
|
+
protocolFeeCollected?: {
|
|
34919
|
+
__typename?: "ProtocolFeeCollected";
|
|
34920
|
+
amount: string;
|
|
34921
|
+
} | null;
|
|
34727
34922
|
};
|
|
34728
34923
|
|
|
34729
34924
|
export type BaseExchangeFieldsFragment = {
|
|
@@ -34841,6 +35036,10 @@ export type BaseExchangeFieldsFragment = {
|
|
|
34841
35036
|
}> | null;
|
|
34842
35037
|
} | null;
|
|
34843
35038
|
};
|
|
35039
|
+
protocolFeeCollected?: {
|
|
35040
|
+
__typename?: "ProtocolFeeCollected";
|
|
35041
|
+
amount: string;
|
|
35042
|
+
} | null;
|
|
34844
35043
|
};
|
|
34845
35044
|
|
|
34846
35045
|
export type GetFundsByIdQueryVariables = Exact<{
|
|
@@ -40361,6 +40560,10 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40361
40560
|
}> | null;
|
|
40362
40561
|
} | null;
|
|
40363
40562
|
};
|
|
40563
|
+
protocolFeeCollected?: {
|
|
40564
|
+
__typename?: "ProtocolFeeCollected";
|
|
40565
|
+
amount: string;
|
|
40566
|
+
} | null;
|
|
40364
40567
|
}>;
|
|
40365
40568
|
royaltyInfos: Array<{
|
|
40366
40569
|
__typename?: "RoyaltyInfo";
|
|
@@ -42247,6 +42450,10 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42247
42450
|
}> | null;
|
|
42248
42451
|
} | null;
|
|
42249
42452
|
};
|
|
42453
|
+
protocolFeeCollected?: {
|
|
42454
|
+
__typename?: "ProtocolFeeCollected";
|
|
42455
|
+
amount: string;
|
|
42456
|
+
} | null;
|
|
42250
42457
|
}>;
|
|
42251
42458
|
royaltyInfos: Array<{
|
|
42252
42459
|
__typename?: "RoyaltyInfo";
|
|
@@ -44123,6 +44330,10 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44123
44330
|
}> | null;
|
|
44124
44331
|
} | null;
|
|
44125
44332
|
};
|
|
44333
|
+
protocolFeeCollected?: {
|
|
44334
|
+
__typename?: "ProtocolFeeCollected";
|
|
44335
|
+
amount: string;
|
|
44336
|
+
} | null;
|
|
44126
44337
|
}>;
|
|
44127
44338
|
royaltyInfos: Array<{
|
|
44128
44339
|
__typename?: "RoyaltyInfo";
|
|
@@ -45986,6 +46197,10 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
45986
46197
|
}> | null;
|
|
45987
46198
|
} | null;
|
|
45988
46199
|
};
|
|
46200
|
+
protocolFeeCollected?: {
|
|
46201
|
+
__typename?: "ProtocolFeeCollected";
|
|
46202
|
+
amount: string;
|
|
46203
|
+
} | null;
|
|
45989
46204
|
}>;
|
|
45990
46205
|
royaltyInfos: Array<{
|
|
45991
46206
|
__typename?: "RoyaltyInfo";
|
|
@@ -48104,6 +48319,10 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48104
48319
|
}> | null;
|
|
48105
48320
|
} | null;
|
|
48106
48321
|
};
|
|
48322
|
+
protocolFeeCollected?: {
|
|
48323
|
+
__typename?: "ProtocolFeeCollected";
|
|
48324
|
+
amount: string;
|
|
48325
|
+
} | null;
|
|
48107
48326
|
}>;
|
|
48108
48327
|
royaltyInfos: Array<{
|
|
48109
48328
|
__typename?: "RoyaltyInfo";
|
|
@@ -49442,6 +49661,10 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49442
49661
|
}> | null;
|
|
49443
49662
|
} | null;
|
|
49444
49663
|
};
|
|
49664
|
+
protocolFeeCollected?: {
|
|
49665
|
+
__typename?: "ProtocolFeeCollected";
|
|
49666
|
+
amount: string;
|
|
49667
|
+
} | null;
|
|
49445
49668
|
}>;
|
|
49446
49669
|
royaltyInfos: Array<{
|
|
49447
49670
|
__typename?: "RoyaltyInfo";
|
|
@@ -51523,6 +51746,10 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51523
51746
|
}> | null;
|
|
51524
51747
|
} | null;
|
|
51525
51748
|
};
|
|
51749
|
+
protocolFeeCollected?: {
|
|
51750
|
+
__typename?: "ProtocolFeeCollected";
|
|
51751
|
+
amount: string;
|
|
51752
|
+
} | null;
|
|
51526
51753
|
}>;
|
|
51527
51754
|
royaltyInfos: Array<{
|
|
51528
51755
|
__typename?: "RoyaltyInfo";
|
|
@@ -52861,6 +53088,10 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52861
53088
|
}> | null;
|
|
52862
53089
|
} | null;
|
|
52863
53090
|
};
|
|
53091
|
+
protocolFeeCollected?: {
|
|
53092
|
+
__typename?: "ProtocolFeeCollected";
|
|
53093
|
+
amount: string;
|
|
53094
|
+
} | null;
|
|
52864
53095
|
}>;
|
|
52865
53096
|
royaltyInfos: Array<{
|
|
52866
53097
|
__typename?: "RoyaltyInfo";
|
|
@@ -54956,6 +55187,10 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
54956
55187
|
}> | null;
|
|
54957
55188
|
} | null;
|
|
54958
55189
|
};
|
|
55190
|
+
protocolFeeCollected?: {
|
|
55191
|
+
__typename?: "ProtocolFeeCollected";
|
|
55192
|
+
amount: string;
|
|
55193
|
+
} | null;
|
|
54959
55194
|
}>;
|
|
54960
55195
|
royaltyInfos: Array<{
|
|
54961
55196
|
__typename?: "RoyaltyInfo";
|
|
@@ -56733,6 +56968,10 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
56733
56968
|
}> | null;
|
|
56734
56969
|
} | null;
|
|
56735
56970
|
};
|
|
56971
|
+
protocolFeeCollected?: {
|
|
56972
|
+
__typename?: "ProtocolFeeCollected";
|
|
56973
|
+
amount: string;
|
|
56974
|
+
} | null;
|
|
56736
56975
|
}>;
|
|
56737
56976
|
royaltyInfos: Array<{
|
|
56738
56977
|
__typename?: "RoyaltyInfo";
|
|
@@ -58500,6 +58739,10 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58500
58739
|
}> | null;
|
|
58501
58740
|
} | null;
|
|
58502
58741
|
};
|
|
58742
|
+
protocolFeeCollected?: {
|
|
58743
|
+
__typename?: "ProtocolFeeCollected";
|
|
58744
|
+
amount: string;
|
|
58745
|
+
} | null;
|
|
58503
58746
|
}>;
|
|
58504
58747
|
royaltyInfos: Array<{
|
|
58505
58748
|
__typename?: "RoyaltyInfo";
|
|
@@ -60254,6 +60497,10 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60254
60497
|
}> | null;
|
|
60255
60498
|
} | null;
|
|
60256
60499
|
};
|
|
60500
|
+
protocolFeeCollected?: {
|
|
60501
|
+
__typename?: "ProtocolFeeCollected";
|
|
60502
|
+
amount: string;
|
|
60503
|
+
} | null;
|
|
60257
60504
|
}>;
|
|
60258
60505
|
royaltyInfos: Array<{
|
|
60259
60506
|
__typename?: "RoyaltyInfo";
|
|
@@ -62234,6 +62481,10 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62234
62481
|
}> | null;
|
|
62235
62482
|
} | null;
|
|
62236
62483
|
};
|
|
62484
|
+
protocolFeeCollected?: {
|
|
62485
|
+
__typename?: "ProtocolFeeCollected";
|
|
62486
|
+
amount: string;
|
|
62487
|
+
} | null;
|
|
62237
62488
|
}>;
|
|
62238
62489
|
royaltyInfos: Array<{
|
|
62239
62490
|
__typename?: "RoyaltyInfo";
|
|
@@ -63572,6 +63823,10 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63572
63823
|
}> | null;
|
|
63573
63824
|
} | null;
|
|
63574
63825
|
};
|
|
63826
|
+
protocolFeeCollected?: {
|
|
63827
|
+
__typename?: "ProtocolFeeCollected";
|
|
63828
|
+
amount: string;
|
|
63829
|
+
} | null;
|
|
63575
63830
|
}>;
|
|
63576
63831
|
royaltyInfos: Array<{
|
|
63577
63832
|
__typename?: "RoyaltyInfo";
|
|
@@ -65642,6 +65897,10 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65642
65897
|
}> | null;
|
|
65643
65898
|
} | null;
|
|
65644
65899
|
};
|
|
65900
|
+
protocolFeeCollected?: {
|
|
65901
|
+
__typename?: "ProtocolFeeCollected";
|
|
65902
|
+
amount: string;
|
|
65903
|
+
} | null;
|
|
65645
65904
|
}>;
|
|
65646
65905
|
royaltyInfos: Array<{
|
|
65647
65906
|
__typename?: "RoyaltyInfo";
|
|
@@ -66980,6 +67239,10 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66980
67239
|
}> | null;
|
|
66981
67240
|
} | null;
|
|
66982
67241
|
};
|
|
67242
|
+
protocolFeeCollected?: {
|
|
67243
|
+
__typename?: "ProtocolFeeCollected";
|
|
67244
|
+
amount: string;
|
|
67245
|
+
} | null;
|
|
66983
67246
|
}>;
|
|
66984
67247
|
royaltyInfos: Array<{
|
|
66985
67248
|
__typename?: "RoyaltyInfo";
|
|
@@ -69266,6 +69529,10 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69266
69529
|
}> | null;
|
|
69267
69530
|
} | null;
|
|
69268
69531
|
};
|
|
69532
|
+
protocolFeeCollected?: {
|
|
69533
|
+
__typename?: "ProtocolFeeCollected";
|
|
69534
|
+
amount: string;
|
|
69535
|
+
} | null;
|
|
69269
69536
|
}>;
|
|
69270
69537
|
royaltyInfos: Array<{
|
|
69271
69538
|
__typename?: "RoyaltyInfo";
|
|
@@ -70570,6 +70837,10 @@ export type GetOffersQueryQuery = {
|
|
|
70570
70837
|
}> | null;
|
|
70571
70838
|
} | null;
|
|
70572
70839
|
};
|
|
70840
|
+
protocolFeeCollected?: {
|
|
70841
|
+
__typename?: "ProtocolFeeCollected";
|
|
70842
|
+
amount: string;
|
|
70843
|
+
} | null;
|
|
70573
70844
|
}>;
|
|
70574
70845
|
royaltyInfos: Array<{
|
|
70575
70846
|
__typename?: "RoyaltyInfo";
|
|
@@ -71966,6 +72237,10 @@ export type OfferFieldsFragment = {
|
|
|
71966
72237
|
}> | null;
|
|
71967
72238
|
} | null;
|
|
71968
72239
|
};
|
|
72240
|
+
protocolFeeCollected?: {
|
|
72241
|
+
__typename?: "ProtocolFeeCollected";
|
|
72242
|
+
amount: string;
|
|
72243
|
+
} | null;
|
|
71969
72244
|
}>;
|
|
71970
72245
|
royaltyInfos: Array<{
|
|
71971
72246
|
__typename?: "RoyaltyInfo";
|
|
@@ -74998,6 +75273,9 @@ export const BaseExchangeFieldsFragmentDoc = gql`
|
|
|
74998
75273
|
seller {
|
|
74999
75274
|
...BaseSellerFields
|
|
75000
75275
|
}
|
|
75276
|
+
protocolFeeCollected {
|
|
75277
|
+
amount
|
|
75278
|
+
}
|
|
75001
75279
|
}
|
|
75002
75280
|
${BaseDisputeFieldsFragmentDoc}
|
|
75003
75281
|
${BaseBuyerFieldsFragmentDoc}
|