@bosonprotocol/core-sdk 1.33.1-alpha.2 → 1.34.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.
Files changed (82) hide show
  1. package/dist/cjs/accounts/handler.d.ts +27 -1
  2. package/dist/cjs/accounts/handler.d.ts.map +1 -1
  3. package/dist/cjs/accounts/handler.js +71 -2
  4. package/dist/cjs/accounts/handler.js.map +1 -1
  5. package/dist/cjs/accounts/interface.d.ts +15 -3
  6. package/dist/cjs/accounts/interface.d.ts.map +1 -1
  7. package/dist/cjs/accounts/interface.js +49 -6
  8. package/dist/cjs/accounts/interface.js.map +1 -1
  9. package/dist/cjs/accounts/mixin.d.ts +4 -0
  10. package/dist/cjs/accounts/mixin.d.ts.map +1 -1
  11. package/dist/cjs/accounts/mixin.js +19 -0
  12. package/dist/cjs/accounts/mixin.js.map +1 -1
  13. package/dist/cjs/accounts/subgraph.d.ts +2 -1
  14. package/dist/cjs/accounts/subgraph.d.ts.map +1 -1
  15. package/dist/cjs/accounts/subgraph.js +9 -1
  16. package/dist/cjs/accounts/subgraph.js.map +1 -1
  17. package/dist/cjs/accounts/types.d.ts +1 -1
  18. package/dist/cjs/accounts/types.d.ts.map +1 -1
  19. package/dist/cjs/accounts/types.js.map +1 -1
  20. package/dist/cjs/meta-tx/handler.d.ts.map +1 -1
  21. package/dist/cjs/meta-tx/handler.js +3 -1
  22. package/dist/cjs/meta-tx/handler.js.map +1 -1
  23. package/dist/cjs/orchestration/handler.d.ts.map +1 -1
  24. package/dist/cjs/orchestration/handler.js +9 -4
  25. package/dist/cjs/orchestration/handler.js.map +1 -1
  26. package/dist/cjs/orchestration/interface.d.ts +4 -4
  27. package/dist/cjs/orchestration/interface.d.ts.map +1 -1
  28. package/dist/cjs/orchestration/interface.js +8 -8
  29. package/dist/cjs/orchestration/interface.js.map +1 -1
  30. package/dist/cjs/subgraph.d.ts +3783 -1418
  31. package/dist/cjs/subgraph.d.ts.map +1 -1
  32. package/dist/cjs/subgraph.js +138 -38
  33. package/dist/cjs/subgraph.js.map +1 -1
  34. package/dist/cjs/utils/graphql.d.ts +13 -0
  35. package/dist/cjs/utils/graphql.d.ts.map +1 -1
  36. package/dist/esm/accounts/handler.d.ts +27 -1
  37. package/dist/esm/accounts/handler.d.ts.map +1 -1
  38. package/dist/esm/accounts/handler.js +59 -2
  39. package/dist/esm/accounts/handler.js.map +1 -1
  40. package/dist/esm/accounts/interface.d.ts +15 -3
  41. package/dist/esm/accounts/interface.d.ts.map +1 -1
  42. package/dist/esm/accounts/interface.js +42 -5
  43. package/dist/esm/accounts/interface.js.map +1 -1
  44. package/dist/esm/accounts/mixin.d.ts +4 -0
  45. package/dist/esm/accounts/mixin.d.ts.map +1 -1
  46. package/dist/esm/accounts/mixin.js +15 -0
  47. package/dist/esm/accounts/mixin.js.map +1 -1
  48. package/dist/esm/accounts/subgraph.d.ts +2 -1
  49. package/dist/esm/accounts/subgraph.d.ts.map +1 -1
  50. package/dist/esm/accounts/subgraph.js +5 -0
  51. package/dist/esm/accounts/subgraph.js.map +1 -1
  52. package/dist/esm/accounts/types.d.ts +1 -1
  53. package/dist/esm/accounts/types.d.ts.map +1 -1
  54. package/dist/esm/accounts/types.js.map +1 -1
  55. package/dist/esm/meta-tx/handler.d.ts.map +1 -1
  56. package/dist/esm/meta-tx/handler.js +7 -1
  57. package/dist/esm/meta-tx/handler.js.map +1 -1
  58. package/dist/esm/orchestration/handler.d.ts.map +1 -1
  59. package/dist/esm/orchestration/handler.js +9 -4
  60. package/dist/esm/orchestration/handler.js.map +1 -1
  61. package/dist/esm/orchestration/interface.d.ts +4 -4
  62. package/dist/esm/orchestration/interface.d.ts.map +1 -1
  63. package/dist/esm/orchestration/interface.js +8 -8
  64. package/dist/esm/orchestration/interface.js.map +1 -1
  65. package/dist/esm/subgraph.d.ts +3783 -1418
  66. package/dist/esm/subgraph.d.ts.map +1 -1
  67. package/dist/esm/subgraph.js +135 -35
  68. package/dist/esm/subgraph.js.map +1 -1
  69. package/dist/esm/utils/graphql.d.ts +13 -0
  70. package/dist/esm/utils/graphql.d.ts.map +1 -1
  71. package/package.json +3 -3
  72. package/src/accounts/handler.ts +93 -3
  73. package/src/accounts/interface.ts +78 -6
  74. package/src/accounts/mixin.ts +26 -0
  75. package/src/accounts/queries.graphql +61 -0
  76. package/src/accounts/subgraph.ts +14 -1
  77. package/src/accounts/types.ts +2 -1
  78. package/src/meta-tx/handler.ts +7 -1
  79. package/src/offers/queries.graphql +3 -0
  80. package/src/orchestration/handler.ts +13 -1
  81. package/src/orchestration/interface.ts +8 -4
  82. package/src/subgraph.ts +2964 -499
