@bosonprotocol/core-sdk 1.45.0-alpha.6 → 1.46.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 +39 -0
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +1 -0
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +39 -0
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +1 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/offers/queries.graphql +1 -0
- package/src/subgraph.ts +40 -0
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -14680,6 +14680,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
14680
14680
|
start: string;
|
|
14681
14681
|
end: string;
|
|
14682
14682
|
owner: string;
|
|
14683
|
+
minted: string;
|
|
14683
14684
|
} | null;
|
|
14684
14685
|
}>;
|
|
14685
14686
|
exchanges?: Array<{
|
|
@@ -16272,6 +16273,7 @@ export type GetSellersQueryQuery = {
|
|
|
16272
16273
|
start: string;
|
|
16273
16274
|
end: string;
|
|
16274
16275
|
owner: string;
|
|
16276
|
+
minted: string;
|
|
16275
16277
|
} | null;
|
|
16276
16278
|
}>;
|
|
16277
16279
|
exchanges?: Array<{
|
|
@@ -18376,6 +18378,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
18376
18378
|
start: string;
|
|
18377
18379
|
end: string;
|
|
18378
18380
|
owner: string;
|
|
18381
|
+
minted: string;
|
|
18379
18382
|
} | null;
|
|
18380
18383
|
}>;
|
|
18381
18384
|
logs?: Array<{
|
|
@@ -19727,6 +19730,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
19727
19730
|
start: string;
|
|
19728
19731
|
end: string;
|
|
19729
19732
|
owner: string;
|
|
19733
|
+
minted: string;
|
|
19730
19734
|
} | null;
|
|
19731
19735
|
}>;
|
|
19732
19736
|
logs?: Array<{
|
|
@@ -21174,6 +21178,7 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
21174
21178
|
start: string;
|
|
21175
21179
|
end: string;
|
|
21176
21180
|
owner: string;
|
|
21181
|
+
minted: string;
|
|
21177
21182
|
} | null;
|
|
21178
21183
|
}>;
|
|
21179
21184
|
collectionContract: {
|
|
@@ -22490,6 +22495,7 @@ export type OfferCollectionFieldsFragment = {
|
|
|
22490
22495
|
start: string;
|
|
22491
22496
|
end: string;
|
|
22492
22497
|
owner: string;
|
|
22498
|
+
minted: string;
|
|
22493
22499
|
} | null;
|
|
22494
22500
|
}>;
|
|
22495
22501
|
collectionContract: {
|
|
@@ -23776,6 +23782,7 @@ export type SellerFieldsFragment = {
|
|
|
23776
23782
|
start: string;
|
|
23777
23783
|
end: string;
|
|
23778
23784
|
owner: string;
|
|
23785
|
+
minted: string;
|
|
23779
23786
|
} | null;
|
|
23780
23787
|
}>;
|
|
23781
23788
|
exchanges?: Array<{
|
|
@@ -25702,6 +25709,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
25702
25709
|
start: string;
|
|
25703
25710
|
end: string;
|
|
25704
25711
|
owner: string;
|
|
25712
|
+
minted: string;
|
|
25705
25713
|
} | null;
|
|
25706
25714
|
}>;
|
|
25707
25715
|
logs?: Array<{
|
|
@@ -27865,6 +27873,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
27865
27873
|
start: string;
|
|
27866
27874
|
end: string;
|
|
27867
27875
|
owner: string;
|
|
27876
|
+
minted: string;
|
|
27868
27877
|
} | null;
|
|
27869
27878
|
}>;
|
|
27870
27879
|
funds?: Array<{
|
|
@@ -29091,6 +29100,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
29091
29100
|
start: string;
|
|
29092
29101
|
end: string;
|
|
29093
29102
|
owner: string;
|
|
29103
|
+
minted: string;
|
|
29094
29104
|
} | null;
|
|
29095
29105
|
}>;
|
|
29096
29106
|
funds?: Array<{
|
|
@@ -30296,6 +30306,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
30296
30306
|
start: string;
|
|
30297
30307
|
end: string;
|
|
30298
30308
|
owner: string;
|
|
30309
|
+
minted: string;
|
|
30299
30310
|
} | null;
|
|
30300
30311
|
}>;
|
|
30301
30312
|
funds?: Array<{
|
|
@@ -31748,6 +31759,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
31748
31759
|
start: string;
|
|
31749
31760
|
end: string;
|
|
31750
31761
|
owner: string;
|
|
31762
|
+
minted: string;
|
|
31751
31763
|
} | null;
|
|
31752
31764
|
};
|
|
31753
31765
|
dispute?: {
|
|
@@ -33077,6 +33089,7 @@ export type GetExchangesQueryQuery = {
|
|
|
33077
33089
|
start: string;
|
|
33078
33090
|
end: string;
|
|
33079
33091
|
owner: string;
|
|
33092
|
+
minted: string;
|
|
33080
33093
|
} | null;
|
|
33081
33094
|
};
|
|
33082
33095
|
dispute?: {
|
|
@@ -34397,6 +34410,7 @@ export type ExchangeFieldsFragment = {
|
|
|
34397
34410
|
start: string;
|
|
34398
34411
|
end: string;
|
|
34399
34412
|
owner: string;
|
|
34413
|
+
minted: string;
|
|
34400
34414
|
} | null;
|
|
34401
34415
|
};
|
|
34402
34416
|
dispute?: {
|
|
@@ -36005,6 +36019,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
36005
36019
|
start: string;
|
|
36006
36020
|
end: string;
|
|
36007
36021
|
owner: string;
|
|
36022
|
+
minted: string;
|
|
36008
36023
|
} | null;
|
|
36009
36024
|
};
|
|
36010
36025
|
seller?: {
|
|
@@ -37334,6 +37349,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
37334
37349
|
start: string;
|
|
37335
37350
|
end: string;
|
|
37336
37351
|
owner: string;
|
|
37352
|
+
minted: string;
|
|
37337
37353
|
} | null;
|
|
37338
37354
|
};
|
|
37339
37355
|
seller?: {
|
|
@@ -38654,6 +38670,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
38654
38670
|
start: string;
|
|
38655
38671
|
end: string;
|
|
38656
38672
|
owner: string;
|
|
38673
|
+
minted: string;
|
|
38657
38674
|
} | null;
|
|
38658
38675
|
};
|
|
38659
38676
|
seller?: {
|
|
@@ -39973,6 +39990,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
39973
39990
|
start: string;
|
|
39974
39991
|
end: string;
|
|
39975
39992
|
owner: string;
|
|
39993
|
+
minted: string;
|
|
39976
39994
|
} | null;
|
|
39977
39995
|
};
|
|
39978
39996
|
seller?: {
|
|
@@ -41433,6 +41451,7 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
41433
41451
|
start: string;
|
|
41434
41452
|
end: string;
|
|
41435
41453
|
owner: string;
|
|
41454
|
+
minted: string;
|
|
41436
41455
|
} | null;
|
|
41437
41456
|
};
|
|
41438
41457
|
seller?: {
|
|
@@ -43351,6 +43370,7 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
43351
43370
|
start: string;
|
|
43352
43371
|
end: string;
|
|
43353
43372
|
owner: string;
|
|
43373
|
+
minted: string;
|
|
43354
43374
|
} | null;
|
|
43355
43375
|
};
|
|
43356
43376
|
seller?: {
|
|
@@ -45260,6 +45280,7 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
45260
45280
|
start: string;
|
|
45261
45281
|
end: string;
|
|
45262
45282
|
owner: string;
|
|
45283
|
+
minted: string;
|
|
45263
45284
|
} | null;
|
|
45264
45285
|
};
|
|
45265
45286
|
seller?: {
|
|
@@ -47168,6 +47189,7 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
47168
47189
|
start: string;
|
|
47169
47190
|
end: string;
|
|
47170
47191
|
owner: string;
|
|
47192
|
+
minted: string;
|
|
47171
47193
|
} | null;
|
|
47172
47194
|
};
|
|
47173
47195
|
seller?: {
|
|
@@ -49333,6 +49355,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49333
49355
|
start: string;
|
|
49334
49356
|
end: string;
|
|
49335
49357
|
owner: string;
|
|
49358
|
+
minted: string;
|
|
49336
49359
|
} | null;
|
|
49337
49360
|
};
|
|
49338
49361
|
variations?: Array<{
|
|
@@ -50692,6 +50715,7 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
50692
50715
|
start: string;
|
|
50693
50716
|
end: string;
|
|
50694
50717
|
owner: string;
|
|
50718
|
+
minted: string;
|
|
50695
50719
|
} | null;
|
|
50696
50720
|
};
|
|
50697
50721
|
seller?: {
|
|
@@ -52804,6 +52828,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52804
52828
|
start: string;
|
|
52805
52829
|
end: string;
|
|
52806
52830
|
owner: string;
|
|
52831
|
+
minted: string;
|
|
52807
52832
|
} | null;
|
|
52808
52833
|
};
|
|
52809
52834
|
variations?: Array<{
|
|
@@ -54163,6 +54188,7 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
54163
54188
|
start: string;
|
|
54164
54189
|
end: string;
|
|
54165
54190
|
owner: string;
|
|
54191
|
+
minted: string;
|
|
54166
54192
|
} | null;
|
|
54167
54193
|
};
|
|
54168
54194
|
seller?: {
|
|
@@ -56287,6 +56313,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
56287
56313
|
start: string;
|
|
56288
56314
|
end: string;
|
|
56289
56315
|
owner: string;
|
|
56316
|
+
minted: string;
|
|
56290
56317
|
} | null;
|
|
56291
56318
|
};
|
|
56292
56319
|
seller?: {
|
|
@@ -58096,6 +58123,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
58096
58123
|
start: string;
|
|
58097
58124
|
end: string;
|
|
58098
58125
|
owner: string;
|
|
58126
|
+
minted: string;
|
|
58099
58127
|
} | null;
|
|
58100
58128
|
};
|
|
58101
58129
|
seller?: {
|
|
@@ -59896,6 +59924,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
59896
59924
|
start: string;
|
|
59897
59925
|
end: string;
|
|
59898
59926
|
owner: string;
|
|
59927
|
+
minted: string;
|
|
59899
59928
|
} | null;
|
|
59900
59929
|
};
|
|
59901
59930
|
seller?: {
|
|
@@ -61695,6 +61724,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
61695
61724
|
start: string;
|
|
61696
61725
|
end: string;
|
|
61697
61726
|
owner: string;
|
|
61727
|
+
minted: string;
|
|
61698
61728
|
} | null;
|
|
61699
61729
|
};
|
|
61700
61730
|
seller?: {
|
|
@@ -63725,6 +63755,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63725
63755
|
start: string;
|
|
63726
63756
|
end: string;
|
|
63727
63757
|
owner: string;
|
|
63758
|
+
minted: string;
|
|
63728
63759
|
} | null;
|
|
63729
63760
|
};
|
|
63730
63761
|
variations?: Array<{
|
|
@@ -65084,6 +65115,7 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
65084
65115
|
start: string;
|
|
65085
65116
|
end: string;
|
|
65086
65117
|
owner: string;
|
|
65118
|
+
minted: string;
|
|
65087
65119
|
} | null;
|
|
65088
65120
|
};
|
|
65089
65121
|
seller?: {
|
|
@@ -67186,6 +67218,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67186
67218
|
start: string;
|
|
67187
67219
|
end: string;
|
|
67188
67220
|
owner: string;
|
|
67221
|
+
minted: string;
|
|
67189
67222
|
} | null;
|
|
67190
67223
|
};
|
|
67191
67224
|
variations?: Array<{
|
|
@@ -68545,6 +68578,7 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
68545
68578
|
start: string;
|
|
68546
68579
|
end: string;
|
|
68547
68580
|
owner: string;
|
|
68581
|
+
minted: string;
|
|
68548
68582
|
} | null;
|
|
68549
68583
|
};
|
|
68550
68584
|
seller?: {
|
|
@@ -70856,6 +70890,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
70856
70890
|
start: string;
|
|
70857
70891
|
end: string;
|
|
70858
70892
|
owner: string;
|
|
70893
|
+
minted: string;
|
|
70859
70894
|
} | null;
|
|
70860
70895
|
} | null;
|
|
70861
70896
|
};
|
|
@@ -72191,6 +72226,7 @@ export type GetOffersQueryQuery = {
|
|
|
72191
72226
|
start: string;
|
|
72192
72227
|
end: string;
|
|
72193
72228
|
owner: string;
|
|
72229
|
+
minted: string;
|
|
72194
72230
|
} | null;
|
|
72195
72231
|
}>;
|
|
72196
72232
|
};
|
|
@@ -73613,6 +73649,7 @@ export type OfferFieldsFragment = {
|
|
|
73613
73649
|
start: string;
|
|
73614
73650
|
end: string;
|
|
73615
73651
|
owner: string;
|
|
73652
|
+
minted: string;
|
|
73616
73653
|
} | null;
|
|
73617
73654
|
};
|
|
73618
73655
|
export type BaseOfferFieldsFragment = {
|
|
@@ -74803,6 +74840,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
74803
74840
|
start: string;
|
|
74804
74841
|
end: string;
|
|
74805
74842
|
owner: string;
|
|
74843
|
+
minted: string;
|
|
74806
74844
|
} | null;
|
|
74807
74845
|
};
|
|
74808
74846
|
export type BaseRangeFieldsFragment = {
|
|
@@ -74811,6 +74849,7 @@ export type BaseRangeFieldsFragment = {
|
|
|
74811
74849
|
start: string;
|
|
74812
74850
|
end: string;
|
|
74813
74851
|
owner: string;
|
|
74852
|
+
minted: string;
|
|
74814
74853
|
};
|
|
74815
74854
|
export declare const BaseOfferCollectionFieldsFragmentDoc: string;
|
|
74816
74855
|
export declare const SellerMetadataMediaFieldsFragmentDoc: string;
|