@bosonprotocol/core-sdk 1.22.0-alpha.3 → 1.22.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 (86) hide show
  1. package/dist/cjs/core-sdk.d.ts +26 -1
  2. package/dist/cjs/core-sdk.d.ts.map +1 -1
  3. package/dist/cjs/core-sdk.js +51 -0
  4. package/dist/cjs/core-sdk.js.map +1 -1
  5. package/dist/cjs/groups/handler.d.ts +7 -0
  6. package/dist/cjs/groups/handler.d.ts.map +1 -0
  7. package/dist/cjs/groups/handler.js +23 -0
  8. package/dist/cjs/groups/handler.js.map +1 -0
  9. package/dist/cjs/groups/index.d.ts +4 -0
  10. package/dist/cjs/groups/index.d.ts.map +1 -0
  11. package/dist/cjs/groups/index.js +30 -0
  12. package/dist/cjs/groups/index.js.map +1 -0
  13. package/dist/cjs/groups/interface.d.ts +6 -0
  14. package/dist/cjs/groups/interface.d.ts.map +1 -0
  15. package/dist/cjs/groups/interface.js +29 -0
  16. package/dist/cjs/groups/interface.js.map +1 -0
  17. package/dist/cjs/groups/subgraph.d.ts +2 -0
  18. package/dist/cjs/groups/subgraph.d.ts.map +1 -0
  19. package/dist/cjs/groups/subgraph.js +5 -0
  20. package/dist/cjs/groups/subgraph.js.map +1 -0
  21. package/dist/cjs/index.d.ts +1 -0
  22. package/dist/cjs/index.d.ts.map +1 -1
  23. package/dist/cjs/index.js +2 -1
  24. package/dist/cjs/index.js.map +1 -1
  25. package/dist/cjs/orchestration/handler.d.ts +9 -1
  26. package/dist/cjs/orchestration/handler.d.ts.map +1 -1
  27. package/dist/cjs/orchestration/handler.js +18 -1
  28. package/dist/cjs/orchestration/handler.js.map +1 -1
  29. package/dist/cjs/orchestration/interface.d.ts +2 -0
  30. package/dist/cjs/orchestration/interface.d.ts.map +1 -1
  31. package/dist/cjs/orchestration/interface.js +13 -1
  32. package/dist/cjs/orchestration/interface.js.map +1 -1
  33. package/dist/cjs/subgraph.d.ts +509 -0
  34. package/dist/cjs/subgraph.d.ts.map +1 -1
  35. package/dist/cjs/subgraph.js +35 -3
  36. package/dist/cjs/subgraph.js.map +1 -1
  37. package/dist/esm/core-sdk.d.ts +26 -1
  38. package/dist/esm/core-sdk.d.ts.map +1 -1
  39. package/dist/esm/core-sdk.js +47 -0
  40. package/dist/esm/core-sdk.js.map +1 -1
  41. package/dist/esm/groups/handler.d.ts +7 -0
  42. package/dist/esm/groups/handler.d.ts.map +1 -0
  43. package/dist/esm/groups/handler.js +8 -0
  44. package/dist/esm/groups/handler.js.map +1 -0
  45. package/dist/esm/groups/index.d.ts +4 -0
  46. package/dist/esm/groups/index.d.ts.map +1 -0
  47. package/dist/esm/groups/index.js +4 -0
  48. package/dist/esm/groups/index.js.map +1 -0
  49. package/dist/esm/groups/interface.d.ts +6 -0
  50. package/dist/esm/groups/interface.d.ts.map +1 -0
  51. package/dist/esm/groups/interface.js +24 -0
  52. package/dist/esm/groups/interface.js.map +1 -0
  53. package/dist/esm/groups/subgraph.d.ts +2 -0
  54. package/dist/esm/groups/subgraph.d.ts.map +1 -0
  55. package/dist/esm/groups/subgraph.js +2 -0
  56. package/dist/esm/groups/subgraph.js.map +1 -0
  57. package/dist/esm/index.d.ts +1 -0
  58. package/dist/esm/index.d.ts.map +1 -1
  59. package/dist/esm/index.js +1 -0
  60. package/dist/esm/index.js.map +1 -1
  61. package/dist/esm/orchestration/handler.d.ts +9 -1
  62. package/dist/esm/orchestration/handler.d.ts.map +1 -1
  63. package/dist/esm/orchestration/handler.js +15 -1
  64. package/dist/esm/orchestration/handler.js.map +1 -1
  65. package/dist/esm/orchestration/interface.d.ts +2 -0
  66. package/dist/esm/orchestration/interface.d.ts.map +1 -1
  67. package/dist/esm/orchestration/interface.js +11 -0
  68. package/dist/esm/orchestration/interface.js.map +1 -1
  69. package/dist/esm/subgraph.d.ts +509 -0
  70. package/dist/esm/subgraph.d.ts.map +1 -1
  71. package/dist/esm/subgraph.js +32 -0
  72. package/dist/esm/subgraph.js.map +1 -1
  73. package/package.json +3 -3
  74. package/src/core-sdk.ts +65 -1
  75. package/src/groups/handler.ts +17 -0
  76. package/src/groups/index.ts +3 -0
  77. package/src/groups/interface.ts +36 -0
  78. package/src/groups/queries.graphql +9 -0
  79. package/src/groups/subgraph.ts +1 -0
  80. package/src/index.ts +1 -0
  81. package/src/metadata/base.graphql +1 -0
  82. package/src/metadata/product-v1.graphql +1 -0
  83. package/src/offers/queries.graphql +4 -0
  84. package/src/orchestration/handler.ts +30 -2
  85. package/src/orchestration/interface.ts +19 -1
  86. package/src/subgraph.ts +534 -0