package/src/subgraph.ts CHANGED
@@ -808,7 +808,7 @@ export enum ConditionEntity_OrderBy {
808
808
 
809
809
  export type ConditionalCommitAuthorizedEventLog = {
810
810
  __typename?: "ConditionalCommitAuthorizedEventLog";
811
- buyerAddress: Scalars["String"];
811
+ buyerAddress: Scalars["Bytes"];
812
812
  commitCount: Scalars["BigInt"];
813
813
  gating: Scalars["Int"];
814
814
  groupId: Scalars["String"];
@@ -824,26 +824,12 @@ export type ConditionalCommitAuthorizedEventLog = {
824
824
  export type ConditionalCommitAuthorizedEventLog_Filter = {
825
825
  /** Filter for the block changed event. */
826
826
  _change_block?: InputMaybe<BlockChangedFilter>;
827
- buyerAddress?: InputMaybe<Scalars["String"]>;
828
- buyerAddress_contains?: InputMaybe<Scalars["String"]>;
829
- buyerAddress_contains_nocase?: InputMaybe<Scalars["String"]>;
830
- buyerAddress_ends_with?: InputMaybe<Scalars["String"]>;
831
- buyerAddress_ends_with_nocase?: InputMaybe<Scalars["String"]>;
832
- buyerAddress_gt?: InputMaybe<Scalars["String"]>;
833
- buyerAddress_gte?: InputMaybe<Scalars["String"]>;
834
- buyerAddress_in?: InputMaybe<Array<Scalars["String"]>>;
835
- buyerAddress_lt?: InputMaybe<Scalars["String"]>;
836
- buyerAddress_lte?: InputMaybe<Scalars["String"]>;
837
- buyerAddress_not?: InputMaybe<Scalars["String"]>;
838
- buyerAddress_not_contains?: InputMaybe<Scalars["String"]>;
839
- buyerAddress_not_contains_nocase?: InputMaybe<Scalars["String"]>;
840
- buyerAddress_not_ends_with?: InputMaybe<Scalars["String"]>;
841
- buyerAddress_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
842
- buyerAddress_not_in?: InputMaybe<Array<Scalars["String"]>>;
843
- buyerAddress_not_starts_with?: InputMaybe<Scalars["String"]>;
844
- buyerAddress_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
845
- buyerAddress_starts_with?: InputMaybe<Scalars["String"]>;
846
- buyerAddress_starts_with_nocase?: InputMaybe<Scalars["String"]>;
827
+ buyerAddress?: InputMaybe<Scalars["Bytes"]>;
828
+ buyerAddress_contains?: InputMaybe<Scalars["Bytes"]>;
829
+ buyerAddress_in?: InputMaybe<Array<Scalars["Bytes"]>>;
830
+ buyerAddress_not?: InputMaybe<Scalars["Bytes"]>;
831
+ buyerAddress_not_contains?: InputMaybe<Scalars["Bytes"]>;
832
+ buyerAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
847
833
  commitCount?: InputMaybe<Scalars["BigInt"]>;
848
834
  commitCount_gt?: InputMaybe<Scalars["BigInt"]>;
849
835
  commitCount_gte?: InputMaybe<Scalars["BigInt"]>;
@@ -2976,6 +2962,138 @@ export enum MetadataType {
2976
2962
  ProductV1 = "PRODUCT_V1"
2977
2963
  }
2978
2964
 
2965
+ /**
2966
+ * Nft Contract Metadata
2967
+ *
2968
+ */
2969
+ export type NftContractMetadata = {
2970
+ __typename?: "NftContractMetadata";
2971
+ collaborators?: Maybe<Array<Scalars["String"]>>;
2972
+ createdAt: Scalars["BigInt"];
2973
+ description?: Maybe<Scalars["String"]>;
2974
+ externalLink?: Maybe<Scalars["String"]>;
2975
+ id: Scalars["ID"];
2976
+ image?: Maybe<Scalars["String"]>;
2977
+ name?: Maybe<Scalars["String"]>;
2978
+ };
2979
+
2980
+ export type NftContractMetadata_Filter = {
2981
+ /** Filter for the block changed event. */
2982
+ _change_block?: InputMaybe<BlockChangedFilter>;
2983
+ collaborators?: InputMaybe<Array<Scalars["String"]>>;
2984
+ collaborators_contains?: InputMaybe<Array<Scalars["String"]>>;
2985
+ collaborators_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
2986
+ collaborators_not?: InputMaybe<Array<Scalars["String"]>>;
2987
+ collaborators_not_contains?: InputMaybe<Array<Scalars["String"]>>;
2988
+ collaborators_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
2989
+ createdAt?: InputMaybe<Scalars["BigInt"]>;
2990
+ createdAt_gt?: InputMaybe<Scalars["BigInt"]>;
2991
+ createdAt_gte?: InputMaybe<Scalars["BigInt"]>;
2992
+ createdAt_in?: InputMaybe<Array<Scalars["BigInt"]>>;
2993
+ createdAt_lt?: InputMaybe<Scalars["BigInt"]>;
2994
+ createdAt_lte?: InputMaybe<Scalars["BigInt"]>;
2995
+ createdAt_not?: InputMaybe<Scalars["BigInt"]>;
2996
+ createdAt_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
2997
+ description?: InputMaybe<Scalars["String"]>;
2998
+ description_contains?: InputMaybe<Scalars["String"]>;
2999
+ description_contains_nocase?: InputMaybe<Scalars["String"]>;
3000
+ description_ends_with?: InputMaybe<Scalars["String"]>;
3001
+ description_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3002
+ description_gt?: InputMaybe<Scalars["String"]>;
3003
+ description_gte?: InputMaybe<Scalars["String"]>;
3004
+ description_in?: InputMaybe<Array<Scalars["String"]>>;
3005
+ description_lt?: InputMaybe<Scalars["String"]>;
3006
+ description_lte?: InputMaybe<Scalars["String"]>;
3007
+ description_not?: InputMaybe<Scalars["String"]>;
3008
+ description_not_contains?: InputMaybe<Scalars["String"]>;
3009
+ description_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3010
+ description_not_ends_with?: InputMaybe<Scalars["String"]>;
3011
+ description_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3012
+ description_not_in?: InputMaybe<Array<Scalars["String"]>>;
3013
+ description_not_starts_with?: InputMaybe<Scalars["String"]>;
3014
+ description_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3015
+ description_starts_with?: InputMaybe<Scalars["String"]>;
3016
+ description_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3017
+ externalLink?: InputMaybe<Scalars["String"]>;
3018
+ externalLink_contains?: InputMaybe<Scalars["String"]>;
3019
+ externalLink_contains_nocase?: InputMaybe<Scalars["String"]>;
3020
+ externalLink_ends_with?: InputMaybe<Scalars["String"]>;
3021
+ externalLink_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3022
+ externalLink_gt?: InputMaybe<Scalars["String"]>;
3023
+ externalLink_gte?: InputMaybe<Scalars["String"]>;
3024
+ externalLink_in?: InputMaybe<Array<Scalars["String"]>>;
3025
+ externalLink_lt?: InputMaybe<Scalars["String"]>;
3026
+ externalLink_lte?: InputMaybe<Scalars["String"]>;
3027
+ externalLink_not?: InputMaybe<Scalars["String"]>;
3028
+ externalLink_not_contains?: InputMaybe<Scalars["String"]>;
3029
+ externalLink_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3030
+ externalLink_not_ends_with?: InputMaybe<Scalars["String"]>;
3031
+ externalLink_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3032
+ externalLink_not_in?: InputMaybe<Array<Scalars["String"]>>;
3033
+ externalLink_not_starts_with?: InputMaybe<Scalars["String"]>;
3034
+ externalLink_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3035
+ externalLink_starts_with?: InputMaybe<Scalars["String"]>;
3036
+ externalLink_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3037
+ id?: InputMaybe<Scalars["ID"]>;
3038
+ id_gt?: InputMaybe<Scalars["ID"]>;
3039
+ id_gte?: InputMaybe<Scalars["ID"]>;
3040
+ id_in?: InputMaybe<Array<Scalars["ID"]>>;
3041
+ id_lt?: InputMaybe<Scalars["ID"]>;
3042
+ id_lte?: InputMaybe<Scalars["ID"]>;
3043
+ id_not?: InputMaybe<Scalars["ID"]>;
3044
+ id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
3045
+ image?: InputMaybe<Scalars["String"]>;
3046
+ image_contains?: InputMaybe<Scalars["String"]>;
3047
+ image_contains_nocase?: InputMaybe<Scalars["String"]>;
3048
+ image_ends_with?: InputMaybe<Scalars["String"]>;
3049
+ image_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3050
+ image_gt?: InputMaybe<Scalars["String"]>;
3051
+ image_gte?: InputMaybe<Scalars["String"]>;
3052
+ image_in?: InputMaybe<Array<Scalars["String"]>>;
3053
+ image_lt?: InputMaybe<Scalars["String"]>;
3054
+ image_lte?: InputMaybe<Scalars["String"]>;
3055
+ image_not?: InputMaybe<Scalars["String"]>;
3056
+ image_not_contains?: InputMaybe<Scalars["String"]>;
3057
+ image_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3058
+ image_not_ends_with?: InputMaybe<Scalars["String"]>;
3059
+ image_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3060
+ image_not_in?: InputMaybe<Array<Scalars["String"]>>;
3061
+ image_not_starts_with?: InputMaybe<Scalars["String"]>;
3062
+ image_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3063
+ image_starts_with?: InputMaybe<Scalars["String"]>;
3064
+ image_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3065
+ name?: InputMaybe<Scalars["String"]>;
3066
+ name_contains?: InputMaybe<Scalars["String"]>;
3067
+ name_contains_nocase?: InputMaybe<Scalars["String"]>;
3068
+ name_ends_with?: InputMaybe<Scalars["String"]>;
3069
+ name_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3070
+ name_gt?: InputMaybe<Scalars["String"]>;
3071
+ name_gte?: InputMaybe<Scalars["String"]>;
3072
+ name_in?: InputMaybe<Array<Scalars["String"]>>;
3073
+ name_lt?: InputMaybe<Scalars["String"]>;
3074
+ name_lte?: InputMaybe<Scalars["String"]>;
3075
+ name_not?: InputMaybe<Scalars["String"]>;
3076
+ name_not_contains?: InputMaybe<Scalars["String"]>;
3077
+ name_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3078
+ name_not_ends_with?: InputMaybe<Scalars["String"]>;
3079
+ name_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3080
+ name_not_in?: InputMaybe<Array<Scalars["String"]>>;
3081
+ name_not_starts_with?: InputMaybe<Scalars["String"]>;
3082
+ name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3083
+ name_starts_with?: InputMaybe<Scalars["String"]>;
3084
+ name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3085
+ };
3086
+
3087
+ export enum NftContractMetadata_OrderBy {
3088
+ Collaborators = "collaborators",
3089
+ CreatedAt = "createdAt",
3090
+ Description = "description",
3091
+ ExternalLink = "externalLink",
3092
+ Id = "id",
3093
+ Image = "image",
3094
+ Name = "name"
3095
+ }
3096
+
2979
3097
  /**
2980
3098
  * Offer
2981
3099
  *
@@ -2985,6 +3103,7 @@ export type Offer = {
2985
3103
  agentFee: Scalars["BigInt"];
2986
3104
  agentId: Scalars["BigInt"];
2987
3105
  buyerCancelPenalty: Scalars["BigInt"];
3106
+ collection: OfferCollection;
2988
3107
  collectionIndex: Scalars["BigInt"];
2989
3108
  condition?: Maybe<ConditionEntity>;
2990
3109
  createdAt: Scalars["BigInt"];
@@ -3034,6 +3153,151 @@ export type OfferExchangesArgs = {
3034
3153
  where?: InputMaybe<Exchange_Filter>;
3035
3154
  };
3036
3155
 
3156
+ /**
3157
+ * Offer Collection
3158
+ *
3159
+ */
3160
+ export type OfferCollection = {
3161
+ __typename?: "OfferCollection";
3162
+ collectionAddress: Scalars["Bytes"];
3163
+ collectionIndex: Scalars["BigInt"];
3164
+ externalId: Scalars["String"];
3165
+ externalIdHash: Scalars["Bytes"];
3166
+ id: Scalars["ID"];
3167
+ metadata?: Maybe<NftContractMetadata>;
3168
+ offers: Array<Offer>;
3169
+ seller: Seller;
3170
+ sellerId: Scalars["BigInt"];
3171
+ };
3172
+
3173
+ /**
3174
+ * Offer Collection
3175
+ *
3176
+ */
3177
+ export type OfferCollectionOffersArgs = {
3178
+ first?: InputMaybe<Scalars["Int"]>;
3179
+ orderBy?: InputMaybe<Offer_OrderBy>;
3180
+ orderDirection?: InputMaybe<OrderDirection>;
3181
+ skip?: InputMaybe<Scalars["Int"]>;
3182
+ where?: InputMaybe<Offer_Filter>;
3183
+ };
3184
+
3185
+ export type OfferCollection_Filter = {
3186
+ /** Filter for the block changed event. */
3187
+ _change_block?: InputMaybe<BlockChangedFilter>;
3188
+ collectionAddress?: InputMaybe<Scalars["Bytes"]>;
3189
+ collectionAddress_contains?: InputMaybe<Scalars["Bytes"]>;
3190
+ collectionAddress_in?: InputMaybe<Array<Scalars["Bytes"]>>;
3191
+ collectionAddress_not?: InputMaybe<Scalars["Bytes"]>;
3192
+ collectionAddress_not_contains?: InputMaybe<Scalars["Bytes"]>;
3193
+ collectionAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
3194
+ collectionIndex?: InputMaybe<Scalars["BigInt"]>;
3195
+ collectionIndex_gt?: InputMaybe<Scalars["BigInt"]>;
3196
+ collectionIndex_gte?: InputMaybe<Scalars["BigInt"]>;
3197
+ collectionIndex_in?: InputMaybe<Array<Scalars["BigInt"]>>;
3198
+ collectionIndex_lt?: InputMaybe<Scalars["BigInt"]>;
3199
+ collectionIndex_lte?: InputMaybe<Scalars["BigInt"]>;
3200
+ collectionIndex_not?: InputMaybe<Scalars["BigInt"]>;
3201
+ collectionIndex_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
3202
+ externalId?: InputMaybe<Scalars["String"]>;
3203
+ externalIdHash?: InputMaybe<Scalars["Bytes"]>;
3204
+ externalIdHash_contains?: InputMaybe<Scalars["Bytes"]>;
3205
+ externalIdHash_in?: InputMaybe<Array<Scalars["Bytes"]>>;
3206
+ externalIdHash_not?: InputMaybe<Scalars["Bytes"]>;
3207
+ externalIdHash_not_contains?: InputMaybe<Scalars["Bytes"]>;
3208
+ externalIdHash_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
3209
+ externalId_contains?: InputMaybe<Scalars["String"]>;
3210
+ externalId_contains_nocase?: InputMaybe<Scalars["String"]>;
3211
+ externalId_ends_with?: InputMaybe<Scalars["String"]>;
3212
+ externalId_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3213
+ externalId_gt?: InputMaybe<Scalars["String"]>;
3214
+ externalId_gte?: InputMaybe<Scalars["String"]>;
3215
+ externalId_in?: InputMaybe<Array<Scalars["String"]>>;
3216
+ externalId_lt?: InputMaybe<Scalars["String"]>;
3217
+ externalId_lte?: InputMaybe<Scalars["String"]>;
3218
+ externalId_not?: InputMaybe<Scalars["String"]>;
3219
+ externalId_not_contains?: InputMaybe<Scalars["String"]>;
3220
+ externalId_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3221
+ externalId_not_ends_with?: InputMaybe<Scalars["String"]>;
3222
+ externalId_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3223
+ externalId_not_in?: InputMaybe<Array<Scalars["String"]>>;
3224
+ externalId_not_starts_with?: InputMaybe<Scalars["String"]>;
3225
+ externalId_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3226
+ externalId_starts_with?: InputMaybe<Scalars["String"]>;
3227
+ externalId_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3228
+ id?: InputMaybe<Scalars["ID"]>;
3229
+ id_gt?: InputMaybe<Scalars["ID"]>;
3230
+ id_gte?: InputMaybe<Scalars["ID"]>;
3231
+ id_in?: InputMaybe<Array<Scalars["ID"]>>;
3232
+ id_lt?: InputMaybe<Scalars["ID"]>;
3233
+ id_lte?: InputMaybe<Scalars["ID"]>;
3234
+ id_not?: InputMaybe<Scalars["ID"]>;
3235
+ id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
3236
+ metadata?: InputMaybe<Scalars["String"]>;
3237
+ metadata_?: InputMaybe<NftContractMetadata_Filter>;
3238
+ metadata_contains?: InputMaybe<Scalars["String"]>;
3239
+ metadata_contains_nocase?: InputMaybe<Scalars["String"]>;
3240
+ metadata_ends_with?: InputMaybe<Scalars["String"]>;
3241
+ metadata_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3242
+ metadata_gt?: InputMaybe<Scalars["String"]>;
3243
+ metadata_gte?: InputMaybe<Scalars["String"]>;
3244
+ metadata_in?: InputMaybe<Array<Scalars["String"]>>;
3245
+ metadata_lt?: InputMaybe<Scalars["String"]>;
3246
+ metadata_lte?: InputMaybe<Scalars["String"]>;
3247
+ metadata_not?: InputMaybe<Scalars["String"]>;
3248
+ metadata_not_contains?: InputMaybe<Scalars["String"]>;
3249
+ metadata_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3250
+ metadata_not_ends_with?: InputMaybe<Scalars["String"]>;
3251
+ metadata_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3252
+ metadata_not_in?: InputMaybe<Array<Scalars["String"]>>;
3253
+ metadata_not_starts_with?: InputMaybe<Scalars["String"]>;
3254
+ metadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3255
+ metadata_starts_with?: InputMaybe<Scalars["String"]>;
3256
+ metadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3257
+ offers_?: InputMaybe<Offer_Filter>;
3258
+ seller?: InputMaybe<Scalars["String"]>;
3259
+ sellerId?: InputMaybe<Scalars["BigInt"]>;
3260
+ sellerId_gt?: InputMaybe<Scalars["BigInt"]>;
3261
+ sellerId_gte?: InputMaybe<Scalars["BigInt"]>;
3262
+ sellerId_in?: InputMaybe<Array<Scalars["BigInt"]>>;
3263
+ sellerId_lt?: InputMaybe<Scalars["BigInt"]>;
3264
+ sellerId_lte?: InputMaybe<Scalars["BigInt"]>;
3265
+ sellerId_not?: InputMaybe<Scalars["BigInt"]>;
3266
+ sellerId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
3267
+ seller_?: InputMaybe<Seller_Filter>;
3268
+ seller_contains?: InputMaybe<Scalars["String"]>;
3269
+ seller_contains_nocase?: InputMaybe<Scalars["String"]>;
3270
+ seller_ends_with?: InputMaybe<Scalars["String"]>;
3271
+ seller_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3272
+ seller_gt?: InputMaybe<Scalars["String"]>;
3273
+ seller_gte?: InputMaybe<Scalars["String"]>;
3274
+ seller_in?: InputMaybe<Array<Scalars["String"]>>;
3275
+ seller_lt?: InputMaybe<Scalars["String"]>;
3276
+ seller_lte?: InputMaybe<Scalars["String"]>;
3277
+ seller_not?: InputMaybe<Scalars["String"]>;
3278
+ seller_not_contains?: InputMaybe<Scalars["String"]>;
3279
+ seller_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3280
+ seller_not_ends_with?: InputMaybe<Scalars["String"]>;
3281
+ seller_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3282
+ seller_not_in?: InputMaybe<Array<Scalars["String"]>>;
3283
+ seller_not_starts_with?: InputMaybe<Scalars["String"]>;
3284
+ seller_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3285
+ seller_starts_with?: InputMaybe<Scalars["String"]>;
3286
+ seller_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3287
+ };
3288
+
3289
+ export enum OfferCollection_OrderBy {
3290
+ CollectionAddress = "collectionAddress",
3291
+ CollectionIndex = "collectionIndex",
3292
+ ExternalId = "externalId",
3293
+ ExternalIdHash = "externalIdHash",
3294
+ Id = "id",
3295
+ Metadata = "metadata",
3296
+ Offers = "offers",
3297
+ Seller = "seller",
3298
+ SellerId = "sellerId"
3299
+ }
3300
+
3037
3301
  export type OfferEventLog = EventLog & {
3038
3302
  __typename?: "OfferEventLog";
3039
3303
  account: Account;
@@ -3174,6 +3438,7 @@ export type Offer_Filter = {
3174
3438
  buyerCancelPenalty_lte?: InputMaybe<Scalars["BigInt"]>;
3175
3439
  buyerCancelPenalty_not?: InputMaybe<Scalars["BigInt"]>;
3176
3440
  buyerCancelPenalty_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
3441
+ collection?: InputMaybe<Scalars["String"]>;
3177
3442
  collectionIndex?: InputMaybe<Scalars["BigInt"]>;
3178
3443
  collectionIndex_gt?: InputMaybe<Scalars["BigInt"]>;
3179
3444
  collectionIndex_gte?: InputMaybe<Scalars["BigInt"]>;
@@ -3182,6 +3447,26 @@ export type Offer_Filter = {
3182
3447
  collectionIndex_lte?: InputMaybe<Scalars["BigInt"]>;
3183
3448
  collectionIndex_not?: InputMaybe<Scalars["BigInt"]>;
3184
3449
  collectionIndex_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
3450
+ collection_?: InputMaybe<OfferCollection_Filter>;
3451
+ collection_contains?: InputMaybe<Scalars["String"]>;
3452
+ collection_contains_nocase?: InputMaybe<Scalars["String"]>;
3453
+ collection_ends_with?: InputMaybe<Scalars["String"]>;
3454
+ collection_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3455
+ collection_gt?: InputMaybe<Scalars["String"]>;
3456
+ collection_gte?: InputMaybe<Scalars["String"]>;
3457
+ collection_in?: InputMaybe<Array<Scalars["String"]>>;
3458
+ collection_lt?: InputMaybe<Scalars["String"]>;
3459
+ collection_lte?: InputMaybe<Scalars["String"]>;
3460
+ collection_not?: InputMaybe<Scalars["String"]>;
3461
+ collection_not_contains?: InputMaybe<Scalars["String"]>;
3462
+ collection_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3463
+ collection_not_ends_with?: InputMaybe<Scalars["String"]>;
3464
+ collection_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3465
+ collection_not_in?: InputMaybe<Array<Scalars["String"]>>;
3466
+ collection_not_starts_with?: InputMaybe<Scalars["String"]>;
3467
+ collection_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3468
+ collection_starts_with?: InputMaybe<Scalars["String"]>;
3469
+ collection_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3185
3470
  condition?: InputMaybe<Scalars["String"]>;
3186
3471
  condition_?: InputMaybe<ConditionEntity_Filter>;
3187
3472
  condition_contains?: InputMaybe<Scalars["String"]>;
@@ -3531,6 +3816,7 @@ export enum Offer_OrderBy {
3531
3816
  AgentFee = "agentFee",
3532
3817
  AgentId = "agentId",
3533
3818
  BuyerCancelPenalty = "buyerCancelPenalty",
3819
+ Collection = "collection",
3534
3820
  CollectionIndex = "collectionIndex",
3535
3821
  Condition = "condition",
3536
3822
  CreatedAt = "createdAt",
@@ -7063,7 +7349,10 @@ export type Query = {
7063
7349
  metadataAttributes: Array<MetadataAttribute>;
7064
7350
  metadataInterface?: Maybe<MetadataInterface>;
7065
7351
  metadataInterfaces: Array<MetadataInterface>;
7352
+ nftContractMetadata: Array<NftContractMetadata>;
7066
7353
  offer?: Maybe<Offer>;
7354
+ offerCollection?: Maybe<OfferCollection>;
7355
+ offerCollections: Array<OfferCollection>;
7067
7356
  offerEventLog?: Maybe<OfferEventLog>;
7068
7357
  offerEventLogs: Array<OfferEventLog>;
7069
7358
  offers: Array<Offer>;
@@ -7437,12 +7726,38 @@ export type QueryMetadataInterfacesArgs = {
7437
7726
  where?: InputMaybe<MetadataInterface_Filter>;
7438
7727
  };
7439
7728
 
7729
+ export type QueryNftContractMetadataArgs = {
7730
+ block?: InputMaybe<Block_Height>;
7731
+ first?: InputMaybe<Scalars["Int"]>;
7732
+ orderBy?: InputMaybe<NftContractMetadata_OrderBy>;
7733
+ orderDirection?: InputMaybe<OrderDirection>;
7734
+ skip?: InputMaybe<Scalars["Int"]>;
7735
+ subgraphError?: _SubgraphErrorPolicy_;
7736
+ where?: InputMaybe<NftContractMetadata_Filter>;
7737
+ };
7738
+
7440
7739
  export type QueryOfferArgs = {
7441
7740
  block?: InputMaybe<Block_Height>;
7442
7741
  id: Scalars["ID"];
7443
7742
  subgraphError?: _SubgraphErrorPolicy_;
7444
7743
  };
7445
7744
 
7745
+ export type QueryOfferCollectionArgs = {
7746
+ block?: InputMaybe<Block_Height>;
7747
+ id: Scalars["ID"];
7748
+ subgraphError?: _SubgraphErrorPolicy_;
7749
+ };
7750
+
7751
+ export type QueryOfferCollectionsArgs = {
7752
+ block?: InputMaybe<Block_Height>;
7753
+ first?: InputMaybe<Scalars["Int"]>;
7754
+ orderBy?: InputMaybe<OfferCollection_OrderBy>;
7755
+ orderDirection?: InputMaybe<OrderDirection>;
7756
+ skip?: InputMaybe<Scalars["Int"]>;
7757
+ subgraphError?: _SubgraphErrorPolicy_;
7758
+ where?: InputMaybe<OfferCollection_Filter>;
7759
+ };
7760
+
7446
7761
  export type QueryOfferEventLogArgs = {
7447
7762
  block?: InputMaybe<Block_Height>;
7448
7763
  id: Scalars["ID"];
@@ -8205,6 +8520,7 @@ export type Seller = Account & {
8205
8520
  authTokenId: Scalars["BigInt"];
8206
8521
  authTokenType: Scalars["Int"];
8207
8522
  clerk: Scalars["Bytes"];
8523
+ collections: Array<OfferCollection>;
8208
8524
  contractURI: Scalars["String"];
8209
8525
  exchanges: Array<Exchange>;
8210
8526
  funds: Array<FundsEntity>;
@@ -8221,6 +8537,14 @@ export type Seller = Account & {
8221
8537
  voucherCloneAddress: Scalars["Bytes"];
8222
8538
  };
8223
8539
 
8540
+ export type SellerCollectionsArgs = {
8541
+ first?: InputMaybe<Scalars["Int"]>;
8542
+ orderBy?: InputMaybe<OfferCollection_OrderBy>;
8543
+ orderDirection?: InputMaybe<OrderDirection>;
8544
+ skip?: InputMaybe<Scalars["Int"]>;
8545
+ where?: InputMaybe<OfferCollection_Filter>;
8546
+ };
8547
+
8224
8548
  export type SellerExchangesArgs = {
8225
8549
  first?: InputMaybe<Scalars["Int"]>;
8226
8550
  orderBy?: InputMaybe<Exchange_OrderBy>;
@@ -8820,6 +9144,7 @@ export type Seller_Filter = {
8820
9144
  clerk_not?: InputMaybe<Scalars["Bytes"]>;
8821
9145
  clerk_not_contains?: InputMaybe<Scalars["Bytes"]>;
8822
9146
  clerk_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
9147
+ collections_?: InputMaybe<OfferCollection_Filter>;
8823
9148
  contractURI?: InputMaybe<Scalars["String"]>;
8824
9149
  contractURI_contains?: InputMaybe<Scalars["String"]>;
8825
9150
  contractURI_contains_nocase?: InputMaybe<Scalars["String"]>;
@@ -8930,6 +9255,7 @@ export enum Seller_OrderBy {
8930
9255
  AuthTokenId = "authTokenId",
8931
9256
  AuthTokenType = "authTokenType",
8932
9257
  Clerk = "clerk",
9258
+ Collections = "collections",
8933
9259
  ContractUri = "contractURI",
8934
9260
  Exchanges = "exchanges",
8935
9261
  Funds = "funds",
@@ -8988,7 +9314,10 @@ export type Subscription = {
8988
9314
  metadataAttributes: Array<MetadataAttribute>;
8989
9315
  metadataInterface?: Maybe<MetadataInterface>;
8990
9316
  metadataInterfaces: Array<MetadataInterface>;
9317
+ nftContractMetadata: Array<NftContractMetadata>;
8991
9318
  offer?: Maybe<Offer>;
9319
+ offerCollection?: Maybe<OfferCollection>;
9320
+ offerCollections: Array<OfferCollection>;
8992
9321
  offerEventLog?: Maybe<OfferEventLog>;
8993
9322
  offerEventLogs: Array<OfferEventLog>;
8994
9323
  offers: Array<Offer>;
@@ -9362,12 +9691,38 @@ export type SubscriptionMetadataInterfacesArgs = {
9362
9691
  where?: InputMaybe<MetadataInterface_Filter>;
9363
9692
  };
9364
9693
 
9694
+ export type SubscriptionNftContractMetadataArgs = {
9695
+ block?: InputMaybe<Block_Height>;
9696
+ first?: InputMaybe<Scalars["Int"]>;
9697
+ orderBy?: InputMaybe<NftContractMetadata_OrderBy>;
9698
+ orderDirection?: InputMaybe<OrderDirection>;
9699
+ skip?: InputMaybe<Scalars["Int"]>;
9700
+ subgraphError?: _SubgraphErrorPolicy_;
9701
+ where?: InputMaybe<NftContractMetadata_Filter>;
9702
+ };
9703
+
9365
9704
  export type SubscriptionOfferArgs = {
9366
9705
  block?: InputMaybe<Block_Height>;
9367
9706
  id: Scalars["ID"];
9368
9707
  subgraphError?: _SubgraphErrorPolicy_;
9369
9708
  };
9370
9709
 
9710
+ export type SubscriptionOfferCollectionArgs = {
9711
+ block?: InputMaybe<Block_Height>;
9712
+ id: Scalars["ID"];
9713
+ subgraphError?: _SubgraphErrorPolicy_;
9714
+ };
9715
+
9716
+ export type SubscriptionOfferCollectionsArgs = {
9717
+ block?: InputMaybe<Block_Height>;
9718
+ first?: InputMaybe<Scalars["Int"]>;
9719
+ orderBy?: InputMaybe<OfferCollection_OrderBy>;
9720
+ orderDirection?: InputMaybe<OrderDirection>;
9721
+ skip?: InputMaybe<Scalars["Int"]>;
9722
+ subgraphError?: _SubgraphErrorPolicy_;
9723
+ where?: InputMaybe<OfferCollection_Filter>;
9724
+ };
9725
+
9371
9726
  export type SubscriptionOfferEventLogArgs = {
9372
9727
  block?: InputMaybe<Block_Height>;
9373
9728
  id: Scalars["ID"];
@@ -9874,6 +10229,25 @@ export type GetSellerByIdQueryQuery = {
9874
10229
  contractURI: string;
9875
10230
  royaltyPercentage: string;
9876
10231
  metadataUri: string;
10232
+ collections: Array<{
10233
+ __typename?: "OfferCollection";
10234
+ id: string;
10235
+ sellerId: string;
10236
+ collectionIndex: string;
10237
+ collectionAddress: string;
10238
+ externalIdHash: string;
10239
+ externalId: string;
10240
+ metadata?: {
10241
+ __typename?: "NftContractMetadata";
10242
+ id: string;
10243
+ name?: string | null;
10244
+ description?: string | null;
10245
+ image?: string | null;
10246
+ externalLink?: string | null;
10247
+ createdAt: string;
10248
+ collaborators?: Array<string> | null;
10249
+ } | null;
10250
+ }>;
9877
10251
  pendingSeller?: {
9878
10252
  __typename?: "PendingSeller";
9879
10253
  assistant?: string | null;
@@ -10007,6 +10381,25 @@ export type GetSellerByIdQueryQuery = {
10007
10381
  }> | null;
10008
10382
  } | null;
10009
10383
  };
10384
+ collection: {
10385
+ __typename?: "OfferCollection";
10386
+ id: string;
10387
+ sellerId: string;
10388
+ collectionIndex: string;
10389
+ collectionAddress: string;
10390
+ externalIdHash: string;
10391
+ externalId: string;
10392
+ metadata?: {
10393
+ __typename?: "NftContractMetadata";
10394
+ id: string;
10395
+ name?: string | null;
10396
+ description?: string | null;
10397
+ image?: string | null;
10398
+ externalLink?: string | null;
10399
+ createdAt: string;
10400
+ collaborators?: Array<string> | null;
10401
+ } | null;
10402
+ };
10010
10403
  exchangeToken: {
10011
10404
  __typename?: "ExchangeToken";
10012
10405
  id: string;
@@ -10773,6 +11166,25 @@ export type GetSellersQueryQuery = {
10773
11166
  contractURI: string;
10774
11167
  royaltyPercentage: string;
10775
11168
  metadataUri: string;
11169
+ collections: Array<{
11170
+ __typename?: "OfferCollection";
11171
+ id: string;
11172
+ sellerId: string;
11173
+ collectionIndex: string;
11174
+ collectionAddress: string;
11175
+ externalIdHash: string;
11176
+ externalId: string;
11177
+ metadata?: {
11178
+ __typename?: "NftContractMetadata";
11179
+ id: string;
11180
+ name?: string | null;
11181
+ description?: string | null;
11182
+ image?: string | null;
11183
+ externalLink?: string | null;
11184
+ createdAt: string;
11185
+ collaborators?: Array<string> | null;
11186
+ } | null;
11187
+ }>;
10776
11188
  pendingSeller?: {
10777
11189
  __typename?: "PendingSeller";
10778
11190
  assistant?: string | null;
@@ -10906,6 +11318,25 @@ export type GetSellersQueryQuery = {
10906
11318
  }> | null;
10907
11319
  } | null;
10908
11320
  };
11321
+ collection: {
11322
+ __typename?: "OfferCollection";
11323
+ id: string;
11324
+ sellerId: string;
11325
+ collectionIndex: string;
11326
+ collectionAddress: string;
11327
+ externalIdHash: string;
11328
+ externalId: string;
11329
+ metadata?: {
11330
+ __typename?: "NftContractMetadata";
11331
+ id: string;
11332
+ name?: string | null;
11333
+ description?: string | null;
11334
+ image?: string | null;
11335
+ externalLink?: string | null;
11336
+ createdAt: string;
11337
+ collaborators?: Array<string> | null;
11338
+ } | null;
11339
+ };
10909
11340
  exchangeToken: {
10910
11341
  __typename?: "ExchangeToken";
10911
11342
  id: string;
@@ -12228,6 +12659,25 @@ export type GetDisputeResolverByIdQueryQuery = {
12228
12659
  }> | null;
12229
12660
  } | null;
12230
12661
  };
12662
+ collection: {
12663
+ __typename?: "OfferCollection";
12664
+ id: string;
12665
+ sellerId: string;
12666
+ collectionIndex: string;
12667
+ collectionAddress: string;
12668
+ externalIdHash: string;
12669
+ externalId: string;
12670
+ metadata?: {
12671
+ __typename?: "NftContractMetadata";
12672
+ id: string;
12673
+ name?: string | null;
12674
+ description?: string | null;
12675
+ image?: string | null;
12676
+ externalLink?: string | null;
12677
+ createdAt: string;
12678
+ collaborators?: Array<string> | null;
12679
+ } | null;
12680
+ };
12231
12681
  exchangeToken: {
12232
12682
  __typename?: "ExchangeToken";
12233
12683
  id: string;
@@ -12946,6 +13396,25 @@ export type GetDisputeResolversQueryQuery = {
12946
13396
  }> | null;
12947
13397
  } | null;
12948
13398
  };
13399
+ collection: {
13400
+ __typename?: "OfferCollection";
13401
+ id: string;
13402
+ sellerId: string;
13403
+ collectionIndex: string;
13404
+ collectionAddress: string;
13405
+ externalIdHash: string;
13406
+ externalId: string;
13407
+ metadata?: {
13408
+ __typename?: "NftContractMetadata";
13409
+ id: string;
13410
+ name?: string | null;
13411
+ description?: string | null;
13412
+ image?: string | null;
13413
+ externalLink?: string | null;
13414
+ createdAt: string;
13415
+ collaborators?: Array<string> | null;
13416
+ } | null;
13417
+ };
12949
13418
  exchangeToken: {
12950
13419
  __typename?: "ExchangeToken";
12951
13420
  id: string;
@@ -13540,81 +14009,30 @@ export type GetConditionalCommitAuthorizedEventLogsQueryQuery = {
13540
14009
  }>;
13541
14010
  };
13542
14011
 
13543
- export type SellerFieldsFragment = {
13544
- __typename?: "Seller";
13545
- id: string;
13546
- assistant: string;
13547
- admin: string;
13548
- clerk: string;
13549
- treasury: string;
13550
- authTokenId: string;
13551
- authTokenType: number;
13552
- voucherCloneAddress: string;
13553
- active: boolean;
13554
- contractURI: string;
13555
- royaltyPercentage: string;
13556
- metadataUri: string;
13557
- pendingSeller?: {
13558
- __typename?: "PendingSeller";
13559
- assistant?: string | null;
13560
- admin?: string | null;
13561
- clerk?: string | null;
13562
- authTokenId?: string | null;
13563
- authTokenType?: number | null;
13564
- } | null;
13565
- funds?: Array<{
13566
- __typename?: "FundsEntity";
13567
- id: string;
13568
- availableAmount: string;
13569
- accountId: string;
13570
- token: {
13571
- __typename?: "ExchangeToken";
13572
- id: string;
13573
- address: string;
13574
- decimals: string;
13575
- symbol: string;
13576
- name: string;
13577
- };
13578
- }>;
13579
- offers?: Array<{
13580
- __typename?: "Offer";
14012
+ export type GetOfferCollectionsQueryQueryVariables = Exact<{
14013
+ offerCollectionsSkip?: InputMaybe<Scalars["Int"]>;
14014
+ offerCollectionsFirst?: InputMaybe<Scalars["Int"]>;
14015
+ offerCollectionsOrderBy?: InputMaybe<OfferCollection_OrderBy>;
14016
+ offerCollectionsOrderDirection?: InputMaybe<OrderDirection>;
14017
+ offerCollectionsFilter?: InputMaybe<OfferCollection_Filter>;
14018
+ offersSkip?: InputMaybe<Scalars["Int"]>;
14019
+ offersFirst?: InputMaybe<Scalars["Int"]>;
14020
+ offersOrderBy?: InputMaybe<Offer_OrderBy>;
14021
+ offersOrderDirection?: InputMaybe<OrderDirection>;
14022
+ offersFilter?: InputMaybe<Offer_Filter>;
14023
+ includeOffers?: InputMaybe<Scalars["Boolean"]>;
14024
+ }>;
14025
+
14026
+ export type GetOfferCollectionsQueryQuery = {
14027
+ __typename?: "Query";
14028
+ offerCollections: Array<{
14029
+ __typename?: "OfferCollection";
13581
14030
  id: string;
13582
- createdAt: string;
13583
- price: string;
13584
- sellerDeposit: string;
13585
- protocolFee: string;
13586
- agentFee: string;
13587
- agentId: string;
13588
- buyerCancelPenalty: string;
13589
- quantityAvailable: string;
13590
- quantityInitial: string;
13591
- validFromDate: string;
13592
- validUntilDate: string;
13593
- voucherRedeemableFromDate: string;
13594
- voucherRedeemableUntilDate: string;
13595
- disputePeriodDuration: string;
13596
- voucherValidDuration: string;
13597
- resolutionPeriodDuration: string;
13598
- metadataUri: string;
13599
- metadataHash: string;
13600
- voided: boolean;
13601
- voidedAt?: string | null;
14031
+ sellerId: string;
13602
14032
  collectionIndex: string;
13603
- disputeResolverId: string;
13604
- numberOfCommits: string;
13605
- numberOfRedemptions: string;
13606
- condition?: {
13607
- __typename?: "ConditionEntity";
13608
- id: string;
13609
- method: number;
13610
- tokenType: number;
13611
- tokenAddress: string;
13612
- gatingType: number;
13613
- minTokenId: string;
13614
- maxTokenId: string;
13615
- threshold: string;
13616
- maxCommits: string;
13617
- } | null;
14033
+ collectionAddress: string;
14034
+ externalIdHash: string;
14035
+ externalId: string;
13618
14036
  seller: {
13619
14037
  __typename?: "Seller";
13620
14038
  id: string;
@@ -13687,195 +14105,1717 @@ export type SellerFieldsFragment = {
13687
14105
  }> | null;
13688
14106
  } | null;
13689
14107
  };
13690
- exchangeToken: {
13691
- __typename?: "ExchangeToken";
13692
- id: string;
13693
- address: string;
13694
- decimals: string;
13695
- symbol: string;
13696
- name: string;
13697
- };
13698
- disputeResolver: {
13699
- __typename?: "DisputeResolver";
14108
+ offers?: Array<{
14109
+ __typename?: "Offer";
13700
14110
  id: string;
13701
- escalationResponsePeriod: string;
13702
- admin: string;
13703
- clerk: string;
13704
- treasury: string;
13705
- assistant: string;
14111
+ createdAt: string;
14112
+ price: string;
14113
+ sellerDeposit: string;
14114
+ protocolFee: string;
14115
+ agentFee: string;
14116
+ agentId: string;
14117
+ buyerCancelPenalty: string;
14118
+ quantityAvailable: string;
14119
+ quantityInitial: string;
14120
+ validFromDate: string;
14121
+ validUntilDate: string;
14122
+ voucherRedeemableFromDate: string;
14123
+ voucherRedeemableUntilDate: string;
14124
+ disputePeriodDuration: string;
14125
+ voucherValidDuration: string;
14126
+ resolutionPeriodDuration: string;
13706
14127
  metadataUri: string;
13707
- active: boolean;
13708
- sellerAllowList: Array<string>;
13709
- fees: Array<{
13710
- __typename?: "DisputeResolverFee";
14128
+ metadataHash: string;
14129
+ voided: boolean;
14130
+ voidedAt?: string | null;
14131
+ collectionIndex: string;
14132
+ disputeResolverId: string;
14133
+ numberOfCommits: string;
14134
+ numberOfRedemptions: string;
14135
+ condition?: {
14136
+ __typename?: "ConditionEntity";
13711
14137
  id: string;
14138
+ method: number;
14139
+ tokenType: number;
13712
14140
  tokenAddress: string;
13713
- tokenName: string;
13714
- feeAmount: string;
13715
- token: {
13716
- __typename?: "ExchangeToken";
14141
+ gatingType: number;
14142
+ minTokenId: string;
14143
+ maxTokenId: string;
14144
+ threshold: string;
14145
+ maxCommits: string;
14146
+ } | null;
14147
+ seller: {
14148
+ __typename?: "Seller";
14149
+ id: string;
14150
+ assistant: string;
14151
+ admin: string;
14152
+ clerk: string;
14153
+ treasury: string;
14154
+ authTokenId: string;
14155
+ authTokenType: number;
14156
+ voucherCloneAddress: string;
14157
+ active: boolean;
14158
+ contractURI: string;
14159
+ royaltyPercentage: string;
14160
+ metadataUri: string;
14161
+ metadata?: {
14162
+ __typename?: "SellerMetadata";
13717
14163
  id: string;
13718
- address: string;
13719
- decimals: string;
13720
- symbol: string;
13721
- name: string;
13722
- };
13723
- }>;
13724
- };
13725
- disputeResolutionTerms: {
13726
- __typename?: "DisputeResolutionTermsEntity";
13727
- id: string;
13728
- disputeResolverId: string;
13729
- escalationResponsePeriod: string;
13730
- feeAmount: string;
13731
- buyerEscalationDeposit: string;
13732
- };
13733
- metadata?:
13734
- | {
13735
- __typename?: "BaseMetadataEntity";
13736
- name: string;
13737
- description: string;
13738
- externalUrl: string;
13739
- animationUrl?: string | null;
13740
- licenseUrl: string;
13741
- condition?: string | null;
13742
- schemaUrl: string;
13743
- type: MetadataType;
13744
- image: string;
13745
- animationMetadata?: {
13746
- __typename?: "AnimationMetadata";
14164
+ createdAt: string;
14165
+ name?: string | null;
14166
+ description?: string | null;
14167
+ legalTradingName?: string | null;
14168
+ type: SellerMetadataType;
14169
+ kind: string;
14170
+ website?: string | null;
14171
+ contactPreference: string;
14172
+ images?: Array<{
14173
+ __typename?: "SellerMetadataMedia";
13747
14174
  id: string;
14175
+ url: string;
14176
+ tag?: string | null;
14177
+ type: string;
13748
14178
  width?: number | null;
13749
14179
  height?: number | null;
13750
- type?: string | null;
13751
- } | null;
13752
- }
13753
- | {
13754
- __typename?: "ProductV1MetadataEntity";
13755
- createdAt: string;
13756
- voided: boolean;
13757
- validFromDate: string;
13758
- validUntilDate: string;
13759
- quantityAvailable: string;
13760
- uuid: string;
13761
- name: string;
13762
- description: string;
13763
- externalUrl: string;
13764
- animationUrl?: string | null;
13765
- licenseUrl: string;
13766
- condition?: string | null;
13767
- schemaUrl: string;
13768
- type: MetadataType;
13769
- image: string;
13770
- productOverrides?: {
13771
- __typename?: "ProductV1ProductOverrides";
14180
+ fit?: string | null;
14181
+ position?: string | null;
14182
+ }> | null;
14183
+ contactLinks?: Array<{
14184
+ __typename?: "SellerContactLink";
13772
14185
  id: string;
13773
- version: number;
13774
- title: string;
13775
- description: string;
13776
- identification_sKU?: string | null;
13777
- identification_productId?: string | null;
13778
- identification_productIdType?: string | null;
13779
- productionInformation_brandName: string;
13780
- productionInformation_manufacturer?: string | null;
13781
- productionInformation_manufacturerPartNumber?: string | null;
13782
- productionInformation_modelNumber?: string | null;
13783
- productionInformation_materials?: Array<string> | null;
13784
- packaging_packageQuantity?: string | null;
13785
- packaging_dimensions_length?: string | null;
13786
- packaging_dimensions_width?: string | null;
13787
- packaging_dimensions_height?: string | null;
13788
- packaging_dimensions_unit?: string | null;
13789
- packaging_weight_value?: string | null;
13790
- packaging_weight_unit?: string | null;
13791
- brand: { __typename?: "ProductV1Brand"; id: string; name: string };
13792
- visuals_images: Array<{
13793
- __typename?: "ProductV1Media";
13794
- id: string;
13795
- url: string;
13796
- tag?: string | null;
13797
- type: ProductV1MediaType;
13798
- width?: number | null;
13799
- height?: number | null;
13800
- }>;
13801
- visuals_videos?: Array<{
13802
- __typename?: "ProductV1Media";
14186
+ url: string;
14187
+ tag: string;
14188
+ }> | null;
14189
+ socialLinks?: Array<{
14190
+ __typename?: "SellerSocialLink";
14191
+ id: string;
14192
+ url: string;
14193
+ tag: string;
14194
+ }> | null;
14195
+ salesChannels?: Array<{
14196
+ __typename?: "SalesChannel";
14197
+ id: string;
14198
+ tag: string;
14199
+ name?: string | null;
14200
+ settingsUri?: string | null;
14201
+ settingsEditor?: string | null;
14202
+ link?: string | null;
14203
+ deployments?: Array<{
14204
+ __typename?: "SalesChannelDeployment";
13803
14205
  id: string;
13804
- url: string;
13805
- tag?: string | null;
13806
- type: ProductV1MediaType;
13807
- width?: number | null;
13808
- height?: number | null;
14206
+ status?: string | null;
14207
+ link?: string | null;
14208
+ lastUpdated?: string | null;
14209
+ product?: {
14210
+ __typename?: "ProductV1Product";
14211
+ id: string;
14212
+ uuid: string;
14213
+ version: number;
14214
+ } | null;
13809
14215
  }> | null;
13810
- } | null;
13811
- attributes?: Array<{
13812
- __typename?: "MetadataAttribute";
13813
- traitType: string;
13814
- value: string;
13815
- displayType: string;
13816
14216
  }> | null;
13817
- product: {
13818
- __typename?: "ProductV1Product";
14217
+ } | null;
14218
+ };
14219
+ collection: {
14220
+ __typename?: "OfferCollection";
14221
+ id: string;
14222
+ sellerId: string;
14223
+ collectionIndex: string;
14224
+ collectionAddress: string;
14225
+ externalIdHash: string;
14226
+ externalId: string;
14227
+ metadata?: {
14228
+ __typename?: "NftContractMetadata";
14229
+ id: string;
14230
+ name?: string | null;
14231
+ description?: string | null;
14232
+ image?: string | null;
14233
+ externalLink?: string | null;
14234
+ createdAt: string;
14235
+ collaborators?: Array<string> | null;
14236
+ } | null;
14237
+ };
14238
+ exchangeToken: {
14239
+ __typename?: "ExchangeToken";
14240
+ id: string;
14241
+ address: string;
14242
+ decimals: string;
14243
+ symbol: string;
14244
+ name: string;
14245
+ };
14246
+ disputeResolver: {
14247
+ __typename?: "DisputeResolver";
14248
+ id: string;
14249
+ escalationResponsePeriod: string;
14250
+ admin: string;
14251
+ clerk: string;
14252
+ treasury: string;
14253
+ assistant: string;
14254
+ metadataUri: string;
14255
+ active: boolean;
14256
+ sellerAllowList: Array<string>;
14257
+ fees: Array<{
14258
+ __typename?: "DisputeResolverFee";
14259
+ id: string;
14260
+ tokenAddress: string;
14261
+ tokenName: string;
14262
+ feeAmount: string;
14263
+ token: {
14264
+ __typename?: "ExchangeToken";
13819
14265
  id: string;
13820
- uuid: string;
13821
- version: number;
13822
- title: string;
14266
+ address: string;
14267
+ decimals: string;
14268
+ symbol: string;
14269
+ name: string;
14270
+ };
14271
+ }>;
14272
+ };
14273
+ disputeResolutionTerms: {
14274
+ __typename?: "DisputeResolutionTermsEntity";
14275
+ id: string;
14276
+ disputeResolverId: string;
14277
+ escalationResponsePeriod: string;
14278
+ feeAmount: string;
14279
+ buyerEscalationDeposit: string;
14280
+ };
14281
+ metadata?:
14282
+ | {
14283
+ __typename?: "BaseMetadataEntity";
14284
+ name: string;
13823
14285
  description: string;
13824
- identification_sKU?: string | null;
13825
- identification_productId?: string | null;
13826
- identification_productIdType?: string | null;
13827
- productionInformation_brandName: string;
13828
- productionInformation_manufacturer?: string | null;
13829
- productionInformation_manufacturerPartNumber?: string | null;
13830
- productionInformation_modelNumber?: string | null;
13831
- productionInformation_materials?: Array<string> | null;
13832
- details_category?: string | null;
13833
- details_subCategory?: string | null;
13834
- details_subCategory2?: string | null;
13835
- details_offerCategory: string;
13836
- offerCategory: ProductV1OfferCategory;
13837
- details_tags?: Array<string> | null;
13838
- details_sections?: Array<string> | null;
13839
- details_personalisation?: Array<string> | null;
13840
- packaging_packageQuantity?: string | null;
13841
- packaging_dimensions_length?: string | null;
13842
- packaging_dimensions_width?: string | null;
13843
- packaging_dimensions_height?: string | null;
13844
- packaging_dimensions_unit?: string | null;
13845
- packaging_weight_value?: string | null;
13846
- packaging_weight_unit?: string | null;
13847
- brand: { __typename?: "ProductV1Brand"; id: string; name: string };
13848
- category?: {
13849
- __typename?: "ProductV1Category";
13850
- id: string;
13851
- name: string;
13852
- } | null;
13853
- subCategory?: {
13854
- __typename?: "ProductV1Category";
14286
+ externalUrl: string;
14287
+ animationUrl?: string | null;
14288
+ licenseUrl: string;
14289
+ condition?: string | null;
14290
+ schemaUrl: string;
14291
+ type: MetadataType;
14292
+ image: string;
14293
+ animationMetadata?: {
14294
+ __typename?: "AnimationMetadata";
13855
14295
  id: string;
13856
- name: string;
14296
+ width?: number | null;
14297
+ height?: number | null;
14298
+ type?: string | null;
13857
14299
  } | null;
13858
- subCategory2?: {
13859
- __typename?: "ProductV1Category";
14300
+ }
14301
+ | {
14302
+ __typename?: "ProductV1MetadataEntity";
14303
+ createdAt: string;
14304
+ voided: boolean;
14305
+ validFromDate: string;
14306
+ validUntilDate: string;
14307
+ quantityAvailable: string;
14308
+ uuid: string;
14309
+ name: string;
14310
+ description: string;
14311
+ externalUrl: string;
14312
+ animationUrl?: string | null;
14313
+ licenseUrl: string;
14314
+ condition?: string | null;
14315
+ schemaUrl: string;
14316
+ type: MetadataType;
14317
+ image: string;
14318
+ productOverrides?: {
14319
+ __typename?: "ProductV1ProductOverrides";
13860
14320
  id: string;
13861
- name: string;
14321
+ version: number;
14322
+ title: string;
14323
+ description: string;
14324
+ identification_sKU?: string | null;
14325
+ identification_productId?: string | null;
14326
+ identification_productIdType?: string | null;
14327
+ productionInformation_brandName: string;
14328
+ productionInformation_manufacturer?: string | null;
14329
+ productionInformation_manufacturerPartNumber?: string | null;
14330
+ productionInformation_modelNumber?: string | null;
14331
+ productionInformation_materials?: Array<string> | null;
14332
+ packaging_packageQuantity?: string | null;
14333
+ packaging_dimensions_length?: string | null;
14334
+ packaging_dimensions_width?: string | null;
14335
+ packaging_dimensions_height?: string | null;
14336
+ packaging_dimensions_unit?: string | null;
14337
+ packaging_weight_value?: string | null;
14338
+ packaging_weight_unit?: string | null;
14339
+ brand: {
14340
+ __typename?: "ProductV1Brand";
14341
+ id: string;
14342
+ name: string;
14343
+ };
14344
+ visuals_images: Array<{
14345
+ __typename?: "ProductV1Media";
14346
+ id: string;
14347
+ url: string;
14348
+ tag?: string | null;
14349
+ type: ProductV1MediaType;
14350
+ width?: number | null;
14351
+ height?: number | null;
14352
+ }>;
14353
+ visuals_videos?: Array<{
14354
+ __typename?: "ProductV1Media";
14355
+ id: string;
14356
+ url: string;
14357
+ tag?: string | null;
14358
+ type: ProductV1MediaType;
14359
+ width?: number | null;
14360
+ height?: number | null;
14361
+ }> | null;
13862
14362
  } | null;
13863
- tags?: Array<{
13864
- __typename?: "ProductV1Tag";
13865
- id: string;
13866
- name: string;
13867
- }> | null;
13868
- sections?: Array<{
13869
- __typename?: "ProductV1Section";
13870
- id: string;
13871
- name: string;
14363
+ attributes?: Array<{
14364
+ __typename?: "MetadataAttribute";
14365
+ traitType: string;
14366
+ value: string;
14367
+ displayType: string;
13872
14368
  }> | null;
13873
- personalisation?: Array<{
13874
- __typename?: "ProductV1Personalisation";
14369
+ product: {
14370
+ __typename?: "ProductV1Product";
13875
14371
  id: string;
13876
- name: string;
13877
- }> | null;
13878
- visuals_images: Array<{
14372
+ uuid: string;
14373
+ version: number;
14374
+ title: string;
14375
+ description: string;
14376
+ identification_sKU?: string | null;
14377
+ identification_productId?: string | null;
14378
+ identification_productIdType?: string | null;
14379
+ productionInformation_brandName: string;
14380
+ productionInformation_manufacturer?: string | null;
14381
+ productionInformation_manufacturerPartNumber?: string | null;
14382
+ productionInformation_modelNumber?: string | null;
14383
+ productionInformation_materials?: Array<string> | null;
14384
+ details_category?: string | null;
14385
+ details_subCategory?: string | null;
14386
+ details_subCategory2?: string | null;
14387
+ details_offerCategory: string;
14388
+ offerCategory: ProductV1OfferCategory;
14389
+ details_tags?: Array<string> | null;
14390
+ details_sections?: Array<string> | null;
14391
+ details_personalisation?: Array<string> | null;
14392
+ packaging_packageQuantity?: string | null;
14393
+ packaging_dimensions_length?: string | null;
14394
+ packaging_dimensions_width?: string | null;
14395
+ packaging_dimensions_height?: string | null;
14396
+ packaging_dimensions_unit?: string | null;
14397
+ packaging_weight_value?: string | null;
14398
+ packaging_weight_unit?: string | null;
14399
+ brand: {
14400
+ __typename?: "ProductV1Brand";
14401
+ id: string;
14402
+ name: string;
14403
+ };
14404
+ category?: {
14405
+ __typename?: "ProductV1Category";
14406
+ id: string;
14407
+ name: string;
14408
+ } | null;
14409
+ subCategory?: {
14410
+ __typename?: "ProductV1Category";
14411
+ id: string;
14412
+ name: string;
14413
+ } | null;
14414
+ subCategory2?: {
14415
+ __typename?: "ProductV1Category";
14416
+ id: string;
14417
+ name: string;
14418
+ } | null;
14419
+ tags?: Array<{
14420
+ __typename?: "ProductV1Tag";
14421
+ id: string;
14422
+ name: string;
14423
+ }> | null;
14424
+ sections?: Array<{
14425
+ __typename?: "ProductV1Section";
14426
+ id: string;
14427
+ name: string;
14428
+ }> | null;
14429
+ personalisation?: Array<{
14430
+ __typename?: "ProductV1Personalisation";
14431
+ id: string;
14432
+ name: string;
14433
+ }> | null;
14434
+ visuals_images: Array<{
14435
+ __typename?: "ProductV1Media";
14436
+ id: string;
14437
+ url: string;
14438
+ tag?: string | null;
14439
+ type: ProductV1MediaType;
14440
+ width?: number | null;
14441
+ height?: number | null;
14442
+ }>;
14443
+ visuals_videos?: Array<{
14444
+ __typename?: "ProductV1Media";
14445
+ id: string;
14446
+ url: string;
14447
+ tag?: string | null;
14448
+ type: ProductV1MediaType;
14449
+ width?: number | null;
14450
+ height?: number | null;
14451
+ }> | null;
14452
+ productV1Seller?: {
14453
+ __typename?: "ProductV1Seller";
14454
+ id: string;
14455
+ defaultVersion: number;
14456
+ name?: string | null;
14457
+ description?: string | null;
14458
+ externalUrl?: string | null;
14459
+ tokenId?: string | null;
14460
+ sellerId?: string | null;
14461
+ contactPreference?: string | null;
14462
+ images?: Array<{
14463
+ __typename?: "ProductV1Media";
14464
+ id: string;
14465
+ url: string;
14466
+ tag?: string | null;
14467
+ type: ProductV1MediaType;
14468
+ width?: number | null;
14469
+ height?: number | null;
14470
+ }> | null;
14471
+ contactLinks?: Array<{
14472
+ __typename?: "ProductV1SellerContactLink";
14473
+ id: string;
14474
+ url: string;
14475
+ tag: string;
14476
+ }> | null;
14477
+ seller: {
14478
+ __typename?: "Seller";
14479
+ id: string;
14480
+ assistant: string;
14481
+ admin: string;
14482
+ clerk: string;
14483
+ treasury: string;
14484
+ authTokenId: string;
14485
+ authTokenType: number;
14486
+ voucherCloneAddress: string;
14487
+ active: boolean;
14488
+ contractURI: string;
14489
+ royaltyPercentage: string;
14490
+ metadataUri: string;
14491
+ metadata?: {
14492
+ __typename?: "SellerMetadata";
14493
+ id: string;
14494
+ createdAt: string;
14495
+ name?: string | null;
14496
+ description?: string | null;
14497
+ legalTradingName?: string | null;
14498
+ type: SellerMetadataType;
14499
+ kind: string;
14500
+ website?: string | null;
14501
+ contactPreference: string;
14502
+ images?: Array<{
14503
+ __typename?: "SellerMetadataMedia";
14504
+ id: string;
14505
+ url: string;
14506
+ tag?: string | null;
14507
+ type: string;
14508
+ width?: number | null;
14509
+ height?: number | null;
14510
+ fit?: string | null;
14511
+ position?: string | null;
14512
+ }> | null;
14513
+ contactLinks?: Array<{
14514
+ __typename?: "SellerContactLink";
14515
+ id: string;
14516
+ url: string;
14517
+ tag: string;
14518
+ }> | null;
14519
+ socialLinks?: Array<{
14520
+ __typename?: "SellerSocialLink";
14521
+ id: string;
14522
+ url: string;
14523
+ tag: string;
14524
+ }> | null;
14525
+ salesChannels?: Array<{
14526
+ __typename?: "SalesChannel";
14527
+ id: string;
14528
+ tag: string;
14529
+ name?: string | null;
14530
+ settingsUri?: string | null;
14531
+ settingsEditor?: string | null;
14532
+ link?: string | null;
14533
+ deployments?: Array<{
14534
+ __typename?: "SalesChannelDeployment";
14535
+ id: string;
14536
+ status?: string | null;
14537
+ link?: string | null;
14538
+ lastUpdated?: string | null;
14539
+ product?: {
14540
+ __typename?: "ProductV1Product";
14541
+ id: string;
14542
+ uuid: string;
14543
+ version: number;
14544
+ } | null;
14545
+ }> | null;
14546
+ }> | null;
14547
+ } | null;
14548
+ };
14549
+ } | null;
14550
+ salesChannels?: Array<{
14551
+ __typename?: "SalesChannel";
14552
+ id: string;
14553
+ tag: string;
14554
+ name?: string | null;
14555
+ settingsUri?: string | null;
14556
+ settingsEditor?: string | null;
14557
+ link?: string | null;
14558
+ deployments?: Array<{
14559
+ __typename?: "SalesChannelDeployment";
14560
+ id: string;
14561
+ status?: string | null;
14562
+ link?: string | null;
14563
+ lastUpdated?: string | null;
14564
+ product?: {
14565
+ __typename?: "ProductV1Product";
14566
+ id: string;
14567
+ uuid: string;
14568
+ version: number;
14569
+ } | null;
14570
+ }> | null;
14571
+ }> | null;
14572
+ };
14573
+ variations?: Array<{
14574
+ __typename?: "ProductV1Variation";
14575
+ id: string;
14576
+ type: string;
14577
+ option: string;
14578
+ }> | null;
14579
+ productV1Seller: {
14580
+ __typename?: "ProductV1Seller";
14581
+ id: string;
14582
+ defaultVersion: number;
14583
+ name?: string | null;
14584
+ description?: string | null;
14585
+ externalUrl?: string | null;
14586
+ tokenId?: string | null;
14587
+ sellerId?: string | null;
14588
+ contactPreference?: string | null;
14589
+ images?: Array<{
14590
+ __typename?: "ProductV1Media";
14591
+ id: string;
14592
+ url: string;
14593
+ tag?: string | null;
14594
+ type: ProductV1MediaType;
14595
+ width?: number | null;
14596
+ height?: number | null;
14597
+ }> | null;
14598
+ contactLinks?: Array<{
14599
+ __typename?: "ProductV1SellerContactLink";
14600
+ id: string;
14601
+ url: string;
14602
+ tag: string;
14603
+ }> | null;
14604
+ seller: {
14605
+ __typename?: "Seller";
14606
+ id: string;
14607
+ assistant: string;
14608
+ admin: string;
14609
+ clerk: string;
14610
+ treasury: string;
14611
+ authTokenId: string;
14612
+ authTokenType: number;
14613
+ voucherCloneAddress: string;
14614
+ active: boolean;
14615
+ contractURI: string;
14616
+ royaltyPercentage: string;
14617
+ metadataUri: string;
14618
+ metadata?: {
14619
+ __typename?: "SellerMetadata";
14620
+ id: string;
14621
+ createdAt: string;
14622
+ name?: string | null;
14623
+ description?: string | null;
14624
+ legalTradingName?: string | null;
14625
+ type: SellerMetadataType;
14626
+ kind: string;
14627
+ website?: string | null;
14628
+ contactPreference: string;
14629
+ images?: Array<{
14630
+ __typename?: "SellerMetadataMedia";
14631
+ id: string;
14632
+ url: string;
14633
+ tag?: string | null;
14634
+ type: string;
14635
+ width?: number | null;
14636
+ height?: number | null;
14637
+ fit?: string | null;
14638
+ position?: string | null;
14639
+ }> | null;
14640
+ contactLinks?: Array<{
14641
+ __typename?: "SellerContactLink";
14642
+ id: string;
14643
+ url: string;
14644
+ tag: string;
14645
+ }> | null;
14646
+ socialLinks?: Array<{
14647
+ __typename?: "SellerSocialLink";
14648
+ id: string;
14649
+ url: string;
14650
+ tag: string;
14651
+ }> | null;
14652
+ salesChannels?: Array<{
14653
+ __typename?: "SalesChannel";
14654
+ id: string;
14655
+ tag: string;
14656
+ name?: string | null;
14657
+ settingsUri?: string | null;
14658
+ settingsEditor?: string | null;
14659
+ link?: string | null;
14660
+ deployments?: Array<{
14661
+ __typename?: "SalesChannelDeployment";
14662
+ id: string;
14663
+ status?: string | null;
14664
+ link?: string | null;
14665
+ lastUpdated?: string | null;
14666
+ product?: {
14667
+ __typename?: "ProductV1Product";
14668
+ id: string;
14669
+ uuid: string;
14670
+ version: number;
14671
+ } | null;
14672
+ }> | null;
14673
+ }> | null;
14674
+ } | null;
14675
+ };
14676
+ };
14677
+ exchangePolicy: {
14678
+ __typename?: "ProductV1ExchangePolicy";
14679
+ id: string;
14680
+ uuid: string;
14681
+ version: number;
14682
+ label?: string | null;
14683
+ template: string;
14684
+ sellerContactMethod: string;
14685
+ disputeResolverContactMethod: string;
14686
+ };
14687
+ shipping?: {
14688
+ __typename?: "ProductV1ShippingOption";
14689
+ id: string;
14690
+ defaultVersion?: number | null;
14691
+ countryOfOrigin?: string | null;
14692
+ redemptionPoint?: string | null;
14693
+ returnPeriodInDays: number;
14694
+ supportedJurisdictions?: Array<{
14695
+ __typename?: "ProductV1ShippingJurisdiction";
14696
+ id: string;
14697
+ label: string;
14698
+ deliveryTime: string;
14699
+ }> | null;
14700
+ } | null;
14701
+ animationMetadata?: {
14702
+ __typename?: "AnimationMetadata";
14703
+ id: string;
14704
+ width?: number | null;
14705
+ height?: number | null;
14706
+ type?: string | null;
14707
+ } | null;
14708
+ }
14709
+ | null;
14710
+ range?: {
14711
+ __typename?: "RangeEntity";
14712
+ id: string;
14713
+ start: string;
14714
+ end: string;
14715
+ owner: string;
14716
+ } | null;
14717
+ }>;
14718
+ metadata?: {
14719
+ __typename?: "NftContractMetadata";
14720
+ id: string;
14721
+ name?: string | null;
14722
+ description?: string | null;
14723
+ image?: string | null;
14724
+ externalLink?: string | null;
14725
+ createdAt: string;
14726
+ collaborators?: Array<string> | null;
14727
+ } | null;
14728
+ }>;
14729
+ };
14730
+
14731
+ export type OfferCollectionFieldsFragment = {
14732
+ __typename?: "OfferCollection";
14733
+ id: string;
14734
+ sellerId: string;
14735
+ collectionIndex: string;
14736
+ collectionAddress: string;
14737
+ externalIdHash: string;
14738
+ externalId: string;
14739
+ seller: {
14740
+ __typename?: "Seller";
14741
+ id: string;
14742
+ assistant: string;
14743
+ admin: string;
14744
+ clerk: string;
14745
+ treasury: string;
14746
+ authTokenId: string;
14747
+ authTokenType: number;
14748
+ voucherCloneAddress: string;
14749
+ active: boolean;
14750
+ contractURI: string;
14751
+ royaltyPercentage: string;
14752
+ metadataUri: string;
14753
+ metadata?: {
14754
+ __typename?: "SellerMetadata";
14755
+ id: string;
14756
+ createdAt: string;
14757
+ name?: string | null;
14758
+ description?: string | null;
14759
+ legalTradingName?: string | null;
14760
+ type: SellerMetadataType;
14761
+ kind: string;
14762
+ website?: string | null;
14763
+ contactPreference: string;
14764
+ images?: Array<{
14765
+ __typename?: "SellerMetadataMedia";
14766
+ id: string;
14767
+ url: string;
14768
+ tag?: string | null;
14769
+ type: string;
14770
+ width?: number | null;
14771
+ height?: number | null;
14772
+ fit?: string | null;
14773
+ position?: string | null;
14774
+ }> | null;
14775
+ contactLinks?: Array<{
14776
+ __typename?: "SellerContactLink";
14777
+ id: string;
14778
+ url: string;
14779
+ tag: string;
14780
+ }> | null;
14781
+ socialLinks?: Array<{
14782
+ __typename?: "SellerSocialLink";
14783
+ id: string;
14784
+ url: string;
14785
+ tag: string;
14786
+ }> | null;
14787
+ salesChannels?: Array<{
14788
+ __typename?: "SalesChannel";
14789
+ id: string;
14790
+ tag: string;
14791
+ name?: string | null;
14792
+ settingsUri?: string | null;
14793
+ settingsEditor?: string | null;
14794
+ link?: string | null;
14795
+ deployments?: Array<{
14796
+ __typename?: "SalesChannelDeployment";
14797
+ id: string;
14798
+ status?: string | null;
14799
+ link?: string | null;
14800
+ lastUpdated?: string | null;
14801
+ product?: {
14802
+ __typename?: "ProductV1Product";
14803
+ id: string;
14804
+ uuid: string;
14805
+ version: number;
14806
+ } | null;
14807
+ }> | null;
14808
+ }> | null;
14809
+ } | null;
14810
+ };
14811
+ offers?: Array<{
14812
+ __typename?: "Offer";
14813
+ id: string;
14814
+ createdAt: string;
14815
+ price: string;
14816
+ sellerDeposit: string;
14817
+ protocolFee: string;
14818
+ agentFee: string;
14819
+ agentId: string;
14820
+ buyerCancelPenalty: string;
14821
+ quantityAvailable: string;
14822
+ quantityInitial: string;
14823
+ validFromDate: string;
14824
+ validUntilDate: string;
14825
+ voucherRedeemableFromDate: string;
14826
+ voucherRedeemableUntilDate: string;
14827
+ disputePeriodDuration: string;
14828
+ voucherValidDuration: string;
14829
+ resolutionPeriodDuration: string;
14830
+ metadataUri: string;
14831
+ metadataHash: string;
14832
+ voided: boolean;
14833
+ voidedAt?: string | null;
14834
+ collectionIndex: string;
14835
+ disputeResolverId: string;
14836
+ numberOfCommits: string;
14837
+ numberOfRedemptions: string;
14838
+ condition?: {
14839
+ __typename?: "ConditionEntity";
14840
+ id: string;
14841
+ method: number;
14842
+ tokenType: number;
14843
+ tokenAddress: string;
14844
+ gatingType: number;
14845
+ minTokenId: string;
14846
+ maxTokenId: string;
14847
+ threshold: string;
14848
+ maxCommits: string;
14849
+ } | null;
14850
+ seller: {
14851
+ __typename?: "Seller";
14852
+ id: string;
14853
+ assistant: string;
14854
+ admin: string;
14855
+ clerk: string;
14856
+ treasury: string;
14857
+ authTokenId: string;
14858
+ authTokenType: number;
14859
+ voucherCloneAddress: string;
14860
+ active: boolean;
14861
+ contractURI: string;
14862
+ royaltyPercentage: string;
14863
+ metadataUri: string;
14864
+ metadata?: {
14865
+ __typename?: "SellerMetadata";
14866
+ id: string;
14867
+ createdAt: string;
14868
+ name?: string | null;
14869
+ description?: string | null;
14870
+ legalTradingName?: string | null;
14871
+ type: SellerMetadataType;
14872
+ kind: string;
14873
+ website?: string | null;
14874
+ contactPreference: string;
14875
+ images?: Array<{
14876
+ __typename?: "SellerMetadataMedia";
14877
+ id: string;
14878
+ url: string;
14879
+ tag?: string | null;
14880
+ type: string;
14881
+ width?: number | null;
14882
+ height?: number | null;
14883
+ fit?: string | null;
14884
+ position?: string | null;
14885
+ }> | null;
14886
+ contactLinks?: Array<{
14887
+ __typename?: "SellerContactLink";
14888
+ id: string;
14889
+ url: string;
14890
+ tag: string;
14891
+ }> | null;
14892
+ socialLinks?: Array<{
14893
+ __typename?: "SellerSocialLink";
14894
+ id: string;
14895
+ url: string;
14896
+ tag: string;
14897
+ }> | null;
14898
+ salesChannels?: Array<{
14899
+ __typename?: "SalesChannel";
14900
+ id: string;
14901
+ tag: string;
14902
+ name?: string | null;
14903
+ settingsUri?: string | null;
14904
+ settingsEditor?: string | null;
14905
+ link?: string | null;
14906
+ deployments?: Array<{
14907
+ __typename?: "SalesChannelDeployment";
14908
+ id: string;
14909
+ status?: string | null;
14910
+ link?: string | null;
14911
+ lastUpdated?: string | null;
14912
+ product?: {
14913
+ __typename?: "ProductV1Product";
14914
+ id: string;
14915
+ uuid: string;
14916
+ version: number;
14917
+ } | null;
14918
+ }> | null;
14919
+ }> | null;
14920
+ } | null;
14921
+ };
14922
+ collection: {
14923
+ __typename?: "OfferCollection";
14924
+ id: string;
14925
+ sellerId: string;
14926
+ collectionIndex: string;
14927
+ collectionAddress: string;
14928
+ externalIdHash: string;
14929
+ externalId: string;
14930
+ metadata?: {
14931
+ __typename?: "NftContractMetadata";
14932
+ id: string;
14933
+ name?: string | null;
14934
+ description?: string | null;
14935
+ image?: string | null;
14936
+ externalLink?: string | null;
14937
+ createdAt: string;
14938
+ collaborators?: Array<string> | null;
14939
+ } | null;
14940
+ };
14941
+ exchangeToken: {
14942
+ __typename?: "ExchangeToken";
14943
+ id: string;
14944
+ address: string;
14945
+ decimals: string;
14946
+ symbol: string;
14947
+ name: string;
14948
+ };
14949
+ disputeResolver: {
14950
+ __typename?: "DisputeResolver";
14951
+ id: string;
14952
+ escalationResponsePeriod: string;
14953
+ admin: string;
14954
+ clerk: string;
14955
+ treasury: string;
14956
+ assistant: string;
14957
+ metadataUri: string;
14958
+ active: boolean;
14959
+ sellerAllowList: Array<string>;
14960
+ fees: Array<{
14961
+ __typename?: "DisputeResolverFee";
14962
+ id: string;
14963
+ tokenAddress: string;
14964
+ tokenName: string;
14965
+ feeAmount: string;
14966
+ token: {
14967
+ __typename?: "ExchangeToken";
14968
+ id: string;
14969
+ address: string;
14970
+ decimals: string;
14971
+ symbol: string;
14972
+ name: string;
14973
+ };
14974
+ }>;
14975
+ };
14976
+ disputeResolutionTerms: {
14977
+ __typename?: "DisputeResolutionTermsEntity";
14978
+ id: string;
14979
+ disputeResolverId: string;
14980
+ escalationResponsePeriod: string;
14981
+ feeAmount: string;
14982
+ buyerEscalationDeposit: string;
14983
+ };
14984
+ metadata?:
14985
+ | {
14986
+ __typename?: "BaseMetadataEntity";
14987
+ name: string;
14988
+ description: string;
14989
+ externalUrl: string;
14990
+ animationUrl?: string | null;
14991
+ licenseUrl: string;
14992
+ condition?: string | null;
14993
+ schemaUrl: string;
14994
+ type: MetadataType;
14995
+ image: string;
14996
+ animationMetadata?: {
14997
+ __typename?: "AnimationMetadata";
14998
+ id: string;
14999
+ width?: number | null;
15000
+ height?: number | null;
15001
+ type?: string | null;
15002
+ } | null;
15003
+ }
15004
+ | {
15005
+ __typename?: "ProductV1MetadataEntity";
15006
+ createdAt: string;
15007
+ voided: boolean;
15008
+ validFromDate: string;
15009
+ validUntilDate: string;
15010
+ quantityAvailable: string;
15011
+ uuid: string;
15012
+ name: string;
15013
+ description: string;
15014
+ externalUrl: string;
15015
+ animationUrl?: string | null;
15016
+ licenseUrl: string;
15017
+ condition?: string | null;
15018
+ schemaUrl: string;
15019
+ type: MetadataType;
15020
+ image: string;
15021
+ productOverrides?: {
15022
+ __typename?: "ProductV1ProductOverrides";
15023
+ id: string;
15024
+ version: number;
15025
+ title: string;
15026
+ description: string;
15027
+ identification_sKU?: string | null;
15028
+ identification_productId?: string | null;
15029
+ identification_productIdType?: string | null;
15030
+ productionInformation_brandName: string;
15031
+ productionInformation_manufacturer?: string | null;
15032
+ productionInformation_manufacturerPartNumber?: string | null;
15033
+ productionInformation_modelNumber?: string | null;
15034
+ productionInformation_materials?: Array<string> | null;
15035
+ packaging_packageQuantity?: string | null;
15036
+ packaging_dimensions_length?: string | null;
15037
+ packaging_dimensions_width?: string | null;
15038
+ packaging_dimensions_height?: string | null;
15039
+ packaging_dimensions_unit?: string | null;
15040
+ packaging_weight_value?: string | null;
15041
+ packaging_weight_unit?: string | null;
15042
+ brand: { __typename?: "ProductV1Brand"; id: string; name: string };
15043
+ visuals_images: Array<{
15044
+ __typename?: "ProductV1Media";
15045
+ id: string;
15046
+ url: string;
15047
+ tag?: string | null;
15048
+ type: ProductV1MediaType;
15049
+ width?: number | null;
15050
+ height?: number | null;
15051
+ }>;
15052
+ visuals_videos?: Array<{
15053
+ __typename?: "ProductV1Media";
15054
+ id: string;
15055
+ url: string;
15056
+ tag?: string | null;
15057
+ type: ProductV1MediaType;
15058
+ width?: number | null;
15059
+ height?: number | null;
15060
+ }> | null;
15061
+ } | null;
15062
+ attributes?: Array<{
15063
+ __typename?: "MetadataAttribute";
15064
+ traitType: string;
15065
+ value: string;
15066
+ displayType: string;
15067
+ }> | null;
15068
+ product: {
15069
+ __typename?: "ProductV1Product";
15070
+ id: string;
15071
+ uuid: string;
15072
+ version: number;
15073
+ title: string;
15074
+ description: string;
15075
+ identification_sKU?: string | null;
15076
+ identification_productId?: string | null;
15077
+ identification_productIdType?: string | null;
15078
+ productionInformation_brandName: string;
15079
+ productionInformation_manufacturer?: string | null;
15080
+ productionInformation_manufacturerPartNumber?: string | null;
15081
+ productionInformation_modelNumber?: string | null;
15082
+ productionInformation_materials?: Array<string> | null;
15083
+ details_category?: string | null;
15084
+ details_subCategory?: string | null;
15085
+ details_subCategory2?: string | null;
15086
+ details_offerCategory: string;
15087
+ offerCategory: ProductV1OfferCategory;
15088
+ details_tags?: Array<string> | null;
15089
+ details_sections?: Array<string> | null;
15090
+ details_personalisation?: Array<string> | null;
15091
+ packaging_packageQuantity?: string | null;
15092
+ packaging_dimensions_length?: string | null;
15093
+ packaging_dimensions_width?: string | null;
15094
+ packaging_dimensions_height?: string | null;
15095
+ packaging_dimensions_unit?: string | null;
15096
+ packaging_weight_value?: string | null;
15097
+ packaging_weight_unit?: string | null;
15098
+ brand: { __typename?: "ProductV1Brand"; id: string; name: string };
15099
+ category?: {
15100
+ __typename?: "ProductV1Category";
15101
+ id: string;
15102
+ name: string;
15103
+ } | null;
15104
+ subCategory?: {
15105
+ __typename?: "ProductV1Category";
15106
+ id: string;
15107
+ name: string;
15108
+ } | null;
15109
+ subCategory2?: {
15110
+ __typename?: "ProductV1Category";
15111
+ id: string;
15112
+ name: string;
15113
+ } | null;
15114
+ tags?: Array<{
15115
+ __typename?: "ProductV1Tag";
15116
+ id: string;
15117
+ name: string;
15118
+ }> | null;
15119
+ sections?: Array<{
15120
+ __typename?: "ProductV1Section";
15121
+ id: string;
15122
+ name: string;
15123
+ }> | null;
15124
+ personalisation?: Array<{
15125
+ __typename?: "ProductV1Personalisation";
15126
+ id: string;
15127
+ name: string;
15128
+ }> | null;
15129
+ visuals_images: Array<{
15130
+ __typename?: "ProductV1Media";
15131
+ id: string;
15132
+ url: string;
15133
+ tag?: string | null;
15134
+ type: ProductV1MediaType;
15135
+ width?: number | null;
15136
+ height?: number | null;
15137
+ }>;
15138
+ visuals_videos?: Array<{
15139
+ __typename?: "ProductV1Media";
15140
+ id: string;
15141
+ url: string;
15142
+ tag?: string | null;
15143
+ type: ProductV1MediaType;
15144
+ width?: number | null;
15145
+ height?: number | null;
15146
+ }> | null;
15147
+ productV1Seller?: {
15148
+ __typename?: "ProductV1Seller";
15149
+ id: string;
15150
+ defaultVersion: number;
15151
+ name?: string | null;
15152
+ description?: string | null;
15153
+ externalUrl?: string | null;
15154
+ tokenId?: string | null;
15155
+ sellerId?: string | null;
15156
+ contactPreference?: string | null;
15157
+ images?: Array<{
15158
+ __typename?: "ProductV1Media";
15159
+ id: string;
15160
+ url: string;
15161
+ tag?: string | null;
15162
+ type: ProductV1MediaType;
15163
+ width?: number | null;
15164
+ height?: number | null;
15165
+ }> | null;
15166
+ contactLinks?: Array<{
15167
+ __typename?: "ProductV1SellerContactLink";
15168
+ id: string;
15169
+ url: string;
15170
+ tag: string;
15171
+ }> | null;
15172
+ seller: {
15173
+ __typename?: "Seller";
15174
+ id: string;
15175
+ assistant: string;
15176
+ admin: string;
15177
+ clerk: string;
15178
+ treasury: string;
15179
+ authTokenId: string;
15180
+ authTokenType: number;
15181
+ voucherCloneAddress: string;
15182
+ active: boolean;
15183
+ contractURI: string;
15184
+ royaltyPercentage: string;
15185
+ metadataUri: string;
15186
+ metadata?: {
15187
+ __typename?: "SellerMetadata";
15188
+ id: string;
15189
+ createdAt: string;
15190
+ name?: string | null;
15191
+ description?: string | null;
15192
+ legalTradingName?: string | null;
15193
+ type: SellerMetadataType;
15194
+ kind: string;
15195
+ website?: string | null;
15196
+ contactPreference: string;
15197
+ images?: Array<{
15198
+ __typename?: "SellerMetadataMedia";
15199
+ id: string;
15200
+ url: string;
15201
+ tag?: string | null;
15202
+ type: string;
15203
+ width?: number | null;
15204
+ height?: number | null;
15205
+ fit?: string | null;
15206
+ position?: string | null;
15207
+ }> | null;
15208
+ contactLinks?: Array<{
15209
+ __typename?: "SellerContactLink";
15210
+ id: string;
15211
+ url: string;
15212
+ tag: string;
15213
+ }> | null;
15214
+ socialLinks?: Array<{
15215
+ __typename?: "SellerSocialLink";
15216
+ id: string;
15217
+ url: string;
15218
+ tag: string;
15219
+ }> | null;
15220
+ salesChannels?: Array<{
15221
+ __typename?: "SalesChannel";
15222
+ id: string;
15223
+ tag: string;
15224
+ name?: string | null;
15225
+ settingsUri?: string | null;
15226
+ settingsEditor?: string | null;
15227
+ link?: string | null;
15228
+ deployments?: Array<{
15229
+ __typename?: "SalesChannelDeployment";
15230
+ id: string;
15231
+ status?: string | null;
15232
+ link?: string | null;
15233
+ lastUpdated?: string | null;
15234
+ product?: {
15235
+ __typename?: "ProductV1Product";
15236
+ id: string;
15237
+ uuid: string;
15238
+ version: number;
15239
+ } | null;
15240
+ }> | null;
15241
+ }> | null;
15242
+ } | null;
15243
+ };
15244
+ } | null;
15245
+ salesChannels?: Array<{
15246
+ __typename?: "SalesChannel";
15247
+ id: string;
15248
+ tag: string;
15249
+ name?: string | null;
15250
+ settingsUri?: string | null;
15251
+ settingsEditor?: string | null;
15252
+ link?: string | null;
15253
+ deployments?: Array<{
15254
+ __typename?: "SalesChannelDeployment";
15255
+ id: string;
15256
+ status?: string | null;
15257
+ link?: string | null;
15258
+ lastUpdated?: string | null;
15259
+ product?: {
15260
+ __typename?: "ProductV1Product";
15261
+ id: string;
15262
+ uuid: string;
15263
+ version: number;
15264
+ } | null;
15265
+ }> | null;
15266
+ }> | null;
15267
+ };
15268
+ variations?: Array<{
15269
+ __typename?: "ProductV1Variation";
15270
+ id: string;
15271
+ type: string;
15272
+ option: string;
15273
+ }> | null;
15274
+ productV1Seller: {
15275
+ __typename?: "ProductV1Seller";
15276
+ id: string;
15277
+ defaultVersion: number;
15278
+ name?: string | null;
15279
+ description?: string | null;
15280
+ externalUrl?: string | null;
15281
+ tokenId?: string | null;
15282
+ sellerId?: string | null;
15283
+ contactPreference?: string | null;
15284
+ images?: Array<{
15285
+ __typename?: "ProductV1Media";
15286
+ id: string;
15287
+ url: string;
15288
+ tag?: string | null;
15289
+ type: ProductV1MediaType;
15290
+ width?: number | null;
15291
+ height?: number | null;
15292
+ }> | null;
15293
+ contactLinks?: Array<{
15294
+ __typename?: "ProductV1SellerContactLink";
15295
+ id: string;
15296
+ url: string;
15297
+ tag: string;
15298
+ }> | null;
15299
+ seller: {
15300
+ __typename?: "Seller";
15301
+ id: string;
15302
+ assistant: string;
15303
+ admin: string;
15304
+ clerk: string;
15305
+ treasury: string;
15306
+ authTokenId: string;
15307
+ authTokenType: number;
15308
+ voucherCloneAddress: string;
15309
+ active: boolean;
15310
+ contractURI: string;
15311
+ royaltyPercentage: string;
15312
+ metadataUri: string;
15313
+ metadata?: {
15314
+ __typename?: "SellerMetadata";
15315
+ id: string;
15316
+ createdAt: string;
15317
+ name?: string | null;
15318
+ description?: string | null;
15319
+ legalTradingName?: string | null;
15320
+ type: SellerMetadataType;
15321
+ kind: string;
15322
+ website?: string | null;
15323
+ contactPreference: string;
15324
+ images?: Array<{
15325
+ __typename?: "SellerMetadataMedia";
15326
+ id: string;
15327
+ url: string;
15328
+ tag?: string | null;
15329
+ type: string;
15330
+ width?: number | null;
15331
+ height?: number | null;
15332
+ fit?: string | null;
15333
+ position?: string | null;
15334
+ }> | null;
15335
+ contactLinks?: Array<{
15336
+ __typename?: "SellerContactLink";
15337
+ id: string;
15338
+ url: string;
15339
+ tag: string;
15340
+ }> | null;
15341
+ socialLinks?: Array<{
15342
+ __typename?: "SellerSocialLink";
15343
+ id: string;
15344
+ url: string;
15345
+ tag: string;
15346
+ }> | null;
15347
+ salesChannels?: Array<{
15348
+ __typename?: "SalesChannel";
15349
+ id: string;
15350
+ tag: string;
15351
+ name?: string | null;
15352
+ settingsUri?: string | null;
15353
+ settingsEditor?: string | null;
15354
+ link?: string | null;
15355
+ deployments?: Array<{
15356
+ __typename?: "SalesChannelDeployment";
15357
+ id: string;
15358
+ status?: string | null;
15359
+ link?: string | null;
15360
+ lastUpdated?: string | null;
15361
+ product?: {
15362
+ __typename?: "ProductV1Product";
15363
+ id: string;
15364
+ uuid: string;
15365
+ version: number;
15366
+ } | null;
15367
+ }> | null;
15368
+ }> | null;
15369
+ } | null;
15370
+ };
15371
+ };
15372
+ exchangePolicy: {
15373
+ __typename?: "ProductV1ExchangePolicy";
15374
+ id: string;
15375
+ uuid: string;
15376
+ version: number;
15377
+ label?: string | null;
15378
+ template: string;
15379
+ sellerContactMethod: string;
15380
+ disputeResolverContactMethod: string;
15381
+ };
15382
+ shipping?: {
15383
+ __typename?: "ProductV1ShippingOption";
15384
+ id: string;
15385
+ defaultVersion?: number | null;
15386
+ countryOfOrigin?: string | null;
15387
+ redemptionPoint?: string | null;
15388
+ returnPeriodInDays: number;
15389
+ supportedJurisdictions?: Array<{
15390
+ __typename?: "ProductV1ShippingJurisdiction";
15391
+ id: string;
15392
+ label: string;
15393
+ deliveryTime: string;
15394
+ }> | null;
15395
+ } | null;
15396
+ animationMetadata?: {
15397
+ __typename?: "AnimationMetadata";
15398
+ id: string;
15399
+ width?: number | null;
15400
+ height?: number | null;
15401
+ type?: string | null;
15402
+ } | null;
15403
+ }
15404
+ | null;
15405
+ range?: {
15406
+ __typename?: "RangeEntity";
15407
+ id: string;
15408
+ start: string;
15409
+ end: string;
15410
+ owner: string;
15411
+ } | null;
15412
+ }>;
15413
+ metadata?: {
15414
+ __typename?: "NftContractMetadata";
15415
+ id: string;
15416
+ name?: string | null;
15417
+ description?: string | null;
15418
+ image?: string | null;
15419
+ externalLink?: string | null;
15420
+ createdAt: string;
15421
+ collaborators?: Array<string> | null;
15422
+ } | null;
15423
+ };
15424
+
15425
+ export type BaseOfferCollectionFieldsFragment = {
15426
+ __typename?: "OfferCollection";
15427
+ id: string;
15428
+ sellerId: string;
15429
+ collectionIndex: string;
15430
+ collectionAddress: string;
15431
+ externalIdHash: string;
15432
+ externalId: string;
15433
+ metadata?: {
15434
+ __typename?: "NftContractMetadata";
15435
+ id: string;
15436
+ name?: string | null;
15437
+ description?: string | null;
15438
+ image?: string | null;
15439
+ externalLink?: string | null;
15440
+ createdAt: string;
15441
+ collaborators?: Array<string> | null;
15442
+ } | null;
15443
+ };
15444
+
15445
+ export type SellerFieldsFragment = {
15446
+ __typename?: "Seller";
15447
+ id: string;
15448
+ assistant: string;
15449
+ admin: string;
15450
+ clerk: string;
15451
+ treasury: string;
15452
+ authTokenId: string;
15453
+ authTokenType: number;
15454
+ voucherCloneAddress: string;
15455
+ active: boolean;
15456
+ contractURI: string;
15457
+ royaltyPercentage: string;
15458
+ metadataUri: string;
15459
+ collections: Array<{
15460
+ __typename?: "OfferCollection";
15461
+ id: string;
15462
+ sellerId: string;
15463
+ collectionIndex: string;
15464
+ collectionAddress: string;
15465
+ externalIdHash: string;
15466
+ externalId: string;
15467
+ metadata?: {
15468
+ __typename?: "NftContractMetadata";
15469
+ id: string;
15470
+ name?: string | null;
15471
+ description?: string | null;
15472
+ image?: string | null;
15473
+ externalLink?: string | null;
15474
+ createdAt: string;
15475
+ collaborators?: Array<string> | null;
15476
+ } | null;
15477
+ }>;
15478
+ pendingSeller?: {
15479
+ __typename?: "PendingSeller";
15480
+ assistant?: string | null;
15481
+ admin?: string | null;
15482
+ clerk?: string | null;
15483
+ authTokenId?: string | null;
15484
+ authTokenType?: number | null;
15485
+ } | null;
15486
+ funds?: Array<{
15487
+ __typename?: "FundsEntity";
15488
+ id: string;
15489
+ availableAmount: string;
15490
+ accountId: string;
15491
+ token: {
15492
+ __typename?: "ExchangeToken";
15493
+ id: string;
15494
+ address: string;
15495
+ decimals: string;
15496
+ symbol: string;
15497
+ name: string;
15498
+ };
15499
+ }>;
15500
+ offers?: Array<{
15501
+ __typename?: "Offer";
15502
+ id: string;
15503
+ createdAt: string;
15504
+ price: string;
15505
+ sellerDeposit: string;
15506
+ protocolFee: string;
15507
+ agentFee: string;
15508
+ agentId: string;
15509
+ buyerCancelPenalty: string;
15510
+ quantityAvailable: string;
15511
+ quantityInitial: string;
15512
+ validFromDate: string;
15513
+ validUntilDate: string;
15514
+ voucherRedeemableFromDate: string;
15515
+ voucherRedeemableUntilDate: string;
15516
+ disputePeriodDuration: string;
15517
+ voucherValidDuration: string;
15518
+ resolutionPeriodDuration: string;
15519
+ metadataUri: string;
15520
+ metadataHash: string;
15521
+ voided: boolean;
15522
+ voidedAt?: string | null;
15523
+ collectionIndex: string;
15524
+ disputeResolverId: string;
15525
+ numberOfCommits: string;
15526
+ numberOfRedemptions: string;
15527
+ condition?: {
15528
+ __typename?: "ConditionEntity";
15529
+ id: string;
15530
+ method: number;
15531
+ tokenType: number;
15532
+ tokenAddress: string;
15533
+ gatingType: number;
15534
+ minTokenId: string;
15535
+ maxTokenId: string;
15536
+ threshold: string;
15537
+ maxCommits: string;
15538
+ } | null;
15539
+ seller: {
15540
+ __typename?: "Seller";
15541
+ id: string;
15542
+ assistant: string;
15543
+ admin: string;
15544
+ clerk: string;
15545
+ treasury: string;
15546
+ authTokenId: string;
15547
+ authTokenType: number;
15548
+ voucherCloneAddress: string;
15549
+ active: boolean;
15550
+ contractURI: string;
15551
+ royaltyPercentage: string;
15552
+ metadataUri: string;
15553
+ metadata?: {
15554
+ __typename?: "SellerMetadata";
15555
+ id: string;
15556
+ createdAt: string;
15557
+ name?: string | null;
15558
+ description?: string | null;
15559
+ legalTradingName?: string | null;
15560
+ type: SellerMetadataType;
15561
+ kind: string;
15562
+ website?: string | null;
15563
+ contactPreference: string;
15564
+ images?: Array<{
15565
+ __typename?: "SellerMetadataMedia";
15566
+ id: string;
15567
+ url: string;
15568
+ tag?: string | null;
15569
+ type: string;
15570
+ width?: number | null;
15571
+ height?: number | null;
15572
+ fit?: string | null;
15573
+ position?: string | null;
15574
+ }> | null;
15575
+ contactLinks?: Array<{
15576
+ __typename?: "SellerContactLink";
15577
+ id: string;
15578
+ url: string;
15579
+ tag: string;
15580
+ }> | null;
15581
+ socialLinks?: Array<{
15582
+ __typename?: "SellerSocialLink";
15583
+ id: string;
15584
+ url: string;
15585
+ tag: string;
15586
+ }> | null;
15587
+ salesChannels?: Array<{
15588
+ __typename?: "SalesChannel";
15589
+ id: string;
15590
+ tag: string;
15591
+ name?: string | null;
15592
+ settingsUri?: string | null;
15593
+ settingsEditor?: string | null;
15594
+ link?: string | null;
15595
+ deployments?: Array<{
15596
+ __typename?: "SalesChannelDeployment";
15597
+ id: string;
15598
+ status?: string | null;
15599
+ link?: string | null;
15600
+ lastUpdated?: string | null;
15601
+ product?: {
15602
+ __typename?: "ProductV1Product";
15603
+ id: string;
15604
+ uuid: string;
15605
+ version: number;
15606
+ } | null;
15607
+ }> | null;
15608
+ }> | null;
15609
+ } | null;
15610
+ };
15611
+ collection: {
15612
+ __typename?: "OfferCollection";
15613
+ id: string;
15614
+ sellerId: string;
15615
+ collectionIndex: string;
15616
+ collectionAddress: string;
15617
+ externalIdHash: string;
15618
+ externalId: string;
15619
+ metadata?: {
15620
+ __typename?: "NftContractMetadata";
15621
+ id: string;
15622
+ name?: string | null;
15623
+ description?: string | null;
15624
+ image?: string | null;
15625
+ externalLink?: string | null;
15626
+ createdAt: string;
15627
+ collaborators?: Array<string> | null;
15628
+ } | null;
15629
+ };
15630
+ exchangeToken: {
15631
+ __typename?: "ExchangeToken";
15632
+ id: string;
15633
+ address: string;
15634
+ decimals: string;
15635
+ symbol: string;
15636
+ name: string;
15637
+ };
15638
+ disputeResolver: {
15639
+ __typename?: "DisputeResolver";
15640
+ id: string;
15641
+ escalationResponsePeriod: string;
15642
+ admin: string;
15643
+ clerk: string;
15644
+ treasury: string;
15645
+ assistant: string;
15646
+ metadataUri: string;
15647
+ active: boolean;
15648
+ sellerAllowList: Array<string>;
15649
+ fees: Array<{
15650
+ __typename?: "DisputeResolverFee";
15651
+ id: string;
15652
+ tokenAddress: string;
15653
+ tokenName: string;
15654
+ feeAmount: string;
15655
+ token: {
15656
+ __typename?: "ExchangeToken";
15657
+ id: string;
15658
+ address: string;
15659
+ decimals: string;
15660
+ symbol: string;
15661
+ name: string;
15662
+ };
15663
+ }>;
15664
+ };
15665
+ disputeResolutionTerms: {
15666
+ __typename?: "DisputeResolutionTermsEntity";
15667
+ id: string;
15668
+ disputeResolverId: string;
15669
+ escalationResponsePeriod: string;
15670
+ feeAmount: string;
15671
+ buyerEscalationDeposit: string;
15672
+ };
15673
+ metadata?:
15674
+ | {
15675
+ __typename?: "BaseMetadataEntity";
15676
+ name: string;
15677
+ description: string;
15678
+ externalUrl: string;
15679
+ animationUrl?: string | null;
15680
+ licenseUrl: string;
15681
+ condition?: string | null;
15682
+ schemaUrl: string;
15683
+ type: MetadataType;
15684
+ image: string;
15685
+ animationMetadata?: {
15686
+ __typename?: "AnimationMetadata";
15687
+ id: string;
15688
+ width?: number | null;
15689
+ height?: number | null;
15690
+ type?: string | null;
15691
+ } | null;
15692
+ }
15693
+ | {
15694
+ __typename?: "ProductV1MetadataEntity";
15695
+ createdAt: string;
15696
+ voided: boolean;
15697
+ validFromDate: string;
15698
+ validUntilDate: string;
15699
+ quantityAvailable: string;
15700
+ uuid: string;
15701
+ name: string;
15702
+ description: string;
15703
+ externalUrl: string;
15704
+ animationUrl?: string | null;
15705
+ licenseUrl: string;
15706
+ condition?: string | null;
15707
+ schemaUrl: string;
15708
+ type: MetadataType;
15709
+ image: string;
15710
+ productOverrides?: {
15711
+ __typename?: "ProductV1ProductOverrides";
15712
+ id: string;
15713
+ version: number;
15714
+ title: string;
15715
+ description: string;
15716
+ identification_sKU?: string | null;
15717
+ identification_productId?: string | null;
15718
+ identification_productIdType?: string | null;
15719
+ productionInformation_brandName: string;
15720
+ productionInformation_manufacturer?: string | null;
15721
+ productionInformation_manufacturerPartNumber?: string | null;
15722
+ productionInformation_modelNumber?: string | null;
15723
+ productionInformation_materials?: Array<string> | null;
15724
+ packaging_packageQuantity?: string | null;
15725
+ packaging_dimensions_length?: string | null;
15726
+ packaging_dimensions_width?: string | null;
15727
+ packaging_dimensions_height?: string | null;
15728
+ packaging_dimensions_unit?: string | null;
15729
+ packaging_weight_value?: string | null;
15730
+ packaging_weight_unit?: string | null;
15731
+ brand: { __typename?: "ProductV1Brand"; id: string; name: string };
15732
+ visuals_images: Array<{
15733
+ __typename?: "ProductV1Media";
15734
+ id: string;
15735
+ url: string;
15736
+ tag?: string | null;
15737
+ type: ProductV1MediaType;
15738
+ width?: number | null;
15739
+ height?: number | null;
15740
+ }>;
15741
+ visuals_videos?: Array<{
15742
+ __typename?: "ProductV1Media";
15743
+ id: string;
15744
+ url: string;
15745
+ tag?: string | null;
15746
+ type: ProductV1MediaType;
15747
+ width?: number | null;
15748
+ height?: number | null;
15749
+ }> | null;
15750
+ } | null;
15751
+ attributes?: Array<{
15752
+ __typename?: "MetadataAttribute";
15753
+ traitType: string;
15754
+ value: string;
15755
+ displayType: string;
15756
+ }> | null;
15757
+ product: {
15758
+ __typename?: "ProductV1Product";
15759
+ id: string;
15760
+ uuid: string;
15761
+ version: number;
15762
+ title: string;
15763
+ description: string;
15764
+ identification_sKU?: string | null;
15765
+ identification_productId?: string | null;
15766
+ identification_productIdType?: string | null;
15767
+ productionInformation_brandName: string;
15768
+ productionInformation_manufacturer?: string | null;
15769
+ productionInformation_manufacturerPartNumber?: string | null;
15770
+ productionInformation_modelNumber?: string | null;
15771
+ productionInformation_materials?: Array<string> | null;
15772
+ details_category?: string | null;
15773
+ details_subCategory?: string | null;
15774
+ details_subCategory2?: string | null;
15775
+ details_offerCategory: string;
15776
+ offerCategory: ProductV1OfferCategory;
15777
+ details_tags?: Array<string> | null;
15778
+ details_sections?: Array<string> | null;
15779
+ details_personalisation?: Array<string> | null;
15780
+ packaging_packageQuantity?: string | null;
15781
+ packaging_dimensions_length?: string | null;
15782
+ packaging_dimensions_width?: string | null;
15783
+ packaging_dimensions_height?: string | null;
15784
+ packaging_dimensions_unit?: string | null;
15785
+ packaging_weight_value?: string | null;
15786
+ packaging_weight_unit?: string | null;
15787
+ brand: { __typename?: "ProductV1Brand"; id: string; name: string };
15788
+ category?: {
15789
+ __typename?: "ProductV1Category";
15790
+ id: string;
15791
+ name: string;
15792
+ } | null;
15793
+ subCategory?: {
15794
+ __typename?: "ProductV1Category";
15795
+ id: string;
15796
+ name: string;
15797
+ } | null;
15798
+ subCategory2?: {
15799
+ __typename?: "ProductV1Category";
15800
+ id: string;
15801
+ name: string;
15802
+ } | null;
15803
+ tags?: Array<{
15804
+ __typename?: "ProductV1Tag";
15805
+ id: string;
15806
+ name: string;
15807
+ }> | null;
15808
+ sections?: Array<{
15809
+ __typename?: "ProductV1Section";
15810
+ id: string;
15811
+ name: string;
15812
+ }> | null;
15813
+ personalisation?: Array<{
15814
+ __typename?: "ProductV1Personalisation";
15815
+ id: string;
15816
+ name: string;
15817
+ }> | null;
15818
+ visuals_images: Array<{
13879
15819
  __typename?: "ProductV1Media";
13880
15820
  id: string;
13881
15821
  url: string;
@@ -14653,212 +16593,231 @@ export type BuyerFieldsFragment = {
14653
16593
  }> | null;
14654
16594
  } | null;
14655
16595
  };
14656
- }>;
14657
- logs?: Array<
14658
- | {
14659
- __typename?: "AccountEventLog";
14660
- id: string;
14661
- hash: string;
14662
- type: EventType;
14663
- timestamp: string;
14664
- executedBy: string;
14665
- account:
14666
- | { __typename?: "Buyer"; id: string }
14667
- | { __typename?: "DisputeResolver"; id: string }
14668
- | { __typename?: "Seller"; id: string };
14669
- }
14670
- | {
14671
- __typename?: "DisputeEventLog";
14672
- id: string;
14673
- hash: string;
14674
- type: EventType;
14675
- timestamp: string;
14676
- executedBy: string;
14677
- dispute: { __typename?: "Dispute"; id: string };
14678
- account:
14679
- | { __typename?: "Buyer"; id: string }
14680
- | { __typename?: "DisputeResolver"; id: string }
14681
- | { __typename?: "Seller"; id: string };
14682
- }
14683
- | {
14684
- __typename?: "ExchangeEventLog";
14685
- id: string;
14686
- hash: string;
14687
- type: EventType;
14688
- timestamp: string;
14689
- executedBy: string;
14690
- exchange: {
14691
- __typename?: "Exchange";
14692
- id: string;
14693
- offer: { __typename?: "Offer"; id: string };
14694
- };
14695
- account:
14696
- | { __typename?: "Buyer"; id: string }
14697
- | { __typename?: "DisputeResolver"; id: string }
14698
- | { __typename?: "Seller"; id: string };
14699
- }
14700
- | {
14701
- __typename?: "FundsEventLog";
14702
- id: string;
14703
- hash: string;
14704
- type: EventType;
14705
- timestamp: string;
14706
- executedBy: string;
14707
- funds: { __typename?: "FundsEntity"; id: string };
14708
- account:
14709
- | { __typename?: "Buyer"; id: string }
14710
- | { __typename?: "DisputeResolver"; id: string }
14711
- | { __typename?: "Seller"; id: string };
14712
- }
14713
- | {
14714
- __typename?: "OfferEventLog";
14715
- id: string;
14716
- hash: string;
14717
- type: EventType;
14718
- timestamp: string;
14719
- executedBy: string;
14720
- offer: { __typename?: "Offer"; id: string };
14721
- account:
14722
- | { __typename?: "Buyer"; id: string }
14723
- | { __typename?: "DisputeResolver"; id: string }
14724
- | { __typename?: "Seller"; id: string };
14725
- }
14726
- >;
14727
- };
14728
-
14729
- export type BaseBuyerFieldsFragment = {
14730
- __typename?: "Buyer";
14731
- id: string;
14732
- wallet: string;
14733
- active: boolean;
14734
- };
14735
-
14736
- export type DisputeResolverFieldsFragment = {
14737
- __typename?: "DisputeResolver";
14738
- id: string;
14739
- escalationResponsePeriod: string;
14740
- admin: string;
14741
- clerk: string;
14742
- treasury: string;
14743
- assistant: string;
14744
- metadataUri: string;
14745
- active: boolean;
14746
- sellerAllowList: Array<string>;
14747
- pendingDisputeResolver?: {
14748
- __typename?: "PendingDisputeResolver";
14749
- assistant?: string | null;
14750
- admin?: string | null;
14751
- clerk?: string | null;
14752
- } | null;
14753
- offers?: Array<{
14754
- __typename?: "Offer";
14755
- id: string;
14756
- createdAt: string;
14757
- price: string;
14758
- sellerDeposit: string;
14759
- protocolFee: string;
14760
- agentFee: string;
14761
- agentId: string;
14762
- buyerCancelPenalty: string;
14763
- quantityAvailable: string;
14764
- quantityInitial: string;
14765
- validFromDate: string;
14766
- validUntilDate: string;
14767
- voucherRedeemableFromDate: string;
14768
- voucherRedeemableUntilDate: string;
14769
- disputePeriodDuration: string;
14770
- voucherValidDuration: string;
14771
- resolutionPeriodDuration: string;
14772
- metadataUri: string;
14773
- metadataHash: string;
14774
- voided: boolean;
14775
- voidedAt?: string | null;
14776
- collectionIndex: string;
14777
- disputeResolverId: string;
14778
- numberOfCommits: string;
14779
- numberOfRedemptions: string;
14780
- condition?: {
14781
- __typename?: "ConditionEntity";
16596
+ }>;
16597
+ logs?: Array<
16598
+ | {
16599
+ __typename?: "AccountEventLog";
16600
+ id: string;
16601
+ hash: string;
16602
+ type: EventType;
16603
+ timestamp: string;
16604
+ executedBy: string;
16605
+ account:
16606
+ | { __typename?: "Buyer"; id: string }
16607
+ | { __typename?: "DisputeResolver"; id: string }
16608
+ | { __typename?: "Seller"; id: string };
16609
+ }
16610
+ | {
16611
+ __typename?: "DisputeEventLog";
16612
+ id: string;
16613
+ hash: string;
16614
+ type: EventType;
16615
+ timestamp: string;
16616
+ executedBy: string;
16617
+ dispute: { __typename?: "Dispute"; id: string };
16618
+ account:
16619
+ | { __typename?: "Buyer"; id: string }
16620
+ | { __typename?: "DisputeResolver"; id: string }
16621
+ | { __typename?: "Seller"; id: string };
16622
+ }
16623
+ | {
16624
+ __typename?: "ExchangeEventLog";
16625
+ id: string;
16626
+ hash: string;
16627
+ type: EventType;
16628
+ timestamp: string;
16629
+ executedBy: string;
16630
+ exchange: {
16631
+ __typename?: "Exchange";
16632
+ id: string;
16633
+ offer: { __typename?: "Offer"; id: string };
16634
+ };
16635
+ account:
16636
+ | { __typename?: "Buyer"; id: string }
16637
+ | { __typename?: "DisputeResolver"; id: string }
16638
+ | { __typename?: "Seller"; id: string };
16639
+ }
16640
+ | {
16641
+ __typename?: "FundsEventLog";
16642
+ id: string;
16643
+ hash: string;
16644
+ type: EventType;
16645
+ timestamp: string;
16646
+ executedBy: string;
16647
+ funds: { __typename?: "FundsEntity"; id: string };
16648
+ account:
16649
+ | { __typename?: "Buyer"; id: string }
16650
+ | { __typename?: "DisputeResolver"; id: string }
16651
+ | { __typename?: "Seller"; id: string };
16652
+ }
16653
+ | {
16654
+ __typename?: "OfferEventLog";
16655
+ id: string;
16656
+ hash: string;
16657
+ type: EventType;
16658
+ timestamp: string;
16659
+ executedBy: string;
16660
+ offer: { __typename?: "Offer"; id: string };
16661
+ account:
16662
+ | { __typename?: "Buyer"; id: string }
16663
+ | { __typename?: "DisputeResolver"; id: string }
16664
+ | { __typename?: "Seller"; id: string };
16665
+ }
16666
+ >;
16667
+ };
16668
+
16669
+ export type BaseBuyerFieldsFragment = {
16670
+ __typename?: "Buyer";
16671
+ id: string;
16672
+ wallet: string;
16673
+ active: boolean;
16674
+ };
16675
+
16676
+ export type DisputeResolverFieldsFragment = {
16677
+ __typename?: "DisputeResolver";
16678
+ id: string;
16679
+ escalationResponsePeriod: string;
16680
+ admin: string;
16681
+ clerk: string;
16682
+ treasury: string;
16683
+ assistant: string;
16684
+ metadataUri: string;
16685
+ active: boolean;
16686
+ sellerAllowList: Array<string>;
16687
+ pendingDisputeResolver?: {
16688
+ __typename?: "PendingDisputeResolver";
16689
+ assistant?: string | null;
16690
+ admin?: string | null;
16691
+ clerk?: string | null;
16692
+ } | null;
16693
+ offers?: Array<{
16694
+ __typename?: "Offer";
16695
+ id: string;
16696
+ createdAt: string;
16697
+ price: string;
16698
+ sellerDeposit: string;
16699
+ protocolFee: string;
16700
+ agentFee: string;
16701
+ agentId: string;
16702
+ buyerCancelPenalty: string;
16703
+ quantityAvailable: string;
16704
+ quantityInitial: string;
16705
+ validFromDate: string;
16706
+ validUntilDate: string;
16707
+ voucherRedeemableFromDate: string;
16708
+ voucherRedeemableUntilDate: string;
16709
+ disputePeriodDuration: string;
16710
+ voucherValidDuration: string;
16711
+ resolutionPeriodDuration: string;
16712
+ metadataUri: string;
16713
+ metadataHash: string;
16714
+ voided: boolean;
16715
+ voidedAt?: string | null;
16716
+ collectionIndex: string;
16717
+ disputeResolverId: string;
16718
+ numberOfCommits: string;
16719
+ numberOfRedemptions: string;
16720
+ condition?: {
16721
+ __typename?: "ConditionEntity";
16722
+ id: string;
16723
+ method: number;
16724
+ tokenType: number;
16725
+ tokenAddress: string;
16726
+ gatingType: number;
16727
+ minTokenId: string;
16728
+ maxTokenId: string;
16729
+ threshold: string;
16730
+ maxCommits: string;
16731
+ } | null;
16732
+ seller: {
16733
+ __typename?: "Seller";
16734
+ id: string;
16735
+ assistant: string;
16736
+ admin: string;
16737
+ clerk: string;
16738
+ treasury: string;
16739
+ authTokenId: string;
16740
+ authTokenType: number;
16741
+ voucherCloneAddress: string;
16742
+ active: boolean;
16743
+ contractURI: string;
16744
+ royaltyPercentage: string;
16745
+ metadataUri: string;
16746
+ metadata?: {
16747
+ __typename?: "SellerMetadata";
16748
+ id: string;
16749
+ createdAt: string;
16750
+ name?: string | null;
16751
+ description?: string | null;
16752
+ legalTradingName?: string | null;
16753
+ type: SellerMetadataType;
16754
+ kind: string;
16755
+ website?: string | null;
16756
+ contactPreference: string;
16757
+ images?: Array<{
16758
+ __typename?: "SellerMetadataMedia";
16759
+ id: string;
16760
+ url: string;
16761
+ tag?: string | null;
16762
+ type: string;
16763
+ width?: number | null;
16764
+ height?: number | null;
16765
+ fit?: string | null;
16766
+ position?: string | null;
16767
+ }> | null;
16768
+ contactLinks?: Array<{
16769
+ __typename?: "SellerContactLink";
16770
+ id: string;
16771
+ url: string;
16772
+ tag: string;
16773
+ }> | null;
16774
+ socialLinks?: Array<{
16775
+ __typename?: "SellerSocialLink";
16776
+ id: string;
16777
+ url: string;
16778
+ tag: string;
16779
+ }> | null;
16780
+ salesChannels?: Array<{
16781
+ __typename?: "SalesChannel";
16782
+ id: string;
16783
+ tag: string;
16784
+ name?: string | null;
16785
+ settingsUri?: string | null;
16786
+ settingsEditor?: string | null;
16787
+ link?: string | null;
16788
+ deployments?: Array<{
16789
+ __typename?: "SalesChannelDeployment";
16790
+ id: string;
16791
+ status?: string | null;
16792
+ link?: string | null;
16793
+ lastUpdated?: string | null;
16794
+ product?: {
16795
+ __typename?: "ProductV1Product";
16796
+ id: string;
16797
+ uuid: string;
16798
+ version: number;
16799
+ } | null;
16800
+ }> | null;
16801
+ }> | null;
16802
+ } | null;
16803
+ };
16804
+ collection: {
16805
+ __typename?: "OfferCollection";
14782
16806
  id: string;
14783
- method: number;
14784
- tokenType: number;
14785
- tokenAddress: string;
14786
- gatingType: number;
14787
- minTokenId: string;
14788
- maxTokenId: string;
14789
- threshold: string;
14790
- maxCommits: string;
14791
- } | null;
14792
- seller: {
14793
- __typename?: "Seller";
14794
- id: string;
14795
- assistant: string;
14796
- admin: string;
14797
- clerk: string;
14798
- treasury: string;
14799
- authTokenId: string;
14800
- authTokenType: number;
14801
- voucherCloneAddress: string;
14802
- active: boolean;
14803
- contractURI: string;
14804
- royaltyPercentage: string;
14805
- metadataUri: string;
16807
+ sellerId: string;
16808
+ collectionIndex: string;
16809
+ collectionAddress: string;
16810
+ externalIdHash: string;
16811
+ externalId: string;
14806
16812
  metadata?: {
14807
- __typename?: "SellerMetadata";
16813
+ __typename?: "NftContractMetadata";
14808
16814
  id: string;
14809
- createdAt: string;
14810
16815
  name?: string | null;
14811
16816
  description?: string | null;
14812
- legalTradingName?: string | null;
14813
- type: SellerMetadataType;
14814
- kind: string;
14815
- website?: string | null;
14816
- contactPreference: string;
14817
- images?: Array<{
14818
- __typename?: "SellerMetadataMedia";
14819
- id: string;
14820
- url: string;
14821
- tag?: string | null;
14822
- type: string;
14823
- width?: number | null;
14824
- height?: number | null;
14825
- fit?: string | null;
14826
- position?: string | null;
14827
- }> | null;
14828
- contactLinks?: Array<{
14829
- __typename?: "SellerContactLink";
14830
- id: string;
14831
- url: string;
14832
- tag: string;
14833
- }> | null;
14834
- socialLinks?: Array<{
14835
- __typename?: "SellerSocialLink";
14836
- id: string;
14837
- url: string;
14838
- tag: string;
14839
- }> | null;
14840
- salesChannels?: Array<{
14841
- __typename?: "SalesChannel";
14842
- id: string;
14843
- tag: string;
14844
- name?: string | null;
14845
- settingsUri?: string | null;
14846
- settingsEditor?: string | null;
14847
- link?: string | null;
14848
- deployments?: Array<{
14849
- __typename?: "SalesChannelDeployment";
14850
- id: string;
14851
- status?: string | null;
14852
- link?: string | null;
14853
- lastUpdated?: string | null;
14854
- product?: {
14855
- __typename?: "ProductV1Product";
14856
- id: string;
14857
- uuid: string;
14858
- version: number;
14859
- } | null;
14860
- }> | null;
14861
- }> | null;
16817
+ image?: string | null;
16818
+ externalLink?: string | null;
16819
+ createdAt: string;
16820
+ collaborators?: Array<string> | null;
14862
16821
  } | null;
14863
16822
  };
14864
16823
  exchangeToken: {
@@ -16277,6 +18236,25 @@ export type GetExchangeTokenByIdQueryQuery = {
16277
18236
  }> | null;
16278
18237
  } | null;
16279
18238
  };
18239
+ collection: {
18240
+ __typename?: "OfferCollection";
18241
+ id: string;
18242
+ sellerId: string;
18243
+ collectionIndex: string;
18244
+ collectionAddress: string;
18245
+ externalIdHash: string;
18246
+ externalId: string;
18247
+ metadata?: {
18248
+ __typename?: "NftContractMetadata";
18249
+ id: string;
18250
+ name?: string | null;
18251
+ description?: string | null;
18252
+ image?: string | null;
18253
+ externalLink?: string | null;
18254
+ createdAt: string;
18255
+ collaborators?: Array<string> | null;
18256
+ } | null;
18257
+ };
16280
18258
  exchangeToken: {
16281
18259
  __typename?: "ExchangeToken";
16282
18260
  id: string;
@@ -16906,6 +18884,25 @@ export type GetExchangeTokensQueryQuery = {
16906
18884
  }> | null;
16907
18885
  } | null;
16908
18886
  };
18887
+ collection: {
18888
+ __typename?: "OfferCollection";
18889
+ id: string;
18890
+ sellerId: string;
18891
+ collectionIndex: string;
18892
+ collectionAddress: string;
18893
+ externalIdHash: string;
18894
+ externalId: string;
18895
+ metadata?: {
18896
+ __typename?: "NftContractMetadata";
18897
+ id: string;
18898
+ name?: string | null;
18899
+ description?: string | null;
18900
+ image?: string | null;
18901
+ externalLink?: string | null;
18902
+ createdAt: string;
18903
+ collaborators?: Array<string> | null;
18904
+ } | null;
18905
+ };
16909
18906
  exchangeToken: {
16910
18907
  __typename?: "ExchangeToken";
16911
18908
  id: string;
@@ -17513,6 +19510,25 @@ export type ExchangeTokenFieldsFragment = {
17513
19510
  }> | null;
17514
19511
  } | null;
17515
19512
  };
19513
+ collection: {
19514
+ __typename?: "OfferCollection";
19515
+ id: string;
19516
+ sellerId: string;
19517
+ collectionIndex: string;
19518
+ collectionAddress: string;
19519
+ externalIdHash: string;
19520
+ externalId: string;
19521
+ metadata?: {
19522
+ __typename?: "NftContractMetadata";
19523
+ id: string;
19524
+ name?: string | null;
19525
+ description?: string | null;
19526
+ image?: string | null;
19527
+ externalLink?: string | null;
19528
+ createdAt: string;
19529
+ collaborators?: Array<string> | null;
19530
+ } | null;
19531
+ };
17516
19532
  exchangeToken: {
17517
19533
  __typename?: "ExchangeToken";
17518
19534
  id: string;
@@ -18295,6 +20311,25 @@ export type GetExchangeByIdQueryQuery = {
18295
20311
  }> | null;
18296
20312
  } | null;
18297
20313
  };
20314
+ collection: {
20315
+ __typename?: "OfferCollection";
20316
+ id: string;
20317
+ sellerId: string;
20318
+ collectionIndex: string;
20319
+ collectionAddress: string;
20320
+ externalIdHash: string;
20321
+ externalId: string;
20322
+ metadata?: {
20323
+ __typename?: "NftContractMetadata";
20324
+ id: string;
20325
+ name?: string | null;
20326
+ description?: string | null;
20327
+ image?: string | null;
20328
+ externalLink?: string | null;
20329
+ createdAt: string;
20330
+ collaborators?: Array<string> | null;
20331
+ } | null;
20332
+ };
18298
20333
  exchangeToken: {
18299
20334
  __typename?: "ExchangeToken";
18300
20335
  id: string;
@@ -19006,6 +21041,25 @@ export type GetExchangesQueryQuery = {
19006
21041
  }> | null;
19007
21042
  } | null;
19008
21043
  };
21044
+ collection: {
21045
+ __typename?: "OfferCollection";
21046
+ id: string;
21047
+ sellerId: string;
21048
+ collectionIndex: string;
21049
+ collectionAddress: string;
21050
+ externalIdHash: string;
21051
+ externalId: string;
21052
+ metadata?: {
21053
+ __typename?: "NftContractMetadata";
21054
+ id: string;
21055
+ name?: string | null;
21056
+ description?: string | null;
21057
+ image?: string | null;
21058
+ externalLink?: string | null;
21059
+ createdAt: string;
21060
+ collaborators?: Array<string> | null;
21061
+ } | null;
21062
+ };
19009
21063
  exchangeToken: {
19010
21064
  __typename?: "ExchangeToken";
19011
21065
  id: string;
@@ -19707,6 +21761,25 @@ export type ExchangeFieldsFragment = {
19707
21761
  }> | null;
19708
21762
  } | null;
19709
21763
  };
21764
+ collection: {
21765
+ __typename?: "OfferCollection";
21766
+ id: string;
21767
+ sellerId: string;
21768
+ collectionIndex: string;
21769
+ collectionAddress: string;
21770
+ externalIdHash: string;
21771
+ externalId: string;
21772
+ metadata?: {
21773
+ __typename?: "NftContractMetadata";
21774
+ id: string;
21775
+ name?: string | null;
21776
+ description?: string | null;
21777
+ image?: string | null;
21778
+ externalLink?: string | null;
21779
+ createdAt: string;
21780
+ collaborators?: Array<string> | null;
21781
+ } | null;
21782
+ };
19710
21783
  exchangeToken: {
19711
21784
  __typename?: "ExchangeToken";
19712
21785
  id: string;
@@ -20610,6 +22683,25 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
20610
22683
  }> | null;
20611
22684
  } | null;
20612
22685
  };
22686
+ collection: {
22687
+ __typename?: "OfferCollection";
22688
+ id: string;
22689
+ sellerId: string;
22690
+ collectionIndex: string;
22691
+ collectionAddress: string;
22692
+ externalIdHash: string;
22693
+ externalId: string;
22694
+ metadata?: {
22695
+ __typename?: "NftContractMetadata";
22696
+ id: string;
22697
+ name?: string | null;
22698
+ description?: string | null;
22699
+ image?: string | null;
22700
+ externalLink?: string | null;
22701
+ createdAt: string;
22702
+ collaborators?: Array<string> | null;
22703
+ } | null;
22704
+ };
20613
22705
  exchangeToken: {
20614
22706
  __typename?: "ExchangeToken";
20615
22707
  id: string;
@@ -21326,6 +23418,25 @@ export type GetBaseMetadataEntitiesQueryQuery = {
21326
23418
  }> | null;
21327
23419
  } | null;
21328
23420
  };
23421
+ collection: {
23422
+ __typename?: "OfferCollection";
23423
+ id: string;
23424
+ sellerId: string;
23425
+ collectionIndex: string;
23426
+ collectionAddress: string;
23427
+ externalIdHash: string;
23428
+ externalId: string;
23429
+ metadata?: {
23430
+ __typename?: "NftContractMetadata";
23431
+ id: string;
23432
+ name?: string | null;
23433
+ description?: string | null;
23434
+ image?: string | null;
23435
+ externalLink?: string | null;
23436
+ createdAt: string;
23437
+ collaborators?: Array<string> | null;
23438
+ } | null;
23439
+ };
21329
23440
  exchangeToken: {
21330
23441
  __typename?: "ExchangeToken";
21331
23442
  id: string;
@@ -22032,6 +24143,25 @@ export type BaseMetadataEntityFieldsFragment = {
22032
24143
  }> | null;
22033
24144
  } | null;
22034
24145
  };
24146
+ collection: {
24147
+ __typename?: "OfferCollection";
24148
+ id: string;
24149
+ sellerId: string;
24150
+ collectionIndex: string;
24151
+ collectionAddress: string;
24152
+ externalIdHash: string;
24153
+ externalId: string;
24154
+ metadata?: {
24155
+ __typename?: "NftContractMetadata";
24156
+ id: string;
24157
+ name?: string | null;
24158
+ description?: string | null;
24159
+ image?: string | null;
24160
+ externalLink?: string | null;
24161
+ createdAt: string;
24162
+ collaborators?: Array<string> | null;
24163
+ } | null;
24164
+ };
22035
24165
  exchangeToken: {
22036
24166
  __typename?: "ExchangeToken";
22037
24167
  id: string;
@@ -22729,6 +24859,25 @@ export type BaseBaseMetadataEntityFieldsFragment = {
22729
24859
  }> | null;
22730
24860
  } | null;
22731
24861
  };
24862
+ collection: {
24863
+ __typename?: "OfferCollection";
24864
+ id: string;
24865
+ sellerId: string;
24866
+ collectionIndex: string;
24867
+ collectionAddress: string;
24868
+ externalIdHash: string;
24869
+ externalId: string;
24870
+ metadata?: {
24871
+ __typename?: "NftContractMetadata";
24872
+ id: string;
24873
+ name?: string | null;
24874
+ description?: string | null;
24875
+ image?: string | null;
24876
+ externalLink?: string | null;
24877
+ createdAt: string;
24878
+ collaborators?: Array<string> | null;
24879
+ } | null;
24880
+ };
22732
24881
  exchangeToken: {
22733
24882
  __typename?: "ExchangeToken";
22734
24883
  id: string;
@@ -23778,6 +25927,25 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
23778
25927
  }> | null;
23779
25928
  } | null;
23780
25929
  };
25930
+ collection: {
25931
+ __typename?: "OfferCollection";
25932
+ id: string;
25933
+ sellerId: string;
25934
+ collectionIndex: string;
25935
+ collectionAddress: string;
25936
+ externalIdHash: string;
25937
+ externalId: string;
25938
+ metadata?: {
25939
+ __typename?: "NftContractMetadata";
25940
+ id: string;
25941
+ name?: string | null;
25942
+ description?: string | null;
25943
+ image?: string | null;
25944
+ externalLink?: string | null;
25945
+ createdAt: string;
25946
+ collaborators?: Array<string> | null;
25947
+ } | null;
25948
+ };
23781
25949
  exchangeToken: {
23782
25950
  __typename?: "ExchangeToken";
23783
25951
  id: string;
@@ -24703,6 +26871,25 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
24703
26871
  }> | null;
24704
26872
  } | null;
24705
26873
  };
26874
+ collection: {
26875
+ __typename?: "OfferCollection";
26876
+ id: string;
26877
+ sellerId: string;
26878
+ collectionIndex: string;
26879
+ collectionAddress: string;
26880
+ externalIdHash: string;
26881
+ externalId: string;
26882
+ metadata?: {
26883
+ __typename?: "NftContractMetadata";
26884
+ id: string;
26885
+ name?: string | null;
26886
+ description?: string | null;
26887
+ image?: string | null;
26888
+ externalLink?: string | null;
26889
+ createdAt: string;
26890
+ collaborators?: Array<string> | null;
26891
+ } | null;
26892
+ };
24706
26893
  exchangeToken: {
24707
26894
  __typename?: "ExchangeToken";
24708
26895
  id: string;
@@ -25642,6 +27829,25 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
25642
27829
  }> | null;
25643
27830
  } | null;
25644
27831
  };
27832
+ collection: {
27833
+ __typename?: "OfferCollection";
27834
+ id: string;
27835
+ sellerId: string;
27836
+ collectionIndex: string;
27837
+ collectionAddress: string;
27838
+ externalIdHash: string;
27839
+ externalId: string;
27840
+ metadata?: {
27841
+ __typename?: "NftContractMetadata";
27842
+ id: string;
27843
+ name?: string | null;
27844
+ description?: string | null;
27845
+ image?: string | null;
27846
+ externalLink?: string | null;
27847
+ createdAt: string;
27848
+ collaborators?: Array<string> | null;
27849
+ } | null;
27850
+ };
25645
27851
  exchangeToken: {
25646
27852
  __typename?: "ExchangeToken";
25647
27853
  id: string;
@@ -26781,6 +28987,25 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
26781
28987
  }> | null;
26782
28988
  } | null;
26783
28989
  };
28990
+ collection: {
28991
+ __typename?: "OfferCollection";
28992
+ id: string;
28993
+ sellerId: string;
28994
+ collectionIndex: string;
28995
+ collectionAddress: string;
28996
+ externalIdHash: string;
28997
+ externalId: string;
28998
+ metadata?: {
28999
+ __typename?: "NftContractMetadata";
29000
+ id: string;
29001
+ name?: string | null;
29002
+ description?: string | null;
29003
+ image?: string | null;
29004
+ externalLink?: string | null;
29005
+ createdAt: string;
29006
+ collaborators?: Array<string> | null;
29007
+ } | null;
29008
+ };
26784
29009
  exchangeToken: {
26785
29010
  __typename?: "ExchangeToken";
26786
29011
  id: string;
@@ -27910,6 +30135,25 @@ export type ProductV1MetadataEntityFieldsFragment = {
27910
30135
  }> | null;
27911
30136
  } | null;
27912
30137
  };
30138
+ collection: {
30139
+ __typename?: "OfferCollection";
30140
+ id: string;
30141
+ sellerId: string;
30142
+ collectionIndex: string;
30143
+ collectionAddress: string;
30144
+ externalIdHash: string;
30145
+ externalId: string;
30146
+ metadata?: {
30147
+ __typename?: "NftContractMetadata";
30148
+ id: string;
30149
+ name?: string | null;
30150
+ description?: string | null;
30151
+ image?: string | null;
30152
+ externalLink?: string | null;
30153
+ createdAt: string;
30154
+ collaborators?: Array<string> | null;
30155
+ } | null;
30156
+ };
27913
30157
  exchangeToken: {
27914
30158
  __typename?: "ExchangeToken";
27915
30159
  id: string;
@@ -29030,6 +31274,25 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
29030
31274
  }> | null;
29031
31275
  } | null;
29032
31276
  };
31277
+ collection: {
31278
+ __typename?: "OfferCollection";
31279
+ id: string;
31280
+ sellerId: string;
31281
+ collectionIndex: string;
31282
+ collectionAddress: string;
31283
+ externalIdHash: string;
31284
+ externalId: string;
31285
+ metadata?: {
31286
+ __typename?: "NftContractMetadata";
31287
+ id: string;
31288
+ name?: string | null;
31289
+ description?: string | null;
31290
+ image?: string | null;
31291
+ externalLink?: string | null;
31292
+ createdAt: string;
31293
+ collaborators?: Array<string> | null;
31294
+ } | null;
31295
+ };
29033
31296
  exchangeToken: {
29034
31297
  __typename?: "ExchangeToken";
29035
31298
  id: string;
@@ -30363,6 +32626,25 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
30363
32626
  }> | null;
30364
32627
  } | null;
30365
32628
  };
32629
+ collection: {
32630
+ __typename?: "OfferCollection";
32631
+ id: string;
32632
+ sellerId: string;
32633
+ collectionIndex: string;
32634
+ collectionAddress: string;
32635
+ externalIdHash: string;
32636
+ externalId: string;
32637
+ metadata?: {
32638
+ __typename?: "NftContractMetadata";
32639
+ id: string;
32640
+ name?: string | null;
32641
+ description?: string | null;
32642
+ image?: string | null;
32643
+ externalLink?: string | null;
32644
+ createdAt: string;
32645
+ collaborators?: Array<string> | null;
32646
+ } | null;
32647
+ };
30366
32648
  exchangeToken: {
30367
32649
  __typename?: "ExchangeToken";
30368
32650
  id: string;
@@ -31277,6 +33559,25 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
31277
33559
  }> | null;
31278
33560
  } | null;
31279
33561
  };
33562
+ collection: {
33563
+ __typename?: "OfferCollection";
33564
+ id: string;
33565
+ sellerId: string;
33566
+ collectionIndex: string;
33567
+ collectionAddress: string;
33568
+ externalIdHash: string;
33569
+ externalId: string;
33570
+ metadata?: {
33571
+ __typename?: "NftContractMetadata";
33572
+ id: string;
33573
+ name?: string | null;
33574
+ description?: string | null;
33575
+ image?: string | null;
33576
+ externalLink?: string | null;
33577
+ createdAt: string;
33578
+ collaborators?: Array<string> | null;
33579
+ } | null;
33580
+ };
31280
33581
  exchangeToken: {
31281
33582
  __typename?: "ExchangeToken";
31282
33583
  id: string;
@@ -32394,6 +34695,25 @@ export type GetOfferByIdQueryQuery = {
32394
34695
  }> | null;
32395
34696
  } | null;
32396
34697
  };
34698
+ collection: {
34699
+ __typename?: "OfferCollection";
34700
+ id: string;
34701
+ sellerId: string;
34702
+ collectionIndex: string;
34703
+ collectionAddress: string;
34704
+ externalIdHash: string;
34705
+ externalId: string;
34706
+ metadata?: {
34707
+ __typename?: "NftContractMetadata";
34708
+ id: string;
34709
+ name?: string | null;
34710
+ description?: string | null;
34711
+ image?: string | null;
34712
+ externalLink?: string | null;
34713
+ createdAt: string;
34714
+ collaborators?: Array<string> | null;
34715
+ } | null;
34716
+ };
32397
34717
  exchangeToken: {
32398
34718
  __typename?: "ExchangeToken";
32399
34719
  id: string;
@@ -33103,6 +35423,25 @@ export type GetOffersQueryQuery = {
33103
35423
  }> | null;
33104
35424
  } | null;
33105
35425
  };
