@bosonprotocol/core-sdk 1.18.0 → 1.19.0-alpha.1
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.
- package/dist/cjs/subgraph.d.ts +122 -0
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +6 -0
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +122 -0
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +6 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/metadata/base.graphql +1 -0
- package/src/metadata/product-v1.graphql +1 -0
- package/src/offers/queries.graphql +1 -0
- package/src/subgraph.ts +125 -0
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -177,6 +177,7 @@ export declare type BaseMetadataEntity = MetadataInterface & {
|
|
|
177
177
|
*/
|
|
178
178
|
id: Scalars["ID"];
|
|
179
179
|
image: Scalars["String"];
|
|
180
|
+
licenseUrl: Scalars["String"];
|
|
180
181
|
name: Scalars["String"];
|
|
181
182
|
numberOfCommits: Scalars["BigInt"];
|
|
182
183
|
numberOfRedemptions: Scalars["BigInt"];
|
|
@@ -308,6 +309,26 @@ export declare type BaseMetadataEntity_Filter = {
|
|
|
308
309
|
image_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
309
310
|
image_starts_with?: InputMaybe<Scalars["String"]>;
|
|
310
311
|
image_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
312
|
+
licenseUrl?: InputMaybe<Scalars["String"]>;
|
|
313
|
+
licenseUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
314
|
+
licenseUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
315
|
+
licenseUrl_ends_with?: InputMaybe<Scalars["String"]>;
|
|
316
|
+
licenseUrl_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
317
|
+
licenseUrl_gt?: InputMaybe<Scalars["String"]>;
|
|
318
|
+
licenseUrl_gte?: InputMaybe<Scalars["String"]>;
|
|
319
|
+
licenseUrl_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
320
|
+
licenseUrl_lt?: InputMaybe<Scalars["String"]>;
|
|
321
|
+
licenseUrl_lte?: InputMaybe<Scalars["String"]>;
|
|
322
|
+
licenseUrl_not?: InputMaybe<Scalars["String"]>;
|
|
323
|
+
licenseUrl_not_contains?: InputMaybe<Scalars["String"]>;
|
|
324
|
+
licenseUrl_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
325
|
+
licenseUrl_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
326
|
+
licenseUrl_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
327
|
+
licenseUrl_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
328
|
+
licenseUrl_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
329
|
+
licenseUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
330
|
+
licenseUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
331
|
+
licenseUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
311
332
|
name?: InputMaybe<Scalars["String"]>;
|
|
312
333
|
name_contains?: InputMaybe<Scalars["String"]>;
|
|
313
334
|
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -447,6 +468,7 @@ export declare enum BaseMetadataEntity_OrderBy {
|
|
|
447
468
|
ExternalUrl = "externalUrl",
|
|
448
469
|
Id = "id",
|
|
449
470
|
Image = "image",
|
|
471
|
+
LicenseUrl = "licenseUrl",
|
|
450
472
|
Name = "name",
|
|
451
473
|
NumberOfCommits = "numberOfCommits",
|
|
452
474
|
NumberOfRedemptions = "numberOfRedemptions",
|
|
@@ -2103,6 +2125,7 @@ export declare type MetadataInterface = {
|
|
|
2103
2125
|
*/
|
|
2104
2126
|
id: Scalars["ID"];
|
|
2105
2127
|
image: Scalars["String"];
|
|
2128
|
+
licenseUrl: Scalars["String"];
|
|
2106
2129
|
name: Scalars["String"];
|
|
2107
2130
|
numberOfCommits: Scalars["BigInt"];
|
|
2108
2131
|
numberOfRedemptions: Scalars["BigInt"];
|
|
@@ -2233,6 +2256,26 @@ export declare type MetadataInterface_Filter = {
|
|
|
2233
2256
|
image_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2234
2257
|
image_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2235
2258
|
image_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2259
|
+
licenseUrl?: InputMaybe<Scalars["String"]>;
|
|
2260
|
+
licenseUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
2261
|
+
licenseUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2262
|
+
licenseUrl_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2263
|
+
licenseUrl_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2264
|
+
licenseUrl_gt?: InputMaybe<Scalars["String"]>;
|
|
2265
|
+
licenseUrl_gte?: InputMaybe<Scalars["String"]>;
|
|
2266
|
+
licenseUrl_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2267
|
+
licenseUrl_lt?: InputMaybe<Scalars["String"]>;
|
|
2268
|
+
licenseUrl_lte?: InputMaybe<Scalars["String"]>;
|
|
2269
|
+
licenseUrl_not?: InputMaybe<Scalars["String"]>;
|
|
2270
|
+
licenseUrl_not_contains?: InputMaybe<Scalars["String"]>;
|
|
2271
|
+
licenseUrl_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2272
|
+
licenseUrl_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2273
|
+
licenseUrl_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2274
|
+
licenseUrl_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2275
|
+
licenseUrl_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2276
|
+
licenseUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2277
|
+
licenseUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2278
|
+
licenseUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2236
2279
|
name?: InputMaybe<Scalars["String"]>;
|
|
2237
2280
|
name_contains?: InputMaybe<Scalars["String"]>;
|
|
2238
2281
|
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2372,6 +2415,7 @@ export declare enum MetadataInterface_OrderBy {
|
|
|
2372
2415
|
ExternalUrl = "externalUrl",
|
|
2373
2416
|
Id = "id",
|
|
2374
2417
|
Image = "image",
|
|
2418
|
+
LicenseUrl = "licenseUrl",
|
|
2375
2419
|
Name = "name",
|
|
2376
2420
|
NumberOfCommits = "numberOfCommits",
|
|
2377
2421
|
NumberOfRedemptions = "numberOfRedemptions",
|
|
@@ -3239,6 +3283,7 @@ export declare type ProductV1MetadataEntity = MetadataInterface & {
|
|
|
3239
3283
|
*/
|
|
3240
3284
|
id: Scalars["ID"];
|
|
3241
3285
|
image: Scalars["String"];
|
|
3286
|
+
licenseUrl: Scalars["String"];
|
|
3242
3287
|
name: Scalars["String"];
|
|
3243
3288
|
numberOfCommits: Scalars["BigInt"];
|
|
3244
3289
|
numberOfRedemptions: Scalars["BigInt"];
|
|
@@ -3408,6 +3453,26 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3408
3453
|
image_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3409
3454
|
image_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3410
3455
|
image_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3456
|
+
licenseUrl?: InputMaybe<Scalars["String"]>;
|
|
3457
|
+
licenseUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
3458
|
+
licenseUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3459
|
+
licenseUrl_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3460
|
+
licenseUrl_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3461
|
+
licenseUrl_gt?: InputMaybe<Scalars["String"]>;
|
|
3462
|
+
licenseUrl_gte?: InputMaybe<Scalars["String"]>;
|
|
3463
|
+
licenseUrl_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3464
|
+
licenseUrl_lt?: InputMaybe<Scalars["String"]>;
|
|
3465
|
+
licenseUrl_lte?: InputMaybe<Scalars["String"]>;
|
|
3466
|
+
licenseUrl_not?: InputMaybe<Scalars["String"]>;
|
|
3467
|
+
licenseUrl_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3468
|
+
licenseUrl_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3469
|
+
licenseUrl_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3470
|
+
licenseUrl_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3471
|
+
licenseUrl_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3472
|
+
licenseUrl_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3473
|
+
licenseUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3474
|
+
licenseUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3475
|
+
licenseUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3411
3476
|
name?: InputMaybe<Scalars["String"]>;
|
|
3412
3477
|
name_contains?: InputMaybe<Scalars["String"]>;
|
|
3413
3478
|
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3659,6 +3724,7 @@ export declare enum ProductV1MetadataEntity_OrderBy {
|
|
|
3659
3724
|
ExternalUrl = "externalUrl",
|
|
3660
3725
|
Id = "id",
|
|
3661
3726
|
Image = "image",
|
|
3727
|
+
LicenseUrl = "licenseUrl",
|
|
3662
3728
|
Name = "name",
|
|
3663
3729
|
NumberOfCommits = "numberOfCommits",
|
|
3664
3730
|
NumberOfRedemptions = "numberOfRedemptions",
|
|
@@ -6898,6 +6964,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6898
6964
|
name: string;
|
|
6899
6965
|
description: string;
|
|
6900
6966
|
externalUrl: string;
|
|
6967
|
+
licenseUrl: string;
|
|
6901
6968
|
schemaUrl: string;
|
|
6902
6969
|
type: MetadataType;
|
|
6903
6970
|
} | {
|
|
@@ -6912,6 +6979,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6912
6979
|
name: string;
|
|
6913
6980
|
description: string;
|
|
6914
6981
|
externalUrl: string;
|
|
6982
|
+
licenseUrl: string;
|
|
6915
6983
|
schemaUrl: string;
|
|
6916
6984
|
type: MetadataType;
|
|
6917
6985
|
attributes?: Array<{
|
|
@@ -7370,6 +7438,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
7370
7438
|
name: string;
|
|
7371
7439
|
description: string;
|
|
7372
7440
|
externalUrl: string;
|
|
7441
|
+
licenseUrl: string;
|
|
7373
7442
|
schemaUrl: string;
|
|
7374
7443
|
type: MetadataType;
|
|
7375
7444
|
} | {
|
|
@@ -7384,6 +7453,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
7384
7453
|
name: string;
|
|
7385
7454
|
description: string;
|
|
7386
7455
|
externalUrl: string;
|
|
7456
|
+
licenseUrl: string;
|
|
7387
7457
|
schemaUrl: string;
|
|
7388
7458
|
type: MetadataType;
|
|
7389
7459
|
attributes?: Array<{
|
|
@@ -8212,6 +8282,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
8212
8282
|
name: string;
|
|
8213
8283
|
description: string;
|
|
8214
8284
|
externalUrl: string;
|
|
8285
|
+
licenseUrl: string;
|
|
8215
8286
|
schemaUrl: string;
|
|
8216
8287
|
type: MetadataType;
|
|
8217
8288
|
} | {
|
|
@@ -8226,6 +8297,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
8226
8297
|
name: string;
|
|
8227
8298
|
description: string;
|
|
8228
8299
|
externalUrl: string;
|
|
8300
|
+
licenseUrl: string;
|
|
8229
8301
|
schemaUrl: string;
|
|
8230
8302
|
type: MetadataType;
|
|
8231
8303
|
attributes?: Array<{
|
|
@@ -8621,6 +8693,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8621
8693
|
name: string;
|
|
8622
8694
|
description: string;
|
|
8623
8695
|
externalUrl: string;
|
|
8696
|
+
licenseUrl: string;
|
|
8624
8697
|
schemaUrl: string;
|
|
8625
8698
|
type: MetadataType;
|
|
8626
8699
|
} | {
|
|
@@ -8635,6 +8708,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8635
8708
|
name: string;
|
|
8636
8709
|
description: string;
|
|
8637
8710
|
externalUrl: string;
|
|
8711
|
+
licenseUrl: string;
|
|
8638
8712
|
schemaUrl: string;
|
|
8639
8713
|
type: MetadataType;
|
|
8640
8714
|
attributes?: Array<{
|
|
@@ -9025,6 +9099,7 @@ export declare type SellerFieldsFragment = {
|
|
|
9025
9099
|
name: string;
|
|
9026
9100
|
description: string;
|
|
9027
9101
|
externalUrl: string;
|
|
9102
|
+
licenseUrl: string;
|
|
9028
9103
|
schemaUrl: string;
|
|
9029
9104
|
type: MetadataType;
|
|
9030
9105
|
} | {
|
|
@@ -9039,6 +9114,7 @@ export declare type SellerFieldsFragment = {
|
|
|
9039
9114
|
name: string;
|
|
9040
9115
|
description: string;
|
|
9041
9116
|
externalUrl: string;
|
|
9117
|
+
licenseUrl: string;
|
|
9042
9118
|
schemaUrl: string;
|
|
9043
9119
|
type: MetadataType;
|
|
9044
9120
|
attributes?: Array<{
|
|
@@ -9639,6 +9715,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9639
9715
|
name: string;
|
|
9640
9716
|
description: string;
|
|
9641
9717
|
externalUrl: string;
|
|
9718
|
+
licenseUrl: string;
|
|
9642
9719
|
schemaUrl: string;
|
|
9643
9720
|
type: MetadataType;
|
|
9644
9721
|
} | {
|
|
@@ -9653,6 +9730,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9653
9730
|
name: string;
|
|
9654
9731
|
description: string;
|
|
9655
9732
|
externalUrl: string;
|
|
9733
|
+
licenseUrl: string;
|
|
9656
9734
|
schemaUrl: string;
|
|
9657
9735
|
type: MetadataType;
|
|
9658
9736
|
attributes?: Array<{
|
|
@@ -10386,6 +10464,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10386
10464
|
name: string;
|
|
10387
10465
|
description: string;
|
|
10388
10466
|
externalUrl: string;
|
|
10467
|
+
licenseUrl: string;
|
|
10389
10468
|
schemaUrl: string;
|
|
10390
10469
|
type: MetadataType;
|
|
10391
10470
|
} | {
|
|
@@ -10400,6 +10479,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10400
10479
|
name: string;
|
|
10401
10480
|
description: string;
|
|
10402
10481
|
externalUrl: string;
|
|
10482
|
+
licenseUrl: string;
|
|
10403
10483
|
schemaUrl: string;
|
|
10404
10484
|
type: MetadataType;
|
|
10405
10485
|
attributes?: Array<{
|
|
@@ -10680,6 +10760,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10680
10760
|
name: string;
|
|
10681
10761
|
description: string;
|
|
10682
10762
|
externalUrl: string;
|
|
10763
|
+
licenseUrl: string;
|
|
10683
10764
|
schemaUrl: string;
|
|
10684
10765
|
type: MetadataType;
|
|
10685
10766
|
} | {
|
|
@@ -10694,6 +10775,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10694
10775
|
name: string;
|
|
10695
10776
|
description: string;
|
|
10696
10777
|
externalUrl: string;
|
|
10778
|
+
licenseUrl: string;
|
|
10697
10779
|
schemaUrl: string;
|
|
10698
10780
|
type: MetadataType;
|
|
10699
10781
|
attributes?: Array<{
|
|
@@ -10953,6 +11035,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10953
11035
|
name: string;
|
|
10954
11036
|
description: string;
|
|
10955
11037
|
externalUrl: string;
|
|
11038
|
+
licenseUrl: string;
|
|
10956
11039
|
schemaUrl: string;
|
|
10957
11040
|
type: MetadataType;
|
|
10958
11041
|
} | {
|
|
@@ -10967,6 +11050,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10967
11050
|
name: string;
|
|
10968
11051
|
description: string;
|
|
10969
11052
|
externalUrl: string;
|
|
11053
|
+
licenseUrl: string;
|
|
10970
11054
|
schemaUrl: string;
|
|
10971
11055
|
type: MetadataType;
|
|
10972
11056
|
attributes?: Array<{
|
|
@@ -11464,6 +11548,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11464
11548
|
name: string;
|
|
11465
11549
|
description: string;
|
|
11466
11550
|
externalUrl: string;
|
|
11551
|
+
licenseUrl: string;
|
|
11467
11552
|
schemaUrl: string;
|
|
11468
11553
|
type: MetadataType;
|
|
11469
11554
|
} | {
|
|
@@ -11478,6 +11563,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11478
11563
|
name: string;
|
|
11479
11564
|
description: string;
|
|
11480
11565
|
externalUrl: string;
|
|
11566
|
+
licenseUrl: string;
|
|
11481
11567
|
schemaUrl: string;
|
|
11482
11568
|
type: MetadataType;
|
|
11483
11569
|
attributes?: Array<{
|
|
@@ -11782,6 +11868,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11782
11868
|
name: string;
|
|
11783
11869
|
description: string;
|
|
11784
11870
|
externalUrl: string;
|
|
11871
|
+
licenseUrl: string;
|
|
11785
11872
|
schemaUrl: string;
|
|
11786
11873
|
type: MetadataType;
|
|
11787
11874
|
} | {
|
|
@@ -11796,6 +11883,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11796
11883
|
name: string;
|
|
11797
11884
|
description: string;
|
|
11798
11885
|
externalUrl: string;
|
|
11886
|
+
licenseUrl: string;
|
|
11799
11887
|
schemaUrl: string;
|
|
11800
11888
|
type: MetadataType;
|
|
11801
11889
|
attributes?: Array<{
|
|
@@ -12091,6 +12179,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
12091
12179
|
name: string;
|
|
12092
12180
|
description: string;
|
|
12093
12181
|
externalUrl: string;
|
|
12182
|
+
licenseUrl: string;
|
|
12094
12183
|
schemaUrl: string;
|
|
12095
12184
|
type: MetadataType;
|
|
12096
12185
|
} | {
|
|
@@ -12105,6 +12194,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
12105
12194
|
name: string;
|
|
12106
12195
|
description: string;
|
|
12107
12196
|
externalUrl: string;
|
|
12197
|
+
licenseUrl: string;
|
|
12108
12198
|
schemaUrl: string;
|
|
12109
12199
|
type: MetadataType;
|
|
12110
12200
|
attributes?: Array<{
|
|
@@ -12427,6 +12517,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12427
12517
|
name: string;
|
|
12428
12518
|
description: string;
|
|
12429
12519
|
externalUrl: string;
|
|
12520
|
+
licenseUrl: string;
|
|
12430
12521
|
schemaUrl: string;
|
|
12431
12522
|
type: MetadataType;
|
|
12432
12523
|
image: string;
|
|
@@ -12531,6 +12622,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12531
12622
|
name: string;
|
|
12532
12623
|
description: string;
|
|
12533
12624
|
externalUrl: string;
|
|
12625
|
+
licenseUrl: string;
|
|
12534
12626
|
schemaUrl: string;
|
|
12535
12627
|
type: MetadataType;
|
|
12536
12628
|
} | {
|
|
@@ -12545,6 +12637,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12545
12637
|
name: string;
|
|
12546
12638
|
description: string;
|
|
12547
12639
|
externalUrl: string;
|
|
12640
|
+
licenseUrl: string;
|
|
12548
12641
|
schemaUrl: string;
|
|
12549
12642
|
type: MetadataType;
|
|
12550
12643
|
attributes?: Array<{
|
|
@@ -12740,6 +12833,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12740
12833
|
name: string;
|
|
12741
12834
|
description: string;
|
|
12742
12835
|
externalUrl: string;
|
|
12836
|
+
licenseUrl: string;
|
|
12743
12837
|
schemaUrl: string;
|
|
12744
12838
|
type: MetadataType;
|
|
12745
12839
|
image: string;
|
|
@@ -12844,6 +12938,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12844
12938
|
name: string;
|
|
12845
12939
|
description: string;
|
|
12846
12940
|
externalUrl: string;
|
|
12941
|
+
licenseUrl: string;
|
|
12847
12942
|
schemaUrl: string;
|
|
12848
12943
|
type: MetadataType;
|
|
12849
12944
|
} | {
|
|
@@ -12858,6 +12953,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12858
12953
|
name: string;
|
|
12859
12954
|
description: string;
|
|
12860
12955
|
externalUrl: string;
|
|
12956
|
+
licenseUrl: string;
|
|
12861
12957
|
schemaUrl: string;
|
|
12862
12958
|
type: MetadataType;
|
|
12863
12959
|
attributes?: Array<{
|
|
@@ -13044,6 +13140,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
13044
13140
|
name: string;
|
|
13045
13141
|
description: string;
|
|
13046
13142
|
externalUrl: string;
|
|
13143
|
+
licenseUrl: string;
|
|
13047
13144
|
schemaUrl: string;
|
|
13048
13145
|
type: MetadataType;
|
|
13049
13146
|
image: string;
|
|
@@ -13148,6 +13245,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
13148
13245
|
name: string;
|
|
13149
13246
|
description: string;
|
|
13150
13247
|
externalUrl: string;
|
|
13248
|
+
licenseUrl: string;
|
|
13151
13249
|
schemaUrl: string;
|
|
13152
13250
|
type: MetadataType;
|
|
13153
13251
|
} | {
|
|
@@ -13162,6 +13260,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
13162
13260
|
name: string;
|
|
13163
13261
|
description: string;
|
|
13164
13262
|
externalUrl: string;
|
|
13263
|
+
licenseUrl: string;
|
|
13165
13264
|
schemaUrl: string;
|
|
13166
13265
|
type: MetadataType;
|
|
13167
13266
|
attributes?: Array<{
|
|
@@ -13347,6 +13446,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13347
13446
|
name: string;
|
|
13348
13447
|
description: string;
|
|
13349
13448
|
externalUrl: string;
|
|
13449
|
+
licenseUrl: string;
|
|
13350
13450
|
schemaUrl: string;
|
|
13351
13451
|
type: MetadataType;
|
|
13352
13452
|
image: string;
|
|
@@ -13451,6 +13551,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13451
13551
|
name: string;
|
|
13452
13552
|
description: string;
|
|
13453
13553
|
externalUrl: string;
|
|
13554
|
+
licenseUrl: string;
|
|
13454
13555
|
schemaUrl: string;
|
|
13455
13556
|
type: MetadataType;
|
|
13456
13557
|
} | {
|
|
@@ -13465,6 +13566,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13465
13566
|
name: string;
|
|
13466
13567
|
description: string;
|
|
13467
13568
|
externalUrl: string;
|
|
13569
|
+
licenseUrl: string;
|
|
13468
13570
|
schemaUrl: string;
|
|
13469
13571
|
type: MetadataType;
|
|
13470
13572
|
attributes?: Array<{
|
|
@@ -13690,6 +13792,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13690
13792
|
name: string;
|
|
13691
13793
|
description: string;
|
|
13692
13794
|
externalUrl: string;
|
|
13795
|
+
licenseUrl: string;
|
|
13693
13796
|
schemaUrl: string;
|
|
13694
13797
|
type: MetadataType;
|
|
13695
13798
|
image: string;
|
|
@@ -13795,6 +13898,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13795
13898
|
name: string;
|
|
13796
13899
|
description: string;
|
|
13797
13900
|
externalUrl: string;
|
|
13901
|
+
licenseUrl: string;
|
|
13798
13902
|
schemaUrl: string;
|
|
13799
13903
|
type: MetadataType;
|
|
13800
13904
|
} | {
|
|
@@ -13809,6 +13913,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13809
13913
|
name: string;
|
|
13810
13914
|
description: string;
|
|
13811
13915
|
externalUrl: string;
|
|
13916
|
+
licenseUrl: string;
|
|
13812
13917
|
schemaUrl: string;
|
|
13813
13918
|
type: MetadataType;
|
|
13814
13919
|
attributes?: Array<{
|
|
@@ -14136,6 +14241,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14136
14241
|
name: string;
|
|
14137
14242
|
description: string;
|
|
14138
14243
|
externalUrl: string;
|
|
14244
|
+
licenseUrl: string;
|
|
14139
14245
|
schemaUrl: string;
|
|
14140
14246
|
type: MetadataType;
|
|
14141
14247
|
image: string;
|
|
@@ -14241,6 +14347,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14241
14347
|
name: string;
|
|
14242
14348
|
description: string;
|
|
14243
14349
|
externalUrl: string;
|
|
14350
|
+
licenseUrl: string;
|
|
14244
14351
|
schemaUrl: string;
|
|
14245
14352
|
type: MetadataType;
|
|
14246
14353
|
} | {
|
|
@@ -14255,6 +14362,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14255
14362
|
name: string;
|
|
14256
14363
|
description: string;
|
|
14257
14364
|
externalUrl: string;
|
|
14365
|
+
licenseUrl: string;
|
|
14258
14366
|
schemaUrl: string;
|
|
14259
14367
|
type: MetadataType;
|
|
14260
14368
|
attributes?: Array<{
|
|
@@ -14573,6 +14681,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14573
14681
|
name: string;
|
|
14574
14682
|
description: string;
|
|
14575
14683
|
externalUrl: string;
|
|
14684
|
+
licenseUrl: string;
|
|
14576
14685
|
schemaUrl: string;
|
|
14577
14686
|
type: MetadataType;
|
|
14578
14687
|
image: string;
|
|
@@ -14678,6 +14787,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14678
14787
|
name: string;
|
|
14679
14788
|
description: string;
|
|
14680
14789
|
externalUrl: string;
|
|
14790
|
+
licenseUrl: string;
|
|
14681
14791
|
schemaUrl: string;
|
|
14682
14792
|
type: MetadataType;
|
|
14683
14793
|
} | {
|
|
@@ -14692,6 +14802,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14692
14802
|
name: string;
|
|
14693
14803
|
description: string;
|
|
14694
14804
|
externalUrl: string;
|
|
14805
|
+
licenseUrl: string;
|
|
14695
14806
|
schemaUrl: string;
|
|
14696
14807
|
type: MetadataType;
|
|
14697
14808
|
attributes?: Array<{
|
|
@@ -15009,6 +15120,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15009
15120
|
name: string;
|
|
15010
15121
|
description: string;
|
|
15011
15122
|
externalUrl: string;
|
|
15123
|
+
licenseUrl: string;
|
|
15012
15124
|
schemaUrl: string;
|
|
15013
15125
|
type: MetadataType;
|
|
15014
15126
|
image: string;
|
|
@@ -15114,6 +15226,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15114
15226
|
name: string;
|
|
15115
15227
|
description: string;
|
|
15116
15228
|
externalUrl: string;
|
|
15229
|
+
licenseUrl: string;
|
|
15117
15230
|
schemaUrl: string;
|
|
15118
15231
|
type: MetadataType;
|
|
15119
15232
|
} | {
|
|
@@ -15128,6 +15241,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15128
15241
|
name: string;
|
|
15129
15242
|
description: string;
|
|
15130
15243
|
externalUrl: string;
|
|
15244
|
+
licenseUrl: string;
|
|
15131
15245
|
schemaUrl: string;
|
|
15132
15246
|
type: MetadataType;
|
|
15133
15247
|
attributes?: Array<{
|
|
@@ -15819,6 +15933,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15819
15933
|
name: string;
|
|
15820
15934
|
description: string;
|
|
15821
15935
|
externalUrl: string;
|
|
15936
|
+
licenseUrl: string;
|
|
15822
15937
|
schemaUrl: string;
|
|
15823
15938
|
type: MetadataType;
|
|
15824
15939
|
} | {
|
|
@@ -15833,6 +15948,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15833
15948
|
name: string;
|
|
15834
15949
|
description: string;
|
|
15835
15950
|
externalUrl: string;
|
|
15951
|
+
licenseUrl: string;
|
|
15836
15952
|
schemaUrl: string;
|
|
15837
15953
|
type: MetadataType;
|
|
15838
15954
|
attributes?: Array<{
|
|
@@ -16143,6 +16259,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
16143
16259
|
name: string;
|
|
16144
16260
|
description: string;
|
|
16145
16261
|
externalUrl: string;
|
|
16262
|
+
licenseUrl: string;
|
|
16146
16263
|
schemaUrl: string;
|
|
16147
16264
|
type: MetadataType;
|
|
16148
16265
|
} | {
|
|
@@ -16157,6 +16274,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
16157
16274
|
name: string;
|
|
16158
16275
|
description: string;
|
|
16159
16276
|
externalUrl: string;
|
|
16277
|
+
licenseUrl: string;
|
|
16160
16278
|
schemaUrl: string;
|
|
16161
16279
|
type: MetadataType;
|
|
16162
16280
|
attributes?: Array<{
|
|
@@ -16452,6 +16570,7 @@ export declare type OfferFieldsFragment = {
|
|
|
16452
16570
|
name: string;
|
|
16453
16571
|
description: string;
|
|
16454
16572
|
externalUrl: string;
|
|
16573
|
+
licenseUrl: string;
|
|
16455
16574
|
schemaUrl: string;
|
|
16456
16575
|
type: MetadataType;
|
|
16457
16576
|
} | {
|
|
@@ -16466,6 +16585,7 @@ export declare type OfferFieldsFragment = {
|
|
|
16466
16585
|
name: string;
|
|
16467
16586
|
description: string;
|
|
16468
16587
|
externalUrl: string;
|
|
16588
|
+
licenseUrl: string;
|
|
16469
16589
|
schemaUrl: string;
|
|
16470
16590
|
type: MetadataType;
|
|
16471
16591
|
attributes?: Array<{
|
|
@@ -16710,6 +16830,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16710
16830
|
name: string;
|
|
16711
16831
|
description: string;
|
|
16712
16832
|
externalUrl: string;
|
|
16833
|
+
licenseUrl: string;
|
|
16713
16834
|
schemaUrl: string;
|
|
16714
16835
|
type: MetadataType;
|
|
16715
16836
|
} | {
|
|
@@ -16724,6 +16845,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16724
16845
|
name: string;
|
|
16725
16846
|
description: string;
|
|
16726
16847
|
externalUrl: string;
|
|
16848
|
+
licenseUrl: string;
|
|
16727
16849
|
schemaUrl: string;
|
|
16728
16850
|
type: MetadataType;
|
|
16729
16851
|
attributes?: Array<{
|