@bosonprotocol/core-sdk 1.40.5-alpha.9 → 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.
@@ -2598,6 +2598,7 @@ export type Exchange = {
2598
2598
  finalizedDate?: Maybe<Scalars["BigInt"]["output"]>;
2599
2599
  id: Scalars["ID"]["output"];
2600
2600
  offer: Offer;
2601
+ protocolFeeCollected?: Maybe<ProtocolFeeCollected>;
2601
2602
  redeemedDate?: Maybe<Scalars["BigInt"]["output"]>;
2602
2603
  revokedDate?: Maybe<Scalars["BigInt"]["output"]>;
2603
2604
  seller: Seller;
@@ -3010,6 +3011,7 @@ export type Exchange_Filter = {
3010
3011
  offer_starts_with?: InputMaybe<Scalars["String"]["input"]>;
3011
3012
  offer_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
3012
3013
  or?: InputMaybe<Array<InputMaybe<Exchange_Filter>>>;
3014
+ protocolFeeCollected_?: InputMaybe<ProtocolFeeCollected_Filter>;
3013
3015
  redeemedDate?: InputMaybe<Scalars["BigInt"]["input"]>;
3014
3016
  redeemedDate_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
3015
3017
  redeemedDate_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
@@ -3123,6 +3125,12 @@ export declare enum Exchange_OrderBy {
3123
3125
  OFFER__VOUCHERREDEEMABLEFROMDATE = "offer__voucherRedeemableFromDate",
3124
3126
  OFFER__VOUCHERREDEEMABLEUNTILDATE = "offer__voucherRedeemableUntilDate",
3125
3127
  OFFER__VOUCHERVALIDDURATION = "offer__voucherValidDuration",
3128
+ PROTOCOLFEECOLLECTED = "protocolFeeCollected",
3129
+ PROTOCOLFEECOLLECTED__AMOUNT = "protocolFeeCollected__amount",
3130
+ PROTOCOLFEECOLLECTED__EXCHANGEID = "protocolFeeCollected__exchangeId",
3131
+ PROTOCOLFEECOLLECTED__EXCHANGETOKEN = "protocolFeeCollected__exchangeToken",
3132
+ PROTOCOLFEECOLLECTED__EXECUTEDBY = "protocolFeeCollected__executedBy",
3133
+ PROTOCOLFEECOLLECTED__ID = "protocolFeeCollected__id",
3126
3134
  REDEEMEDDATE = "redeemedDate",
3127
3135
  REVOKEDDATE = "revokedDate",
3128
3136
  SELLER = "seller",
@@ -9170,6 +9178,106 @@ export declare enum ProductV1Variation_OrderBy {
9170
9178
  OPTION = "option",
9171
9179
  TYPE = "type"
9172
9180
  }
9181
+ export type ProtocolFeeCollected = {
9182
+ __typename?: "ProtocolFeeCollected";
9183
+ amount: Scalars["BigInt"]["output"];
9184
+ exchange: Exchange;
9185
+ exchangeId: Scalars["BigInt"]["output"];
9186
+ exchangeToken: Scalars["Bytes"]["output"];
9187
+ executedBy: Scalars["Bytes"]["output"];
9188
+ id: Scalars["ID"]["output"];
9189
+ };
9190
+ export type ProtocolFeeCollected_Filter = {
9191
+ /** Filter for the block changed event. */
9192
+ _change_block?: InputMaybe<BlockChangedFilter>;
9193
+ amount?: InputMaybe<Scalars["BigInt"]["input"]>;
9194
+ amount_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
9195
+ amount_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
9196
+ amount_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
9197
+ amount_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
9198
+ amount_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
9199
+ amount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
9200
+ amount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
9201
+ and?: InputMaybe<Array<InputMaybe<ProtocolFeeCollected_Filter>>>;
9202
+ exchange?: InputMaybe<Scalars["String"]["input"]>;
9203
+ exchangeId?: InputMaybe<Scalars["BigInt"]["input"]>;
9204
+ exchangeId_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
9205
+ exchangeId_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
9206
+ exchangeId_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
9207
+ exchangeId_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
9208
+ exchangeId_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
9209
+ exchangeId_not?: InputMaybe<Scalars["BigInt"]["input"]>;
9210
+ exchangeId_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
9211
+ exchangeToken?: InputMaybe<Scalars["Bytes"]["input"]>;
9212
+ exchangeToken_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
9213
+ exchangeToken_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
9214
+ exchangeToken_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
9215
+ exchangeToken_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
9216
+ exchangeToken_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
9217
+ exchangeToken_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
9218
+ exchangeToken_not?: InputMaybe<Scalars["Bytes"]["input"]>;
9219
+ exchangeToken_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
9220
+ exchangeToken_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
9221
+ exchange_?: InputMaybe<Exchange_Filter>;
9222
+ exchange_contains?: InputMaybe<Scalars["String"]["input"]>;
9223
+ exchange_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
9224
+ exchange_ends_with?: InputMaybe<Scalars["String"]["input"]>;
9225
+ exchange_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
9226
+ exchange_gt?: InputMaybe<Scalars["String"]["input"]>;
9227
+ exchange_gte?: InputMaybe<Scalars["String"]["input"]>;
9228
+ exchange_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
9229
+ exchange_lt?: InputMaybe<Scalars["String"]["input"]>;
9230
+ exchange_lte?: InputMaybe<Scalars["String"]["input"]>;
9231
+ exchange_not?: InputMaybe<Scalars["String"]["input"]>;
9232
+ exchange_not_contains?: InputMaybe<Scalars["String"]["input"]>;
9233
+ exchange_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
9234
+ exchange_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
9235
+ exchange_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
9236
+ exchange_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
9237
+ exchange_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
9238
+ exchange_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
9239
+ exchange_starts_with?: InputMaybe<Scalars["String"]["input"]>;
9240
+ exchange_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
9241
+ executedBy?: InputMaybe<Scalars["Bytes"]["input"]>;
9242
+ executedBy_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
9243
+ executedBy_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
9244
+ executedBy_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
9245
+ executedBy_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
9246
+ executedBy_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
9247
+ executedBy_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
9248
+ executedBy_not?: InputMaybe<Scalars["Bytes"]["input"]>;
9249
+ executedBy_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
9250
+ executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
9251
+ id?: InputMaybe<Scalars["ID"]["input"]>;
9252
+ id_gt?: InputMaybe<Scalars["ID"]["input"]>;
9253
+ id_gte?: InputMaybe<Scalars["ID"]["input"]>;
9254
+ id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
9255
+ id_lt?: InputMaybe<Scalars["ID"]["input"]>;
9256
+ id_lte?: InputMaybe<Scalars["ID"]["input"]>;
9257
+ id_not?: InputMaybe<Scalars["ID"]["input"]>;
9258
+ id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
9259
+ or?: InputMaybe<Array<InputMaybe<ProtocolFeeCollected_Filter>>>;
9260
+ };
9261
+ export declare enum ProtocolFeeCollected_OrderBy {
9262
+ AMOUNT = "amount",
9263
+ EXCHANGE = "exchange",
9264
+ EXCHANGEID = "exchangeId",
9265
+ EXCHANGETOKEN = "exchangeToken",
9266
+ EXCHANGE__CANCELLEDDATE = "exchange__cancelledDate",
9267
+ EXCHANGE__COMMITTEDDATE = "exchange__committedDate",
9268
+ EXCHANGE__COMPLETEDDATE = "exchange__completedDate",
9269
+ EXCHANGE__DISPUTED = "exchange__disputed",
9270
+ EXCHANGE__DISPUTEDDATE = "exchange__disputedDate",
9271
+ EXCHANGE__EXPIRED = "exchange__expired",
9272
+ EXCHANGE__FINALIZEDDATE = "exchange__finalizedDate",
9273
+ EXCHANGE__ID = "exchange__id",
9274
+ EXCHANGE__REDEEMEDDATE = "exchange__redeemedDate",
9275
+ EXCHANGE__REVOKEDDATE = "exchange__revokedDate",
9276
+ EXCHANGE__STATE = "exchange__state",
9277
+ EXCHANGE__VALIDUNTILDATE = "exchange__validUntilDate",
9278
+ EXECUTEDBY = "executedBy",
9279
+ ID = "id"
9280
+ }
9173
9281
  export type Query = {
9174
9282
  __typename?: "Query";
9175
9283
  /** Access to subgraph metadata */
@@ -9265,6 +9373,8 @@ export type Query = {
9265
9373
  productV1Variants: Array<ProductV1Variant>;
9266
9374
  productV1Variation?: Maybe<ProductV1Variation>;
9267
9375
  productV1Variations: Array<ProductV1Variation>;
9376
+ protocolFeeCollected?: Maybe<ProtocolFeeCollected>;
9377
+ protocolFeeCollecteds: Array<ProtocolFeeCollected>;
9268
9378
  rangeEntities: Array<RangeEntity>;
9269
9379
  rangeEntity?: Maybe<RangeEntity>;
9270
9380
  royaltyInfo?: Maybe<RoyaltyInfo>;
@@ -9941,6 +10051,20 @@ export type QueryProductV1VariationsArgs = {
9941
10051
  subgraphError?: _SubgraphErrorPolicy_;
9942
10052
  where?: InputMaybe<ProductV1Variation_Filter>;
9943
10053
  };
10054
+ export type QueryProtocolFeeCollectedArgs = {
10055
+ block?: InputMaybe<Block_Height>;
10056
+ id: Scalars["ID"]["input"];
10057
+ subgraphError?: _SubgraphErrorPolicy_;
10058
+ };
10059
+ export type QueryProtocolFeeCollectedsArgs = {
10060
+ block?: InputMaybe<Block_Height>;
10061
+ first?: InputMaybe<Scalars["Int"]["input"]>;
10062
+ orderBy?: InputMaybe<ProtocolFeeCollected_OrderBy>;
10063
+ orderDirection?: InputMaybe<OrderDirection>;
10064
+ skip?: InputMaybe<Scalars["Int"]["input"]>;
10065
+ subgraphError?: _SubgraphErrorPolicy_;
10066
+ where?: InputMaybe<ProtocolFeeCollected_Filter>;
10067
+ };
9944
10068
  export type QueryRangeEntitiesArgs = {
9945
10069
  block?: InputMaybe<Block_Height>;
9946
10070
  first?: InputMaybe<Scalars["Int"]["input"]>;
@@ -11701,6 +11825,8 @@ export type Subscription = {
11701
11825
  productV1Variants: Array<ProductV1Variant>;
11702
11826
  productV1Variation?: Maybe<ProductV1Variation>;
11703
11827
  productV1Variations: Array<ProductV1Variation>;
11828
+ protocolFeeCollected?: Maybe<ProtocolFeeCollected>;
11829
+ protocolFeeCollecteds: Array<ProtocolFeeCollected>;
11704
11830
  rangeEntities: Array<RangeEntity>;
11705
11831
  rangeEntity?: Maybe<RangeEntity>;
11706
11832
  royaltyInfo?: Maybe<RoyaltyInfo>;
@@ -12377,6 +12503,20 @@ export type SubscriptionProductV1VariationsArgs = {
12377
12503
  subgraphError?: _SubgraphErrorPolicy_;
12378
12504
  where?: InputMaybe<ProductV1Variation_Filter>;
12379
12505
  };
12506
+ export type SubscriptionProtocolFeeCollectedArgs = {
12507
+ block?: InputMaybe<Block_Height>;
12508
+ id: Scalars["ID"]["input"];
12509
+ subgraphError?: _SubgraphErrorPolicy_;
12510
+ };
12511
+ export type SubscriptionProtocolFeeCollectedsArgs = {
12512
+ block?: InputMaybe<Block_Height>;
12513
+ first?: InputMaybe<Scalars["Int"]["input"]>;
12514
+ orderBy?: InputMaybe<ProtocolFeeCollected_OrderBy>;
12515
+ orderDirection?: InputMaybe<OrderDirection>;
12516
+ skip?: InputMaybe<Scalars["Int"]["input"]>;
12517
+ subgraphError?: _SubgraphErrorPolicy_;
12518
+ where?: InputMaybe<ProtocolFeeCollected_Filter>;
12519
+ };
12380
12520
  export type SubscriptionRangeEntitiesArgs = {
12381
12521
  block?: InputMaybe<Block_Height>;
12382
12522
  first?: InputMaybe<Scalars["Int"]["input"]>;
@@ -14266,6 +14406,10 @@ export type GetSellerByIdQueryQuery = {
14266
14406
  }> | null;
14267
14407
  } | null;
14268
14408
  };
14409
+ protocolFeeCollected?: {
14410
+ __typename?: "ProtocolFeeCollected";
14411
+ amount: string;
14412
+ } | null;
14269
14413
  }>;
14270
14414
  logs?: Array<{
14271
14415
  __typename?: "AccountEventLog";
@@ -15843,6 +15987,10 @@ export type GetSellersQueryQuery = {
15843
15987
  }> | null;
15844
15988
  } | null;
15845
15989
  };
15990
+ protocolFeeCollected?: {
15991
+ __typename?: "ProtocolFeeCollected";
15992
+ amount: string;
15993
+ } | null;
15846
15994
  }>;
15847
15995
  logs?: Array<{
15848
15996
  __typename?: "AccountEventLog";
@@ -16192,6 +16340,10 @@ export type GetBuyerByIdQueryQuery = {
16192
16340
  }> | null;
16193
16341
  } | null;
16194
16342
  };
16343
+ protocolFeeCollected?: {
16344
+ __typename?: "ProtocolFeeCollected";
16345
+ amount: string;
16346
+ } | null;
16195
16347
  }>;
16196
16348
  logs?: Array<{
16197
16349
  __typename?: "AccountEventLog";
@@ -16476,6 +16628,10 @@ export type GetBuyersQueryQuery = {
16476
16628
  }> | null;
16477
16629
  } | null;
16478
16630
  };