35426
+ collection: {
35427
+ __typename?: "OfferCollection";
35428
+ id: string;
35429
+ sellerId: string;
35430
+ collectionIndex: string;
35431
+ collectionAddress: string;
35432
+ externalIdHash: string;
35433
+ externalId: string;
35434
+ metadata?: {
35435
+ __typename?: "NftContractMetadata";
35436
+ id: string;
35437
+ name?: string | null;
35438
+ description?: string | null;
35439
+ image?: string | null;
35440
+ externalLink?: string | null;
35441
+ createdAt: string;
35442
+ collaborators?: Array<string> | null;
35443
+ } | null;
35444
+ };
33106
35445
  exchangeToken: {
33107
35446
  __typename?: "ExchangeToken";
33108
35447
  id: string;
@@ -33861,6 +36200,25 @@ export type OfferFieldsFragment = {
33861
36200
  }> | null;
33862
36201
  } | null;
33863
36202
  };
36203
+ collection: {
36204
+ __typename?: "OfferCollection";
36205
+ id: string;
36206
+ sellerId: string;
36207
+ collectionIndex: string;
36208
+ collectionAddress: string;
36209
+ externalIdHash: string;
36210
+ externalId: string;
36211
+ metadata?: {
36212
+ __typename?: "NftContractMetadata";
36213
+ id: string;
36214
+ name?: string | null;
36215
+ description?: string | null;
36216
+ image?: string | null;
36217
+ externalLink?: string | null;
36218
+ createdAt: string;
36219
+ collaborators?: Array<string> | null;
36220
+ } | null;
36221
+ };
33864
36222
  exchangeToken: {
33865
36223
  __typename?: "ExchangeToken";
33866
36224
  id: string;
@@ -34445,6 +36803,25 @@ export type BaseOfferFieldsFragment = {
34445
36803
  }> | null;
34446
36804
  } | null;
