@bosonprotocol/core-sdk 1.12.0-alpha.3 → 1.12.0-alpha.5

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.
Files changed (45) hide show
  1. package/dist/cjs/accounts/index.d.ts +2 -0
  2. package/dist/cjs/accounts/index.d.ts.map +1 -1
  3. package/dist/cjs/accounts/interface.d.ts +5 -2
  4. package/dist/cjs/accounts/interface.d.ts.map +1 -1
  5. package/dist/cjs/accounts/interface.js +27 -7
  6. package/dist/cjs/accounts/interface.js.map +1 -1
  7. package/dist/cjs/offers/index.d.ts +0 -2
  8. package/dist/cjs/offers/index.d.ts.map +1 -1
  9. package/dist/cjs/offers/interface.d.ts +1 -0
  10. package/dist/cjs/offers/interface.d.ts.map +1 -1
  11. package/dist/cjs/offers/interface.js +2 -1
  12. package/dist/cjs/offers/interface.js.map +1 -1
  13. package/dist/cjs/orchestration/interface.d.ts.map +1 -1
  14. package/dist/cjs/orchestration/interface.js +9 -2
  15. package/dist/cjs/orchestration/interface.js.map +1 -1
  16. package/dist/cjs/subgraph.d.ts +241 -1
  17. package/dist/cjs/subgraph.d.ts.map +1 -1
  18. package/dist/cjs/subgraph.js +10 -0
  19. package/dist/cjs/subgraph.js.map +1 -1
  20. package/dist/esm/accounts/index.d.ts +2 -0
  21. package/dist/esm/accounts/index.d.ts.map +1 -1
  22. package/dist/esm/accounts/interface.d.ts +5 -2
  23. package/dist/esm/accounts/interface.d.ts.map +1 -1
  24. package/dist/esm/accounts/interface.js +17 -8
  25. package/dist/esm/accounts/interface.js.map +1 -1
  26. package/dist/esm/offers/index.d.ts +0 -2
  27. package/dist/esm/offers/index.d.ts.map +1 -1
  28. package/dist/esm/offers/interface.d.ts +1 -0
  29. package/dist/esm/offers/interface.d.ts.map +1 -1
  30. package/dist/esm/offers/interface.js +2 -1
  31. package/dist/esm/offers/interface.js.map +1 -1
  32. package/dist/esm/orchestration/interface.d.ts.map +1 -1
  33. package/dist/esm/orchestration/interface.js +9 -2
  34. package/dist/esm/orchestration/interface.js.map +1 -1
  35. package/dist/esm/subgraph.d.ts +241 -1
  36. package/dist/esm/subgraph.d.ts.map +1 -1
  37. package/dist/esm/subgraph.js +10 -0
  38. package/dist/esm/subgraph.js.map +1 -1
  39. package/package.json +3 -3
  40. package/src/accounts/interface.ts +22 -11
  41. package/src/accounts/queries.graphql +3 -0
  42. package/src/offers/interface.ts +3 -1
  43. package/src/offers/queries.graphql +2 -0
  44. package/src/orchestration/interface.ts +9 -2
  45. package/src/subgraph.ts +246 -1