16631
+ protocolFeeCollected?: {
16632
+ __typename?: "ProtocolFeeCollected";
16633
+ amount: string;
16634
+ } | null;
16479
16635
  }>;
16480
16636
  logs?: Array<{
16481
16637
  __typename?: "AccountEventLog";
@@ -23282,6 +23438,10 @@ export type SellerFieldsFragment = {
23282
23438
  }> | null;
23283
23439
  } | null;
23284
23440
  };
23441
+ protocolFeeCollected?: {
23442
+ __typename?: "ProtocolFeeCollected";
23443
+ amount: string;
23444
+ } | null;
23285
23445
  }>;
23286
23446
  logs?: Array<{
23287
23447
  __typename?: "AccountEventLog";
@@ -23754,6 +23914,10 @@ export type BuyerFieldsFragment = {
23754
23914
  }> | null;
23755
23915
  } | null;
23756
23916
  };
23917
+ protocolFeeCollected?: {
23918
+ __typename?: "ProtocolFeeCollected";
23919
+ amount: string;
23920
+ } | null;
23757
23921
  }>;
23758
23922
  logs?: Array<{
23759
23923
  __typename?: "AccountEventLog";
@@ -25405,6 +25569,10 @@ export type GetDisputeByIdQueryQuery = {
25405
25569
  }> | null;
25406
25570
  } | null;
