@bosonprotocol/core-sdk 1.18.0 → 1.19.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.
- 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/src/subgraph.ts
CHANGED
|
@@ -185,6 +185,7 @@ export type BaseMetadataEntity = MetadataInterface & {
|
|
|
185
185
|
*/
|
|
186
186
|
id: Scalars["ID"];
|
|
187
187
|
image: Scalars["String"];
|
|
188
|
+
licenseUrl: Scalars["String"];
|
|
188
189
|
name: Scalars["String"];
|
|
189
190
|
numberOfCommits: Scalars["BigInt"];
|
|
190
191
|
numberOfRedemptions: Scalars["BigInt"];
|
|
@@ -318,6 +319,26 @@ export type BaseMetadataEntity_Filter = {
|
|
|
318
319
|
image_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
319
320
|
image_starts_with?: InputMaybe<Scalars["String"]>;
|
|
320
321
|
image_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
322
|
+
licenseUrl?: InputMaybe<Scalars["String"]>;
|
|
323
|
+
licenseUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
324
|
+
licenseUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
325
|
+
licenseUrl_ends_with?: InputMaybe<Scalars["String"]>;
|
|
326
|
+
licenseUrl_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
327
|
+
licenseUrl_gt?: InputMaybe<Scalars["String"]>;
|
|
328
|
+
licenseUrl_gte?: InputMaybe<Scalars["String"]>;
|
|
329
|
+
licenseUrl_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
330
|
+
licenseUrl_lt?: InputMaybe<Scalars["String"]>;
|
|
331
|
+
licenseUrl_lte?: InputMaybe<Scalars["String"]>;
|
|
332
|
+
licenseUrl_not?: InputMaybe<Scalars["String"]>;
|
|
333
|
+
licenseUrl_not_contains?: InputMaybe<Scalars["String"]>;
|
|
334
|
+
licenseUrl_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
335
|
+
licenseUrl_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
336
|
+
licenseUrl_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
337
|
+
licenseUrl_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
338
|
+
licenseUrl_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
339
|
+
licenseUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
340
|
+
licenseUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
341
|
+
licenseUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
321
342
|
name?: InputMaybe<Scalars["String"]>;
|
|
322
343
|
name_contains?: InputMaybe<Scalars["String"]>;
|
|
323
344
|
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -458,6 +479,7 @@ export enum BaseMetadataEntity_OrderBy {
|
|
|
458
479
|
ExternalUrl = "externalUrl",
|
|
459
480
|
Id = "id",
|
|
460
481
|
Image = "image",
|
|
482
|
+
LicenseUrl = "licenseUrl",
|
|
461
483
|
Name = "name",
|
|
462
484
|
NumberOfCommits = "numberOfCommits",
|
|
463
485
|
NumberOfRedemptions = "numberOfRedemptions",
|
|
@@ -2168,6 +2190,7 @@ export type MetadataInterface = {
|
|
|
2168
2190
|
*/
|
|
2169
2191
|
id: Scalars["ID"];
|
|
2170
2192
|
image: Scalars["String"];
|
|
2193
|
+
licenseUrl: Scalars["String"];
|
|
2171
2194
|
name: Scalars["String"];
|
|
2172
2195
|
numberOfCommits: Scalars["BigInt"];
|
|
2173
2196
|
numberOfRedemptions: Scalars["BigInt"];
|
|
@@ -2300,6 +2323,26 @@ export type MetadataInterface_Filter = {
|
|
|
2300
2323
|
image_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2301
2324
|
image_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2302
2325
|
image_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2326
|
+
licenseUrl?: InputMaybe<Scalars["String"]>;
|
|
2327
|
+
licenseUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
2328
|
+
licenseUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2329
|
+
licenseUrl_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2330
|
+
licenseUrl_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2331
|
+
licenseUrl_gt?: InputMaybe<Scalars["String"]>;
|
|
2332
|
+
licenseUrl_gte?: InputMaybe<Scalars["String"]>;
|
|
2333
|
+
licenseUrl_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2334
|
+
licenseUrl_lt?: InputMaybe<Scalars["String"]>;
|
|
2335
|
+
licenseUrl_lte?: InputMaybe<Scalars["String"]>;
|
|
2336
|
+
licenseUrl_not?: InputMaybe<Scalars["String"]>;
|
|
2337
|
+
licenseUrl_not_contains?: InputMaybe<Scalars["String"]>;
|
|
2338
|
+
licenseUrl_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2339
|
+
licenseUrl_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2340
|
+
licenseUrl_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2341
|
+
licenseUrl_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2342
|
+
licenseUrl_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2343
|
+
licenseUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2344
|
+
licenseUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2345
|
+
licenseUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2303
2346
|
name?: InputMaybe<Scalars["String"]>;
|
|
2304
2347
|
name_contains?: InputMaybe<Scalars["String"]>;
|
|
2305
2348
|
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2440,6 +2483,7 @@ export enum MetadataInterface_OrderBy {
|
|
|
2440
2483
|
ExternalUrl = "externalUrl",
|
|
2441
2484
|
Id = "id",
|
|
2442
2485
|
Image = "image",
|
|
2486
|
+
LicenseUrl = "licenseUrl",
|
|
2443
2487
|
Name = "name",
|
|
2444
2488
|
NumberOfCommits = "numberOfCommits",
|
|
2445
2489
|
NumberOfRedemptions = "numberOfRedemptions",
|
|
@@ -3339,6 +3383,7 @@ export type ProductV1MetadataEntity = MetadataInterface & {
|
|
|
3339
3383
|
*/
|
|
3340
3384
|
id: Scalars["ID"];
|
|
3341
3385
|
image: Scalars["String"];
|
|
3386
|
+
licenseUrl: Scalars["String"];
|
|
3342
3387
|
name: Scalars["String"];
|
|
3343
3388
|
numberOfCommits: Scalars["BigInt"];
|
|
3344
3389
|
numberOfRedemptions: Scalars["BigInt"];
|
|
@@ -3511,6 +3556,26 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3511
3556
|
image_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3512
3557
|
image_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3513
3558
|
image_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3559
|
+
licenseUrl?: InputMaybe<Scalars["String"]>;
|
|
3560
|
+
licenseUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
3561
|
+
licenseUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3562
|
+
licenseUrl_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3563
|
+
licenseUrl_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3564
|
+
licenseUrl_gt?: InputMaybe<Scalars["String"]>;
|
|
3565
|
+
licenseUrl_gte?: InputMaybe<Scalars["String"]>;
|
|
3566
|
+
licenseUrl_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3567
|
+
licenseUrl_lt?: InputMaybe<Scalars["String"]>;
|
|
3568
|
+
licenseUrl_lte?: InputMaybe<Scalars["String"]>;
|
|
3569
|
+
licenseUrl_not?: InputMaybe<Scalars["String"]>;
|
|
3570
|
+
licenseUrl_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3571
|
+
licenseUrl_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3572
|
+
licenseUrl_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3573
|
+
licenseUrl_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3574
|
+
licenseUrl_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3575
|
+
licenseUrl_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3576
|
+
licenseUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3577
|
+
licenseUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3578
|
+
licenseUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3514
3579
|
name?: InputMaybe<Scalars["String"]>;
|
|
3515
3580
|
name_contains?: InputMaybe<Scalars["String"]>;
|
|
3516
3581
|
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3763,6 +3828,7 @@ export enum ProductV1MetadataEntity_OrderBy {
|
|
|
3763
3828
|
ExternalUrl = "externalUrl",
|
|
3764
3829
|
Id = "id",
|
|
3765
3830
|
Image = "image",
|
|
3831
|
+
LicenseUrl = "licenseUrl",
|
|
3766
3832
|
Name = "name",
|
|
3767
3833
|
NumberOfCommits = "numberOfCommits",
|
|
3768
3834
|
NumberOfRedemptions = "numberOfRedemptions",
|
|
@@ -7488,6 +7554,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
7488
7554
|
name: string;
|
|
7489
7555
|
description: string;
|
|
7490
7556
|
externalUrl: string;
|
|
7557
|
+
licenseUrl: string;
|
|
7491
7558
|
schemaUrl: string;
|
|
7492
7559
|
type: MetadataType;
|
|
7493
7560
|
}
|
|
@@ -7503,6 +7570,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
7503
7570
|
name: string;
|
|
7504
7571
|
description: string;
|
|
7505
7572
|
externalUrl: string;
|
|
7573
|
+
licenseUrl: string;
|
|
7506
7574
|
schemaUrl: string;
|
|
7507
7575
|
type: MetadataType;
|
|
7508
7576
|
attributes?: Array<{
|
|
@@ -7929,6 +7997,7 @@ export type GetSellersQueryQuery = {
|
|
|
7929
7997
|
name: string;
|
|
7930
7998
|
description: string;
|
|
7931
7999
|
externalUrl: string;
|
|
8000
|
+
licenseUrl: string;
|
|
7932
8001
|
schemaUrl: string;
|
|
7933
8002
|
type: MetadataType;
|
|
7934
8003
|
}
|
|
@@ -7944,6 +8013,7 @@ export type GetSellersQueryQuery = {
|
|
|
7944
8013
|
name: string;
|
|
7945
8014
|
description: string;
|
|
7946
8015
|
externalUrl: string;
|
|
8016
|
+
licenseUrl: string;
|
|
7947
8017
|
schemaUrl: string;
|
|
7948
8018
|
type: MetadataType;
|
|
7949
8019
|
attributes?: Array<{
|
|
@@ -8672,6 +8742,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
8672
8742
|
name: string;
|
|
8673
8743
|
description: string;
|
|
8674
8744
|
externalUrl: string;
|
|
8745
|
+
licenseUrl: string;
|
|
8675
8746
|
schemaUrl: string;
|
|
8676
8747
|
type: MetadataType;
|
|
8677
8748
|
}
|
|
@@ -8687,6 +8758,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
8687
8758
|
name: string;
|
|
8688
8759
|
description: string;
|
|
8689
8760
|
externalUrl: string;
|
|
8761
|
+
licenseUrl: string;
|
|
8690
8762
|
schemaUrl: string;
|
|
8691
8763
|
type: MetadataType;
|
|
8692
8764
|
attributes?: Array<{
|
|
@@ -9050,6 +9122,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
9050
9122
|
name: string;
|
|
9051
9123
|
description: string;
|
|
9052
9124
|
externalUrl: string;
|
|
9125
|
+
licenseUrl: string;
|
|
9053
9126
|
schemaUrl: string;
|
|
9054
9127
|
type: MetadataType;
|
|
9055
9128
|
}
|
|
@@ -9065,6 +9138,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
9065
9138
|
name: string;
|
|
9066
9139
|
description: string;
|
|
9067
9140
|
externalUrl: string;
|
|
9141
|
+
licenseUrl: string;
|
|
9068
9142
|
schemaUrl: string;
|
|
9069
9143
|
type: MetadataType;
|
|
9070
9144
|
attributes?: Array<{
|
|
@@ -9422,6 +9496,7 @@ export type SellerFieldsFragment = {
|
|
|
9422
9496
|
name: string;
|
|
9423
9497
|
description: string;
|
|
9424
9498
|
externalUrl: string;
|
|
9499
|
+
licenseUrl: string;
|
|
9425
9500
|
schemaUrl: string;
|
|
9426
9501
|
type: MetadataType;
|
|
9427
9502
|
}
|
|
@@ -9437,6 +9512,7 @@ export type SellerFieldsFragment = {
|
|
|
9437
9512
|
name: string;
|
|
9438
9513
|
description: string;
|
|
9439
9514
|
externalUrl: string;
|
|
9515
|
+
licenseUrl: string;
|
|
9440
9516
|
schemaUrl: string;
|
|
9441
9517
|
type: MetadataType;
|
|
9442
9518
|
attributes?: Array<{
|
|
@@ -9967,6 +10043,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
9967
10043
|
name: string;
|
|
9968
10044
|
description: string;
|
|
9969
10045
|
externalUrl: string;
|
|
10046
|
+
licenseUrl: string;
|
|
9970
10047
|
schemaUrl: string;
|
|
9971
10048
|
type: MetadataType;
|
|
9972
10049
|
}
|
|
@@ -9982,6 +10059,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
9982
10059
|
name: string;
|
|
9983
10060
|
description: string;
|
|
9984
10061
|
externalUrl: string;
|
|
10062
|
+
licenseUrl: string;
|
|
9985
10063
|
schemaUrl: string;
|
|
9986
10064
|
type: MetadataType;
|
|
9987
10065
|
attributes?: Array<{
|
|
@@ -10683,6 +10761,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
10683
10761
|
name: string;
|
|
10684
10762
|
description: string;
|
|
10685
10763
|
externalUrl: string;
|
|
10764
|
+
licenseUrl: string;
|
|
10686
10765
|
schemaUrl: string;
|
|
10687
10766
|
type: MetadataType;
|
|
10688
10767
|
}
|
|
@@ -10698,6 +10777,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
10698
10777
|
name: string;
|
|
10699
10778
|
description: string;
|
|
10700
10779
|
externalUrl: string;
|
|
10780
|
+
licenseUrl: string;
|
|
10701
10781
|
schemaUrl: string;
|
|
10702
10782
|
type: MetadataType;
|
|
10703
10783
|
attributes?: Array<{
|
|
@@ -10982,6 +11062,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
10982
11062
|
name: string;
|
|
10983
11063
|
description: string;
|
|
10984
11064
|
externalUrl: string;
|
|
11065
|
+
licenseUrl: string;
|
|
10985
11066
|
schemaUrl: string;
|
|
10986
11067
|
type: MetadataType;
|
|
10987
11068
|
}
|
|
@@ -10997,6 +11078,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
10997
11078
|
name: string;
|
|
10998
11079
|
description: string;
|
|
10999
11080
|
externalUrl: string;
|
|
11081
|
+
licenseUrl: string;
|
|
11000
11082
|
schemaUrl: string;
|
|
11001
11083
|
type: MetadataType;
|
|
11002
11084
|
attributes?: Array<{
|
|
@@ -11259,6 +11341,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
11259
11341
|
name: string;
|
|
11260
11342
|
description: string;
|
|
11261
11343
|
externalUrl: string;
|
|
11344
|
+
licenseUrl: string;
|
|
11262
11345
|
schemaUrl: string;
|
|
11263
11346
|
type: MetadataType;
|
|
11264
11347
|
}
|
|
@@ -11274,6 +11357,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
11274
11357
|
name: string;
|
|
11275
11358
|
description: string;
|
|
11276
11359
|
externalUrl: string;
|
|
11360
|
+
licenseUrl: string;
|
|
11277
11361
|
schemaUrl: string;
|
|
11278
11362
|
type: MetadataType;
|
|
11279
11363
|
attributes?: Array<{
|
|
@@ -11707,6 +11791,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
11707
11791
|
name: string;
|
|
11708
11792
|
description: string;
|
|
11709
11793
|
externalUrl: string;
|
|
11794
|
+
licenseUrl: string;
|
|
11710
11795
|
schemaUrl: string;
|
|
11711
11796
|
type: MetadataType;
|
|
11712
11797
|
}
|
|
@@ -11722,6 +11807,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
11722
11807
|
name: string;
|
|
11723
11808
|
description: string;
|
|
11724
11809
|
externalUrl: string;
|
|
11810
|
+
licenseUrl: string;
|
|
11725
11811
|
schemaUrl: string;
|
|
11726
11812
|
type: MetadataType;
|
|
11727
11813
|
attributes?: Array<{
|
|
@@ -12030,6 +12116,7 @@ export type GetExchangesQueryQuery = {
|
|
|
12030
12116
|
name: string;
|
|
12031
12117
|
description: string;
|
|
12032
12118
|
externalUrl: string;
|
|
12119
|
+
licenseUrl: string;
|
|
12033
12120
|
schemaUrl: string;
|
|
12034
12121
|
type: MetadataType;
|
|
12035
12122
|
}
|
|
@@ -12045,6 +12132,7 @@ export type GetExchangesQueryQuery = {
|
|
|
12045
12132
|
name: string;
|
|
12046
12133
|
description: string;
|
|
12047
12134
|
externalUrl: string;
|
|
12135
|
+
licenseUrl: string;
|
|
12048
12136
|
schemaUrl: string;
|
|
12049
12137
|
type: MetadataType;
|
|
12050
12138
|
attributes?: Array<{
|
|
@@ -12343,6 +12431,7 @@ export type ExchangeFieldsFragment = {
|
|
|
12343
12431
|
name: string;
|
|
12344
12432
|
description: string;
|
|
12345
12433
|
externalUrl: string;
|
|
12434
|
+
licenseUrl: string;
|
|
12346
12435
|
schemaUrl: string;
|
|
12347
12436
|
type: MetadataType;
|
|
12348
12437
|
}
|
|
@@ -12358,6 +12447,7 @@ export type ExchangeFieldsFragment = {
|
|
|
12358
12447
|
name: string;
|
|
12359
12448
|
description: string;
|
|
12360
12449
|
externalUrl: string;
|
|
12450
|
+
licenseUrl: string;
|
|
12361
12451
|
schemaUrl: string;
|
|
12362
12452
|
type: MetadataType;
|
|
12363
12453
|
attributes?: Array<{
|
|
@@ -12676,6 +12766,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12676
12766
|
name: string;
|
|
12677
12767
|
description: string;
|
|
12678
12768
|
externalUrl: string;
|
|
12769
|
+
licenseUrl: string;
|
|
12679
12770
|
schemaUrl: string;
|
|
12680
12771
|
type: MetadataType;
|
|
12681
12772
|
image: string;
|
|
@@ -12781,6 +12872,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12781
12872
|
name: string;
|
|
12782
12873
|
description: string;
|
|
12783
12874
|
externalUrl: string;
|
|
12875
|
+
licenseUrl: string;
|
|
12784
12876
|
schemaUrl: string;
|
|
12785
12877
|
type: MetadataType;
|
|
12786
12878
|
}
|
|
@@ -12796,6 +12888,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12796
12888
|
name: string;
|
|
12797
12889
|
description: string;
|
|
12798
12890
|
externalUrl: string;
|
|
12891
|
+
licenseUrl: string;
|
|
12799
12892
|
schemaUrl: string;
|
|
12800
12893
|
type: MetadataType;
|
|
12801
12894
|
attributes?: Array<{
|
|
@@ -12994,6 +13087,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12994
13087
|
name: string;
|
|
12995
13088
|
description: string;
|
|
12996
13089
|
externalUrl: string;
|
|
13090
|
+
licenseUrl: string;
|
|
12997
13091
|
schemaUrl: string;
|
|
12998
13092
|
type: MetadataType;
|
|
12999
13093
|
image: string;
|
|
@@ -13099,6 +13193,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
13099
13193
|
name: string;
|
|
13100
13194
|
description: string;
|
|
13101
13195
|
externalUrl: string;
|
|
13196
|
+
licenseUrl: string;
|
|
13102
13197
|
schemaUrl: string;
|
|
13103
13198
|
type: MetadataType;
|
|
13104
13199
|
}
|
|
@@ -13114,6 +13209,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
13114
13209
|
name: string;
|
|
13115
13210
|
description: string;
|
|
13116
13211
|
externalUrl: string;
|
|
13212
|
+
licenseUrl: string;
|
|
13117
13213
|
schemaUrl: string;
|
|
13118
13214
|
type: MetadataType;
|
|
13119
13215
|
attributes?: Array<{
|
|
@@ -13302,6 +13398,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
13302
13398
|
name: string;
|
|
13303
13399
|
description: string;
|
|
13304
13400
|
externalUrl: string;
|
|
13401
|
+
licenseUrl: string;
|
|
13305
13402
|
schemaUrl: string;
|
|
13306
13403
|
type: MetadataType;
|
|
13307
13404
|
image: string;
|
|
@@ -13407,6 +13504,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
13407
13504
|
name: string;
|
|
13408
13505
|
description: string;
|
|
13409
13506
|
externalUrl: string;
|
|
13507
|
+
licenseUrl: string;
|
|
13410
13508
|
schemaUrl: string;
|
|
13411
13509
|
type: MetadataType;
|
|
13412
13510
|
}
|
|
@@ -13422,6 +13520,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
13422
13520
|
name: string;
|
|
13423
13521
|
description: string;
|
|
13424
13522
|
externalUrl: string;
|
|
13523
|
+
licenseUrl: string;
|
|
13425
13524
|
schemaUrl: string;
|
|
13426
13525
|
type: MetadataType;
|
|
13427
13526
|
attributes?: Array<{
|
|
@@ -13605,6 +13704,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13605
13704
|
name: string;
|
|
13606
13705
|
description: string;
|
|
13607
13706
|
externalUrl: string;
|
|
13707
|
+
licenseUrl: string;
|
|
13608
13708
|
schemaUrl: string;
|
|
13609
13709
|
type: MetadataType;
|
|
13610
13710
|
image: string;
|
|
@@ -13710,6 +13810,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13710
13810
|
name: string;
|
|
13711
13811
|
description: string;
|
|
13712
13812
|
externalUrl: string;
|
|
13813
|
+
licenseUrl: string;
|
|
13713
13814
|
schemaUrl: string;
|
|
13714
13815
|
type: MetadataType;
|
|
13715
13816
|
}
|
|
@@ -13725,6 +13826,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13725
13826
|
name: string;
|
|
13726
13827
|
description: string;
|
|
13727
13828
|
externalUrl: string;
|
|
13829
|
+
licenseUrl: string;
|
|
13728
13830
|
schemaUrl: string;
|
|
13729
13831
|
type: MetadataType;
|
|
13730
13832
|
attributes?: Array<{
|
|
@@ -13953,6 +14055,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13953
14055
|
name: string;
|
|
13954
14056
|
description: string;
|
|
13955
14057
|
externalUrl: string;
|
|
14058
|
+
licenseUrl: string;
|
|
13956
14059
|
schemaUrl: string;
|
|
13957
14060
|
type: MetadataType;
|
|
13958
14061
|
image: string;
|
|
@@ -14059,6 +14162,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
14059
14162
|
name: string;
|
|
14060
14163
|
description: string;
|
|
14061
14164
|
externalUrl: string;
|
|
14165
|
+
licenseUrl: string;
|
|
14062
14166
|
schemaUrl: string;
|
|
14063
14167
|
type: MetadataType;
|
|
14064
14168
|
}
|
|
@@ -14074,6 +14178,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
14074
14178
|
name: string;
|
|
14075
14179
|
description: string;
|
|
14076
14180
|
externalUrl: string;
|
|
14181
|
+
licenseUrl: string;
|
|
14077
14182
|
schemaUrl: string;
|
|
14078
14183
|
type: MetadataType;
|
|
14079
14184
|
attributes?: Array<{
|
|
@@ -14400,6 +14505,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14400
14505
|
name: string;
|
|
14401
14506
|
description: string;
|
|
14402
14507
|
externalUrl: string;
|
|
14508
|
+
licenseUrl: string;
|
|
14403
14509
|
schemaUrl: string;
|
|
14404
14510
|
type: MetadataType;
|
|
14405
14511
|
image: string;
|
|
@@ -14506,6 +14612,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14506
14612
|
name: string;
|
|
14507
14613
|
description: string;
|
|
14508
14614
|
externalUrl: string;
|
|
14615
|
+
licenseUrl: string;
|
|
14509
14616
|
schemaUrl: string;
|
|
14510
14617
|
type: MetadataType;
|
|
14511
14618
|
}
|
|
@@ -14521,6 +14628,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14521
14628
|
name: string;
|
|
14522
14629
|
description: string;
|
|
14523
14630
|
externalUrl: string;
|
|
14631
|
+
licenseUrl: string;
|
|
14524
14632
|
schemaUrl: string;
|
|
14525
14633
|
type: MetadataType;
|
|
14526
14634
|
attributes?: Array<{
|
|
@@ -14837,6 +14945,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14837
14945
|
name: string;
|
|
14838
14946
|
description: string;
|
|
14839
14947
|
externalUrl: string;
|
|
14948
|
+
licenseUrl: string;
|
|
14840
14949
|
schemaUrl: string;
|
|
14841
14950
|
type: MetadataType;
|
|
14842
14951
|
image: string;
|
|
@@ -14943,6 +15052,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14943
15052
|
name: string;
|
|
14944
15053
|
description: string;
|
|
14945
15054
|
externalUrl: string;
|
|
15055
|
+
licenseUrl: string;
|
|
14946
15056
|
schemaUrl: string;
|
|
14947
15057
|
type: MetadataType;
|
|
14948
15058
|
}
|
|
@@ -14958,6 +15068,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14958
15068
|
name: string;
|
|
14959
15069
|
description: string;
|
|
14960
15070
|
externalUrl: string;
|
|
15071
|
+
licenseUrl: string;
|
|
14961
15072
|
schemaUrl: string;
|
|
14962
15073
|
type: MetadataType;
|
|
14963
15074
|
attributes?: Array<{
|
|
@@ -15269,6 +15380,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15269
15380
|
name: string;
|
|
15270
15381
|
description: string;
|
|
15271
15382
|
externalUrl: string;
|
|
15383
|
+
licenseUrl: string;
|
|
15272
15384
|
schemaUrl: string;
|
|
15273
15385
|
type: MetadataType;
|
|
15274
15386
|
image: string;
|
|
@@ -15375,6 +15487,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15375
15487
|
name: string;
|
|
15376
15488
|
description: string;
|
|
15377
15489
|
externalUrl: string;
|
|
15490
|
+
licenseUrl: string;
|
|
15378
15491
|
schemaUrl: string;
|
|
15379
15492
|
type: MetadataType;
|
|
15380
15493
|
}
|
|
@@ -15390,6 +15503,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15390
15503
|
name: string;
|
|
15391
15504
|
description: string;
|
|
15392
15505
|
externalUrl: string;
|
|
15506
|
+
licenseUrl: string;
|
|
15393
15507
|
schemaUrl: string;
|
|
15394
15508
|
type: MetadataType;
|
|
15395
15509
|
attributes?: Array<{
|
|
@@ -16083,6 +16197,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
16083
16197
|
name: string;
|
|
16084
16198
|
description: string;
|
|
16085
16199
|
externalUrl: string;
|
|
16200
|
+
licenseUrl: string;
|
|
16086
16201
|
schemaUrl: string;
|
|
16087
16202
|
type: MetadataType;
|
|
16088
16203
|
}
|
|
@@ -16098,6 +16213,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
16098
16213
|
name: string;
|
|
16099
16214
|
description: string;
|
|
16100
16215
|
externalUrl: string;
|
|
16216
|
+
licenseUrl: string;
|
|
16101
16217
|
schemaUrl: string;
|
|
16102
16218
|
type: MetadataType;
|
|
16103
16219
|
attributes?: Array<{
|
|
@@ -16408,6 +16524,7 @@ export type GetOffersQueryQuery = {
|
|
|
16408
16524
|
name: string;
|
|
16409
16525
|
description: string;
|
|
16410
16526
|
externalUrl: string;
|
|
16527
|
+
licenseUrl: string;
|
|
16411
16528
|
schemaUrl: string;
|
|
16412
16529
|
type: MetadataType;
|
|
16413
16530
|
}
|
|
@@ -16423,6 +16540,7 @@ export type GetOffersQueryQuery = {
|
|
|
16423
16540
|
name: string;
|
|
16424
16541
|
description: string;
|
|
16425
16542
|
externalUrl: string;
|
|
16543
|
+
licenseUrl: string;
|
|
16426
16544
|
schemaUrl: string;
|
|
16427
16545
|
type: MetadataType;
|
|
16428
16546
|
attributes?: Array<{
|
|
@@ -16717,6 +16835,7 @@ export type OfferFieldsFragment = {
|
|
|
16717
16835
|
name: string;
|
|
16718
16836
|
description: string;
|
|
16719
16837
|
externalUrl: string;
|
|
16838
|
+
licenseUrl: string;
|
|
16720
16839
|
schemaUrl: string;
|
|
16721
16840
|
type: MetadataType;
|
|
16722
16841
|
}
|
|
@@ -16732,6 +16851,7 @@ export type OfferFieldsFragment = {
|
|
|
16732
16851
|
name: string;
|
|
16733
16852
|
description: string;
|
|
16734
16853
|
externalUrl: string;
|
|
16854
|
+
licenseUrl: string;
|
|
16735
16855
|
schemaUrl: string;
|
|
16736
16856
|
type: MetadataType;
|
|
16737
16857
|
attributes?: Array<{
|
|
@@ -16975,6 +17095,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
16975
17095
|
name: string;
|
|
16976
17096
|
description: string;
|
|
16977
17097
|
externalUrl: string;
|
|
17098
|
+
licenseUrl: string;
|
|
16978
17099
|
schemaUrl: string;
|
|
16979
17100
|
type: MetadataType;
|
|
16980
17101
|
}
|
|
@@ -16990,6 +17111,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
16990
17111
|
name: string;
|
|
16991
17112
|
description: string;
|
|
16992
17113
|
externalUrl: string;
|
|
17114
|
+
licenseUrl: string;
|
|
16993
17115
|
schemaUrl: string;
|
|
16994
17116
|
type: MetadataType;
|
|
16995
17117
|
attributes?: Array<{
|
|
@@ -17435,6 +17557,7 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
17435
17557
|
name
|
|
17436
17558
|
description
|
|
17437
17559
|
externalUrl
|
|
17560
|
+
licenseUrl
|
|
17438
17561
|
schemaUrl
|
|
17439
17562
|
type
|
|
17440
17563
|
... on ProductV1MetadataEntity {
|
|
@@ -17729,6 +17852,7 @@ export const BaseBaseMetadataEntityFieldsFragmentDoc = gql`
|
|
|
17729
17852
|
name
|
|
17730
17853
|
description
|
|
17731
17854
|
externalUrl
|
|
17855
|
+
licenseUrl
|
|
17732
17856
|
schemaUrl
|
|
17733
17857
|
type
|
|
17734
17858
|
image
|
|
@@ -17770,6 +17894,7 @@ export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
|
17770
17894
|
name
|
|
17771
17895
|
description
|
|
17772
17896
|
externalUrl
|
|
17897
|
+
licenseUrl
|
|
17773
17898
|
schemaUrl
|
|
17774
17899
|
type
|
|
17775
17900
|
image
|