@bosonprotocol/core-sdk 1.18.0-alpha.0 → 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/src/subgraph.ts
CHANGED
|
@@ -69,6 +69,8 @@ export type AccountEventLog = EventLog & {
|
|
|
69
69
|
};
|
|
70
70
|
|
|
71
71
|
export type AccountEventLog_Filter = {
|
|
72
|
+
/** Filter for the block changed event. */
|
|
73
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
72
74
|
account?: InputMaybe<Scalars["String"]>;
|
|
73
75
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
74
76
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -147,6 +149,9 @@ export enum AccountEventLog_OrderBy {
|
|
|
147
149
|
}
|
|
148
150
|
|
|
149
151
|
export type Account_Filter = {
|
|
152
|
+
/** Filter for the block changed event. */
|
|
153
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
154
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
150
155
|
id?: InputMaybe<Scalars["ID"]>;
|
|
151
156
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
152
157
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -207,7 +212,10 @@ export type BaseMetadataEntityAttributesArgs = {
|
|
|
207
212
|
};
|
|
208
213
|
|
|
209
214
|
export type BaseMetadataEntity_Filter = {
|
|
215
|
+
/** Filter for the block changed event. */
|
|
216
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
210
217
|
attributes?: InputMaybe<Array<Scalars["String"]>>;
|
|
218
|
+
attributes_?: InputMaybe<MetadataAttribute_Filter>;
|
|
211
219
|
attributes_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
212
220
|
attributes_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
213
221
|
attributes_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -242,6 +250,7 @@ export type BaseMetadataEntity_Filter = {
|
|
|
242
250
|
description_starts_with?: InputMaybe<Scalars["String"]>;
|
|
243
251
|
description_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
244
252
|
exchangeToken?: InputMaybe<Scalars["String"]>;
|
|
253
|
+
exchangeToken_?: InputMaybe<ExchangeToken_Filter>;
|
|
245
254
|
exchangeToken_contains?: InputMaybe<Scalars["String"]>;
|
|
246
255
|
exchangeToken_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
247
256
|
exchangeToken_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -346,6 +355,7 @@ export type BaseMetadataEntity_Filter = {
|
|
|
346
355
|
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
347
356
|
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
348
357
|
offer?: InputMaybe<Scalars["String"]>;
|
|
358
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
349
359
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
350
360
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
351
361
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -394,6 +404,7 @@ export type BaseMetadataEntity_Filter = {
|
|
|
394
404
|
schemaUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
395
405
|
schemaUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
396
406
|
seller?: InputMaybe<Scalars["String"]>;
|
|
407
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
397
408
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
398
409
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
399
410
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -460,19 +471,13 @@ export enum BaseMetadataEntity_OrderBy {
|
|
|
460
471
|
Voided = "voided"
|
|
461
472
|
}
|
|
462
473
|
|
|
463
|
-
|
|
474
|
+
export type BlockChangedFilter = {
|
|
475
|
+
number_gte: Scalars["Int"];
|
|
476
|
+
};
|
|
477
|
+
|
|
464
478
|
export type Block_Height = {
|
|
465
|
-
/** Value containing a block hash */
|
|
466
479
|
hash?: InputMaybe<Scalars["Bytes"]>;
|
|
467
|
-
/** Value containing a block number */
|
|
468
480
|
number?: InputMaybe<Scalars["Int"]>;
|
|
469
|
-
/**
|
|
470
|
-
* Value containing the minimum block number.
|
|
471
|
-
* In the case of `number_gte`, the query will be executed on the latest block only if
|
|
472
|
-
* the subgraph has progressed to or past the minimum block number.
|
|
473
|
-
* Defaults to the latest block when omitted.
|
|
474
|
-
*
|
|
475
|
-
*/
|
|
476
481
|
number_gte?: InputMaybe<Scalars["Int"]>;
|
|
477
482
|
};
|
|
478
483
|
|
|
@@ -511,10 +516,14 @@ export type BuyerLogsArgs = {
|
|
|
511
516
|
};
|
|
512
517
|
|
|
513
518
|
export type Buyer_Filter = {
|
|
519
|
+
/** Filter for the block changed event. */
|
|
520
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
514
521
|
active?: InputMaybe<Scalars["Boolean"]>;
|
|
515
522
|
active_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
516
523
|
active_not?: InputMaybe<Scalars["Boolean"]>;
|
|
517
524
|
active_not_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
525
|
+
exchanges_?: InputMaybe<Exchange_Filter>;
|
|
526
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
518
527
|
id?: InputMaybe<Scalars["ID"]>;
|
|
519
528
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
520
529
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -572,6 +581,8 @@ export type DisputeEventLog = EventLog & {
|
|
|
572
581
|
};
|
|
573
582
|
|
|
574
583
|
export type DisputeEventLog_Filter = {
|
|
584
|
+
/** Filter for the block changed event. */
|
|
585
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
575
586
|
account?: InputMaybe<Scalars["String"]>;
|
|
576
587
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
577
588
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -593,6 +604,7 @@ export type DisputeEventLog_Filter = {
|
|
|
593
604
|
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
594
605
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
595
606
|
dispute?: InputMaybe<Scalars["String"]>;
|
|
607
|
+
dispute_?: InputMaybe<Dispute_Filter>;
|
|
596
608
|
dispute_contains?: InputMaybe<Scalars["String"]>;
|
|
597
609
|
dispute_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
598
610
|
dispute_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -683,6 +695,8 @@ export type DisputeResolutionTermsEntity = {
|
|
|
683
695
|
};
|
|
684
696
|
|
|
685
697
|
export type DisputeResolutionTermsEntity_Filter = {
|
|
698
|
+
/** Filter for the block changed event. */
|
|
699
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
686
700
|
buyerEscalationDeposit?: InputMaybe<Scalars["BigInt"]>;
|
|
687
701
|
buyerEscalationDeposit_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
688
702
|
buyerEscalationDeposit_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -700,6 +714,7 @@ export type DisputeResolutionTermsEntity_Filter = {
|
|
|
700
714
|
disputeResolverId_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
701
715
|
disputeResolverId_not?: InputMaybe<Scalars["BigInt"]>;
|
|
702
716
|
disputeResolverId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
717
|
+
disputeResolver_?: InputMaybe<DisputeResolver_Filter>;
|
|
703
718
|
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
704
719
|
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
705
720
|
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -744,6 +759,7 @@ export type DisputeResolutionTermsEntity_Filter = {
|
|
|
744
759
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
745
760
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
746
761
|
offer?: InputMaybe<Scalars["String"]>;
|
|
762
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
747
763
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
748
764
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
749
765
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -835,6 +851,8 @@ export type DisputeResolverFee = {
|
|
|
835
851
|
};
|
|
836
852
|
|
|
837
853
|
export type DisputeResolverFee_Filter = {
|
|
854
|
+
/** Filter for the block changed event. */
|
|
855
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
838
856
|
feeAmount?: InputMaybe<Scalars["BigInt"]>;
|
|
839
857
|
feeAmount_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
840
858
|
feeAmount_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -878,6 +896,7 @@ export type DisputeResolverFee_Filter = {
|
|
|
878
896
|
tokenName_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
879
897
|
tokenName_starts_with?: InputMaybe<Scalars["String"]>;
|
|
880
898
|
tokenName_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
899
|
+
token_?: InputMaybe<ExchangeToken_Filter>;
|
|
881
900
|
token_contains?: InputMaybe<Scalars["String"]>;
|
|
882
901
|
token_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
883
902
|
token_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -908,6 +927,8 @@ export enum DisputeResolverFee_OrderBy {
|
|
|
908
927
|
}
|
|
909
928
|
|
|
910
929
|
export type DisputeResolver_Filter = {
|
|
930
|
+
/** Filter for the block changed event. */
|
|
931
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
911
932
|
active?: InputMaybe<Scalars["Boolean"]>;
|
|
912
933
|
active_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
913
934
|
active_not?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -933,11 +954,13 @@ export type DisputeResolver_Filter = {
|
|
|
933
954
|
escalationResponsePeriod_not?: InputMaybe<Scalars["BigInt"]>;
|
|
934
955
|
escalationResponsePeriod_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
935
956
|
fees?: InputMaybe<Array<Scalars["String"]>>;
|
|
957
|
+
fees_?: InputMaybe<DisputeResolverFee_Filter>;
|
|
936
958
|
fees_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
937
959
|
fees_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
938
960
|
fees_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
939
961
|
fees_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
940
962
|
fees_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
963
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
941
964
|
id?: InputMaybe<Scalars["ID"]>;
|
|
942
965
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
943
966
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -966,6 +989,7 @@ export type DisputeResolver_Filter = {
|
|
|
966
989
|
metadataUri_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
967
990
|
metadataUri_starts_with?: InputMaybe<Scalars["String"]>;
|
|
968
991
|
metadataUri_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
992
|
+
offers_?: InputMaybe<Offer_Filter>;
|
|
969
993
|
operator?: InputMaybe<Scalars["Bytes"]>;
|
|
970
994
|
operator_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
971
995
|
operator_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
@@ -1016,6 +1040,8 @@ export enum DisputeState {
|
|
|
1016
1040
|
}
|
|
1017
1041
|
|
|
1018
1042
|
export type Dispute_Filter = {
|
|
1043
|
+
/** Filter for the block changed event. */
|
|
1044
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1019
1045
|
buyer?: InputMaybe<Scalars["String"]>;
|
|
1020
1046
|
buyerPercent?: InputMaybe<Scalars["BigInt"]>;
|
|
1021
1047
|
buyerPercent_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -1025,6 +1051,7 @@ export type Dispute_Filter = {
|
|
|
1025
1051
|
buyerPercent_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1026
1052
|
buyerPercent_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1027
1053
|
buyerPercent_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1054
|
+
buyer_?: InputMaybe<Buyer_Filter>;
|
|
1028
1055
|
buyer_contains?: InputMaybe<Scalars["String"]>;
|
|
1029
1056
|
buyer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1030
1057
|
buyer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1053,6 +1080,7 @@ export type Dispute_Filter = {
|
|
|
1053
1080
|
decidedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1054
1081
|
decidedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1055
1082
|
disputeResolver?: InputMaybe<Scalars["String"]>;
|
|
1083
|
+
disputeResolver_?: InputMaybe<DisputeResolver_Filter>;
|
|
1056
1084
|
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
1057
1085
|
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1058
1086
|
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1097,6 +1125,7 @@ export type Dispute_Filter = {
|
|
|
1097
1125
|
exchangeId_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1098
1126
|
exchangeId_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1099
1127
|
exchangeId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1128
|
+
exchange_?: InputMaybe<Exchange_Filter>;
|
|
1100
1129
|
exchange_contains?: InputMaybe<Scalars["String"]>;
|
|
1101
1130
|
exchange_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1102
1131
|
exchange_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1157,6 +1186,7 @@ export type Dispute_Filter = {
|
|
|
1157
1186
|
retractedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1158
1187
|
retractedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1159
1188
|
seller?: InputMaybe<Scalars["String"]>;
|
|
1189
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
1160
1190
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
1161
1191
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1162
1192
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1219,6 +1249,8 @@ export type EventLog = {
|
|
|
1219
1249
|
};
|
|
1220
1250
|
|
|
1221
1251
|
export type EventLog_Filter = {
|
|
1252
|
+
/** Filter for the block changed event. */
|
|
1253
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1222
1254
|
account?: InputMaybe<Scalars["String"]>;
|
|
1223
1255
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
1224
1256
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1373,6 +1405,8 @@ export type ExchangeEventLog = EventLog & {
|
|
|
1373
1405
|
};
|
|
1374
1406
|
|
|
1375
1407
|
export type ExchangeEventLog_Filter = {
|
|
1408
|
+
/** Filter for the block changed event. */
|
|
1409
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1376
1410
|
account?: InputMaybe<Scalars["String"]>;
|
|
1377
1411
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
1378
1412
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1394,6 +1428,7 @@ export type ExchangeEventLog_Filter = {
|
|
|
1394
1428
|
account_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1395
1429
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1396
1430
|
exchange?: InputMaybe<Scalars["String"]>;
|
|
1431
|
+
exchange_?: InputMaybe<Exchange_Filter>;
|
|
1397
1432
|
exchange_contains?: InputMaybe<Scalars["String"]>;
|
|
1398
1433
|
exchange_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1399
1434
|
exchange_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1524,6 +1559,8 @@ export type ExchangeTokenOffersArgs = {
|
|
|
1524
1559
|
};
|
|
1525
1560
|
|
|
1526
1561
|
export type ExchangeToken_Filter = {
|
|
1562
|
+
/** Filter for the block changed event. */
|
|
1563
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1527
1564
|
address?: InputMaybe<Scalars["Bytes"]>;
|
|
1528
1565
|
address_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1529
1566
|
address_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
@@ -1538,6 +1575,7 @@ export type ExchangeToken_Filter = {
|
|
|
1538
1575
|
decimals_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1539
1576
|
decimals_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1540
1577
|
decimals_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1578
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
1541
1579
|
id?: InputMaybe<Scalars["ID"]>;
|
|
1542
1580
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
1543
1581
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -1566,6 +1604,7 @@ export type ExchangeToken_Filter = {
|
|
|
1566
1604
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1567
1605
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1568
1606
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1607
|
+
offers_?: InputMaybe<Offer_Filter>;
|
|
1569
1608
|
symbol?: InputMaybe<Scalars["String"]>;
|
|
1570
1609
|
symbol_contains?: InputMaybe<Scalars["String"]>;
|
|
1571
1610
|
symbol_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1599,7 +1638,10 @@ export enum ExchangeToken_OrderBy {
|
|
|
1599
1638
|
}
|
|
1600
1639
|
|
|
1601
1640
|
export type Exchange_Filter = {
|
|
1641
|
+
/** Filter for the block changed event. */
|
|
1642
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1602
1643
|
buyer?: InputMaybe<Scalars["String"]>;
|
|
1644
|
+
buyer_?: InputMaybe<Buyer_Filter>;
|
|
1603
1645
|
buyer_contains?: InputMaybe<Scalars["String"]>;
|
|
1604
1646
|
buyer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1605
1647
|
buyer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1645,6 +1687,7 @@ export type Exchange_Filter = {
|
|
|
1645
1687
|
completedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1646
1688
|
dispute?: InputMaybe<Scalars["String"]>;
|
|
1647
1689
|
disputeResolver?: InputMaybe<Scalars["String"]>;
|
|
1690
|
+
disputeResolver_?: InputMaybe<DisputeResolver_Filter>;
|
|
1648
1691
|
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
1649
1692
|
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1650
1693
|
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1664,6 +1707,7 @@ export type Exchange_Filter = {
|
|
|
1664
1707
|
disputeResolver_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1665
1708
|
disputeResolver_starts_with?: InputMaybe<Scalars["String"]>;
|
|
1666
1709
|
disputeResolver_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
1710
|
+
dispute_?: InputMaybe<Dispute_Filter>;
|
|
1667
1711
|
dispute_contains?: InputMaybe<Scalars["String"]>;
|
|
1668
1712
|
dispute_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1669
1713
|
dispute_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1716,6 +1760,7 @@ export type Exchange_Filter = {
|
|
|
1716
1760
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
1717
1761
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
1718
1762
|
offer?: InputMaybe<Scalars["String"]>;
|
|
1763
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
1719
1764
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
1720
1765
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1721
1766
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1752,6 +1797,7 @@ export type Exchange_Filter = {
|
|
|
1752
1797
|
revokedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1753
1798
|
revokedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1754
1799
|
seller?: InputMaybe<Scalars["String"]>;
|
|
1800
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
1755
1801
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
1756
1802
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1757
1803
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1820,6 +1866,8 @@ export type FundsEntity = {
|
|
|
1820
1866
|
};
|
|
1821
1867
|
|
|
1822
1868
|
export type FundsEntity_Filter = {
|
|
1869
|
+
/** Filter for the block changed event. */
|
|
1870
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1823
1871
|
account?: InputMaybe<Scalars["String"]>;
|
|
1824
1872
|
accountId?: InputMaybe<Scalars["BigInt"]>;
|
|
1825
1873
|
accountId_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -1871,6 +1919,7 @@ export type FundsEntity_Filter = {
|
|
|
1871
1919
|
tokenAddress_not?: InputMaybe<Scalars["Bytes"]>;
|
|
1872
1920
|
tokenAddress_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1873
1921
|
tokenAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1922
|
+
token_?: InputMaybe<ExchangeToken_Filter>;
|
|
1874
1923
|
token_contains?: InputMaybe<Scalars["String"]>;
|
|
1875
1924
|
token_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1876
1925
|
token_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -1913,6 +1962,8 @@ export type FundsEventLog = EventLog & {
|
|
|
1913
1962
|
};
|
|
1914
1963
|
|
|
1915
1964
|
export type FundsEventLog_Filter = {
|
|
1965
|
+
/** Filter for the block changed event. */
|
|
1966
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1916
1967
|
account?: InputMaybe<Scalars["String"]>;
|
|
1917
1968
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
1918
1969
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -1940,6 +1991,7 @@ export type FundsEventLog_Filter = {
|
|
|
1940
1991
|
executedBy_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
1941
1992
|
executedBy_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
1942
1993
|
funds?: InputMaybe<Scalars["String"]>;
|
|
1994
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
1943
1995
|
funds_contains?: InputMaybe<Scalars["String"]>;
|
|
1944
1996
|
funds_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
1945
1997
|
funds_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2020,6 +2072,8 @@ export type MetadataAttribute = {
|
|
|
2020
2072
|
};
|
|
2021
2073
|
|
|
2022
2074
|
export type MetadataAttribute_Filter = {
|
|
2075
|
+
/** Filter for the block changed event. */
|
|
2076
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2023
2077
|
displayType?: InputMaybe<Scalars["String"]>;
|
|
2024
2078
|
displayType_contains?: InputMaybe<Scalars["String"]>;
|
|
2025
2079
|
displayType_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2139,7 +2193,10 @@ export type MetadataInterfaceAttributesArgs = {
|
|
|
2139
2193
|
};
|
|
2140
2194
|
|
|
2141
2195
|
export type MetadataInterface_Filter = {
|
|
2196
|
+
/** Filter for the block changed event. */
|
|
2197
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2142
2198
|
attributes?: InputMaybe<Array<Scalars["String"]>>;
|
|
2199
|
+
attributes_?: InputMaybe<MetadataAttribute_Filter>;
|
|
2143
2200
|
attributes_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
2144
2201
|
attributes_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
2145
2202
|
attributes_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -2174,6 +2231,7 @@ export type MetadataInterface_Filter = {
|
|
|
2174
2231
|
description_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2175
2232
|
description_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2176
2233
|
exchangeToken?: InputMaybe<Scalars["String"]>;
|
|
2234
|
+
exchangeToken_?: InputMaybe<ExchangeToken_Filter>;
|
|
2177
2235
|
exchangeToken_contains?: InputMaybe<Scalars["String"]>;
|
|
2178
2236
|
exchangeToken_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2179
2237
|
exchangeToken_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2278,6 +2336,7 @@ export type MetadataInterface_Filter = {
|
|
|
2278
2336
|
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2279
2337
|
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2280
2338
|
offer?: InputMaybe<Scalars["String"]>;
|
|
2339
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
2281
2340
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
2282
2341
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2283
2342
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2326,6 +2385,7 @@ export type MetadataInterface_Filter = {
|
|
|
2326
2385
|
schemaUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2327
2386
|
schemaUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2328
2387
|
seller?: InputMaybe<Scalars["String"]>;
|
|
2388
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
2329
2389
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
2330
2390
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2331
2391
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2407,13 +2467,13 @@ export type Offer = {
|
|
|
2407
2467
|
agentId: Scalars["BigInt"];
|
|
2408
2468
|
buyerCancelPenalty: Scalars["BigInt"];
|
|
2409
2469
|
createdAt: Scalars["BigInt"];
|
|
2470
|
+
/** Offer durations */
|
|
2471
|
+
disputePeriodDuration: Scalars["BigInt"];
|
|
2410
2472
|
disputeResolutionTerms: DisputeResolutionTermsEntity;
|
|
2411
2473
|
disputeResolver: DisputeResolver;
|
|
2412
2474
|
disputeResolverId: Scalars["BigInt"];
|
|
2413
2475
|
exchangeToken: ExchangeToken;
|
|
2414
2476
|
exchanges: Array<Exchange>;
|
|
2415
|
-
/** Offer durations */
|
|
2416
|
-
fulfillmentPeriodDuration: Scalars["BigInt"];
|
|
2417
2477
|
id: Scalars["ID"];
|
|
2418
2478
|
metadata?: Maybe<MetadataInterface>;
|
|
2419
2479
|
metadataHash: Scalars["String"];
|
|
@@ -2463,6 +2523,8 @@ export type OfferEventLog = EventLog & {
|
|
|
2463
2523
|
};
|
|
2464
2524
|
|
|
2465
2525
|
export type OfferEventLog_Filter = {
|
|
2526
|
+
/** Filter for the block changed event. */
|
|
2527
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2466
2528
|
account?: InputMaybe<Scalars["String"]>;
|
|
2467
2529
|
account_contains?: InputMaybe<Scalars["String"]>;
|
|
2468
2530
|
account_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2518,6 +2580,7 @@ export type OfferEventLog_Filter = {
|
|
|
2518
2580
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
2519
2581
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
2520
2582
|
offer?: InputMaybe<Scalars["String"]>;
|
|
2583
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
2521
2584
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
2522
2585
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2523
2586
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2562,6 +2625,8 @@ export enum OfferEventLog_OrderBy {
|
|
|
2562
2625
|
}
|
|
2563
2626
|
|
|
2564
2627
|
export type Offer_Filter = {
|
|
2628
|
+
/** Filter for the block changed event. */
|
|
2629
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2565
2630
|
agentFee?: InputMaybe<Scalars["BigInt"]>;
|
|
2566
2631
|
agentFee_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2567
2632
|
agentFee_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -2594,7 +2659,16 @@ export type Offer_Filter = {
|
|
|
2594
2659
|
createdAt_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2595
2660
|
createdAt_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2596
2661
|
createdAt_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2662
|
+
disputePeriodDuration?: InputMaybe<Scalars["BigInt"]>;
|
|
2663
|
+
disputePeriodDuration_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2664
|
+
disputePeriodDuration_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2665
|
+
disputePeriodDuration_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2666
|
+
disputePeriodDuration_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2667
|
+
disputePeriodDuration_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2668
|
+
disputePeriodDuration_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2669
|
+
disputePeriodDuration_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2597
2670
|
disputeResolutionTerms?: InputMaybe<Scalars["String"]>;
|
|
2671
|
+
disputeResolutionTerms_?: InputMaybe<DisputeResolutionTermsEntity_Filter>;
|
|
2598
2672
|
disputeResolutionTerms_contains?: InputMaybe<Scalars["String"]>;
|
|
2599
2673
|
disputeResolutionTerms_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2600
2674
|
disputeResolutionTerms_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2623,6 +2697,7 @@ export type Offer_Filter = {
|
|
|
2623
2697
|
disputeResolverId_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2624
2698
|
disputeResolverId_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2625
2699
|
disputeResolverId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2700
|
+
disputeResolver_?: InputMaybe<DisputeResolver_Filter>;
|
|
2626
2701
|
disputeResolver_contains?: InputMaybe<Scalars["String"]>;
|
|
2627
2702
|
disputeResolver_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2628
2703
|
disputeResolver_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2643,6 +2718,7 @@ export type Offer_Filter = {
|
|
|
2643
2718
|
disputeResolver_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2644
2719
|
disputeResolver_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2645
2720
|
exchangeToken?: InputMaybe<Scalars["String"]>;
|
|
2721
|
+
exchangeToken_?: InputMaybe<ExchangeToken_Filter>;
|
|
2646
2722
|
exchangeToken_contains?: InputMaybe<Scalars["String"]>;
|
|
2647
2723
|
exchangeToken_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2648
2724
|
exchangeToken_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2662,14 +2738,7 @@ export type Offer_Filter = {
|
|
|
2662
2738
|
exchangeToken_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2663
2739
|
exchangeToken_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2664
2740
|
exchangeToken_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2665
|
-
|
|
2666
|
-
fulfillmentPeriodDuration_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
2667
|
-
fulfillmentPeriodDuration_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
2668
|
-
fulfillmentPeriodDuration_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2669
|
-
fulfillmentPeriodDuration_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
2670
|
-
fulfillmentPeriodDuration_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2671
|
-
fulfillmentPeriodDuration_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2672
|
-
fulfillmentPeriodDuration_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2741
|
+
exchanges_?: InputMaybe<Exchange_Filter>;
|
|
2673
2742
|
id?: InputMaybe<Scalars["ID"]>;
|
|
2674
2743
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
2675
2744
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -2811,6 +2880,7 @@ export type Offer_Filter = {
|
|
|
2811
2880
|
sellerId_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
2812
2881
|
sellerId_not?: InputMaybe<Scalars["BigInt"]>;
|
|
2813
2882
|
sellerId_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
2883
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
2814
2884
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
2815
2885
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2816
2886
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -2889,12 +2959,12 @@ export enum Offer_OrderBy {
|
|
|
2889
2959
|
AgentId = "agentId",
|
|
2890
2960
|
BuyerCancelPenalty = "buyerCancelPenalty",
|
|
2891
2961
|
CreatedAt = "createdAt",
|
|
2962
|
+
DisputePeriodDuration = "disputePeriodDuration",
|
|
2892
2963
|
DisputeResolutionTerms = "disputeResolutionTerms",
|
|
2893
2964
|
DisputeResolver = "disputeResolver",
|
|
2894
2965
|
DisputeResolverId = "disputeResolverId",
|
|
2895
2966
|
ExchangeToken = "exchangeToken",
|
|
2896
2967
|
Exchanges = "exchanges",
|
|
2897
|
-
FulfillmentPeriodDuration = "fulfillmentPeriodDuration",
|
|
2898
2968
|
Id = "id",
|
|
2899
2969
|
Metadata = "metadata",
|
|
2900
2970
|
MetadataHash = "metadataHash",
|
|
@@ -2940,6 +3010,8 @@ export type ProductV1BrandProductsArgs = {
|
|
|
2940
3010
|
};
|
|
2941
3011
|
|
|
2942
3012
|
export type ProductV1Brand_Filter = {
|
|
3013
|
+
/** Filter for the block changed event. */
|
|
3014
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2943
3015
|
id?: InputMaybe<Scalars["ID"]>;
|
|
2944
3016
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
2945
3017
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -2968,6 +3040,7 @@ export type ProductV1Brand_Filter = {
|
|
|
2968
3040
|
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2969
3041
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2970
3042
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3043
|
+
products_?: InputMaybe<ProductV1Product_Filter>;
|
|
2971
3044
|
};
|
|
2972
3045
|
|
|
2973
3046
|
export enum ProductV1Brand_OrderBy {
|
|
@@ -2983,6 +3056,8 @@ export type ProductV1Category = {
|
|
|
2983
3056
|
};
|
|
2984
3057
|
|
|
2985
3058
|
export type ProductV1Category_Filter = {
|
|
3059
|
+
/** Filter for the block changed event. */
|
|
3060
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2986
3061
|
id?: InputMaybe<Scalars["ID"]>;
|
|
2987
3062
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
2988
3063
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -3030,6 +3105,8 @@ export type ProductV1ExchangePolicy = {
|
|
|
3030
3105
|
};
|
|
3031
3106
|
|
|
3032
3107
|
export type ProductV1ExchangePolicy_Filter = {
|
|
3108
|
+
/** Filter for the block changed event. */
|
|
3109
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3033
3110
|
disputeResolverContactMethod?: InputMaybe<Scalars["String"]>;
|
|
3034
3111
|
disputeResolverContactMethod_contains?: InputMaybe<Scalars["String"]>;
|
|
3035
3112
|
disputeResolverContactMethod_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3180,6 +3257,8 @@ export enum ProductV1MediaType {
|
|
|
3180
3257
|
}
|
|
3181
3258
|
|
|
3182
3259
|
export type ProductV1Media_Filter = {
|
|
3260
|
+
/** Filter for the block changed event. */
|
|
3261
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3183
3262
|
id?: InputMaybe<Scalars["ID"]>;
|
|
3184
3263
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
3185
3264
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -3304,7 +3383,10 @@ export type ProductV1MetadataEntityVariationsArgs = {
|
|
|
3304
3383
|
};
|
|
3305
3384
|
|
|
3306
3385
|
export type ProductV1MetadataEntity_Filter = {
|
|
3386
|
+
/** Filter for the block changed event. */
|
|
3387
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3307
3388
|
attributes?: InputMaybe<Array<Scalars["String"]>>;
|
|
3389
|
+
attributes_?: InputMaybe<MetadataAttribute_Filter>;
|
|
3308
3390
|
attributes_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
3309
3391
|
attributes_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
3310
3392
|
attributes_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -3339,6 +3421,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3339
3421
|
description_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3340
3422
|
description_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3341
3423
|
exchangePolicy?: InputMaybe<Scalars["String"]>;
|
|
3424
|
+
exchangePolicy_?: InputMaybe<ProductV1ExchangePolicy_Filter>;
|
|
3342
3425
|
exchangePolicy_contains?: InputMaybe<Scalars["String"]>;
|
|
3343
3426
|
exchangePolicy_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3344
3427
|
exchangePolicy_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3359,6 +3442,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3359
3442
|
exchangePolicy_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3360
3443
|
exchangePolicy_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3361
3444
|
exchangeToken?: InputMaybe<Scalars["String"]>;
|
|
3445
|
+
exchangeToken_?: InputMaybe<ExchangeToken_Filter>;
|
|
3362
3446
|
exchangeToken_contains?: InputMaybe<Scalars["String"]>;
|
|
3363
3447
|
exchangeToken_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3364
3448
|
exchangeToken_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3463,6 +3547,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3463
3547
|
numberOfRedemptions_not?: InputMaybe<Scalars["BigInt"]>;
|
|
3464
3548
|
numberOfRedemptions_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
3465
3549
|
offer?: InputMaybe<Scalars["String"]>;
|
|
3550
|
+
offer_?: InputMaybe<Offer_Filter>;
|
|
3466
3551
|
offer_contains?: InputMaybe<Scalars["String"]>;
|
|
3467
3552
|
offer_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3468
3553
|
offer_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3484,6 +3569,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3484
3569
|
offer_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3485
3570
|
product?: InputMaybe<Scalars["String"]>;
|
|
3486
3571
|
productOverrides?: InputMaybe<Scalars["String"]>;
|
|
3572
|
+
productOverrides_?: InputMaybe<ProductV1ProductOverrides_Filter>;
|
|
3487
3573
|
productOverrides_contains?: InputMaybe<Scalars["String"]>;
|
|
3488
3574
|
productOverrides_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3489
3575
|
productOverrides_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3504,6 +3590,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3504
3590
|
productOverrides_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3505
3591
|
productOverrides_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3506
3592
|
productV1Seller?: InputMaybe<Scalars["String"]>;
|
|
3593
|
+
productV1Seller_?: InputMaybe<ProductV1Seller_Filter>;
|
|
3507
3594
|
productV1Seller_contains?: InputMaybe<Scalars["String"]>;
|
|
3508
3595
|
productV1Seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3509
3596
|
productV1Seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3523,6 +3610,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3523
3610
|
productV1Seller_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3524
3611
|
productV1Seller_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3525
3612
|
productV1Seller_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3613
|
+
product_?: InputMaybe<ProductV1Product_Filter>;
|
|
3526
3614
|
product_contains?: InputMaybe<Scalars["String"]>;
|
|
3527
3615
|
product_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3528
3616
|
product_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3571,6 +3659,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3571
3659
|
schemaUrl_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3572
3660
|
schemaUrl_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3573
3661
|
seller?: InputMaybe<Scalars["String"]>;
|
|
3662
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
3574
3663
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
3575
3664
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3576
3665
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3591,6 +3680,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3591
3680
|
seller_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3592
3681
|
seller_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3593
3682
|
shipping?: InputMaybe<Scalars["String"]>;
|
|
3683
|
+
shipping_?: InputMaybe<ProductV1ShippingOption_Filter>;
|
|
3594
3684
|
shipping_contains?: InputMaybe<Scalars["String"]>;
|
|
3595
3685
|
shipping_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3596
3686
|
shipping_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -3651,6 +3741,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
3651
3741
|
validUntilDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
3652
3742
|
validUntilDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
3653
3743
|
variations?: InputMaybe<Array<Scalars["String"]>>;
|
|
3744
|
+
variations_?: InputMaybe<ProductV1Variation_Filter>;
|
|
3654
3745
|
variations_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
3655
3746
|
variations_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
3656
3747
|
variations_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -3703,6 +3794,8 @@ export type ProductV1Personalisation = {
|
|
|
3703
3794
|
};
|
|
3704
3795
|
|
|
3705
3796
|
export type ProductV1Personalisation_Filter = {
|
|
3797
|
+
/** Filter for the block changed event. */
|
|
3798
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3706
3799
|
id?: InputMaybe<Scalars["ID"]>;
|
|
3707
3800
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
3708
3801
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -3882,7 +3975,10 @@ export type ProductV1ProductOverridesVisuals_VideosArgs = {
|
|
|
3882
3975
|
};
|
|
3883
3976
|
|
|
3884
3977
|
export type ProductV1ProductOverrides_Filter = {
|
|
3978
|
+
/** Filter for the block changed event. */
|
|
3979
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3885
3980
|
brand?: InputMaybe<Scalars["String"]>;
|
|
3981
|
+
brand_?: InputMaybe<ProductV1Brand_Filter>;
|
|
3886
3982
|
brand_contains?: InputMaybe<Scalars["String"]>;
|
|
3887
3983
|
brand_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3888
3984
|
brand_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -4387,12 +4483,14 @@ export type ProductV1ProductOverrides_Filter = {
|
|
|
4387
4483
|
version_not?: InputMaybe<Scalars["Int"]>;
|
|
4388
4484
|
version_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
4389
4485
|
visuals_images?: InputMaybe<Array<Scalars["String"]>>;
|
|
4486
|
+
visuals_images_?: InputMaybe<ProductV1Media_Filter>;
|
|
4390
4487
|
visuals_images_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4391
4488
|
visuals_images_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4392
4489
|
visuals_images_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
4393
4490
|
visuals_images_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4394
4491
|
visuals_images_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4395
4492
|
visuals_videos?: InputMaybe<Array<Scalars["String"]>>;
|
|
4493
|
+
visuals_videos_?: InputMaybe<ProductV1Media_Filter>;
|
|
4396
4494
|
visuals_videos_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4397
4495
|
visuals_videos_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4398
4496
|
visuals_videos_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -4426,7 +4524,10 @@ export enum ProductV1ProductOverrides_OrderBy {
|
|
|
4426
4524
|
}
|
|
4427
4525
|
|
|
4428
4526
|
export type ProductV1Product_Filter = {
|
|
4527
|
+
/** Filter for the block changed event. */
|
|
4528
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
4429
4529
|
brand?: InputMaybe<Scalars["String"]>;
|
|
4530
|
+
brand_?: InputMaybe<ProductV1Brand_Filter>;
|
|
4430
4531
|
brand_contains?: InputMaybe<Scalars["String"]>;
|
|
4431
4532
|
brand_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
4432
4533
|
brand_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -4447,6 +4548,7 @@ export type ProductV1Product_Filter = {
|
|
|
4447
4548
|
brand_starts_with?: InputMaybe<Scalars["String"]>;
|
|
4448
4549
|
brand_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
4449
4550
|
category?: InputMaybe<Scalars["String"]>;
|
|
4551
|
+
category_?: InputMaybe<ProductV1Category_Filter>;
|
|
4450
4552
|
category_contains?: InputMaybe<Scalars["String"]>;
|
|
4451
4553
|
category_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
4452
4554
|
category_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -4841,6 +4943,7 @@ export type ProductV1Product_Filter = {
|
|
|
4841
4943
|
packaging_weight_value_starts_with?: InputMaybe<Scalars["String"]>;
|
|
4842
4944
|
packaging_weight_value_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
4843
4945
|
personalisation?: InputMaybe<Array<Scalars["String"]>>;
|
|
4946
|
+
personalisation_?: InputMaybe<ProductV1Personalisation_Filter>;
|
|
4844
4947
|
personalisation_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
4845
4948
|
personalisation_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
4846
4949
|
personalisation_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5035,6 +5138,7 @@ export type ProductV1Product_Filter = {
|
|
|
5035
5138
|
Scalars["String"]
|
|
5036
5139
|
>;
|
|
5037
5140
|
sections?: InputMaybe<Array<Scalars["String"]>>;
|
|
5141
|
+
sections_?: InputMaybe<ProductV1Section_Filter>;
|
|
5038
5142
|
sections_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5039
5143
|
sections_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5040
5144
|
sections_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5042,6 +5146,7 @@ export type ProductV1Product_Filter = {
|
|
|
5042
5146
|
sections_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5043
5147
|
subCategory?: InputMaybe<Scalars["String"]>;
|
|
5044
5148
|
subCategory2?: InputMaybe<Scalars["String"]>;
|
|
5149
|
+
subCategory2_?: InputMaybe<ProductV1Category_Filter>;
|
|
5045
5150
|
subCategory2_contains?: InputMaybe<Scalars["String"]>;
|
|
5046
5151
|
subCategory2_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
5047
5152
|
subCategory2_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -5061,6 +5166,7 @@ export type ProductV1Product_Filter = {
|
|
|
5061
5166
|
subCategory2_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5062
5167
|
subCategory2_starts_with?: InputMaybe<Scalars["String"]>;
|
|
5063
5168
|
subCategory2_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5169
|
+
subCategory_?: InputMaybe<ProductV1Category_Filter>;
|
|
5064
5170
|
subCategory_contains?: InputMaybe<Scalars["String"]>;
|
|
5065
5171
|
subCategory_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
5066
5172
|
subCategory_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -5081,6 +5187,7 @@ export type ProductV1Product_Filter = {
|
|
|
5081
5187
|
subCategory_starts_with?: InputMaybe<Scalars["String"]>;
|
|
5082
5188
|
subCategory_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5083
5189
|
tags?: InputMaybe<Array<Scalars["String"]>>;
|
|
5190
|
+
tags_?: InputMaybe<ProductV1Tag_Filter>;
|
|
5084
5191
|
tags_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5085
5192
|
tags_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5086
5193
|
tags_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5135,12 +5242,14 @@ export type ProductV1Product_Filter = {
|
|
|
5135
5242
|
version_not?: InputMaybe<Scalars["Int"]>;
|
|
5136
5243
|
version_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
5137
5244
|
visuals_images?: InputMaybe<Array<Scalars["String"]>>;
|
|
5245
|
+
visuals_images_?: InputMaybe<ProductV1Media_Filter>;
|
|
5138
5246
|
visuals_images_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5139
5247
|
visuals_images_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5140
5248
|
visuals_images_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
5141
5249
|
visuals_images_not_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5142
5250
|
visuals_images_not_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5143
5251
|
visuals_videos?: InputMaybe<Array<Scalars["String"]>>;
|
|
5252
|
+
visuals_videos_?: InputMaybe<ProductV1Media_Filter>;
|
|
5144
5253
|
visuals_videos_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5145
5254
|
visuals_videos_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5146
5255
|
visuals_videos_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5195,6 +5304,8 @@ export type ProductV1Section = {
|
|
|
5195
5304
|
};
|
|
5196
5305
|
|
|
5197
5306
|
export type ProductV1Section_Filter = {
|
|
5307
|
+
/** Filter for the block changed event. */
|
|
5308
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5198
5309
|
id?: InputMaybe<Scalars["ID"]>;
|
|
5199
5310
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
5200
5311
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -5271,6 +5382,8 @@ export type ProductV1SellerContactLink = {
|
|
|
5271
5382
|
};
|
|
5272
5383
|
|
|
5273
5384
|
export type ProductV1SellerContactLink_Filter = {
|
|
5385
|
+
/** Filter for the block changed event. */
|
|
5386
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5274
5387
|
id?: InputMaybe<Scalars["ID"]>;
|
|
5275
5388
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
5276
5389
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -5328,7 +5441,10 @@ export enum ProductV1SellerContactLink_OrderBy {
|
|
|
5328
5441
|
}
|
|
5329
5442
|
|
|
5330
5443
|
export type ProductV1Seller_Filter = {
|
|
5444
|
+
/** Filter for the block changed event. */
|
|
5445
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5331
5446
|
contactLinks?: InputMaybe<Array<Scalars["String"]>>;
|
|
5447
|
+
contactLinks_?: InputMaybe<ProductV1SellerContactLink_Filter>;
|
|
5332
5448
|
contactLinks_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5333
5449
|
contactLinks_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5334
5450
|
contactLinks_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5391,6 +5507,7 @@ export type ProductV1Seller_Filter = {
|
|
|
5391
5507
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
5392
5508
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
5393
5509
|
images?: InputMaybe<Array<Scalars["String"]>>;
|
|
5510
|
+
images_?: InputMaybe<ProductV1Media_Filter>;
|
|
5394
5511
|
images_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5395
5512
|
images_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5396
5513
|
images_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5417,6 +5534,7 @@ export type ProductV1Seller_Filter = {
|
|
|
5417
5534
|
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
5418
5535
|
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5419
5536
|
seller?: InputMaybe<Scalars["String"]>;
|
|
5537
|
+
seller_?: InputMaybe<Seller_Filter>;
|
|
5420
5538
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
5421
5539
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
5422
5540
|
seller_ends_with?: InputMaybe<Scalars["String"]>;
|
|
@@ -5478,6 +5596,8 @@ export type ProductV1ShippingJurisdiction = {
|
|
|
5478
5596
|
};
|
|
5479
5597
|
|
|
5480
5598
|
export type ProductV1ShippingJurisdiction_Filter = {
|
|
5599
|
+
/** Filter for the block changed event. */
|
|
5600
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5481
5601
|
deliveryTime?: InputMaybe<Scalars["String"]>;
|
|
5482
5602
|
deliveryTime_contains?: InputMaybe<Scalars["String"]>;
|
|
5483
5603
|
deliveryTime_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -5553,6 +5673,8 @@ export type ProductV1ShippingOptionSupportedJurisdictionsArgs = {
|
|
|
5553
5673
|
};
|
|
5554
5674
|
|
|
5555
5675
|
export type ProductV1ShippingOption_Filter = {
|
|
5676
|
+
/** Filter for the block changed event. */
|
|
5677
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5556
5678
|
countryOfOrigin?: InputMaybe<Scalars["String"]>;
|
|
5557
5679
|
countryOfOrigin_contains?: InputMaybe<Scalars["String"]>;
|
|
5558
5680
|
countryOfOrigin_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -5618,6 +5740,7 @@ export type ProductV1ShippingOption_Filter = {
|
|
|
5618
5740
|
returnPeriodInDays_not?: InputMaybe<Scalars["Int"]>;
|
|
5619
5741
|
returnPeriodInDays_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
5620
5742
|
supportedJurisdictions?: InputMaybe<Array<Scalars["String"]>>;
|
|
5743
|
+
supportedJurisdictions_?: InputMaybe<ProductV1ShippingJurisdiction_Filter>;
|
|
5621
5744
|
supportedJurisdictions_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5622
5745
|
supportedJurisdictions_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
5623
5746
|
supportedJurisdictions_not?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5643,6 +5766,8 @@ export type ProductV1Tag = {
|
|
|
5643
5766
|
};
|
|
5644
5767
|
|
|
5645
5768
|
export type ProductV1Tag_Filter = {
|
|
5769
|
+
/** Filter for the block changed event. */
|
|
5770
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5646
5771
|
id?: InputMaybe<Scalars["ID"]>;
|
|
5647
5772
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
5648
5773
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -5686,6 +5811,8 @@ export type ProductV1Variation = {
|
|
|
5686
5811
|
};
|
|
5687
5812
|
|
|
5688
5813
|
export type ProductV1Variation_Filter = {
|
|
5814
|
+
/** Filter for the block changed event. */
|
|
5815
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5689
5816
|
id?: InputMaybe<Scalars["ID"]>;
|
|
5690
5817
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
5691
5818
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -6382,12 +6509,15 @@ export type Seller = Account & {
|
|
|
6382
6509
|
authTokenId: Scalars["BigInt"];
|
|
6383
6510
|
authTokenType: Scalars["Int"];
|
|
6384
6511
|
clerk: Scalars["Bytes"];
|
|
6512
|
+
contractURI: Scalars["String"];
|
|
6385
6513
|
exchanges: Array<Exchange>;
|
|
6386
6514
|
funds: Array<FundsEntity>;
|
|
6387
6515
|
id: Scalars["ID"];
|
|
6388
6516
|
logs: Array<EventLog>;
|
|
6389
6517
|
offers: Array<Offer>;
|
|
6390
6518
|
operator: Scalars["Bytes"];
|
|
6519
|
+
/** Percentage as integer, to get decimals divide by 10000. E.g. 1 = 0.01%, 10000 = 100% */
|
|
6520
|
+
royaltyPercentage: Scalars["BigInt"];
|
|
6391
6521
|
sellerId: Scalars["BigInt"];
|
|
6392
6522
|
treasury: Scalars["Bytes"];
|
|
6393
6523
|
voucherCloneAddress: Scalars["Bytes"];
|
|
@@ -6426,6 +6556,8 @@ export type SellerOffersArgs = {
|
|
|
6426
6556
|
};
|
|
6427
6557
|
|
|
6428
6558
|
export type Seller_Filter = {
|
|
6559
|
+
/** Filter for the block changed event. */
|
|
6560
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
6429
6561
|
active?: InputMaybe<Scalars["Boolean"]>;
|
|
6430
6562
|
active_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
6431
6563
|
active_not?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -6458,6 +6590,28 @@ export type Seller_Filter = {
|
|
|
6458
6590
|
clerk_not?: InputMaybe<Scalars["Bytes"]>;
|
|
6459
6591
|
clerk_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
6460
6592
|
clerk_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6593
|
+
contractURI?: InputMaybe<Scalars["String"]>;
|
|
6594
|
+
contractURI_contains?: InputMaybe<Scalars["String"]>;
|
|
6595
|
+
contractURI_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
6596
|
+
contractURI_ends_with?: InputMaybe<Scalars["String"]>;
|
|
6597
|
+
contractURI_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6598
|
+
contractURI_gt?: InputMaybe<Scalars["String"]>;
|
|
6599
|
+
contractURI_gte?: InputMaybe<Scalars["String"]>;
|
|
6600
|
+
contractURI_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
6601
|
+
contractURI_lt?: InputMaybe<Scalars["String"]>;
|
|
6602
|
+
contractURI_lte?: InputMaybe<Scalars["String"]>;
|
|
6603
|
+
contractURI_not?: InputMaybe<Scalars["String"]>;
|
|
6604
|
+
contractURI_not_contains?: InputMaybe<Scalars["String"]>;
|
|
6605
|
+
contractURI_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
6606
|
+
contractURI_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
6607
|
+
contractURI_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6608
|
+
contractURI_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
6609
|
+
contractURI_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
6610
|
+
contractURI_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6611
|
+
contractURI_starts_with?: InputMaybe<Scalars["String"]>;
|
|
6612
|
+
contractURI_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6613
|
+
exchanges_?: InputMaybe<Exchange_Filter>;
|
|
6614
|
+
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
6461
6615
|
id?: InputMaybe<Scalars["ID"]>;
|
|
6462
6616
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
6463
6617
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -6466,12 +6620,21 @@ export type Seller_Filter = {
|
|
|
6466
6620
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
6467
6621
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
6468
6622
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
6623
|
+
offers_?: InputMaybe<Offer_Filter>;
|
|
6469
6624
|
operator?: InputMaybe<Scalars["Bytes"]>;
|
|
6470
6625
|
operator_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
6471
6626
|
operator_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6472
6627
|
operator_not?: InputMaybe<Scalars["Bytes"]>;
|
|
6473
6628
|
operator_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
6474
6629
|
operator_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6630
|
+
royaltyPercentage?: InputMaybe<Scalars["BigInt"]>;
|
|
6631
|
+
royaltyPercentage_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
6632
|
+
royaltyPercentage_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
6633
|
+
royaltyPercentage_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
6634
|
+
royaltyPercentage_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
6635
|
+
royaltyPercentage_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
6636
|
+
royaltyPercentage_not?: InputMaybe<Scalars["BigInt"]>;
|
|
6637
|
+
royaltyPercentage_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
6475
6638
|
sellerId?: InputMaybe<Scalars["BigInt"]>;
|
|
6476
6639
|
sellerId_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
6477
6640
|
sellerId_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -6500,12 +6663,14 @@ export enum Seller_OrderBy {
|
|
|
6500
6663
|
AuthTokenId = "authTokenId",
|
|
6501
6664
|
AuthTokenType = "authTokenType",
|
|
6502
6665
|
Clerk = "clerk",
|
|
6666
|
+
ContractUri = "contractURI",
|
|
6503
6667
|
Exchanges = "exchanges",
|
|
6504
6668
|
Funds = "funds",
|
|
6505
6669
|
Id = "id",
|
|
6506
6670
|
Logs = "logs",
|
|
6507
6671
|
Offers = "offers",
|
|
6508
6672
|
Operator = "operator",
|
|
6673
|
+
RoyaltyPercentage = "royaltyPercentage",
|
|
6509
6674
|
SellerId = "sellerId",
|
|
6510
6675
|
Treasury = "treasury",
|
|
6511
6676
|
VoucherCloneAddress = "voucherCloneAddress"
|
|
@@ -7217,6 +7382,8 @@ export type GetSellerByIdQueryQuery = {
|
|
|
7217
7382
|
authTokenType: number;
|
|
7218
7383
|
voucherCloneAddress: string;
|
|
7219
7384
|
active: boolean;
|
|
7385
|
+
contractURI: string;
|
|
7386
|
+
royaltyPercentage: string;
|
|
7220
7387
|
funds?: Array<{
|
|
7221
7388
|
__typename?: "FundsEntity";
|
|
7222
7389
|
id: string;
|
|
@@ -7247,7 +7414,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
7247
7414
|
validUntilDate: string;
|
|
7248
7415
|
voucherRedeemableFromDate: string;
|
|
7249
7416
|
voucherRedeemableUntilDate: string;
|
|
7250
|
-
|
|
7417
|
+
disputePeriodDuration: string;
|
|
7251
7418
|
voucherValidDuration: string;
|
|
7252
7419
|
resolutionPeriodDuration: string;
|
|
7253
7420
|
metadataUri: string;
|
|
@@ -7268,6 +7435,8 @@ export type GetSellerByIdQueryQuery = {
|
|
|
7268
7435
|
authTokenType: number;
|
|
7269
7436
|
voucherCloneAddress: string;
|
|
7270
7437
|
active: boolean;
|
|
7438
|
+
contractURI: string;
|
|
7439
|
+
royaltyPercentage: string;
|
|
7271
7440
|
};
|
|
7272
7441
|
exchangeToken: {
|
|
7273
7442
|
__typename?: "ExchangeToken";
|
|
@@ -7459,6 +7628,8 @@ export type GetSellerByIdQueryQuery = {
|
|
|
7459
7628
|
authTokenType: number;
|
|
7460
7629
|
voucherCloneAddress: string;
|
|
7461
7630
|
active: boolean;
|
|
7631
|
+
contractURI: string;
|
|
7632
|
+
royaltyPercentage: string;
|
|
7462
7633
|
};
|
|
7463
7634
|
};
|
|
7464
7635
|
exchangePolicy: {
|
|
@@ -7534,6 +7705,8 @@ export type GetSellerByIdQueryQuery = {
|
|
|
7534
7705
|
authTokenType: number;
|
|
7535
7706
|
voucherCloneAddress: string;
|
|
7536
7707
|
active: boolean;
|
|
7708
|
+
contractURI: string;
|
|
7709
|
+
royaltyPercentage: string;
|
|
7537
7710
|
};
|
|
7538
7711
|
}>;
|
|
7539
7712
|
logs?: Array<
|
|
@@ -7650,6 +7823,8 @@ export type GetSellersQueryQuery = {
|
|
|
7650
7823
|
authTokenType: number;
|
|
7651
7824
|
voucherCloneAddress: string;
|
|
7652
7825
|
active: boolean;
|
|
7826
|
+
contractURI: string;
|
|
7827
|
+
royaltyPercentage: string;
|
|
7653
7828
|
funds?: Array<{
|
|
7654
7829
|
__typename?: "FundsEntity";
|
|
7655
7830
|
id: string;
|
|
@@ -7680,7 +7855,7 @@ export type GetSellersQueryQuery = {
|
|
|
7680
7855
|
validUntilDate: string;
|
|
7681
7856
|
voucherRedeemableFromDate: string;
|
|
7682
7857
|
voucherRedeemableUntilDate: string;
|
|
7683
|
-
|
|
7858
|
+
disputePeriodDuration: string;
|
|
7684
7859
|
voucherValidDuration: string;
|
|
7685
7860
|
resolutionPeriodDuration: string;
|
|
7686
7861
|
metadataUri: string;
|
|
@@ -7701,6 +7876,8 @@ export type GetSellersQueryQuery = {
|
|
|
7701
7876
|
authTokenType: number;
|
|
7702
7877
|
voucherCloneAddress: string;
|
|
7703
7878
|
active: boolean;
|
|
7879
|
+
contractURI: string;
|
|
7880
|
+
royaltyPercentage: string;
|
|
7704
7881
|
};
|
|
7705
7882
|
exchangeToken: {
|
|
7706
7883
|
__typename?: "ExchangeToken";
|
|
@@ -7892,6 +8069,8 @@ export type GetSellersQueryQuery = {
|
|
|
7892
8069
|
authTokenType: number;
|
|
7893
8070
|
voucherCloneAddress: string;
|
|
7894
8071
|
active: boolean;
|
|
8072
|
+
contractURI: string;
|
|
8073
|
+
royaltyPercentage: string;
|
|
7895
8074
|
};
|
|
7896
8075
|
};
|
|
7897
8076
|
exchangePolicy: {
|
|
@@ -7967,6 +8146,8 @@ export type GetSellersQueryQuery = {
|
|
|
7967
8146
|
authTokenType: number;
|
|
7968
8147
|
voucherCloneAddress: string;
|
|
7969
8148
|
active: boolean;
|
|
8149
|
+
contractURI: string;
|
|
8150
|
+
royaltyPercentage: string;
|
|
7970
8151
|
};
|
|
7971
8152
|
}>;
|
|
7972
8153
|
logs?: Array<
|
|
@@ -8127,6 +8308,8 @@ export type GetBuyerByIdQueryQuery = {
|
|
|
8127
8308
|
authTokenType: number;
|
|
8128
8309
|
voucherCloneAddress: string;
|
|
8129
8310
|
active: boolean;
|
|
8311
|
+
contractURI: string;
|
|
8312
|
+
royaltyPercentage: string;
|
|
8130
8313
|
};
|
|
8131
8314
|
}>;
|
|
8132
8315
|
logs?: Array<
|
|
@@ -8297,6 +8480,8 @@ export type GetBuyersQueryQuery = {
|
|
|
8297
8480
|
authTokenType: number;
|
|
8298
8481
|
voucherCloneAddress: string;
|
|
8299
8482
|
active: boolean;
|
|
8483
|
+
contractURI: string;
|
|
8484
|
+
royaltyPercentage: string;
|
|
8300
8485
|
};
|
|
8301
8486
|
}>;
|
|
8302
8487
|
logs?: Array<
|
|
@@ -8413,7 +8598,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
8413
8598
|
validUntilDate: string;
|
|
8414
8599
|
voucherRedeemableFromDate: string;
|
|
8415
8600
|
voucherRedeemableUntilDate: string;
|
|
8416
|
-
|
|
8601
|
+
disputePeriodDuration: string;
|
|
8417
8602
|
voucherValidDuration: string;
|
|
8418
8603
|
resolutionPeriodDuration: string;
|
|
8419
8604
|
metadataUri: string;
|
|
@@ -8434,6 +8619,8 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
8434
8619
|
authTokenType: number;
|
|
8435
8620
|
voucherCloneAddress: string;
|
|
8436
8621
|
active: boolean;
|
|
8622
|
+
contractURI: string;
|
|
8623
|
+
royaltyPercentage: string;
|
|
8437
8624
|
};
|
|
8438
8625
|
exchangeToken: {
|
|
8439
8626
|
__typename?: "ExchangeToken";
|
|
@@ -8625,6 +8812,8 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
8625
8812
|
authTokenType: number;
|
|
8626
8813
|
voucherCloneAddress: string;
|
|
8627
8814
|
active: boolean;
|
|
8815
|
+
contractURI: string;
|
|
8816
|
+
royaltyPercentage: string;
|
|
8628
8817
|
};
|
|
8629
8818
|
};
|
|
8630
8819
|
exchangePolicy: {
|
|
@@ -8787,7 +8976,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
8787
8976
|
validUntilDate: string;
|
|
8788
8977
|
voucherRedeemableFromDate: string;
|
|
8789
8978
|
voucherRedeemableUntilDate: string;
|
|
8790
|
-
|
|
8979
|
+
disputePeriodDuration: string;
|
|
8791
8980
|
voucherValidDuration: string;
|
|
8792
8981
|
resolutionPeriodDuration: string;
|
|
8793
8982
|
metadataUri: string;
|
|
@@ -8808,6 +8997,8 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
8808
8997
|
authTokenType: number;
|
|
8809
8998
|
voucherCloneAddress: string;
|
|
8810
8999
|
active: boolean;
|
|
9000
|
+
contractURI: string;
|
|
9001
|
+
royaltyPercentage: string;
|
|
8811
9002
|
};
|
|
8812
9003
|
exchangeToken: {
|
|
8813
9004
|
__typename?: "ExchangeToken";
|
|
@@ -8999,6 +9190,8 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
8999
9190
|
authTokenType: number;
|
|
9000
9191
|
voucherCloneAddress: string;
|
|
9001
9192
|
active: boolean;
|
|
9193
|
+
contractURI: string;
|
|
9194
|
+
royaltyPercentage: string;
|
|
9002
9195
|
};
|
|
9003
9196
|
};
|
|
9004
9197
|
exchangePolicy: {
|
|
@@ -9123,6 +9316,8 @@ export type SellerFieldsFragment = {
|
|
|
9123
9316
|
authTokenType: number;
|
|
9124
9317
|
voucherCloneAddress: string;
|
|
9125
9318
|
active: boolean;
|
|
9319
|
+
contractURI: string;
|
|
9320
|
+
royaltyPercentage: string;
|
|
9126
9321
|
funds?: Array<{
|
|
9127
9322
|
__typename?: "FundsEntity";
|
|
9128
9323
|
id: string;
|
|
@@ -9153,7 +9348,7 @@ export type SellerFieldsFragment = {
|
|
|
9153
9348
|
validUntilDate: string;
|
|
9154
9349
|
voucherRedeemableFromDate: string;
|
|
9155
9350
|
voucherRedeemableUntilDate: string;
|
|
9156
|
-
|
|
9351
|
+
disputePeriodDuration: string;
|
|
9157
9352
|
voucherValidDuration: string;
|
|
9158
9353
|
resolutionPeriodDuration: string;
|
|
9159
9354
|
metadataUri: string;
|
|
@@ -9174,6 +9369,8 @@ export type SellerFieldsFragment = {
|
|
|
9174
9369
|
authTokenType: number;
|
|
9175
9370
|
voucherCloneAddress: string;
|
|
9176
9371
|
active: boolean;
|
|
9372
|
+
contractURI: string;
|
|
9373
|
+
royaltyPercentage: string;
|
|
9177
9374
|
};
|
|
9178
9375
|
exchangeToken: {
|
|
9179
9376
|
__typename?: "ExchangeToken";
|
|
@@ -9361,6 +9558,8 @@ export type SellerFieldsFragment = {
|
|
|
9361
9558
|
authTokenType: number;
|
|
9362
9559
|
voucherCloneAddress: string;
|
|
9363
9560
|
active: boolean;
|
|
9561
|
+
contractURI: string;
|
|
9562
|
+
royaltyPercentage: string;
|
|
9364
9563
|
};
|
|
9365
9564
|
};
|
|
9366
9565
|
exchangePolicy: {
|
|
@@ -9436,6 +9635,8 @@ export type SellerFieldsFragment = {
|
|
|
9436
9635
|
authTokenType: number;
|
|
9437
9636
|
voucherCloneAddress: string;
|
|
9438
9637
|
active: boolean;
|
|
9638
|
+
contractURI: string;
|
|
9639
|
+
royaltyPercentage: string;
|
|
9439
9640
|
};
|
|
9440
9641
|
}>;
|
|
9441
9642
|
logs?: Array<
|
|
@@ -9517,6 +9718,8 @@ export type BaseSellerFieldsFragment = {
|
|
|
9517
9718
|
authTokenType: number;
|
|
9518
9719
|
voucherCloneAddress: string;
|
|
9519
9720
|
active: boolean;
|
|
9721
|
+
contractURI: string;
|
|
9722
|
+
royaltyPercentage: string;
|
|
9520
9723
|
};
|
|
9521
9724
|
|
|
9522
9725
|
export type BuyerFieldsFragment = {
|
|
@@ -9584,6 +9787,8 @@ export type BuyerFieldsFragment = {
|
|
|
9584
9787
|
authTokenType: number;
|
|
9585
9788
|
voucherCloneAddress: string;
|
|
9586
9789
|
active: boolean;
|
|
9790
|
+
contractURI: string;
|
|
9791
|
+
royaltyPercentage: string;
|
|
9587
9792
|
};
|
|
9588
9793
|
}>;
|
|
9589
9794
|
logs?: Array<
|
|
@@ -9688,7 +9893,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
9688
9893
|
validUntilDate: string;
|
|
9689
9894
|
voucherRedeemableFromDate: string;
|
|
9690
9895
|
voucherRedeemableUntilDate: string;
|
|
9691
|
-
|
|
9896
|
+
disputePeriodDuration: string;
|
|
9692
9897
|
voucherValidDuration: string;
|
|
9693
9898
|
resolutionPeriodDuration: string;
|
|
9694
9899
|
metadataUri: string;
|
|
@@ -9709,6 +9914,8 @@ export type DisputeResolverFieldsFragment = {
|
|
|
9709
9914
|
authTokenType: number;
|
|
9710
9915
|
voucherCloneAddress: string;
|
|
9711
9916
|
active: boolean;
|
|
9917
|
+
contractURI: string;
|
|
9918
|
+
royaltyPercentage: string;
|
|
9712
9919
|
};
|
|
9713
9920
|
exchangeToken: {
|
|
9714
9921
|
__typename?: "ExchangeToken";
|
|
@@ -9896,6 +10103,8 @@ export type DisputeResolverFieldsFragment = {
|
|
|
9896
10103
|
authTokenType: number;
|
|
9897
10104
|
voucherCloneAddress: string;
|
|
9898
10105
|
active: boolean;
|
|
10106
|
+
contractURI: string;
|
|
10107
|
+
royaltyPercentage: string;
|
|
9899
10108
|
};
|
|
9900
10109
|
};
|
|
9901
10110
|
exchangePolicy: {
|
|
@@ -10133,6 +10342,8 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
10133
10342
|
authTokenType: number;
|
|
10134
10343
|
voucherCloneAddress: string;
|
|
10135
10344
|
active: boolean;
|
|
10345
|
+
contractURI: string;
|
|
10346
|
+
royaltyPercentage: string;
|
|
10136
10347
|
};
|
|
10137
10348
|
};
|
|
10138
10349
|
seller: {
|
|
@@ -10146,6 +10357,8 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
10146
10357
|
authTokenType: number;
|
|
10147
10358
|
voucherCloneAddress: string;
|
|
10148
10359
|
active: boolean;
|
|
10360
|
+
contractURI: string;
|
|
10361
|
+
royaltyPercentage: string;
|
|
10149
10362
|
};
|
|
10150
10363
|
buyer: {
|
|
10151
10364
|
__typename?: "Buyer";
|
|
@@ -10226,6 +10439,8 @@ export type GetDisputesQueryQuery = {
|
|
|
10226
10439
|
authTokenType: number;
|
|
10227
10440
|
voucherCloneAddress: string;
|
|
10228
10441
|
active: boolean;
|
|
10442
|
+
contractURI: string;
|
|
10443
|
+
royaltyPercentage: string;
|
|
10229
10444
|
};
|
|
10230
10445
|
};
|
|
10231
10446
|
seller: {
|
|
@@ -10239,6 +10454,8 @@ export type GetDisputesQueryQuery = {
|
|
|
10239
10454
|
authTokenType: number;
|
|
10240
10455
|
voucherCloneAddress: string;
|
|
10241
10456
|
active: boolean;
|
|
10457
|
+
contractURI: string;
|
|
10458
|
+
royaltyPercentage: string;
|
|
10242
10459
|
};
|
|
10243
10460
|
buyer: {
|
|
10244
10461
|
__typename?: "Buyer";
|
|
@@ -10309,6 +10526,8 @@ export type DisputeFieldsFragment = {
|
|
|
10309
10526
|
authTokenType: number;
|
|
10310
10527
|
voucherCloneAddress: string;
|
|
10311
10528
|
active: boolean;
|
|
10529
|
+
contractURI: string;
|
|
10530
|
+
royaltyPercentage: string;
|
|
10312
10531
|
};
|
|
10313
10532
|
};
|
|
10314
10533
|
seller: {
|
|
@@ -10322,6 +10541,8 @@ export type DisputeFieldsFragment = {
|
|
|
10322
10541
|
authTokenType: number;
|
|
10323
10542
|
voucherCloneAddress: string;
|
|
10324
10543
|
active: boolean;
|
|
10544
|
+
contractURI: string;
|
|
10545
|
+
royaltyPercentage: string;
|
|
10325
10546
|
};
|
|
10326
10547
|
buyer: { __typename?: "Buyer"; id: string; wallet: string; active: boolean };
|
|
10327
10548
|
};
|
|
@@ -10388,7 +10609,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
10388
10609
|
validUntilDate: string;
|
|
10389
10610
|
voucherRedeemableFromDate: string;
|
|
10390
10611
|
voucherRedeemableUntilDate: string;
|
|
10391
|
-
|
|
10612
|
+
disputePeriodDuration: string;
|
|
10392
10613
|
voucherValidDuration: string;
|
|
10393
10614
|
resolutionPeriodDuration: string;
|
|
10394
10615
|
metadataUri: string;
|
|
@@ -10409,6 +10630,8 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
10409
10630
|
authTokenType: number;
|
|
10410
10631
|
voucherCloneAddress: string;
|
|
10411
10632
|
active: boolean;
|
|
10633
|
+
contractURI: string;
|
|
10634
|
+
royaltyPercentage: string;
|
|
10412
10635
|
};
|
|
10413
10636
|
exchangeToken: {
|
|
10414
10637
|
__typename?: "ExchangeToken";
|
|
@@ -10600,6 +10823,8 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
10600
10823
|
authTokenType: number;
|
|
10601
10824
|
voucherCloneAddress: string;
|
|
10602
10825
|
active: boolean;
|
|
10826
|
+
contractURI: string;
|
|
10827
|
+
royaltyPercentage: string;
|
|
10603
10828
|
};
|
|
10604
10829
|
};
|
|
10605
10830
|
exchangePolicy: {
|
|
@@ -10683,7 +10908,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
10683
10908
|
validUntilDate: string;
|
|
10684
10909
|
voucherRedeemableFromDate: string;
|
|
10685
10910
|
voucherRedeemableUntilDate: string;
|
|
10686
|
-
|
|
10911
|
+
disputePeriodDuration: string;
|
|
10687
10912
|
voucherValidDuration: string;
|
|
10688
10913
|
resolutionPeriodDuration: string;
|
|
10689
10914
|
metadataUri: string;
|
|
@@ -10704,6 +10929,8 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
10704
10929
|
authTokenType: number;
|
|
10705
10930
|
voucherCloneAddress: string;
|
|
10706
10931
|
active: boolean;
|
|
10932
|
+
contractURI: string;
|
|
10933
|
+
royaltyPercentage: string;
|
|
10707
10934
|
};
|
|
10708
10935
|
exchangeToken: {
|
|
10709
10936
|
__typename?: "ExchangeToken";
|
|
@@ -10895,6 +11122,8 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
10895
11122
|
authTokenType: number;
|
|
10896
11123
|
voucherCloneAddress: string;
|
|
10897
11124
|
active: boolean;
|
|
11125
|
+
contractURI: string;
|
|
11126
|
+
royaltyPercentage: string;
|
|
10898
11127
|
};
|
|
10899
11128
|
};
|
|
10900
11129
|
exchangePolicy: {
|
|
@@ -10956,7 +11185,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
10956
11185
|
validUntilDate: string;
|
|
10957
11186
|
voucherRedeemableFromDate: string;
|
|
10958
11187
|
voucherRedeemableUntilDate: string;
|
|
10959
|
-
|
|
11188
|
+
disputePeriodDuration: string;
|
|
10960
11189
|
voucherValidDuration: string;
|
|
10961
11190
|
resolutionPeriodDuration: string;
|
|
10962
11191
|
metadataUri: string;
|
|
@@ -10977,6 +11206,8 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
10977
11206
|
authTokenType: number;
|
|
10978
11207
|
voucherCloneAddress: string;
|
|
10979
11208
|
active: boolean;
|
|
11209
|
+
contractURI: string;
|
|
11210
|
+
royaltyPercentage: string;
|
|
10980
11211
|
};
|
|
10981
11212
|
exchangeToken: {
|
|
10982
11213
|
__typename?: "ExchangeToken";
|
|
@@ -11164,6 +11395,8 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
11164
11395
|
authTokenType: number;
|
|
11165
11396
|
voucherCloneAddress: string;
|
|
11166
11397
|
active: boolean;
|
|
11398
|
+
contractURI: string;
|
|
11399
|
+
royaltyPercentage: string;
|
|
11167
11400
|
};
|
|
11168
11401
|
};
|
|
11169
11402
|
exchangePolicy: {
|
|
@@ -11400,7 +11633,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
11400
11633
|
validUntilDate: string;
|
|
11401
11634
|
voucherRedeemableFromDate: string;
|
|
11402
11635
|
voucherRedeemableUntilDate: string;
|
|
11403
|
-
|
|
11636
|
+
disputePeriodDuration: string;
|
|
11404
11637
|
voucherValidDuration: string;
|
|
11405
11638
|
resolutionPeriodDuration: string;
|
|
11406
11639
|
metadataUri: string;
|
|
@@ -11421,6 +11654,8 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
11421
11654
|
authTokenType: number;
|
|
11422
11655
|
voucherCloneAddress: string;
|
|
11423
11656
|
active: boolean;
|
|
11657
|
+
contractURI: string;
|
|
11658
|
+
royaltyPercentage: string;
|
|
11424
11659
|
};
|
|
11425
11660
|
exchangeToken: {
|
|
11426
11661
|
__typename?: "ExchangeToken";
|
|
@@ -11612,6 +11847,8 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
11612
11847
|
authTokenType: number;
|
|
11613
11848
|
voucherCloneAddress: string;
|
|
11614
11849
|
active: boolean;
|
|
11850
|
+
contractURI: string;
|
|
11851
|
+
royaltyPercentage: string;
|
|
11615
11852
|
};
|
|
11616
11853
|
};
|
|
11617
11854
|
exchangePolicy: {
|
|
@@ -11673,6 +11910,8 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
11673
11910
|
authTokenType: number;
|
|
11674
11911
|
voucherCloneAddress: string;
|
|
11675
11912
|
active: boolean;
|
|
11913
|
+
contractURI: string;
|
|
11914
|
+
royaltyPercentage: string;
|
|
11676
11915
|
};
|
|
11677
11916
|
} | null;
|
|
11678
11917
|
};
|
|
@@ -11717,7 +11956,7 @@ export type GetExchangesQueryQuery = {
|
|
|
11717
11956
|
validUntilDate: string;
|
|
11718
11957
|
voucherRedeemableFromDate: string;
|
|
11719
11958
|
voucherRedeemableUntilDate: string;
|
|
11720
|
-
|
|
11959
|
+
disputePeriodDuration: string;
|
|
11721
11960
|
voucherValidDuration: string;
|
|
11722
11961
|
resolutionPeriodDuration: string;
|
|
11723
11962
|
metadataUri: string;
|
|
@@ -11738,6 +11977,8 @@ export type GetExchangesQueryQuery = {
|
|
|
11738
11977
|
authTokenType: number;
|
|
11739
11978
|
voucherCloneAddress: string;
|
|
11740
11979
|
active: boolean;
|
|
11980
|
+
contractURI: string;
|
|
11981
|
+
royaltyPercentage: string;
|
|
11741
11982
|
};
|
|
11742
11983
|
exchangeToken: {
|
|
11743
11984
|
__typename?: "ExchangeToken";
|
|
@@ -11929,6 +12170,8 @@ export type GetExchangesQueryQuery = {
|
|
|
11929
12170
|
authTokenType: number;
|
|
11930
12171
|
voucherCloneAddress: string;
|
|
11931
12172
|
active: boolean;
|
|
12173
|
+
contractURI: string;
|
|
12174
|
+
royaltyPercentage: string;
|
|
11932
12175
|
};
|
|
11933
12176
|
};
|
|
11934
12177
|
exchangePolicy: {
|
|
@@ -11990,6 +12233,8 @@ export type GetExchangesQueryQuery = {
|
|
|
11990
12233
|
authTokenType: number;
|
|
11991
12234
|
voucherCloneAddress: string;
|
|
11992
12235
|
active: boolean;
|
|
12236
|
+
contractURI: string;
|
|
12237
|
+
royaltyPercentage: string;
|
|
11993
12238
|
};
|
|
11994
12239
|
}>;
|
|
11995
12240
|
};
|
|
@@ -12024,7 +12269,7 @@ export type ExchangeFieldsFragment = {
|
|
|
12024
12269
|
validUntilDate: string;
|
|
12025
12270
|
voucherRedeemableFromDate: string;
|
|
12026
12271
|
voucherRedeemableUntilDate: string;
|
|
12027
|
-
|
|
12272
|
+
disputePeriodDuration: string;
|
|
12028
12273
|
voucherValidDuration: string;
|
|
12029
12274
|
resolutionPeriodDuration: string;
|
|
12030
12275
|
metadataUri: string;
|
|
@@ -12045,6 +12290,8 @@ export type ExchangeFieldsFragment = {
|
|
|
12045
12290
|
authTokenType: number;
|
|
12046
12291
|
voucherCloneAddress: string;
|
|
12047
12292
|
active: boolean;
|
|
12293
|
+
contractURI: string;
|
|
12294
|
+
royaltyPercentage: string;
|
|
12048
12295
|
};
|
|
12049
12296
|
exchangeToken: {
|
|
12050
12297
|
__typename?: "ExchangeToken";
|
|
@@ -12232,6 +12479,8 @@ export type ExchangeFieldsFragment = {
|
|
|
12232
12479
|
authTokenType: number;
|
|
12233
12480
|
voucherCloneAddress: string;
|
|
12234
12481
|
active: boolean;
|
|
12482
|
+
contractURI: string;
|
|
12483
|
+
royaltyPercentage: string;
|
|
12235
12484
|
};
|
|
12236
12485
|
};
|
|
12237
12486
|
exchangePolicy: {
|
|
@@ -12288,6 +12537,8 @@ export type ExchangeFieldsFragment = {
|
|
|
12288
12537
|
authTokenType: number;
|
|
12289
12538
|
voucherCloneAddress: string;
|
|
12290
12539
|
active: boolean;
|
|
12540
|
+
contractURI: string;
|
|
12541
|
+
royaltyPercentage: string;
|
|
12291
12542
|
};
|
|
12292
12543
|
};
|
|
12293
12544
|
|
|
@@ -12332,6 +12583,8 @@ export type BaseExchangeFieldsFragment = {
|
|
|
12332
12583
|
authTokenType: number;
|
|
12333
12584
|
voucherCloneAddress: string;
|
|
12334
12585
|
active: boolean;
|
|
12586
|
+
contractURI: string;
|
|
12587
|
+
royaltyPercentage: string;
|
|
12335
12588
|
};
|
|
12336
12589
|
};
|
|
12337
12590
|
|
|
@@ -12454,7 +12707,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12454
12707
|
validUntilDate: string;
|
|
12455
12708
|
voucherRedeemableFromDate: string;
|
|
12456
12709
|
voucherRedeemableUntilDate: string;
|
|
12457
|
-
|
|
12710
|
+
disputePeriodDuration: string;
|
|
12458
12711
|
voucherValidDuration: string;
|
|
12459
12712
|
resolutionPeriodDuration: string;
|
|
12460
12713
|
metadataUri: string;
|
|
@@ -12475,6 +12728,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12475
12728
|
authTokenType: number;
|
|
12476
12729
|
voucherCloneAddress: string;
|
|
12477
12730
|
active: boolean;
|
|
12731
|
+
contractURI: string;
|
|
12732
|
+
royaltyPercentage: string;
|
|
12478
12733
|
};
|
|
12479
12734
|
exchangeToken: {
|
|
12480
12735
|
__typename?: "ExchangeToken";
|
|
@@ -12666,6 +12921,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12666
12921
|
authTokenType: number;
|
|
12667
12922
|
voucherCloneAddress: string;
|
|
12668
12923
|
active: boolean;
|
|
12924
|
+
contractURI: string;
|
|
12925
|
+
royaltyPercentage: string;
|
|
12669
12926
|
};
|
|
12670
12927
|
};
|
|
12671
12928
|
exchangePolicy: {
|
|
@@ -12706,6 +12963,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12706
12963
|
authTokenType: number;
|
|
12707
12964
|
voucherCloneAddress: string;
|
|
12708
12965
|
active: boolean;
|
|
12966
|
+
contractURI: string;
|
|
12967
|
+
royaltyPercentage: string;
|
|
12709
12968
|
};
|
|
12710
12969
|
exchangeToken: {
|
|
12711
12970
|
__typename?: "ExchangeToken";
|
|
@@ -12766,7 +13025,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12766
13025
|
validUntilDate: string;
|
|
12767
13026
|
voucherRedeemableFromDate: string;
|
|
12768
13027
|
voucherRedeemableUntilDate: string;
|
|
12769
|
-
|
|
13028
|
+
disputePeriodDuration: string;
|
|
12770
13029
|
voucherValidDuration: string;
|
|
12771
13030
|
resolutionPeriodDuration: string;
|
|
12772
13031
|
metadataUri: string;
|
|
@@ -12787,6 +13046,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12787
13046
|
authTokenType: number;
|
|
12788
13047
|
voucherCloneAddress: string;
|
|
12789
13048
|
active: boolean;
|
|
13049
|
+
contractURI: string;
|
|
13050
|
+
royaltyPercentage: string;
|
|
12790
13051
|
};
|
|
12791
13052
|
exchangeToken: {
|
|
12792
13053
|
__typename?: "ExchangeToken";
|
|
@@ -12978,6 +13239,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12978
13239
|
authTokenType: number;
|
|
12979
13240
|
voucherCloneAddress: string;
|
|
12980
13241
|
active: boolean;
|
|
13242
|
+
contractURI: string;
|
|
13243
|
+
royaltyPercentage: string;
|
|
12981
13244
|
};
|
|
12982
13245
|
};
|
|
12983
13246
|
exchangePolicy: {
|
|
@@ -13018,6 +13281,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
13018
13281
|
authTokenType: number;
|
|
13019
13282
|
voucherCloneAddress: string;
|
|
13020
13283
|
active: boolean;
|
|
13284
|
+
contractURI: string;
|
|
13285
|
+
royaltyPercentage: string;
|
|
13021
13286
|
};
|
|
13022
13287
|
exchangeToken: {
|
|
13023
13288
|
__typename?: "ExchangeToken";
|
|
@@ -13068,7 +13333,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
13068
13333
|
validUntilDate: string;
|
|
13069
13334
|
voucherRedeemableFromDate: string;
|
|
13070
13335
|
voucherRedeemableUntilDate: string;
|
|
13071
|
-
|
|
13336
|
+
disputePeriodDuration: string;
|
|
13072
13337
|
voucherValidDuration: string;
|
|
13073
13338
|
resolutionPeriodDuration: string;
|
|
13074
13339
|
metadataUri: string;
|
|
@@ -13089,6 +13354,8 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
13089
13354
|
authTokenType: number;
|
|
13090
13355
|
voucherCloneAddress: string;
|
|
13091
13356
|
active: boolean;
|
|
13357
|
+
contractURI: string;
|
|
13358
|
+
royaltyPercentage: string;
|
|
13092
13359
|
};
|
|
13093
13360
|
exchangeToken: {
|
|
13094
13361
|
__typename?: "ExchangeToken";
|
|
@@ -13276,6 +13543,8 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
13276
13543
|
authTokenType: number;
|
|
13277
13544
|
voucherCloneAddress: string;
|
|
13278
13545
|
active: boolean;
|
|
13546
|
+
contractURI: string;
|
|
13547
|
+
royaltyPercentage: string;
|
|
13279
13548
|
};
|
|
13280
13549
|
};
|
|
13281
13550
|
exchangePolicy: {
|
|
@@ -13316,6 +13585,8 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
13316
13585
|
authTokenType: number;
|
|
13317
13586
|
voucherCloneAddress: string;
|
|
13318
13587
|
active: boolean;
|
|
13588
|
+
contractURI: string;
|
|
13589
|
+
royaltyPercentage: string;
|
|
13319
13590
|
};
|
|
13320
13591
|
exchangeToken: {
|
|
13321
13592
|
__typename?: "ExchangeToken";
|
|
@@ -13365,7 +13636,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13365
13636
|
validUntilDate: string;
|
|
13366
13637
|
voucherRedeemableFromDate: string;
|
|
13367
13638
|
voucherRedeemableUntilDate: string;
|
|
13368
|
-
|
|
13639
|
+
disputePeriodDuration: string;
|
|
13369
13640
|
voucherValidDuration: string;
|
|
13370
13641
|
resolutionPeriodDuration: string;
|
|
13371
13642
|
metadataUri: string;
|
|
@@ -13386,6 +13657,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13386
13657
|
authTokenType: number;
|
|
13387
13658
|
voucherCloneAddress: string;
|
|
13388
13659
|
active: boolean;
|
|
13660
|
+
contractURI: string;
|
|
13661
|
+
royaltyPercentage: string;
|
|
13389
13662
|
};
|
|
13390
13663
|
exchangeToken: {
|
|
13391
13664
|
__typename?: "ExchangeToken";
|
|
@@ -13573,6 +13846,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13573
13846
|
authTokenType: number;
|
|
13574
13847
|
voucherCloneAddress: string;
|
|
13575
13848
|
active: boolean;
|
|
13849
|
+
contractURI: string;
|
|
13850
|
+
royaltyPercentage: string;
|
|
13576
13851
|
};
|
|
13577
13852
|
};
|
|
13578
13853
|
exchangePolicy: {
|
|
@@ -13613,6 +13888,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13613
13888
|
authTokenType: number;
|
|
13614
13889
|
voucherCloneAddress: string;
|
|
13615
13890
|
active: boolean;
|
|
13891
|
+
contractURI: string;
|
|
13892
|
+
royaltyPercentage: string;
|
|
13616
13893
|
};
|
|
13617
13894
|
exchangeToken: {
|
|
13618
13895
|
__typename?: "ExchangeToken";
|
|
@@ -13708,7 +13985,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13708
13985
|
validUntilDate: string;
|
|
13709
13986
|
voucherRedeemableFromDate: string;
|
|
13710
13987
|
voucherRedeemableUntilDate: string;
|
|
13711
|
-
|
|
13988
|
+
disputePeriodDuration: string;
|
|
13712
13989
|
voucherValidDuration: string;
|
|
13713
13990
|
resolutionPeriodDuration: string;
|
|
13714
13991
|
metadataUri: string;
|
|
@@ -13729,6 +14006,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13729
14006
|
authTokenType: number;
|
|
13730
14007
|
voucherCloneAddress: string;
|
|
13731
14008
|
active: boolean;
|
|
14009
|
+
contractURI: string;
|
|
14010
|
+
royaltyPercentage: string;
|
|
13732
14011
|
};
|
|
13733
14012
|
exchangeToken: {
|
|
13734
14013
|
__typename?: "ExchangeToken";
|
|
@@ -13920,6 +14199,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13920
14199
|
authTokenType: number;
|
|
13921
14200
|
voucherCloneAddress: string;
|
|
13922
14201
|
active: boolean;
|
|
14202
|
+
contractURI: string;
|
|
14203
|
+
royaltyPercentage: string;
|
|
13923
14204
|
};
|
|
13924
14205
|
};
|
|
13925
14206
|
exchangePolicy: {
|
|
@@ -13960,6 +14241,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13960
14241
|
authTokenType: number;
|
|
13961
14242
|
voucherCloneAddress: string;
|
|
13962
14243
|
active: boolean;
|
|
14244
|
+
contractURI: string;
|
|
14245
|
+
royaltyPercentage: string;
|
|
13963
14246
|
};
|
|
13964
14247
|
exchangeToken: {
|
|
13965
14248
|
__typename?: "ExchangeToken";
|
|
@@ -14083,6 +14366,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
14083
14366
|
authTokenType: number;
|
|
14084
14367
|
voucherCloneAddress: string;
|
|
14085
14368
|
active: boolean;
|
|
14369
|
+
contractURI: string;
|
|
14370
|
+
royaltyPercentage: string;
|
|
14086
14371
|
};
|
|
14087
14372
|
};
|
|
14088
14373
|
exchangePolicy: {
|
|
@@ -14147,7 +14432,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14147
14432
|
validUntilDate: string;
|
|
14148
14433
|
voucherRedeemableFromDate: string;
|
|
14149
14434
|
voucherRedeemableUntilDate: string;
|
|
14150
|
-
|
|
14435
|
+
disputePeriodDuration: string;
|
|
14151
14436
|
voucherValidDuration: string;
|
|
14152
14437
|
resolutionPeriodDuration: string;
|
|
14153
14438
|
metadataUri: string;
|
|
@@ -14168,6 +14453,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14168
14453
|
authTokenType: number;
|
|
14169
14454
|
voucherCloneAddress: string;
|
|
14170
14455
|
active: boolean;
|
|
14456
|
+
contractURI: string;
|
|
14457
|
+
royaltyPercentage: string;
|
|
14171
14458
|
};
|
|
14172
14459
|
exchangeToken: {
|
|
14173
14460
|
__typename?: "ExchangeToken";
|
|
@@ -14359,6 +14646,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14359
14646
|
authTokenType: number;
|
|
14360
14647
|
voucherCloneAddress: string;
|
|
14361
14648
|
active: boolean;
|
|
14649
|
+
contractURI: string;
|
|
14650
|
+
royaltyPercentage: string;
|
|
14362
14651
|
};
|
|
14363
14652
|
};
|
|
14364
14653
|
exchangePolicy: {
|
|
@@ -14399,6 +14688,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14399
14688
|
authTokenType: number;
|
|
14400
14689
|
voucherCloneAddress: string;
|
|
14401
14690
|
active: boolean;
|
|
14691
|
+
contractURI: string;
|
|
14692
|
+
royaltyPercentage: string;
|
|
14402
14693
|
};
|
|
14403
14694
|
exchangeToken: {
|
|
14404
14695
|
__typename?: "ExchangeToken";
|
|
@@ -14522,6 +14813,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14522
14813
|
authTokenType: number;
|
|
14523
14814
|
voucherCloneAddress: string;
|
|
14524
14815
|
active: boolean;
|
|
14816
|
+
contractURI: string;
|
|
14817
|
+
royaltyPercentage: string;
|
|
14525
14818
|
};
|
|
14526
14819
|
};
|
|
14527
14820
|
exchangePolicy: {
|
|
@@ -14576,7 +14869,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14576
14869
|
validUntilDate: string;
|
|
14577
14870
|
voucherRedeemableFromDate: string;
|
|
14578
14871
|
voucherRedeemableUntilDate: string;
|
|
14579
|
-
|
|
14872
|
+
disputePeriodDuration: string;
|
|
14580
14873
|
voucherValidDuration: string;
|
|
14581
14874
|
resolutionPeriodDuration: string;
|
|
14582
14875
|
metadataUri: string;
|
|
@@ -14597,6 +14890,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14597
14890
|
authTokenType: number;
|
|
14598
14891
|
voucherCloneAddress: string;
|
|
14599
14892
|
active: boolean;
|
|
14893
|
+
contractURI: string;
|
|
14894
|
+
royaltyPercentage: string;
|
|
14600
14895
|
};
|
|
14601
14896
|
exchangeToken: {
|
|
14602
14897
|
__typename?: "ExchangeToken";
|
|
@@ -14784,6 +15079,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14784
15079
|
authTokenType: number;
|
|
14785
15080
|
voucherCloneAddress: string;
|
|
14786
15081
|
active: boolean;
|
|
15082
|
+
contractURI: string;
|
|
15083
|
+
royaltyPercentage: string;
|
|
14787
15084
|
};
|
|
14788
15085
|
};
|
|
14789
15086
|
exchangePolicy: {
|
|
@@ -14824,6 +15121,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14824
15121
|
authTokenType: number;
|
|
14825
15122
|
voucherCloneAddress: string;
|
|
14826
15123
|
active: boolean;
|
|
15124
|
+
contractURI: string;
|
|
15125
|
+
royaltyPercentage: string;
|
|
14827
15126
|
};
|
|
14828
15127
|
exchangeToken: {
|
|
14829
15128
|
__typename?: "ExchangeToken";
|
|
@@ -14947,6 +15246,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14947
15246
|
authTokenType: number;
|
|
14948
15247
|
voucherCloneAddress: string;
|
|
14949
15248
|
active: boolean;
|
|
15249
|
+
contractURI: string;
|
|
15250
|
+
royaltyPercentage: string;
|
|
14950
15251
|
};
|
|
14951
15252
|
};
|
|
14952
15253
|
exchangePolicy: {
|
|
@@ -15000,7 +15301,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15000
15301
|
validUntilDate: string;
|
|
15001
15302
|
voucherRedeemableFromDate: string;
|
|
15002
15303
|
voucherRedeemableUntilDate: string;
|
|
15003
|
-
|
|
15304
|
+
disputePeriodDuration: string;
|
|
15004
15305
|
voucherValidDuration: string;
|
|
15005
15306
|
resolutionPeriodDuration: string;
|
|
15006
15307
|
metadataUri: string;
|
|
@@ -15021,6 +15322,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15021
15322
|
authTokenType: number;
|
|
15022
15323
|
voucherCloneAddress: string;
|
|
15023
15324
|
active: boolean;
|
|
15325
|
+
contractURI: string;
|
|
15326
|
+
royaltyPercentage: string;
|
|
15024
15327
|
};
|
|
15025
15328
|
exchangeToken: {
|
|
15026
15329
|
__typename?: "ExchangeToken";
|
|
@@ -15208,6 +15511,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15208
15511
|
authTokenType: number;
|
|
15209
15512
|
voucherCloneAddress: string;
|
|
15210
15513
|
active: boolean;
|
|
15514
|
+
contractURI: string;
|
|
15515
|
+
royaltyPercentage: string;
|
|
15211
15516
|
};
|
|
15212
15517
|
};
|
|
15213
15518
|
exchangePolicy: {
|
|
@@ -15248,6 +15553,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15248
15553
|
authTokenType: number;
|
|
15249
15554
|
voucherCloneAddress: string;
|
|
15250
15555
|
active: boolean;
|
|
15556
|
+
contractURI: string;
|
|
15557
|
+
royaltyPercentage: string;
|
|
15251
15558
|
};
|
|
15252
15559
|
exchangeToken: {
|
|
15253
15560
|
__typename?: "ExchangeToken";
|
|
@@ -15371,6 +15678,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15371
15678
|
authTokenType: number;
|
|
15372
15679
|
voucherCloneAddress: string;
|
|
15373
15680
|
active: boolean;
|
|
15681
|
+
contractURI: string;
|
|
15682
|
+
royaltyPercentage: string;
|
|
15374
15683
|
};
|
|
15375
15684
|
};
|
|
15376
15685
|
exchangePolicy: {
|
|
@@ -15539,6 +15848,8 @@ export type BaseProductV1SellerFieldsFragment = {
|
|
|
15539
15848
|
authTokenType: number;
|
|
15540
15849
|
voucherCloneAddress: string;
|
|
15541
15850
|
active: boolean;
|
|
15851
|
+
contractURI: string;
|
|
15852
|
+
royaltyPercentage: string;
|
|
15542
15853
|
};
|
|
15543
15854
|
};
|
|
15544
15855
|
|
|
@@ -15648,7 +15959,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
15648
15959
|
validUntilDate: string;
|
|
15649
15960
|
voucherRedeemableFromDate: string;
|
|
15650
15961
|
voucherRedeemableUntilDate: string;
|
|
15651
|
-
|
|
15962
|
+
disputePeriodDuration: string;
|
|
15652
15963
|
voucherValidDuration: string;
|
|
15653
15964
|
resolutionPeriodDuration: string;
|
|
15654
15965
|
metadataUri: string;
|
|
@@ -15704,6 +16015,8 @@ export type GetOfferByIdQueryQuery = {
|
|
|
15704
16015
|
authTokenType: number;
|
|
15705
16016
|
voucherCloneAddress: string;
|
|
15706
16017
|
active: boolean;
|
|
16018
|
+
contractURI: string;
|
|
16019
|
+
royaltyPercentage: string;
|
|
15707
16020
|
};
|
|
15708
16021
|
}>;
|
|
15709
16022
|
seller: {
|
|
@@ -15717,6 +16030,8 @@ export type GetOfferByIdQueryQuery = {
|
|
|
15717
16030
|
authTokenType: number;
|
|
15718
16031
|
voucherCloneAddress: string;
|
|
15719
16032
|
active: boolean;
|
|
16033
|
+
contractURI: string;
|
|
16034
|
+
royaltyPercentage: string;
|
|
15720
16035
|
};
|
|
15721
16036
|
exchangeToken: {
|
|
15722
16037
|
__typename?: "ExchangeToken";
|
|
@@ -15904,6 +16219,8 @@ export type GetOfferByIdQueryQuery = {
|
|
|
15904
16219
|
authTokenType: number;
|
|
15905
16220
|
voucherCloneAddress: string;
|
|
15906
16221
|
active: boolean;
|
|
16222
|
+
contractURI: string;
|
|
16223
|
+
royaltyPercentage: string;
|
|
15907
16224
|
};
|
|
15908
16225
|
};
|
|
15909
16226
|
exchangePolicy: {
|
|
@@ -15967,7 +16284,7 @@ export type GetOffersQueryQuery = {
|
|
|
15967
16284
|
validUntilDate: string;
|
|
15968
16285
|
voucherRedeemableFromDate: string;
|
|
15969
16286
|
voucherRedeemableUntilDate: string;
|
|
15970
|
-
|
|
16287
|
+
disputePeriodDuration: string;
|
|
15971
16288
|
voucherValidDuration: string;
|
|
15972
16289
|
resolutionPeriodDuration: string;
|
|
15973
16290
|
metadataUri: string;
|
|
@@ -16023,6 +16340,8 @@ export type GetOffersQueryQuery = {
|
|
|
16023
16340
|
authTokenType: number;
|
|
16024
16341
|
voucherCloneAddress: string;
|
|
16025
16342
|
active: boolean;
|
|
16343
|
+
contractURI: string;
|
|
16344
|
+
royaltyPercentage: string;
|
|
16026
16345
|
};
|
|
16027
16346
|
}>;
|
|
16028
16347
|
seller: {
|
|
@@ -16036,6 +16355,8 @@ export type GetOffersQueryQuery = {
|
|
|
16036
16355
|
authTokenType: number;
|
|
16037
16356
|
voucherCloneAddress: string;
|
|
16038
16357
|
active: boolean;
|
|
16358
|
+
contractURI: string;
|
|
16359
|
+
royaltyPercentage: string;
|
|
16039
16360
|
};
|
|
16040
16361
|
exchangeToken: {
|
|
16041
16362
|
__typename?: "ExchangeToken";
|
|
@@ -16223,6 +16544,8 @@ export type GetOffersQueryQuery = {
|
|
|
16223
16544
|
authTokenType: number;
|
|
16224
16545
|
voucherCloneAddress: string;
|
|
16225
16546
|
active: boolean;
|
|
16547
|
+
contractURI: string;
|
|
16548
|
+
royaltyPercentage: string;
|
|
16226
16549
|
};
|
|
16227
16550
|
};
|
|
16228
16551
|
exchangePolicy: {
|
|
@@ -16270,7 +16593,7 @@ export type OfferFieldsFragment = {
|
|
|
16270
16593
|
validUntilDate: string;
|
|
16271
16594
|
voucherRedeemableFromDate: string;
|
|
16272
16595
|
voucherRedeemableUntilDate: string;
|
|
16273
|
-
|
|
16596
|
+
disputePeriodDuration: string;
|
|
16274
16597
|
voucherValidDuration: string;
|
|
16275
16598
|
resolutionPeriodDuration: string;
|
|
16276
16599
|
metadataUri: string;
|
|
@@ -16326,6 +16649,8 @@ export type OfferFieldsFragment = {
|
|
|
16326
16649
|
authTokenType: number;
|
|
16327
16650
|
voucherCloneAddress: string;
|
|
16328
16651
|
active: boolean;
|
|
16652
|
+
contractURI: string;
|
|
16653
|
+
royaltyPercentage: string;
|
|
16329
16654
|
};
|
|
16330
16655
|
}>;
|
|
16331
16656
|
seller: {
|
|
@@ -16339,6 +16664,8 @@ export type OfferFieldsFragment = {
|
|
|
16339
16664
|
authTokenType: number;
|
|
16340
16665
|
voucherCloneAddress: string;
|
|
16341
16666
|
active: boolean;
|
|
16667
|
+
contractURI: string;
|
|
16668
|
+
royaltyPercentage: string;
|
|
16342
16669
|
};
|
|
16343
16670
|
exchangeToken: {
|
|
16344
16671
|
__typename?: "ExchangeToken";
|
|
@@ -16526,6 +16853,8 @@ export type OfferFieldsFragment = {
|
|
|
16526
16853
|
authTokenType: number;
|
|
16527
16854
|
voucherCloneAddress: string;
|
|
16528
16855
|
active: boolean;
|
|
16856
|
+
contractURI: string;
|
|
16857
|
+
royaltyPercentage: string;
|
|
16529
16858
|
};
|
|
16530
16859
|
};
|
|
16531
16860
|
exchangePolicy: {
|
|
@@ -16572,7 +16901,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
16572
16901
|
validUntilDate: string;
|
|
16573
16902
|
voucherRedeemableFromDate: string;
|
|
16574
16903
|
voucherRedeemableUntilDate: string;
|
|
16575
|
-
|
|
16904
|
+
disputePeriodDuration: string;
|
|
16576
16905
|
voucherValidDuration: string;
|
|
16577
16906
|
resolutionPeriodDuration: string;
|
|
16578
16907
|
metadataUri: string;
|
|
@@ -16593,6 +16922,8 @@ export type BaseOfferFieldsFragment = {
|
|
|
16593
16922
|
authTokenType: number;
|
|
16594
16923
|
voucherCloneAddress: string;
|
|
16595
16924
|
active: boolean;
|
|
16925
|
+
contractURI: string;
|
|
16926
|
+
royaltyPercentage: string;
|
|
16596
16927
|
};
|
|
16597
16928
|
exchangeToken: {
|
|
16598
16929
|
__typename?: "ExchangeToken";
|
|
@@ -16780,6 +17111,8 @@ export type BaseOfferFieldsFragment = {
|
|
|
16780
17111
|
authTokenType: number;
|
|
16781
17112
|
voucherCloneAddress: string;
|
|
16782
17113
|
active: boolean;
|
|
17114
|
+
contractURI: string;
|
|
17115
|
+
royaltyPercentage: string;
|
|
16783
17116
|
};
|
|
16784
17117
|
};
|
|
16785
17118
|
exchangePolicy: {
|
|
@@ -16821,6 +17154,8 @@ export const BaseSellerFieldsFragmentDoc = gql`
|
|
|
16821
17154
|
authTokenType
|
|
16822
17155
|
voucherCloneAddress
|
|
16823
17156
|
active
|
|
17157
|
+
contractURI
|
|
17158
|
+
royaltyPercentage
|
|
16824
17159
|
}
|
|
16825
17160
|
`;
|
|
16826
17161
|
export const BaseFundsEntityFieldsFragmentDoc = gql`
|
|
@@ -17073,7 +17408,7 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
17073
17408
|
validUntilDate
|
|
17074
17409
|
voucherRedeemableFromDate
|
|
17075
17410
|
voucherRedeemableUntilDate
|
|
17076
|
-
|
|
17411
|
+
disputePeriodDuration
|
|
17077
17412
|
voucherValidDuration
|
|
17078
17413
|
resolutionPeriodDuration
|
|
17079
17414
|
metadataUri
|