25407
25571
  };
25572
+ protocolFeeCollected?: {
25573
+ __typename?: "ProtocolFeeCollected";
25574
+ amount: string;
25575
+ } | null;
25408
25576
  };
25409
25577
  seller: {
25410
25578
  __typename?: "Seller";
@@ -25648,6 +25816,10 @@ export type GetDisputesQueryQuery = {
25648
25816
  }> | null;
25649
25817
  } | null;
25650
25818
  };
25819
+ protocolFeeCollected?: {
25820
+ __typename?: "ProtocolFeeCollected";
25821
+ amount: string;
25822
+ } | null;
25651
25823
  };
25652
25824
  seller: {
25653
25825
  __typename?: "Seller";
@@ -25882,6 +26054,10 @@ export type DisputeFieldsFragment = {
25882
26054
  }> | null;
25883
26055
  } | null;
25884
26056
  };
26057
+ protocolFeeCollected?: {
26058
+ __typename?: "ProtocolFeeCollected";
26059
+ amount: string;
26060
+ } | null;
25885
26061
  };
25886
26062
  seller: {
25887
26063
  __typename?: "Seller";
@@ -31163,6 +31339,10 @@ export type GetExchangeByIdQueryQuery = {
31163
31339
  }> | null;
31164
31340
  } | null;
