@bosonprotocol/core-sdk 1.21.0-alpha.8 → 1.21.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 (43) hide show
  1. package/LICENSE +202 -0
  2. package/dist/cjs/core-sdk.d.ts +7 -0
  3. package/dist/cjs/core-sdk.d.ts.map +1 -1
  4. package/dist/cjs/core-sdk.js +5 -0
  5. package/dist/cjs/core-sdk.js.map +1 -1
  6. package/dist/cjs/exchanges/handler.js +2 -2
  7. package/dist/cjs/exchanges/handler.js.map +1 -1
  8. package/dist/cjs/metadata/subgraph.d.ts +8 -1
  9. package/dist/cjs/metadata/subgraph.d.ts.map +1 -1
  10. package/dist/cjs/metadata/subgraph.js +24 -1
  11. package/dist/cjs/metadata/subgraph.js.map +1 -1
  12. package/dist/cjs/offers/storage.d.ts.map +1 -1
  13. package/dist/cjs/offers/storage.js.map +1 -1
  14. package/dist/cjs/subgraph.d.ts +122 -0
  15. package/dist/cjs/subgraph.d.ts.map +1 -1
  16. package/dist/cjs/subgraph.js +6 -0
  17. package/dist/cjs/subgraph.js.map +1 -1
  18. package/dist/esm/core-sdk.d.ts +7 -0
  19. package/dist/esm/core-sdk.d.ts.map +1 -1
  20. package/dist/esm/core-sdk.js +3 -0
  21. package/dist/esm/core-sdk.js.map +1 -1
  22. package/dist/esm/exchanges/handler.js +2 -2
  23. package/dist/esm/exchanges/handler.js.map +1 -1
  24. package/dist/esm/metadata/subgraph.d.ts +8 -1
  25. package/dist/esm/metadata/subgraph.d.ts.map +1 -1
  26. package/dist/esm/metadata/subgraph.js +20 -0
  27. package/dist/esm/metadata/subgraph.js.map +1 -1
  28. package/dist/esm/offers/storage.d.ts.map +1 -1
  29. package/dist/esm/offers/storage.js.map +1 -1
  30. package/dist/esm/subgraph.d.ts +122 -0
  31. package/dist/esm/subgraph.d.ts.map +1 -1
  32. package/dist/esm/subgraph.js +6 -0
  33. package/dist/esm/subgraph.js.map +1 -1
  34. package/package.json +3 -3
  35. package/src/core-sdk.ts +13 -0
  36. package/src/exchanges/handler.ts +5 -2
  37. package/src/metadata/base.graphql +1 -0
  38. package/src/metadata/product-v1.graphql +1 -0
  39. package/src/metadata/subgraph.ts +33 -1
  40. package/src/offers/queries.graphql +1 -0
  41. package/src/offers/storage.ts +1 -0
  42. package/src/subgraph.ts +125 -0
  43. package/LICENSE.md +0 -192