@@ -164,6 +164,7 @@ export declare type BaseMetadataEntity = MetadataInterface & {
164
164
  __typename?: "BaseMetadataEntity";
165
165
  animationUrl?: Maybe<Scalars["String"]>;
166
166
  attributes?: Maybe<Array<MetadataAttribute>>;
167
+ condition?: Maybe<Scalars["String"]>;
167
168
  /**
168
169
  * Enriched fields from offer entity to allow nested query workaround
169
170
  *
@@ -233,6 +234,26 @@ export declare type BaseMetadataEntity_Filter = {
233
234
  attributes_not?: InputMaybe<Array<Scalars["String"]>>;
234
235
  attributes_not_contains?: InputMaybe<Array<Scalars["String"]>>;
235
236
  attributes_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
237
+ condition?: InputMaybe<Scalars["String"]>;
238
+ condition_contains?: InputMaybe<Scalars["String"]>;
239
+ condition_contains_nocase?: InputMaybe<Scalars["String"]>;
240
+ condition_ends_with?: InputMaybe<Scalars["String"]>;
241
+ condition_ends_with_nocase?: InputMaybe<Scalars["String"]>;
242
+ condition_gt?: InputMaybe<Scalars["String"]>;
243
+ condition_gte?: InputMaybe<Scalars["String"]>;
244
+ condition_in?: InputMaybe<Array<Scalars["String"]>>;
245
+ condition_lt?: InputMaybe<Scalars["String"]>;
246
+ condition_lte?: InputMaybe<Scalars["String"]>;
247
+ condition_not?: InputMaybe<Scalars["String"]>;
248
+ condition_not_contains?: InputMaybe<Scalars["String"]>;
249
+ condition_not_contains_nocase?: InputMaybe<Scalars["String"]>;
250
+ condition_not_ends_with?: InputMaybe<Scalars["String"]>;
251
+ condition_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
252
+ condition_not_in?: InputMaybe<Array<Scalars["String"]>>;
253
+ condition_not_starts_with?: InputMaybe<Scalars["String"]>;
254
+ condition_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
255
+ condition_starts_with?: InputMaybe<Scalars["String"]>;
256
+ condition_starts_with_nocase?: InputMaybe<Scalars["String"]>;
236
257
  createdAt?: InputMaybe<Scalars["BigInt"]>;
237
258
  createdAt_gt?: InputMaybe<Scalars["BigInt"]>;
238
259
  createdAt_gte?: InputMaybe<Scalars["BigInt"]>;
@@ -484,6 +505,7 @@ export declare type BaseMetadataEntity_Filter = {
484
505
  export declare enum BaseMetadataEntity_OrderBy {
485
506
  AnimationUrl = "animationUrl",
486
507
  Attributes = "attributes",
508
+ Condition = "condition",
487
509
  CreatedAt = "createdAt",
488
510
  Description = "description",
489
511
  ExchangeToken = "exchangeToken",
@@ -573,6 +595,87 @@ export declare enum Buyer_OrderBy {
573
595
  Logs = "logs",
574
596
  Wallet = "wallet"
575
597
  }
598
+ /**
599
+ * Groups
600
+ *
601
+ */
602
+ export declare type ConditionEntity = {
603
+ __typename?: "ConditionEntity";
604
+ id: Scalars["ID"];
605
+ maxCommits: Scalars["BigInt"];
606
+ method: Scalars["Int"];
607
+ threshold: Scalars["BigInt"];
608
+ tokenAddress: Scalars["Bytes"];
609
+ tokenId: Scalars["BigInt"];
610
+ tokenType: Scalars["Int"];
611
+ };
612
+ export declare type ConditionEntity_Filter = {
613
+ /** Filter for the block changed event. */
614
+ _change_block?: InputMaybe<BlockChangedFilter>;
615
+ id?: InputMaybe<Scalars["ID"]>;
616
+ id_gt?: InputMaybe<Scalars["ID"]>;
617
+ id_gte?: InputMaybe<Scalars["ID"]>;
618
+ id_in?: InputMaybe<Array<Scalars["ID"]>>;
619
+ id_lt?: InputMaybe<Scalars["ID"]>;
620
+ id_lte?: InputMaybe<Scalars["ID"]>;
621
+ id_not?: InputMaybe<Scalars["ID"]>;
622
+ id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
623
+ maxCommits?: InputMaybe<Scalars["BigInt"]>;
624
+ maxCommits_gt?: InputMaybe<Scalars["BigInt"]>;
625
+ maxCommits_gte?: InputMaybe<Scalars["BigInt"]>;
626
+ maxCommits_in?: InputMaybe<Array<Scalars["BigInt"]>>;
627
+ maxCommits_lt?: InputMaybe<Scalars["BigInt"]>;
628
+ maxCommits_lte?: InputMaybe<Scalars["BigInt"]>;
629
+ maxCommits_not?: InputMaybe<Scalars["BigInt"]>;
630
+ maxCommits_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
631
+ method?: InputMaybe<Scalars["Int"]>;
632
+ method_gt?: InputMaybe<Scalars["Int"]>;
633
+ method_gte?: InputMaybe<Scalars["Int"]>;
634
+ method_in?: InputMaybe<Array<Scalars["Int"]>>;
635
+ method_lt?: InputMaybe<Scalars["Int"]>;
636
+ method_lte?: InputMaybe<Scalars["Int"]>;
637
+ method_not?: InputMaybe<Scalars["Int"]>;
638
+ method_not_in?: InputMaybe<Array<Scalars["Int"]>>;
639
+ threshold?: InputMaybe<Scalars["BigInt"]>;
640
+ threshold_gt?: InputMaybe<Scalars["BigInt"]>;
641
+ threshold_gte?: InputMaybe<Scalars["BigInt"]>;
642
+ threshold_in?: InputMaybe<Array<Scalars["BigInt"]>>;
643
+ threshold_lt?: InputMaybe<Scalars["BigInt"]>;
644
+ threshold_lte?: InputMaybe<Scalars["BigInt"]>;
645
+ threshold_not?: InputMaybe<Scalars["BigInt"]>;
646
+ threshold_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
647
+ tokenAddress?: InputMaybe<Scalars["Bytes"]>;
648
+ tokenAddress_contains?: InputMaybe<Scalars["Bytes"]>;
649
+ tokenAddress_in?: InputMaybe<Array<Scalars["Bytes"]>>;
650
+ tokenAddress_not?: InputMaybe<Scalars["Bytes"]>;
651
+ tokenAddress_not_contains?: InputMaybe<Scalars["Bytes"]>;
652
+ tokenAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
653
+ tokenId?: InputMaybe<Scalars["BigInt"]>;
654
+ tokenId_gt?: InputMaybe<Scalars["BigInt"]>;
655
+ tokenId_gte?: InputMaybe<Scalars["BigInt"]>;
656
+ tokenId_in?: InputMaybe<Array<Scalars["BigInt"]>>;
657
+ tokenId_lt?: InputMaybe<Scalars["BigInt"]>;
658
+ tokenId_lte?: InputMaybe<Scalars["BigInt"]>;
659
+ tokenId_not?: InputMaybe<Scalars["BigInt"]>;
660
+ tokenId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
661
+ tokenType?: InputMaybe<Scalars["Int"]>;
662
+ tokenType_gt?: InputMaybe<Scalars["Int"]>;
663
+ tokenType_gte?: InputMaybe<Scalars["Int"]>;
664
+ tokenType_in?: InputMaybe<Array<Scalars["Int"]>>;
665
+ tokenType_lt?: InputMaybe<Scalars["Int"]>;
666
+ tokenType_lte?: InputMaybe<Scalars["Int"]>;
667
+ tokenType_not?: InputMaybe<Scalars["Int"]>;
668
+ tokenType_not_in?: InputMaybe<Array<Scalars["Int"]>>;
669
+ };
670
+ export declare enum ConditionEntity_OrderBy {
671
+ Id = "id",
672
+ MaxCommits = "maxCommits",
673
+ Method = "method",
674
+ Threshold = "threshold",
675
+ TokenAddress = "tokenAddress",
676
+ TokenId = "tokenId",
677
+ TokenType = "tokenType"
678
+ }
576
679
  export declare type Dispute = {
577
680
  __typename?: "Dispute";
578
681
  buyer: Buyer;
@@ -2134,6 +2237,7 @@ export declare enum MetadataAttribute_OrderBy {
2134
2237
  export declare type MetadataInterface = {
2135
2238
  animationUrl?: Maybe<Scalars["String"]>;
2136
2239
  attributes?: Maybe<Array<MetadataAttribute>>;
2240
+ condition?: Maybe<Scalars["String"]>;
2137
2241
  /**
2138
2242
  * Enriched fields from offer entity to allow nested query workaround
2139
2243
  *
@@ -2202,6 +2306,26 @@ export declare type MetadataInterface_Filter = {
2202
2306
  attributes_not?: InputMaybe<Array<Scalars["String"]>>;
2203
2307
  attributes_not_contains?: InputMaybe<Array<Scalars["String"]>>;
2204
2308
  attributes_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
2309
+ condition?: InputMaybe<Scalars["String"]>;
2310
+ condition_contains?: InputMaybe<Scalars["String"]>;
2311
+ condition_contains_nocase?: InputMaybe<Scalars["String"]>;
2312
+ condition_ends_with?: InputMaybe<Scalars["String"]>;
2313
+ condition_ends_with_nocase?: InputMaybe<Scalars["String"]>;
2314
+ condition_gt?: InputMaybe<Scalars["String"]>;
2315
+ condition_gte?: InputMaybe<Scalars["String"]>;
2316
+ condition_in?: InputMaybe<Array<Scalars["String"]>>;
2317
+ condition_lt?: InputMaybe<Scalars["String"]>;
2318
+ condition_lte?: InputMaybe<Scalars["String"]>;
2319
+ condition_not?: InputMaybe<Scalars["String"]>;
2320
+ condition_not_contains?: InputMaybe<Scalars["String"]>;
2321
+ condition_not_contains_nocase?: InputMaybe<Scalars["String"]>;
2322
+ condition_not_ends_with?: InputMaybe<Scalars["String"]>;
2323
+ condition_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
2324
+ condition_not_in?: InputMaybe<Array<Scalars["String"]>>;
2325
+ condition_not_starts_with?: InputMaybe<Scalars["String"]>;
2326
+ condition_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
2327
+ condition_starts_with?: InputMaybe<Scalars["String"]>;
2328
+ condition_starts_with_nocase?: InputMaybe<Scalars["String"]>;
2205
2329
  createdAt?: InputMaybe<Scalars["BigInt"]>;
2206
2330
  createdAt_gt?: InputMaybe<Scalars["BigInt"]>;
2207
2331
  createdAt_gte?: InputMaybe<Scalars["BigInt"]>;
@@ -2453,6 +2577,7 @@ export declare type MetadataInterface_Filter = {
2453
2577
  export declare enum MetadataInterface_OrderBy {
2454
2578
  AnimationUrl = "animationUrl",
2455
2579
  Attributes = "attributes",
2580
+ Condition = "condition",
2456
2581
  CreatedAt = "createdAt",
2457
2582
  Description = "description",
2458
2583
  ExchangeToken = "exchangeToken",
@@ -2485,6 +2610,7 @@ export declare type Offer = {
2485
2610
  agentFee: Scalars["BigInt"];
2486
2611
  agentId: Scalars["BigInt"];
2487
2612
  buyerCancelPenalty: Scalars["BigInt"];
2613
+ condition?: Maybe<ConditionEntity>;
2488
2614
  createdAt: Scalars["BigInt"];
2489
2615
  /** Offer durations */
2490
2616
  disputePeriodDuration: Scalars["BigInt"];
@@ -2665,6 +2791,27 @@ export declare type Offer_Filter = {
2665
2791
  buyerCancelPenalty_lte?: InputMaybe<Scalars["BigInt"]>;
2666
2792
  buyerCancelPenalty_not?: InputMaybe<Scalars["BigInt"]>;
2667
2793
  buyerCancelPenalty_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
2794
+ condition?: InputMaybe<Scalars["String"]>;
2795
+ condition_?: InputMaybe<ConditionEntity_Filter>;
2796
+ condition_contains?: InputMaybe<Scalars["String"]>;
2797
+ condition_contains_nocase?: InputMaybe<Scalars["String"]>;
2798
+ condition_ends_with?: InputMaybe<Scalars["String"]>;
2799
+ condition_ends_with_nocase?: InputMaybe<Scalars["String"]>;
2800
+ condition_gt?: InputMaybe<Scalars["String"]>;
2801
+ condition_gte?: InputMaybe<Scalars["String"]>;
2802
+ condition_in?: InputMaybe<Array<Scalars["String"]>>;
2803
+ condition_lt?: InputMaybe<Scalars["String"]>;
2804
+ condition_lte?: InputMaybe<Scalars["String"]>;
2805
+ condition_not?: InputMaybe<Scalars["String"]>;
2806
+ condition_not_contains?: InputMaybe<Scalars["String"]>;
2807
+ condition_not_contains_nocase?: InputMaybe<Scalars["String"]>;
2808
+ condition_not_ends_with?: InputMaybe<Scalars["String"]>;
2809
+ condition_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
2810
+ condition_not_in?: InputMaybe<Array<Scalars["String"]>>;
2811
+ condition_not_starts_with?: InputMaybe<Scalars["String"]>;
2812
+ condition_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
2813
+ condition_starts_with?: InputMaybe<Scalars["String"]>;
2814
+ condition_starts_with_nocase?: InputMaybe<Scalars["String"]>;
2668
2815
  createdAt?: InputMaybe<Scalars["BigInt"]>;
2669
2816
  createdAt_gt?: InputMaybe<Scalars["BigInt"]>;
2670
2817
  createdAt_gte?: InputMaybe<Scalars["BigInt"]>;
@@ -2971,6 +3118,7 @@ export declare enum Offer_OrderBy {
2971
3118
  AgentFee = "agentFee",
2972
3119
  AgentId = "agentId",
2973
3120
  BuyerCancelPenalty = "buyerCancelPenalty",
3121
+ Condition = "condition",
2974
3122
  CreatedAt = "createdAt",
2975
3123
  DisputePeriodDuration = "disputePeriodDuration",
2976
3124
  DisputeResolutionTerms = "disputeResolutionTerms",
@@ -3313,6 +3461,7 @@ export declare type ProductV1MetadataEntity = MetadataInterface & {
3313
3461
  __typename?: "ProductV1MetadataEntity";
3314
3462
  animationUrl?: Maybe<Scalars["String"]>;
3315
3463
  attributes?: Maybe<Array<MetadataAttribute>>;
3464
+ condition?: Maybe<Scalars["String"]>;
3316
3465
  /**
3317
3466
  * Enriched fields from offer entity to allow nested query workaround
3318
3467
  *
@@ -3402,6 +3551,26 @@ export declare type ProductV1MetadataEntity_Filter = {
3402
3551
  attributes_not?: InputMaybe<Array<Scalars["String"]>>;
3403
3552
  attributes_not_contains?: InputMaybe<Array<Scalars["String"]>>;
3404
3553
  attributes_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
3554
+ condition?: InputMaybe<Scalars["String"]>;
3555
+ condition_contains?: InputMaybe<Scalars["String"]>;
3556
+ condition_contains_nocase?: InputMaybe<Scalars["String"]>;
3557
+ condition_ends_with?: InputMaybe<Scalars["String"]>;
3558
+ condition_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3559
+ condition_gt?: InputMaybe<Scalars["String"]>;
3560
+ condition_gte?: InputMaybe<Scalars["String"]>;
3561
+ condition_in?: InputMaybe<Array<Scalars["String"]>>;
3562
+ condition_lt?: InputMaybe<Scalars["String"]>;
3563
+ condition_lte?: InputMaybe<Scalars["String"]>;
3564
+ condition_not?: InputMaybe<Scalars["String"]>;
3565
+ condition_not_contains?: InputMaybe<Scalars["String"]>;
3566
+ condition_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3567
+ condition_not_ends_with?: InputMaybe<Scalars["String"]>;
3568
+ condition_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3569
+ condition_not_in?: InputMaybe<Array<Scalars["String"]>>;
3570
+ condition_not_starts_with?: InputMaybe<Scalars["String"]>;
3571
+ condition_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3572
+ condition_starts_with?: InputMaybe<Scalars["String"]>;
3573
+ condition_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3405
3574
  createdAt?: InputMaybe<Scalars["BigInt"]>;
3406
3575
  createdAt_gt?: InputMaybe<Scalars["BigInt"]>;
3407
3576
  createdAt_gte?: InputMaybe<Scalars["BigInt"]>;
@@ -3813,6 +3982,7 @@ export declare type ProductV1MetadataEntity_Filter = {
3813
3982
  export declare enum ProductV1MetadataEntity_OrderBy {
3814
3983
  AnimationUrl = "animationUrl",
3815
3984
  Attributes = "attributes",
3985
+ Condition = "condition",
3816
3986
  CreatedAt = "createdAt",
3817
3987
  Description = "description",
3818
3988
  ExchangePolicy = "exchangePolicy",
@@ -5659,6 +5829,8 @@ export declare type Query = {
5659
5829
  baseMetadataEntity?: Maybe<BaseMetadataEntity>;
5660
5830
  buyer?: Maybe<Buyer>;
5661
5831
  buyers: Array<Buyer>;
5832
+ conditionEntities: Array<ConditionEntity>;
5833
+ conditionEntity?: Maybe<ConditionEntity>;
5662
5834
  dispute?: Maybe<Dispute>;
5663
5835
  disputeEventLog?: Maybe<DisputeEventLog>;
5664
5836
  disputeEventLogs: Array<DisputeEventLog>;
@@ -5780,6 +5952,20 @@ export declare type QueryBuyersArgs = {
5780
5952
  subgraphError?: _SubgraphErrorPolicy_;
5781
5953
  where?: InputMaybe<Buyer_Filter>;
5782
5954
  };
5955
+ export declare type QueryConditionEntitiesArgs = {
5956
+ block?: InputMaybe<Block_Height>;
5957
+ first?: InputMaybe<Scalars["Int"]>;
5958
+ orderBy?: InputMaybe<ConditionEntity_OrderBy>;
5959
+ orderDirection?: InputMaybe<OrderDirection>;
5960
+ skip?: InputMaybe<Scalars["Int"]>;
5961
+ subgraphError?: _SubgraphErrorPolicy_;
5962
+ where?: InputMaybe<ConditionEntity_Filter>;
5963
+ };
5964
+ export declare type QueryConditionEntityArgs = {
5965
+ block?: InputMaybe<Block_Height>;
5966
+ id: Scalars["ID"];
5967
+ subgraphError?: _SubgraphErrorPolicy_;
5968
+ };
5783
5969
  export declare type QueryDisputeArgs = {
5784
5970
  block?: InputMaybe<Block_Height>;
5785
5971
  id: Scalars["ID"];
@@ -6388,6 +6574,8 @@ export declare type Subscription = {
6388
6574
  baseMetadataEntity?: Maybe<BaseMetadataEntity>;
6389
6575
  buyer?: Maybe<Buyer>;
6390
6576
  buyers: Array<Buyer>;
6577
+ conditionEntities: Array<ConditionEntity>;
6578
+ conditionEntity?: Maybe<ConditionEntity>;
6391
6579
  dispute?: Maybe<Dispute>;
6392
6580
  disputeEventLog?: Maybe<DisputeEventLog>;
6393
6581
  disputeEventLogs: Array<DisputeEventLog>;
@@ -6509,6 +6697,20 @@ export declare type SubscriptionBuyersArgs = {
6509
6697
  subgraphError?: _SubgraphErrorPolicy_;
6510
6698
  where?: InputMaybe<Buyer_Filter>;
6511
6699
  };
6700
+ export declare type SubscriptionConditionEntitiesArgs = {
6701
+ block?: InputMaybe<Block_Height>;
6702
+ first?: InputMaybe<Scalars["Int"]>;
6703
+ orderBy?: InputMaybe<ConditionEntity_OrderBy>;
6704
+ orderDirection?: InputMaybe<OrderDirection>;
6705
+ skip?: InputMaybe<Scalars["Int"]>;
6706
+ subgraphError?: _SubgraphErrorPolicy_;
6707
+ where?: InputMaybe<ConditionEntity_Filter>;
6708
+ };
6709
+ export declare type SubscriptionConditionEntityArgs = {
6710
+ block?: InputMaybe<Block_Height>;
6711
+ id: Scalars["ID"];
6712
+ subgraphError?: _SubgraphErrorPolicy_;
6713
+ };
6512
6714
  export declare type SubscriptionDisputeArgs = {
6513
6715
  block?: InputMaybe<Block_Height>;
6514
6716
  id: Scalars["ID"];
@@ -7049,6 +7251,16 @@ export declare type GetSellerByIdQueryQuery = {
7049
7251
  disputeResolverId: string;
7050
7252
  numberOfCommits: string;
7051
7253
  numberOfRedemptions: string;
7254
+ condition?: {
7255
+ __typename?: "ConditionEntity";
7256
+ id: string;
7257
+ method: number;
7258
+ tokenType: number;
7259
+ tokenAddress: string;
7260
+ tokenId: string;
7261
+ threshold: string;
7262
+ maxCommits: string;
7263
+ } | null;
7052
7264
  seller: {
7053
7265
  __typename?: "Seller";
7054
7266
  id: string;
@@ -7113,6 +7325,7 @@ export declare type GetSellerByIdQueryQuery = {
7113
7325
  externalUrl: string;
7114
7326
  animationUrl?: string | null;
7115
7327
  licenseUrl: string;
7328
+ condition?: string | null;
7116
7329
  schemaUrl: string;
7117
7330
  type: MetadataType;
7118
7331
  } | {
@@ -7129,6 +7342,7 @@ export declare type GetSellerByIdQueryQuery = {
7129
7342
  externalUrl: string;
7130
7343
  animationUrl?: string | null;
7131
7344
  licenseUrl: string;
7345
+ condition?: string | null;
7132
7346
  schemaUrl: string;
7133
7347
  type: MetadataType;
7134
7348
  attributes?: Array<{
@@ -7567,6 +7781,16 @@ export declare type GetSellersQueryQuery = {
7567
7781
  disputeResolverId: string;
7568
7782
  numberOfCommits: string;
7569
7783
  numberOfRedemptions: string;
7784
+ condition?: {
7785
+ __typename?: "ConditionEntity";
7786
+ id: string;
7787
+ method: number;
7788
+ tokenType: number;
7789
+ tokenAddress: string;
7790
+ tokenId: string;
7791
+ threshold: string;
7792
+ maxCommits: string;
7793
+ } | null;
7570
7794
  seller: {
7571
7795
  __typename?: "Seller";
7572
7796
  id: string;
@@ -7631,6 +7855,7 @@ export declare type GetSellersQueryQuery = {
7631
7855
  externalUrl: string;
7632
7856
  animationUrl?: string | null;
7633
7857
  licenseUrl: string;
7858
+ condition?: string | null;
7634
7859
  schemaUrl: string;
7635
7860
  type: MetadataType;
7636
7861
  } | {
@@ -7647,6 +7872,7 @@ export declare type GetSellersQueryQuery = {
7647
7872
  externalUrl: string;
7648
7873
  animationUrl?: string | null;
7649
7874
  licenseUrl: string;
7875
+ condition?: string | null;
7650
7876
  schemaUrl: string;
7651
7877
  type: MetadataType;
7652
7878
  attributes?: Array<{
@@ -8463,6 +8689,16 @@ export declare type GetDisputeResolverByIdQueryQuery = {
8463
8689
  disputeResolverId: string;
8464
8690
  numberOfCommits: string;
8465
8691
  numberOfRedemptions: string;
8692
+ condition?: {
8693
+ __typename?: "ConditionEntity";
8694
+ id: string;
8695
+ method: number;
8696
+ tokenType: number;
8697
+ tokenAddress: string;
8698
+ tokenId: string;
8699
+ threshold: string;
8700
+ maxCommits: string;
8701
+ } | null;
8466
8702
  seller: {
8467
8703
  __typename?: "Seller";
8468
8704
  id: string;
@@ -8527,6 +8763,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
8527
8763
  externalUrl: string;
8528
8764
  animationUrl?: string | null;
8529
8765
  licenseUrl: string;
8766
+ condition?: string | null;
8530
8767
  schemaUrl: string;
8531
8768
  type: MetadataType;
8532
8769
  } | {
@@ -8543,6 +8780,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
8543
8780
  externalUrl: string;
8544
8781
  animationUrl?: string | null;
8545
8782
  licenseUrl: string;
8783
+ condition?: string | null;
8546
8784
  schemaUrl: string;
8547
8785
  type: MetadataType;
8548
8786
  attributes?: Array<{
@@ -8918,6 +9156,16 @@ export declare type GetDisputeResolversQueryQuery = {
8918
9156
  disputeResolverId: string;
8919
9157
  numberOfCommits: string;
8920
9158
  numberOfRedemptions: string;
9159
+ condition?: {
9160
+ __typename?: "ConditionEntity";
9161
+ id: string;
9162
+ method: number;
9163
+ tokenType: number;
9164
+ tokenAddress: string;
9165
+ tokenId: string;
9166
+ threshold: string;
9167
+ maxCommits: string;
9168
+ } | null;
8921
9169
  seller: {
8922
9170
  __typename?: "Seller";
8923
9171
  id: string;
@@ -8982,6 +9230,7 @@ export declare type GetDisputeResolversQueryQuery = {
8982
9230
  externalUrl: string;
8983
9231
  animationUrl?: string | null;
8984
9232
  licenseUrl: string;
9233
+ condition?: string | null;
8985
9234
  schemaUrl: string;
8986
9235
  type: MetadataType;
8987
9236
  } | {
@@ -8998,6 +9247,7 @@ export declare type GetDisputeResolversQueryQuery = {
8998
9247
  externalUrl: string;
8999
9248
  animationUrl?: string | null;
9000
9249
  licenseUrl: string;
9250
+ condition?: string | null;
9001
9251
  schemaUrl: string;
9002
9252
  type: MetadataType;
9003
9253
  attributes?: Array<{
@@ -9368,6 +9618,16 @@ export declare type SellerFieldsFragment = {
9368
9618
  disputeResolverId: string;
9369
9619
  numberOfCommits: string;
9370
9620
  numberOfRedemptions: string;
9621
+ condition?: {
9622
+ __typename?: "ConditionEntity";
9623
+ id: string;
9624
+ method: number;
9625
+ tokenType: number;
9626
+ tokenAddress: string;
9627
+ tokenId: string;
9628
+ threshold: string;
9629
+ maxCommits: string;
9630
+ } | null;
9371
9631
  seller: {
9372
9632
  __typename?: "Seller";
9373
9633
  id: string;
@@ -9432,6 +9692,7 @@ export declare type SellerFieldsFragment = {
9432
9692
  externalUrl: string;
9433
9693
  animationUrl?: string | null;
9434
9694
  licenseUrl: string;
9695
+ condition?: string | null;
9435
9696
  schemaUrl: string;
9436
9697
  type: MetadataType;
9437
9698
  } | {
@@ -9448,6 +9709,7 @@ export declare type SellerFieldsFragment = {
9448
9709
  externalUrl: string;
9449
9710
  animationUrl?: string | null;
9450
9711
  licenseUrl: string;
9712
+ condition?: string | null;
9451
9713
  schemaUrl: string;
9452
9714
  type: MetadataType;
9453
9715
  attributes?: Array<{
@@ -10032,6 +10294,16 @@ export declare type DisputeResolverFieldsFragment = {
10032
10294
  disputeResolverId: string;
10033
10295
  numberOfCommits: string;
10034
10296
  numberOfRedemptions: string;
10297
+ condition?: {
10298
+ __typename?: "ConditionEntity";
10299
+ id: string;
10300
+ method: number;
10301
+ tokenType: number;
10302
+ tokenAddress: string;
10303
+ tokenId: string;
10304
+ threshold: string;
10305
+ maxCommits: string;
10306
+ } | null;
10035
10307
  seller: {
10036
10308
  __typename?: "Seller";
10037
10309
  id: string;
@@ -10096,6 +10368,7 @@ export declare type DisputeResolverFieldsFragment = {
10096
10368
  externalUrl: string;
10097
10369
  animationUrl?: string | null;
10098
10370
  licenseUrl: string;
10371
+ condition?: string | null;
10099
10372
  schemaUrl: string;
10100
10373
  type: MetadataType;
10101
10374
  } | {
@@ -10112,6 +10385,7 @@ export declare type DisputeResolverFieldsFragment = {
10112
10385
  externalUrl: string;
10113
10386
  animationUrl?: string | null;
10114
10387
  licenseUrl: string;
10388
+ condition?: string | null;
10115
10389
  schemaUrl: string;
10116
10390
  type: MetadataType;
10117
10391
  attributes?: Array<{
@@ -10825,6 +11099,16 @@ export declare type GetExchangeTokenByIdQueryQuery = {
10825
11099
  disputeResolverId: string;
10826
11100
  numberOfCommits: string;
10827
11101
  numberOfRedemptions: string;
11102
+ condition?: {
11103
+ __typename?: "ConditionEntity";
11104
+ id: string;
11105
+ method: number;
11106
+ tokenType: number;
11107
+ tokenAddress: string;
11108
+ tokenId: string;
11109
+ threshold: string;
11110
+ maxCommits: string;
11111
+ } | null;
10828
11112
  seller: {
10829
11113
  __typename?: "Seller";
10830
11114
  id: string;
@@ -10889,6 +11173,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
10889
11173
  externalUrl: string;
10890
11174
  animationUrl?: string | null;
10891
11175
  licenseUrl: string;
11176
+ condition?: string | null;
10892
11177
  schemaUrl: string;
10893
11178
  type: MetadataType;
10894
11179
  } | {
@@ -10905,6 +11190,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
10905
11190
  externalUrl: string;
10906
11191
  animationUrl?: string | null;
10907
11192
  licenseUrl: string;
11193
+ condition?: string | null;
10908
11194
  schemaUrl: string;
10909
11195
  type: MetadataType;
10910
11196
  attributes?: Array<{
@@ -11161,6 +11447,16 @@ export declare type GetExchangeTokensQueryQuery = {
11161
11447
  disputeResolverId: string;
11162
11448
  numberOfCommits: string;
11163
11449
  numberOfRedemptions: string;
11450
+ condition?: {
11451
+ __typename?: "ConditionEntity";
11452
+ id: string;
11453
+ method: number;
11454
+ tokenType: number;
11455
+ tokenAddress: string;
11456
+ tokenId: string;
11457
+ threshold: string;
11458
+ maxCommits: string;
11459
+ } | null;
11164
11460
  seller: {
11165
11461
  __typename?: "Seller";
11166
11462
  id: string;
@@ -11225,6 +11521,7 @@ export declare type GetExchangeTokensQueryQuery = {
11225
11521
  externalUrl: string;
11226
11522
  animationUrl?: string | null;
11227
11523
  licenseUrl: string;
11524
+ condition?: string | null;
11228
11525
  schemaUrl: string;
11229
11526
  type: MetadataType;
11230
11527
  } | {
@@ -11241,6 +11538,7 @@ export declare type GetExchangeTokensQueryQuery = {
11241
11538
  externalUrl: string;
11242
11539
  animationUrl?: string | null;
11243
11540
  licenseUrl: string;
11541
+ condition?: string | null;
11244
11542
  schemaUrl: string;
11245
11543
  type: MetadataType;
11246
11544
  attributes?: Array<{
@@ -11476,6 +11774,16 @@ export declare type ExchangeTokenFieldsFragment = {
11476
11774
  disputeResolverId: string;
11477
11775
  numberOfCommits: string;
11478
11776
  numberOfRedemptions: string;
11777
+ condition?: {
11778
+ __typename?: "ConditionEntity";
11779
+ id: string;
11780
+ method: number;
11781
+ tokenType: number;
11782
+ tokenAddress: string;
11783
+ tokenId: string;
11784
+ threshold: string;
11785
+ maxCommits: string;
11786
+ } | null;
11479
11787
  seller: {
11480
11788
  __typename?: "Seller";
11481
11789
  id: string;
@@ -11540,6 +11848,7 @@ export declare type ExchangeTokenFieldsFragment = {
11540
11848
  externalUrl: string;
11541
11849
  animationUrl?: string | null;
11542
11850
  licenseUrl: string;
11851
+ condition?: string | null;
11543
11852
  schemaUrl: string;
11544
11853
  type: MetadataType;
11545
11854
  } | {
@@ -11556,6 +11865,7 @@ export declare type ExchangeTokenFieldsFragment = {
11556
11865
  externalUrl: string;
11557
11866
  animationUrl?: string | null;
11558
11867
  licenseUrl: string;
11868
+ condition?: string | null;
11559
11869
  schemaUrl: string;
11560
11870
  type: MetadataType;
11561
11871
  attributes?: Array<{
@@ -12037,6 +12347,16 @@ export declare type GetExchangeByIdQueryQuery = {
12037
12347
  disputeResolverId: string;
12038
12348
  numberOfCommits: string;
12039
12349
  numberOfRedemptions: string;
12350
+ condition?: {
12351
+ __typename?: "ConditionEntity";
12352
+ id: string;
12353
+ method: number;
12354
+ tokenType: number;
12355
+ tokenAddress: string;
12356
+ tokenId: string;
12357
+ threshold: string;
12358
+ maxCommits: string;
12359
+ } | null;
12040
12360
  seller: {
12041
12361
  __typename?: "Seller";
12042
12362
  id: string;
@@ -12101,6 +12421,7 @@ export declare type GetExchangeByIdQueryQuery = {
12101
12421
  externalUrl: string;
12102
12422
  animationUrl?: string | null;
12103
12423
  licenseUrl: string;
12424
+ condition?: string | null;
12104
12425
  schemaUrl: string;
12105
12426
  type: MetadataType;
12106
12427
  } | {
@@ -12117,6 +12438,7 @@ export declare type GetExchangeByIdQueryQuery = {
12117
12438
  externalUrl: string;
12118
12439
  animationUrl?: string | null;
12119
12440
  licenseUrl: string;
12441
+ condition?: string | null;
12120
12442
  schemaUrl: string;
12121
12443
  type: MetadataType;
12122
12444
  attributes?: Array<{
@@ -12397,6 +12719,16 @@ export declare type GetExchangesQueryQuery = {
12397
12719
  disputeResolverId: string;
12398
12720
  numberOfCommits: string;
12399
12721
  numberOfRedemptions: string;
12722
+ condition?: {
12723
+ __typename?: "ConditionEntity";
12724
+ id: string;
12725
+ method: number;
12726
+ tokenType: number;
12727
+ tokenAddress: string;
12728
+ tokenId: string;
12729
+ threshold: string;
12730
+ maxCommits: string;
12731
+ } | null;
12400
12732
  seller: {
12401
12733
  __typename?: "Seller";
12402
12734
  id: string;
@@ -12461,6 +12793,7 @@ export declare type GetExchangesQueryQuery = {
12461
12793
  externalUrl: string;
12462
12794
  animationUrl?: string | null;
12463
12795
  licenseUrl: string;
12796
+ condition?: string | null;
12464
12797
  schemaUrl: string;
12465
12798
  type: MetadataType;
12466
12799
  } | {
@@ -12477,6 +12810,7 @@ export declare type GetExchangesQueryQuery = {
12477
12810
  externalUrl: string;
12478
12811
  animationUrl?: string | null;
12479
12812
  licenseUrl: string;
12813
+ condition?: string | null;
12480
12814
  schemaUrl: string;
12481
12815
  type: MetadataType;
12482
12816
  attributes?: Array<{
@@ -12748,6 +13082,16 @@ export declare type ExchangeFieldsFragment = {
12748
13082
  disputeResolverId: string;
12749
13083
  numberOfCommits: string;
12750
13084
  numberOfRedemptions: string;
13085
+ condition?: {
13086
+ __typename?: "ConditionEntity";
13087
+ id: string;
13088
+ method: number;
13089
+ tokenType: number;
13090
+ tokenAddress: string;
13091
+ tokenId: string;
13092
+ threshold: string;
13093
+ maxCommits: string;
13094
+ } | null;
12751
13095
  seller: {
12752
13096
  __typename?: "Seller";
12753
13097
  id: string;
@@ -12812,6 +13156,7 @@ export declare type ExchangeFieldsFragment = {
12812
13156
  externalUrl: string;
12813
13157
  animationUrl?: string | null;
12814
13158
  licenseUrl: string;
13159
+ condition?: string | null;
12815
13160
  schemaUrl: string;
12816
13161
  type: MetadataType;
12817
13162
  } | {
@@ -12828,6 +13173,7 @@ export declare type ExchangeFieldsFragment = {
12828
13173
  externalUrl: string;
12829
13174
  animationUrl?: string | null;
12830
13175
  licenseUrl: string;
13176
+ condition?: string | null;
12831
13177
  schemaUrl: string;
12832
13178
  type: MetadataType;
12833
13179
  attributes?: Array<{
@@ -13172,6 +13518,16 @@ export declare type BaseFundsEntityFieldsFragment = {
13172
13518
  availableAmount: string;
13173
13519
  accountId: string;
13174
13520
  };
13521
+ export declare type BaseConditionFieldsFragment = {
13522
+ __typename?: "ConditionEntity";
13523
+ id: string;
13524
+ method: number;
13525
+ tokenType: number;
13526
+ tokenAddress: string;
13527
+ tokenId: string;
13528
+ threshold: string;
13529
+ maxCommits: string;
13530
+ };
13175
13531
  export declare type GetBaseMetadataEntityByIdQueryQueryVariables = Exact<{
13176
13532
  metadataId: Scalars["ID"];
13177
13533
  metadataSkip?: InputMaybe<Scalars["Int"]>;
@@ -13190,6 +13546,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
13190
13546
  externalUrl: string;
13191
13547
  animationUrl?: string | null;
13192
13548
  licenseUrl: string;
13549
+ condition?: string | null;
13193
13550
  schemaUrl: string;
13194
13551
  type: MetadataType;
13195
13552
  image: string;
@@ -13232,6 +13589,16 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
13232
13589
  disputeResolverId: string;
13233
13590
  numberOfCommits: string;
13234
13591
  numberOfRedemptions: string;
13592
+ condition?: {
13593
+ __typename?: "ConditionEntity";
13594
+ id: string;
13595
+ method: number;
13596
+ tokenType: number;
13597
+ tokenAddress: string;
13598
+ tokenId: string;
13599
+ threshold: string;
13600
+ maxCommits: string;
13601
+ } | null;
13235
13602
  seller: {
13236
13603
  __typename?: "Seller";
13237
13604
  id: string;
@@ -13296,6 +13663,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
13296
13663
  externalUrl: string;
13297
13664
  animationUrl?: string | null;
13298
13665
  licenseUrl: string;
13666
+ condition?: string | null;
13299
13667
  schemaUrl: string;
13300
13668
  type: MetadataType;
13301
13669
  } | {
@@ -13312,6 +13680,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
13312
13680
  externalUrl: string;
13313
13681
  animationUrl?: string | null;
13314
13682
  licenseUrl: string;
13683
+ condition?: string | null;
13315
13684
  schemaUrl: string;
13316
13685
  type: MetadataType;
13317
13686
  attributes?: Array<{
@@ -13547,6 +13916,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
13547
13916
  externalUrl: string;
13548
13917
  animationUrl?: string | null;
13549
13918
  licenseUrl: string;
13919
+ condition?: string | null;
13550
13920
  schemaUrl: string;
13551
13921
  type: MetadataType;
13552
13922
  image: string;
@@ -13589,6 +13959,16 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
13589
13959
  disputeResolverId: string;
13590
13960
  numberOfCommits: string;
13591
13961
  numberOfRedemptions: string;
13962
+ condition?: {
13963
+ __typename?: "ConditionEntity";
13964
+ id: string;
13965
+ method: number;
13966
+ tokenType: number;
13967
+ tokenAddress: string;
13968
+ tokenId: string;
13969
+ threshold: string;
13970
+ maxCommits: string;
13971
+ } | null;
13592
13972
  seller: {
13593
13973
  __typename?: "Seller";
13594
13974
  id: string;
@@ -13653,6 +14033,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
13653
14033
  externalUrl: string;
13654
14034
  animationUrl?: string | null;
13655
14035
  licenseUrl: string;
14036
+ condition?: string | null;
13656
14037
  schemaUrl: string;
13657
14038
  type: MetadataType;
13658
14039
  } | {
@@ -13669,6 +14050,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
13669
14050
  externalUrl: string;
13670
14051
  animationUrl?: string | null;
13671
14052
  licenseUrl: string;
14053
+ condition?: string | null;
13672
14054
  schemaUrl: string;
13673
14055
  type: MetadataType;
13674
14056
  attributes?: Array<{
@@ -13895,6 +14277,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
13895
14277
  externalUrl: string;
13896
14278
  animationUrl?: string | null;
13897
14279
  licenseUrl: string;
14280
+ condition?: string | null;
13898
14281
  schemaUrl: string;
13899
14282
  type: MetadataType;
13900
14283
  image: string;
@@ -13937,6 +14320,16 @@ export declare type BaseMetadataEntityFieldsFragment = {
13937
14320
  disputeResolverId: string;
13938
14321
  numberOfCommits: string;
13939
14322
  numberOfRedemptions: string;
14323
+ condition?: {
14324
+ __typename?: "ConditionEntity";
14325
+ id: string;
14326
+ method: number;
14327
+ tokenType: number;
14328
+ tokenAddress: string;
14329
+ tokenId: string;
14330
+ threshold: string;
14331
+ maxCommits: string;
14332
+ } | null;
13940
14333
  seller: {
13941
14334
  __typename?: "Seller";
13942
14335
  id: string;
@@ -14001,6 +14394,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
14001
14394
  externalUrl: string;
14002
14395
  animationUrl?: string | null;
14003
14396
  licenseUrl: string;
14397
+ condition?: string | null;
14004
14398
  schemaUrl: string;
14005
14399
  type: MetadataType;
14006
14400
  } | {
@@ -14017,6 +14411,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
14017
14411
  externalUrl: string;
14018
14412
  animationUrl?: string | null;
14019
14413
  licenseUrl: string;
14414
+ condition?: string | null;
14020
14415
  schemaUrl: string;
14021
14416
  type: MetadataType;
14022
14417
  attributes?: Array<{
@@ -14242,6 +14637,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
14242
14637
  externalUrl: string;
14243
14638
  animationUrl?: string | null;
14244
14639
  licenseUrl: string;
14640
+ condition?: string | null;
14245
14641
  schemaUrl: string;
14246
14642
  type: MetadataType;
14247
14643
  image: string;
@@ -14284,6 +14680,16 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
14284
14680
  disputeResolverId: string;
14285
14681
  numberOfCommits: string;
14286
14682
  numberOfRedemptions: string;
14683
+ condition?: {
14684
+ __typename?: "ConditionEntity";
14685
+ id: string;
14686
+ method: number;
14687
+ tokenType: number;
14688
+ tokenAddress: string;
14689
+ tokenId: string;
14690
+ threshold: string;
14691
+ maxCommits: string;
14692
+ } | null;
14287
14693
  seller: {
14288
14694
  __typename?: "Seller";
14289
14695
  id: string;
@@ -14348,6 +14754,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
14348
14754
  externalUrl: string;
14349
14755
  animationUrl?: string | null;
14350
14756
  licenseUrl: string;
14757
+ condition?: string | null;
14351
14758
  schemaUrl: string;
14352
14759
  type: MetadataType;
14353
14760
  } | {
@@ -14364,6 +14771,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
14364
14771
  externalUrl: string;
14365
14772
  animationUrl?: string | null;
14366
14773
  licenseUrl: string;
14774
+ condition?: string | null;
14367
14775
  schemaUrl: string;
14368
14776
  type: MetadataType;
14369
14777
  attributes?: Array<{
@@ -14756,6 +15164,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
14756
15164
  externalUrl: string;
14757
15165
  animationUrl?: string | null;
14758
15166
  licenseUrl: string;
15167
+ condition?: string | null;
14759
15168
  schemaUrl: string;
14760
15169
  type: MetadataType;
14761
15170
  image: string;
@@ -14849,6 +15258,16 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
14849
15258
  royaltyPercentage: string;
14850
15259
  };
14851
15260
  }>;
15261
+ condition?: {
15262
+ __typename?: "ConditionEntity";
15263
+ id: string;
15264
+ method: number;
15265
+ tokenType: number;
15266
+ tokenAddress: string;
15267
+ tokenId: string;
15268
+ threshold: string;
15269
+ maxCommits: string;
15270
+ } | null;
14852
15271
  seller: {
14853
15272
  __typename?: "Seller";
14854
15273
  id: string;
@@ -14913,6 +15332,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
14913
15332
  externalUrl: string;
14914
15333
  animationUrl?: string | null;
14915
15334
  licenseUrl: string;
15335
+ condition?: string | null;
14916
15336
  schemaUrl: string;
14917
15337
  type: MetadataType;
14918
15338
  } | {
@@ -14929,6 +15349,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
14929
15349
  externalUrl: string;
14930
15350
  animationUrl?: string | null;
14931
15351
  licenseUrl: string;
15352
+ condition?: string | null;
14932
15353
  schemaUrl: string;
14933
15354
  type: MetadataType;
14934
15355
  attributes?: Array<{
@@ -15334,6 +15755,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
15334
15755
  externalUrl: string;
15335
15756
  animationUrl?: string | null;
15336
15757
  licenseUrl: string;
15758
+ condition?: string | null;
15337
15759
  schemaUrl: string;
15338
15760
  type: MetadataType;
15339
15761
  image: string;
@@ -15427,6 +15849,16 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
15427
15849
  royaltyPercentage: string;
15428
15850
  };
15429
15851
  }>;
15852
+ condition?: {
15853
+ __typename?: "ConditionEntity";
15854
+ id: string;
15855
+ method: number;
15856
+ tokenType: number;
15857
+ tokenAddress: string;
15858
+ tokenId: string;
15859
+ threshold: string;
15860
+ maxCommits: string;
15861
+ } | null;
15430
15862
  seller: {
15431
15863
  __typename?: "Seller";
15432
15864
  id: string;
@@ -15491,6 +15923,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
15491
15923
  externalUrl: string;
15492
15924
  animationUrl?: string | null;
15493
15925
  licenseUrl: string;
15926
+ condition?: string | null;
15494
15927
  schemaUrl: string;
15495
15928
  type: MetadataType;
15496
15929
  } | {
@@ -15507,6 +15940,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
15507
15940
  externalUrl: string;
15508
15941
  animationUrl?: string | null;
15509
15942
  licenseUrl: string;
15943
+ condition?: string | null;
15510
15944
  schemaUrl: string;
15511
15945
  type: MetadataType;
15512
15946
  attributes?: Array<{
@@ -15903,6 +16337,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
15903
16337
  externalUrl: string;
15904
16338
  animationUrl?: string | null;
15905
16339
  licenseUrl: string;
16340
+ condition?: string | null;
15906
16341
  schemaUrl: string;
15907
16342
  type: MetadataType;
15908
16343
  image: string;
@@ -15996,6 +16431,16 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
15996
16431
  royaltyPercentage: string;
15997
16432
  };
15998
16433
  }>;
16434
+ condition?: {
16435
+ __typename?: "ConditionEntity";
16436
+ id: string;
16437
+ method: number;
16438
+ tokenType: number;
16439
+ tokenAddress: string;
16440
+ tokenId: string;
16441
+ threshold: string;
16442
+ maxCommits: string;
16443
+ } | null;
15999
16444
  seller: {
16000
16445
  __typename?: "Seller";
16001
16446
  id: string;
@@ -16060,6 +16505,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
16060
16505
  externalUrl: string;
16061
16506
  animationUrl?: string | null;
16062
16507
  licenseUrl: string;
16508
+ condition?: string | null;
16063
16509
  schemaUrl: string;
16064
16510
  type: MetadataType;
16065
16511
  } | {
@@ -16076,6 +16522,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
16076
16522
  externalUrl: string;
16077
16523
  animationUrl?: string | null;
16078
16524
  licenseUrl: string;
16525
+ condition?: string | null;
16079
16526
  schemaUrl: string;
16080
16527
  type: MetadataType;
16081
16528
  attributes?: Array<{
@@ -16471,6 +16918,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
16471
16918
  externalUrl: string;
16472
16919
  animationUrl?: string | null;
16473
16920
  licenseUrl: string;
16921
+ condition?: string | null;
16474
16922
  schemaUrl: string;
16475
16923
  type: MetadataType;
16476
16924
  image: string;
@@ -16564,6 +17012,16 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
16564
17012
  royaltyPercentage: string;
16565
17013
  };
16566
17014
  }>;
17015
+ condition?: {
17016
+ __typename?: "ConditionEntity";
17017
+ id: string;
17018
+ method: number;
17019
+ tokenType: number;
17020
+ tokenAddress: string;
17021
+ tokenId: string;
17022
+ threshold: string;
17023
+ maxCommits: string;
17024
+ } | null;
16567
17025
  seller: {
16568
17026
  __typename?: "Seller";
16569
17027
  id: string;
@@ -16628,6 +17086,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
16628
17086
  externalUrl: string;
16629
17087
  animationUrl?: string | null;
16630
17088
  licenseUrl: string;
17089
+ condition?: string | null;
16631
17090
  schemaUrl: string;
16632
17091
  type: MetadataType;
16633
17092
  } | {
@@ -16644,6 +17103,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
16644
17103
  externalUrl: string;
16645
17104
  animationUrl?: string | null;
16646
17105
  licenseUrl: string;
17106
+ condition?: string | null;
16647
17107
  schemaUrl: string;
16648
17108
  type: MetadataType;
16649
17109
  attributes?: Array<{
@@ -17387,6 +17847,16 @@ export declare type GetOfferByIdQueryQuery = {
17387
17847
  royaltyPercentage: string;
17388
17848
  };
17389
17849
  }>;
17850
+ condition?: {
17851
+ __typename?: "ConditionEntity";
17852
+ id: string;
17853
+ method: number;
17854
+ tokenType: number;
17855
+ tokenAddress: string;
17856
+ tokenId: string;
17857
+ threshold: string;
17858
+ maxCommits: string;
17859
+ } | null;
17390
17860
  seller: {
17391
17861
  __typename?: "Seller";
17392
17862
  id: string;
@@ -17451,6 +17921,7 @@ export declare type GetOfferByIdQueryQuery = {
17451
17921
  externalUrl: string;
17452
17922
  animationUrl?: string | null;
17453
17923
  licenseUrl: string;
17924
+ condition?: string | null;
17454
17925
  schemaUrl: string;
17455
17926
  type: MetadataType;
17456
17927
  } | {
@@ -17467,6 +17938,7 @@ export declare type GetOfferByIdQueryQuery = {
17467
17938
  externalUrl: string;
17468
17939
  animationUrl?: string | null;
17469
17940
  licenseUrl: string;
17941
+ condition?: string | null;
17470
17942
  schemaUrl: string;
17471
17943
  type: MetadataType;
17472
17944
  attributes?: Array<{
@@ -17753,6 +18225,16 @@ export declare type GetOffersQueryQuery = {
17753
18225
  royaltyPercentage: string;
17754
18226
  };
17755
18227
  }>;
18228
+ condition?: {
18229
+ __typename?: "ConditionEntity";
18230
+ id: string;
18231
+ method: number;
18232
+ tokenType: number;
18233
+ tokenAddress: string;
18234
+ tokenId: string;
18235
+ threshold: string;
18236
+ maxCommits: string;
18237
+ } | null;
17756
18238
  seller: {
17757
18239
  __typename?: "Seller";
17758
18240
  id: string;
@@ -17817,6 +18299,7 @@ export declare type GetOffersQueryQuery = {
17817
18299
  externalUrl: string;
17818
18300
  animationUrl?: string | null;
17819
18301
  licenseUrl: string;
18302
+ condition?: string | null;
17820
18303
  schemaUrl: string;
17821
18304
  type: MetadataType;
17822
18305
  } | {
@@ -17833,6 +18316,7 @@ export declare type GetOffersQueryQuery = {
17833
18316
  externalUrl: string;
17834
18317
  animationUrl?: string | null;
17835
18318
  licenseUrl: string;
18319
+ condition?: string | null;
17836
18320
  schemaUrl: string;
17837
18321
  type: MetadataType;
17838
18322
  attributes?: Array<{
@@ -18104,6 +18588,16 @@ export declare type OfferFieldsFragment = {
18104
18588
  royaltyPercentage: string;
18105
18589
  };
18106
18590
  }>;
18591
+ condition?: {
18592
+ __typename?: "ConditionEntity";
18593
+ id: string;
18594
+ method: number;
18595
+ tokenType: number;
18596
+ tokenAddress: string;
18597
+ tokenId: string;
18598
+ threshold: string;
18599
+ maxCommits: string;
18600
+ } | null;
18107
18601
  seller: {
18108
18602
  __typename?: "Seller";
18109
18603
  id: string;
@@ -18168,6 +18662,7 @@ export declare type OfferFieldsFragment = {
18168
18662
  externalUrl: string;
18169
18663
  animationUrl?: string | null;
18170
18664
  licenseUrl: string;
18665
+ condition?: string | null;
18171
18666
  schemaUrl: string;
18172
18667
  type: MetadataType;
18173
18668
  } | {
@@ -18184,6 +18679,7 @@ export declare type OfferFieldsFragment = {
18184
18679
  externalUrl: string;
18185
18680
  animationUrl?: string | null;
18186
18681
  licenseUrl: string;
18682
+ condition?: string | null;
18187
18683
  schemaUrl: string;
18188
18684
  type: MetadataType;
18189
18685
  attributes?: Array<{
@@ -18404,6 +18900,16 @@ export declare type BaseOfferFieldsFragment = {
18404
18900
  disputeResolverId: string;
18405
18901
  numberOfCommits: string;
18406
18902
  numberOfRedemptions: string;
18903
+ condition?: {
18904
+ __typename?: "ConditionEntity";
18905
+ id: string;
18906
+ method: number;
18907
+ tokenType: number;
18908
+ tokenAddress: string;
18909
+ tokenId: string;
18910
+ threshold: string;
18911
+ maxCommits: string;
18912
+ } | null;
18407
18913
  seller: {
18408
18914
  __typename?: "Seller";
18409
18915
  id: string;
@@ -18468,6 +18974,7 @@ export declare type BaseOfferFieldsFragment = {
18468
18974
  externalUrl: string;
18469
18975
  animationUrl?: string | null;
18470
18976
  licenseUrl: string;
18977
+ condition?: string | null;
18471
18978
  schemaUrl: string;
18472
18979
  type: MetadataType;
18473
18980
  } | {
@@ -18484,6 +18991,7 @@ export declare type BaseOfferFieldsFragment = {
18484
18991
  externalUrl: string;
18485
18992
  animationUrl?: string | null;
18486
18993
  licenseUrl: string;
18994
+ condition?: string | null;
18487
18995
  schemaUrl: string;
18488
18996
  type: MetadataType;
18489
18997
  attributes?: Array<{
@@ -18682,6 +19190,7 @@ export declare const BaseSellerFieldsFragmentDoc: string;
18682
19190
  export declare const BaseFundsEntityFieldsFragmentDoc: string;
18683
19191
  export declare const BaseExchangeTokenFieldsFragmentDoc: string;
18684
19192
  export declare const FundsEntityFieldsFragmentDoc: string;
19193
+ export declare const BaseConditionFieldsFragmentDoc: string;
18685
19194
  export declare const BaseDisputeResolverFeeFieldsFragmentDoc: string;
18686
19195
  export declare const BaseDisputeResolverFieldsFragmentDoc: string;
18687
19196
  export declare const BaseDisputeResolutionTermsEntityFieldsFragmentDoc: string;