@bosonprotocol/core-sdk 1.18.0-alpha.5 → 1.18.0-alpha.6
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 +3 -3
- package/dist/cjs/core-sdk.d.ts.map +1 -1
- package/dist/cjs/core-sdk.js +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 +176 -45
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +2 -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 +3 -3
- package/dist/esm/core-sdk.d.ts.map +1 -1
- package/dist/esm/core-sdk.js +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 +176 -45
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +2 -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/core-sdk.ts +3 -3
- 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 +178 -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"]>;
|
|
@@ -5915,6 +6041,8 @@ export declare type SellerOffersArgs = {
|
|
|
5915
6041
|
where?: InputMaybe<Offer_Filter>;
|
|
5916
6042
|
};
|
|
5917
6043
|
export declare type Seller_Filter = {
|
|
6044
|
+
/** Filter for the block changed event. */
|
|
6045
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5918
6046
|
active?: InputMaybe<Scalars["Boolean"]>;
|
|
5919
6047
|
active_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
5920
6048
|
active_not?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -5947,6 +6075,8 @@ export declare type Seller_Filter = {
|
|
|
5947
6075
|
clerk_not?: InputMaybe<Scalars["Bytes"]>;
|
|
5948
6076
|
clerk_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
5949
6077
|
clerk_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6078
|
+
exchanges_?: InputMaybe<Exchange_Filter>;
|
|
6079
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
5950
6080
|
id?: InputMaybe<Scalars["ID"]>;
|
|
5951
6081
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
5952
6082
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -5955,6 +6085,7 @@ export declare type Seller_Filter = {
|
|
|
5955
6085
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
5956
6086
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
5957
6087
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
6088
|
+
offers_?: InputMaybe<Offer_Filter>;
|
|
5958
6089
|
operator?: InputMaybe<Scalars["Bytes"]>;
|
|
5959
6090
|
operator_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
5960
6091
|
operator_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
@@ -6659,7 +6790,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6659
6790
|
validUntilDate: string;
|
|
6660
6791
|
voucherRedeemableFromDate: string;
|
|
6661
6792
|
voucherRedeemableUntilDate: string;
|
|
6662
|
-
|
|
6793
|
+
disputePeriodDuration: string;
|
|
6663
6794
|
voucherValidDuration: string;
|
|
6664
6795
|
resolutionPeriodDuration: string;
|
|
6665
6796
|
metadataUri: string;
|
|
@@ -7123,7 +7254,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
7123
7254
|
validUntilDate: string;
|
|
7124
7255
|
voucherRedeemableFromDate: string;
|
|
7125
7256
|
voucherRedeemableUntilDate: string;
|
|
7126
|
-
|
|
7257
|
+
disputePeriodDuration: string;
|
|
7127
7258
|
voucherValidDuration: string;
|
|
7128
7259
|
resolutionPeriodDuration: string;
|
|
7129
7260
|
metadataUri: string;
|
|
@@ -7955,7 +8086,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
7955
8086
|
validUntilDate: string;
|
|
7956
8087
|
voucherRedeemableFromDate: string;
|
|
7957
8088
|
voucherRedeemableUntilDate: string;
|
|
7958
|
-
|
|
8089
|
+
disputePeriodDuration: string;
|
|
7959
8090
|
voucherValidDuration: string;
|
|
7960
8091
|
resolutionPeriodDuration: string;
|
|
7961
8092
|
metadataUri: string;
|
|
@@ -8360,7 +8491,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8360
8491
|
validUntilDate: string;
|
|
8361
8492
|
voucherRedeemableFromDate: string;
|
|
8362
8493
|
voucherRedeemableUntilDate: string;
|
|
8363
|
-
|
|
8494
|
+
disputePeriodDuration: string;
|
|
8364
8495
|
voucherValidDuration: string;
|
|
8365
8496
|
resolutionPeriodDuration: string;
|
|
8366
8497
|
metadataUri: string;
|
|
@@ -8758,7 +8889,7 @@ export declare type SellerFieldsFragment = {
|
|
|
8758
8889
|
validUntilDate: string;
|
|
8759
8890
|
voucherRedeemableFromDate: string;
|
|
8760
8891
|
voucherRedeemableUntilDate: string;
|
|
8761
|
-
|
|
8892
|
+
disputePeriodDuration: string;
|
|
8762
8893
|
voucherValidDuration: string;
|
|
8763
8894
|
resolutionPeriodDuration: string;
|
|
8764
8895
|
metadataUri: string;
|
|
@@ -9362,7 +9493,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9362
9493
|
validUntilDate: string;
|
|
9363
9494
|
voucherRedeemableFromDate: string;
|
|
9364
9495
|
voucherRedeemableUntilDate: string;
|
|
9365
|
-
|
|
9496
|
+
disputePeriodDuration: string;
|
|
9366
9497
|
voucherValidDuration: string;
|
|
9367
9498
|
resolutionPeriodDuration: string;
|
|
9368
9499
|
metadataUri: string;
|
|
@@ -10093,7 +10224,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10093
10224
|
validUntilDate: string;
|
|
10094
10225
|
voucherRedeemableFromDate: string;
|
|
10095
10226
|
voucherRedeemableUntilDate: string;
|
|
10096
|
-
|
|
10227
|
+
disputePeriodDuration: string;
|
|
10097
10228
|
voucherValidDuration: string;
|
|
10098
10229
|
resolutionPeriodDuration: string;
|
|
10099
10230
|
metadataUri: string;
|
|
@@ -10383,7 +10514,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10383
10514
|
validUntilDate: string;
|
|
10384
10515
|
voucherRedeemableFromDate: string;
|
|
10385
10516
|
voucherRedeemableUntilDate: string;
|
|
10386
|
-
|
|
10517
|
+
disputePeriodDuration: string;
|
|
10387
10518
|
voucherValidDuration: string;
|
|
10388
10519
|
resolutionPeriodDuration: string;
|
|
10389
10520
|
metadataUri: string;
|
|
@@ -10652,7 +10783,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10652
10783
|
validUntilDate: string;
|
|
10653
10784
|
voucherRedeemableFromDate: string;
|
|
10654
10785
|
voucherRedeemableUntilDate: string;
|
|
10655
|
-
|
|
10786
|
+
disputePeriodDuration: string;
|
|
10656
10787
|
voucherValidDuration: string;
|
|
10657
10788
|
resolutionPeriodDuration: string;
|
|
10658
10789
|
metadataUri: string;
|
|
@@ -11159,7 +11290,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11159
11290
|
validUntilDate: string;
|
|
11160
11291
|
voucherRedeemableFromDate: string;
|
|
11161
11292
|
voucherRedeemableUntilDate: string;
|
|
11162
|
-
|
|
11293
|
+
disputePeriodDuration: string;
|
|
11163
11294
|
voucherValidDuration: string;
|
|
11164
11295
|
resolutionPeriodDuration: string;
|
|
11165
11296
|
metadataUri: string;
|
|
@@ -11471,7 +11602,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11471
11602
|
validUntilDate: string;
|
|
11472
11603
|
voucherRedeemableFromDate: string;
|
|
11473
11604
|
voucherRedeemableUntilDate: string;
|
|
11474
|
-
|
|
11605
|
+
disputePeriodDuration: string;
|
|
11475
11606
|
voucherValidDuration: string;
|
|
11476
11607
|
resolutionPeriodDuration: string;
|
|
11477
11608
|
metadataUri: string;
|
|
@@ -11774,7 +11905,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
11774
11905
|
validUntilDate: string;
|
|
11775
11906
|
voucherRedeemableFromDate: string;
|
|
11776
11907
|
voucherRedeemableUntilDate: string;
|
|
11777
|
-
|
|
11908
|
+
disputePeriodDuration: string;
|
|
11778
11909
|
voucherValidDuration: string;
|
|
11779
11910
|
resolutionPeriodDuration: string;
|
|
11780
11911
|
metadataUri: string;
|
|
@@ -12206,7 +12337,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12206
12337
|
validUntilDate: string;
|
|
12207
12338
|
voucherRedeemableFromDate: string;
|
|
12208
12339
|
voucherRedeemableUntilDate: string;
|
|
12209
|
-
|
|
12340
|
+
disputePeriodDuration: string;
|
|
12210
12341
|
voucherValidDuration: string;
|
|
12211
12342
|
resolutionPeriodDuration: string;
|
|
12212
12343
|
metadataUri: string;
|
|
@@ -12513,7 +12644,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12513
12644
|
validUntilDate: string;
|
|
12514
12645
|
voucherRedeemableFromDate: string;
|
|
12515
12646
|
voucherRedeemableUntilDate: string;
|
|
12516
|
-
|
|
12647
|
+
disputePeriodDuration: string;
|
|
12517
12648
|
voucherValidDuration: string;
|
|
12518
12649
|
resolutionPeriodDuration: string;
|
|
12519
12650
|
metadataUri: string;
|
|
@@ -12811,7 +12942,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
12811
12942
|
validUntilDate: string;
|
|
12812
12943
|
voucherRedeemableFromDate: string;
|
|
12813
12944
|
voucherRedeemableUntilDate: string;
|
|
12814
|
-
|
|
12945
|
+
disputePeriodDuration: string;
|
|
12815
12946
|
voucherValidDuration: string;
|
|
12816
12947
|
resolutionPeriodDuration: string;
|
|
12817
12948
|
metadataUri: string;
|
|
@@ -13108,7 +13239,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13108
13239
|
validUntilDate: string;
|
|
13109
13240
|
voucherRedeemableFromDate: string;
|
|
13110
13241
|
voucherRedeemableUntilDate: string;
|
|
13111
|
-
|
|
13242
|
+
disputePeriodDuration: string;
|
|
13112
13243
|
voucherValidDuration: string;
|
|
13113
13244
|
resolutionPeriodDuration: string;
|
|
13114
13245
|
metadataUri: string;
|
|
@@ -13446,7 +13577,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13446
13577
|
validUntilDate: string;
|
|
13447
13578
|
voucherRedeemableFromDate: string;
|
|
13448
13579
|
voucherRedeemableUntilDate: string;
|
|
13449
|
-
|
|
13580
|
+
disputePeriodDuration: string;
|
|
13450
13581
|
voucherValidDuration: string;
|
|
13451
13582
|
resolutionPeriodDuration: string;
|
|
13452
13583
|
metadataUri: string;
|
|
@@ -13884,7 +14015,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
13884
14015
|
validUntilDate: string;
|
|
13885
14016
|
voucherRedeemableFromDate: string;
|
|
13886
14017
|
voucherRedeemableUntilDate: string;
|
|
13887
|
-
|
|
14018
|
+
disputePeriodDuration: string;
|
|
13888
14019
|
voucherValidDuration: string;
|
|
13889
14020
|
resolutionPeriodDuration: string;
|
|
13890
14021
|
metadataUri: string;
|
|
@@ -14313,7 +14444,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14313
14444
|
validUntilDate: string;
|
|
14314
14445
|
voucherRedeemableFromDate: string;
|
|
14315
14446
|
voucherRedeemableUntilDate: string;
|
|
14316
|
-
|
|
14447
|
+
disputePeriodDuration: string;
|
|
14317
14448
|
voucherValidDuration: string;
|
|
14318
14449
|
resolutionPeriodDuration: string;
|
|
14319
14450
|
metadataUri: string;
|
|
@@ -14741,7 +14872,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
14741
14872
|
validUntilDate: string;
|
|
14742
14873
|
voucherRedeemableFromDate: string;
|
|
14743
14874
|
voucherRedeemableUntilDate: string;
|
|
14744
|
-
|
|
14875
|
+
disputePeriodDuration: string;
|
|
14745
14876
|
voucherValidDuration: string;
|
|
14746
14877
|
resolutionPeriodDuration: string;
|
|
14747
14878
|
metadataUri: string;
|
|
@@ -15386,7 +15517,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15386
15517
|
validUntilDate: string;
|
|
15387
15518
|
voucherRedeemableFromDate: string;
|
|
15388
15519
|
voucherRedeemableUntilDate: string;
|
|
15389
|
-
|
|
15520
|
+
disputePeriodDuration: string;
|
|
15390
15521
|
voucherValidDuration: string;
|
|
15391
15522
|
resolutionPeriodDuration: string;
|
|
15392
15523
|
metadataUri: string;
|
|
@@ -15704,7 +15835,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
15704
15835
|
validUntilDate: string;
|
|
15705
15836
|
voucherRedeemableFromDate: string;
|
|
15706
15837
|
voucherRedeemableUntilDate: string;
|
|
15707
|
-
|
|
15838
|
+
disputePeriodDuration: string;
|
|
15708
15839
|
voucherValidDuration: string;
|
|
15709
15840
|
resolutionPeriodDuration: string;
|
|
15710
15841
|
metadataUri: string;
|
|
@@ -16007,7 +16138,7 @@ export declare type OfferFieldsFragment = {
|
|
|
16007
16138
|
validUntilDate: string;
|
|
16008
16139
|
voucherRedeemableFromDate: string;
|
|
16009
16140
|
voucherRedeemableUntilDate: string;
|
|
16010
|
-
|
|
16141
|
+
disputePeriodDuration: string;
|
|
16011
16142
|
voucherValidDuration: string;
|
|
16012
16143
|
resolutionPeriodDuration: string;
|
|
16013
16144
|
metadataUri: string;
|
|
@@ -16309,7 +16440,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16309
16440
|
validUntilDate: string;
|
|
16310
16441
|
voucherRedeemableFromDate: string;
|
|
16311
16442
|
voucherRedeemableUntilDate: string;
|
|
16312
|
-
|
|
16443
|
+
disputePeriodDuration: string;
|
|
16313
16444
|
voucherValidDuration: string;
|
|
16314
16445
|
resolutionPeriodDuration: string;
|
|
16315
16446
|
metadataUri: string;
|