package/src/subgraph.ts CHANGED
@@ -170,6 +170,7 @@ export enum Account_OrderBy {
170
170
 
171
171
  export type BaseMetadataEntity = MetadataInterface & {
172
172
  __typename?: "BaseMetadataEntity";
173
+ animationUrl?: Maybe<Scalars["String"]>;
173
174
  attributes?: Maybe<Array<MetadataAttribute>>;
174
175
  /**
175
176
  * Enriched fields from offer entity to allow nested query workaround
@@ -215,6 +216,26 @@ export type BaseMetadataEntityAttributesArgs = {
215
216
  export type BaseMetadataEntity_Filter = {
216
217
  /** Filter for the block changed event. */
217
218
  _change_block?: InputMaybe<BlockChangedFilter>;
219
+ animationUrl?: InputMaybe<Scalars["String"]>;
220
+ animationUrl_contains?: InputMaybe<Scalars["String"]>;
221
+ animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
222
+ animationUrl_ends_with?: InputMaybe<Scalars["String"]>;
223
+ animationUrl_ends_with_nocase?: InputMaybe<Scalars["String"]>;
224
+ animationUrl_gt?: InputMaybe<Scalars["String"]>;
225
+ animationUrl_gte?: InputMaybe<Scalars["String"]>;
226
+ animationUrl_in?: InputMaybe<Array<Scalars["String"]>>;
227
+ animationUrl_lt?: InputMaybe<Scalars["String"]>;
228
+ animationUrl_lte?: InputMaybe<Scalars["String"]>;
229
+ animationUrl_not?: InputMaybe<Scalars["String"]>;
230
+ animationUrl_not_contains?: InputMaybe<Scalars["String"]>;
231
+ animationUrl_not_contains_nocase?: InputMaybe<Scalars["String"]>;
232
+ animationUrl_not_ends_with?: InputMaybe<Scalars["String"]>;
233
+ animationUrl_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
234
+ animationUrl_not_in?: InputMaybe<Array<Scalars["String"]>>;
235
+ animationUrl_not_starts_with?: InputMaybe<Scalars["String"]>;
236
+ animationUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
237
+ animationUrl_starts_with?: InputMaybe<Scalars["String"]>;
238
+ animationUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
218
239
  attributes?: InputMaybe<Array<Scalars["String"]>>;
219
240
  attributes_?: InputMaybe<MetadataAttribute_Filter>;
220
241
  attributes_contains?: InputMaybe<Array<Scalars["String"]>>;
@@ -472,6 +493,7 @@ export type BaseMetadataEntity_Filter = {
472
493
  };
473
494
 
474
495
  export enum BaseMetadataEntity_OrderBy {
496
+ AnimationUrl = "animationUrl",
475
497
  Attributes = "attributes",
476
498
  CreatedAt = "createdAt",
477
499
  Description = "description",
@@ -2175,6 +2197,7 @@ export enum MetadataAttribute_OrderBy {
2175
2197
  }
2176
2198
 
2177
2199
  export type MetadataInterface = {
2200
+ animationUrl?: Maybe<Scalars["String"]>;
2178
2201
  attributes?: Maybe<Array<MetadataAttribute>>;
2179
2202
  /**
2180
2203
  * Enriched fields from offer entity to allow nested query workaround
@@ -2219,6 +2242,26 @@ export type MetadataInterfaceAttributesArgs = {
2219
2242
  export type MetadataInterface_Filter = {
2220
2243
  /** Filter for the block changed event. */
2221
2244
  _change_block?: InputMaybe<BlockChangedFilter>;
2245
+ animationUrl?: InputMaybe<Scalars["String"]>;
2246
+ animationUrl_contains?: InputMaybe<Scalars["String"]>;
2247
+ animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
2248
+ animationUrl_ends_with?: InputMaybe<Scalars["String"]>;
2249
+ animationUrl_ends_with_nocase?: InputMaybe<Scalars["String"]>;
2250
+ animationUrl_gt?: InputMaybe<Scalars["String"]>;
2251
+ animationUrl_gte?: InputMaybe<Scalars["String"]>;
2252
+ animationUrl_in?: InputMaybe<Array<Scalars["String"]>>;
2253
+ animationUrl_lt?: InputMaybe<Scalars["String"]>;
2254
+ animationUrl_lte?: InputMaybe<Scalars["String"]>;
2255
+ animationUrl_not?: InputMaybe<Scalars["String"]>;
2256
+ animationUrl_not_contains?: InputMaybe<Scalars["String"]>;
2257
+ animationUrl_not_contains_nocase?: InputMaybe<Scalars["String"]>;
2258
+ animationUrl_not_ends_with?: InputMaybe<Scalars["String"]>;
2259
+ animationUrl_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
2260
+ animationUrl_not_in?: InputMaybe<Array<Scalars["String"]>>;
2261
+ animationUrl_not_starts_with?: InputMaybe<Scalars["String"]>;
2262
+ animationUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
2263
+ animationUrl_starts_with?: InputMaybe<Scalars["String"]>;
2264
+ animationUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
2222
2265
  attributes?: InputMaybe<Array<Scalars["String"]>>;
2223
2266
  attributes_?: InputMaybe<MetadataAttribute_Filter>;
2224
2267
  attributes_contains?: InputMaybe<Array<Scalars["String"]>>;
@@ -2476,6 +2519,7 @@ export type MetadataInterface_Filter = {
2476
2519
  };
2477
2520
 
2478
2521
  export enum MetadataInterface_OrderBy {
2522
+ AnimationUrl = "animationUrl",
2479
2523
  Attributes = "attributes",
2480
2524
  CreatedAt = "createdAt",
2481
2525
  Description = "description",
@@ -3367,6 +3411,7 @@ export enum ProductV1Media_OrderBy {
3367
3411
 
3368
3412
  export type ProductV1MetadataEntity = MetadataInterface & {
3369
3413
  __typename?: "ProductV1MetadataEntity";
3414
+ animationUrl?: Maybe<Scalars["String"]>;
3370
3415
  attributes?: Maybe<Array<MetadataAttribute>>;
3371
3416
  /**
3372
3417
  * Enriched fields from offer entity to allow nested query workaround
@@ -3433,6 +3478,26 @@ export type ProductV1MetadataEntityVariationsArgs = {
3433
3478
  export type ProductV1MetadataEntity_Filter = {
3434
3479
  /** Filter for the block changed event. */
3435
3480
  _change_block?: InputMaybe<BlockChangedFilter>;
3481
+ animationUrl?: InputMaybe<Scalars["String"]>;
3482
+ animationUrl_contains?: InputMaybe<Scalars["String"]>;
3483
+ animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
3484
+ animationUrl_ends_with?: InputMaybe<Scalars["String"]>;
3485
+ animationUrl_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3486
+ animationUrl_gt?: InputMaybe<Scalars["String"]>;
3487
+ animationUrl_gte?: InputMaybe<Scalars["String"]>;
3488
+ animationUrl_in?: InputMaybe<Array<Scalars["String"]>>;
3489
+ animationUrl_lt?: InputMaybe<Scalars["String"]>;
3490
+ animationUrl_lte?: InputMaybe<Scalars["String"]>;
3491
+ animationUrl_not?: InputMaybe<Scalars["String"]>;
3492
+ animationUrl_not_contains?: InputMaybe<Scalars["String"]>;
3493
+ animationUrl_not_contains_nocase?: InputMaybe<Scalars["String"]>;
3494
+ animationUrl_not_ends_with?: InputMaybe<Scalars["String"]>;
3495
+ animationUrl_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
3496
+ animationUrl_not_in?: InputMaybe<Array<Scalars["String"]>>;
3497
+ animationUrl_not_starts_with?: InputMaybe<Scalars["String"]>;
3498
+ animationUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3499
+ animationUrl_starts_with?: InputMaybe<Scalars["String"]>;
3500
+ animationUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
3436
3501
  attributes?: InputMaybe<Array<Scalars["String"]>>;
3437
3502
  attributes_?: InputMaybe<MetadataAttribute_Filter>;
3438
3503
  attributes_contains?: InputMaybe<Array<Scalars["String"]>>;
@@ -3850,6 +3915,7 @@ export type ProductV1MetadataEntity_Filter = {
3850
3915
  };
3851
3916
 
3852
3917
  export enum ProductV1MetadataEntity_OrderBy {
3918
+ AnimationUrl = "animationUrl",
3853
3919
  Attributes = "attributes",
3854
3920
  CreatedAt = "createdAt",
3855
3921
  Description = "description",
@@ -7635,6 +7701,7 @@ export type GetSellerByIdQueryQuery = {
7635
7701
  name: string;
7636
7702
  description: string;
7637
7703
  externalUrl: string;
7704
+ animationUrl?: string | null;
7638
7705
  licenseUrl: string;
7639
7706
  schemaUrl: string;
7640
7707
  type: MetadataType;
@@ -7651,6 +7718,7 @@ export type GetSellerByIdQueryQuery = {
7651
7718
  name: string;
7652
7719
  description: string;
7653
7720
  externalUrl: string;
7721
+ animationUrl?: string | null;
7654
7722
  licenseUrl: string;
7655
7723
  schemaUrl: string;
7656
7724
  type: MetadataType;
@@ -8120,6 +8188,7 @@ export type GetSellersQueryQuery = {
8120
8188
  name: string;
8121
8189
  description: string;
8122
8190
  externalUrl: string;
8191
+ animationUrl?: string | null;
8123
8192
  licenseUrl: string;
8124
8193
  schemaUrl: string;
8125
8194
  type: MetadataType;
@@ -8136,6 +8205,7 @@ export type GetSellersQueryQuery = {
8136
8205
  name: string;
8137
8206
  description: string;
8138
8207
  externalUrl: string;
8208
+ animationUrl?: string | null;
8139
8209
  licenseUrl: string;
8140
8210
  schemaUrl: string;
8141
8211
  type: MetadataType;
@@ -8915,6 +8985,7 @@ export type GetDisputeResolverByIdQueryQuery = {
8915
8985
  name: string;
8916
8986
  description: string;
8917
8987
  externalUrl: string;
8988
+ animationUrl?: string | null;
8918
8989
  licenseUrl: string;
8919
8990
  schemaUrl: string;
8920
8991
  type: MetadataType;
@@ -8931,6 +9002,7 @@ export type GetDisputeResolverByIdQueryQuery = {
8931
9002
  name: string;
8932
9003
  description: string;
8933
9004
  externalUrl: string;
9005
+ animationUrl?: string | null;
8934
9006
  licenseUrl: string;
8935
9007
  schemaUrl: string;
8936
9008
  type: MetadataType;
@@ -9337,6 +9409,7 @@ export type GetDisputeResolversQueryQuery = {
9337
9409
  name: string;
9338
9410
  description: string;
9339
9411
  externalUrl: string;
9412
+ animationUrl?: string | null;
9340
9413
  licenseUrl: string;
9341
9414
  schemaUrl: string;
9342
9415
  type: MetadataType;
@@ -9353,6 +9426,7 @@ export type GetDisputeResolversQueryQuery = {
9353
9426
  name: string;
9354
9427
  description: string;
9355
9428
  externalUrl: string;
9429
+ animationUrl?: string | null;
9356
9430
  licenseUrl: string;
9357
9431
  schemaUrl: string;
9358
9432
  type: MetadataType;
@@ -9753,6 +9827,7 @@ export type SellerFieldsFragment = {
9753
9827
  name: string;
9754
9828
  description: string;
9755
9829
  externalUrl: string;
9830
+ animationUrl?: string | null;
9756
9831
  licenseUrl: string;
9757
9832
  schemaUrl: string;
9758
9833
  type: MetadataType;
@@ -9769,6 +9844,7 @@ export type SellerFieldsFragment = {
9769
9844
  name: string;
9770
9845
  description: string;
9771
9846
  externalUrl: string;
9847
+ animationUrl?: string | null;
9772
9848
  licenseUrl: string;
9773
9849
  schemaUrl: string;
9774
9850
  type: MetadataType;
@@ -10346,6 +10422,7 @@ export type DisputeResolverFieldsFragment = {
10346
10422
  name: string;
10347
10423
  description: string;
10348
10424
  externalUrl: string;
10425
+ animationUrl?: string | null;
10349
10426
  licenseUrl: string;
10350
10427
  schemaUrl: string;
10351
10428
  type: MetadataType;
@@ -10362,6 +10439,7 @@ export type DisputeResolverFieldsFragment = {
10362
10439
  name: string;
10363
10440
  description: string;
10364
10441
  externalUrl: string;
10442
+ animationUrl?: string | null;
10365
10443
  licenseUrl: string;
10366
10444
  schemaUrl: string;
10367
10445
  type: MetadataType;
@@ -11106,6 +11184,7 @@ export type GetExchangeTokenByIdQueryQuery = {
11106
11184
  name: string;
11107
11185
  description: string;
11108
11186
  externalUrl: string;
11187
+ animationUrl?: string | null;
11109
11188
  licenseUrl: string;
11110
11189
  schemaUrl: string;
11111
11190
  type: MetadataType;
@@ -11122,6 +11201,7 @@ export type GetExchangeTokenByIdQueryQuery = {
11122
11201
  name: string;
11123
11202
  description: string;
11124
11203
  externalUrl: string;
11204
+ animationUrl?: string | null;
11125
11205
  licenseUrl: string;
11126
11206
  schemaUrl: string;
11127
11207
  type: MetadataType;
@@ -11445,6 +11525,7 @@ export type GetExchangeTokensQueryQuery = {
11445
11525
  name: string;
11446
11526
  description: string;
11447
11527
  externalUrl: string;
11528
+ animationUrl?: string | null;
11448
11529
  licenseUrl: string;
11449
11530
  schemaUrl: string;
11450
11531
  type: MetadataType;
@@ -11461,6 +11542,7 @@ export type GetExchangeTokensQueryQuery = {
11461
11542
  name: string;
11462
11543
  description: string;
11463
11544
  externalUrl: string;
11545
+ animationUrl?: string | null;
11464
11546
  licenseUrl: string;
11465
11547
  schemaUrl: string;
11466
11548
  type: MetadataType;
@@ -11762,6 +11844,7 @@ export type ExchangeTokenFieldsFragment = {
11762
11844
  name: string;
11763
11845
  description: string;
11764
11846
  externalUrl: string;
11847
+ animationUrl?: string | null;
11765
11848
  licenseUrl: string;
11766
11849
  schemaUrl: string;
11767
11850
  type: MetadataType;
@@ -11778,6 +11861,7 @@ export type ExchangeTokenFieldsFragment = {
11778
11861
  name: string;
11779
11862
  description: string;
11780
11863
  externalUrl: string;
11864
+ animationUrl?: string | null;
11781
11865
  licenseUrl: string;
11782
11866
  schemaUrl: string;
11783
11867
  type: MetadataType;
@@ -12258,6 +12342,7 @@ export type GetExchangeByIdQueryQuery = {
12258
12342
  name: string;
12259
12343
  description: string;
12260
12344
  externalUrl: string;
12345
+ animationUrl?: string | null;
12261
12346
  licenseUrl: string;
12262
12347
  schemaUrl: string;
12263
12348
  type: MetadataType;
@@ -12274,6 +12359,7 @@ export type GetExchangeByIdQueryQuery = {
12274
12359
  name: string;
12275
12360
  description: string;
12276
12361
  externalUrl: string;
12362
+ animationUrl?: string | null;
12277
12363
  licenseUrl: string;
12278
12364
  schemaUrl: string;
12279
12365
  type: MetadataType;
@@ -12621,6 +12707,7 @@ export type GetExchangesQueryQuery = {
12621
12707
  name: string;
12622
12708
  description: string;
12623
12709
  externalUrl: string;
12710
+ animationUrl?: string | null;
12624
12711
  licenseUrl: string;
12625
12712
  schemaUrl: string;
12626
12713
  type: MetadataType;
@@ -12637,6 +12724,7 @@ export type GetExchangesQueryQuery = {
12637
12724
  name: string;
12638
12725
  description: string;
12639
12726
  externalUrl: string;
12727
+ animationUrl?: string | null;
12640
12728
  licenseUrl: string;
12641
12729
  schemaUrl: string;
12642
12730
  type: MetadataType;
@@ -12974,6 +13062,7 @@ export type ExchangeFieldsFragment = {
12974
13062
  name: string;
12975
13063
  description: string;
12976
13064
  externalUrl: string;
13065
+ animationUrl?: string | null;
12977
13066
  licenseUrl: string;
12978
13067
  schemaUrl: string;
12979
13068
  type: MetadataType;
@@ -12990,6 +13079,7 @@ export type ExchangeFieldsFragment = {
12990
13079
  name: string;
12991
13080
  description: string;
12992
13081
  externalUrl: string;
13082
+ animationUrl?: string | null;
12993
13083
  licenseUrl: string;
12994
13084
  schemaUrl: string;
12995
13085
  type: MetadataType;
@@ -13347,6 +13437,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
13347
13437
  name: string;
13348
13438
  description: string;
13349
13439
  externalUrl: string;
13440
+ animationUrl?: string | null;
13350
13441
  licenseUrl: string;
13351
13442
  schemaUrl: string;
13352
13443
  type: MetadataType;
@@ -13453,6 +13544,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
13453
13544
  name: string;
13454
13545
  description: string;
13455
13546
  externalUrl: string;
13547
+ animationUrl?: string | null;
13456
13548
  licenseUrl: string;
13457
13549
  schemaUrl: string;
13458
13550
  type: MetadataType;
@@ -13469,6 +13561,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
13469
13561
  name: string;
13470
13562
  description: string;
13471
13563
  externalUrl: string;
13564
+ animationUrl?: string | null;
13472
13565
  licenseUrl: string;
13473
13566
  schemaUrl: string;
13474
13567
  type: MetadataType;
@@ -13706,6 +13799,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
13706
13799
  name: string;
13707
13800
  description: string;
13708
13801
  externalUrl: string;
13802
+ animationUrl?: string | null;
13709
13803
  licenseUrl: string;
13710
13804
  schemaUrl: string;
13711
13805
  type: MetadataType;
@@ -13812,6 +13906,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
13812
13906
  name: string;
13813
13907
  description: string;
13814
13908
  externalUrl: string;
13909
+ animationUrl?: string | null;
13815
13910
  licenseUrl: string;
13816
13911
  schemaUrl: string;
13817
13912
  type: MetadataType;
@@ -13828,6 +13923,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
13828
13923
  name: string;
13829
13924
  description: string;
13830
13925
  externalUrl: string;
13926
+ animationUrl?: string | null;
13831
13927
  licenseUrl: string;
13832
13928
  schemaUrl: string;
13833
13929
  type: MetadataType;
@@ -14055,6 +14151,7 @@ export type BaseMetadataEntityFieldsFragment = {
14055
14151
  name: string;
14056
14152
  description: string;
14057
14153
  externalUrl: string;
14154
+ animationUrl?: string | null;
14058
14155
  licenseUrl: string;
14059
14156
  schemaUrl: string;
14060
14157
  type: MetadataType;
@@ -14161,6 +14258,7 @@ export type BaseMetadataEntityFieldsFragment = {
14161
14258
  name: string;
14162
14259
  description: string;
14163
14260
  externalUrl: string;
14261
+ animationUrl?: string | null;
14164
14262
  licenseUrl: string;
14165
14263
  schemaUrl: string;
14166
14264
  type: MetadataType;
@@ -14177,6 +14275,7 @@ export type BaseMetadataEntityFieldsFragment = {
14177
14275
  name: string;
14178
14276
  description: string;
14179
14277
  externalUrl: string;
14278
+ animationUrl?: string | null;
14180
14279
  licenseUrl: string;
14181
14280
  schemaUrl: string;
14182
14281
  type: MetadataType;
@@ -14399,6 +14498,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
14399
14498
  name: string;
14400
14499
  description: string;
14401
14500
  externalUrl: string;
14501
+ animationUrl?: string | null;
14402
14502
  licenseUrl: string;
14403
14503
  schemaUrl: string;
14404
14504
  type: MetadataType;
@@ -14505,6 +14605,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
14505
14605
  name: string;
14506
14606
  description: string;
14507
14607
  externalUrl: string;
14608
+ animationUrl?: string | null;
14508
14609
  licenseUrl: string;
14509
14610
  schemaUrl: string;
14510
14611
  type: MetadataType;
@@ -14521,6 +14622,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
14521
14622
  name: string;
14522
14623
  description: string;
14523
14624
  externalUrl: string;
14625
+ animationUrl?: string | null;
14524
14626
  licenseUrl: string;
14525
14627
  schemaUrl: string;
14526
14628
  type: MetadataType;
@@ -14913,6 +15015,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
14913
15015
  name: string;
14914
15016
  description: string;
14915
15017
  externalUrl: string;
15018
+ animationUrl?: string | null;
14916
15019
  licenseUrl: string;
14917
15020
  schemaUrl: string;
14918
15021
  type: MetadataType;
@@ -15020,6 +15123,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
15020
15123
  name: string;
15021
15124
  description: string;
15022
15125
  externalUrl: string;
15126
+ animationUrl?: string | null;
15023
15127
  licenseUrl: string;
15024
15128
  schemaUrl: string;
15025
15129
  type: MetadataType;
@@ -15036,6 +15140,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
15036
15140
  name: string;
15037
15141
  description: string;
15038
15142
  externalUrl: string;
15143
+ animationUrl?: string | null;
15039
15144
  licenseUrl: string;
15040
15145
  schemaUrl: string;
15041
15146
  type: MetadataType;
@@ -15439,6 +15544,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
15439
15544
  name: string;
15440
15545
  description: string;
15441
15546
  externalUrl: string;
15547
+ animationUrl?: string | null;
15442
15548
  licenseUrl: string;
15443
15549
  schemaUrl: string;
15444
15550
  type: MetadataType;
@@ -15546,6 +15652,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
15546
15652
  name: string;
15547
15653
  description: string;
15548
15654
  externalUrl: string;
15655
+ animationUrl?: string | null;
15549
15656
  licenseUrl: string;
15550
15657
  schemaUrl: string;
15551
15658
  type: MetadataType;
@@ -15562,6 +15669,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
15562
15669
  name: string;
15563
15670
  description: string;
15564
15671
  externalUrl: string;
15672
+ animationUrl?: string | null;
15565
15673
  licenseUrl: string;
15566
15674
  schemaUrl: string;
15567
15675
  type: MetadataType;
@@ -15955,6 +16063,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
15955
16063
  name: string;
15956
16064
  description: string;
15957
16065
  externalUrl: string;
16066
+ animationUrl?: string | null;
15958
16067
  licenseUrl: string;
15959
16068
  schemaUrl: string;
15960
16069
  type: MetadataType;
@@ -16062,6 +16171,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
16062
16171
  name: string;
16063
16172
  description: string;
16064
16173
  externalUrl: string;
16174
+ animationUrl?: string | null;
16065
16175
  licenseUrl: string;
16066
16176
  schemaUrl: string;
16067
16177
  type: MetadataType;
@@ -16078,6 +16188,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
16078
16188
  name: string;
16079
16189
  description: string;
16080
16190
  externalUrl: string;
16191
+ animationUrl?: string | null;
16081
16192
  licenseUrl: string;
16082
16193
  schemaUrl: string;
16083
16194
  type: MetadataType;
@@ -16466,6 +16577,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
16466
16577
  name: string;
16467
16578
  description: string;
16468
16579
  externalUrl: string;
16580
+ animationUrl?: string | null;
16469
16581
  licenseUrl: string;
16470
16582
  schemaUrl: string;
16471
16583
  type: MetadataType;
@@ -16573,6 +16685,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
16573
16685
  name: string;
16574
16686
  description: string;
16575
16687
  externalUrl: string;
16688
+ animationUrl?: string | null;
16576
16689
  licenseUrl: string;
16577
16690
  schemaUrl: string;
16578
16691
  type: MetadataType;
@@ -16589,6 +16702,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
16589
16702
  name: string;
16590
16703
  description: string;
16591
16704
  externalUrl: string;
16705
+ animationUrl?: string | null;
16592
16706
  licenseUrl: string;
16593
16707
  schemaUrl: string;
16594
16708
  type: MetadataType;
@@ -17397,6 +17511,7 @@ export type GetOfferByIdQueryQuery = {
17397
17511
  name: string;
17398
17512
  description: string;
17399
17513
  externalUrl: string;
17514
+ animationUrl?: string | null;
17400
17515
  licenseUrl: string;
17401
17516
  schemaUrl: string;
17402
17517
  type: MetadataType;
@@ -17413,6 +17528,7 @@ export type GetOfferByIdQueryQuery = {
17413
17528
  name: string;
17414
17529
  description: string;
17415
17530
  externalUrl: string;
17531
+ animationUrl?: string | null;
17416
17532
  licenseUrl: string;
17417
17533
  schemaUrl: string;
17418
17534
  type: MetadataType;
@@ -17762,6 +17878,7 @@ export type GetOffersQueryQuery = {
17762
17878
  name: string;
17763
17879
  description: string;
17764
17880
  externalUrl: string;
17881
+ animationUrl?: string | null;
17765
17882
  licenseUrl: string;
17766
17883
  schemaUrl: string;
17767
17884
  type: MetadataType;
@@ -17778,6 +17895,7 @@ export type GetOffersQueryQuery = {
17778
17895
  name: string;
17779
17896
  description: string;
17780
17897
  externalUrl: string;
17898
+ animationUrl?: string | null;
17781
17899
  licenseUrl: string;
17782
17900
  schemaUrl: string;
17783
17901
  type: MetadataType;
@@ -18111,6 +18229,7 @@ export type OfferFieldsFragment = {
18111
18229
  name: string;
18112
18230
  description: string;
18113
18231
  externalUrl: string;
18232
+ animationUrl?: string | null;
18114
18233
  licenseUrl: string;
18115
18234
  schemaUrl: string;
18116
18235
  type: MetadataType;
@@ -18127,6 +18246,7 @@ export type OfferFieldsFragment = {
18127
18246
  name: string;
18128
18247
  description: string;
18129
18248
  externalUrl: string;
18249
+ animationUrl?: string | null;
18130
18250
  licenseUrl: string;
18131
18251
  schemaUrl: string;
18132
18252
  type: MetadataType;
@@ -18409,6 +18529,7 @@ export type BaseOfferFieldsFragment = {
18409
18529
  name: string;
18410
18530
  description: string;
18411
18531
  externalUrl: string;
18532
+ animationUrl?: string | null;
18412
18533
  licenseUrl: string;
18413
18534
  schemaUrl: string;
18414
18535
  type: MetadataType;
@@ -18425,6 +18546,7 @@ export type BaseOfferFieldsFragment = {
18425
18546
  name: string;
18426
18547
  description: string;
18427
18548
  externalUrl: string;
18549
+ animationUrl?: string | null;
18428
18550
  licenseUrl: string;
18429
18551
  schemaUrl: string;
18430
18552
  type: MetadataType;
@@ -18914,6 +19036,7 @@ export const BaseOfferFieldsFragmentDoc = gql`
18914
19036
  name
18915
19037
  description
18916
19038
  externalUrl
19039
+ animationUrl
18917
19040
  licenseUrl
18918
19041
  schemaUrl
18919
19042
  type
@@ -19212,6 +19335,7 @@ export const BaseBaseMetadataEntityFieldsFragmentDoc = gql`
19212
19335
  name
19213
19336
  description
19214
19337
  externalUrl
19338
+ animationUrl
19215
19339
  licenseUrl
19216
19340
  schemaUrl
19217
19341
  type
@@ -19254,6 +19378,7 @@ export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
19254
19378
  name
19255
19379
  description
19256
19380
  externalUrl
19381
+ animationUrl
19257
19382
  licenseUrl
19258
19383
  schemaUrl
19259
19384
  type