34447
36805
  };
36806
+ collection: {
36807
+ __typename?: "OfferCollection";
36808
+ id: string;
36809
+ sellerId: string;
36810
+ collectionIndex: string;
36811
+ collectionAddress: string;
36812
+ externalIdHash: string;
36813
+ externalId: string;
36814
+ metadata?: {
36815
+ __typename?: "NftContractMetadata";
36816
+ id: string;
36817
+ name?: string | null;
36818
+ description?: string | null;
36819
+ image?: string | null;
36820
+ externalLink?: string | null;
36821
+ createdAt: string;
36822
+ collaborators?: Array<string> | null;
36823
+ } | null;
36824
+ };
34448
36825
  exchangeToken: {
34449
36826
  __typename?: "ExchangeToken";
34450
36827
  id: string;
@@ -34926,6 +37303,25 @@ export type BaseRangeFieldsFragment = {
34926
37303
  owner: string;
34927
37304
  };
34928
37305
 
37306
+ export const BaseOfferCollectionFieldsFragmentDoc = gql`
37307
+ fragment BaseOfferCollectionFields on OfferCollection {
37308
+ id
37309
+ sellerId
37310
+ collectionIndex
37311
+ collectionAddress
37312
+ externalIdHash
37313
+ externalId
37314
+ metadata {
37315
+ id
37316
+ name
37317
+ description
37318
+ image
37319
+ externalLink
37320
+ createdAt
37321
+ collaborators
37322
+ }
37323
+ }
37324
+ `;
34929
37325
  export const SellerMetadataMediaFieldsFragmentDoc = gql`
34930
37326
  fragment SellerMetadataMediaFields on SellerMetadataMedia {
34931
37327
  id
@@ -35016,41 +37412,6 @@ export const BaseSellerFieldsFragmentDoc = gql`
35016
37412
  ${SellerSocialLinkFieldsFragmentDoc}
35017
37413
  ${SalesChannelFieldsFragmentDoc}
35018
37414
  `;
35019
- export const PendingSellerFieldsFragmentDoc = gql`
35020
- fragment PendingSellerFields on PendingSeller {
35021
- assistant
35022
- admin
35023
- clerk
35024
- authTokenId
35025
- authTokenType
35026
- }
35027
- `;
35028
- export const BaseFundsEntityFieldsFragmentDoc = gql`
35029
- fragment BaseFundsEntityFields on FundsEntity {
35030
- id
35031
- availableAmount
35032
- accountId
35033
- }
35034
- `;
35035
- export const BaseExchangeTokenFieldsFragmentDoc = gql`
35036
- fragment BaseExchangeTokenFields on ExchangeToken {
35037
- id
35038
- address
35039
- decimals
35040
- symbol
35041
- name
35042
- }
35043
- `;
35044
- export const FundsEntityFieldsFragmentDoc = gql`
35045
- fragment FundsEntityFields on FundsEntity {
35046
- ...BaseFundsEntityFields
35047
- token {
35048
- ...BaseExchangeTokenFields
35049
- }
35050
- }
35051
- ${BaseFundsEntityFieldsFragmentDoc}
35052
- ${BaseExchangeTokenFieldsFragmentDoc}
35053
- `;
35054
37415
  export const BaseConditionFieldsFragmentDoc = gql`
35055
37416
  fragment BaseConditionFields on ConditionEntity {
35056
37417
  id
@@ -35064,6 +37425,15 @@ export const BaseConditionFieldsFragmentDoc = gql`
35064
37425
  maxCommits
35065
37426
  }
35066
37427
  `;
37428
+ export const BaseExchangeTokenFieldsFragmentDoc = gql`
37429
+ fragment BaseExchangeTokenFields on ExchangeToken {
37430
+ id
37431
+ address
37432
+ decimals
37433
+ symbol
37434
+ name
37435
+ }
37436
+ `;
35067
37437
  export const BaseDisputeResolverFeeFieldsFragmentDoc = gql`
35068
37438
  fragment BaseDisputeResolverFeeFields on DisputeResolverFee {
35069
37439
  id
@@ -35367,6 +37737,9 @@ export const BaseOfferFieldsFragmentDoc = gql`
35367
37737
  seller {
35368
37738
  ...BaseSellerFields
35369
37739
  }
37740
+ collection {
37741
+ ...BaseOfferCollectionFields
37742
+ }
35370
37743
  exchangeToken {
35371
37744
  ...BaseExchangeTokenFields
35372
37745
  }
@@ -35427,6 +37800,7 @@ export const BaseOfferFieldsFragmentDoc = gql`
35427
37800
  }
35428
37801
  ${BaseConditionFieldsFragmentDoc}
35429
37802
  ${BaseSellerFieldsFragmentDoc}
37803
+ ${BaseOfferCollectionFieldsFragmentDoc}
35430
37804
  ${BaseExchangeTokenFieldsFragmentDoc}
35431
37805
  ${BaseDisputeResolverFieldsFragmentDoc}
35432
37806
  ${BaseDisputeResolutionTermsEntityFieldsFragmentDoc}
@@ -35439,6 +37813,52 @@ export const BaseOfferFieldsFragmentDoc = gql`
35439
37813
  ${BaseProductV1ShippingOptionFieldsFragmentDoc}
35440
37814
  ${BaseRangeFieldsFragmentDoc}
35441
37815
  `;
37816
+ export const OfferCollectionFieldsFragmentDoc = gql`
37817
+ fragment OfferCollectionFields on OfferCollection {
37818
+ ...BaseOfferCollectionFields
37819
+ seller {
37820
+ ...BaseSellerFields
37821
+ }
37822
+ offers(
37823
+ skip: $offersSkip
37824
+ first: $offersFirst
37825
+ orderBy: $offersOrderBy
37826
+ orderDirection: $offersOrderDirection
37827
+ where: $offersFilter
37828
+ ) @include(if: $includeOffers) {
37829
+ ...BaseOfferFields
37830
+ }
37831
+ }
37832
+ ${BaseOfferCollectionFieldsFragmentDoc}
37833
+ ${BaseSellerFieldsFragmentDoc}
37834
+ ${BaseOfferFieldsFragmentDoc}
37835
+ `;
37836
+ export const PendingSellerFieldsFragmentDoc = gql`
37837
+ fragment PendingSellerFields on PendingSeller {
37838
+ assistant
37839
+ admin
37840
+ clerk
37841
+ authTokenId
37842
+ authTokenType
37843
+ }
37844
+ `;
37845
+ export const BaseFundsEntityFieldsFragmentDoc = gql`
37846
+ fragment BaseFundsEntityFields on FundsEntity {
37847
+ id
37848
+ availableAmount
37849
+ accountId
37850
+ }
37851
+ `;
37852
+ export const FundsEntityFieldsFragmentDoc = gql`
37853
+ fragment FundsEntityFields on FundsEntity {
37854
+ ...BaseFundsEntityFields
37855
+ token {
37856
+ ...BaseExchangeTokenFields
37857
+ }
37858
+ }
37859
+ ${BaseFundsEntityFieldsFragmentDoc}
37860
+ ${BaseExchangeTokenFieldsFragmentDoc}
37861
+ `;
35442
37862
  export const BaseDisputeFieldsFragmentDoc = gql`
35443
37863
  fragment BaseDisputeFields on Dispute {
35444
37864
  id
@@ -35528,6 +37948,9 @@ export const BaseEventLogFieldsFragmentDoc = gql`
35528
37948
  export const SellerFieldsFragmentDoc = gql`
35529
37949
  fragment SellerFields on Seller {
35530
37950
  ...BaseSellerFields
37951
+ collections {
37952
+ ...BaseOfferCollectionFields
37953
+ }
35531
37954
  pendingSeller {
35532
37955
  ...PendingSellerFields
35533
37956
  }
@@ -35569,6 +37992,7 @@ export const SellerFieldsFragmentDoc = gql`
35569
37992
  }
35570
37993
  }
35571
37994
  ${BaseSellerFieldsFragmentDoc}
37995
+ ${BaseOfferCollectionFieldsFragmentDoc}
35572
37996
  ${PendingSellerFieldsFragmentDoc}
35573
37997
  ${FundsEntityFieldsFragmentDoc}
35574
37998
  ${BaseOfferFieldsFragmentDoc}
@@ -36124,6 +38548,32 @@ export const GetConditionalCommitAuthorizedEventLogsQueryDocument = gql`
36124
38548
  }
36125
38549
  ${BaseConditionalCommitAuthorizedEventLogsFieldsFragmentDoc}
36126
38550
  `;
38551
+ export const GetOfferCollectionsQueryDocument = gql`
38552
+ query getOfferCollectionsQuery(
38553
+ $offerCollectionsSkip: Int
38554
+ $offerCollectionsFirst: Int
38555
+ $offerCollectionsOrderBy: OfferCollection_orderBy
38556
+ $offerCollectionsOrderDirection: OrderDirection
38557
+ $offerCollectionsFilter: OfferCollection_filter
38558
+ $offersSkip: Int
38559
+ $offersFirst: Int
38560
+ $offersOrderBy: Offer_orderBy
38561
+ $offersOrderDirection: OrderDirection
38562
+ $offersFilter: Offer_filter
38563
+ $includeOffers: Boolean = false
38564
+ ) {
38565
+ offerCollections(
38566
+ skip: $offerCollectionsSkip
38567
+ first: $offerCollectionsFirst
38568
+ orderBy: $offerCollectionsOrderBy
38569
+ orderDirection: $offerCollectionsOrderDirection
38570
+ where: $offerCollectionsFilter
38571
+ ) {
38572
+ ...OfferCollectionFields
38573
+ }
38574
+ }
38575
+ ${OfferCollectionFieldsFragmentDoc}
38576
+ `;
36127
38577
  export const GetDisputeByIdQueryDocument = gql`
36128
38578
  query getDisputeByIdQuery(
36129
38579
  $disputeId: ID!
@@ -36683,6 +39133,21 @@ export function getSdk(
36683
39133
  "query"
36684
39134
  );
36685
39135
  },
39136
+ getOfferCollectionsQuery(
39137
+ variables?: GetOfferCollectionsQueryQueryVariables,
39138
+ requestHeaders?: Dom.RequestInit["headers"]
39139
+ ): Promise<GetOfferCollectionsQueryQuery> {
39140
+ return withWrapper(
39141
+ (wrappedRequestHeaders) =>
39142
+ client.request<GetOfferCollectionsQueryQuery>(
39143
+ GetOfferCollectionsQueryDocument,
39144
+ variables,
39145
+ { ...requestHeaders, ...wrappedRequestHeaders }
39146
+ ),
39147
+ "getOfferCollectionsQuery",
39148
+ "query"
39149
+ );
39150
+ },
36686
39151
  getDisputeByIdQuery(
36687
39152
  variables: GetDisputeByIdQueryQueryVariables,
36688
39153
  requestHeaders?: Dom.RequestInit["headers"]