@bosonprotocol/core-sdk 1.37.0 → 1.38.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 +409 -136
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +21 -9
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +409 -136
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +18 -6
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/metadata/bundle.graphql +5 -2
- package/src/offers/queries.graphql +5 -2
- package/src/subgraph.ts +427 -140
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -3582,10 +3582,9 @@ export type NftItemMetadataEntity = ItemMetadataInterface & {
|
|
|
3582
3582
|
name: Scalars["String"];
|
|
3583
3583
|
quantity?: Maybe<Scalars["Int"]>;
|
|
3584
3584
|
schemaUrl: Scalars["String"];
|
|
3585
|
+
terms?: Maybe<Array<Term>>;
|
|
3585
3586
|
tokenId?: Maybe<Scalars["String"]>;
|
|
3586
3587
|
tokenIdRange?: Maybe<TokenIdRange>;
|
|
3587
|
-
transferDelay?: Maybe<Scalars["String"]>;
|
|
3588
|
-
transferMethod?: Maybe<Scalars["String"]>;
|
|
3589
3588
|
type: ItemMetadataType;
|
|
3590
3589
|
youtubeUrl?: Maybe<Scalars["String"]>;
|
|
3591
3590
|
};
|
|
@@ -3596,6 +3595,13 @@ export type NftItemMetadataEntityAttributesArgs = {
|
|
|
3596
3595
|
skip?: InputMaybe<Scalars["Int"]>;
|
|
3597
3596
|
where?: InputMaybe<MetadataAttribute_Filter>;
|
|
3598
3597
|
};
|
|
3598
|
+
export type NftItemMetadataEntityTermsArgs = {
|
|
3599
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
3600
|
+
orderBy?: InputMaybe<Term_OrderBy>;
|
|
3601
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
3602
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
3603
|
+
where?: InputMaybe<Term_Filter>;
|
|
3604
|
+
};
|
|
3599
3605
|
export type NftItemMetadataEntity_Filter = {
|
|
3600
3606
|
/** Filter for the block changed event. */
|
|
3601
3607
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
@@ -3811,6 +3817,13 @@ export type NftItemMetadataEntity_Filter = {
|
|
|
3811
3817
|
schemaUrl_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3812
3818
|
schemaUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3813
3819
|
schemaUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3820
|
+
terms?: InputMaybe<Array<Scalars["String"]>>;
|
|
3821
|
+
terms_?: InputMaybe<Term_Filter>;
|
|
3822
|
+
terms_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
3823
|
+
terms_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
3824
|
+
terms_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
3825
|
+
terms_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
3826
|
+
terms_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
3814
3827
|
tokenId?: InputMaybe<Scalars["String"]>;
|
|
3815
3828
|
tokenIdRange?: InputMaybe<Scalars["String"]>;
|
|
3816
3829
|
tokenIdRange_?: InputMaybe<TokenIdRange_Filter>;
|
|
@@ -3852,46 +3865,6 @@ export type NftItemMetadataEntity_Filter = {
|
|
|
3852
3865
|
tokenId_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3853
3866
|
tokenId_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3854
3867
|
tokenId_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3855
|
-
transferDelay?: InputMaybe<Scalars["String"]>;
|
|
3856
|
-
transferDelay_contains?: InputMaybe<Scalars["String"]>;
|
|
3857
|
-
transferDelay_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3858
|
-
transferDelay_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3859
|
-
transferDelay_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3860
|
-
transferDelay_gt?: InputMaybe<Scalars["String"]>;
|
|
3861
|
-
transferDelay_gte?: InputMaybe<Scalars["String"]>;
|
|
3862
|
-
transferDelay_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3863
|
-
transferDelay_lt?: InputMaybe<Scalars["String"]>;
|
|
3864
|
-
transferDelay_lte?: InputMaybe<Scalars["String"]>;
|
|
3865
|
-
transferDelay_not?: InputMaybe<Scalars["String"]>;
|
|
3866
|
-
transferDelay_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3867
|
-
transferDelay_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3868
|
-
transferDelay_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3869
|
-
transferDelay_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3870
|
-
transferDelay_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3871
|
-
transferDelay_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3872
|
-
transferDelay_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3873
|
-
transferDelay_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3874
|
-
transferDelay_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3875
|
-
transferMethod?: InputMaybe<Scalars["String"]>;
|
|
3876
|
-
transferMethod_contains?: InputMaybe<Scalars["String"]>;
|
|
3877
|
-
transferMethod_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3878
|
-
transferMethod_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3879
|
-
transferMethod_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3880
|
-
transferMethod_gt?: InputMaybe<Scalars["String"]>;
|
|
3881
|
-
transferMethod_gte?: InputMaybe<Scalars["String"]>;
|
|
3882
|
-
transferMethod_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3883
|
-
transferMethod_lt?: InputMaybe<Scalars["String"]>;
|
|
3884
|
-
transferMethod_lte?: InputMaybe<Scalars["String"]>;
|
|
3885
|
-
transferMethod_not?: InputMaybe<Scalars["String"]>;
|
|
3886
|
-
transferMethod_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3887
|
-
transferMethod_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3888
|
-
transferMethod_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3889
|
-
transferMethod_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3890
|
-
transferMethod_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3891
|
-
transferMethod_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3892
|
-
transferMethod_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3893
|
-
transferMethod_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3894
|
-
transferMethod_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3895
3868
|
type?: InputMaybe<ItemMetadataType>;
|
|
3896
3869
|
type_in?: InputMaybe<Array<ItemMetadataType>>;
|
|
3897
3870
|
type_not?: InputMaybe<ItemMetadataType>;
|
|
@@ -3931,10 +3904,9 @@ export declare enum NftItemMetadataEntity_OrderBy {
|
|
|
3931
3904
|
Name = "name",
|
|
3932
3905
|
Quantity = "quantity",
|
|
3933
3906
|
SchemaUrl = "schemaUrl",
|
|
3907
|
+
Terms = "terms",
|
|
3934
3908
|
TokenId = "tokenId",
|
|
3935
3909
|
TokenIdRange = "tokenIdRange",
|
|
3936
|
-
TransferDelay = "transferDelay",
|
|
3937
|
-
TransferMethod = "transferMethod",
|
|
3938
3910
|
Type = "type",
|
|
3939
3911
|
YoutubeUrl = "youtubeUrl"
|
|
3940
3912
|
}
|
|
@@ -8175,6 +8147,8 @@ export type Query = {
|
|
|
8175
8147
|
sellerSocialLink?: Maybe<SellerSocialLink>;
|
|
8176
8148
|
sellerSocialLinks: Array<SellerSocialLink>;
|
|
8177
8149
|
sellers: Array<Seller>;
|
|
8150
|
+
term?: Maybe<Term>;
|
|
8151
|
+
terms: Array<Term>;
|
|
8178
8152
|
tokenIdRange?: Maybe<TokenIdRange>;
|
|
8179
8153
|
tokenIdRanges: Array<TokenIdRange>;
|
|
8180
8154
|
unknownItemMetadataEntities: Array<UnknownItemMetadataEntity>;
|
|
@@ -8919,6 +8893,20 @@ export type QuerySellersArgs = {
|
|
|
8919
8893
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
8920
8894
|
where?: InputMaybe<Seller_Filter>;
|
|
8921
8895
|
};
|
|
8896
|
+
export type QueryTermArgs = {
|
|
8897
|
+
block?: InputMaybe<Block_Height>;
|
|
8898
|
+
id: Scalars["ID"];
|
|
8899
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
8900
|
+
};
|
|
8901
|
+
export type QueryTermsArgs = {
|
|
8902
|
+
block?: InputMaybe<Block_Height>;
|
|
8903
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
8904
|
+
orderBy?: InputMaybe<Term_OrderBy>;
|
|
8905
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
8906
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
8907
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
8908
|
+
where?: InputMaybe<Term_Filter>;
|
|
8909
|
+
};
|
|
8922
8910
|
export type QueryTokenIdRangeArgs = {
|
|
8923
8911
|
block?: InputMaybe<Block_Height>;
|
|
8924
8912
|
id: Scalars["ID"];
|
|
@@ -10103,6 +10091,8 @@ export type Subscription = {
|
|
|
10103
10091
|
sellerSocialLink?: Maybe<SellerSocialLink>;
|
|
10104
10092
|
sellerSocialLinks: Array<SellerSocialLink>;
|
|
10105
10093
|
sellers: Array<Seller>;
|
|
10094
|
+
term?: Maybe<Term>;
|
|
10095
|
+
terms: Array<Term>;
|
|
10106
10096
|
tokenIdRange?: Maybe<TokenIdRange>;
|
|
10107
10097
|
tokenIdRanges: Array<TokenIdRange>;
|
|
10108
10098
|
unknownItemMetadataEntities: Array<UnknownItemMetadataEntity>;
|
|
@@ -10847,6 +10837,20 @@ export type SubscriptionSellersArgs = {
|
|
|
10847
10837
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
10848
10838
|
where?: InputMaybe<Seller_Filter>;
|
|
10849
10839
|
};
|
|
10840
|
+
export type SubscriptionTermArgs = {
|
|
10841
|
+
block?: InputMaybe<Block_Height>;
|
|
10842
|
+
id: Scalars["ID"];
|
|
10843
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
10844
|
+
};
|
|
10845
|
+
export type SubscriptionTermsArgs = {
|
|
10846
|
+
block?: InputMaybe<Block_Height>;
|
|
10847
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
10848
|
+
orderBy?: InputMaybe<Term_OrderBy>;
|
|
10849
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
10850
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
10851
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
10852
|
+
where?: InputMaybe<Term_Filter>;
|
|
10853
|
+
};
|
|
10850
10854
|
export type SubscriptionTokenIdRangeArgs = {
|
|
10851
10855
|
block?: InputMaybe<Block_Height>;
|
|
10852
10856
|
id: Scalars["ID"];
|
|
@@ -10875,6 +10879,91 @@ export type SubscriptionUnknownItemMetadataEntityArgs = {
|
|
|
10875
10879
|
id: Scalars["ID"];
|
|
10876
10880
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
10877
10881
|
};
|
|
10882
|
+
export type Term = {
|
|
10883
|
+
__typename?: "Term";
|
|
10884
|
+
displayKey: Scalars["String"];
|
|
10885
|
+
id: Scalars["ID"];
|
|
10886
|
+
key: Scalars["String"];
|
|
10887
|
+
value: Scalars["String"];
|
|
10888
|
+
};
|
|
10889
|
+
export type Term_Filter = {
|
|
10890
|
+
/** Filter for the block changed event. */
|
|
10891
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
10892
|
+
displayKey?: InputMaybe<Scalars["String"]>;
|
|
10893
|
+
displayKey_contains?: InputMaybe<Scalars["String"]>;
|
|
10894
|
+
displayKey_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
10895
|
+
displayKey_ends_with?: InputMaybe<Scalars["String"]>;
|
|
10896
|
+
displayKey_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10897
|
+
displayKey_gt?: InputMaybe<Scalars["String"]>;
|
|
10898
|
+
displayKey_gte?: InputMaybe<Scalars["String"]>;
|
|
10899
|
+
displayKey_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
10900
|
+
displayKey_lt?: InputMaybe<Scalars["String"]>;
|
|
10901
|
+
displayKey_lte?: InputMaybe<Scalars["String"]>;
|
|
10902
|
+
displayKey_not?: InputMaybe<Scalars["String"]>;
|
|
10903
|
+
displayKey_not_contains?: InputMaybe<Scalars["String"]>;
|
|
10904
|
+
displayKey_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
10905
|
+
displayKey_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
10906
|
+
displayKey_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10907
|
+
displayKey_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
10908
|
+
displayKey_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
10909
|
+
displayKey_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10910
|
+
displayKey_starts_with?: InputMaybe<Scalars["String"]>;
|
|
10911
|
+
displayKey_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10912
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
10913
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
10914
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
10915
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
10916
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
10917
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
10918
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
10919
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
10920
|
+
key?: InputMaybe<Scalars["String"]>;
|
|
10921
|
+
key_contains?: InputMaybe<Scalars["String"]>;
|
|
10922
|
+
key_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
10923
|
+
key_ends_with?: InputMaybe<Scalars["String"]>;
|
|
10924
|
+
key_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10925
|
+
key_gt?: InputMaybe<Scalars["String"]>;
|
|
10926
|
+
key_gte?: InputMaybe<Scalars["String"]>;
|
|
10927
|
+
key_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
10928
|
+
key_lt?: InputMaybe<Scalars["String"]>;
|
|
10929
|
+
key_lte?: InputMaybe<Scalars["String"]>;
|
|
10930
|
+
key_not?: InputMaybe<Scalars["String"]>;
|
|
10931
|
+
key_not_contains?: InputMaybe<Scalars["String"]>;
|
|
10932
|
+
key_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
10933
|
+
key_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
10934
|
+
key_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10935
|
+
key_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
10936
|
+
key_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
10937
|
+
key_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10938
|
+
key_starts_with?: InputMaybe<Scalars["String"]>;
|
|
10939
|
+
key_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10940
|
+
value?: InputMaybe<Scalars["String"]>;
|
|
10941
|
+
value_contains?: InputMaybe<Scalars["String"]>;
|
|
10942
|
+
value_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
10943
|
+
value_ends_with?: InputMaybe<Scalars["String"]>;
|
|
10944
|
+
value_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10945
|
+
value_gt?: InputMaybe<Scalars["String"]>;
|
|
10946
|
+
value_gte?: InputMaybe<Scalars["String"]>;
|
|
10947
|
+
value_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
10948
|
+
value_lt?: InputMaybe<Scalars["String"]>;
|
|
10949
|
+
value_lte?: InputMaybe<Scalars["String"]>;
|
|
10950
|
+
value_not?: InputMaybe<Scalars["String"]>;
|
|
10951
|
+
value_not_contains?: InputMaybe<Scalars["String"]>;
|
|
10952
|
+
value_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
10953
|
+
value_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
10954
|
+
value_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10955
|
+
value_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
10956
|
+
value_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
10957
|
+
value_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10958
|
+
value_starts_with?: InputMaybe<Scalars["String"]>;
|
|
10959
|
+
value_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
10960
|
+
};
|
|
10961
|
+
export declare enum Term_OrderBy {
|
|
10962
|
+
DisplayKey = "displayKey",
|
|
10963
|
+
Id = "id",
|
|
10964
|
+
Key = "key",
|
|
10965
|
+
Value = "value"
|
|
10966
|
+
}
|
|
10878
10967
|
export type TokenIdRange = {
|
|
10879
10968
|
__typename?: "TokenIdRange";
|
|
10880
10969
|
id: Scalars["ID"];
|
|
@@ -11489,8 +11578,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
11489
11578
|
chainId?: number | null;
|
|
11490
11579
|
contract?: string | null;
|
|
11491
11580
|
tokenId?: string | null;
|
|
11492
|
-
transferMethod?: string | null;
|
|
11493
|
-
transferDelay?: string | null;
|
|
11494
11581
|
quantity?: number | null;
|
|
11495
11582
|
type: ItemMetadataType;
|
|
11496
11583
|
metadataUri: string;
|
|
@@ -11499,6 +11586,12 @@ export type GetSellerByIdQueryQuery = {
|
|
|
11499
11586
|
min: string;
|
|
11500
11587
|
max: string;
|
|
11501
11588
|
} | null;
|
|
11589
|
+
terms?: Array<{
|
|
11590
|
+
__typename?: "Term";
|
|
11591
|
+
key: string;
|
|
11592
|
+
value: string;
|
|
11593
|
+
displayKey: string;
|
|
11594
|
+
}> | null;
|
|
11502
11595
|
attributes?: Array<{
|
|
11503
11596
|
__typename?: "MetadataAttribute";
|
|
11504
11597
|
traitType: string;
|
|
@@ -12901,8 +12994,6 @@ export type GetSellersQueryQuery = {
|
|
|
12901
12994
|
chainId?: number | null;
|
|
12902
12995
|
contract?: string | null;
|
|
12903
12996
|
tokenId?: string | null;
|
|
12904
|
-
transferMethod?: string | null;
|
|
12905
|
-
transferDelay?: string | null;
|
|
12906
12997
|
quantity?: number | null;
|
|
12907
12998
|
type: ItemMetadataType;
|
|
12908
12999
|
metadataUri: string;
|
|
@@ -12911,6 +13002,12 @@ export type GetSellersQueryQuery = {
|
|
|
12911
13002
|
min: string;
|
|
12912
13003
|
max: string;
|
|
12913
13004
|
} | null;
|
|
13005
|
+
terms?: Array<{
|
|
13006
|
+
__typename?: "Term";
|
|
13007
|
+
key: string;
|
|
13008
|
+
value: string;
|
|
13009
|
+
displayKey: string;
|
|
13010
|
+
}> | null;
|
|
12914
13011
|
attributes?: Array<{
|
|
12915
13012
|
__typename?: "MetadataAttribute";
|
|
12916
13013
|
traitType: string;
|
|
@@ -14785,8 +14882,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
14785
14882
|
chainId?: number | null;
|
|
14786
14883
|
contract?: string | null;
|
|
14787
14884
|
tokenId?: string | null;
|
|
14788
|
-
transferMethod?: string | null;
|
|
14789
|
-
transferDelay?: string | null;
|
|
14790
14885
|
quantity?: number | null;
|
|
14791
14886
|
type: ItemMetadataType;
|
|
14792
14887
|
metadataUri: string;
|
|
@@ -14795,6 +14890,12 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
14795
14890
|
min: string;
|
|
14796
14891
|
max: string;
|
|
14797
14892
|
} | null;
|
|
14893
|
+
terms?: Array<{
|
|
14894
|
+
__typename?: "Term";
|
|
14895
|
+
key: string;
|
|
14896
|
+
value: string;
|
|
14897
|
+
displayKey: string;
|
|
14898
|
+
}> | null;
|
|
14798
14899
|
attributes?: Array<{
|
|
14799
14900
|
__typename?: "MetadataAttribute";
|
|
14800
14901
|
traitType: string;
|
|
@@ -15997,8 +16098,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
15997
16098
|
chainId?: number | null;
|
|
15998
16099
|
contract?: string | null;
|
|
15999
16100
|
tokenId?: string | null;
|
|
16000
|
-
transferMethod?: string | null;
|
|
16001
|
-
transferDelay?: string | null;
|
|
16002
16101
|
quantity?: number | null;
|
|
16003
16102
|
type: ItemMetadataType;
|
|
16004
16103
|
metadataUri: string;
|
|
@@ -16007,6 +16106,12 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
16007
16106
|
min: string;
|
|
16008
16107
|
max: string;
|
|
16009
16108
|
} | null;
|
|
16109
|
+
terms?: Array<{
|
|
16110
|
+
__typename?: "Term";
|
|
16111
|
+
key: string;
|
|
16112
|
+
value: string;
|
|
16113
|
+
displayKey: string;
|
|
16114
|
+
}> | null;
|
|
16010
16115
|
attributes?: Array<{
|
|
16011
16116
|
__typename?: "MetadataAttribute";
|
|
16012
16117
|
traitType: string;
|
|
@@ -17290,8 +17395,6 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
17290
17395
|
chainId?: number | null;
|
|
17291
17396
|
contract?: string | null;
|
|
17292
17397
|
tokenId?: string | null;
|
|
17293
|
-
transferMethod?: string | null;
|
|
17294
|
-
transferDelay?: string | null;
|
|
17295
17398
|
quantity?: number | null;
|
|
17296
17399
|
type: ItemMetadataType;
|
|
17297
17400
|
metadataUri: string;
|
|
@@ -17300,6 +17403,12 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
17300
17403
|
min: string;
|
|
17301
17404
|
max: string;
|
|
17302
17405
|
} | null;
|
|
17406
|
+
terms?: Array<{
|
|
17407
|
+
__typename?: "Term";
|
|
17408
|
+
key: string;
|
|
17409
|
+
value: string;
|
|
17410
|
+
displayKey: string;
|
|
17411
|
+
}> | null;
|
|
17303
17412
|
attributes?: Array<{
|
|
17304
17413
|
__typename?: "MetadataAttribute";
|
|
17305
17414
|
traitType: string;
|
|
@@ -18447,8 +18556,6 @@ export type OfferCollectionFieldsFragment = {
|
|
|
18447
18556
|
chainId?: number | null;
|
|
18448
18557
|
contract?: string | null;
|
|
18449
18558
|
tokenId?: string | null;
|
|
18450
|
-
transferMethod?: string | null;
|
|
18451
|
-
transferDelay?: string | null;
|
|
18452
18559
|
quantity?: number | null;
|
|
18453
18560
|
type: ItemMetadataType;
|
|
18454
18561
|
metadataUri: string;
|
|
@@ -18457,6 +18564,12 @@ export type OfferCollectionFieldsFragment = {
|
|
|
18457
18564
|
min: string;
|
|
18458
18565
|
max: string;
|
|
18459
18566
|
} | null;
|
|
18567
|
+
terms?: Array<{
|
|
18568
|
+
__typename?: "Term";
|
|
18569
|
+
key: string;
|
|
18570
|
+
value: string;
|
|
18571
|
+
displayKey: string;
|
|
18572
|
+
}> | null;
|
|
18460
18573
|
attributes?: Array<{
|
|
18461
18574
|
__typename?: "MetadataAttribute";
|
|
18462
18575
|
traitType: string;
|
|
@@ -19583,8 +19696,6 @@ export type SellerFieldsFragment = {
|
|
|
19583
19696
|
chainId?: number | null;
|
|
19584
19697
|
contract?: string | null;
|
|
19585
19698
|
tokenId?: string | null;
|
|
19586
|
-
transferMethod?: string | null;
|
|
19587
|
-
transferDelay?: string | null;
|
|
19588
19699
|
quantity?: number | null;
|
|
19589
19700
|
type: ItemMetadataType;
|
|
19590
19701
|
metadataUri: string;
|
|
@@ -19593,6 +19704,12 @@ export type SellerFieldsFragment = {
|
|
|
19593
19704
|
min: string;
|
|
19594
19705
|
max: string;
|
|
19595
19706
|
} | null;
|
|
19707
|
+
terms?: Array<{
|
|
19708
|
+
__typename?: "Term";
|
|
19709
|
+
key: string;
|
|
19710
|
+
value: string;
|
|
19711
|
+
displayKey: string;
|
|
19712
|
+
}> | null;
|
|
19596
19713
|
attributes?: Array<{
|
|
19597
19714
|
__typename?: "MetadataAttribute";
|
|
19598
19715
|
traitType: string;
|
|
@@ -21294,8 +21411,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
21294
21411
|
chainId?: number | null;
|
|
21295
21412
|
contract?: string | null;
|
|
21296
21413
|
tokenId?: string | null;
|
|
21297
|
-
transferMethod?: string | null;
|
|
21298
|
-
transferDelay?: string | null;
|
|
21299
21414
|
quantity?: number | null;
|
|
21300
21415
|
type: ItemMetadataType;
|
|
21301
21416
|
metadataUri: string;
|
|
@@ -21304,6 +21419,12 @@ export type DisputeResolverFieldsFragment = {
|
|
|
21304
21419
|
min: string;
|
|
21305
21420
|
max: string;
|
|
21306
21421
|
} | null;
|
|
21422
|
+
terms?: Array<{
|
|
21423
|
+
__typename?: "Term";
|
|
21424
|
+
key: string;
|
|
21425
|
+
value: string;
|
|
21426
|
+
displayKey: string;
|
|
21427
|
+
}> | null;
|
|
21307
21428
|
attributes?: Array<{
|
|
21308
21429
|
__typename?: "MetadataAttribute";
|
|
21309
21430
|
traitType: string;
|
|
@@ -23206,8 +23327,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
23206
23327
|
chainId?: number | null;
|
|
23207
23328
|
contract?: string | null;
|
|
23208
23329
|
tokenId?: string | null;
|
|
23209
|
-
transferMethod?: string | null;
|
|
23210
|
-
transferDelay?: string | null;
|
|
23211
23330
|
quantity?: number | null;
|
|
23212
23331
|
type: ItemMetadataType;
|
|
23213
23332
|
metadataUri: string;
|
|
@@ -23216,6 +23335,12 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
23216
23335
|
min: string;
|
|
23217
23336
|
max: string;
|
|
23218
23337
|
} | null;
|
|
23338
|
+
terms?: Array<{
|
|
23339
|
+
__typename?: "Term";
|
|
23340
|
+
key: string;
|
|
23341
|
+
value: string;
|
|
23342
|
+
displayKey: string;
|
|
23343
|
+
}> | null;
|
|
23219
23344
|
attributes?: Array<{
|
|
23220
23345
|
__typename?: "MetadataAttribute";
|
|
23221
23346
|
traitType: string;
|
|
@@ -24293,8 +24418,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
24293
24418
|
chainId?: number | null;
|
|
24294
24419
|
contract?: string | null;
|
|
24295
24420
|
tokenId?: string | null;
|
|
24296
|
-
transferMethod?: string | null;
|
|
24297
|
-
transferDelay?: string | null;
|
|
24298
24421
|
quantity?: number | null;
|
|
24299
24422
|
type: ItemMetadataType;
|
|
24300
24423
|
metadataUri: string;
|
|
@@ -24303,6 +24426,12 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
24303
24426
|
min: string;
|
|
24304
24427
|
max: string;
|
|
24305
24428
|
} | null;
|
|
24429
|
+
terms?: Array<{
|
|
24430
|
+
__typename?: "Term";
|
|
24431
|
+
key: string;
|
|
24432
|
+
value: string;
|
|
24433
|
+
displayKey: string;
|
|
24434
|
+
}> | null;
|
|
24306
24435
|
attributes?: Array<{
|
|
24307
24436
|
__typename?: "MetadataAttribute";
|
|
24308
24437
|
traitType: string;
|
|
@@ -25359,8 +25488,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
25359
25488
|
chainId?: number | null;
|
|
25360
25489
|
contract?: string | null;
|
|
25361
25490
|
tokenId?: string | null;
|
|
25362
|
-
transferMethod?: string | null;
|
|
25363
|
-
transferDelay?: string | null;
|
|
25364
25491
|
quantity?: number | null;
|
|
25365
25492
|
type: ItemMetadataType;
|
|
25366
25493
|
metadataUri: string;
|
|
@@ -25369,6 +25496,12 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
25369
25496
|
min: string;
|
|
25370
25497
|
max: string;
|
|
25371
25498
|
} | null;
|
|
25499
|
+
terms?: Array<{
|
|
25500
|
+
__typename?: "Term";
|
|
25501
|
+
key: string;
|
|
25502
|
+
value: string;
|
|
25503
|
+
displayKey: string;
|
|
25504
|
+
}> | null;
|
|
25372
25505
|
attributes?: Array<{
|
|
25373
25506
|
__typename?: "MetadataAttribute";
|
|
25374
25507
|
traitType: string;
|
|
@@ -26671,8 +26804,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
26671
26804
|
chainId?: number | null;
|
|
26672
26805
|
contract?: string | null;
|
|
26673
26806
|
tokenId?: string | null;
|
|
26674
|
-
transferMethod?: string | null;
|
|
26675
|
-
transferDelay?: string | null;
|
|
26676
26807
|
quantity?: number | null;
|
|
26677
26808
|
type: ItemMetadataType;
|
|
26678
26809
|
metadataUri: string;
|
|
@@ -26681,6 +26812,12 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
26681
26812
|
min: string;
|
|
26682
26813
|
max: string;
|
|
26683
26814
|
} | null;
|
|
26815
|
+
terms?: Array<{
|
|
26816
|
+
__typename?: "Term";
|
|
26817
|
+
key: string;
|
|
26818
|
+
value: string;
|
|
26819
|
+
displayKey: string;
|
|
26820
|
+
}> | null;
|
|
26684
26821
|
attributes?: Array<{
|
|
26685
26822
|
__typename?: "MetadataAttribute";
|
|
26686
26823
|
traitType: string;
|
|
@@ -27840,8 +27977,6 @@ export type GetExchangesQueryQuery = {
|
|
|
27840
27977
|
chainId?: number | null;
|
|
27841
27978
|
contract?: string | null;
|
|
27842
27979
|
tokenId?: string | null;
|
|
27843
|
-
transferMethod?: string | null;
|
|
27844
|
-
transferDelay?: string | null;
|
|
27845
27980
|
quantity?: number | null;
|
|
27846
27981
|
type: ItemMetadataType;
|
|
27847
27982
|
metadataUri: string;
|
|
@@ -27850,6 +27985,12 @@ export type GetExchangesQueryQuery = {
|
|
|
27850
27985
|
min: string;
|
|
27851
27986
|
max: string;
|
|
27852
27987
|
} | null;
|
|
27988
|
+
terms?: Array<{
|
|
27989
|
+
__typename?: "Term";
|
|
27990
|
+
key: string;
|
|
27991
|
+
value: string;
|
|
27992
|
+
displayKey: string;
|
|
27993
|
+
}> | null;
|
|
27853
27994
|
attributes?: Array<{
|
|
27854
27995
|
__typename?: "MetadataAttribute";
|
|
27855
27996
|
traitType: string;
|
|
@@ -29000,8 +29141,6 @@ export type ExchangeFieldsFragment = {
|
|
|
29000
29141
|
chainId?: number | null;
|
|
29001
29142
|
contract?: string | null;
|
|
29002
29143
|
tokenId?: string | null;
|
|
29003
|
-
transferMethod?: string | null;
|
|
29004
|
-
transferDelay?: string | null;
|
|
29005
29144
|
quantity?: number | null;
|
|
29006
29145
|
type: ItemMetadataType;
|
|
29007
29146
|
metadataUri: string;
|
|
@@ -29010,6 +29149,12 @@ export type ExchangeFieldsFragment = {
|
|
|
29010
29149
|
min: string;
|
|
29011
29150
|
max: string;
|
|
29012
29151
|
} | null;
|
|
29152
|
+
terms?: Array<{
|
|
29153
|
+
__typename?: "Term";
|
|
29154
|
+
key: string;
|
|
29155
|
+
value: string;
|
|
29156
|
+
displayKey: string;
|
|
29157
|
+
}> | null;
|
|
29013
29158
|
attributes?: Array<{
|
|
29014
29159
|
__typename?: "MetadataAttribute";
|
|
29015
29160
|
traitType: string;
|
|
@@ -30371,8 +30516,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
30371
30516
|
chainId?: number | null;
|
|
30372
30517
|
contract?: string | null;
|
|
30373
30518
|
tokenId?: string | null;
|
|
30374
|
-
transferMethod?: string | null;
|
|
30375
|
-
transferDelay?: string | null;
|
|
30376
30519
|
quantity?: number | null;
|
|
30377
30520
|
type: ItemMetadataType;
|
|
30378
30521
|
metadataUri: string;
|
|
@@ -30381,6 +30524,12 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
30381
30524
|
min: string;
|
|
30382
30525
|
max: string;
|
|
30383
30526
|
} | null;
|
|
30527
|
+
terms?: Array<{
|
|
30528
|
+
__typename?: "Term";
|
|
30529
|
+
key: string;
|
|
30530
|
+
value: string;
|
|
30531
|
+
displayKey: string;
|
|
30532
|
+
}> | null;
|
|
30384
30533
|
attributes?: Array<{
|
|
30385
30534
|
__typename?: "MetadataAttribute";
|
|
30386
30535
|
traitType: string;
|
|
@@ -31545,8 +31694,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
31545
31694
|
chainId?: number | null;
|
|
31546
31695
|
contract?: string | null;
|
|
31547
31696
|
tokenId?: string | null;
|
|
31548
|
-
transferMethod?: string | null;
|
|
31549
|
-
transferDelay?: string | null;
|
|
31550
31697
|
quantity?: number | null;
|
|
31551
31698
|
type: ItemMetadataType;
|
|
31552
31699
|
metadataUri: string;
|
|
@@ -31555,6 +31702,12 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
31555
31702
|
min: string;
|
|
31556
31703
|
max: string;
|
|
31557
31704
|
} | null;
|
|
31705
|
+
terms?: Array<{
|
|
31706
|
+
__typename?: "Term";
|
|
31707
|
+
key: string;
|
|
31708
|
+
value: string;
|
|
31709
|
+
displayKey: string;
|
|
31710
|
+
}> | null;
|
|
31558
31711
|
attributes?: Array<{
|
|
31559
31712
|
__typename?: "MetadataAttribute";
|
|
31560
31713
|
traitType: string;
|
|
@@ -32710,8 +32863,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
32710
32863
|
chainId?: number | null;
|
|
32711
32864
|
contract?: string | null;
|
|
32712
32865
|
tokenId?: string | null;
|
|
32713
|
-
transferMethod?: string | null;
|
|
32714
|
-
transferDelay?: string | null;
|
|
32715
32866
|
quantity?: number | null;
|
|
32716
32867
|
type: ItemMetadataType;
|
|
32717
32868
|
metadataUri: string;
|
|
@@ -32720,6 +32871,12 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
32720
32871
|
min: string;
|
|
32721
32872
|
max: string;
|
|
32722
32873
|
} | null;
|
|
32874
|
+
terms?: Array<{
|
|
32875
|
+
__typename?: "Term";
|
|
32876
|
+
key: string;
|
|
32877
|
+
value: string;
|
|
32878
|
+
displayKey: string;
|
|
32879
|
+
}> | null;
|
|
32723
32880
|
attributes?: Array<{
|
|
32724
32881
|
__typename?: "MetadataAttribute";
|
|
32725
32882
|
traitType: string;
|
|
@@ -33874,8 +34031,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
33874
34031
|
chainId?: number | null;
|
|
33875
34032
|
contract?: string | null;
|
|
33876
34033
|
tokenId?: string | null;
|
|
33877
|
-
transferMethod?: string | null;
|
|
33878
|
-
transferDelay?: string | null;
|
|
33879
34034
|
quantity?: number | null;
|
|
33880
34035
|
type: ItemMetadataType;
|
|
33881
34036
|
metadataUri: string;
|
|
@@ -33884,6 +34039,12 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
33884
34039
|
min: string;
|
|
33885
34040
|
max: string;
|
|
33886
34041
|
} | null;
|
|
34042
|
+
terms?: Array<{
|
|
34043
|
+
__typename?: "Term";
|
|
34044
|
+
key: string;
|
|
34045
|
+
value: string;
|
|
34046
|
+
displayKey: string;
|
|
34047
|
+
}> | null;
|
|
33887
34048
|
attributes?: Array<{
|
|
33888
34049
|
__typename?: "MetadataAttribute";
|
|
33889
34050
|
traitType: string;
|
|
@@ -35158,8 +35319,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
35158
35319
|
chainId?: number | null;
|
|
35159
35320
|
contract?: string | null;
|
|
35160
35321
|
tokenId?: string | null;
|
|
35161
|
-
transferMethod?: string | null;
|
|
35162
|
-
transferDelay?: string | null;
|
|
35163
35322
|
quantity?: number | null;
|
|
35164
35323
|
type: ItemMetadataType;
|
|
35165
35324
|
metadataUri: string;
|
|
@@ -35168,6 +35327,12 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
35168
35327
|
min: string;
|
|
35169
35328
|
max: string;
|
|
35170
35329
|
} | null;
|
|
35330
|
+
terms?: Array<{
|
|
35331
|
+
__typename?: "Term";
|
|
35332
|
+
key: string;
|
|
35333
|
+
value: string;
|
|
35334
|
+
displayKey: string;
|
|
35335
|
+
}> | null;
|
|
35171
35336
|
attributes?: Array<{
|
|
35172
35337
|
__typename?: "MetadataAttribute";
|
|
35173
35338
|
traitType: string;
|
|
@@ -36075,8 +36240,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
36075
36240
|
chainId?: number | null;
|
|
36076
36241
|
contract?: string | null;
|
|
36077
36242
|
tokenId?: string | null;
|
|
36078
|
-
transferMethod?: string | null;
|
|
36079
|
-
transferDelay?: string | null;
|
|
36080
36243
|
quantity?: number | null;
|
|
36081
36244
|
id: string;
|
|
36082
36245
|
schemaUrl: string;
|
|
@@ -36087,6 +36250,12 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
36087
36250
|
min: string;
|
|
36088
36251
|
max: string;
|
|
36089
36252
|
} | null;
|
|
36253
|
+
terms?: Array<{
|
|
36254
|
+
__typename?: "Term";
|
|
36255
|
+
key: string;
|
|
36256
|
+
value: string;
|
|
36257
|
+
displayKey: string;
|
|
36258
|
+
}> | null;
|
|
36090
36259
|
attributes?: Array<{
|
|
36091
36260
|
__typename?: "MetadataAttribute";
|
|
36092
36261
|
traitType: string;
|
|
@@ -36864,8 +37033,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
36864
37033
|
chainId?: number | null;
|
|
36865
37034
|
contract?: string | null;
|
|
36866
37035
|
tokenId?: string | null;
|
|
36867
|
-
transferMethod?: string | null;
|
|
36868
|
-
transferDelay?: string | null;
|
|
36869
37036
|
quantity?: number | null;
|
|
36870
37037
|
type: ItemMetadataType;
|
|
36871
37038
|
metadataUri: string;
|
|
@@ -36874,6 +37041,12 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
36874
37041
|
min: string;
|
|
36875
37042
|
max: string;
|
|
36876
37043
|
} | null;
|
|
37044
|
+
terms?: Array<{
|
|
37045
|
+
__typename?: "Term";
|
|
37046
|
+
key: string;
|
|
37047
|
+
value: string;
|
|
37048
|
+
displayKey: string;
|
|
37049
|
+
}> | null;
|
|
36877
37050
|
attributes?: Array<{
|
|
36878
37051
|
__typename?: "MetadataAttribute";
|
|
36879
37052
|
traitType: string;
|
|
@@ -37781,8 +37954,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
37781
37954
|
chainId?: number | null;
|
|
37782
37955
|
contract?: string | null;
|
|
37783
37956
|
tokenId?: string | null;
|
|
37784
|
-
transferMethod?: string | null;
|
|
37785
|
-
transferDelay?: string | null;
|
|
37786
37957
|
quantity?: number | null;
|
|
37787
37958
|
id: string;
|
|
37788
37959
|
schemaUrl: string;
|
|
@@ -37793,6 +37964,12 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
37793
37964
|
min: string;
|
|
37794
37965
|
max: string;
|
|
37795
37966
|
} | null;
|
|
37967
|
+
terms?: Array<{
|
|
37968
|
+
__typename?: "Term";
|
|
37969
|
+
key: string;
|
|
37970
|
+
value: string;
|
|
37971
|
+
displayKey: string;
|
|
37972
|
+
}> | null;
|
|
37796
37973
|
attributes?: Array<{
|
|
37797
37974
|
__typename?: "MetadataAttribute";
|
|
37798
37975
|
traitType: string;
|
|
@@ -38561,8 +38738,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
38561
38738
|
chainId?: number | null;
|
|
38562
38739
|
contract?: string | null;
|
|
38563
38740
|
tokenId?: string | null;
|
|
38564
|
-
transferMethod?: string | null;
|
|
38565
|
-
transferDelay?: string | null;
|
|
38566
38741
|
quantity?: number | null;
|
|
38567
38742
|
type: ItemMetadataType;
|
|
38568
38743
|
metadataUri: string;
|
|
@@ -38571,6 +38746,12 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
38571
38746
|
min: string;
|
|
38572
38747
|
max: string;
|
|
38573
38748
|
} | null;
|
|
38749
|
+
terms?: Array<{
|
|
38750
|
+
__typename?: "Term";
|
|
38751
|
+
key: string;
|
|
38752
|
+
value: string;
|
|
38753
|
+
displayKey: string;
|
|
38754
|
+
}> | null;
|
|
38574
38755
|
attributes?: Array<{
|
|
38575
38756
|
__typename?: "MetadataAttribute";
|
|
38576
38757
|
traitType: string;
|
|
@@ -39478,8 +39659,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
39478
39659
|
chainId?: number | null;
|
|
39479
39660
|
contract?: string | null;
|
|
39480
39661
|
tokenId?: string | null;
|
|
39481
|
-
transferMethod?: string | null;
|
|
39482
|
-
transferDelay?: string | null;
|
|
39483
39662
|
quantity?: number | null;
|
|
39484
39663
|
id: string;
|
|
39485
39664
|
schemaUrl: string;
|
|
@@ -39490,6 +39669,12 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
39490
39669
|
min: string;
|
|
39491
39670
|
max: string;
|
|
39492
39671
|
} | null;
|
|
39672
|
+
terms?: Array<{
|
|
39673
|
+
__typename?: "Term";
|
|
39674
|
+
key: string;
|
|
39675
|
+
value: string;
|
|
39676
|
+
displayKey: string;
|
|
39677
|
+
}> | null;
|
|
39493
39678
|
attributes?: Array<{
|
|
39494
39679
|
__typename?: "MetadataAttribute";
|
|
39495
39680
|
traitType: string;
|
|
@@ -40257,8 +40442,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
40257
40442
|
chainId?: number | null;
|
|
40258
40443
|
contract?: string | null;
|
|
40259
40444
|
tokenId?: string | null;
|
|
40260
|
-
transferMethod?: string | null;
|
|
40261
|
-
transferDelay?: string | null;
|
|
40262
40445
|
quantity?: number | null;
|
|
40263
40446
|
type: ItemMetadataType;
|
|
40264
40447
|
metadataUri: string;
|
|
@@ -40267,6 +40450,12 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
40267
40450
|
min: string;
|
|
40268
40451
|
max: string;
|
|
40269
40452
|
} | null;
|
|
40453
|
+
terms?: Array<{
|
|
40454
|
+
__typename?: "Term";
|
|
40455
|
+
key: string;
|
|
40456
|
+
value: string;
|
|
40457
|
+
displayKey: string;
|
|
40458
|
+
}> | null;
|
|
40270
40459
|
attributes?: Array<{
|
|
40271
40460
|
__typename?: "MetadataAttribute";
|
|
40272
40461
|
traitType: string;
|
|
@@ -41174,8 +41363,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
41174
41363
|
chainId?: number | null;
|
|
41175
41364
|
contract?: string | null;
|
|
41176
41365
|
tokenId?: string | null;
|
|
41177
|
-
transferMethod?: string | null;
|
|
41178
|
-
transferDelay?: string | null;
|
|
41179
41366
|
quantity?: number | null;
|
|
41180
41367
|
id: string;
|
|
41181
41368
|
schemaUrl: string;
|
|
@@ -41186,6 +41373,12 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
41186
41373
|
min: string;
|
|
41187
41374
|
max: string;
|
|
41188
41375
|
} | null;
|
|
41376
|
+
terms?: Array<{
|
|
41377
|
+
__typename?: "Term";
|
|
41378
|
+
key: string;
|
|
41379
|
+
value: string;
|
|
41380
|
+
displayKey: string;
|
|
41381
|
+
}> | null;
|
|
41189
41382
|
attributes?: Array<{
|
|
41190
41383
|
__typename?: "MetadataAttribute";
|
|
41191
41384
|
traitType: string;
|
|
@@ -42194,8 +42387,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
42194
42387
|
chainId?: number | null;
|
|
42195
42388
|
contract?: string | null;
|
|
42196
42389
|
tokenId?: string | null;
|
|
42197
|
-
transferMethod?: string | null;
|
|
42198
|
-
transferDelay?: string | null;
|
|
42199
42390
|
quantity?: number | null;
|
|
42200
42391
|
type: ItemMetadataType;
|
|
42201
42392
|
metadataUri: string;
|
|
@@ -42204,6 +42395,12 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
42204
42395
|
min: string;
|
|
42205
42396
|
max: string;
|
|
42206
42397
|
} | null;
|
|
42398
|
+
terms?: Array<{
|
|
42399
|
+
__typename?: "Term";
|
|
42400
|
+
key: string;
|
|
42401
|
+
value: string;
|
|
42402
|
+
displayKey: string;
|
|
42403
|
+
}> | null;
|
|
42207
42404
|
attributes?: Array<{
|
|
42208
42405
|
__typename?: "MetadataAttribute";
|
|
42209
42406
|
traitType: string;
|
|
@@ -43393,8 +43590,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
43393
43590
|
chainId?: number | null;
|
|
43394
43591
|
contract?: string | null;
|
|
43395
43592
|
tokenId?: string | null;
|
|
43396
|
-
transferMethod?: string | null;
|
|
43397
|
-
transferDelay?: string | null;
|
|
43398
43593
|
quantity?: number | null;
|
|
43399
43594
|
type: ItemMetadataType;
|
|
43400
43595
|
metadataUri: string;
|
|
@@ -43403,6 +43598,12 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
43403
43598
|
min: string;
|
|
43404
43599
|
max: string;
|
|
43405
43600
|
} | null;
|
|
43601
|
+
terms?: Array<{
|
|
43602
|
+
__typename?: "Term";
|
|
43603
|
+
key: string;
|
|
43604
|
+
value: string;
|
|
43605
|
+
displayKey: string;
|
|
43606
|
+
}> | null;
|
|
43406
43607
|
attributes?: Array<{
|
|
43407
43608
|
__typename?: "MetadataAttribute";
|
|
43408
43609
|
traitType: string;
|
|
@@ -44310,8 +44511,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
44310
44511
|
chainId?: number | null;
|
|
44311
44512
|
contract?: string | null;
|
|
44312
44513
|
tokenId?: string | null;
|
|
44313
|
-
transferMethod?: string | null;
|
|
44314
|
-
transferDelay?: string | null;
|
|
44315
44514
|
quantity?: number | null;
|
|
44316
44515
|
id: string;
|
|
44317
44516
|
schemaUrl: string;
|
|
@@ -44322,6 +44521,12 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
44322
44521
|
min: string;
|
|
44323
44522
|
max: string;
|
|
44324
44523
|
} | null;
|
|
44524
|
+
terms?: Array<{
|
|
44525
|
+
__typename?: "Term";
|
|
44526
|
+
key: string;
|
|
44527
|
+
value: string;
|
|
44528
|
+
displayKey: string;
|
|
44529
|
+
}> | null;
|
|
44325
44530
|
attributes?: Array<{
|
|
44326
44531
|
__typename?: "MetadataAttribute";
|
|
44327
44532
|
traitType: string;
|
|
@@ -45277,8 +45482,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
45277
45482
|
chainId?: number | null;
|
|
45278
45483
|
contract?: string | null;
|
|
45279
45484
|
tokenId?: string | null;
|
|
45280
|
-
transferMethod?: string | null;
|
|
45281
|
-
transferDelay?: string | null;
|
|
45282
45485
|
quantity?: number | null;
|
|
45283
45486
|
type: ItemMetadataType;
|
|
45284
45487
|
metadataUri: string;
|
|
@@ -45287,6 +45490,12 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
45287
45490
|
min: string;
|
|
45288
45491
|
max: string;
|
|
45289
45492
|
} | null;
|
|
45493
|
+
terms?: Array<{
|
|
45494
|
+
__typename?: "Term";
|
|
45495
|
+
key: string;
|
|
45496
|
+
value: string;
|
|
45497
|
+
displayKey: string;
|
|
45498
|
+
}> | null;
|
|
45290
45499
|
attributes?: Array<{
|
|
45291
45500
|
__typename?: "MetadataAttribute";
|
|
45292
45501
|
traitType: string;
|
|
@@ -46476,8 +46685,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
46476
46685
|
chainId?: number | null;
|
|
46477
46686
|
contract?: string | null;
|
|
46478
46687
|
tokenId?: string | null;
|
|
46479
|
-
transferMethod?: string | null;
|
|
46480
|
-
transferDelay?: string | null;
|
|
46481
46688
|
quantity?: number | null;
|
|
46482
46689
|
type: ItemMetadataType;
|
|
46483
46690
|
metadataUri: string;
|
|
@@ -46486,6 +46693,12 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
46486
46693
|
min: string;
|
|
46487
46694
|
max: string;
|
|
46488
46695
|
} | null;
|
|
46696
|
+
terms?: Array<{
|
|
46697
|
+
__typename?: "Term";
|
|
46698
|
+
key: string;
|
|
46699
|
+
value: string;
|
|
46700
|
+
displayKey: string;
|
|
46701
|
+
}> | null;
|
|
46489
46702
|
attributes?: Array<{
|
|
46490
46703
|
__typename?: "MetadataAttribute";
|
|
46491
46704
|
traitType: string;
|
|
@@ -47393,8 +47606,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
47393
47606
|
chainId?: number | null;
|
|
47394
47607
|
contract?: string | null;
|
|
47395
47608
|
tokenId?: string | null;
|
|
47396
|
-
transferMethod?: string | null;
|
|
47397
|
-
transferDelay?: string | null;
|
|
47398
47609
|
quantity?: number | null;
|
|
47399
47610
|
id: string;
|
|
47400
47611
|
schemaUrl: string;
|
|
@@ -47405,6 +47616,12 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
47405
47616
|
min: string;
|
|
47406
47617
|
max: string;
|
|
47407
47618
|
} | null;
|
|
47619
|
+
terms?: Array<{
|
|
47620
|
+
__typename?: "Term";
|
|
47621
|
+
key: string;
|
|
47622
|
+
value: string;
|
|
47623
|
+
displayKey: string;
|
|
47624
|
+
}> | null;
|
|
47408
47625
|
attributes?: Array<{
|
|
47409
47626
|
__typename?: "MetadataAttribute";
|
|
47410
47627
|
traitType: string;
|
|
@@ -48372,8 +48589,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
48372
48589
|
chainId?: number | null;
|
|
48373
48590
|
contract?: string | null;
|
|
48374
48591
|
tokenId?: string | null;
|
|
48375
|
-
transferMethod?: string | null;
|
|
48376
|
-
transferDelay?: string | null;
|
|
48377
48592
|
quantity?: number | null;
|
|
48378
48593
|
type: ItemMetadataType;
|
|
48379
48594
|
metadataUri: string;
|
|
@@ -48382,6 +48597,12 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
48382
48597
|
min: string;
|
|
48383
48598
|
max: string;
|
|
48384
48599
|
} | null;
|
|
48600
|
+
terms?: Array<{
|
|
48601
|
+
__typename?: "Term";
|
|
48602
|
+
key: string;
|
|
48603
|
+
value: string;
|
|
48604
|
+
displayKey: string;
|
|
48605
|
+
}> | null;
|
|
48385
48606
|
attributes?: Array<{
|
|
48386
48607
|
__typename?: "MetadataAttribute";
|
|
48387
48608
|
traitType: string;
|
|
@@ -49973,8 +50194,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
49973
50194
|
chainId?: number | null;
|
|
49974
50195
|
contract?: string | null;
|
|
49975
50196
|
tokenId?: string | null;
|
|
49976
|
-
transferMethod?: string | null;
|
|
49977
|
-
transferDelay?: string | null;
|
|
49978
50197
|
quantity?: number | null;
|
|
49979
50198
|
type: ItemMetadataType;
|
|
49980
50199
|
metadataUri: string;
|
|
@@ -49983,6 +50202,12 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
49983
50202
|
min: string;
|
|
49984
50203
|
max: string;
|
|
49985
50204
|
} | null;
|
|
50205
|
+
terms?: Array<{
|
|
50206
|
+
__typename?: "Term";
|
|
50207
|
+
key: string;
|
|
50208
|
+
value: string;
|
|
50209
|
+
displayKey: string;
|
|
50210
|
+
}> | null;
|
|
49986
50211
|
attributes?: Array<{
|
|
49987
50212
|
__typename?: "MetadataAttribute";
|
|
49988
50213
|
traitType: string;
|
|
@@ -51565,8 +51790,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
51565
51790
|
chainId?: number | null;
|
|
51566
51791
|
contract?: string | null;
|
|
51567
51792
|
tokenId?: string | null;
|
|
51568
|
-
transferMethod?: string | null;
|
|
51569
|
-
transferDelay?: string | null;
|
|
51570
51793
|
quantity?: number | null;
|
|
51571
51794
|
type: ItemMetadataType;
|
|
51572
51795
|
metadataUri: string;
|
|
@@ -51575,6 +51798,12 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
51575
51798
|
min: string;
|
|
51576
51799
|
max: string;
|
|
51577
51800
|
} | null;
|
|
51801
|
+
terms?: Array<{
|
|
51802
|
+
__typename?: "Term";
|
|
51803
|
+
key: string;
|
|
51804
|
+
value: string;
|
|
51805
|
+
displayKey: string;
|
|
51806
|
+
}> | null;
|
|
51578
51807
|
attributes?: Array<{
|
|
51579
51808
|
__typename?: "MetadataAttribute";
|
|
51580
51809
|
traitType: string;
|
|
@@ -53156,8 +53385,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
53156
53385
|
chainId?: number | null;
|
|
53157
53386
|
contract?: string | null;
|
|
53158
53387
|
tokenId?: string | null;
|
|
53159
|
-
transferMethod?: string | null;
|
|
53160
|
-
transferDelay?: string | null;
|
|
53161
53388
|
quantity?: number | null;
|
|
53162
53389
|
type: ItemMetadataType;
|
|
53163
53390
|
metadataUri: string;
|
|
@@ -53166,6 +53393,12 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
53166
53393
|
min: string;
|
|
53167
53394
|
max: string;
|
|
53168
53395
|
} | null;
|
|
53396
|
+
terms?: Array<{
|
|
53397
|
+
__typename?: "Term";
|
|
53398
|
+
key: string;
|
|
53399
|
+
value: string;
|
|
53400
|
+
displayKey: string;
|
|
53401
|
+
}> | null;
|
|
53169
53402
|
attributes?: Array<{
|
|
53170
53403
|
__typename?: "MetadataAttribute";
|
|
53171
53404
|
traitType: string;
|
|
@@ -54962,8 +55195,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
54962
55195
|
chainId?: number | null;
|
|
54963
55196
|
contract?: string | null;
|
|
54964
55197
|
tokenId?: string | null;
|
|
54965
|
-
transferMethod?: string | null;
|
|
54966
|
-
transferDelay?: string | null;
|
|
54967
55198
|
quantity?: number | null;
|
|
54968
55199
|
type: ItemMetadataType;
|
|
54969
55200
|
metadataUri: string;
|
|
@@ -54972,6 +55203,12 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
54972
55203
|
min: string;
|
|
54973
55204
|
max: string;
|
|
54974
55205
|
} | null;
|
|
55206
|
+
terms?: Array<{
|
|
55207
|
+
__typename?: "Term";
|
|
55208
|
+
key: string;
|
|
55209
|
+
value: string;
|
|
55210
|
+
displayKey: string;
|
|
55211
|
+
}> | null;
|
|
54975
55212
|
attributes?: Array<{
|
|
54976
55213
|
__typename?: "MetadataAttribute";
|
|
54977
55214
|
traitType: string;
|
|
@@ -56161,8 +56398,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
56161
56398
|
chainId?: number | null;
|
|
56162
56399
|
contract?: string | null;
|
|
56163
56400
|
tokenId?: string | null;
|
|
56164
|
-
transferMethod?: string | null;
|
|
56165
|
-
transferDelay?: string | null;
|
|
56166
56401
|
quantity?: number | null;
|
|
56167
56402
|
type: ItemMetadataType;
|
|
56168
56403
|
metadataUri: string;
|
|
@@ -56171,6 +56406,12 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
56171
56406
|
min: string;
|
|
56172
56407
|
max: string;
|
|
56173
56408
|
} | null;
|
|
56409
|
+
terms?: Array<{
|
|
56410
|
+
__typename?: "Term";
|
|
56411
|
+
key: string;
|
|
56412
|
+
value: string;
|
|
56413
|
+
displayKey: string;
|
|
56414
|
+
}> | null;
|
|
56174
56415
|
attributes?: Array<{
|
|
56175
56416
|
__typename?: "MetadataAttribute";
|
|
56176
56417
|
traitType: string;
|
|
@@ -57078,8 +57319,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
57078
57319
|
chainId?: number | null;
|
|
57079
57320
|
contract?: string | null;
|
|
57080
57321
|
tokenId?: string | null;
|
|
57081
|
-
transferMethod?: string | null;
|
|
57082
|
-
transferDelay?: string | null;
|
|
57083
57322
|
quantity?: number | null;
|
|
57084
57323
|
id: string;
|
|
57085
57324
|
schemaUrl: string;
|
|
@@ -57090,6 +57329,12 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
57090
57329
|
min: string;
|
|
57091
57330
|
max: string;
|
|
57092
57331
|
} | null;
|
|
57332
|
+
terms?: Array<{
|
|
57333
|
+
__typename?: "Term";
|
|
57334
|
+
key: string;
|
|
57335
|
+
value: string;
|
|
57336
|
+
displayKey: string;
|
|
57337
|
+
}> | null;
|
|
57093
57338
|
attributes?: Array<{
|
|
57094
57339
|
__typename?: "MetadataAttribute";
|
|
57095
57340
|
traitType: string;
|
|
@@ -58035,8 +58280,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
58035
58280
|
chainId?: number | null;
|
|
58036
58281
|
contract?: string | null;
|
|
58037
58282
|
tokenId?: string | null;
|
|
58038
|
-
transferMethod?: string | null;
|
|
58039
|
-
transferDelay?: string | null;
|
|
58040
58283
|
quantity?: number | null;
|
|
58041
58284
|
type: ItemMetadataType;
|
|
58042
58285
|
metadataUri: string;
|
|
@@ -58045,6 +58288,12 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
58045
58288
|
min: string;
|
|
58046
58289
|
max: string;
|
|
58047
58290
|
} | null;
|
|
58291
|
+
terms?: Array<{
|
|
58292
|
+
__typename?: "Term";
|
|
58293
|
+
key: string;
|
|
58294
|
+
value: string;
|
|
58295
|
+
displayKey: string;
|
|
58296
|
+
}> | null;
|
|
58048
58297
|
attributes?: Array<{
|
|
58049
58298
|
__typename?: "MetadataAttribute";
|
|
58050
58299
|
traitType: string;
|
|
@@ -59234,8 +59483,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
59234
59483
|
chainId?: number | null;
|
|
59235
59484
|
contract?: string | null;
|
|
59236
59485
|
tokenId?: string | null;
|
|
59237
|
-
transferMethod?: string | null;
|
|
59238
|
-
transferDelay?: string | null;
|
|
59239
59486
|
quantity?: number | null;
|
|
59240
59487
|
type: ItemMetadataType;
|
|
59241
59488
|
metadataUri: string;
|
|
@@ -59244,6 +59491,12 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
59244
59491
|
min: string;
|
|
59245
59492
|
max: string;
|
|
59246
59493
|
} | null;
|
|
59494
|
+
terms?: Array<{
|
|
59495
|
+
__typename?: "Term";
|
|
59496
|
+
key: string;
|
|
59497
|
+
value: string;
|
|
59498
|
+
displayKey: string;
|
|
59499
|
+
}> | null;
|
|
59247
59500
|
attributes?: Array<{
|
|
59248
59501
|
__typename?: "MetadataAttribute";
|
|
59249
59502
|
traitType: string;
|
|
@@ -60151,8 +60404,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
60151
60404
|
chainId?: number | null;
|
|
60152
60405
|
contract?: string | null;
|
|
60153
60406
|
tokenId?: string | null;
|
|
60154
|
-
transferMethod?: string | null;
|
|
60155
|
-
transferDelay?: string | null;
|
|
60156
60407
|
quantity?: number | null;
|
|
60157
60408
|
id: string;
|
|
60158
60409
|
schemaUrl: string;
|
|
@@ -60163,6 +60414,12 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
60163
60414
|
min: string;
|
|
60164
60415
|
max: string;
|
|
60165
60416
|
} | null;
|
|
60417
|
+
terms?: Array<{
|
|
60418
|
+
__typename?: "Term";
|
|
60419
|
+
key: string;
|
|
60420
|
+
value: string;
|
|
60421
|
+
displayKey: string;
|
|
60422
|
+
}> | null;
|
|
60166
60423
|
attributes?: Array<{
|
|
60167
60424
|
__typename?: "MetadataAttribute";
|
|
60168
60425
|
traitType: string;
|
|
@@ -61301,8 +61558,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
61301
61558
|
chainId?: number | null;
|
|
61302
61559
|
contract?: string | null;
|
|
61303
61560
|
tokenId?: string | null;
|
|
61304
|
-
transferMethod?: string | null;
|
|
61305
|
-
transferDelay?: string | null;
|
|
61306
61561
|
quantity?: number | null;
|
|
61307
61562
|
type: ItemMetadataType;
|
|
61308
61563
|
metadataUri: string;
|
|
@@ -61311,6 +61566,12 @@ export type GetOfferByIdQueryQuery = {
|
|
|
61311
61566
|
min: string;
|
|
61312
61567
|
max: string;
|
|
61313
61568
|
} | null;
|
|
61569
|
+
terms?: Array<{
|
|
61570
|
+
__typename?: "Term";
|
|
61571
|
+
key: string;
|
|
61572
|
+
value: string;
|
|
61573
|
+
displayKey: string;
|
|
61574
|
+
}> | null;
|
|
61314
61575
|
attributes?: Array<{
|
|
61315
61576
|
__typename?: "MetadataAttribute";
|
|
61316
61577
|
traitType: string;
|
|
@@ -62476,8 +62737,6 @@ export type GetOffersQueryQuery = {
|
|
|
62476
62737
|
chainId?: number | null;
|
|
62477
62738
|
contract?: string | null;
|
|
62478
62739
|
tokenId?: string | null;
|
|
62479
|
-
transferMethod?: string | null;
|
|
62480
|
-
transferDelay?: string | null;
|
|
62481
62740
|
quantity?: number | null;
|
|
62482
62741
|
type: ItemMetadataType;
|
|
62483
62742
|
metadataUri: string;
|
|
@@ -62486,6 +62745,12 @@ export type GetOffersQueryQuery = {
|
|
|
62486
62745
|
min: string;
|
|
62487
62746
|
max: string;
|
|
62488
62747
|
} | null;
|
|
62748
|
+
terms?: Array<{
|
|
62749
|
+
__typename?: "Term";
|
|
62750
|
+
key: string;
|
|
62751
|
+
value: string;
|
|
62752
|
+
displayKey: string;
|
|
62753
|
+
}> | null;
|
|
62489
62754
|
attributes?: Array<{
|
|
62490
62755
|
__typename?: "MetadataAttribute";
|
|
62491
62756
|
traitType: string;
|
|
@@ -63738,8 +64003,6 @@ export type OfferFieldsFragment = {
|
|
|
63738
64003
|
chainId?: number | null;
|
|
63739
64004
|
contract?: string | null;
|
|
63740
64005
|
tokenId?: string | null;
|
|
63741
|
-
transferMethod?: string | null;
|
|
63742
|
-
transferDelay?: string | null;
|
|
63743
64006
|
quantity?: number | null;
|
|
63744
64007
|
type: ItemMetadataType;
|
|
63745
64008
|
metadataUri: string;
|
|
@@ -63748,6 +64011,12 @@ export type OfferFieldsFragment = {
|
|
|
63748
64011
|
min: string;
|
|
63749
64012
|
max: string;
|
|
63750
64013
|
} | null;
|
|
64014
|
+
terms?: Array<{
|
|
64015
|
+
__typename?: "Term";
|
|
64016
|
+
key: string;
|
|
64017
|
+
value: string;
|
|
64018
|
+
displayKey: string;
|
|
64019
|
+
}> | null;
|
|
63751
64020
|
attributes?: Array<{
|
|
63752
64021
|
__typename?: "MetadataAttribute";
|
|
63753
64022
|
traitType: string;
|
|
@@ -64789,8 +65058,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
64789
65058
|
chainId?: number | null;
|
|
64790
65059
|
contract?: string | null;
|
|
64791
65060
|
tokenId?: string | null;
|
|
64792
|
-
transferMethod?: string | null;
|
|
64793
|
-
transferDelay?: string | null;
|
|
64794
65061
|
quantity?: number | null;
|
|
64795
65062
|
type: ItemMetadataType;
|
|
64796
65063
|
metadataUri: string;
|
|
@@ -64799,6 +65066,12 @@ export type BaseOfferFieldsFragment = {
|
|
|
64799
65066
|
min: string;
|
|
64800
65067
|
max: string;
|
|
64801
65068
|
} | null;
|
|
65069
|
+
terms?: Array<{
|
|
65070
|
+
__typename?: "Term";
|
|
65071
|
+
key: string;
|
|
65072
|
+
value: string;
|
|
65073
|
+
displayKey: string;
|
|
65074
|
+
}> | null;
|
|
64802
65075
|
attributes?: Array<{
|
|
64803
65076
|
__typename?: "MetadataAttribute";
|
|
64804
65077
|
traitType: string;
|