31165
31341
  };
31342
+ protocolFeeCollected?: {
31343
+ __typename?: "ProtocolFeeCollected";
31344
+ amount: string;
31345
+ } | null;
31166
31346
  } | null;
31167
31347
  };
31168
31348
  export type GetExchangesQueryQueryVariables = Exact<{
@@ -32477,6 +32657,10 @@ export type GetExchangesQueryQuery = {
32477
32657
  }> | null;
32478
32658
  } | null;
32479
32659
  };
32660
+ protocolFeeCollected?: {
32661
+ __typename?: "ProtocolFeeCollected";
32662
+ amount: string;
32663
+ } | null;
32480
32664
  }>;
32481
32665
  };
32482
32666
  export type ExchangeFieldsFragment = {
@@ -33782,6 +33966,10 @@ export type ExchangeFieldsFragment = {
33782
33966
  }> | null;
33783
33967
  } | null;
33784
33968
  };
33969
+ protocolFeeCollected?: {
33970
+ __typename?: "ProtocolFeeCollected";
33971
+ amount: string;
33972
+ } | null;
33785
33973
  };
33786
33974
  export type BaseExchangeFieldsFragment = {
33787
33975
  __typename?: "Exchange";
@@ -33906,6 +34094,10 @@ export type BaseExchangeFieldsFragment = {
33906
34094
  }> | null;
33907
34095
  } | null;
