@bosonprotocol/core-sdk 1.18.0-alpha.1 → 1.18.0-alpha.10
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/core-sdk.d.ts +4 -4
- package/dist/cjs/core-sdk.d.ts.map +1 -1
- package/dist/cjs/core-sdk.js +12 -11
- package/dist/cjs/core-sdk.js.map +1 -1
- package/dist/cjs/disputes/handler.d.ts +2 -2
- package/dist/cjs/disputes/handler.d.ts.map +1 -1
- package/dist/cjs/disputes/handler.js +2 -2
- package/dist/cjs/disputes/handler.js.map +1 -1
- package/dist/cjs/disputes/interface.d.ts +1 -1
- package/dist/cjs/disputes/interface.d.ts.map +1 -1
- package/dist/cjs/disputes/interface.js +1 -1
- package/dist/cjs/disputes/interface.js.map +1 -1
- package/dist/cjs/exchanges/handler.js +4 -4
- package/dist/cjs/exchanges/handler.js.map +1 -1
- package/dist/cjs/offers/interface.js +2 -2
- package/dist/cjs/offers/interface.js.map +1 -1
- package/dist/cjs/offers/renderContractualAgreement.d.ts +1 -1
- package/dist/cjs/offers/renderContractualAgreement.d.ts.map +1 -1
- package/dist/cjs/offers/renderContractualAgreement.js +2 -2
- package/dist/cjs/offers/renderContractualAgreement.js.map +1 -1
- package/dist/cjs/subgraph.d.ts +377 -45
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +6 -2
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/cjs/utils/signature.js +2 -2
- package/dist/cjs/utils/signature.js.map +1 -1
- package/dist/esm/core-sdk.d.ts +4 -4
- package/dist/esm/core-sdk.d.ts.map +1 -1
- package/dist/esm/core-sdk.js +12 -11
- package/dist/esm/core-sdk.js.map +1 -1
- package/dist/esm/disputes/handler.d.ts +2 -2
- package/dist/esm/disputes/handler.d.ts.map +1 -1
- package/dist/esm/disputes/handler.js +2 -2
- package/dist/esm/disputes/handler.js.map +1 -1
- package/dist/esm/disputes/interface.d.ts +1 -1
- package/dist/esm/disputes/interface.d.ts.map +1 -1
- package/dist/esm/disputes/interface.js +1 -1
- package/dist/esm/disputes/interface.js.map +1 -1
- package/dist/esm/exchanges/handler.js +4 -4
- package/dist/esm/exchanges/handler.js.map +1 -1
- package/dist/esm/offers/interface.js +2 -2
- package/dist/esm/offers/interface.js.map +1 -1
- package/dist/esm/offers/renderContractualAgreement.d.ts +1 -1
- package/dist/esm/offers/renderContractualAgreement.d.ts.map +1 -1
- package/dist/esm/offers/renderContractualAgreement.js +2 -2
- package/dist/esm/offers/renderContractualAgreement.js.map +1 -1
- package/dist/esm/subgraph.d.ts +377 -45
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +6 -2
- package/dist/esm/subgraph.js.map +1 -1
- package/dist/esm/utils/signature.js +2 -2
- package/dist/esm/utils/signature.js.map +1 -1
- package/package.json +3 -3
- package/src/accounts/queries.graphql +2 -0
- package/src/core-sdk.ts +19 -14
- package/src/disputes/handler.ts +4 -4
- package/src/disputes/interface.ts +2 -2
- package/src/exchanges/handler.ts +4 -4
- package/src/offers/interface.ts +2 -2
- package/src/offers/queries.graphql +1 -1
- package/src/offers/renderContractualAgreement.ts +3 -4
- package/src/subgraph.ts +381 -46
- package/src/utils/signature.ts +2 -2
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -65,6 +65,8 @@ export declare type AccountEventLog = EventLog & {
|
|
|
65
65
|
type: EventType;
|
|
66
66
|
};
|
|
67
67
|
export declare type AccountEventLog_Filter = {
|
|
68
|
+
/** Filter for the block changed event. */
|
|
69
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
68
70
|
account?: InputMaybe<Scalars["String"]>;
|
|
69
71
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
70
72
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -141,6 +143,9 @@ export declare enum AccountEventLog_OrderBy {
|
|
|
141
143
|
Type = "type"
|
|
142
144
|
}
|
|
143
145
|
export declare type Account_Filter = {
|
|
146
|
+
/** Filter for the block changed event. */
|
|
147
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
148
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
144
149
|
id?: InputMaybe<Scalars["ID"]>;
|
|
145
150
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
146
151
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -197,7 +202,10 @@ export declare type BaseMetadataEntityAttributesArgs = {
|
|
|
197
202
|
where?: InputMaybe<MetadataAttribute_Filter>;
|
|
198
203
|
};
|
|
199
204
|
export declare type BaseMetadataEntity_Filter = {
|
|
205
|
+
/** Filter for the block changed event. */
|
|
206
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
200
207
|
attributes?: InputMaybe<Array<Scalars["String"]>>;
|
|
208
|
+
attributes_?: InputMaybe<MetadataAttribute_Filter>;
|
|
201
209
|
attributes_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
202
210
|
attributes_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
203
211
|
attributes_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -232,6 +240,7 @@ export declare type BaseMetadataEntity_Filter = {
|
|
|
232
240
|
description_starts_with?: InputMaybe<Scalars["String"]>;
|
|
233
241
|
description_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
234
242
|
exchangeToken?: InputMaybe<Scalars["String"]>;
|
|
243
|
+
exchangeToken_?: InputMaybe<ExchangeToken_Filter>;
|
|
235
244
|
exchangeToken_contains?: InputMaybe<Scalars["String"]>;
|
|
236
245
|
exchangeToken_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
237
246
|
exchangeToken_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -336,6 +345,7 @@ export declare type BaseMetadataEntity_Filter = {
|
|
|
336
345
|
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
337
346
|
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
338
347
|
offer?: InputMaybe<Scalars["String"]>;
|
|
348
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
339
349
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
340
350
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
341
351
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -384,6 +394,7 @@ export declare type BaseMetadataEntity_Filter = {
|
|
|
384
394
|
schemaUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
385
395
|
schemaUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
386
396
|
seller?: InputMaybe<Scalars["String"]>;
|
|
397
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
387
398
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
388
399
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
389
400
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -448,19 +459,12 @@ export declare enum BaseMetadataEntity_OrderBy {
|
|
|
448
459
|
ValidUntilDate = "validUntilDate",
|
|
449
460
|
Voided = "voided"
|
|
450
461
|
}
|
|
451
|
-
|
|
462
|
+
export declare type BlockChangedFilter = {
|
|
463
|
+
number_gte: Scalars["Int"];
|
|
464
|
+
};
|
|
452
465
|
export declare type Block_Height = {
|
|
453
|
-
/** Value containing a block hash */
|
|
454
466
|
hash?: InputMaybe<Scalars["Bytes"]>;
|
|
455
|
-
/** Value containing a block number */
|
|
456
467
|
number?: InputMaybe<Scalars["Int"]>;
|
|
457
|
-
/**
|
|
458
|
-
* Value containing the minimum block number.
|
|
459
|
-
* In the case of `number_gte`, the query will be executed on the latest block only if
|
|
460
|
-
* the subgraph has progressed to or past the minimum block number.
|
|
461
|
-
* Defaults to the latest block when omitted.
|
|
462
|
-
*
|
|
463
|
-
*/
|
|
464
468
|
number_gte?: InputMaybe<Scalars["Int"]>;
|
|
465
469
|
};
|
|
466
470
|
export declare type Buyer = Account & {
|
|
@@ -494,10 +498,14 @@ export declare type BuyerLogsArgs = {
|
|
|
494
498
|
where?: InputMaybe<EventLog_Filter>;
|
|
495
499
|
};
|
|
496
500
|
export declare type Buyer_Filter = {
|
|
501
|
+
/** Filter for the block changed event. */
|
|
502
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
497
503
|
active?: InputMaybe<Scalars["Boolean"]>;
|
|
498
504
|
active_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
499
505
|
active_not?: InputMaybe<Scalars["Boolean"]>;
|
|
500
506
|
active_not_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
507
|
+
exchanges_?: InputMaybe<Exchange_Filter>;
|
|
508
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
501
509
|
id?: InputMaybe<Scalars["ID"]>;
|
|
502
510
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
503
511
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -551,6 +559,8 @@ export declare type DisputeEventLog = EventLog & {
|
|
|
551
559
|
type: EventType;
|
|
552
560
|
};
|
|
553
561
|
export declare type DisputeEventLog_Filter = {
|
|
562
|
+
/** Filter for the block changed event. */
|
|
563
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
554
564
|
account?: InputMaybe<Scalars["String"]>;
|
|
555
565
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
556
566
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -572,6 +582,7 @@ export declare type DisputeEventLog_Filter = {
|
|
|
572
582
|
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
573
583
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
574
584
|
dispute?: InputMaybe<Scalars["String"]>;
|
|
585
|
+
dispute_?: InputMaybe<Dispute_Filter>;
|
|
575
586
|
dispute_contains?: InputMaybe<Scalars["String"]>;
|
|
576
587
|
dispute_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
577
588
|
dispute_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -659,6 +670,8 @@ export declare type DisputeResolutionTermsEntity = {
|
|
|
659
670
|
offer: Offer;
|
|
660
671
|
};
|
|
661
672
|
export declare type DisputeResolutionTermsEntity_Filter = {
|
|
673
|
+
/** Filter for the block changed event. */
|
|
674
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
662
675
|
buyerEscalationDeposit?: InputMaybe<Scalars["BigInt"]>;
|
|
663
676
|
buyerEscalationDeposit_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
664
677
|
buyerEscalationDeposit_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -676,6 +689,7 @@ export declare type DisputeResolutionTermsEntity_Filter = {
|
|
|
676
689
|
disputeResolverId_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
677
690
|
disputeResolverId_not?: InputMaybe<Scalars["BigInt"]>;
|
|
678
691
|
disputeResolverId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
692
|
+
disputeResolver_?: InputMaybe<DisputeResolver_Filter>;
|
|
679
693
|
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
680
694
|
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
681
695
|
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -720,6 +734,7 @@ export declare type DisputeResolutionTermsEntity_Filter = {
|
|
|
720
734
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
721
735
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
722
736
|
offer?: InputMaybe<Scalars["String"]>;
|
|
737
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
723
738
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
724
739
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
725
740
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -803,6 +818,8 @@ export declare type DisputeResolverFee = {
|
|
|
803
818
|
tokenName: Scalars["String"];
|
|
804
819
|
};
|
|
805
820
|
export declare type DisputeResolverFee_Filter = {
|
|
821
|
+
/** Filter for the block changed event. */
|
|
822
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
806
823
|
feeAmount?: InputMaybe<Scalars["BigInt"]>;
|
|
807
824
|
feeAmount_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
808
825
|
feeAmount_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -846,6 +863,7 @@ export declare type DisputeResolverFee_Filter = {
|
|
|
846
863
|
tokenName_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
847
864
|
tokenName_starts_with?: InputMaybe<Scalars["String"]>;
|
|
848
865
|
tokenName_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
866
|
+
token_?: InputMaybe<ExchangeToken_Filter>;
|
|
849
867
|
token_contains?: InputMaybe<Scalars["String"]>;
|
|
850
868
|
token_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
851
869
|
token_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -874,6 +892,8 @@ export declare enum DisputeResolverFee_OrderBy {
|
|
|
874
892
|
TokenName = "tokenName"
|
|
875
893
|
}
|
|
876
894
|
export declare type DisputeResolver_Filter = {
|
|
895
|
+
/** Filter for the block changed event. */
|
|
896
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
877
897
|
active?: InputMaybe<Scalars["Boolean"]>;
|
|
878
898
|
active_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
879
899
|
active_not?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -899,11 +919,13 @@ export declare type DisputeResolver_Filter = {
|
|
|
899
919
|
escalationResponsePeriod_not?: InputMaybe<Scalars["BigInt"]>;
|
|
900
920
|
escalationResponsePeriod_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
901
921
|
fees?: InputMaybe<Array<Scalars["String"]>>;
|
|
922
|
+
fees_?: InputMaybe<DisputeResolverFee_Filter>;
|
|
902
923
|
fees_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
903
924
|
fees_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
904
925
|
fees_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
905
926
|
fees_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
906
927
|
fees_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
928
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
907
929
|
id?: InputMaybe<Scalars["ID"]>;
|
|
908
930
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
909
931
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -932,6 +954,7 @@ export declare type DisputeResolver_Filter = {
|
|
|
932
954
|
metadataUri_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
933
955
|
metadataUri_starts_with?: InputMaybe<Scalars["String"]>;
|
|
934
956
|
metadataUri_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
957
|
+
offers_?: InputMaybe<Offer_Filter>;
|
|
935
958
|
operator?: InputMaybe<Scalars["Bytes"]>;
|
|
936
959
|
operator_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
937
960
|
operator_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
@@ -979,6 +1002,8 @@ export declare enum DisputeState {
|
|
|
979
1002
|
Retracted = "RETRACTED"
|
|
980
1003
|
}
|
|
981
1004
|
export declare type Dispute_Filter = {
|
|
1005
|
+
/** Filter for the block changed event. */
|
|
1006
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
982
1007
|
buyer?: InputMaybe<Scalars["String"]>;
|
|
983
1008
|
buyerPercent?: InputMaybe<Scalars["BigInt"]>;
|
|
984
1009
|
buyerPercent_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -988,6 +1013,7 @@ export declare type Dispute_Filter = {
|
|
|
988
1013
|
buyerPercent_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
989
1014
|
buyerPercent_not?: InputMaybe<Scalars["BigInt"]>;
|
|
990
1015
|
buyerPercent_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1016
|
+
buyer_?: InputMaybe<Buyer_Filter>;
|
|
991
1017
|
buyer_contains?: InputMaybe<Scalars["String"]>;
|
|
992
1018
|
buyer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
993
1019
|
buyer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1016,6 +1042,7 @@ export declare type Dispute_Filter = {
|
|
|
1016
1042
|
decidedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1017
1043
|
decidedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1018
1044
|
disputeResolver?: InputMaybe<Scalars["String"]>;
|
|
1045
|
+
disputeResolver_?: InputMaybe<DisputeResolver_Filter>;
|
|
1019
1046
|
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
1020
1047
|
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1021
1048
|
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1060,6 +1087,7 @@ export declare type Dispute_Filter = {
|
|
|
1060
1087
|
exchangeId_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1061
1088
|
exchangeId_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1062
1089
|
exchangeId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1090
|
+
exchange_?: InputMaybe<Exchange_Filter>;
|
|
1063
1091
|
exchange_contains?: InputMaybe<Scalars["String"]>;
|
|
1064
1092
|
exchange_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1065
1093
|
exchange_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1120,6 +1148,7 @@ export declare type Dispute_Filter = {
|
|
|
1120
1148
|
retractedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1121
1149
|
retractedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1122
1150
|
seller?: InputMaybe<Scalars["String"]>;
|
|
1151
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
1123
1152
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
1124
1153
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1125
1154
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1179,6 +1208,8 @@ export declare type EventLog = {
|
|
|
1179
1208
|
type: EventType;
|
|
1180
1209
|
};
|
|
1181
1210
|
export declare type EventLog_Filter = {
|
|
1211
|
+
/** Filter for the block changed event. */
|
|
1212
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1182
1213
|
account?: InputMaybe<Scalars["String"]>;
|
|
1183
1214
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
1184
1215
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1328,6 +1359,8 @@ export declare type ExchangeEventLog = EventLog & {
|
|
|
1328
1359
|
type: EventType;
|
|
1329
1360
|
};
|
|
1330
1361
|
export declare type ExchangeEventLog_Filter = {
|
|
1362
|
+
/** Filter for the block changed event. */
|
|
1363
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1331
1364
|
account?: InputMaybe<Scalars["String"]>;
|
|
1332
1365
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
1333
1366
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1349,6 +1382,7 @@ export declare type ExchangeEventLog_Filter = {
|
|
|
1349
1382
|
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1350
1383
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1351
1384
|
exchange?: InputMaybe<Scalars["String"]>;
|
|
1385
|
+
exchange_?: InputMaybe<Exchange_Filter>;
|
|
1352
1386
|
exchange_contains?: InputMaybe<Scalars["String"]>;
|
|
1353
1387
|
exchange_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1354
1388
|
exchange_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1473,6 +1507,8 @@ export declare type ExchangeTokenOffersArgs = {
|
|
|
1473
1507
|
where?: InputMaybe<Offer_Filter>;
|
|
1474
1508
|
};
|
|
1475
1509
|
export declare type ExchangeToken_Filter = {
|
|
1510
|
+
/** Filter for the block changed event. */
|
|
1511
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1476
1512
|
address?: InputMaybe<Scalars["Bytes"]>;
|
|
1477
1513
|
address_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1478
1514
|
address_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
@@ -1487,6 +1523,7 @@ export declare type ExchangeToken_Filter = {
|
|
|
1487
1523
|
decimals_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1488
1524
|
decimals_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1489
1525
|
decimals_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1526
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
1490
1527
|
id?: InputMaybe<Scalars["ID"]>;
|
|
1491
1528
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
1492
1529
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -1515,6 +1552,7 @@ export declare type ExchangeToken_Filter = {
|
|
|
1515
1552
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1516
1553
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1517
1554
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1555
|
+
offers_?: InputMaybe<Offer_Filter>;
|
|
1518
1556
|
symbol?: InputMaybe<Scalars["String"]>;
|
|
1519
1557
|
symbol_contains?: InputMaybe<Scalars["String"]>;
|
|
1520
1558
|
symbol_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1546,7 +1584,10 @@ export declare enum ExchangeToken_OrderBy {
|
|
|
1546
1584
|
Symbol = "symbol"
|
|
1547
1585
|
}
|
|
1548
1586
|
export declare type Exchange_Filter = {
|
|
1587
|
+
/** Filter for the block changed event. */
|
|
1588
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1549
1589
|
buyer?: InputMaybe<Scalars["String"]>;
|
|
1590
|
+
buyer_?: InputMaybe<Buyer_Filter>;
|
|
1550
1591
|
buyer_contains?: InputMaybe<Scalars["String"]>;
|
|
1551
1592
|
buyer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1552
1593
|
buyer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1592,6 +1633,7 @@ export declare type Exchange_Filter = {
|
|
|
1592
1633
|
completedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1593
1634
|
dispute?: InputMaybe<Scalars["String"]>;
|
|
1594
1635
|
disputeResolver?: InputMaybe<Scalars["String"]>;
|
|
1636
|
+
disputeResolver_?: InputMaybe<DisputeResolver_Filter>;
|
|
1595
1637
|
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
1596
1638
|
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1597
1639
|
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1611,6 +1653,7 @@ export declare type Exchange_Filter = {
|
|
|
1611
1653
|
disputeResolver_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1612
1654
|
disputeResolver_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1613
1655
|
disputeResolver_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1656
|
+
dispute_?: InputMaybe<Dispute_Filter>;
|
|
1614
1657
|
dispute_contains?: InputMaybe<Scalars["String"]>;
|
|
1615
1658
|
dispute_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1616
1659
|
dispute_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1663,6 +1706,7 @@ export declare type Exchange_Filter = {
|
|
|
1663
1706
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
1664
1707
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
1665
1708
|
offer?: InputMaybe<Scalars["String"]>;
|
|
1709
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
1666
1710
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
1667
1711
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1668
1712
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1699,6 +1743,7 @@ export declare type Exchange_Filter = {
|
|
|
1699
1743
|
revokedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1700
1744
|
revokedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1701
1745
|
seller?: InputMaybe<Scalars["String"]>;
|
|
1746
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
1702
1747
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
1703
1748
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1704
1749
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1764,6 +1809,8 @@ export declare type FundsEntity = {
|
|
|
1764
1809
|
tokenAddress: Scalars["Bytes"];
|
|
1765
1810
|
};
|
|
1766
1811
|
export declare type FundsEntity_Filter = {
|
|
1812
|
+
/** Filter for the block changed event. */
|
|
1813
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1767
1814
|
account?: InputMaybe<Scalars["String"]>;
|
|
1768
1815
|
accountId?: InputMaybe<Scalars["BigInt"]>;
|
|
1769
1816
|
accountId_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -1815,6 +1862,7 @@ export declare type FundsEntity_Filter = {
|
|
|
1815
1862
|
tokenAddress_not?: InputMaybe<Scalars["Bytes"]>;
|
|
1816
1863
|
tokenAddress_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1817
1864
|
tokenAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1865
|
+
token_?: InputMaybe<ExchangeToken_Filter>;
|
|
1818
1866
|
token_contains?: InputMaybe<Scalars["String"]>;
|
|
1819
1867
|
token_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1820
1868
|
token_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1854,6 +1902,8 @@ export declare type FundsEventLog = EventLog & {
|
|
|
1854
1902
|
type: EventType;
|
|
1855
1903
|
};
|
|
1856
1904
|
export declare type FundsEventLog_Filter = {
|
|
1905
|
+
/** Filter for the block changed event. */
|
|
1906
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1857
1907
|
account?: InputMaybe<Scalars["String"]>;
|
|
1858
1908
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
1859
1909
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1881,6 +1931,7 @@ export declare type FundsEventLog_Filter = {
|
|
|
1881
1931
|
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1882
1932
|
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1883
1933
|
funds?: InputMaybe<Scalars["String"]>;
|
|
1934
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
1884
1935
|
funds_contains?: InputMaybe<Scalars["String"]>;
|
|
1885
1936
|
funds_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1886
1937
|
funds_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1958,6 +2009,8 @@ export declare type MetadataAttribute = {
|
|
|
1958
2009
|
value: Scalars["String"];
|
|
1959
2010
|
};
|
|
1960
2011
|
export declare type MetadataAttribute_Filter = {
|
|
2012
|
+
/** Filter for the block changed event. */
|
|
2013
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1961
2014
|
displayType?: InputMaybe<Scalars["String"]>;
|
|
1962
2015
|
displayType_contains?: InputMaybe<Scalars["String"]>;
|
|
1963
2016
|
displayType_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2073,7 +2126,10 @@ export declare type MetadataInterfaceAttributesArgs = {
|
|
|
2073
2126
|
where?: InputMaybe<MetadataAttribute_Filter>;
|
|
2074
2127
|
};
|
|
2075
2128
|
export declare type MetadataInterface_Filter = {
|
|
2129
|
+
/** Filter for the block changed event. */
|
|
2130
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2076
2131
|
attributes?: InputMaybe<Array<Scalars["String"]>>;
|
|
2132
|
+
attributes_?: InputMaybe<MetadataAttribute_Filter>;
|
|
2077
2133
|
attributes_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
2078
2134
|
attributes_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
2079
2135
|
attributes_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -2108,6 +2164,7 @@ export declare type MetadataInterface_Filter = {
|
|
|
2108
2164
|
description_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2109
2165
|
description_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2110
2166
|
exchangeToken?: InputMaybe<Scalars["String"]>;
|
|
2167
|
+
exchangeToken_?: InputMaybe<ExchangeToken_Filter>;
|
|
2111
2168
|
exchangeToken_contains?: InputMaybe<Scalars["String"]>;
|
|
2112
2169
|
exchangeToken_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2113
2170
|
exchangeToken_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2212,6 +2269,7 @@ export declare type MetadataInterface_Filter = {
|
|
|
2212
2269
|
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2213
2270
|
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2214
2271
|
offer?: InputMaybe<Scalars["String"]>;
|
|
2272
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
2215
2273
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
2216
2274
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2217
2275
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2260,6 +2318,7 @@ export declare type MetadataInterface_Filter = {
|
|
|
2260
2318
|
schemaUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2261
2319
|
schemaUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2262
2320
|
seller?: InputMaybe<Scalars["String"]>;
|
|
2321
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
2263
2322
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
2264
2323
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2265
2324
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2338,13 +2397,13 @@ export declare type Offer = {
|
|
|
2338
2397
|
agentId: Scalars["BigInt"];
|
|
2339
2398
|
buyerCancelPenalty: Scalars["BigInt"];
|
|
2340
2399
|
createdAt: Scalars["BigInt"];
|
|
2400
|
+
/** Offer durations */
|
|
2401
|
+
disputePeriodDuration: Scalars["BigInt"];
|
|
2341
2402
|
disputeResolutionTerms: DisputeResolutionTermsEntity;
|
|
2342
2403
|
disputeResolver: DisputeResolver;
|
|
2343
2404
|
disputeResolverId: Scalars["BigInt"];
|
|
2344
2405
|
exchangeToken: ExchangeToken;
|
|
2345
2406
|
exchanges: Array<Exchange>;
|
|
2346
|
-
/** Offer durations */
|
|
2347
|
-
fulfillmentPeriodDuration: Scalars["BigInt"];
|
|
2348
2407
|
id: Scalars["ID"];
|
|
2349
2408
|
metadata?: Maybe<MetadataInterface>;
|
|
2350
2409
|
metadataHash: Scalars["String"];
|
|
@@ -2391,6 +2450,8 @@ export declare type OfferEventLog = EventLog & {
|
|
|
2391
2450
|
type: EventType;
|
|
2392
2451
|
};
|
|
2393
2452
|
export declare type OfferEventLog_Filter = {
|
|
2453
|
+
/** Filter for the block changed event. */
|
|
2454
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2394
2455
|
account?: InputMaybe<Scalars["String"]>;
|
|
2395
2456
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
2396
2457
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2446,6 +2507,7 @@ export declare type OfferEventLog_Filter = {
|
|
|
2446
2507
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
2447
2508
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
2448
2509
|
offer?: InputMaybe<Scalars["String"]>;
|
|
2510
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
2449
2511
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
2450
2512
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2451
2513
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2488,6 +2550,8 @@ export declare enum OfferEventLog_OrderBy {
|
|
|
2488
2550
|
Type = "type"
|
|
2489
2551
|
}
|
|
2490
2552
|
export declare type Offer_Filter = {
|
|
2553
|
+
/** Filter for the block changed event. */
|
|
2554
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2491
2555
|
agentFee?: InputMaybe<Scalars["BigInt"]>;
|
|
2492
2556
|
agentFee_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2493
2557
|
agentFee_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -2520,7 +2584,16 @@ export declare type Offer_Filter = {
|
|
|
2520
2584
|
createdAt_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2521
2585
|
createdAt_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2522
2586
|
createdAt_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2587
|
+
disputePeriodDuration?: InputMaybe<Scalars["BigInt"]>;
|
|
2588
|
+
disputePeriodDuration_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2589
|
+
disputePeriodDuration_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2590
|
+
disputePeriodDuration_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2591
|
+
disputePeriodDuration_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2592
|
+
disputePeriodDuration_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2593
|
+
disputePeriodDuration_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2594
|
+
disputePeriodDuration_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2523
2595
|
disputeResolutionTerms?: InputMaybe<Scalars["String"]>;
|
|
2596
|
+
disputeResolutionTerms_?: InputMaybe<DisputeResolutionTermsEntity_Filter>;
|
|
2524
2597
|
disputeResolutionTerms_contains?: InputMaybe<Scalars["String"]>;
|
|
2525
2598
|
disputeResolutionTerms_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2526
2599
|
disputeResolutionTerms_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2549,6 +2622,7 @@ export declare type Offer_Filter = {
|
|
|
2549
2622
|
disputeResolverId_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2550
2623
|
disputeResolverId_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2551
2624
|
disputeResolverId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2625
|
+
disputeResolver_?: InputMaybe<DisputeResolver_Filter>;
|
|
2552
2626
|
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
2553
2627
|
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2554
2628
|
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2569,6 +2643,7 @@ export declare type Offer_Filter = {
|
|
|
2569
2643
|
disputeResolver_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2570
2644
|
disputeResolver_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2571
2645
|
exchangeToken?: InputMaybe<Scalars["String"]>;
|
|
2646
|
+
exchangeToken_?: InputMaybe<ExchangeToken_Filter>;
|
|
2572
2647
|
exchangeToken_contains?: InputMaybe<Scalars["String"]>;
|
|
2573
2648
|
exchangeToken_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2574
2649
|
exchangeToken_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2588,14 +2663,7 @@ export declare type Offer_Filter = {
|
|
|
2588
2663
|
exchangeToken_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2589
2664
|
exchangeToken_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2590
2665
|
exchangeToken_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2591
|
-
|
|
2592
|
-
fulfillmentPeriodDuration_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2593
|
-
fulfillmentPeriodDuration_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2594
|
-
fulfillmentPeriodDuration_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2595
|
-
fulfillmentPeriodDuration_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2596
|
-
fulfillmentPeriodDuration_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2597
|
-
fulfillmentPeriodDuration_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2598
|
-
fulfillmentPeriodDuration_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2666
|
+
exchanges_?: InputMaybe<Exchange_Filter>;
|
|
2599
2667
|
id?: InputMaybe<Scalars["ID"]>;
|
|
2600
2668
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
2601
2669
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -2737,6 +2805,7 @@ export declare type Offer_Filter = {
|
|
|
2737
2805
|
sellerId_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2738
2806
|
sellerId_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2739
2807
|
sellerId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2808
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
2740
2809
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
2741
2810
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2742
2811
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2814,12 +2883,12 @@ export declare enum Offer_OrderBy {
|
|
|
2814
2883
|
AgentId = "agentId",
|
|
2815
2884
|
BuyerCancelPenalty = "buyerCancelPenalty",
|
|
2816
2885
|
CreatedAt = "createdAt",
|
|
2886
|
+
DisputePeriodDuration = "disputePeriodDuration",
|
|
2817
2887
|
DisputeResolutionTerms = "disputeResolutionTerms",
|
|
2818
2888
|
DisputeResolver = "disputeResolver",
|
|
2819
2889
|
DisputeResolverId = "disputeResolverId",
|
|
2820
2890
|
ExchangeToken = "exchangeToken",
|
|
2821
2891
|
Exchanges = "exchanges",
|
|
2822
|
-
FulfillmentPeriodDuration = "fulfillmentPeriodDuration",
|
|
2823
2892
|
Id = "id",
|
|
2824
2893
|
Metadata = "metadata",
|
|
2825
2894
|
MetadataHash = "metadataHash",
|
|
@@ -2861,6 +2930,8 @@ export declare type ProductV1BrandProductsArgs = {
|
|
|
2861
2930
|
where?: InputMaybe<ProductV1Product_Filter>;
|
|
2862
2931
|
};
|
|
2863
2932
|
export declare type ProductV1Brand_Filter = {
|
|
2933
|
+
/** Filter for the block changed event. */
|
|
2934
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2864
2935
|
id?: InputMaybe<Scalars["ID"]>;
|
|
2865
2936
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
2866
2937
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -2889,6 +2960,7 @@ export declare type ProductV1Brand_Filter = {
|
|
|
2889
2960
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2890
2961
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2891
2962
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2963
|
+
products_?: InputMaybe<ProductV1Product_Filter>;
|
|
2892
2964
|
};
|
|
2893
2965
|
export declare enum ProductV1Brand_OrderBy {
|
|
2894
2966
|
Id = "id",
|
|
@@ -2901,6 +2973,8 @@ export declare type ProductV1Category = {
|
|
|
2901
2973
|
name: Scalars["String"];
|
|
2902
2974
|
};
|
|
2903
2975
|
export declare type ProductV1Category_Filter = {
|
|
2976
|
+
/** Filter for the block changed event. */
|
|
2977
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2904
2978
|
id?: InputMaybe<Scalars["ID"]>;
|
|
2905
2979
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
2906
2980
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -2945,6 +3019,8 @@ export declare type ProductV1ExchangePolicy = {
|
|
|
2945
3019
|
version: Scalars["Int"];
|
|
2946
3020
|
};
|
|
2947
3021
|
export declare type ProductV1ExchangePolicy_Filter = {
|
|
3022
|
+
/** Filter for the block changed event. */
|
|
3023
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2948
3024
|
disputeResolverContactMethod?: InputMaybe<Scalars["String"]>;
|
|
2949
3025
|
disputeResolverContactMethod_contains?: InputMaybe<Scalars["String"]>;
|
|
2950
3026
|
disputeResolverContactMethod_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3083,6 +3159,8 @@ export declare enum ProductV1MediaType {
|
|
|
3083
3159
|
Video = "VIDEO"
|
|
3084
3160
|
}
|
|
3085
3161
|
export declare type ProductV1Media_Filter = {
|
|
3162
|
+
/** Filter for the block changed event. */
|
|
3163
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3086
3164
|
id?: InputMaybe<Scalars["ID"]>;
|
|
3087
3165
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
3088
3166
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -3202,7 +3280,10 @@ export declare type ProductV1MetadataEntityVariationsArgs = {
|
|
|
3202
3280
|
where?: InputMaybe<ProductV1Variation_Filter>;
|
|
3203
3281
|
};
|
|
3204
3282
|
export declare type ProductV1MetadataEntity_Filter = {
|
|
3283
|
+
/** Filter for the block changed event. */
|
|
3284
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3205
3285
|
attributes?: InputMaybe<Array<Scalars["String"]>>;
|
|
3286
|
+
attributes_?: InputMaybe<MetadataAttribute_Filter>;
|
|
3206
3287
|
attributes_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
3207
3288
|
attributes_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
3208
3289
|
attributes_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -3237,6 +3318,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3237
3318
|
description_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3238
3319
|
description_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3239
3320
|
exchangePolicy?: InputMaybe<Scalars["String"]>;
|
|
3321
|
+
exchangePolicy_?: InputMaybe<ProductV1ExchangePolicy_Filter>;
|
|
3240
3322
|
exchangePolicy_contains?: InputMaybe<Scalars["String"]>;
|
|
3241
3323
|
exchangePolicy_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3242
3324
|
exchangePolicy_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3257,6 +3339,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3257
3339
|
exchangePolicy_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3258
3340
|
exchangePolicy_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3259
3341
|
exchangeToken?: InputMaybe<Scalars["String"]>;
|
|
3342
|
+
exchangeToken_?: InputMaybe<ExchangeToken_Filter>;
|
|
3260
3343
|
exchangeToken_contains?: InputMaybe<Scalars["String"]>;
|
|
3261
3344
|
exchangeToken_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3262
3345
|
exchangeToken_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3361,6 +3444,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3361
3444
|
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
3362
3445
|
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
3363
3446
|
offer?: InputMaybe<Scalars["String"]>;
|
|
3447
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
3364
3448
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
3365
3449
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3366
3450
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3382,6 +3466,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3382
3466
|
offer_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3383
3467
|
product?: InputMaybe<Scalars["String"]>;
|
|
3384
3468
|
productOverrides?: InputMaybe<Scalars["String"]>;
|
|
3469
|
+
productOverrides_?: InputMaybe<ProductV1ProductOverrides_Filter>;
|
|
3385
3470
|
productOverrides_contains?: InputMaybe<Scalars["String"]>;
|
|
3386
3471
|
productOverrides_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3387
3472
|
productOverrides_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3402,6 +3487,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3402
3487
|
productOverrides_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3403
3488
|
productOverrides_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3404
3489
|
productV1Seller?: InputMaybe<Scalars["String"]>;
|
|
3490
|
+
productV1Seller_?: InputMaybe<ProductV1Seller_Filter>;
|
|
3405
3491
|
productV1Seller_contains?: InputMaybe<Scalars["String"]>;
|
|
3406
3492
|
productV1Seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3407
3493
|
productV1Seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3421,6 +3507,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3421
3507
|
productV1Seller_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3422
3508
|
productV1Seller_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3423
3509
|
productV1Seller_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3510
|
+
product_?: InputMaybe<ProductV1Product_Filter>;
|
|
3424
3511
|
product_contains?: InputMaybe<Scalars["String"]>;
|
|
3425
3512
|
product_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3426
3513
|
product_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3469,6 +3556,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3469
3556
|
schemaUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3470
3557
|
schemaUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3471
3558
|
seller?: InputMaybe<Scalars["String"]>;
|
|
3559
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
3472
3560
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
3473
3561
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3474
3562
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3489,6 +3577,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3489
3577
|
seller_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3490
3578
|
seller_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3491
3579
|
shipping?: InputMaybe<Scalars["String"]>;
|
|
3580
|
+
shipping_?: InputMaybe<ProductV1ShippingOption_Filter>;
|
|
3492
3581
|
shipping_contains?: InputMaybe<Scalars["String"]>;
|
|
3493
3582
|
shipping_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3494
3583
|
shipping_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3549,6 +3638,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
3549
3638
|
validUntilDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
3550
3639
|
validUntilDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
3551
3640
|
variations?: InputMaybe<Array<Scalars["String"]>>;
|
|
3641
|
+
variations_?: InputMaybe<ProductV1Variation_Filter>;
|
|
3552
3642
|
variations_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
3553
3643
|
variations_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
3554
3644
|
variations_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -3597,6 +3687,8 @@ export declare type ProductV1Personalisation = {
|
|
|
3597
3687
|
name: Scalars["String"];
|
|
3598
3688
|
};
|
|
3599
3689
|
export declare type ProductV1Personalisation_Filter = {
|
|
3690
|
+
/** Filter for the block changed event. */
|
|
3691
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3600
3692
|
id?: InputMaybe<Scalars["ID"]>;
|
|
3601
3693
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
3602
3694
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -3765,7 +3857,10 @@ export declare type ProductV1ProductOverridesVisuals_VideosArgs = {
|
|
|
3765
3857
|
where?: InputMaybe<ProductV1Media_Filter>;
|
|
3766
3858
|
};
|
|
3767
3859
|
export declare type ProductV1ProductOverrides_Filter = {
|
|
3860
|
+
/** Filter for the block changed event. */
|
|
3861
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3768
3862
|
brand?: InputMaybe<Scalars["String"]>;
|
|
3863
|
+
brand_?: InputMaybe<ProductV1Brand_Filter>;
|
|
3769
3864
|
brand_contains?: InputMaybe<Scalars["String"]>;
|
|
3770
3865
|
brand_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3771
3866
|
brand_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -4128,12 +4223,14 @@ export declare type ProductV1ProductOverrides_Filter = {
|
|
|
4128
4223
|
version_not?: InputMaybe<Scalars["Int"]>;
|
|
4129
4224
|
version_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
4130
4225
|
visuals_images?: InputMaybe<Array<Scalars["String"]>>;
|
|
4226
|
+
visuals_images_?: InputMaybe<ProductV1Media_Filter>;
|
|
4131
4227
|
visuals_images_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4132
4228
|
visuals_images_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4133
4229
|
visuals_images_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
4134
4230
|
visuals_images_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4135
4231
|
visuals_images_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4136
4232
|
visuals_videos?: InputMaybe<Array<Scalars["String"]>>;
|
|
4233
|
+
visuals_videos_?: InputMaybe<ProductV1Media_Filter>;
|
|
4137
4234
|
visuals_videos_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4138
4235
|
visuals_videos_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4139
4236
|
visuals_videos_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -4165,7 +4262,10 @@ export declare enum ProductV1ProductOverrides_OrderBy {
|
|
|
4165
4262
|
VisualsVideos = "visuals_videos"
|
|
4166
4263
|
}
|
|
4167
4264
|
export declare type ProductV1Product_Filter = {
|
|
4265
|
+
/** Filter for the block changed event. */
|
|
4266
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
4168
4267
|
brand?: InputMaybe<Scalars["String"]>;
|
|
4268
|
+
brand_?: InputMaybe<ProductV1Brand_Filter>;
|
|
4169
4269
|
brand_contains?: InputMaybe<Scalars["String"]>;
|
|
4170
4270
|
brand_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
4171
4271
|
brand_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -4186,6 +4286,7 @@ export declare type ProductV1Product_Filter = {
|
|
|
4186
4286
|
brand_starts_with?: InputMaybe<Scalars["String"]>;
|
|
4187
4287
|
brand_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
4188
4288
|
category?: InputMaybe<Scalars["String"]>;
|
|
4289
|
+
category_?: InputMaybe<ProductV1Category_Filter>;
|
|
4189
4290
|
category_contains?: InputMaybe<Scalars["String"]>;
|
|
4190
4291
|
category_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
4191
4292
|
category_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -4536,6 +4637,7 @@ export declare type ProductV1Product_Filter = {
|
|
|
4536
4637
|
packaging_weight_value_starts_with?: InputMaybe<Scalars["String"]>;
|
|
4537
4638
|
packaging_weight_value_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
4538
4639
|
personalisation?: InputMaybe<Array<Scalars["String"]>>;
|
|
4640
|
+
personalisation_?: InputMaybe<ProductV1Personalisation_Filter>;
|
|
4539
4641
|
personalisation_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4540
4642
|
personalisation_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4541
4643
|
personalisation_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -4628,6 +4730,7 @@ export declare type ProductV1Product_Filter = {
|
|
|
4628
4730
|
productionInformation_modelNumber_starts_with?: InputMaybe<Scalars["String"]>;
|
|
4629
4731
|
productionInformation_modelNumber_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
4630
4732
|
sections?: InputMaybe<Array<Scalars["String"]>>;
|
|
4733
|
+
sections_?: InputMaybe<ProductV1Section_Filter>;
|
|
4631
4734
|
sections_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4632
4735
|
sections_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4633
4736
|
sections_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -4635,6 +4738,7 @@ export declare type ProductV1Product_Filter = {
|
|
|
4635
4738
|
sections_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4636
4739
|
subCategory?: InputMaybe<Scalars["String"]>;
|
|
4637
4740
|
subCategory2?: InputMaybe<Scalars["String"]>;
|
|
4741
|
+
subCategory2_?: InputMaybe<ProductV1Category_Filter>;
|
|
4638
4742
|
subCategory2_contains?: InputMaybe<Scalars["String"]>;
|
|
4639
4743
|
subCategory2_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
4640
4744
|
subCategory2_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -4654,6 +4758,7 @@ export declare type ProductV1Product_Filter = {
|
|
|
4654
4758
|
subCategory2_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
4655
4759
|
subCategory2_starts_with?: InputMaybe<Scalars["String"]>;
|
|
4656
4760
|
subCategory2_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
4761
|
+
subCategory_?: InputMaybe<ProductV1Category_Filter>;
|
|
4657
4762
|
subCategory_contains?: InputMaybe<Scalars["String"]>;
|
|
4658
4763
|
subCategory_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
4659
4764
|
subCategory_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -4674,6 +4779,7 @@ export declare type ProductV1Product_Filter = {
|
|
|
4674
4779
|
subCategory_starts_with?: InputMaybe<Scalars["String"]>;
|
|
4675
4780
|
subCategory_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
4676
4781
|
tags?: InputMaybe<Array<Scalars["String"]>>;
|
|
4782
|
+
tags_?: InputMaybe<ProductV1Tag_Filter>;
|
|
4677
4783
|
tags_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4678
4784
|
tags_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4679
4785
|
tags_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -4728,12 +4834,14 @@ export declare type ProductV1Product_Filter = {
|
|
|
4728
4834
|
version_not?: InputMaybe<Scalars["Int"]>;
|
|
4729
4835
|
version_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
4730
4836
|
visuals_images?: InputMaybe<Array<Scalars["String"]>>;
|
|
4837
|
+
visuals_images_?: InputMaybe<ProductV1Media_Filter>;
|
|
4731
4838
|
visuals_images_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4732
4839
|
visuals_images_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4733
4840
|
visuals_images_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
4734
4841
|
visuals_images_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4735
4842
|
visuals_images_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4736
4843
|
visuals_videos?: InputMaybe<Array<Scalars["String"]>>;
|
|
4844
|
+
visuals_videos_?: InputMaybe<ProductV1Media_Filter>;
|
|
4737
4845
|
visuals_videos_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4738
4846
|
visuals_videos_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4739
4847
|
visuals_videos_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -4785,6 +4893,8 @@ export declare type ProductV1Section = {
|
|
|
4785
4893
|
name: Scalars["String"];
|
|
4786
4894
|
};
|
|
4787
4895
|
export declare type ProductV1Section_Filter = {
|
|
4896
|
+
/** Filter for the block changed event. */
|
|
4897
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
4788
4898
|
id?: InputMaybe<Scalars["ID"]>;
|
|
4789
4899
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
4790
4900
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -4855,6 +4965,8 @@ export declare type ProductV1SellerContactLink = {
|
|
|
4855
4965
|
url: Scalars["String"];
|
|
4856
4966
|
};
|
|
4857
4967
|
export declare type ProductV1SellerContactLink_Filter = {
|
|
4968
|
+
/** Filter for the block changed event. */
|
|
4969
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
4858
4970
|
id?: InputMaybe<Scalars["ID"]>;
|
|
4859
4971
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
4860
4972
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -4910,7 +5022,10 @@ export declare enum ProductV1SellerContactLink_OrderBy {
|
|
|
4910
5022
|
Url = "url"
|
|
4911
5023
|
}
|
|
4912
5024
|
export declare type ProductV1Seller_Filter = {
|
|
5025
|
+
/** Filter for the block changed event. */
|
|
5026
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
4913
5027
|
contactLinks?: InputMaybe<Array<Scalars["String"]>>;
|
|
5028
|
+
contactLinks_?: InputMaybe<ProductV1SellerContactLink_Filter>;
|
|
4914
5029
|
contactLinks_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4915
5030
|
contactLinks_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4916
5031
|
contactLinks_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -4973,6 +5088,7 @@ export declare type ProductV1Seller_Filter = {
|
|
|
4973
5088
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
4974
5089
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
4975
5090
|
images?: InputMaybe<Array<Scalars["String"]>>;
|
|
5091
|
+
images_?: InputMaybe<ProductV1Media_Filter>;
|
|
4976
5092
|
images_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4977
5093
|
images_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4978
5094
|
images_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -4999,6 +5115,7 @@ export declare type ProductV1Seller_Filter = {
|
|
|
4999
5115
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
5000
5116
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5001
5117
|
seller?: InputMaybe<Scalars["String"]>;
|
|
5118
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
5002
5119
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
5003
5120
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
5004
5121
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -5057,6 +5174,8 @@ export declare type ProductV1ShippingJurisdiction = {
|
|
|
5057
5174
|
label: Scalars["String"];
|
|
5058
5175
|
};
|
|
5059
5176
|
export declare type ProductV1ShippingJurisdiction_Filter = {
|
|
5177
|
+
/** Filter for the block changed event. */
|
|
5178
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5060
5179
|
deliveryTime?: InputMaybe<Scalars["String"]>;
|
|
5061
5180
|
deliveryTime_contains?: InputMaybe<Scalars["String"]>;
|
|
5062
5181
|
deliveryTime_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -5128,6 +5247,8 @@ export declare type ProductV1ShippingOptionSupportedJurisdictionsArgs = {
|
|
|
5128
5247
|
where?: InputMaybe<ProductV1ShippingJurisdiction_Filter>;
|
|
5129
5248
|
};
|
|
5130
5249
|
export declare type ProductV1ShippingOption_Filter = {
|
|
5250
|
+
/** Filter for the block changed event. */
|
|
5251
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5131
5252
|
countryOfOrigin?: InputMaybe<Scalars["String"]>;
|
|
5132
5253
|
countryOfOrigin_contains?: InputMaybe<Scalars["String"]>;
|
|
5133
5254
|
countryOfOrigin_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -5193,6 +5314,7 @@ export declare type ProductV1ShippingOption_Filter = {
|
|
|
5193
5314
|
returnPeriodInDays_not?: InputMaybe<Scalars["Int"]>;
|
|
5194
5315
|
returnPeriodInDays_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
5195
5316
|
supportedJurisdictions?: InputMaybe<Array<Scalars["String"]>>;
|
|
5317
|
+
supportedJurisdictions_?: InputMaybe<ProductV1ShippingJurisdiction_Filter>;
|
|
5196
5318
|
supportedJurisdictions_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5197
5319
|
supportedJurisdictions_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5198
5320
|
supportedJurisdictions_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5213,6 +5335,8 @@ export declare type ProductV1Tag = {
|
|
|
5213
5335
|
name: Scalars["String"];
|
|
5214
5336
|
};
|
|
5215
5337
|
export declare type ProductV1Tag_Filter = {
|
|
5338
|
+
/** Filter for the block changed event. */
|
|
5339
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5216
5340
|
id?: InputMaybe<Scalars["ID"]>;
|
|
5217
5341
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
5218
5342
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -5253,6 +5377,8 @@ export declare type ProductV1Variation = {
|
|
|
5253
5377
|
type: Scalars["String"];
|
|
5254
5378
|
};
|
|
5255
5379
|
export declare type ProductV1Variation_Filter = {
|
|
5380
|
+
/** Filter for the block changed event. */
|
|
5381
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5256
5382
|
id?: InputMaybe<Scalars["ID"]>;
|
|
5257
5383
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
5258
5384
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -5876,12 +6002,15 @@ export declare type Seller = Account & {
|
|
|
5876
6002
|
authTokenId: Scalars["BigInt"];
|
|
5877
6003
|
authTokenType: Scalars["Int"];
|
|
5878
6004
|
clerk: Scalars["Bytes"];
|
|
6005
|
+
contractURI: Scalars["String"];
|
|
5879
6006
|
exchanges: Array<Exchange>;
|
|
5880
6007
|
funds: Array<FundsEntity>;
|
|
5881
6008
|
id: Scalars["ID"];
|
|
5882
6009
|
logs: Array<EventLog>;
|
|
5883
6010
|
offers: Array<Offer>;
|
|
5884
6011
|
operator: Scalars["Bytes"];
|
|
6012
|
+
/** Percentage as integer, to get decimals divide by 10000. E.g. 1 = 0.01%, 10000 = 100% */
|
|
6013
|
+
royaltyPercentage: Scalars["BigInt"];
|
|
5885
6014
|
sellerId: Scalars["BigInt"];
|
|
5886
6015
|
treasury: Scalars["Bytes"];
|
|
5887
6016
|
voucherCloneAddress: Scalars["Bytes"];
|
|
@@ -5915,6 +6044,8 @@ export declare type SellerOffersArgs = {
|
|
|
5915
6044
|
where?: InputMaybe<Offer_Filter>;
|
|
5916
6045
|
};
|
|
5917
6046
|
export declare type Seller_Filter = {
|
|
6047
|
+
/** Filter for the block changed event. */
|
|
6048
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5918
6049
|
active?: InputMaybe<Scalars["Boolean"]>;
|
|
5919
6050
|
active_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
5920
6051
|
active_not?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -5947,6 +6078,28 @@ export declare type Seller_Filter = {
|
|
|
5947
6078
|
clerk_not?: InputMaybe<Scalars["Bytes"]>;
|
|
5948
6079
|
clerk_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
5949
6080
|
clerk_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6081
|
+
contractURI?: InputMaybe<Scalars["String"]>;
|
|
6082
|
+
contractURI_contains?: InputMaybe<Scalars["String"]>;
|
|
6083
|
+
contractURI_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
6084
|
+
contractURI_ends_with?: InputMaybe<Scalars["String"]>;
|
|
6085
|
+
contractURI_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6086
|
+
contractURI_gt?: InputMaybe<Scalars["String"]>;
|
|
6087
|
+
contractURI_gte?: InputMaybe<Scalars["String"]>;
|
|
6088
|
+
contractURI_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
6089
|
+
contractURI_lt?: InputMaybe<Scalars["String"]>;
|
|
6090
|
+
contractURI_lte?: InputMaybe<Scalars["String"]>;
|
|
6091
|
+
contractURI_not?: InputMaybe<Scalars["String"]>;
|
|
6092
|
+
contractURI_not_contains?: InputMaybe<Scalars["String"]>;
|
|
6093
|
+
contractURI_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
6094
|
+
contractURI_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
6095
|
+
contractURI_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6096
|
+
contractURI_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
6097
|
+
contractURI_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
6098
|
+
contractURI_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6099
|
+
contractURI_starts_with?: InputMaybe<Scalars["String"]>;
|
|
6100
|
+
contractURI_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6101
|
+
exchanges_?: InputMaybe<Exchange_Filter>;
|
|
6102
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
5950
6103
|
id?: InputMaybe<Scalars["ID"]>;
|
|
5951
6104
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
5952
6105
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -5955,12 +6108,21 @@ export declare type Seller_Filter = {
|
|
|
5955
6108
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
5956
6109
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
5957
6110
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
6111
|
+
offers_?: InputMaybe<Offer_Filter>;
|
|
5958
6112
|
operator?: InputMaybe<Scalars["Bytes"]>;
|
|
5959
6113
|
operator_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
5960
6114
|
operator_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
5961
6115
|
operator_not?: InputMaybe<Scalars["Bytes"]>;
|
|
5962
6116
|
operator_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
5963
6117
|
operator_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6118
|
+
royaltyPercentage?: InputMaybe<Scalars["BigInt"]>;
|
|
6119
|
+
royaltyPercentage_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
6120
|
+
royaltyPercentage_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
6121
|
+
royaltyPercentage_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
6122
|
+
royaltyPercentage_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
6123
|
+
royaltyPercentage_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
6124
|
+
royaltyPercentage_not?: InputMaybe<Scalars["BigInt"]>;
|
|
6125
|
+
royaltyPercentage_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
5964
6126
|
sellerId?: InputMaybe<Scalars["BigInt"]>;
|
|
5965
6127
|
sellerId_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
5966
6128
|
sellerId_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -5988,12 +6150,14 @@ export declare enum Seller_OrderBy {
|
|
|
5988
6150
|
AuthTokenId = "authTokenId",
|
|
5989
6151
|
AuthTokenType = "authTokenType",
|
|
5990
6152
|
Clerk = "clerk",
|
|
6153
|
+
ContractUri = "contractURI",
|
|
5991
6154
|
Exchanges = "exchanges",
|
|
5992
6155
|
Funds = "funds",
|
|
5993
6156
|
Id = "id",
|
|
5994
6157
|
Logs = "logs",
|
|
5995
6158
|
Offers = "offers",
|
|
5996
6159
|
Operator = "operator",
|
|
6160
|
+
RoyaltyPercentage = "royaltyPercentage",
|
|
5997
6161
|
SellerId = "sellerId",
|
|
5998
6162
|
Treasury = "treasury",
|
|
5999
6163
|
VoucherCloneAddress = "voucherCloneAddress"
|
|
@@ -6629,6 +6793,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6629
6793
|
authTokenType: number;
|
|
6630
6794
|
voucherCloneAddress: string;
|
|
6631
6795
|
active: boolean;
|
|
6796
|
+
contractURI: string;
|
|
6797
|
+
royaltyPercentage: string;
|
|
6632
6798
|
funds?: Array<{
|
|
6633
6799
|
__typename?: "FundsEntity";
|
|
6634
6800
|
id: string;
|
|
@@ -6659,7 +6825,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6659
6825
|
validUntilDate: string;
|
|
6660
6826
|
voucherRedeemableFromDate: string;
|
|
6661
6827
|
voucherRedeemableUntilDate: string;
|
|
6662
|
-
|
|
6828
|
+
disputePeriodDuration: string;
|
|
6663
6829
|
voucherValidDuration: string;
|
|
6664
6830
|
resolutionPeriodDuration: string;
|
|
6665
6831
|
metadataUri: string;
|
|
@@ -6680,6 +6846,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6680
6846
|
authTokenType: number;
|
|
6681
6847
|
voucherCloneAddress: string;
|
|
6682
6848
|
active: boolean;
|
|
6849
|
+
contractURI: string;
|
|
6850
|
+
royaltyPercentage: string;
|
|
6683
6851
|
};
|
|
6684
6852
|
exchangeToken: {
|
|
6685
6853
|
__typename?: "ExchangeToken";
|
|
@@ -6869,6 +7037,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6869
7037
|
authTokenType: number;
|
|
6870
7038
|
voucherCloneAddress: string;
|
|
6871
7039
|
active: boolean;
|
|
7040
|
+
contractURI: string;
|
|
7041
|
+
royaltyPercentage: string;
|
|
6872
7042
|
};
|
|
6873
7043
|
};
|
|
6874
7044
|
exchangePolicy: {
|
|
@@ -6943,6 +7113,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6943
7113
|
authTokenType: number;
|
|
6944
7114
|
voucherCloneAddress: string;
|
|
6945
7115
|
active: boolean;
|
|
7116
|
+
contractURI: string;
|
|
7117
|
+
royaltyPercentage: string;
|
|
6946
7118
|
};
|
|
6947
7119
|
}>;
|
|
6948
7120
|
logs?: Array<{
|
|
@@ -7093,6 +7265,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
7093
7265
|
authTokenType: number;
|
|
7094
7266
|
voucherCloneAddress: string;
|
|
7095
7267
|
active: boolean;
|
|
7268
|
+
contractURI: string;
|
|
7269
|
+
royaltyPercentage: string;
|
|
7096
7270
|
funds?: Array<{
|
|
7097
7271
|
__typename?: "FundsEntity";
|
|
7098
7272
|
id: string;
|
|
@@ -7123,7 +7297,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
7123
7297
|
validUntilDate: string;
|
|
7124
7298
|
voucherRedeemableFromDate: string;
|
|
7125
7299
|
voucherRedeemableUntilDate: string;
|
|
7126
|
-
|
|
7300
|
+
disputePeriodDuration: string;
|
|
7127
7301
|
voucherValidDuration: string;
|
|
7128
7302
|
resolutionPeriodDuration: string;
|
|
7129
7303
|
metadataUri: string;
|
|
@@ -7144,6 +7318,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
7144
7318
|
authTokenType: number;
|
|
7145
7319
|
voucherCloneAddress: string;
|
|
7146
7320
|
active: boolean;
|
|
7321
|
+
contractURI: string;
|
|
7322
|
+
royaltyPercentage: string;
|
|
7147
7323
|
};
|
|
7148
7324
|
exchangeToken: {
|
|
7149
7325
|
__typename?: "ExchangeToken";
|
|
@@ -7333,6 +7509,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
7333
7509
|
authTokenType: number;
|
|
7334
7510
|
voucherCloneAddress: string;
|
|
7335
7511
|
active: boolean;
|
|
7512
|
+
contractURI: string;
|
|
7513
|
+
royaltyPercentage: string;
|
|
7336
7514
|
};
|
|
7337
7515
|
};
|
|
7338
7516
|
exchangePolicy: {
|
|
@@ -7407,6 +7585,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
7407
7585
|
authTokenType: number;
|
|
7408
7586
|
voucherCloneAddress: string;
|
|
7409
7587
|
active: boolean;
|
|
7588
|
+
contractURI: string;
|
|
7589
|
+
royaltyPercentage: string;
|
|
7410
7590
|
};
|
|
7411
7591
|
}>;
|
|
7412
7592
|
logs?: Array<{
|
|
@@ -7601,6 +7781,8 @@ export declare type GetBuyerByIdQueryQuery = {
|
|
|
7601
7781
|
authTokenType: number;
|
|
7602
7782
|
voucherCloneAddress: string;
|
|
7603
7783
|
active: boolean;
|
|
7784
|
+
contractURI: string;
|
|
7785
|
+
royaltyPercentage: string;
|
|
7604
7786
|
};
|
|
7605
7787
|
}>;
|
|
7606
7788
|
logs?: Array<{
|
|
@@ -7805,6 +7987,8 @@ export declare type GetBuyersQueryQuery = {
|
|
|
7805
7987
|
authTokenType: number;
|
|
7806
7988
|
voucherCloneAddress: string;
|
|
7807
7989
|
active: boolean;
|
|
7990
|
+
contractURI: string;
|
|
7991
|
+
royaltyPercentage: string;
|
|
7808
7992
|
};
|
|
7809
7993
|
}>;
|
|
7810
7994
|
logs?: Array<{
|
|
@@ -7955,7 +8139,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
7955
8139
|
validUntilDate: string;
|
|
7956
8140
|
voucherRedeemableFromDate: string;
|
|
7957
8141
|
voucherRedeemableUntilDate: string;
|
|
7958
|
-
|
|
8142
|
+
disputePeriodDuration: string;
|
|
7959
8143
|
voucherValidDuration: string;
|
|
7960
8144
|
resolutionPeriodDuration: string;
|
|
7961
8145
|
metadataUri: string;
|
|
@@ -7976,6 +8160,8 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
7976
8160
|
authTokenType: number;
|
|
7977
8161
|
voucherCloneAddress: string;
|
|
7978
8162
|
active: boolean;
|
|
8163
|
+
contractURI: string;
|
|
8164
|
+
royaltyPercentage: string;
|
|
7979
8165
|
};
|
|
7980
8166
|
exchangeToken: {
|
|
7981
8167
|
__typename?: "ExchangeToken";
|
|
@@ -8165,6 +8351,8 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
8165
8351
|
authTokenType: number;
|
|
8166
8352
|
voucherCloneAddress: string;
|
|
8167
8353
|
active: boolean;
|
|
8354
|
+
contractURI: string;
|
|
8355
|
+
royaltyPercentage: string;
|
|
8168
8356
|
};
|
|
8169
8357
|
};
|
|
8170
8358
|
exchangePolicy: {
|
|
@@ -8360,7 +8548,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8360
8548
|
validUntilDate: string;
|
|
8361
8549
|
voucherRedeemableFromDate: string;
|
|
8362
8550
|
voucherRedeemableUntilDate: string;
|
|
8363
|
-
|
|
8551
|
+
disputePeriodDuration: string;
|
|
8364
8552
|
voucherValidDuration: string;
|
|
8365
8553
|
resolutionPeriodDuration: string;
|
|
8366
8554
|
metadataUri: string;
|
|
@@ -8381,6 +8569,8 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8381
8569
|
authTokenType: number;
|
|
8382
8570
|
voucherCloneAddress: string;
|
|
8383
8571
|
active: boolean;
|
|
8572
|
+
contractURI: string;
|
|
8573
|
+
royaltyPercentage: string;
|
|
8384
8574
|
};
|
|
8385
8575
|
exchangeToken: {
|
|
8386
8576
|
__typename?: "ExchangeToken";
|
|
@@ -8570,6 +8760,8 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8570
8760
|
authTokenType: number;
|
|
8571
8761
|
voucherCloneAddress: string;
|
|
8572
8762
|
active: boolean;
|
|
8763
|
+
contractURI: string;
|
|
8764
|
+
royaltyPercentage: string;
|
|
8573
8765
|
};
|
|
8574
8766
|
};
|
|
8575
8767
|
exchangePolicy: {
|
|
@@ -8728,6 +8920,8 @@ export declare type SellerFieldsFragment = {
|
|
|
8728
8920
|
authTokenType: number;
|
|
8729
8921
|
voucherCloneAddress: string;
|
|
8730
8922
|
active: boolean;
|
|
8923
|
+
contractURI: string;
|
|
8924
|
+
royaltyPercentage: string;
|
|
8731
8925
|
funds?: Array<{
|
|
8732
8926
|
__typename?: "FundsEntity";
|
|
8733
8927
|
id: string;
|
|
@@ -8758,7 +8952,7 @@ export declare type SellerFieldsFragment = {
|
|
|
8758
8952
|
validUntilDate: string;
|
|
8759
8953
|
voucherRedeemableFromDate: string;
|
|
8760
8954
|
voucherRedeemableUntilDate: string;
|
|
8761
|
-
|
|
8955
|
+
disputePeriodDuration: string;
|
|
8762
8956
|
voucherValidDuration: string;
|
|
8763
8957
|
resolutionPeriodDuration: string;
|
|
8764
8958
|
metadataUri: string;
|
|
@@ -8779,6 +8973,8 @@ export declare type SellerFieldsFragment = {
|
|
|
8779
8973
|
authTokenType: number;
|
|
8780
8974
|
voucherCloneAddress: string;
|
|
8781
8975
|
active: boolean;
|
|
8976
|
+
contractURI: string;
|
|
8977
|
+
royaltyPercentage: string;
|
|
8782
8978
|
};
|
|
8783
8979
|
exchangeToken: {
|
|
8784
8980
|
__typename?: "ExchangeToken";
|
|
@@ -8968,6 +9164,8 @@ export declare type SellerFieldsFragment = {
|
|
|
8968
9164
|
authTokenType: number;
|
|
8969
9165
|
voucherCloneAddress: string;
|
|
8970
9166
|
active: boolean;
|
|
9167
|
+
contractURI: string;
|
|
9168
|
+
royaltyPercentage: string;
|
|
8971
9169
|
};
|
|
8972
9170
|
};
|
|
8973
9171
|
exchangePolicy: {
|
|
@@ -9042,6 +9240,8 @@ export declare type SellerFieldsFragment = {
|
|
|
9042
9240
|
authTokenType: number;
|
|
9043
9241
|
voucherCloneAddress: string;
|
|
9044
9242
|
active: boolean;
|
|
9243
|
+
contractURI: string;
|
|
9244
|
+
royaltyPercentage: string;
|
|
9045
9245
|
};
|
|
9046
9246
|
}>;
|
|
9047
9247
|
logs?: Array<{
|
|
@@ -9158,6 +9358,8 @@ export declare type BaseSellerFieldsFragment = {
|
|
|
9158
9358
|
authTokenType: number;
|
|
9159
9359
|
voucherCloneAddress: string;
|
|
9160
9360
|
active: boolean;
|
|
9361
|
+
contractURI: string;
|
|
9362
|
+
royaltyPercentage: string;
|
|
9161
9363
|
};
|
|
9162
9364
|
export declare type BuyerFieldsFragment = {
|
|
9163
9365
|
__typename?: "Buyer";
|
|
@@ -9224,6 +9426,8 @@ export declare type BuyerFieldsFragment = {
|
|
|
9224
9426
|
authTokenType: number;
|
|
9225
9427
|
voucherCloneAddress: string;
|
|
9226
9428
|
active: boolean;
|
|
9429
|
+
contractURI: string;
|
|
9430
|
+
royaltyPercentage: string;
|
|
9227
9431
|
};
|
|
9228
9432
|
}>;
|
|
9229
9433
|
logs?: Array<{
|
|
@@ -9362,7 +9566,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9362
9566
|
validUntilDate: string;
|
|
9363
9567
|
voucherRedeemableFromDate: string;
|
|
9364
9568
|
voucherRedeemableUntilDate: string;
|
|
9365
|
-
|
|
9569
|
+
disputePeriodDuration: string;
|
|
9366
9570
|
voucherValidDuration: string;
|
|
9367
9571
|
resolutionPeriodDuration: string;
|
|
9368
9572
|
metadataUri: string;
|
|
@@ -9383,6 +9587,8 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9383
9587
|
authTokenType: number;
|
|
9384
9588
|
voucherCloneAddress: string;
|
|
9385
9589
|
active: boolean;
|
|
9590
|
+
contractURI: string;
|
|
9591
|
+
royaltyPercentage: string;
|
|
9386
9592
|
};
|
|
9387
9593
|
exchangeToken: {
|
|
9388
9594
|
__typename?: "ExchangeToken";
|
|
@@ -9572,6 +9778,8 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9572
9778
|
authTokenType: number;
|
|
9573
9779
|
voucherCloneAddress: string;
|
|
9574
9780
|
active: boolean;
|
|
9781
|
+
contractURI: string;
|
|
9782
|
+
royaltyPercentage: string;
|
|
9575
9783
|
};
|
|
9576
9784
|
};
|
|
9577
9785
|
exchangePolicy: {
|
|
@@ -9839,6 +10047,8 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
9839
10047
|
authTokenType: number;
|
|
9840
10048
|
voucherCloneAddress: string;
|
|
9841
10049
|
active: boolean;
|
|
10050
|
+
contractURI: string;
|
|
10051
|
+
royaltyPercentage: string;
|
|
9842
10052
|
};
|
|
9843
10053
|
};
|
|
9844
10054
|
seller: {
|
|
@@ -9852,6 +10062,8 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
9852
10062
|
authTokenType: number;
|
|
9853
10063
|
voucherCloneAddress: string;
|
|
9854
10064
|
active: boolean;
|
|
10065
|
+
contractURI: string;
|
|
10066
|
+
royaltyPercentage: string;
|
|
9855
10067
|
};
|
|
9856
10068
|
buyer: {
|
|
9857
10069
|
__typename?: "Buyer";
|
|
@@ -9930,6 +10142,8 @@ export declare type GetDisputesQueryQuery = {
|
|
|
9930
10142
|
authTokenType: number;
|
|
9931
10143
|
voucherCloneAddress: string;
|
|
9932
10144
|
active: boolean;
|
|
10145
|
+
contractURI: string;
|
|
10146
|
+
royaltyPercentage: string;
|
|
9933
10147
|
};
|
|
9934
10148
|
};
|
|
9935
10149
|
seller: {
|
|
@@ -9943,6 +10157,8 @@ export declare type GetDisputesQueryQuery = {
|
|
|
9943
10157
|
authTokenType: number;
|
|
9944
10158
|
voucherCloneAddress: string;
|
|
9945
10159
|
active: boolean;
|
|
10160
|
+
contractURI: string;
|
|
10161
|
+
royaltyPercentage: string;
|
|
9946
10162
|
};
|
|
9947
10163
|
buyer: {
|
|
9948
10164
|
__typename?: "Buyer";
|
|
@@ -10012,6 +10228,8 @@ export declare type DisputeFieldsFragment = {
|
|
|
10012
10228
|
authTokenType: number;
|
|
10013
10229
|
voucherCloneAddress: string;
|
|
10014
10230
|
active: boolean;
|
|
10231
|
+
contractURI: string;
|
|
10232
|
+
royaltyPercentage: string;
|
|
10015
10233
|
};
|
|
10016
10234
|
};
|
|
10017
10235
|
seller: {
|
|
@@ -10025,6 +10243,8 @@ export declare type DisputeFieldsFragment = {
|
|
|
10025
10243
|
authTokenType: number;
|
|
10026
10244
|
voucherCloneAddress: string;
|
|
10027
10245
|
active: boolean;
|
|
10246
|
+
contractURI: string;
|
|
10247
|
+
royaltyPercentage: string;
|
|
10028
10248
|
};
|
|
10029
10249
|
buyer: {
|
|
10030
10250
|
__typename?: "Buyer";
|
|
@@ -10093,7 +10313,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10093
10313
|
validUntilDate: string;
|
|
10094
10314
|
voucherRedeemableFromDate: string;
|
|
10095
10315
|
voucherRedeemableUntilDate: string;
|
|
10096
|
-
|
|
10316
|
+
disputePeriodDuration: string;
|
|
10097
10317
|
voucherValidDuration: string;
|
|
10098
10318
|
resolutionPeriodDuration: string;
|
|
10099
10319
|
metadataUri: string;
|
|
@@ -10114,6 +10334,8 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10114
10334
|
authTokenType: number;
|
|
10115
10335
|
voucherCloneAddress: string;
|
|
10116
10336
|
active: boolean;
|
|
10337
|
+
contractURI: string;
|
|
10338
|
+
royaltyPercentage: string;
|
|
10117
10339
|
};
|
|
10118
10340
|
exchangeToken: {
|
|
10119
10341
|
__typename?: "ExchangeToken";
|
|
@@ -10303,6 +10525,8 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10303
10525
|
authTokenType: number;
|
|
10304
10526
|
voucherCloneAddress: string;
|
|
10305
10527
|
active: boolean;
|
|
10528
|
+
contractURI: string;
|
|
10529
|
+
royaltyPercentage: string;
|
|
10306
10530
|
};
|
|
10307
10531
|
};
|
|
10308
10532
|
exchangePolicy: {
|
|
@@ -10383,7 +10607,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10383
10607
|
validUntilDate: string;
|
|
10384
10608
|
voucherRedeemableFromDate: string;
|
|
10385
10609
|
voucherRedeemableUntilDate: string;
|
|
10386
|
-
|
|
10610
|
+
disputePeriodDuration: string;
|
|
10387
10611
|
voucherValidDuration: string;
|
|
10388
10612
|
resolutionPeriodDuration: string;
|
|
10389
10613
|
metadataUri: string;
|
|
@@ -10404,6 +10628,8 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10404
10628
|
authTokenType: number;
|
|
10405
10629
|
voucherCloneAddress: string;
|
|
10406
10630
|
active: boolean;
|
|
10631
|
+
contractURI: string;
|
|
10632
|
+
royaltyPercentage: string;
|
|
10407
10633
|
};
|
|
10408
10634
|
exchangeToken: {
|
|
10409
10635
|
__typename?: "ExchangeToken";
|
|
@@ -10593,6 +10819,8 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10593
10819
|
authTokenType: number;
|
|
10594
10820
|
voucherCloneAddress: string;
|
|
10595
10821
|
active: boolean;
|
|
10822
|
+
contractURI: string;
|
|
10823
|
+
royaltyPercentage: string;
|
|
10596
10824
|
};
|
|
10597
10825
|
};
|
|
10598
10826
|
exchangePolicy: {
|
|
@@ -10652,7 +10880,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10652
10880
|
validUntilDate: string;
|
|
10653
10881
|
voucherRedeemableFromDate: string;
|
|
10654
10882
|
voucherRedeemableUntilDate: string;
|
|
10655
|
-
|
|
10883
|
+
disputePeriodDuration: string;
|
|
10656
10884
|
voucherValidDuration: string;
|
|
10657
10885
|
resolutionPeriodDuration: string;
|
|
10658
10886
|
metadataUri: string;
|
|
@@ -10673,6 +10901,8 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10673
10901
|
authTokenType: number;
|
|
10674
10902
|
voucherCloneAddress: string;
|
|
10675
10903
|
active: boolean;
|
|
10904
|
+
contractURI: string;
|
|
10905
|
+
royaltyPercentage: string;
|
|
10676
10906
|
};
|
|
10677
10907
|
exchangeToken: {
|
|
10678
10908
|
__typename?: "ExchangeToken";
|
|
@@ -10862,6 +11092,8 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10862
11092
|
authTokenType: number;
|
|
10863
11093
|
voucherCloneAddress: string;
|
|
10864
11094
|
active: boolean;
|
|
11095
|
+
contractURI: string;
|
|
11096
|
+
royaltyPercentage: string;
|
|
10865
11097
|
};
|
|
10866
11098
|
};
|
|
10867
11099
|
exchangePolicy: {
|
|
@@ -11159,7 +11391,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11159
11391
|
validUntilDate: string;
|
|
11160
11392
|
voucherRedeemableFromDate: string;
|
|
11161
11393
|
voucherRedeemableUntilDate: string;
|
|
11162
|
-
|
|
11394
|
+
disputePeriodDuration: string;
|
|
11163
11395
|
voucherValidDuration: string;
|
|
11164
11396
|
resolutionPeriodDuration: string;
|
|
11165
11397
|
metadataUri: string;
|
|
@@ -11180,6 +11412,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11180
11412
|
authTokenType: number;
|
|
11181
11413
|
voucherCloneAddress: string;
|
|
11182
11414
|
active: boolean;
|
|
11415
|
+
contractURI: string;
|
|
11416
|
+
royaltyPercentage: string;
|
|
11183
11417
|
};
|
|
11184
11418
|
exchangeToken: {
|
|
11185
11419
|
__typename?: "ExchangeToken";
|
|
@@ -11369,6 +11603,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11369
11603
|
authTokenType: number;
|
|
11370
11604
|
voucherCloneAddress: string;
|
|
11371
11605
|
active: boolean;
|
|
11606
|
+
contractURI: string;
|
|
11607
|
+
royaltyPercentage: string;
|
|
11372
11608
|
};
|
|
11373
11609
|
};
|
|
11374
11610
|
exchangePolicy: {
|
|
@@ -11429,6 +11665,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11429
11665
|
authTokenType: number;
|
|
11430
11666
|
voucherCloneAddress: string;
|
|
11431
11667
|
active: boolean;
|
|
11668
|
+
contractURI: string;
|
|
11669
|
+
royaltyPercentage: string;
|
|
11432
11670
|
};
|
|
11433
11671
|
} | null;
|
|
11434
11672
|
};
|
|
@@ -11471,7 +11709,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11471
11709
|
validUntilDate: string;
|
|
11472
11710
|
voucherRedeemableFromDate: string;
|
|
11473
11711
|
voucherRedeemableUntilDate: string;
|
|
11474
|
-
|
|
11712
|
+
disputePeriodDuration: string;
|
|
11475
11713
|
voucherValidDuration: string;
|
|
11476
11714
|
resolutionPeriodDuration: string;
|
|
11477
11715
|
metadataUri: string;
|
|
@@ -11492,6 +11730,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11492
11730
|
authTokenType: number;
|
|
11493
11731
|
voucherCloneAddress: string;
|
|
11494
11732
|
active: boolean;
|
|
11733
|
+
contractURI: string;
|
|
11734
|
+
royaltyPercentage: string;
|
|
11495
11735
|
};
|
|
11496
11736
|
exchangeToken: {
|
|
11497
11737
|
__typename?: "ExchangeToken";
|
|
@@ -11681,6 +11921,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11681
11921
|
authTokenType: number;
|
|
11682
11922
|
voucherCloneAddress: string;
|
|
11683
11923
|
active: boolean;
|
|
11924
|
+
contractURI: string;
|
|
11925
|
+
royaltyPercentage: string;
|
|
11684
11926
|
};
|
|
11685
11927
|
};
|
|
11686
11928
|
exchangePolicy: {
|
|
@@ -11741,6 +11983,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11741
11983
|
authTokenType: number;
|
|
11742
11984
|
voucherCloneAddress: string;
|
|
11743
11985
|
active: boolean;
|
|
11986
|
+
contractURI: string;
|
|
11987
|
+
royaltyPercentage: string;
|
|
11744
11988
|
};
|
|
11745
11989
|
}>;
|
|
11746
11990
|
};
|
|
@@ -11774,7 +12018,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
11774
12018
|
validUntilDate: string;
|
|
11775
12019
|
voucherRedeemableFromDate: string;
|
|
11776
12020
|
voucherRedeemableUntilDate: string;
|
|
11777
|
-
|
|
12021
|
+
disputePeriodDuration: string;
|
|
11778
12022
|
voucherValidDuration: string;
|
|
11779
12023
|
resolutionPeriodDuration: string;
|
|
11780
12024
|
metadataUri: string;
|
|
@@ -11795,6 +12039,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
11795
12039
|
authTokenType: number;
|
|
11796
12040
|
voucherCloneAddress: string;
|
|
11797
12041
|
active: boolean;
|
|
12042
|
+
contractURI: string;
|
|
12043
|
+
royaltyPercentage: string;
|
|
11798
12044
|
};
|
|
11799
12045
|
exchangeToken: {
|
|
11800
12046
|
__typename?: "ExchangeToken";
|
|
@@ -11984,6 +12230,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
11984
12230
|
authTokenType: number;
|
|
11985
12231
|
voucherCloneAddress: string;
|
|
11986
12232
|
active: boolean;
|
|
12233
|
+
contractURI: string;
|
|
12234
|
+
royaltyPercentage: string;
|
|
11987
12235
|
};
|
|
11988
12236
|
};
|
|
11989
12237
|
exchangePolicy: {
|
|
@@ -12044,6 +12292,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
12044
12292
|
authTokenType: number;
|
|
12045
12293
|
voucherCloneAddress: string;
|
|
12046
12294
|
active: boolean;
|
|
12295
|
+
contractURI: string;
|
|
12296
|
+
royaltyPercentage: string;
|
|
12047
12297
|
};
|
|
12048
12298
|
};
|
|
12049
12299
|
export declare type BaseExchangeFieldsFragment = {
|
|
@@ -12092,6 +12342,8 @@ export declare type BaseExchangeFieldsFragment = {
|
|
|
12092
12342
|
authTokenType: number;
|
|
12093
12343
|
voucherCloneAddress: string;
|
|
12094
12344
|
active: boolean;
|
|
12345
|
+
contractURI: string;
|
|
12346
|
+
royaltyPercentage: string;
|
|
12095
12347
|
};
|
|
12096
12348
|
};
|
|
12097
12349
|
export declare type GetFundsByIdQueryVariables = Exact<{
|
|
@@ -12206,7 +12458,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12206
12458
|
validUntilDate: string;
|
|
12207
12459
|
voucherRedeemableFromDate: string;
|
|
12208
12460
|
voucherRedeemableUntilDate: string;
|
|
12209
|
-
|
|
12461
|
+
disputePeriodDuration: string;
|
|
12210
12462
|
voucherValidDuration: string;
|
|
12211
12463
|
resolutionPeriodDuration: string;
|
|
12212
12464
|
metadataUri: string;
|
|
@@ -12227,6 +12479,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12227
12479
|
authTokenType: number;
|
|
12228
12480
|
voucherCloneAddress: string;
|
|
12229
12481
|
active: boolean;
|
|
12482
|
+
contractURI: string;
|
|
12483
|
+
royaltyPercentage: string;
|
|
12230
12484
|
};
|
|
12231
12485
|
exchangeToken: {
|
|
12232
12486
|
__typename?: "ExchangeToken";
|
|
@@ -12416,6 +12670,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12416
12670
|
authTokenType: number;
|
|
12417
12671
|
voucherCloneAddress: string;
|
|
12418
12672
|
active: boolean;
|
|
12673
|
+
contractURI: string;
|
|
12674
|
+
royaltyPercentage: string;
|
|
12419
12675
|
};
|
|
12420
12676
|
};
|
|
12421
12677
|
exchangePolicy: {
|
|
@@ -12455,6 +12711,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12455
12711
|
authTokenType: number;
|
|
12456
12712
|
voucherCloneAddress: string;
|
|
12457
12713
|
active: boolean;
|
|
12714
|
+
contractURI: string;
|
|
12715
|
+
royaltyPercentage: string;
|
|
12458
12716
|
};
|
|
12459
12717
|
exchangeToken: {
|
|
12460
12718
|
__typename?: "ExchangeToken";
|
|
@@ -12513,7 +12771,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12513
12771
|
validUntilDate: string;
|
|
12514
12772
|
voucherRedeemableFromDate: string;
|
|
12515
12773
|
voucherRedeemableUntilDate: string;
|
|
12516
|
-
|
|
12774
|
+
disputePeriodDuration: string;
|
|
12517
12775
|
voucherValidDuration: string;
|
|
12518
12776
|
resolutionPeriodDuration: string;
|
|
12519
12777
|
metadataUri: string;
|
|
@@ -12534,6 +12792,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12534
12792
|
authTokenType: number;
|
|
12535
12793
|
voucherCloneAddress: string;
|
|
12536
12794
|
active: boolean;
|
|
12795
|
+
contractURI: string;
|
|
12796
|
+
royaltyPercentage: string;
|
|
12537
12797
|
};
|
|
12538
12798
|
exchangeToken: {
|
|
12539
12799
|
__typename?: "ExchangeToken";
|
|
@@ -12723,6 +12983,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12723
12983
|
authTokenType: number;
|
|
12724
12984
|
voucherCloneAddress: string;
|
|
12725
12985
|
active: boolean;
|
|
12986
|
+
contractURI: string;
|
|
12987
|
+
royaltyPercentage: string;
|
|
12726
12988
|
};
|
|
12727
12989
|
};
|
|
12728
12990
|
exchangePolicy: {
|
|
@@ -12762,6 +13024,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12762
13024
|
authTokenType: number;
|
|
12763
13025
|
voucherCloneAddress: string;
|
|
12764
13026
|
active: boolean;
|
|
13027
|
+
contractURI: string;
|
|
13028
|
+
royaltyPercentage: string;
|
|
12765
13029
|
};
|
|
12766
13030
|
exchangeToken: {
|
|
12767
13031
|
__typename?: "ExchangeToken";
|
|
@@ -12811,7 +13075,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
12811
13075
|
validUntilDate: string;
|
|
12812
13076
|
voucherRedeemableFromDate: string;
|
|
12813
13077
|
voucherRedeemableUntilDate: string;
|
|
12814
|
-
|
|
13078
|
+
disputePeriodDuration: string;
|
|
12815
13079
|
voucherValidDuration: string;
|
|
12816
13080
|
resolutionPeriodDuration: string;
|
|
12817
13081
|
metadataUri: string;
|
|
@@ -12832,6 +13096,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
12832
13096
|
authTokenType: number;
|
|
12833
13097
|
voucherCloneAddress: string;
|
|
12834
13098
|
active: boolean;
|
|
13099
|
+
contractURI: string;
|
|
13100
|
+
royaltyPercentage: string;
|
|
12835
13101
|
};
|
|
12836
13102
|
exchangeToken: {
|
|
12837
13103
|
__typename?: "ExchangeToken";
|
|
@@ -13021,6 +13287,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
13021
13287
|
authTokenType: number;
|
|
13022
13288
|
voucherCloneAddress: string;
|
|
13023
13289
|
active: boolean;
|
|
13290
|
+
contractURI: string;
|
|
13291
|
+
royaltyPercentage: string;
|
|
13024
13292
|
};
|
|
13025
13293
|
};
|
|
13026
13294
|
exchangePolicy: {
|
|
@@ -13060,6 +13328,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
13060
13328
|
authTokenType: number;
|
|
13061
13329
|
voucherCloneAddress: string;
|
|
13062
13330
|
active: boolean;
|
|
13331
|
+
contractURI: string;
|
|
13332
|
+
royaltyPercentage: string;
|
|
13063
13333
|
};
|
|
13064
13334
|
exchangeToken: {
|
|
13065
13335
|
__typename?: "ExchangeToken";
|
|
@@ -13108,7 +13378,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13108
13378
|
validUntilDate: string;
|
|
13109
13379
|
voucherRedeemableFromDate: string;
|
|
13110
13380
|
voucherRedeemableUntilDate: string;
|
|
13111
|
-
|
|
13381
|
+
disputePeriodDuration: string;
|
|
13112
13382
|
voucherValidDuration: string;
|
|
13113
13383
|
resolutionPeriodDuration: string;
|
|
13114
13384
|
metadataUri: string;
|
|
@@ -13129,6 +13399,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13129
13399
|
authTokenType: number;
|
|
13130
13400
|
voucherCloneAddress: string;
|
|
13131
13401
|
active: boolean;
|
|
13402
|
+
contractURI: string;
|
|
13403
|
+
royaltyPercentage: string;
|
|
13132
13404
|
};
|
|
13133
13405
|
exchangeToken: {
|
|
13134
13406
|
__typename?: "ExchangeToken";
|
|
@@ -13318,6 +13590,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13318
13590
|
authTokenType: number;
|
|
13319
13591
|
voucherCloneAddress: string;
|
|
13320
13592
|
active: boolean;
|
|
13593
|
+
contractURI: string;
|
|
13594
|
+
royaltyPercentage: string;
|
|
13321
13595
|
};
|
|
13322
13596
|
};
|
|
13323
13597
|
exchangePolicy: {
|
|
@@ -13357,6 +13631,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13357
13631
|
authTokenType: number;
|
|
13358
13632
|
voucherCloneAddress: string;
|
|
13359
13633
|
active: boolean;
|
|
13634
|
+
contractURI: string;
|
|
13635
|
+
royaltyPercentage: string;
|
|
13360
13636
|
};
|
|
13361
13637
|
exchangeToken: {
|
|
13362
13638
|
__typename?: "ExchangeToken";
|
|
@@ -13446,7 +13722,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13446
13722
|
validUntilDate: string;
|
|
13447
13723
|
voucherRedeemableFromDate: string;
|
|
13448
13724
|
voucherRedeemableUntilDate: string;
|
|
13449
|
-
|
|
13725
|
+
disputePeriodDuration: string;
|
|
13450
13726
|
voucherValidDuration: string;
|
|
13451
13727
|
resolutionPeriodDuration: string;
|
|
13452
13728
|
metadataUri: string;
|
|
@@ -13467,6 +13743,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13467
13743
|
authTokenType: number;
|
|
13468
13744
|
voucherCloneAddress: string;
|
|
13469
13745
|
active: boolean;
|
|
13746
|
+
contractURI: string;
|
|
13747
|
+
royaltyPercentage: string;
|
|
13470
13748
|
};
|
|
13471
13749
|
exchangeToken: {
|
|
13472
13750
|
__typename?: "ExchangeToken";
|
|
@@ -13656,6 +13934,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13656
13934
|
authTokenType: number;
|
|
13657
13935
|
voucherCloneAddress: string;
|
|
13658
13936
|
active: boolean;
|
|
13937
|
+
contractURI: string;
|
|
13938
|
+
royaltyPercentage: string;
|
|
13659
13939
|
};
|
|
13660
13940
|
};
|
|
13661
13941
|
exchangePolicy: {
|
|
@@ -13695,6 +13975,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13695
13975
|
authTokenType: number;
|
|
13696
13976
|
voucherCloneAddress: string;
|
|
13697
13977
|
active: boolean;
|
|
13978
|
+
contractURI: string;
|
|
13979
|
+
royaltyPercentage: string;
|
|
13698
13980
|
};
|
|
13699
13981
|
exchangeToken: {
|
|
13700
13982
|
__typename?: "ExchangeToken";
|
|
@@ -13822,6 +14104,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13822
14104
|
authTokenType: number;
|
|
13823
14105
|
voucherCloneAddress: string;
|
|
13824
14106
|
active: boolean;
|
|
14107
|
+
contractURI: string;
|
|
14108
|
+
royaltyPercentage: string;
|
|
13825
14109
|
};
|
|
13826
14110
|
};
|
|
13827
14111
|
exchangePolicy: {
|
|
@@ -13884,7 +14168,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
13884
14168
|
validUntilDate: string;
|
|
13885
14169
|
voucherRedeemableFromDate: string;
|
|
13886
14170
|
voucherRedeemableUntilDate: string;
|
|
13887
|
-
|
|
14171
|
+
disputePeriodDuration: string;
|
|
13888
14172
|
voucherValidDuration: string;
|
|
13889
14173
|
resolutionPeriodDuration: string;
|
|
13890
14174
|
metadataUri: string;
|
|
@@ -13905,6 +14189,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
13905
14189
|
authTokenType: number;
|
|
13906
14190
|
voucherCloneAddress: string;
|
|
13907
14191
|
active: boolean;
|
|
14192
|
+
contractURI: string;
|
|
14193
|
+
royaltyPercentage: string;
|
|
13908
14194
|
};
|
|
13909
14195
|
exchangeToken: {
|
|
13910
14196
|
__typename?: "ExchangeToken";
|
|
@@ -14094,6 +14380,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14094
14380
|
authTokenType: number;
|
|
14095
14381
|
voucherCloneAddress: string;
|
|
14096
14382
|
active: boolean;
|
|
14383
|
+
contractURI: string;
|
|
14384
|
+
royaltyPercentage: string;
|
|
14097
14385
|
};
|
|
14098
14386
|
};
|
|
14099
14387
|
exchangePolicy: {
|
|
@@ -14133,6 +14421,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14133
14421
|
authTokenType: number;
|
|
14134
14422
|
voucherCloneAddress: string;
|
|
14135
14423
|
active: boolean;
|
|
14424
|
+
contractURI: string;
|
|
14425
|
+
royaltyPercentage: string;
|
|
14136
14426
|
};
|
|
14137
14427
|
exchangeToken: {
|
|
14138
14428
|
__typename?: "ExchangeToken";
|
|
@@ -14260,6 +14550,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14260
14550
|
authTokenType: number;
|
|
14261
14551
|
voucherCloneAddress: string;
|
|
14262
14552
|
active: boolean;
|
|
14553
|
+
contractURI: string;
|
|
14554
|
+
royaltyPercentage: string;
|
|
14263
14555
|
};
|
|
14264
14556
|
};
|
|
14265
14557
|
exchangePolicy: {
|
|
@@ -14313,7 +14605,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14313
14605
|
validUntilDate: string;
|
|
14314
14606
|
voucherRedeemableFromDate: string;
|
|
14315
14607
|
voucherRedeemableUntilDate: string;
|
|
14316
|
-
|
|
14608
|
+
disputePeriodDuration: string;
|
|
14317
14609
|
voucherValidDuration: string;
|
|
14318
14610
|
resolutionPeriodDuration: string;
|
|
14319
14611
|
metadataUri: string;
|
|
@@ -14334,6 +14626,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14334
14626
|
authTokenType: number;
|
|
14335
14627
|
voucherCloneAddress: string;
|
|
14336
14628
|
active: boolean;
|
|
14629
|
+
contractURI: string;
|
|
14630
|
+
royaltyPercentage: string;
|
|
14337
14631
|
};
|
|
14338
14632
|
exchangeToken: {
|
|
14339
14633
|
__typename?: "ExchangeToken";
|
|
@@ -14523,6 +14817,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14523
14817
|
authTokenType: number;
|
|
14524
14818
|
voucherCloneAddress: string;
|
|
14525
14819
|
active: boolean;
|
|
14820
|
+
contractURI: string;
|
|
14821
|
+
royaltyPercentage: string;
|
|
14526
14822
|
};
|
|
14527
14823
|
};
|
|
14528
14824
|
exchangePolicy: {
|
|
@@ -14562,6 +14858,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14562
14858
|
authTokenType: number;
|
|
14563
14859
|
voucherCloneAddress: string;
|
|
14564
14860
|
active: boolean;
|
|
14861
|
+
contractURI: string;
|
|
14862
|
+
royaltyPercentage: string;
|
|
14565
14863
|
};
|
|
14566
14864
|
exchangeToken: {
|
|
14567
14865
|
__typename?: "ExchangeToken";
|
|
@@ -14689,6 +14987,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14689
14987
|
authTokenType: number;
|
|
14690
14988
|
voucherCloneAddress: string;
|
|
14691
14989
|
active: boolean;
|
|
14990
|
+
contractURI: string;
|
|
14991
|
+
royaltyPercentage: string;
|
|
14692
14992
|
};
|
|
14693
14993
|
};
|
|
14694
14994
|
exchangePolicy: {
|
|
@@ -14741,7 +15041,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
14741
15041
|
validUntilDate: string;
|
|
14742
15042
|
voucherRedeemableFromDate: string;
|
|
14743
15043
|
voucherRedeemableUntilDate: string;
|
|
14744
|
-
|
|
15044
|
+
disputePeriodDuration: string;
|
|
14745
15045
|
voucherValidDuration: string;
|
|
14746
15046
|
resolutionPeriodDuration: string;
|
|
14747
15047
|
metadataUri: string;
|
|
@@ -14762,6 +15062,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
14762
15062
|
authTokenType: number;
|
|
14763
15063
|
voucherCloneAddress: string;
|
|
14764
15064
|
active: boolean;
|
|
15065
|
+
contractURI: string;
|
|
15066
|
+
royaltyPercentage: string;
|
|
14765
15067
|
};
|
|
14766
15068
|
exchangeToken: {
|
|
14767
15069
|
__typename?: "ExchangeToken";
|
|
@@ -14951,6 +15253,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
14951
15253
|
authTokenType: number;
|
|
14952
15254
|
voucherCloneAddress: string;
|
|
14953
15255
|
active: boolean;
|
|
15256
|
+
contractURI: string;
|
|
15257
|
+
royaltyPercentage: string;
|
|
14954
15258
|
};
|
|
14955
15259
|
};
|
|
14956
15260
|
exchangePolicy: {
|
|
@@ -14990,6 +15294,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
14990
15294
|
authTokenType: number;
|
|
14991
15295
|
voucherCloneAddress: string;
|
|
14992
15296
|
active: boolean;
|
|
15297
|
+
contractURI: string;
|
|
15298
|
+
royaltyPercentage: string;
|
|
14993
15299
|
};
|
|
14994
15300
|
exchangeToken: {
|
|
14995
15301
|
__typename?: "ExchangeToken";
|
|
@@ -15117,6 +15423,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15117
15423
|
authTokenType: number;
|
|
15118
15424
|
voucherCloneAddress: string;
|
|
15119
15425
|
active: boolean;
|
|
15426
|
+
contractURI: string;
|
|
15427
|
+
royaltyPercentage: string;
|
|
15120
15428
|
};
|
|
15121
15429
|
};
|
|
15122
15430
|
exchangePolicy: {
|
|
@@ -15280,6 +15588,8 @@ export declare type BaseProductV1SellerFieldsFragment = {
|
|
|
15280
15588
|
authTokenType: number;
|
|
15281
15589
|
voucherCloneAddress: string;
|
|
15282
15590
|
active: boolean;
|
|
15591
|
+
contractURI: string;
|
|
15592
|
+
royaltyPercentage: string;
|
|
15283
15593
|
};
|
|
15284
15594
|
};
|
|
15285
15595
|
export declare type BaseProductV1SellerContactLinkFieldsFragment = {
|
|
@@ -15386,7 +15696,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15386
15696
|
validUntilDate: string;
|
|
15387
15697
|
voucherRedeemableFromDate: string;
|
|
15388
15698
|
voucherRedeemableUntilDate: string;
|
|
15389
|
-
|
|
15699
|
+
disputePeriodDuration: string;
|
|
15390
15700
|
voucherValidDuration: string;
|
|
15391
15701
|
resolutionPeriodDuration: string;
|
|
15392
15702
|
metadataUri: string;
|
|
@@ -15442,6 +15752,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15442
15752
|
authTokenType: number;
|
|
15443
15753
|
voucherCloneAddress: string;
|
|
15444
15754
|
active: boolean;
|
|
15755
|
+
contractURI: string;
|
|
15756
|
+
royaltyPercentage: string;
|
|
15445
15757
|
};
|
|
15446
15758
|
}>;
|
|
15447
15759
|
seller: {
|
|
@@ -15455,6 +15767,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15455
15767
|
authTokenType: number;
|
|
15456
15768
|
voucherCloneAddress: string;
|
|
15457
15769
|
active: boolean;
|
|
15770
|
+
contractURI: string;
|
|
15771
|
+
royaltyPercentage: string;
|
|
15458
15772
|
};
|
|
15459
15773
|
exchangeToken: {
|
|
15460
15774
|
__typename?: "ExchangeToken";
|
|
@@ -15644,6 +15958,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15644
15958
|
authTokenType: number;
|
|
15645
15959
|
voucherCloneAddress: string;
|
|
15646
15960
|
active: boolean;
|
|
15961
|
+
contractURI: string;
|
|
15962
|
+
royaltyPercentage: string;
|
|
15647
15963
|
};
|
|
15648
15964
|
};
|
|
15649
15965
|
exchangePolicy: {
|
|
@@ -15704,7 +16020,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
15704
16020
|
validUntilDate: string;
|
|
15705
16021
|
voucherRedeemableFromDate: string;
|
|
15706
16022
|
voucherRedeemableUntilDate: string;
|
|
15707
|
-
|
|
16023
|
+
disputePeriodDuration: string;
|
|
15708
16024
|
voucherValidDuration: string;
|
|
15709
16025
|
resolutionPeriodDuration: string;
|
|
15710
16026
|
metadataUri: string;
|
|
@@ -15760,6 +16076,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
15760
16076
|
authTokenType: number;
|
|
15761
16077
|
voucherCloneAddress: string;
|
|
15762
16078
|
active: boolean;
|
|
16079
|
+
contractURI: string;
|
|
16080
|
+
royaltyPercentage: string;
|
|
15763
16081
|
};
|
|
15764
16082
|
}>;
|
|
15765
16083
|
seller: {
|
|
@@ -15773,6 +16091,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
15773
16091
|
authTokenType: number;
|
|
15774
16092
|
voucherCloneAddress: string;
|
|
15775
16093
|
active: boolean;
|
|
16094
|
+
contractURI: string;
|
|
16095
|
+
royaltyPercentage: string;
|
|
15776
16096
|
};
|
|
15777
16097
|
exchangeToken: {
|
|
15778
16098
|
__typename?: "ExchangeToken";
|
|
@@ -15962,6 +16282,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
15962
16282
|
authTokenType: number;
|
|
15963
16283
|
voucherCloneAddress: string;
|
|
15964
16284
|
active: boolean;
|
|
16285
|
+
contractURI: string;
|
|
16286
|
+
royaltyPercentage: string;
|
|
15965
16287
|
};
|
|
15966
16288
|
};
|
|
15967
16289
|
exchangePolicy: {
|
|
@@ -16007,7 +16329,7 @@ export declare type OfferFieldsFragment = {
|
|
|
16007
16329
|
validUntilDate: string;
|
|
16008
16330
|
voucherRedeemableFromDate: string;
|
|
16009
16331
|
voucherRedeemableUntilDate: string;
|
|
16010
|
-
|
|
16332
|
+
disputePeriodDuration: string;
|
|
16011
16333
|
voucherValidDuration: string;
|
|
16012
16334
|
resolutionPeriodDuration: string;
|
|
16013
16335
|
metadataUri: string;
|
|
@@ -16063,6 +16385,8 @@ export declare type OfferFieldsFragment = {
|
|
|
16063
16385
|
authTokenType: number;
|
|
16064
16386
|
voucherCloneAddress: string;
|
|
16065
16387
|
active: boolean;
|
|
16388
|
+
contractURI: string;
|
|
16389
|
+
royaltyPercentage: string;
|
|
16066
16390
|
};
|
|
16067
16391
|
}>;
|
|
16068
16392
|
seller: {
|
|
@@ -16076,6 +16400,8 @@ export declare type OfferFieldsFragment = {
|
|
|
16076
16400
|
authTokenType: number;
|
|
16077
16401
|
voucherCloneAddress: string;
|
|
16078
16402
|
active: boolean;
|
|
16403
|
+
contractURI: string;
|
|
16404
|
+
royaltyPercentage: string;
|
|
16079
16405
|
};
|
|
16080
16406
|
exchangeToken: {
|
|
16081
16407
|
__typename?: "ExchangeToken";
|
|
@@ -16265,6 +16591,8 @@ export declare type OfferFieldsFragment = {
|
|
|
16265
16591
|
authTokenType: number;
|
|
16266
16592
|
voucherCloneAddress: string;
|
|
16267
16593
|
active: boolean;
|
|
16594
|
+
contractURI: string;
|
|
16595
|
+
royaltyPercentage: string;
|
|
16268
16596
|
};
|
|
16269
16597
|
};
|
|
16270
16598
|
exchangePolicy: {
|
|
@@ -16309,7 +16637,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16309
16637
|
validUntilDate: string;
|
|
16310
16638
|
voucherRedeemableFromDate: string;
|
|
16311
16639
|
voucherRedeemableUntilDate: string;
|
|
16312
|
-
|
|
16640
|
+
disputePeriodDuration: string;
|
|
16313
16641
|
voucherValidDuration: string;
|
|
16314
16642
|
resolutionPeriodDuration: string;
|
|
16315
16643
|
metadataUri: string;
|
|
@@ -16330,6 +16658,8 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16330
16658
|
authTokenType: number;
|
|
16331
16659
|
voucherCloneAddress: string;
|
|
16332
16660
|
active: boolean;
|
|
16661
|
+
contractURI: string;
|
|
16662
|
+
royaltyPercentage: string;
|
|
16333
16663
|
};
|
|
16334
16664
|
exchangeToken: {
|
|
16335
16665
|
__typename?: "ExchangeToken";
|
|
@@ -16519,6 +16849,8 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16519
16849
|
authTokenType: number;
|
|
16520
16850
|
voucherCloneAddress: string;
|
|
16521
16851
|
active: boolean;
|
|
16852
|
+
contractURI: string;
|
|
16853
|
+
royaltyPercentage: string;
|
|
16522
16854
|
};
|
|
16523
16855
|
};
|
|
16524
16856
|
exchangePolicy: {
|