package/src/subgraph.ts CHANGED
@@ -1676,6 +1676,8 @@ export enum MetadataType {
1676
1676
  */
1677
1677
  export type Offer = {
1678
1678
  __typename?: "Offer";
1679
+ agentFee: Scalars["BigInt"];
1680
+ agentId: Scalars["BigInt"];
1679
1681
  buyerCancelPenalty: Scalars["BigInt"];
1680
1682
  createdAt: Scalars["BigInt"];
1681
1683
  disputeResolutionTerms: DisputeResolutionTermsEntity;
@@ -1720,6 +1722,22 @@ export type OfferExchangesArgs = {
1720
1722
  };
1721
1723
 
1722
1724
  export type Offer_Filter = {
1725
+ agentFee?: InputMaybe<Scalars["BigInt"]>;
1726
+ agentFee_gt?: InputMaybe<Scalars["BigInt"]>;
1727
+ agentFee_gte?: InputMaybe<Scalars["BigInt"]>;
1728
+ agentFee_in?: InputMaybe<Array<Scalars["BigInt"]>>;
1729
+ agentFee_lt?: InputMaybe<Scalars["BigInt"]>;
1730
+ agentFee_lte?: InputMaybe<Scalars["BigInt"]>;
1731
+ agentFee_not?: InputMaybe<Scalars["BigInt"]>;
1732
+ agentFee_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
1733
+ agentId?: InputMaybe<Scalars["BigInt"]>;
1734
+ agentId_gt?: InputMaybe<Scalars["BigInt"]>;
1735
+ agentId_gte?: InputMaybe<Scalars["BigInt"]>;
1736
+ agentId_in?: InputMaybe<Array<Scalars["BigInt"]>>;
1737
+ agentId_lt?: InputMaybe<Scalars["BigInt"]>;
1738
+ agentId_lte?: InputMaybe<Scalars["BigInt"]>;
1739
+ agentId_not?: InputMaybe<Scalars["BigInt"]>;
1740
+ agentId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
1723
1741
  buyerCancelPenalty?: InputMaybe<Scalars["BigInt"]>;
1724
1742
  buyerCancelPenalty_gt?: InputMaybe<Scalars["BigInt"]>;
1725
1743
  buyerCancelPenalty_gte?: InputMaybe<Scalars["BigInt"]>;
@@ -2011,6 +2029,8 @@ export type Offer_Filter = {
2011
2029
  };
2012
2030
 
2013
2031
  export enum Offer_OrderBy {
2032
+ AgentFee = "agentFee",
2033
+ AgentId = "agentId",
2014
2034
  BuyerCancelPenalty = "buyerCancelPenalty",
2015
2035
  CreatedAt = "createdAt",
2016
2036
  DisputeResolutionTerms = "disputeResolutionTerms",
@@ -5311,6 +5331,8 @@ export type Seller = Account & {
5311
5331
  __typename?: "Seller";
5312
5332
  active: Scalars["Boolean"];
5313
5333
  admin: Scalars["Bytes"];
5334
+ authTokenId: Scalars["BigInt"];
5335
+ authTokenType: Scalars["Int"];
5314
5336
  clerk: Scalars["Bytes"];
5315
5337
  exchanges: Array<Exchange>;
5316
5338
  funds: Array<FundsEntity>;
@@ -5319,6 +5341,7 @@ export type Seller = Account & {
5319
5341
  operator: Scalars["Bytes"];
5320
5342
  sellerId: Scalars["BigInt"];
5321
5343
  treasury: Scalars["Bytes"];
5344
+ voucherCloneAddress: Scalars["Bytes"];
5322
5345
  };
5323
5346
 
5324
5347
  export type SellerExchangesArgs = {
@@ -5356,6 +5379,22 @@ export type Seller_Filter = {
5356
5379
  admin_not?: InputMaybe<Scalars["Bytes"]>;
5357
5380
  admin_not_contains?: InputMaybe<Scalars["Bytes"]>;
5358
5381
  admin_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
5382
+ authTokenId?: InputMaybe<Scalars["BigInt"]>;
5383
+ authTokenId_gt?: InputMaybe<Scalars["BigInt"]>;
5384
+ authTokenId_gte?: InputMaybe<Scalars["BigInt"]>;
5385
+ authTokenId_in?: InputMaybe<Array<Scalars["BigInt"]>>;
5386
+ authTokenId_lt?: InputMaybe<Scalars["BigInt"]>;
5387
+ authTokenId_lte?: InputMaybe<Scalars["BigInt"]>;
5388
+ authTokenId_not?: InputMaybe<Scalars["BigInt"]>;
5389
+ authTokenId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
5390
+ authTokenType?: InputMaybe<Scalars["Int"]>;
5391
+ authTokenType_gt?: InputMaybe<Scalars["Int"]>;
5392
+ authTokenType_gte?: InputMaybe<Scalars["Int"]>;
5393
+ authTokenType_in?: InputMaybe<Array<Scalars["Int"]>>;
5394
+ authTokenType_lt?: InputMaybe<Scalars["Int"]>;
5395
+ authTokenType_lte?: InputMaybe<Scalars["Int"]>;
5396
+ authTokenType_not?: InputMaybe<Scalars["Int"]>;
5397
+ authTokenType_not_in?: InputMaybe<Array<Scalars["Int"]>>;
5359
5398
  clerk?: InputMaybe<Scalars["Bytes"]>;
5360
5399
  clerk_contains?: InputMaybe<Scalars["Bytes"]>;
5361
5400
  clerk_in?: InputMaybe<Array<Scalars["Bytes"]>>;
@@ -5390,11 +5429,19 @@ export type Seller_Filter = {
5390
5429
  treasury_not?: InputMaybe<Scalars["Bytes"]>;
5391
5430
  treasury_not_contains?: InputMaybe<Scalars["Bytes"]>;
5392
5431
  treasury_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
5432
+ voucherCloneAddress?: InputMaybe<Scalars["Bytes"]>;
5433
+ voucherCloneAddress_contains?: InputMaybe<Scalars["Bytes"]>;
5434
+ voucherCloneAddress_in?: InputMaybe<Array<Scalars["Bytes"]>>;
5435
+ voucherCloneAddress_not?: InputMaybe<Scalars["Bytes"]>;
5436
+ voucherCloneAddress_not_contains?: InputMaybe<Scalars["Bytes"]>;
5437
+ voucherCloneAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
5393
5438
  };
5394
5439
 
5395
5440
  export enum Seller_OrderBy {
5396
5441
  Active = "active",
5397
5442
  Admin = "admin",
5443
+ AuthTokenId = "authTokenId",
5444
+ AuthTokenType = "authTokenType",
5398
5445
  Clerk = "clerk",
5399
5446
  Exchanges = "exchanges",
5400
5447
  Funds = "funds",
@@ -5402,7 +5449,8 @@ export enum Seller_OrderBy {
5402
5449
  Offers = "offers",
5403
5450
  Operator = "operator",
5404
5451
  SellerId = "sellerId",
5405
- Treasury = "treasury"
5452
+ Treasury = "treasury",
5453
+ VoucherCloneAddress = "voucherCloneAddress"
5406
5454
  }
5407
5455
 
5408
5456
  export type Subscription = {
@@ -5993,6 +6041,9 @@ export type GetSellerByIdQueryQuery = {
5993
6041
  admin: string;
5994
6042
  clerk: string;
5995
6043
  treasury: string;
6044
+ authTokenId: string;
6045
+ authTokenType: number;
6046
+ voucherCloneAddress: string;
5996
6047
  active: boolean;
5997
6048
  funds?: Array<{
5998
6049
  __typename?: "FundsEntity";
@@ -6015,6 +6066,8 @@ export type GetSellerByIdQueryQuery = {
6015
6066
  price: string;
6016
6067
  sellerDeposit: string;
6017
6068
  protocolFee: string;
6069
+ agentFee: string;
6070
+ agentId: string;
6018
6071
  buyerCancelPenalty: string;
6019
6072
  quantityAvailable: string;
6020
6073
  quantityInitial: string;
@@ -6036,6 +6089,9 @@ export type GetSellerByIdQueryQuery = {
6036
6089
  admin: string;
6037
6090
  clerk: string;
6038
6091
  treasury: string;
6092
+ authTokenId: string;
6093
+ authTokenType: number;
6094
+ voucherCloneAddress: string;
6039
6095
  active: boolean;
6040
6096
  };
6041
6097
  exchangeToken: {
@@ -6152,6 +6208,9 @@ export type GetSellersQueryQuery = {
6152
6208
  admin: string;
6153
6209
  clerk: string;
6154
6210
  treasury: string;
6211
+ authTokenId: string;
6212
+ authTokenType: number;
6213
+ voucherCloneAddress: string;
6155
6214
  active: boolean;
6156
6215
  funds?: Array<{
6157
6216
  __typename?: "FundsEntity";
@@ -6174,6 +6233,8 @@ export type GetSellersQueryQuery = {
6174
6233
  price: string;
6175
6234
  sellerDeposit: string;
6176
6235
  protocolFee: string;
6236
+ agentFee: string;
6237
+ agentId: string;
6177
6238
  buyerCancelPenalty: string;
6178
6239
  quantityAvailable: string;
6179
6240
  quantityInitial: string;
@@ -6195,6 +6256,9 @@ export type GetSellersQueryQuery = {
6195
6256
  admin: string;
6196
6257
  clerk: string;
6197
6258
  treasury: string;
6259
+ authTokenId: string;
6260
+ authTokenType: number;
6261
+ voucherCloneAddress: string;
6198
6262
  active: boolean;
6199
6263
  };
6200
6264
  exchangeToken: {
@@ -6424,6 +6488,8 @@ export type GetDisputeResolverByIdQueryQuery = {
6424
6488
  price: string;
6425
6489
  sellerDeposit: string;
6426
6490
  protocolFee: string;
6491
+ agentFee: string;
6492
+ agentId: string;
6427
6493
  buyerCancelPenalty: string;
6428
6494
  quantityAvailable: string;
6429
6495
  quantityInitial: string;
@@ -6445,6 +6511,9 @@ export type GetDisputeResolverByIdQueryQuery = {
6445
6511
  admin: string;
6446
6512
  clerk: string;
6447
6513
  treasury: string;
6514
+ authTokenId: string;
6515
+ authTokenType: number;
6516
+ voucherCloneAddress: string;
6448
6517
  active: boolean;
6449
6518
  };
6450
6519
  exchangeToken: {
@@ -6561,6 +6630,8 @@ export type GetDisputeResolversQueryQuery = {
6561
6630
  price: string;
6562
6631
  sellerDeposit: string;
6563
6632
  protocolFee: string;
6633
+ agentFee: string;
6634
+ agentId: string;
6564
6635
  buyerCancelPenalty: string;
6565
6636
  quantityAvailable: string;
6566
6637
  quantityInitial: string;
@@ -6582,6 +6653,9 @@ export type GetDisputeResolversQueryQuery = {
6582
6653
  admin: string;
6583
6654
  clerk: string;
6584
6655
  treasury: string;
6656
+ authTokenId: string;
6657
+ authTokenType: number;
6658
+ voucherCloneAddress: string;
6585
6659
  active: boolean;
6586
6660
  };
6587
6661
  exchangeToken: {
@@ -6671,6 +6745,9 @@ export type SellerFieldsFragment = {
6671
6745
  admin: string;
6672
6746
  clerk: string;
6673
6747
  treasury: string;
6748
+ authTokenId: string;
6749
+ authTokenType: number;
6750
+ voucherCloneAddress: string;
6674
6751
  active: boolean;
6675
6752
  funds?: Array<{
6676
6753
  __typename?: "FundsEntity";
@@ -6693,6 +6770,8 @@ export type SellerFieldsFragment = {
6693
6770
  price: string;
6694
6771
  sellerDeposit: string;
6695
6772
  protocolFee: string;
6773
+ agentFee: string;
6774
+ agentId: string;
6696
6775
  buyerCancelPenalty: string;
6697
6776
  quantityAvailable: string;
6698
6777
  quantityInitial: string;
@@ -6714,6 +6793,9 @@ export type SellerFieldsFragment = {
6714
6793
  admin: string;
6715
6794
  clerk: string;
6716
6795
  treasury: string;
6796
+ authTokenId: string;
6797
+ authTokenType: number;
6798
+ voucherCloneAddress: string;
6717
6799
  active: boolean;
6718
6800
  };
6719
6801
  exchangeToken: {
@@ -6801,6 +6883,9 @@ export type BaseSellerFieldsFragment = {
6801
6883
  admin: string;
6802
6884
  clerk: string;
6803
6885
  treasury: string;
6886
+ authTokenId: string;
6887
+ authTokenType: number;
6888
+ voucherCloneAddress: string;
6804
6889
  active: boolean;
6805
6890
  };
6806
6891
 
@@ -6864,6 +6949,8 @@ export type DisputeResolverFieldsFragment = {
6864
6949
  price: string;
6865
6950
  sellerDeposit: string;
6866
6951
  protocolFee: string;
6952
+ agentFee: string;
6953
+ agentId: string;
6867
6954
  buyerCancelPenalty: string;
6868
6955
  quantityAvailable: string;
6869
6956
  quantityInitial: string;
@@ -6885,6 +6972,9 @@ export type DisputeResolverFieldsFragment = {
6885
6972
  admin: string;
6886
6973
  clerk: string;
6887
6974
  treasury: string;
6975
+ authTokenId: string;
6976
+ authTokenType: number;
6977
+ voucherCloneAddress: string;
6888
6978
  active: boolean;
6889
6979
  };
6890
6980
  exchangeToken: {
@@ -7063,6 +7153,9 @@ export type GetDisputeByIdQueryQuery = {
7063
7153
  admin: string;
7064
7154
  clerk: string;
7065
7155
  treasury: string;
7156
+ authTokenId: string;
7157
+ authTokenType: number;
7158
+ voucherCloneAddress: string;
7066
7159
  active: boolean;
7067
7160
  };
7068
7161
  buyer: {
@@ -7116,6 +7209,9 @@ export type GetDisputesQueryQuery = {
7116
7209
  admin: string;
7117
7210
  clerk: string;
7118
7211
  treasury: string;
7212
+ authTokenId: string;
7213
+ authTokenType: number;
7214
+ voucherCloneAddress: string;
7119
7215
  active: boolean;
7120
7216
  };
7121
7217
  buyer: {
@@ -7159,6 +7255,9 @@ export type DisputeFieldsFragment = {
7159
7255
  admin: string;
7160
7256
  clerk: string;
7161
7257
  treasury: string;
7258
+ authTokenId: string;
7259
+ authTokenType: number;
7260
+ voucherCloneAddress: string;
7162
7261
  active: boolean;
7163
7262
  };
7164
7263
  buyer: { __typename?: "Buyer"; id: string; wallet: string; active: boolean };
@@ -7196,6 +7295,9 @@ export type BaseDisputeFieldsFragment = {
7196
7295
  admin: string;
7197
7296
  clerk: string;
7198
7297
  treasury: string;
7298
+ authTokenId: string;
7299
+ authTokenType: number;
7300
+ voucherCloneAddress: string;
7199
7301
  active: boolean;
7200
7302
  };
7201
7303
  buyer: { __typename?: "Buyer"; id: string; wallet: string; active: boolean };
@@ -7238,6 +7340,8 @@ export type GetExchangeTokenByIdQueryQuery = {
7238
7340
  price: string;
7239
7341
  sellerDeposit: string;
7240
7342
  protocolFee: string;
7343
+ agentFee: string;
7344
+ agentId: string;
7241
7345
  buyerCancelPenalty: string;
7242
7346
  quantityAvailable: string;
7243
7347
  quantityInitial: string;
@@ -7259,6 +7363,9 @@ export type GetExchangeTokenByIdQueryQuery = {
7259
7363
  admin: string;
7260
7364
  clerk: string;
7261
7365
  treasury: string;
7366
+ authTokenId: string;
7367
+ authTokenType: number;
7368
+ voucherCloneAddress: string;
7262
7369
  active: boolean;
7263
7370
  };
7264
7371
  exchangeToken: {
@@ -7368,6 +7475,8 @@ export type GetExchangeTokensQueryQuery = {
7368
7475
  price: string;
7369
7476
  sellerDeposit: string;
7370
7477
  protocolFee: string;
7478
+ agentFee: string;
7479
+ agentId: string;
7371
7480
  buyerCancelPenalty: string;
7372
7481
  quantityAvailable: string;
7373
7482
  quantityInitial: string;
@@ -7389,6 +7498,9 @@ export type GetExchangeTokensQueryQuery = {
7389
7498
  admin: string;
7390
7499
  clerk: string;
7391
7500
  treasury: string;
7501
+ authTokenId: string;
7502
+ authTokenType: number;
7503
+ voucherCloneAddress: string;
7392
7504
  active: boolean;
7393
7505
  };
7394
7506
  exchangeToken: {
@@ -7476,6 +7588,8 @@ export type ExchangeTokenFieldsFragment = {
7476
7588
  price: string;
7477
7589
  sellerDeposit: string;
7478
7590
  protocolFee: string;
7591
+ agentFee: string;
7592
+ agentId: string;
7479
7593
  buyerCancelPenalty: string;
7480
7594
  quantityAvailable: string;
7481
7595
  quantityInitial: string;
@@ -7497,6 +7611,9 @@ export type ExchangeTokenFieldsFragment = {
7497
7611
  admin: string;
7498
7612
  clerk: string;
7499
7613
  treasury: string;
7614
+ authTokenId: string;
7615
+ authTokenType: number;
7616
+ voucherCloneAddress: string;
7500
7617
  active: boolean;
7501
7618
  };
7502
7619
  exchangeToken: {
@@ -7610,6 +7727,9 @@ export type GetExchangeByIdQueryQuery = {
7610
7727
  admin: string;
7611
7728
  clerk: string;
7612
7729
  treasury: string;
7730
+ authTokenId: string;
7731
+ authTokenType: number;
7732
+ voucherCloneAddress: string;
7613
7733
  active: boolean;
7614
7734
  };
7615
7735
  offer: {
@@ -7619,6 +7739,8 @@ export type GetExchangeByIdQueryQuery = {
7619
7739
  price: string;
7620
7740
  sellerDeposit: string;
7621
7741
  protocolFee: string;
7742
+ agentFee: string;
7743
+ agentId: string;
7622
7744
  buyerCancelPenalty: string;
7623
7745
  quantityAvailable: string;
7624
7746
  quantityInitial: string;
@@ -7640,6 +7762,9 @@ export type GetExchangeByIdQueryQuery = {
7640
7762
  admin: string;
7641
7763
  clerk: string;
7642
7764
  treasury: string;
7765
+ authTokenId: string;
7766
+ authTokenType: number;
7767
+ voucherCloneAddress: string;
7643
7768
  active: boolean;
7644
7769
  };
7645
7770
  exchangeToken: {
@@ -7743,6 +7868,9 @@ export type GetExchangesQueryQuery = {
7743
7868
  admin: string;
7744
7869
  clerk: string;
7745
7870
  treasury: string;
7871
+ authTokenId: string;
7872
+ authTokenType: number;
7873
+ voucherCloneAddress: string;
7746
7874
  active: boolean;
7747
7875
  };
7748
7876
  offer: {
@@ -7752,6 +7880,8 @@ export type GetExchangesQueryQuery = {
7752
7880
  price: string;
7753
7881
  sellerDeposit: string;
7754
7882
  protocolFee: string;
7883
+ agentFee: string;
7884
+ agentId: string;
7755
7885
  buyerCancelPenalty: string;
7756
7886
  quantityAvailable: string;
7757
7887
  quantityInitial: string;
@@ -7773,6 +7903,9 @@ export type GetExchangesQueryQuery = {
7773
7903
  admin: string;
7774
7904
  clerk: string;
7775
7905
  treasury: string;
7906
+ authTokenId: string;
7907
+ authTokenType: number;
7908
+ voucherCloneAddress: string;
7776
7909
  active: boolean;
7777
7910
  };
7778
7911
  exchangeToken: {
@@ -7861,6 +7994,9 @@ export type ExchangeFieldsFragment = {
7861
7994
  admin: string;
7862
7995
  clerk: string;
7863
7996
  treasury: string;
7997
+ authTokenId: string;
7998
+ authTokenType: number;
7999
+ voucherCloneAddress: string;
7864
8000
  active: boolean;
7865
8001
  };
7866
8002
  offer: {
@@ -7870,6 +8006,8 @@ export type ExchangeFieldsFragment = {
7870
8006
  price: string;
7871
8007
  sellerDeposit: string;
7872
8008
  protocolFee: string;
8009
+ agentFee: string;
8010
+ agentId: string;
7873
8011
  buyerCancelPenalty: string;
7874
8012
  quantityAvailable: string;
7875
8013
  quantityInitial: string;
@@ -7891,6 +8029,9 @@ export type ExchangeFieldsFragment = {
7891
8029
  admin: string;
7892
8030
  clerk: string;
7893
8031
  treasury: string;
8032
+ authTokenId: string;
8033
+ authTokenType: number;
8034
+ voucherCloneAddress: string;
7894
8035
  active: boolean;
7895
8036
  };
7896
8037
  exchangeToken: {
@@ -8080,6 +8221,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
8080
8221
  price: string;
8081
8222
  sellerDeposit: string;
8082
8223
  protocolFee: string;
8224
+ agentFee: string;
8225
+ agentId: string;
8083
8226
  buyerCancelPenalty: string;
8084
8227
  quantityAvailable: string;
8085
8228
  quantityInitial: string;
@@ -8101,6 +8244,9 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
8101
8244
  admin: string;
8102
8245
  clerk: string;
8103
8246
  treasury: string;
8247
+ authTokenId: string;
8248
+ authTokenType: number;
8249
+ voucherCloneAddress: string;
8104
8250
  active: boolean;
8105
8251
  };
8106
8252
  exchangeToken: {
@@ -8172,6 +8318,9 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
8172
8318
  admin: string;
8173
8319
  clerk: string;
8174
8320
  treasury: string;
8321
+ authTokenId: string;
8322
+ authTokenType: number;
8323
+ voucherCloneAddress: string;
8175
8324
  active: boolean;
8176
8325
  };
8177
8326
  exchangeToken: {
@@ -8222,6 +8371,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
8222
8371
  price: string;
8223
8372
  sellerDeposit: string;
8224
8373
  protocolFee: string;
8374
+ agentFee: string;
8375
+ agentId: string;
8225
8376
  buyerCancelPenalty: string;
8226
8377
  quantityAvailable: string;
8227
8378
  quantityInitial: string;
@@ -8243,6 +8394,9 @@ export type GetBaseMetadataEntitiesQueryQuery = {
8243
8394
  admin: string;
8244
8395
  clerk: string;
8245
8396
  treasury: string;
8397
+ authTokenId: string;
8398
+ authTokenType: number;
8399
+ voucherCloneAddress: string;
8246
8400
  active: boolean;
8247
8401
  };
8248
8402
  exchangeToken: {
@@ -8314,6 +8468,9 @@ export type GetBaseMetadataEntitiesQueryQuery = {
8314
8468
  admin: string;
8315
8469
  clerk: string;
8316
8470
  treasury: string;
8471
+ authTokenId: string;
8472
+ authTokenType: number;
8473
+ voucherCloneAddress: string;
8317
8474
  active: boolean;
8318
8475
  };
8319
8476
  exchangeToken: {
@@ -8354,6 +8511,8 @@ export type BaseMetadataEntityFieldsFragment = {
8354
8511
  price: string;
8355
8512
  sellerDeposit: string;
8356
8513
  protocolFee: string;
8514
+ agentFee: string;
8515
+ agentId: string;
8357
8516
  buyerCancelPenalty: string;
8358
8517
  quantityAvailable: string;
8359
8518
  quantityInitial: string;
@@ -8375,6 +8534,9 @@ export type BaseMetadataEntityFieldsFragment = {
8375
8534
  admin: string;
8376
8535
  clerk: string;
8377
8536
  treasury: string;
8537
+ authTokenId: string;
8538
+ authTokenType: number;
8539
+ voucherCloneAddress: string;
8378
8540
  active: boolean;
8379
8541
  };
8380
8542
  exchangeToken: {
@@ -8446,6 +8608,9 @@ export type BaseMetadataEntityFieldsFragment = {
8446
8608
  admin: string;
8447
8609
  clerk: string;
8448
8610
  treasury: string;
8611
+ authTokenId: string;
8612
+ authTokenType: number;
8613
+ voucherCloneAddress: string;
8449
8614
  active: boolean;
8450
8615
  };
8451
8616
  exchangeToken: {
@@ -8485,6 +8650,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
8485
8650
  price: string;
8486
8651
  sellerDeposit: string;
8487
8652
  protocolFee: string;
8653
+ agentFee: string;
8654
+ agentId: string;
8488
8655
  buyerCancelPenalty: string;
8489
8656
  quantityAvailable: string;
8490
8657
  quantityInitial: string;
@@ -8506,6 +8673,9 @@ export type BaseBaseMetadataEntityFieldsFragment = {
8506
8673
  admin: string;
8507
8674
  clerk: string;
8508
8675
  treasury: string;
8676
+ authTokenId: string;
8677
+ authTokenType: number;
8678
+ voucherCloneAddress: string;
8509
8679
  active: boolean;
8510
8680
  };
8511
8681
  exchangeToken: {
@@ -8577,6 +8747,9 @@ export type BaseBaseMetadataEntityFieldsFragment = {
8577
8747
  admin: string;
8578
8748
  clerk: string;
8579
8749
  treasury: string;
8750
+ authTokenId: string;
8751
+ authTokenType: number;
8752
+ voucherCloneAddress: string;
8580
8753
  active: boolean;
8581
8754
  };
8582
8755
  exchangeToken: {
@@ -8662,6 +8835,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
8662
8835
  price: string;
8663
8836
  sellerDeposit: string;
8664
8837
  protocolFee: string;
8838
+ agentFee: string;
8839
+ agentId: string;
8665
8840
  buyerCancelPenalty: string;
8666
8841
  quantityAvailable: string;
8667
8842
  quantityInitial: string;
@@ -8683,6 +8858,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
8683
8858
  admin: string;
8684
8859
  clerk: string;
8685
8860
  treasury: string;
8861
+ authTokenId: string;
8862
+ authTokenType: number;
8863
+ voucherCloneAddress: string;
8686
8864
  active: boolean;
8687
8865
  };
8688
8866
  exchangeToken: {
@@ -8754,6 +8932,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
8754
8932
  admin: string;
8755
8933
  clerk: string;
8756
8934
  treasury: string;
8935
+ authTokenId: string;
8936
+ authTokenType: number;
8937
+ voucherCloneAddress: string;
8757
8938
  active: boolean;
8758
8939
  };
8759
8940
  exchangeToken: {
@@ -8874,6 +9055,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
8874
9055
  admin: string;
8875
9056
  clerk: string;
8876
9057
  treasury: string;
9058
+ authTokenId: string;
9059
+ authTokenType: number;
9060
+ voucherCloneAddress: string;
8877
9061
  active: boolean;
8878
9062
  };
8879
9063
  };
@@ -8918,6 +9102,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
8918
9102
  price: string;
8919
9103
  sellerDeposit: string;
8920
9104
  protocolFee: string;
9105
+ agentFee: string;
9106
+ agentId: string;
8921
9107
  buyerCancelPenalty: string;
8922
9108
  quantityAvailable: string;
8923
9109
  quantityInitial: string;
@@ -8939,6 +9125,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
8939
9125
  admin: string;
8940
9126
  clerk: string;
8941
9127
  treasury: string;
9128
+ authTokenId: string;
9129
+ authTokenType: number;
9130
+ voucherCloneAddress: string;
8942
9131
  active: boolean;
8943
9132
  };
8944
9133
  exchangeToken: {
@@ -9010,6 +9199,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
9010
9199
  admin: string;
9011
9200
  clerk: string;
9012
9201
  treasury: string;
9202
+ authTokenId: string;
9203
+ authTokenType: number;
9204
+ voucherCloneAddress: string;
9013
9205
  active: boolean;
9014
9206
  };
9015
9207
  exchangeToken: {
@@ -9130,6 +9322,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
9130
9322
  admin: string;
9131
9323
  clerk: string;
9132
9324
  treasury: string;
9325
+ authTokenId: string;
9326
+ authTokenType: number;
9327
+ voucherCloneAddress: string;
9133
9328
  active: boolean;
9134
9329
  };
9135
9330
  };
@@ -9164,6 +9359,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
9164
9359
  price: string;
9165
9360
  sellerDeposit: string;
9166
9361
  protocolFee: string;
9362
+ agentFee: string;
9363
+ agentId: string;
9167
9364
  buyerCancelPenalty: string;
9168
9365
  quantityAvailable: string;
9169
9366
  quantityInitial: string;
@@ -9185,6 +9382,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
9185
9382
  admin: string;
9186
9383
  clerk: string;
9187
9384
  treasury: string;
9385
+ authTokenId: string;
9386
+ authTokenType: number;
9387
+ voucherCloneAddress: string;
9188
9388
  active: boolean;
9189
9389
  };
9190
9390
  exchangeToken: {
@@ -9256,6 +9456,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
9256
9456
  admin: string;
9257
9457
  clerk: string;
9258
9458
  treasury: string;
9459
+ authTokenId: string;
9460
+ authTokenType: number;
9461
+ voucherCloneAddress: string;
9259
9462
  active: boolean;
9260
9463
  };
9261
9464
  exchangeToken: {
@@ -9376,6 +9579,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
9376
9579
  admin: string;
9377
9580
  clerk: string;
9378
9581
  treasury: string;
9582
+ authTokenId: string;
9583
+ authTokenType: number;
9584
+ voucherCloneAddress: string;
9379
9585
  active: boolean;
9380
9586
  };
9381
9587
  };
@@ -9409,6 +9615,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
9409
9615
  price: string;
9410
9616
  sellerDeposit: string;
9411
9617
  protocolFee: string;
9618
+ agentFee: string;
9619
+ agentId: string;
9412
9620
  buyerCancelPenalty: string;
9413
9621
  quantityAvailable: string;
9414
9622
  quantityInitial: string;
@@ -9430,6 +9638,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
9430
9638
  admin: string;
9431
9639
  clerk: string;
9432
9640
  treasury: string;
9641
+ authTokenId: string;
9642
+ authTokenType: number;
9643
+ voucherCloneAddress: string;
9433
9644
  active: boolean;
9434
9645
  };
9435
9646
  exchangeToken: {
@@ -9501,6 +9712,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
9501
9712
  admin: string;
9502
9713
  clerk: string;
9503
9714
  treasury: string;
9715
+ authTokenId: string;
9716
+ authTokenType: number;
9717
+ voucherCloneAddress: string;
9504
9718
  active: boolean;
9505
9719
  };
9506
9720
  exchangeToken: {
@@ -9621,6 +9835,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
9621
9835
  admin: string;
9622
9836
  clerk: string;
9623
9837
  treasury: string;
9838
+ authTokenId: string;
9839
+ authTokenType: number;
9840
+ voucherCloneAddress: string;
9624
9841
  active: boolean;
9625
9842
  };
9626
9843
  };
@@ -9776,6 +9993,9 @@ export type BaseProductV1SellerFieldsFragment = {
9776
9993
  admin: string;
9777
9994
  clerk: string;
9778
9995
  treasury: string;
9996
+ authTokenId: string;
9997
+ authTokenType: number;
9998
+ voucherCloneAddress: string;
9779
9999
  active: boolean;
9780
10000
  };
9781
10001
  };
@@ -9874,6 +10094,8 @@ export type GetOfferByIdQueryQuery = {
9874
10094
  price: string;
9875
10095
  sellerDeposit: string;
9876
10096
  protocolFee: string;
10097
+ agentFee: string;
10098
+ agentId: string;
9877
10099
  buyerCancelPenalty: string;
9878
10100
  quantityAvailable: string;
9879
10101
  quantityInitial: string;
@@ -9909,6 +10131,9 @@ export type GetOfferByIdQueryQuery = {
9909
10131
  admin: string;
9910
10132
  clerk: string;
9911
10133
  treasury: string;
10134
+ authTokenId: string;
10135
+ authTokenType: number;
10136
+ voucherCloneAddress: string;
9912
10137
  active: boolean;
9913
10138
  };
9914
10139
  exchangeToken: {
@@ -9998,6 +10223,8 @@ export type GetOffersQueryQuery = {
9998
10223
  price: string;
9999
10224
  sellerDeposit: string;
10000
10225
  protocolFee: string;
10226
+ agentFee: string;
10227
+ agentId: string;
10001
10228
  buyerCancelPenalty: string;
10002
10229
  quantityAvailable: string;
10003
10230
  quantityInitial: string;
@@ -10033,6 +10260,9 @@ export type GetOffersQueryQuery = {
10033
10260
  admin: string;
10034
10261
  clerk: string;
10035
10262
  treasury: string;
10263
+ authTokenId: string;
10264
+ authTokenType: number;
10265
+ voucherCloneAddress: string;
10036
10266
  active: boolean;
10037
10267
  };
10038
10268
  exchangeToken: {
@@ -10106,6 +10336,8 @@ export type OfferFieldsFragment = {
10106
10336
  price: string;
10107
10337
  sellerDeposit: string;
10108
10338
  protocolFee: string;
10339
+ agentFee: string;
10340
+ agentId: string;
10109
10341
  buyerCancelPenalty: string;
10110
10342
  quantityAvailable: string;
10111
10343
  quantityInitial: string;
@@ -10141,6 +10373,9 @@ export type OfferFieldsFragment = {
10141
10373
  admin: string;
10142
10374
  clerk: string;
10143
10375
  treasury: string;
10376
+ authTokenId: string;
10377
+ authTokenType: number;
10378
+ voucherCloneAddress: string;
10144
10379
  active: boolean;
10145
10380
  };
10146
10381
  exchangeToken: {
@@ -10213,6 +10448,8 @@ export type BaseOfferFieldsFragment = {
10213
10448
  price: string;
10214
10449
  sellerDeposit: string;
10215
10450
  protocolFee: string;
10451
+ agentFee: string;
10452
+ agentId: string;
10216
10453
  buyerCancelPenalty: string;
10217
10454
  quantityAvailable: string;
10218
10455
  quantityInitial: string;
@@ -10234,6 +10471,9 @@ export type BaseOfferFieldsFragment = {
10234
10471
  admin: string;
10235
10472
  clerk: string;
10236
10473
  treasury: string;
10474
+ authTokenId: string;
10475
+ authTokenType: number;
10476
+ voucherCloneAddress: string;
10237
10477
  active: boolean;
10238
10478
  };
10239
10479
  exchangeToken: {
@@ -10306,6 +10546,9 @@ export const BaseSellerFieldsFragmentDoc = gql`
10306
10546
  admin
10307
10547
  clerk
10308
10548
  treasury
10549
+ authTokenId
10550
+ authTokenType
10551
+ voucherCloneAddress
10309
10552
  active
10310
10553
  }
10311
10554
  `;
@@ -10380,6 +10623,8 @@ export const BaseOfferFieldsFragmentDoc = gql`
10380
10623
  price
10381
10624
  sellerDeposit
10382
10625
  protocolFee
10626
+ agentFee
10627
+ agentId
10383
10628
  buyerCancelPenalty
10384
10629
  quantityAvailable
10385
10630
  quantityInitial