@bosonprotocol/core-sdk 1.25.0-alpha.12 → 1.25.0-alpha.13
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/meta-tx/handler.d.ts +8 -0
- package/dist/cjs/meta-tx/handler.d.ts.map +1 -1
- package/dist/cjs/meta-tx/handler.js +13 -1
- package/dist/cjs/meta-tx/handler.js.map +1 -1
- package/dist/cjs/meta-tx/mixin.d.ts +12 -0
- package/dist/cjs/meta-tx/mixin.d.ts.map +1 -1
- package/dist/cjs/meta-tx/mixin.js +20 -0
- package/dist/cjs/meta-tx/mixin.js.map +1 -1
- package/dist/cjs/offers/handler.d.ts +14 -0
- package/dist/cjs/offers/handler.d.ts.map +1 -1
- package/dist/cjs/offers/handler.js +25 -1
- package/dist/cjs/offers/handler.js.map +1 -1
- package/dist/cjs/offers/mixin.d.ts +23 -0
- package/dist/cjs/offers/mixin.d.ts.map +1 -1
- package/dist/cjs/offers/mixin.js +39 -0
- package/dist/cjs/offers/mixin.js.map +1 -1
- package/dist/cjs/offers/renderContractualAgreement.d.ts.map +1 -1
- package/dist/cjs/offers/renderContractualAgreement.js +5 -4
- package/dist/cjs/offers/renderContractualAgreement.js.map +1 -1
- package/dist/cjs/subgraph.d.ts +734 -1
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +35 -9
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/meta-tx/handler.d.ts +8 -0
- package/dist/esm/meta-tx/handler.d.ts.map +1 -1
- package/dist/esm/meta-tx/handler.js +14 -0
- package/dist/esm/meta-tx/handler.js.map +1 -1
- package/dist/esm/meta-tx/mixin.d.ts +12 -0
- package/dist/esm/meta-tx/mixin.d.ts.map +1 -1
- package/dist/esm/meta-tx/mixin.js +26 -0
- package/dist/esm/meta-tx/mixin.js.map +1 -1
- package/dist/esm/offers/handler.d.ts +14 -0
- package/dist/esm/offers/handler.d.ts.map +1 -1
- package/dist/esm/offers/handler.js +18 -0
- package/dist/esm/offers/handler.js.map +1 -1
- package/dist/esm/offers/mixin.d.ts +23 -0
- package/dist/esm/offers/mixin.d.ts.map +1 -1
- package/dist/esm/offers/mixin.js +35 -0
- package/dist/esm/offers/mixin.js.map +1 -1
- package/dist/esm/offers/renderContractualAgreement.d.ts.map +1 -1
- package/dist/esm/offers/renderContractualAgreement.js +5 -4
- package/dist/esm/offers/renderContractualAgreement.js.map +1 -1
- package/dist/esm/subgraph.d.ts +734 -1
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +32 -6
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/meta-tx/handler.ts +32 -0
- package/src/meta-tx/mixin.ts +38 -0
- package/src/metadata/base.graphql +3 -0
- package/src/offers/handler.ts +32 -0
- package/src/offers/mixin.ts +49 -0
- package/src/offers/queries.graphql +13 -0
- package/src/offers/renderContractualAgreement.ts +6 -9
- package/src/subgraph.ts +762 -7
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -1552,6 +1552,8 @@ export declare enum EventType {
|
|
|
1552
1552
|
FundsWithdrawn = "FUNDS_WITHDRAWN",
|
|
1553
1553
|
/** OfferHandler events */
|
|
1554
1554
|
OfferCreated = "OFFER_CREATED",
|
|
1555
|
+
OfferExtended = "OFFER_EXTENDED",
|
|
1556
|
+
OfferRangeReserved = "OFFER_RANGE_RESERVED",
|
|
1555
1557
|
OfferVoided = "OFFER_VOIDED",
|
|
1556
1558
|
/** AccountHandler events */
|
|
1557
1559
|
SellerCreated = "SELLER_CREATED",
|
|
@@ -2740,6 +2742,8 @@ export declare type Offer = {
|
|
|
2740
2742
|
protocolFee: Scalars["BigInt"];
|
|
2741
2743
|
quantityAvailable: Scalars["BigInt"];
|
|
2742
2744
|
quantityInitial: Scalars["BigInt"];
|
|
2745
|
+
/** Range */
|
|
2746
|
+
range?: Maybe<RangeEntity>;
|
|
2743
2747
|
resolutionPeriodDuration: Scalars["BigInt"];
|
|
2744
2748
|
seller: Seller;
|
|
2745
2749
|
sellerDeposit: Scalars["BigInt"];
|
|
@@ -3126,6 +3130,27 @@ export declare type Offer_Filter = {
|
|
|
3126
3130
|
quantityInitial_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
3127
3131
|
quantityInitial_not?: InputMaybe<Scalars["BigInt"]>;
|
|
3128
3132
|
quantityInitial_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
3133
|
+
range?: InputMaybe<Scalars["String"]>;
|
|
3134
|
+
range_?: InputMaybe<RangeEntity_Filter>;
|
|
3135
|
+
range_contains?: InputMaybe<Scalars["String"]>;
|
|
3136
|
+
range_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3137
|
+
range_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3138
|
+
range_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3139
|
+
range_gt?: InputMaybe<Scalars["String"]>;
|
|
3140
|
+
range_gte?: InputMaybe<Scalars["String"]>;
|
|
3141
|
+
range_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3142
|
+
range_lt?: InputMaybe<Scalars["String"]>;
|
|
3143
|
+
range_lte?: InputMaybe<Scalars["String"]>;
|
|
3144
|
+
range_not?: InputMaybe<Scalars["String"]>;
|
|
3145
|
+
range_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3146
|
+
range_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3147
|
+
range_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3148
|
+
range_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3149
|
+
range_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3150
|
+
range_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3151
|
+
range_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3152
|
+
range_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3153
|
+
range_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3129
3154
|
resolutionPeriodDuration?: InputMaybe<Scalars["BigInt"]>;
|
|
3130
3155
|
resolutionPeriodDuration_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
3131
3156
|
resolutionPeriodDuration_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -3246,6 +3271,7 @@ export declare enum Offer_OrderBy {
|
|
|
3246
3271
|
ProtocolFee = "protocolFee",
|
|
3247
3272
|
QuantityAvailable = "quantityAvailable",
|
|
3248
3273
|
QuantityInitial = "quantityInitial",
|
|
3274
|
+
Range = "range",
|
|
3249
3275
|
ResolutionPeriodDuration = "resolutionPeriodDuration",
|
|
3250
3276
|
Seller = "seller",
|
|
3251
3277
|
SellerDeposit = "sellerDeposit",
|
|
@@ -6362,6 +6388,8 @@ export declare type Query = {
|
|
|
6362
6388
|
productV1Variants: Array<ProductV1Variant>;
|
|
6363
6389
|
productV1Variation?: Maybe<ProductV1Variation>;
|
|
6364
6390
|
productV1Variations: Array<ProductV1Variation>;
|
|
6391
|
+
rangeEntities: Array<RangeEntity>;
|
|
6392
|
+
rangeEntity?: Maybe<RangeEntity>;
|
|
6365
6393
|
seller?: Maybe<Seller>;
|
|
6366
6394
|
sellers: Array<Seller>;
|
|
6367
6395
|
};
|
|
@@ -6904,6 +6932,20 @@ export declare type QueryProductV1VariationsArgs = {
|
|
|
6904
6932
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
6905
6933
|
where?: InputMaybe<ProductV1Variation_Filter>;
|
|
6906
6934
|
};
|
|
6935
|
+
export declare type QueryRangeEntitiesArgs = {
|
|
6936
|
+
block?: InputMaybe<Block_Height>;
|
|
6937
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6938
|
+
orderBy?: InputMaybe<RangeEntity_OrderBy>;
|
|
6939
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6940
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6941
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6942
|
+
where?: InputMaybe<RangeEntity_Filter>;
|
|
6943
|
+
};
|
|
6944
|
+
export declare type QueryRangeEntityArgs = {
|
|
6945
|
+
block?: InputMaybe<Block_Height>;
|
|
6946
|
+
id: Scalars["ID"];
|
|
6947
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6948
|
+
};
|
|
6907
6949
|
export declare type QuerySellerArgs = {
|
|
6908
6950
|
block?: InputMaybe<Block_Height>;
|
|
6909
6951
|
id: Scalars["ID"];
|
|
@@ -6918,6 +6960,57 @@ export declare type QuerySellersArgs = {
|
|
|
6918
6960
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
6919
6961
|
where?: InputMaybe<Seller_Filter>;
|
|
6920
6962
|
};
|
|
6963
|
+
/**
|
|
6964
|
+
* Offer Ranges
|
|
6965
|
+
*
|
|
6966
|
+
*/
|
|
6967
|
+
export declare type RangeEntity = {
|
|
6968
|
+
__typename?: "RangeEntity";
|
|
6969
|
+
end: Scalars["BigInt"];
|
|
6970
|
+
id: Scalars["ID"];
|
|
6971
|
+
owner: Scalars["Bytes"];
|
|
6972
|
+
start: Scalars["BigInt"];
|
|
6973
|
+
};
|
|
6974
|
+
export declare type RangeEntity_Filter = {
|
|
6975
|
+
/** Filter for the block changed event. */
|
|
6976
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
6977
|
+
end?: InputMaybe<Scalars["BigInt"]>;
|
|
6978
|
+
end_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
6979
|
+
end_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
6980
|
+
end_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
6981
|
+
end_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
6982
|
+
end_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
6983
|
+
end_not?: InputMaybe<Scalars["BigInt"]>;
|
|
6984
|
+
end_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
6985
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
6986
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
6987
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
6988
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
6989
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
6990
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
6991
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
6992
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
6993
|
+
owner?: InputMaybe<Scalars["Bytes"]>;
|
|
6994
|
+
owner_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
6995
|
+
owner_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6996
|
+
owner_not?: InputMaybe<Scalars["Bytes"]>;
|
|
6997
|
+
owner_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
6998
|
+
owner_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6999
|
+
start?: InputMaybe<Scalars["BigInt"]>;
|
|
7000
|
+
start_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
7001
|
+
start_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
7002
|
+
start_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
7003
|
+
start_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
7004
|
+
start_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
7005
|
+
start_not?: InputMaybe<Scalars["BigInt"]>;
|
|
7006
|
+
start_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
7007
|
+
};
|
|
7008
|
+
export declare enum RangeEntity_OrderBy {
|
|
7009
|
+
End = "end",
|
|
7010
|
+
Id = "id",
|
|
7011
|
+
Owner = "owner",
|
|
7012
|
+
Start = "start"
|
|
7013
|
+
}
|
|
6921
7014
|
export declare type Seller = Account & {
|
|
6922
7015
|
__typename?: "Seller";
|
|
6923
7016
|
active: Scalars["Boolean"];
|
|
@@ -7168,6 +7261,8 @@ export declare type Subscription = {
|
|
|
7168
7261
|
productV1Variants: Array<ProductV1Variant>;
|
|
7169
7262
|
productV1Variation?: Maybe<ProductV1Variation>;
|
|
7170
7263
|
productV1Variations: Array<ProductV1Variation>;
|
|
7264
|
+
rangeEntities: Array<RangeEntity>;
|
|
7265
|
+
rangeEntity?: Maybe<RangeEntity>;
|
|
7171
7266
|
seller?: Maybe<Seller>;
|
|
7172
7267
|
sellers: Array<Seller>;
|
|
7173
7268
|
};
|
|
@@ -7710,6 +7805,20 @@ export declare type SubscriptionProductV1VariationsArgs = {
|
|
|
7710
7805
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
7711
7806
|
where?: InputMaybe<ProductV1Variation_Filter>;
|
|
7712
7807
|
};
|
|
7808
|
+
export declare type SubscriptionRangeEntitiesArgs = {
|
|
7809
|
+
block?: InputMaybe<Block_Height>;
|
|
7810
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
7811
|
+
orderBy?: InputMaybe<RangeEntity_OrderBy>;
|
|
7812
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
7813
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
7814
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
7815
|
+
where?: InputMaybe<RangeEntity_Filter>;
|
|
7816
|
+
};
|
|
7817
|
+
export declare type SubscriptionRangeEntityArgs = {
|
|
7818
|
+
block?: InputMaybe<Block_Height>;
|
|
7819
|
+
id: Scalars["ID"];
|
|
7820
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
7821
|
+
};
|
|
7713
7822
|
export declare type SubscriptionSellerArgs = {
|
|
7714
7823
|
block?: InputMaybe<Block_Height>;
|
|
7715
7824
|
id: Scalars["ID"];
|
|
@@ -7921,6 +8030,13 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
7921
8030
|
schemaUrl: string;
|
|
7922
8031
|
type: MetadataType;
|
|
7923
8032
|
image: string;
|
|
8033
|
+
animationMetadata?: {
|
|
8034
|
+
__typename?: "AnimationMetadata";
|
|
8035
|
+
id: string;
|
|
8036
|
+
width?: number | null;
|
|
8037
|
+
height?: number | null;
|
|
8038
|
+
type?: string | null;
|
|
8039
|
+
} | null;
|
|
7924
8040
|
} | {
|
|
7925
8041
|
__typename?: "ProductV1MetadataEntity";
|
|
7926
8042
|
createdAt: string;
|
|
@@ -8136,6 +8252,20 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8136
8252
|
deliveryTime: string;
|
|
8137
8253
|
}> | null;
|
|
8138
8254
|
} | null;
|
|
8255
|
+
animationMetadata?: {
|
|
8256
|
+
__typename?: "AnimationMetadata";
|
|
8257
|
+
id: string;
|
|
8258
|
+
width?: number | null;
|
|
8259
|
+
height?: number | null;
|
|
8260
|
+
type?: string | null;
|
|
8261
|
+
} | null;
|
|
8262
|
+
} | null;
|
|
8263
|
+
range?: {
|
|
8264
|
+
__typename?: "RangeEntity";
|
|
8265
|
+
id: string;
|
|
8266
|
+
start: string;
|
|
8267
|
+
end: string;
|
|
8268
|
+
owner: string;
|
|
8139
8269
|
} | null;
|
|
8140
8270
|
}>;
|
|
8141
8271
|
exchanges?: Array<{
|
|
@@ -8468,6 +8598,13 @@ export declare type GetSellersQueryQuery = {
|
|
|
8468
8598
|
schemaUrl: string;
|
|
8469
8599
|
type: MetadataType;
|
|
8470
8600
|
image: string;
|
|
8601
|
+
animationMetadata?: {
|
|
8602
|
+
__typename?: "AnimationMetadata";
|
|
8603
|
+
id: string;
|
|
8604
|
+
width?: number | null;
|
|
8605
|
+
height?: number | null;
|
|
8606
|
+
type?: string | null;
|
|
8607
|
+
} | null;
|
|
8471
8608
|
} | {
|
|
8472
8609
|
__typename?: "ProductV1MetadataEntity";
|
|
8473
8610
|
createdAt: string;
|
|
@@ -8683,6 +8820,20 @@ export declare type GetSellersQueryQuery = {
|
|
|
8683
8820
|
deliveryTime: string;
|
|
8684
8821
|
}> | null;
|
|
8685
8822
|
} | null;
|
|
8823
|
+
animationMetadata?: {
|
|
8824
|
+
__typename?: "AnimationMetadata";
|
|
8825
|
+
id: string;
|
|
8826
|
+
width?: number | null;
|
|
8827
|
+
height?: number | null;
|
|
8828
|
+
type?: string | null;
|
|
8829
|
+
} | null;
|
|
8830
|
+
} | null;
|
|
8831
|
+
range?: {
|
|
8832
|
+
__typename?: "RangeEntity";
|
|
8833
|
+
id: string;
|
|
8834
|
+
start: string;
|
|
8835
|
+
end: string;
|
|
8836
|
+
owner: string;
|
|
8686
8837
|
} | null;
|
|
8687
8838
|
}>;
|
|
8688
8839
|
exchanges?: Array<{
|
|
@@ -9391,6 +9542,13 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9391
9542
|
schemaUrl: string;
|
|
9392
9543
|
type: MetadataType;
|
|
9393
9544
|
image: string;
|
|
9545
|
+
animationMetadata?: {
|
|
9546
|
+
__typename?: "AnimationMetadata";
|
|
9547
|
+
id: string;
|
|
9548
|
+
width?: number | null;
|
|
9549
|
+
height?: number | null;
|
|
9550
|
+
type?: string | null;
|
|
9551
|
+
} | null;
|
|
9394
9552
|
} | {
|
|
9395
9553
|
__typename?: "ProductV1MetadataEntity";
|
|
9396
9554
|
createdAt: string;
|
|
@@ -9606,6 +9764,20 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9606
9764
|
deliveryTime: string;
|
|
9607
9765
|
}> | null;
|
|
9608
9766
|
} | null;
|
|
9767
|
+
animationMetadata?: {
|
|
9768
|
+
__typename?: "AnimationMetadata";
|
|
9769
|
+
id: string;
|
|
9770
|
+
width?: number | null;
|
|
9771
|
+
height?: number | null;
|
|
9772
|
+
type?: string | null;
|
|
9773
|
+
} | null;
|
|
9774
|
+
} | null;
|
|
9775
|
+
range?: {
|
|
9776
|
+
__typename?: "RangeEntity";
|
|
9777
|
+
id: string;
|
|
9778
|
+
start: string;
|
|
9779
|
+
end: string;
|
|
9780
|
+
owner: string;
|
|
9609
9781
|
} | null;
|
|
9610
9782
|
}>;
|
|
9611
9783
|
logs?: Array<{
|
|
@@ -9873,6 +10045,13 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
9873
10045
|
schemaUrl: string;
|
|
9874
10046
|
type: MetadataType;
|
|
9875
10047
|
image: string;
|
|
10048
|
+
animationMetadata?: {
|
|
10049
|
+
__typename?: "AnimationMetadata";
|
|
10050
|
+
id: string;
|
|
10051
|
+
width?: number | null;
|
|
10052
|
+
height?: number | null;
|
|
10053
|
+
type?: string | null;
|
|
10054
|
+
} | null;
|
|
9876
10055
|
} | {
|
|
9877
10056
|
__typename?: "ProductV1MetadataEntity";
|
|
9878
10057
|
createdAt: string;
|
|
@@ -10088,6 +10267,20 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10088
10267
|
deliveryTime: string;
|
|
10089
10268
|
}> | null;
|
|
10090
10269
|
} | null;
|
|
10270
|
+
animationMetadata?: {
|
|
10271
|
+
__typename?: "AnimationMetadata";
|
|
10272
|
+
id: string;
|
|
10273
|
+
width?: number | null;
|
|
10274
|
+
height?: number | null;
|
|
10275
|
+
type?: string | null;
|
|
10276
|
+
} | null;
|
|
10277
|
+
} | null;
|
|
10278
|
+
range?: {
|
|
10279
|
+
__typename?: "RangeEntity";
|
|
10280
|
+
id: string;
|
|
10281
|
+
start: string;
|
|
10282
|
+
end: string;
|
|
10283
|
+
owner: string;
|
|
10091
10284
|
} | null;
|
|
10092
10285
|
}>;
|
|
10093
10286
|
logs?: Array<{
|
|
@@ -10352,6 +10545,13 @@ export declare type SellerFieldsFragment = {
|
|
|
10352
10545
|
schemaUrl: string;
|
|
10353
10546
|
type: MetadataType;
|
|
10354
10547
|
image: string;
|
|
10548
|
+
animationMetadata?: {
|
|
10549
|
+
__typename?: "AnimationMetadata";
|
|
10550
|
+
id: string;
|
|
10551
|
+
width?: number | null;
|
|
10552
|
+
height?: number | null;
|
|
10553
|
+
type?: string | null;
|
|
10554
|
+
} | null;
|
|
10355
10555
|
} | {
|
|
10356
10556
|
__typename?: "ProductV1MetadataEntity";
|
|
10357
10557
|
createdAt: string;
|
|
@@ -10567,6 +10767,20 @@ export declare type SellerFieldsFragment = {
|
|
|
10567
10767
|
deliveryTime: string;
|
|
10568
10768
|
}> | null;
|
|
10569
10769
|
} | null;
|
|
10770
|
+
animationMetadata?: {
|
|
10771
|
+
__typename?: "AnimationMetadata";
|
|
10772
|
+
id: string;
|
|
10773
|
+
width?: number | null;
|
|
10774
|
+
height?: number | null;
|
|
10775
|
+
type?: string | null;
|
|
10776
|
+
} | null;
|
|
10777
|
+
} | null;
|
|
10778
|
+
range?: {
|
|
10779
|
+
__typename?: "RangeEntity";
|
|
10780
|
+
id: string;
|
|
10781
|
+
start: string;
|
|
10782
|
+
end: string;
|
|
10783
|
+
owner: string;
|
|
10570
10784
|
} | null;
|
|
10571
10785
|
}>;
|
|
10572
10786
|
exchanges?: Array<{
|
|
@@ -11051,6 +11265,13 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11051
11265
|
schemaUrl: string;
|
|
11052
11266
|
type: MetadataType;
|
|
11053
11267
|
image: string;
|
|
11268
|
+
animationMetadata?: {
|
|
11269
|
+
__typename?: "AnimationMetadata";
|
|
11270
|
+
id: string;
|
|
11271
|
+
width?: number | null;
|
|
11272
|
+
height?: number | null;
|
|
11273
|
+
type?: string | null;
|
|
11274
|
+
} | null;
|
|
11054
11275
|
} | {
|
|
11055
11276
|
__typename?: "ProductV1MetadataEntity";
|
|
11056
11277
|
createdAt: string;
|
|
@@ -11266,6 +11487,20 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11266
11487
|
deliveryTime: string;
|
|
11267
11488
|
}> | null;
|
|
11268
11489
|
} | null;
|
|
11490
|
+
animationMetadata?: {
|
|
11491
|
+
__typename?: "AnimationMetadata";
|
|
11492
|
+
id: string;
|
|
11493
|
+
width?: number | null;
|
|
11494
|
+
height?: number | null;
|
|
11495
|
+
type?: string | null;
|
|
11496
|
+
} | null;
|
|
11497
|
+
} | null;
|
|
11498
|
+
range?: {
|
|
11499
|
+
__typename?: "RangeEntity";
|
|
11500
|
+
id: string;
|
|
11501
|
+
start: string;
|
|
11502
|
+
end: string;
|
|
11503
|
+
owner: string;
|
|
11269
11504
|
} | null;
|
|
11270
11505
|
}>;
|
|
11271
11506
|
logs?: Array<{
|
|
@@ -11871,6 +12106,13 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
11871
12106
|
schemaUrl: string;
|
|
11872
12107
|
type: MetadataType;
|
|
11873
12108
|
image: string;
|
|
12109
|
+
animationMetadata?: {
|
|
12110
|
+
__typename?: "AnimationMetadata";
|
|
12111
|
+
id: string;
|
|
12112
|
+
width?: number | null;
|
|
12113
|
+
height?: number | null;
|
|
12114
|
+
type?: string | null;
|
|
12115
|
+
} | null;
|
|
11874
12116
|
} | {
|
|
11875
12117
|
__typename?: "ProductV1MetadataEntity";
|
|
11876
12118
|
createdAt: string;
|
|
@@ -12086,6 +12328,20 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12086
12328
|
deliveryTime: string;
|
|
12087
12329
|
}> | null;
|
|
12088
12330
|
} | null;
|
|
12331
|
+
animationMetadata?: {
|
|
12332
|
+
__typename?: "AnimationMetadata";
|
|
12333
|
+
id: string;
|
|
12334
|
+
width?: number | null;
|
|
12335
|
+
height?: number | null;
|
|
12336
|
+
type?: string | null;
|
|
12337
|
+
} | null;
|
|
12338
|
+
} | null;
|
|
12339
|
+
range?: {
|
|
12340
|
+
__typename?: "RangeEntity";
|
|
12341
|
+
id: string;
|
|
12342
|
+
start: string;
|
|
12343
|
+
end: string;
|
|
12344
|
+
owner: string;
|
|
12089
12345
|
} | null;
|
|
12090
12346
|
}>;
|
|
12091
12347
|
funds?: Array<{
|
|
@@ -12228,6 +12484,13 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12228
12484
|
schemaUrl: string;
|
|
12229
12485
|
type: MetadataType;
|
|
12230
12486
|
image: string;
|
|
12487
|
+
animationMetadata?: {
|
|
12488
|
+
__typename?: "AnimationMetadata";
|
|
12489
|
+
id: string;
|
|
12490
|
+
width?: number | null;
|
|
12491
|
+
height?: number | null;
|
|
12492
|
+
type?: string | null;
|
|
12493
|
+
} | null;
|
|
12231
12494
|
} | {
|
|
12232
12495
|
__typename?: "ProductV1MetadataEntity";
|
|
12233
12496
|
createdAt: string;
|
|
@@ -12443,6 +12706,20 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12443
12706
|
deliveryTime: string;
|
|
12444
12707
|
}> | null;
|
|
12445
12708
|
} | null;
|
|
12709
|
+
animationMetadata?: {
|
|
12710
|
+
__typename?: "AnimationMetadata";
|
|
12711
|
+
id: string;
|
|
12712
|
+
width?: number | null;
|
|
12713
|
+
height?: number | null;
|
|
12714
|
+
type?: string | null;
|
|
12715
|
+
} | null;
|
|
12716
|
+
} | null;
|
|
12717
|
+
range?: {
|
|
12718
|
+
__typename?: "RangeEntity";
|
|
12719
|
+
id: string;
|
|
12720
|
+
start: string;
|
|
12721
|
+
end: string;
|
|
12722
|
+
owner: string;
|
|
12446
12723
|
} | null;
|
|
12447
12724
|
}>;
|
|
12448
12725
|
funds?: Array<{
|
|
@@ -12564,6 +12841,13 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12564
12841
|
schemaUrl: string;
|
|
12565
12842
|
type: MetadataType;
|
|
12566
12843
|
image: string;
|
|
12844
|
+
animationMetadata?: {
|
|
12845
|
+
__typename?: "AnimationMetadata";
|
|
12846
|
+
id: string;
|
|
12847
|
+
width?: number | null;
|
|
12848
|
+
height?: number | null;
|
|
12849
|
+
type?: string | null;
|
|
12850
|
+
} | null;
|
|
12567
12851
|
} | {
|
|
12568
12852
|
__typename?: "ProductV1MetadataEntity";
|
|
12569
12853
|
createdAt: string;
|
|
@@ -12779,6 +13063,20 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12779
13063
|
deliveryTime: string;
|
|
12780
13064
|
}> | null;
|
|
12781
13065
|
} | null;
|
|
13066
|
+
animationMetadata?: {
|
|
13067
|
+
__typename?: "AnimationMetadata";
|
|
13068
|
+
id: string;
|
|
13069
|
+
width?: number | null;
|
|
13070
|
+
height?: number | null;
|
|
13071
|
+
type?: string | null;
|
|
13072
|
+
} | null;
|
|
13073
|
+
} | null;
|
|
13074
|
+
range?: {
|
|
13075
|
+
__typename?: "RangeEntity";
|
|
13076
|
+
id: string;
|
|
13077
|
+
start: string;
|
|
13078
|
+
end: string;
|
|
13079
|
+
owner: string;
|
|
12782
13080
|
} | null;
|
|
12783
13081
|
}>;
|
|
12784
13082
|
funds?: Array<{
|
|
@@ -13146,6 +13444,13 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13146
13444
|
schemaUrl: string;
|
|
13147
13445
|
type: MetadataType;
|
|
13148
13446
|
image: string;
|
|
13447
|
+
animationMetadata?: {
|
|
13448
|
+
__typename?: "AnimationMetadata";
|
|
13449
|
+
id: string;
|
|
13450
|
+
width?: number | null;
|
|
13451
|
+
height?: number | null;
|
|
13452
|
+
type?: string | null;
|
|
13453
|
+
} | null;
|
|
13149
13454
|
} | {
|
|
13150
13455
|
__typename?: "ProductV1MetadataEntity";
|
|
13151
13456
|
createdAt: string;
|
|
@@ -13361,6 +13666,20 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13361
13666
|
deliveryTime: string;
|
|
13362
13667
|
}> | null;
|
|
13363
13668
|
} | null;
|
|
13669
|
+
animationMetadata?: {
|
|
13670
|
+
__typename?: "AnimationMetadata";
|
|
13671
|
+
id: string;
|
|
13672
|
+
width?: number | null;
|
|
13673
|
+
height?: number | null;
|
|
13674
|
+
type?: string | null;
|
|
13675
|
+
} | null;
|
|
13676
|
+
} | null;
|
|
13677
|
+
range?: {
|
|
13678
|
+
__typename?: "RangeEntity";
|
|
13679
|
+
id: string;
|
|
13680
|
+
start: string;
|
|
13681
|
+
end: string;
|
|
13682
|
+
owner: string;
|
|
13364
13683
|
} | null;
|
|
13365
13684
|
};
|
|
13366
13685
|
dispute?: {
|
|
@@ -13527,6 +13846,13 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13527
13846
|
schemaUrl: string;
|
|
13528
13847
|
type: MetadataType;
|
|
13529
13848
|
image: string;
|
|
13849
|
+
animationMetadata?: {
|
|
13850
|
+
__typename?: "AnimationMetadata";
|
|
13851
|
+
id: string;
|
|
13852
|
+
width?: number | null;
|
|
13853
|
+
height?: number | null;
|
|
13854
|
+
type?: string | null;
|
|
13855
|
+
} | null;
|
|
13530
13856
|
} | {
|
|
13531
13857
|
__typename?: "ProductV1MetadataEntity";
|
|
13532
13858
|
createdAt: string;
|
|
@@ -13742,6 +14068,20 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13742
14068
|
deliveryTime: string;
|
|
13743
14069
|
}> | null;
|
|
13744
14070
|
} | null;
|
|
14071
|
+
animationMetadata?: {
|
|
14072
|
+
__typename?: "AnimationMetadata";
|
|
14073
|
+
id: string;
|
|
14074
|
+
width?: number | null;
|
|
14075
|
+
height?: number | null;
|
|
14076
|
+
type?: string | null;
|
|
14077
|
+
} | null;
|
|
14078
|
+
} | null;
|
|
14079
|
+
range?: {
|
|
14080
|
+
__typename?: "RangeEntity";
|
|
14081
|
+
id: string;
|
|
14082
|
+
start: string;
|
|
14083
|
+
end: string;
|
|
14084
|
+
owner: string;
|
|
13745
14085
|
} | null;
|
|
13746
14086
|
};
|
|
13747
14087
|
dispute?: {
|
|
@@ -13899,6 +14239,13 @@ export declare type ExchangeFieldsFragment = {
|
|
|
13899
14239
|
schemaUrl: string;
|
|
13900
14240
|
type: MetadataType;
|
|
13901
14241
|
image: string;
|
|
14242
|
+
animationMetadata?: {
|
|
14243
|
+
__typename?: "AnimationMetadata";
|
|
14244
|
+
id: string;
|
|
14245
|
+
width?: number | null;
|
|
14246
|
+
height?: number | null;
|
|
14247
|
+
type?: string | null;
|
|
14248
|
+
} | null;
|
|
13902
14249
|
} | {
|
|
13903
14250
|
__typename?: "ProductV1MetadataEntity";
|
|
13904
14251
|
createdAt: string;
|
|
@@ -14114,6 +14461,20 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14114
14461
|
deliveryTime: string;
|
|
14115
14462
|
}> | null;
|
|
14116
14463
|
} | null;
|
|
14464
|
+
animationMetadata?: {
|
|
14465
|
+
__typename?: "AnimationMetadata";
|
|
14466
|
+
id: string;
|
|
14467
|
+
width?: number | null;
|
|
14468
|
+
height?: number | null;
|
|
14469
|
+
type?: string | null;
|
|
14470
|
+
} | null;
|
|
14471
|
+
} | null;
|
|
14472
|
+
range?: {
|
|
14473
|
+
__typename?: "RangeEntity";
|
|
14474
|
+
id: string;
|
|
14475
|
+
start: string;
|
|
14476
|
+
end: string;
|
|
14477
|
+
owner: string;
|
|
14117
14478
|
} | null;
|
|
14118
14479
|
};
|
|
14119
14480
|
dispute?: {
|
|
@@ -14305,6 +14666,13 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14305
14666
|
quantityAvailable: string;
|
|
14306
14667
|
numberOfCommits: string;
|
|
14307
14668
|
numberOfRedemptions: string;
|
|
14669
|
+
animationMetadata?: {
|
|
14670
|
+
__typename?: "AnimationMetadata";
|
|
14671
|
+
id: string;
|
|
14672
|
+
width?: number | null;
|
|
14673
|
+
height?: number | null;
|
|
14674
|
+
type?: string | null;
|
|
14675
|
+
} | null;
|
|
14308
14676
|
attributes?: Array<{
|
|
14309
14677
|
__typename?: "MetadataAttribute";
|
|
14310
14678
|
traitType: string;
|
|
@@ -14415,6 +14783,13 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14415
14783
|
schemaUrl: string;
|
|
14416
14784
|
type: MetadataType;
|
|
14417
14785
|
image: string;
|
|
14786
|
+
animationMetadata?: {
|
|
14787
|
+
__typename?: "AnimationMetadata";
|
|
14788
|
+
id: string;
|
|
14789
|
+
width?: number | null;
|
|
14790
|
+
height?: number | null;
|
|
14791
|
+
type?: string | null;
|
|
14792
|
+
} | null;
|
|
14418
14793
|
} | {
|
|
14419
14794
|
__typename?: "ProductV1MetadataEntity";
|
|
14420
14795
|
createdAt: string;
|
|
@@ -14630,6 +15005,20 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14630
15005
|
deliveryTime: string;
|
|
14631
15006
|
}> | null;
|
|
14632
15007
|
} | null;
|
|
15008
|
+
animationMetadata?: {
|
|
15009
|
+
__typename?: "AnimationMetadata";
|
|
15010
|
+
id: string;
|
|
15011
|
+
width?: number | null;
|
|
15012
|
+
height?: number | null;
|
|
15013
|
+
type?: string | null;
|
|
15014
|
+
} | null;
|
|
15015
|
+
} | null;
|
|
15016
|
+
range?: {
|
|
15017
|
+
__typename?: "RangeEntity";
|
|
15018
|
+
id: string;
|
|
15019
|
+
start: string;
|
|
15020
|
+
end: string;
|
|
15021
|
+
owner: string;
|
|
14633
15022
|
} | null;
|
|
14634
15023
|
};
|
|
14635
15024
|
seller: {
|
|
@@ -14684,6 +15073,13 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14684
15073
|
quantityAvailable: string;
|
|
14685
15074
|
numberOfCommits: string;
|
|
14686
15075
|
numberOfRedemptions: string;
|
|
15076
|
+
animationMetadata?: {
|
|
15077
|
+
__typename?: "AnimationMetadata";
|
|
15078
|
+
id: string;
|
|
15079
|
+
width?: number | null;
|
|
15080
|
+
height?: number | null;
|
|
15081
|
+
type?: string | null;
|
|
15082
|
+
} | null;
|
|
14687
15083
|
attributes?: Array<{
|
|
14688
15084
|
__typename?: "MetadataAttribute";
|
|
14689
15085
|
traitType: string;
|
|
@@ -14794,6 +15190,13 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14794
15190
|
schemaUrl: string;
|
|
14795
15191
|
type: MetadataType;
|
|
14796
15192
|
image: string;
|
|
15193
|
+
animationMetadata?: {
|
|
15194
|
+
__typename?: "AnimationMetadata";
|
|
15195
|
+
id: string;
|
|
15196
|
+
width?: number | null;
|
|
15197
|
+
height?: number | null;
|
|
15198
|
+
type?: string | null;
|
|
15199
|
+
} | null;
|
|
14797
15200
|
} | {
|
|
14798
15201
|
__typename?: "ProductV1MetadataEntity";
|
|
14799
15202
|
createdAt: string;
|
|
@@ -15009,6 +15412,20 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15009
15412
|
deliveryTime: string;
|
|
15010
15413
|
}> | null;
|
|
15011
15414
|
} | null;
|
|
15415
|
+
animationMetadata?: {
|
|
15416
|
+
__typename?: "AnimationMetadata";
|
|
15417
|
+
id: string;
|
|
15418
|
+
width?: number | null;
|
|
15419
|
+
height?: number | null;
|
|
15420
|
+
type?: string | null;
|
|
15421
|
+
} | null;
|
|
15422
|
+
} | null;
|
|
15423
|
+
range?: {
|
|
15424
|
+
__typename?: "RangeEntity";
|
|
15425
|
+
id: string;
|
|
15426
|
+
start: string;
|
|
15427
|
+
end: string;
|
|
15428
|
+
owner: string;
|
|
15012
15429
|
} | null;
|
|
15013
15430
|
};
|
|
15014
15431
|
seller: {
|
|
@@ -15054,6 +15471,13 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15054
15471
|
quantityAvailable: string;
|
|
15055
15472
|
numberOfCommits: string;
|
|
15056
15473
|
numberOfRedemptions: string;
|
|
15474
|
+
animationMetadata?: {
|
|
15475
|
+
__typename?: "AnimationMetadata";
|
|
15476
|
+
id: string;
|
|
15477
|
+
width?: number | null;
|
|
15478
|
+
height?: number | null;
|
|
15479
|
+
type?: string | null;
|
|
15480
|
+
} | null;
|
|
15057
15481
|
attributes?: Array<{
|
|
15058
15482
|
__typename?: "MetadataAttribute";
|
|
15059
15483
|
traitType: string;
|
|
@@ -15164,6 +15588,13 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15164
15588
|
schemaUrl: string;
|
|
15165
15589
|
type: MetadataType;
|
|
15166
15590
|
image: string;
|
|
15591
|
+
animationMetadata?: {
|
|
15592
|
+
__typename?: "AnimationMetadata";
|
|
15593
|
+
id: string;
|
|
15594
|
+
width?: number | null;
|
|
15595
|
+
height?: number | null;
|
|
15596
|
+
type?: string | null;
|
|
15597
|
+
} | null;
|
|
15167
15598
|
} | {
|
|
15168
15599
|
__typename?: "ProductV1MetadataEntity";
|
|
15169
15600
|
createdAt: string;
|
|
@@ -15379,6 +15810,20 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15379
15810
|
deliveryTime: string;
|
|
15380
15811
|
}> | null;
|
|
15381
15812
|
} | null;
|
|
15813
|
+
animationMetadata?: {
|
|
15814
|
+
__typename?: "AnimationMetadata";
|
|
15815
|
+
id: string;
|
|
15816
|
+
width?: number | null;
|
|
15817
|
+
height?: number | null;
|
|
15818
|
+
type?: string | null;
|
|
15819
|
+
} | null;
|
|
15820
|
+
} | null;
|
|
15821
|
+
range?: {
|
|
15822
|
+
__typename?: "RangeEntity";
|
|
15823
|
+
id: string;
|
|
15824
|
+
start: string;
|
|
15825
|
+
end: string;
|
|
15826
|
+
owner: string;
|
|
15382
15827
|
} | null;
|
|
15383
15828
|
};
|
|
15384
15829
|
seller: {
|
|
@@ -15423,6 +15868,13 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15423
15868
|
quantityAvailable: string;
|
|
15424
15869
|
numberOfCommits: string;
|
|
15425
15870
|
numberOfRedemptions: string;
|
|
15871
|
+
animationMetadata?: {
|
|
15872
|
+
__typename?: "AnimationMetadata";
|
|
15873
|
+
id: string;
|
|
15874
|
+
width?: number | null;
|
|
15875
|
+
height?: number | null;
|
|
15876
|
+
type?: string | null;
|
|
15877
|
+
} | null;
|
|
15426
15878
|
attributes?: Array<{
|
|
15427
15879
|
__typename?: "MetadataAttribute";
|
|
15428
15880
|
traitType: string;
|
|
@@ -15533,6 +15985,13 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15533
15985
|
schemaUrl: string;
|
|
15534
15986
|
type: MetadataType;
|
|
15535
15987
|
image: string;
|
|
15988
|
+
animationMetadata?: {
|
|
15989
|
+
__typename?: "AnimationMetadata";
|
|
15990
|
+
id: string;
|
|
15991
|
+
width?: number | null;
|
|
15992
|
+
height?: number | null;
|
|
15993
|
+
type?: string | null;
|
|
15994
|
+
} | null;
|
|
15536
15995
|
} | {
|
|
15537
15996
|
__typename?: "ProductV1MetadataEntity";
|
|
15538
15997
|
createdAt: string;
|
|
@@ -15748,6 +16207,20 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15748
16207
|
deliveryTime: string;
|
|
15749
16208
|
}> | null;
|
|
15750
16209
|
} | null;
|
|
16210
|
+
animationMetadata?: {
|
|
16211
|
+
__typename?: "AnimationMetadata";
|
|
16212
|
+
id: string;
|
|
16213
|
+
width?: number | null;
|
|
16214
|
+
height?: number | null;
|
|
16215
|
+
type?: string | null;
|
|
16216
|
+
} | null;
|
|
16217
|
+
} | null;
|
|
16218
|
+
range?: {
|
|
16219
|
+
__typename?: "RangeEntity";
|
|
16220
|
+
id: string;
|
|
16221
|
+
start: string;
|
|
16222
|
+
end: string;
|
|
16223
|
+
owner: string;
|
|
15751
16224
|
} | null;
|
|
15752
16225
|
};
|
|
15753
16226
|
seller: {
|
|
@@ -16121,6 +16594,13 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16121
16594
|
schemaUrl: string;
|
|
16122
16595
|
type: MetadataType;
|
|
16123
16596
|
image: string;
|
|
16597
|
+
animationMetadata?: {
|
|
16598
|
+
__typename?: "AnimationMetadata";
|
|
16599
|
+
id: string;
|
|
16600
|
+
width?: number | null;
|
|
16601
|
+
height?: number | null;
|
|
16602
|
+
type?: string | null;
|
|
16603
|
+
} | null;
|
|
16124
16604
|
} | {
|
|
16125
16605
|
__typename?: "ProductV1MetadataEntity";
|
|
16126
16606
|
createdAt: string;
|
|
@@ -16336,6 +16816,20 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16336
16816
|
deliveryTime: string;
|
|
16337
16817
|
}> | null;
|
|
16338
16818
|
} | null;
|
|
16819
|
+
animationMetadata?: {
|
|
16820
|
+
__typename?: "AnimationMetadata";
|
|
16821
|
+
id: string;
|
|
16822
|
+
width?: number | null;
|
|
16823
|
+
height?: number | null;
|
|
16824
|
+
type?: string | null;
|
|
16825
|
+
} | null;
|
|
16826
|
+
} | null;
|
|
16827
|
+
range?: {
|
|
16828
|
+
__typename?: "RangeEntity";
|
|
16829
|
+
id: string;
|
|
16830
|
+
start: string;
|
|
16831
|
+
end: string;
|
|
16832
|
+
owner: string;
|
|
16339
16833
|
} | null;
|
|
16340
16834
|
};
|
|
16341
16835
|
variations?: Array<{
|
|
@@ -16639,6 +17133,13 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16639
17133
|
schemaUrl: string;
|
|
16640
17134
|
type: MetadataType;
|
|
16641
17135
|
image: string;
|
|
17136
|
+
animationMetadata?: {
|
|
17137
|
+
__typename?: "AnimationMetadata";
|
|
17138
|
+
id: string;
|
|
17139
|
+
width?: number | null;
|
|
17140
|
+
height?: number | null;
|
|
17141
|
+
type?: string | null;
|
|
17142
|
+
} | null;
|
|
16642
17143
|
} | {
|
|
16643
17144
|
__typename?: "ProductV1MetadataEntity";
|
|
16644
17145
|
createdAt: string;
|
|
@@ -16854,6 +17355,20 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16854
17355
|
deliveryTime: string;
|
|
16855
17356
|
}> | null;
|
|
16856
17357
|
} | null;
|
|
17358
|
+
animationMetadata?: {
|
|
17359
|
+
__typename?: "AnimationMetadata";
|
|
17360
|
+
id: string;
|
|
17361
|
+
width?: number | null;
|
|
17362
|
+
height?: number | null;
|
|
17363
|
+
type?: string | null;
|
|
17364
|
+
} | null;
|
|
17365
|
+
} | null;
|
|
17366
|
+
range?: {
|
|
17367
|
+
__typename?: "RangeEntity";
|
|
17368
|
+
id: string;
|
|
17369
|
+
start: string;
|
|
17370
|
+
end: string;
|
|
17371
|
+
owner: string;
|
|
16857
17372
|
} | null;
|
|
16858
17373
|
};
|
|
16859
17374
|
variations?: Array<{
|
|
@@ -17169,6 +17684,13 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17169
17684
|
schemaUrl: string;
|
|
17170
17685
|
type: MetadataType;
|
|
17171
17686
|
image: string;
|
|
17687
|
+
animationMetadata?: {
|
|
17688
|
+
__typename?: "AnimationMetadata";
|
|
17689
|
+
id: string;
|
|
17690
|
+
width?: number | null;
|
|
17691
|
+
height?: number | null;
|
|
17692
|
+
type?: string | null;
|
|
17693
|
+
} | null;
|
|
17172
17694
|
} | {
|
|
17173
17695
|
__typename?: "ProductV1MetadataEntity";
|
|
17174
17696
|
createdAt: string;
|
|
@@ -17384,6 +17906,20 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17384
17906
|
deliveryTime: string;
|
|
17385
17907
|
}> | null;
|
|
17386
17908
|
} | null;
|
|
17909
|
+
animationMetadata?: {
|
|
17910
|
+
__typename?: "AnimationMetadata";
|
|
17911
|
+
id: string;
|
|
17912
|
+
width?: number | null;
|
|
17913
|
+
height?: number | null;
|
|
17914
|
+
type?: string | null;
|
|
17915
|
+
} | null;
|
|
17916
|
+
} | null;
|
|
17917
|
+
range?: {
|
|
17918
|
+
__typename?: "RangeEntity";
|
|
17919
|
+
id: string;
|
|
17920
|
+
start: string;
|
|
17921
|
+
end: string;
|
|
17922
|
+
owner: string;
|
|
17387
17923
|
} | null;
|
|
17388
17924
|
};
|
|
17389
17925
|
seller: {
|
|
@@ -17784,6 +18320,13 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17784
18320
|
schemaUrl: string;
|
|
17785
18321
|
type: MetadataType;
|
|
17786
18322
|
image: string;
|
|
18323
|
+
animationMetadata?: {
|
|
18324
|
+
__typename?: "AnimationMetadata";
|
|
18325
|
+
id: string;
|
|
18326
|
+
width?: number | null;
|
|
18327
|
+
height?: number | null;
|
|
18328
|
+
type?: string | null;
|
|
18329
|
+
} | null;
|
|
17787
18330
|
} | {
|
|
17788
18331
|
__typename?: "ProductV1MetadataEntity";
|
|
17789
18332
|
createdAt: string;
|
|
@@ -17999,6 +18542,20 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17999
18542
|
deliveryTime: string;
|
|
18000
18543
|
}> | null;
|
|
18001
18544
|
} | null;
|
|
18545
|
+
animationMetadata?: {
|
|
18546
|
+
__typename?: "AnimationMetadata";
|
|
18547
|
+
id: string;
|
|
18548
|
+
width?: number | null;
|
|
18549
|
+
height?: number | null;
|
|
18550
|
+
type?: string | null;
|
|
18551
|
+
} | null;
|
|
18552
|
+
} | null;
|
|
18553
|
+
range?: {
|
|
18554
|
+
__typename?: "RangeEntity";
|
|
18555
|
+
id: string;
|
|
18556
|
+
start: string;
|
|
18557
|
+
end: string;
|
|
18558
|
+
owner: string;
|
|
18002
18559
|
} | null;
|
|
18003
18560
|
};
|
|
18004
18561
|
seller: {
|
|
@@ -18390,6 +18947,13 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18390
18947
|
schemaUrl: string;
|
|
18391
18948
|
type: MetadataType;
|
|
18392
18949
|
image: string;
|
|
18950
|
+
animationMetadata?: {
|
|
18951
|
+
__typename?: "AnimationMetadata";
|
|
18952
|
+
id: string;
|
|
18953
|
+
width?: number | null;
|
|
18954
|
+
height?: number | null;
|
|
18955
|
+
type?: string | null;
|
|
18956
|
+
} | null;
|
|
18393
18957
|
} | {
|
|
18394
18958
|
__typename?: "ProductV1MetadataEntity";
|
|
18395
18959
|
createdAt: string;
|
|
@@ -18605,6 +19169,20 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18605
19169
|
deliveryTime: string;
|
|
18606
19170
|
}> | null;
|
|
18607
19171
|
} | null;
|
|
19172
|
+
animationMetadata?: {
|
|
19173
|
+
__typename?: "AnimationMetadata";
|
|
19174
|
+
id: string;
|
|
19175
|
+
width?: number | null;
|
|
19176
|
+
height?: number | null;
|
|
19177
|
+
type?: string | null;
|
|
19178
|
+
} | null;
|
|
19179
|
+
} | null;
|
|
19180
|
+
range?: {
|
|
19181
|
+
__typename?: "RangeEntity";
|
|
19182
|
+
id: string;
|
|
19183
|
+
start: string;
|
|
19184
|
+
end: string;
|
|
19185
|
+
owner: string;
|
|
18608
19186
|
} | null;
|
|
18609
19187
|
};
|
|
18610
19188
|
seller: {
|
|
@@ -18995,6 +19573,13 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18995
19573
|
schemaUrl: string;
|
|
18996
19574
|
type: MetadataType;
|
|
18997
19575
|
image: string;
|
|
19576
|
+
animationMetadata?: {
|
|
19577
|
+
__typename?: "AnimationMetadata";
|
|
19578
|
+
id: string;
|
|
19579
|
+
width?: number | null;
|
|
19580
|
+
height?: number | null;
|
|
19581
|
+
type?: string | null;
|
|
19582
|
+
} | null;
|
|
18998
19583
|
} | {
|
|
18999
19584
|
__typename?: "ProductV1MetadataEntity";
|
|
19000
19585
|
createdAt: string;
|
|
@@ -19210,6 +19795,20 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19210
19795
|
deliveryTime: string;
|
|
19211
19796
|
}> | null;
|
|
19212
19797
|
} | null;
|
|
19798
|
+
animationMetadata?: {
|
|
19799
|
+
__typename?: "AnimationMetadata";
|
|
19800
|
+
id: string;
|
|
19801
|
+
width?: number | null;
|
|
19802
|
+
height?: number | null;
|
|
19803
|
+
type?: string | null;
|
|
19804
|
+
} | null;
|
|
19805
|
+
} | null;
|
|
19806
|
+
range?: {
|
|
19807
|
+
__typename?: "RangeEntity";
|
|
19808
|
+
id: string;
|
|
19809
|
+
start: string;
|
|
19810
|
+
end: string;
|
|
19811
|
+
owner: string;
|
|
19213
19812
|
} | null;
|
|
19214
19813
|
};
|
|
19215
19814
|
seller: {
|
|
@@ -19734,6 +20333,13 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19734
20333
|
schemaUrl: string;
|
|
19735
20334
|
type: MetadataType;
|
|
19736
20335
|
image: string;
|
|
20336
|
+
animationMetadata?: {
|
|
20337
|
+
__typename?: "AnimationMetadata";
|
|
20338
|
+
id: string;
|
|
20339
|
+
width?: number | null;
|
|
20340
|
+
height?: number | null;
|
|
20341
|
+
type?: string | null;
|
|
20342
|
+
} | null;
|
|
19737
20343
|
} | {
|
|
19738
20344
|
__typename?: "ProductV1MetadataEntity";
|
|
19739
20345
|
createdAt: string;
|
|
@@ -19949,6 +20555,20 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19949
20555
|
deliveryTime: string;
|
|
19950
20556
|
}> | null;
|
|
19951
20557
|
} | null;
|
|
20558
|
+
animationMetadata?: {
|
|
20559
|
+
__typename?: "AnimationMetadata";
|
|
20560
|
+
id: string;
|
|
20561
|
+
width?: number | null;
|
|
20562
|
+
height?: number | null;
|
|
20563
|
+
type?: string | null;
|
|
20564
|
+
} | null;
|
|
20565
|
+
} | null;
|
|
20566
|
+
range?: {
|
|
20567
|
+
__typename?: "RangeEntity";
|
|
20568
|
+
id: string;
|
|
20569
|
+
start: string;
|
|
20570
|
+
end: string;
|
|
20571
|
+
owner: string;
|
|
19952
20572
|
} | null;
|
|
19953
20573
|
};
|
|
19954
20574
|
variations?: Array<{
|
|
@@ -20242,6 +20862,13 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20242
20862
|
schemaUrl: string;
|
|
20243
20863
|
type: MetadataType;
|
|
20244
20864
|
image: string;
|
|
20865
|
+
animationMetadata?: {
|
|
20866
|
+
__typename?: "AnimationMetadata";
|
|
20867
|
+
id: string;
|
|
20868
|
+
width?: number | null;
|
|
20869
|
+
height?: number | null;
|
|
20870
|
+
type?: string | null;
|
|
20871
|
+
} | null;
|
|
20245
20872
|
} | {
|
|
20246
20873
|
__typename?: "ProductV1MetadataEntity";
|
|
20247
20874
|
createdAt: string;
|
|
@@ -20457,6 +21084,20 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20457
21084
|
deliveryTime: string;
|
|
20458
21085
|
}> | null;
|
|
20459
21086
|
} | null;
|
|
21087
|
+
animationMetadata?: {
|
|
21088
|
+
__typename?: "AnimationMetadata";
|
|
21089
|
+
id: string;
|
|
21090
|
+
width?: number | null;
|
|
21091
|
+
height?: number | null;
|
|
21092
|
+
type?: string | null;
|
|
21093
|
+
} | null;
|
|
21094
|
+
} | null;
|
|
21095
|
+
range?: {
|
|
21096
|
+
__typename?: "RangeEntity";
|
|
21097
|
+
id: string;
|
|
21098
|
+
start: string;
|
|
21099
|
+
end: string;
|
|
21100
|
+
owner: string;
|
|
20460
21101
|
} | null;
|
|
20461
21102
|
};
|
|
20462
21103
|
variations?: Array<{
|
|
@@ -20884,6 +21525,13 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
20884
21525
|
schemaUrl: string;
|
|
20885
21526
|
type: MetadataType;
|
|
20886
21527
|
image: string;
|
|
21528
|
+
animationMetadata?: {
|
|
21529
|
+
__typename?: "AnimationMetadata";
|
|
21530
|
+
id: string;
|
|
21531
|
+
width?: number | null;
|
|
21532
|
+
height?: number | null;
|
|
21533
|
+
type?: string | null;
|
|
21534
|
+
} | null;
|
|
20887
21535
|
} | {
|
|
20888
21536
|
__typename?: "ProductV1MetadataEntity";
|
|
20889
21537
|
createdAt: string;
|
|
@@ -21099,6 +21747,20 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21099
21747
|
deliveryTime: string;
|
|
21100
21748
|
}> | null;
|
|
21101
21749
|
} | null;
|
|
21750
|
+
animationMetadata?: {
|
|
21751
|
+
__typename?: "AnimationMetadata";
|
|
21752
|
+
id: string;
|
|
21753
|
+
width?: number | null;
|
|
21754
|
+
height?: number | null;
|
|
21755
|
+
type?: string | null;
|
|
21756
|
+
} | null;
|
|
21757
|
+
} | null;
|
|
21758
|
+
range?: {
|
|
21759
|
+
__typename?: "RangeEntity";
|
|
21760
|
+
id: string;
|
|
21761
|
+
start: string;
|
|
21762
|
+
end: string;
|
|
21763
|
+
owner: string;
|
|
21102
21764
|
} | null;
|
|
21103
21765
|
} | null;
|
|
21104
21766
|
};
|
|
@@ -21271,6 +21933,13 @@ export declare type GetOffersQueryQuery = {
|
|
|
21271
21933
|
schemaUrl: string;
|
|
21272
21934
|
type: MetadataType;
|
|
21273
21935
|
image: string;
|
|
21936
|
+
animationMetadata?: {
|
|
21937
|
+
__typename?: "AnimationMetadata";
|
|
21938
|
+
id: string;
|
|
21939
|
+
width?: number | null;
|
|
21940
|
+
height?: number | null;
|
|
21941
|
+
type?: string | null;
|
|
21942
|
+
} | null;
|
|
21274
21943
|
} | {
|
|
21275
21944
|
__typename?: "ProductV1MetadataEntity";
|
|
21276
21945
|
createdAt: string;
|
|
@@ -21486,6 +22155,20 @@ export declare type GetOffersQueryQuery = {
|
|
|
21486
22155
|
deliveryTime: string;
|
|
21487
22156
|
}> | null;
|
|
21488
22157
|
} | null;
|
|
22158
|
+
animationMetadata?: {
|
|
22159
|
+
__typename?: "AnimationMetadata";
|
|
22160
|
+
id: string;
|
|
22161
|
+
width?: number | null;
|
|
22162
|
+
height?: number | null;
|
|
22163
|
+
type?: string | null;
|
|
22164
|
+
} | null;
|
|
22165
|
+
} | null;
|
|
22166
|
+
range?: {
|
|
22167
|
+
__typename?: "RangeEntity";
|
|
22168
|
+
id: string;
|
|
22169
|
+
start: string;
|
|
22170
|
+
end: string;
|
|
22171
|
+
owner: string;
|
|
21489
22172
|
} | null;
|
|
21490
22173
|
}>;
|
|
21491
22174
|
};
|
|
@@ -21643,6 +22326,13 @@ export declare type OfferFieldsFragment = {
|
|
|
21643
22326
|
schemaUrl: string;
|
|
21644
22327
|
type: MetadataType;
|
|
21645
22328
|
image: string;
|
|
22329
|
+
animationMetadata?: {
|
|
22330
|
+
__typename?: "AnimationMetadata";
|
|
22331
|
+
id: string;
|
|
22332
|
+
width?: number | null;
|
|
22333
|
+
height?: number | null;
|
|
22334
|
+
type?: string | null;
|
|
22335
|
+
} | null;
|
|
21646
22336
|
} | {
|
|
21647
22337
|
__typename?: "ProductV1MetadataEntity";
|
|
21648
22338
|
createdAt: string;
|
|
@@ -21858,6 +22548,20 @@ export declare type OfferFieldsFragment = {
|
|
|
21858
22548
|
deliveryTime: string;
|
|
21859
22549
|
}> | null;
|
|
21860
22550
|
} | null;
|
|
22551
|
+
animationMetadata?: {
|
|
22552
|
+
__typename?: "AnimationMetadata";
|
|
22553
|
+
id: string;
|
|
22554
|
+
width?: number | null;
|
|
22555
|
+
height?: number | null;
|
|
22556
|
+
type?: string | null;
|
|
22557
|
+
} | null;
|
|
22558
|
+
} | null;
|
|
22559
|
+
range?: {
|
|
22560
|
+
__typename?: "RangeEntity";
|
|
22561
|
+
id: string;
|
|
22562
|
+
start: string;
|
|
22563
|
+
end: string;
|
|
22564
|
+
owner: string;
|
|
21861
22565
|
} | null;
|
|
21862
22566
|
};
|
|
21863
22567
|
export declare type BaseOfferFieldsFragment = {
|
|
@@ -21964,6 +22668,13 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
21964
22668
|
schemaUrl: string;
|
|
21965
22669
|
type: MetadataType;
|
|
21966
22670
|
image: string;
|
|
22671
|
+
animationMetadata?: {
|
|
22672
|
+
__typename?: "AnimationMetadata";
|
|
22673
|
+
id: string;
|
|
22674
|
+
width?: number | null;
|
|
22675
|
+
height?: number | null;
|
|
22676
|
+
type?: string | null;
|
|
22677
|
+
} | null;
|
|
21967
22678
|
} | {
|
|
21968
22679
|
__typename?: "ProductV1MetadataEntity";
|
|
21969
22680
|
createdAt: string;
|
|
@@ -22179,7 +22890,28 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22179
22890
|
deliveryTime: string;
|
|
22180
22891
|
}> | null;
|
|
22181
22892
|
} | null;
|
|
22893
|
+
animationMetadata?: {
|
|
22894
|
+
__typename?: "AnimationMetadata";
|
|
22895
|
+
id: string;
|
|
22896
|
+
width?: number | null;
|
|
22897
|
+
height?: number | null;
|
|
22898
|
+
type?: string | null;
|
|
22899
|
+
} | null;
|
|
22182
22900
|
} | null;
|
|
22901
|
+
range?: {
|
|
22902
|
+
__typename?: "RangeEntity";
|
|
22903
|
+
id: string;
|
|
22904
|
+
start: string;
|
|
22905
|
+
end: string;
|
|
22906
|
+
owner: string;
|
|
22907
|
+
} | null;
|
|
22908
|
+
};
|
|
22909
|
+
export declare type BaseRangeFieldsFragment = {
|
|
22910
|
+
__typename?: "RangeEntity";
|
|
22911
|
+
id: string;
|
|
22912
|
+
start: string;
|
|
22913
|
+
end: string;
|
|
22914
|
+
owner: string;
|
|
22183
22915
|
};
|
|
22184
22916
|
export declare const BaseSellerFieldsFragmentDoc: string;
|
|
22185
22917
|
export declare const PendingSellerFieldsFragmentDoc: string;
|
|
@@ -22190,6 +22922,7 @@ export declare const BaseConditionFieldsFragmentDoc: string;
|
|
|
22190
22922
|
export declare const BaseDisputeResolverFeeFieldsFragmentDoc: string;
|
|
22191
22923
|
export declare const BaseDisputeResolverFieldsFragmentDoc: string;
|
|
22192
22924
|
export declare const BaseDisputeResolutionTermsEntityFieldsFragmentDoc: string;
|
|
22925
|
+
export declare const BaseAnimationMetadataFieldsFragmentDoc: string;
|
|
22193
22926
|
export declare const BaseProductV1BrandFieldsFragmentDoc: string;
|
|
22194
22927
|
export declare const BaseProductV1CategoryFieldsFragmentDoc: string;
|
|
22195
22928
|
export declare const BaseProductV1TagFieldsFragmentDoc: string;
|
|
@@ -22203,7 +22936,7 @@ export declare const BaseProductV1VariationFieldsFragmentDoc: string;
|
|
|
22203
22936
|
export declare const BaseProductV1ExchangePolicyFieldsFragmentDoc: string;
|
|
22204
22937
|
export declare const BaseProductV1ShippingJurisdictionFieldsFragmentDoc: string;
|
|
22205
22938
|
export declare const BaseProductV1ShippingOptionFieldsFragmentDoc: string;
|
|
22206
|
-
export declare const
|
|
22939
|
+
export declare const BaseRangeFieldsFragmentDoc: string;
|
|
22207
22940
|
export declare const BaseOfferFieldsFragmentDoc: string;
|
|
22208
22941
|
export declare const BaseDisputeFieldsFragmentDoc: string;
|
|
22209
22942
|
export declare const BaseBuyerFieldsFragmentDoc: string;
|