33908
34096
  };
34097
+ protocolFeeCollected?: {
34098
+ __typename?: "ProtocolFeeCollected";
34099
+ amount: string;
34100
+ } | null;
33909
34101
  };
33910
34102
  export type GetFundsByIdQueryVariables = Exact<{
33911
34103
  fundsId: Scalars["ID"]["input"];
@@ -39462,6 +39654,10 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
39462
39654
  }> | null;
39463
39655
  } | null;
39464
39656
  };
39657
+ protocolFeeCollected?: {
39658
+ __typename?: "ProtocolFeeCollected";
39659
+ amount: string;
39660
+ } | null;
39465
39661
  }>;
39466
39662
  royaltyInfos: Array<{
39467
39663
  __typename?: "RoyaltyInfo";
@@ -41365,6 +41561,10 @@ export type GetBundleMetadataEntitiesQueryQuery = {
41365
41561
  }> | null;
41366
41562
  } | null;
41367
41563
  };
41564
+ protocolFeeCollected?: {
41565
+ __typename?: "ProtocolFeeCollected";
41566
+ amount: string;
41567
+ } | null;
41368
41568
  }>;
41369
41569
  royaltyInfos: Array<{
41370
41570
  __typename?: "RoyaltyInfo";
@@ -43259,6 +43459,10 @@ export type BundleMetadataEntityFieldsFragment = {
43259
43459
  }> | null;
43260
43460
  } | null;
43261
43461
  };
43462
+ protocolFeeCollected?: {
43463
+ __typename?: "ProtocolFeeCollected";
43464
+ amount: string;
43465
+ } | null;
43262
43466
  }>;
43263
43467
  royaltyInfos: Array<{
43264
43468
  __typename?: "RoyaltyInfo";
@@ -45152,6 +45356,10 @@ export type BaseBundleMetadataEntityFieldsFragment = {
45152
45356
  }> | null;
45153
45357
  } | null;
45154
45358
  };
45359
+ protocolFeeCollected?: {
45360
+ __typename?: "ProtocolFeeCollected";
45361
+ amount: string;
45362
+ } | null;
45155
45363
  }>;
45156
45364
  royaltyInfos: Array<{
45157
45365
  __typename?: "RoyaltyInfo";
@@ -47302,6 +47510,10 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
47302
47510
  }> | null;
47303
47511
  } | null;
47304
47512
  };
47513
+ protocolFeeCollected?: {
47514
+ __typename?: "ProtocolFeeCollected";
47515
+ amount: string;
47516
+ } | null;
47305
47517
  }>;
47306
47518
  royaltyInfos: Array<{
47307
47519
  __typename?: "RoyaltyInfo";
@@ -48646,6 +48858,10 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
48646
48858
  }> | null;
48647
48859
  } | null;
48648
48860
  };
48861
+ protocolFeeCollected?: {
48862
+ __typename?: "ProtocolFeeCollected";
48863
+ amount: string;
48864
+ } | null;
48649
48865
  }>;
48650
48866
  royaltyInfos: Array<{
48651
48867
  __typename?: "RoyaltyInfo";
@@ -50743,6 +50959,10 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
50743
50959
  }> | null;
50744
50960
  } | null;
50745
50961
  };
50962
+ protocolFeeCollected?: {
50963
+ __typename?: "ProtocolFeeCollected";
50964
+ amount: string;
50965
+ } | null;
50746
50966
  }>;
50747
50967
  royaltyInfos: Array<{
50748
50968
  __typename?: "RoyaltyInfo";
@@ -52087,6 +52307,10 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
52087
52307
  }> | null;
52088
52308
  } | null;
52089
52309
  };
52310
+ protocolFeeCollected?: {
52311
+ __typename?: "ProtocolFeeCollected";
52312
+ amount: string;
52313
+ } | null;
52090
52314
  }>;
52091
52315
  royaltyInfos: Array<{
52092
52316
  __typename?: "RoyaltyInfo";
@@ -54196,6 +54420,10 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
54196
54420
  }> | null;
54197
54421
  } | null;
54198
54422
  };
54423
+ protocolFeeCollected?: {
54424
+ __typename?: "ProtocolFeeCollected";
54425
+ amount: string;
54426
+ } | null;
54199
54427
  }>;
54200
54428
  royaltyInfos: Array<{
54201
54429
  __typename?: "RoyaltyInfo";
@@ -55990,6 +56218,10 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
55990
56218
  }> | null;
55991
56219
  } | null;
55992
56220
  };
56221
+ protocolFeeCollected?: {
56222
+ __typename?: "ProtocolFeeCollected";
56223
+ amount: string;
56224
+ } | null;
55993
56225
  }>;
55994
56226
  royaltyInfos: Array<{
55995
56227
  __typename?: "RoyaltyInfo";
@@ -57775,6 +58007,10 @@ export type ProductV1MetadataEntityFieldsFragment = {
57775
58007
  }> | null;
57776
58008
  } | null;
57777
58009
  };
58010
+ protocolFeeCollected?: {
58011
+ __typename?: "ProtocolFeeCollected";
58012
+ amount: string;
58013
+ } | null;
57778
58014
  }>;
57779
58015
  royaltyInfos: Array<{
57780
58016
  __typename?: "RoyaltyInfo";
@@ -59559,6 +59795,10 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
59559
59795
  }> | null;
59560
59796
  } | null;
59561
59797
  };
59798
+ protocolFeeCollected?: {
59799
+ __typename?: "ProtocolFeeCollected";
59800
+ amount: string;
59801
+ } | null;
59562
59802
  }>;
59563
59803
  royaltyInfos: Array<{
59564
59804
  __typename?: "RoyaltyInfo";
@@ -61574,6 +61814,10 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
61574
61814
  }> | null;
61575
61815
  } | null;
61576
61816
  };
61817
+ protocolFeeCollected?: {
61818
+ __typename?: "ProtocolFeeCollected";
61819
+ amount: string;
61820
+ } | null;
61577
61821
  }>;
61578
61822
  royaltyInfos: Array<{
61579
61823
  __typename?: "RoyaltyInfo";
@@ -62918,6 +63162,10 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
62918
63162
  }> | null;
62919
63163
  } | null;
62920
63164
  };
63165
+ protocolFeeCollected?: {
63166
+ __typename?: "ProtocolFeeCollected";
63167
+ amount: string;
63168
+ } | null;
62921
63169
  }>;
62922
63170
  royaltyInfos: Array<{
62923
63171
  __typename?: "RoyaltyInfo";
@@ -65005,6 +65253,10 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
65005
65253
  }> | null;
65006
65254
  } | null;
65007
65255
  };
65256
+ protocolFeeCollected?: {
65257
+ __typename?: "ProtocolFeeCollected";
65258
+ amount: string;
65259
+ } | null;
65008
65260
  }>;
65009
65261
  royaltyInfos: Array<{
65010
65262
  __typename?: "RoyaltyInfo";
@@ -66349,6 +66601,10 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
66349
66601
  }> | null;
66350
66602
  } | null;
66351
66603
  };
66604
+ protocolFeeCollected?: {
66605
+ __typename?: "ProtocolFeeCollected";
66606
+ amount: string;
66607
+ } | null;
66352
66608
  }>;
66353
66609
  royaltyInfos: Array<{
66354
66610
  __typename?: "RoyaltyInfo";
@@ -68645,6 +68901,10 @@ export type GetOfferByIdQueryQuery = {
68645
68901
  }> | null;
68646
68902
  } | null;
68647
68903
  };
68904
+ protocolFeeCollected?: {
68905
+ __typename?: "ProtocolFeeCollected";
68906
+ amount: string;
68907
+ } | null;
68648
68908
  }>;
68649
68909
  royaltyInfos: Array<{
68650
68910
  __typename?: "RoyaltyInfo";
@@ -69965,6 +70225,10 @@ export type GetOffersQueryQuery = {
69965
70225
  }> | null;
69966
70226
  } | null;
69967
70227
  };
70228
+ protocolFeeCollected?: {
70229
+ __typename?: "ProtocolFeeCollected";
70230
+ amount: string;
70231
+ } | null;
69968
70232
  }>;
69969
70233
  royaltyInfos: Array<{
69970
70234
  __typename?: "RoyaltyInfo";
@@ -71372,6 +71636,10 @@ export type OfferFieldsFragment = {
71372
71636
  }> | null;
71373
71637
  } | null;
71374
71638
  };
71639
+ protocolFeeCollected?: {
71640
+ __typename?: "ProtocolFeeCollected";
71641
+ amount: string;
71642
+ } | null;
71375
71643
  }>;
71376
71644
  royaltyInfos: Array<{
71377
71645
  __typename?: "RoyaltyInfo";