@bosonprotocol/core-sdk 1.12.7-alpha.2 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/subgraph.d.ts +113 -30
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +10 -0
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +113 -30
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +10 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/disputes/queries.graphql +4 -0
- package/src/exchanges/queries.graphql +1 -0
- package/src/subgraph.ts +118 -30
package/src/subgraph.ts
CHANGED
|
@@ -413,12 +413,16 @@ export type Dispute = {
|
|
|
413
413
|
buyer: Buyer;
|
|
414
414
|
buyerPercent: Scalars["BigInt"];
|
|
415
415
|
complaint: Scalars["String"];
|
|
416
|
+
decidedDate?: Maybe<Scalars["BigInt"]>;
|
|
416
417
|
disputedDate: Scalars["BigInt"];
|
|
417
418
|
escalatedDate?: Maybe<Scalars["BigInt"]>;
|
|
418
419
|
exchange: Exchange;
|
|
419
420
|
exchangeId: Scalars["BigInt"];
|
|
420
421
|
finalizedDate?: Maybe<Scalars["BigInt"]>;
|
|
421
422
|
id: Scalars["ID"];
|
|
423
|
+
refusedDate?: Maybe<Scalars["BigInt"]>;
|
|
424
|
+
resolvedDate?: Maybe<Scalars["BigInt"]>;
|
|
425
|
+
retractedDate?: Maybe<Scalars["BigInt"]>;
|
|
422
426
|
seller: Seller;
|
|
423
427
|
state: DisputeState;
|
|
424
428
|
timeout: Scalars["BigInt"];
|
|
@@ -798,6 +802,14 @@ export type Dispute_Filter = {
|
|
|
798
802
|
complaint_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
799
803
|
complaint_starts_with?: InputMaybe<Scalars["String"]>;
|
|
800
804
|
complaint_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
805
|
+
decidedDate?: InputMaybe<Scalars["BigInt"]>;
|
|
806
|
+
decidedDate_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
807
|
+
decidedDate_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
808
|
+
decidedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
809
|
+
decidedDate_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
810
|
+
decidedDate_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
811
|
+
decidedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
812
|
+
decidedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
801
813
|
disputedDate?: InputMaybe<Scalars["BigInt"]>;
|
|
802
814
|
disputedDate_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
803
815
|
disputedDate_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -858,6 +870,30 @@ export type Dispute_Filter = {
|
|
|
858
870
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
859
871
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
860
872
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
873
|
+
refusedDate?: InputMaybe<Scalars["BigInt"]>;
|
|
874
|
+
refusedDate_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
875
|
+
refusedDate_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
876
|
+
refusedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
877
|
+
refusedDate_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
878
|
+
refusedDate_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
879
|
+
refusedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
880
|
+
refusedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
881
|
+
resolvedDate?: InputMaybe<Scalars["BigInt"]>;
|
|
882
|
+
resolvedDate_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
883
|
+
resolvedDate_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
884
|
+
resolvedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
885
|
+
resolvedDate_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
886
|
+
resolvedDate_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
887
|
+
resolvedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
888
|
+
resolvedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
889
|
+
retractedDate?: InputMaybe<Scalars["BigInt"]>;
|
|
890
|
+
retractedDate_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
891
|
+
retractedDate_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
892
|
+
retractedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
893
|
+
retractedDate_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
894
|
+
retractedDate_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
895
|
+
retractedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
896
|
+
retractedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
861
897
|
seller?: InputMaybe<Scalars["String"]>;
|
|
862
898
|
seller_contains?: InputMaybe<Scalars["String"]>;
|
|
863
899
|
seller_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -896,12 +932,16 @@ export enum Dispute_OrderBy {
|
|
|
896
932
|
Buyer = "buyer",
|
|
897
933
|
BuyerPercent = "buyerPercent",
|
|
898
934
|
Complaint = "complaint",
|
|
935
|
+
DecidedDate = "decidedDate",
|
|
899
936
|
DisputedDate = "disputedDate",
|
|
900
937
|
EscalatedDate = "escalatedDate",
|
|
901
938
|
Exchange = "exchange",
|
|
902
939
|
ExchangeId = "exchangeId",
|
|
903
940
|
FinalizedDate = "finalizedDate",
|
|
904
941
|
Id = "id",
|
|
942
|
+
RefusedDate = "refusedDate",
|
|
943
|
+
ResolvedDate = "resolvedDate",
|
|
944
|
+
RetractedDate = "retractedDate",
|
|
905
945
|
Seller = "seller",
|
|
906
946
|
State = "state",
|
|
907
947
|
Timeout = "timeout"
|
|
@@ -914,6 +954,7 @@ export type Exchange = {
|
|
|
914
954
|
committedDate: Scalars["BigInt"];
|
|
915
955
|
completedDate?: Maybe<Scalars["BigInt"]>;
|
|
916
956
|
disputed: Scalars["Boolean"];
|
|
957
|
+
disputedDate?: Maybe<Scalars["BigInt"]>;
|
|
917
958
|
expired: Scalars["Boolean"];
|
|
918
959
|
finalizedDate?: Maybe<Scalars["BigInt"]>;
|
|
919
960
|
id: Scalars["ID"];
|
|
@@ -1098,6 +1139,14 @@ export type Exchange_Filter = {
|
|
|
1098
1139
|
completedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1099
1140
|
completedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1100
1141
|
disputed?: InputMaybe<Scalars["Boolean"]>;
|
|
1142
|
+
disputedDate?: InputMaybe<Scalars["BigInt"]>;
|
|
1143
|
+
disputedDate_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
1144
|
+
disputedDate_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
1145
|
+
disputedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1146
|
+
disputedDate_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
1147
|
+
disputedDate_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
1148
|
+
disputedDate_not?: InputMaybe<Scalars["BigInt"]>;
|
|
1149
|
+
disputedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
1101
1150
|
disputed_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
1102
1151
|
disputed_not?: InputMaybe<Scalars["Boolean"]>;
|
|
1103
1152
|
disputed_not_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
@@ -1197,6 +1246,7 @@ export enum Exchange_OrderBy {
|
|
|
1197
1246
|
CommittedDate = "committedDate",
|
|
1198
1247
|
CompletedDate = "completedDate",
|
|
1199
1248
|
Disputed = "disputed",
|
|
1249
|
+
DisputedDate = "disputedDate",
|
|
1200
1250
|
Expired = "expired",
|
|
1201
1251
|
FinalizedDate = "finalizedDate",
|
|
1202
1252
|
Id = "id",
|
|
@@ -4303,7 +4353,7 @@ export enum ProductV1Section_OrderBy {
|
|
|
4303
4353
|
export type ProductV1Seller = {
|
|
4304
4354
|
__typename?: "ProductV1Seller";
|
|
4305
4355
|
contactLinks?: Maybe<Array<ProductV1SellerContactLink>>;
|
|
4306
|
-
defaultVersion
|
|
4356
|
+
defaultVersion: Scalars["Int"];
|
|
4307
4357
|
description?: Maybe<Scalars["String"]>;
|
|
4308
4358
|
externalUrl?: Maybe<Scalars["String"]>;
|
|
4309
4359
|
id: Scalars["ID"];
|
|
@@ -6255,7 +6305,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
6255
6305
|
productV1Seller: {
|
|
6256
6306
|
__typename?: "ProductV1Seller";
|
|
6257
6307
|
id: string;
|
|
6258
|
-
defaultVersion
|
|
6308
|
+
defaultVersion: number;
|
|
6259
6309
|
name?: string | null;
|
|
6260
6310
|
description?: string | null;
|
|
6261
6311
|
externalUrl?: string | null;
|
|
@@ -6322,6 +6372,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
6322
6372
|
revokedDate?: string | null;
|
|
6323
6373
|
cancelledDate?: string | null;
|
|
6324
6374
|
completedDate?: string | null;
|
|
6375
|
+
disputedDate?: string | null;
|
|
6325
6376
|
expired: boolean;
|
|
6326
6377
|
}>;
|
|
6327
6378
|
} | null;
|
|
@@ -6576,7 +6627,7 @@ export type GetSellersQueryQuery = {
|
|
|
6576
6627
|
productV1Seller: {
|
|
6577
6628
|
__typename?: "ProductV1Seller";
|
|
6578
6629
|
id: string;
|
|
6579
|
-
defaultVersion
|
|
6630
|
+
defaultVersion: number;
|
|
6580
6631
|
name?: string | null;
|
|
6581
6632
|
description?: string | null;
|
|
6582
6633
|
externalUrl?: string | null;
|
|
@@ -6643,6 +6694,7 @@ export type GetSellersQueryQuery = {
|
|
|
6643
6694
|
revokedDate?: string | null;
|
|
6644
6695
|
cancelledDate?: string | null;
|
|
6645
6696
|
completedDate?: string | null;
|
|
6697
|
+
disputedDate?: string | null;
|
|
6646
6698
|
expired: boolean;
|
|
6647
6699
|
}>;
|
|
6648
6700
|
}>;
|
|
@@ -6697,6 +6749,7 @@ export type GetBuyerByIdQueryQuery = {
|
|
|
6697
6749
|
revokedDate?: string | null;
|
|
6698
6750
|
cancelledDate?: string | null;
|
|
6699
6751
|
completedDate?: string | null;
|
|
6752
|
+
disputedDate?: string | null;
|
|
6700
6753
|
expired: boolean;
|
|
6701
6754
|
}>;
|
|
6702
6755
|
} | null;
|
|
@@ -6761,6 +6814,7 @@ export type GetBuyersQueryQuery = {
|
|
|
6761
6814
|
revokedDate?: string | null;
|
|
6762
6815
|
cancelledDate?: string | null;
|
|
6763
6816
|
completedDate?: string | null;
|
|
6817
|
+
disputedDate?: string | null;
|
|
6764
6818
|
expired: boolean;
|
|
6765
6819
|
}>;
|
|
6766
6820
|
}>;
|
|
@@ -6985,7 +7039,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
6985
7039
|
productV1Seller: {
|
|
6986
7040
|
__typename?: "ProductV1Seller";
|
|
6987
7041
|
id: string;
|
|
6988
|
-
defaultVersion
|
|
7042
|
+
defaultVersion: number;
|
|
6989
7043
|
name?: string | null;
|
|
6990
7044
|
description?: string | null;
|
|
6991
7045
|
externalUrl?: string | null;
|
|
@@ -7281,7 +7335,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
7281
7335
|
productV1Seller: {
|
|
7282
7336
|
__typename?: "ProductV1Seller";
|
|
7283
7337
|
id: string;
|
|
7284
|
-
defaultVersion
|
|
7338
|
+
defaultVersion: number;
|
|
7285
7339
|
name?: string | null;
|
|
7286
7340
|
description?: string | null;
|
|
7287
7341
|
externalUrl?: string | null;
|
|
@@ -7571,7 +7625,7 @@ export type SellerFieldsFragment = {
|
|
|
7571
7625
|
productV1Seller: {
|
|
7572
7626
|
__typename?: "ProductV1Seller";
|
|
7573
7627
|
id: string;
|
|
7574
|
-
defaultVersion
|
|
7628
|
+
defaultVersion: number;
|
|
7575
7629
|
name?: string | null;
|
|
7576
7630
|
description?: string | null;
|
|
7577
7631
|
externalUrl?: string | null;
|
|
@@ -7638,6 +7692,7 @@ export type SellerFieldsFragment = {
|
|
|
7638
7692
|
revokedDate?: string | null;
|
|
7639
7693
|
cancelledDate?: string | null;
|
|
7640
7694
|
completedDate?: string | null;
|
|
7695
|
+
disputedDate?: string | null;
|
|
7641
7696
|
expired: boolean;
|
|
7642
7697
|
}>;
|
|
7643
7698
|
};
|
|
@@ -7686,6 +7741,7 @@ export type BuyerFieldsFragment = {
|
|
|
7686
7741
|
revokedDate?: string | null;
|
|
7687
7742
|
cancelledDate?: string | null;
|
|
7688
7743
|
completedDate?: string | null;
|
|
7744
|
+
disputedDate?: string | null;
|
|
7689
7745
|
expired: boolean;
|
|
7690
7746
|
}>;
|
|
7691
7747
|
};
|
|
@@ -7900,7 +7956,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
7900
7956
|
productV1Seller: {
|
|
7901
7957
|
__typename?: "ProductV1Seller";
|
|
7902
7958
|
id: string;
|
|
7903
|
-
defaultVersion
|
|
7959
|
+
defaultVersion: number;
|
|
7904
7960
|
name?: string | null;
|
|
7905
7961
|
description?: string | null;
|
|
7906
7962
|
externalUrl?: string | null;
|
|
@@ -8047,6 +8103,10 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
8047
8103
|
disputedDate: string;
|
|
8048
8104
|
escalatedDate?: string | null;
|
|
8049
8105
|
finalizedDate?: string | null;
|
|
8106
|
+
retractedDate?: string | null;
|
|
8107
|
+
resolvedDate?: string | null;
|
|
8108
|
+
decidedDate?: string | null;
|
|
8109
|
+
refusedDate?: string | null;
|
|
8050
8110
|
timeout: string;
|
|
8051
8111
|
exchange: {
|
|
8052
8112
|
__typename?: "Exchange";
|
|
@@ -8060,6 +8120,7 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
8060
8120
|
revokedDate?: string | null;
|
|
8061
8121
|
cancelledDate?: string | null;
|
|
8062
8122
|
completedDate?: string | null;
|
|
8123
|
+
disputedDate?: string | null;
|
|
8063
8124
|
expired: boolean;
|
|
8064
8125
|
};
|
|
8065
8126
|
seller: {
|
|
@@ -8103,6 +8164,10 @@ export type GetDisputesQueryQuery = {
|
|
|
8103
8164
|
disputedDate: string;
|
|
8104
8165
|
escalatedDate?: string | null;
|
|
8105
8166
|
finalizedDate?: string | null;
|
|
8167
|
+
retractedDate?: string | null;
|
|
8168
|
+
resolvedDate?: string | null;
|
|
8169
|
+
decidedDate?: string | null;
|
|
8170
|
+
refusedDate?: string | null;
|
|
8106
8171
|
timeout: string;
|
|
8107
8172
|
exchange: {
|
|
8108
8173
|
__typename?: "Exchange";
|
|
@@ -8116,6 +8181,7 @@ export type GetDisputesQueryQuery = {
|
|
|
8116
8181
|
revokedDate?: string | null;
|
|
8117
8182
|
cancelledDate?: string | null;
|
|
8118
8183
|
completedDate?: string | null;
|
|
8184
|
+
disputedDate?: string | null;
|
|
8119
8185
|
expired: boolean;
|
|
8120
8186
|
};
|
|
8121
8187
|
seller: {
|
|
@@ -8149,6 +8215,10 @@ export type DisputeFieldsFragment = {
|
|
|
8149
8215
|
disputedDate: string;
|
|
8150
8216
|
escalatedDate?: string | null;
|
|
8151
8217
|
finalizedDate?: string | null;
|
|
8218
|
+
retractedDate?: string | null;
|
|
8219
|
+
resolvedDate?: string | null;
|
|
8220
|
+
decidedDate?: string | null;
|
|
8221
|
+
refusedDate?: string | null;
|
|
8152
8222
|
timeout: string;
|
|
8153
8223
|
exchange: {
|
|
8154
8224
|
__typename?: "Exchange";
|
|
@@ -8162,6 +8232,7 @@ export type DisputeFieldsFragment = {
|
|
|
8162
8232
|
revokedDate?: string | null;
|
|
8163
8233
|
cancelledDate?: string | null;
|
|
8164
8234
|
completedDate?: string | null;
|
|
8235
|
+
disputedDate?: string | null;
|
|
8165
8236
|
expired: boolean;
|
|
8166
8237
|
};
|
|
8167
8238
|
seller: {
|
|
@@ -8189,6 +8260,10 @@ export type BaseDisputeFieldsFragment = {
|
|
|
8189
8260
|
disputedDate: string;
|
|
8190
8261
|
escalatedDate?: string | null;
|
|
8191
8262
|
finalizedDate?: string | null;
|
|
8263
|
+
retractedDate?: string | null;
|
|
8264
|
+
resolvedDate?: string | null;
|
|
8265
|
+
decidedDate?: string | null;
|
|
8266
|
+
refusedDate?: string | null;
|
|
8192
8267
|
timeout: string;
|
|
8193
8268
|
exchange: {
|
|
8194
8269
|
__typename?: "Exchange";
|
|
@@ -8202,6 +8277,7 @@ export type BaseDisputeFieldsFragment = {
|
|
|
8202
8277
|
revokedDate?: string | null;
|
|
8203
8278
|
cancelledDate?: string | null;
|
|
8204
8279
|
completedDate?: string | null;
|
|
8280
|
+
disputedDate?: string | null;
|
|
8205
8281
|
expired: boolean;
|
|
8206
8282
|
};
|
|
8207
8283
|
seller: {
|
|
@@ -8445,7 +8521,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
8445
8521
|
productV1Seller: {
|
|
8446
8522
|
__typename?: "ProductV1Seller";
|
|
8447
8523
|
id: string;
|
|
8448
|
-
defaultVersion
|
|
8524
|
+
defaultVersion: number;
|
|
8449
8525
|
name?: string | null;
|
|
8450
8526
|
description?: string | null;
|
|
8451
8527
|
externalUrl?: string | null;
|
|
@@ -8734,7 +8810,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
8734
8810
|
productV1Seller: {
|
|
8735
8811
|
__typename?: "ProductV1Seller";
|
|
8736
8812
|
id: string;
|
|
8737
|
-
defaultVersion
|
|
8813
|
+
defaultVersion: number;
|
|
8738
8814
|
name?: string | null;
|
|
8739
8815
|
description?: string | null;
|
|
8740
8816
|
externalUrl?: string | null;
|
|
@@ -8997,7 +9073,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
8997
9073
|
productV1Seller: {
|
|
8998
9074
|
__typename?: "ProductV1Seller";
|
|
8999
9075
|
id: string;
|
|
9000
|
-
defaultVersion
|
|
9076
|
+
defaultVersion: number;
|
|
9001
9077
|
name?: string | null;
|
|
9002
9078
|
description?: string | null;
|
|
9003
9079
|
externalUrl?: string | null;
|
|
@@ -9087,6 +9163,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
9087
9163
|
revokedDate?: string | null;
|
|
9088
9164
|
cancelledDate?: string | null;
|
|
9089
9165
|
completedDate?: string | null;
|
|
9166
|
+
disputedDate?: string | null;
|
|
9090
9167
|
expired: boolean;
|
|
9091
9168
|
buyer: {
|
|
9092
9169
|
__typename?: "Buyer";
|
|
@@ -9302,7 +9379,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
9302
9379
|
productV1Seller: {
|
|
9303
9380
|
__typename?: "ProductV1Seller";
|
|
9304
9381
|
id: string;
|
|
9305
|
-
defaultVersion
|
|
9382
|
+
defaultVersion: number;
|
|
9306
9383
|
name?: string | null;
|
|
9307
9384
|
description?: string | null;
|
|
9308
9385
|
externalUrl?: string | null;
|
|
@@ -9382,6 +9459,7 @@ export type GetExchangesQueryQuery = {
|
|
|
9382
9459
|
revokedDate?: string | null;
|
|
9383
9460
|
cancelledDate?: string | null;
|
|
9384
9461
|
completedDate?: string | null;
|
|
9462
|
+
disputedDate?: string | null;
|
|
9385
9463
|
expired: boolean;
|
|
9386
9464
|
buyer: {
|
|
9387
9465
|
__typename?: "Buyer";
|
|
@@ -9597,7 +9675,7 @@ export type GetExchangesQueryQuery = {
|
|
|
9597
9675
|
productV1Seller: {
|
|
9598
9676
|
__typename?: "ProductV1Seller";
|
|
9599
9677
|
id: string;
|
|
9600
|
-
defaultVersion
|
|
9678
|
+
defaultVersion: number;
|
|
9601
9679
|
name?: string | null;
|
|
9602
9680
|
description?: string | null;
|
|
9603
9681
|
externalUrl?: string | null;
|
|
@@ -9667,6 +9745,7 @@ export type ExchangeFieldsFragment = {
|
|
|
9667
9745
|
revokedDate?: string | null;
|
|
9668
9746
|
cancelledDate?: string | null;
|
|
9669
9747
|
completedDate?: string | null;
|
|
9748
|
+
disputedDate?: string | null;
|
|
9670
9749
|
expired: boolean;
|
|
9671
9750
|
buyer: { __typename?: "Buyer"; id: string; wallet: string; active: boolean };
|
|
9672
9751
|
seller: {
|
|
@@ -9873,7 +9952,7 @@ export type ExchangeFieldsFragment = {
|
|
|
9873
9952
|
productV1Seller: {
|
|
9874
9953
|
__typename?: "ProductV1Seller";
|
|
9875
9954
|
id: string;
|
|
9876
|
-
defaultVersion
|
|
9955
|
+
defaultVersion: number;
|
|
9877
9956
|
name?: string | null;
|
|
9878
9957
|
description?: string | null;
|
|
9879
9958
|
externalUrl?: string | null;
|
|
@@ -9942,6 +10021,7 @@ export type BaseExchangeFieldsFragment = {
|
|
|
9942
10021
|
revokedDate?: string | null;
|
|
9943
10022
|
cancelledDate?: string | null;
|
|
9944
10023
|
completedDate?: string | null;
|
|
10024
|
+
disputedDate?: string | null;
|
|
9945
10025
|
expired: boolean;
|
|
9946
10026
|
};
|
|
9947
10027
|
|
|
@@ -10242,7 +10322,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
10242
10322
|
productV1Seller: {
|
|
10243
10323
|
__typename?: "ProductV1Seller";
|
|
10244
10324
|
id: string;
|
|
10245
|
-
defaultVersion
|
|
10325
|
+
defaultVersion: number;
|
|
10246
10326
|
name?: string | null;
|
|
10247
10327
|
description?: string | null;
|
|
10248
10328
|
externalUrl?: string | null;
|
|
@@ -10546,7 +10626,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
10546
10626
|
productV1Seller: {
|
|
10547
10627
|
__typename?: "ProductV1Seller";
|
|
10548
10628
|
id: string;
|
|
10549
|
-
defaultVersion
|
|
10629
|
+
defaultVersion: number;
|
|
10550
10630
|
name?: string | null;
|
|
10551
10631
|
description?: string | null;
|
|
10552
10632
|
externalUrl?: string | null;
|
|
@@ -10836,7 +10916,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
10836
10916
|
productV1Seller: {
|
|
10837
10917
|
__typename?: "ProductV1Seller";
|
|
10838
10918
|
id: string;
|
|
10839
|
-
defaultVersion
|
|
10919
|
+
defaultVersion: number;
|
|
10840
10920
|
name?: string | null;
|
|
10841
10921
|
description?: string | null;
|
|
10842
10922
|
externalUrl?: string | null;
|
|
@@ -11125,7 +11205,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
11125
11205
|
productV1Seller: {
|
|
11126
11206
|
__typename?: "ProductV1Seller";
|
|
11127
11207
|
id: string;
|
|
11128
|
-
defaultVersion
|
|
11208
|
+
defaultVersion: number;
|
|
11129
11209
|
name?: string | null;
|
|
11130
11210
|
description?: string | null;
|
|
11131
11211
|
externalUrl?: string | null;
|
|
@@ -11464,7 +11544,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
11464
11544
|
productV1Seller: {
|
|
11465
11545
|
__typename?: "ProductV1Seller";
|
|
11466
11546
|
id: string;
|
|
11467
|
-
defaultVersion
|
|
11547
|
+
defaultVersion: number;
|
|
11468
11548
|
name?: string | null;
|
|
11469
11549
|
description?: string | null;
|
|
11470
11550
|
externalUrl?: string | null;
|
|
@@ -11624,7 +11704,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
11624
11704
|
productV1Seller: {
|
|
11625
11705
|
__typename?: "ProductV1Seller";
|
|
11626
11706
|
id: string;
|
|
11627
|
-
defaultVersion
|
|
11707
|
+
defaultVersion: number;
|
|
11628
11708
|
name?: string | null;
|
|
11629
11709
|
description?: string | null;
|
|
11630
11710
|
externalUrl?: string | null;
|
|
@@ -11893,7 +11973,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
11893
11973
|
productV1Seller: {
|
|
11894
11974
|
__typename?: "ProductV1Seller";
|
|
11895
11975
|
id: string;
|
|
11896
|
-
defaultVersion
|
|
11976
|
+
defaultVersion: number;
|
|
11897
11977
|
name?: string | null;
|
|
11898
11978
|
description?: string | null;
|
|
11899
11979
|
externalUrl?: string | null;
|
|
@@ -12053,7 +12133,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
12053
12133
|
productV1Seller: {
|
|
12054
12134
|
__typename?: "ProductV1Seller";
|
|
12055
12135
|
id: string;
|
|
12056
|
-
defaultVersion
|
|
12136
|
+
defaultVersion: number;
|
|
12057
12137
|
name?: string | null;
|
|
12058
12138
|
description?: string | null;
|
|
12059
12139
|
externalUrl?: string | null;
|
|
@@ -12308,7 +12388,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
12308
12388
|
productV1Seller: {
|
|
12309
12389
|
__typename?: "ProductV1Seller";
|
|
12310
12390
|
id: string;
|
|
12311
|
-
defaultVersion
|
|
12391
|
+
defaultVersion: number;
|
|
12312
12392
|
name?: string | null;
|
|
12313
12393
|
description?: string | null;
|
|
12314
12394
|
externalUrl?: string | null;
|
|
@@ -12468,7 +12548,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
12468
12548
|
productV1Seller: {
|
|
12469
12549
|
__typename?: "ProductV1Seller";
|
|
12470
12550
|
id: string;
|
|
12471
|
-
defaultVersion
|
|
12551
|
+
defaultVersion: number;
|
|
12472
12552
|
name?: string | null;
|
|
12473
12553
|
description?: string | null;
|
|
12474
12554
|
externalUrl?: string | null;
|
|
@@ -12722,7 +12802,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12722
12802
|
productV1Seller: {
|
|
12723
12803
|
__typename?: "ProductV1Seller";
|
|
12724
12804
|
id: string;
|
|
12725
|
-
defaultVersion
|
|
12805
|
+
defaultVersion: number;
|
|
12726
12806
|
name?: string | null;
|
|
12727
12807
|
description?: string | null;
|
|
12728
12808
|
externalUrl?: string | null;
|
|
@@ -12882,7 +12962,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
12882
12962
|
productV1Seller: {
|
|
12883
12963
|
__typename?: "ProductV1Seller";
|
|
12884
12964
|
id: string;
|
|
12885
|
-
defaultVersion
|
|
12965
|
+
defaultVersion: number;
|
|
12886
12966
|
name?: string | null;
|
|
12887
12967
|
description?: string | null;
|
|
12888
12968
|
externalUrl?: string | null;
|
|
@@ -13048,7 +13128,7 @@ export type BaseProductV1VariationFieldsFragment = {
|
|
|
13048
13128
|
export type BaseProductV1SellerFieldsFragment = {
|
|
13049
13129
|
__typename?: "ProductV1Seller";
|
|
13050
13130
|
id: string;
|
|
13051
|
-
defaultVersion
|
|
13131
|
+
defaultVersion: number;
|
|
13052
13132
|
name?: string | null;
|
|
13053
13133
|
description?: string | null;
|
|
13054
13134
|
externalUrl?: string | null;
|
|
@@ -13202,6 +13282,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
13202
13282
|
revokedDate?: string | null;
|
|
13203
13283
|
cancelledDate?: string | null;
|
|
13204
13284
|
completedDate?: string | null;
|
|
13285
|
+
disputedDate?: string | null;
|
|
13205
13286
|
expired: boolean;
|
|
13206
13287
|
}>;
|
|
13207
13288
|
seller: {
|
|
@@ -13373,7 +13454,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
13373
13454
|
productV1Seller: {
|
|
13374
13455
|
__typename?: "ProductV1Seller";
|
|
13375
13456
|
id: string;
|
|
13376
|
-
defaultVersion
|
|
13457
|
+
defaultVersion: number;
|
|
13377
13458
|
name?: string | null;
|
|
13378
13459
|
description?: string | null;
|
|
13379
13460
|
externalUrl?: string | null;
|
|
@@ -13481,6 +13562,7 @@ export type GetOffersQueryQuery = {
|
|
|
13481
13562
|
revokedDate?: string | null;
|
|
13482
13563
|
cancelledDate?: string | null;
|
|
13483
13564
|
completedDate?: string | null;
|
|
13565
|
+
disputedDate?: string | null;
|
|
13484
13566
|
expired: boolean;
|
|
13485
13567
|
}>;
|
|
13486
13568
|
seller: {
|
|
@@ -13652,7 +13734,7 @@ export type GetOffersQueryQuery = {
|
|
|
13652
13734
|
productV1Seller: {
|
|
13653
13735
|
__typename?: "ProductV1Seller";
|
|
13654
13736
|
id: string;
|
|
13655
|
-
defaultVersion
|
|
13737
|
+
defaultVersion: number;
|
|
13656
13738
|
name?: string | null;
|
|
13657
13739
|
description?: string | null;
|
|
13658
13740
|
externalUrl?: string | null;
|
|
@@ -13744,6 +13826,7 @@ export type OfferFieldsFragment = {
|
|
|
13744
13826
|
revokedDate?: string | null;
|
|
13745
13827
|
cancelledDate?: string | null;
|
|
13746
13828
|
completedDate?: string | null;
|
|
13829
|
+
disputedDate?: string | null;
|
|
13747
13830
|
expired: boolean;
|
|
13748
13831
|
}>;
|
|
13749
13832
|
seller: {
|
|
@@ -13915,7 +13998,7 @@ export type OfferFieldsFragment = {
|
|
|
13915
13998
|
productV1Seller: {
|
|
13916
13999
|
__typename?: "ProductV1Seller";
|
|
13917
14000
|
id: string;
|
|
13918
|
-
defaultVersion
|
|
14001
|
+
defaultVersion: number;
|
|
13919
14002
|
name?: string | null;
|
|
13920
14003
|
description?: string | null;
|
|
13921
14004
|
externalUrl?: string | null;
|
|
@@ -14163,7 +14246,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
14163
14246
|
productV1Seller: {
|
|
14164
14247
|
__typename?: "ProductV1Seller";
|
|
14165
14248
|
id: string;
|
|
14166
|
-
defaultVersion
|
|
14249
|
+
defaultVersion: number;
|
|
14167
14250
|
name?: string | null;
|
|
14168
14251
|
description?: string | null;
|
|
14169
14252
|
externalUrl?: string | null;
|
|
@@ -14557,6 +14640,7 @@ export const BaseExchangeFieldsFragmentDoc = gql`
|
|
|
14557
14640
|
revokedDate
|
|
14558
14641
|
cancelledDate
|
|
14559
14642
|
completedDate
|
|
14643
|
+
disputedDate
|
|
14560
14644
|
expired
|
|
14561
14645
|
}
|
|
14562
14646
|
`;
|
|
@@ -14655,6 +14739,10 @@ export const BaseDisputeFieldsFragmentDoc = gql`
|
|
|
14655
14739
|
disputedDate
|
|
14656
14740
|
escalatedDate
|
|
14657
14741
|
finalizedDate
|
|
14742
|
+
retractedDate
|
|
14743
|
+
resolvedDate
|
|
14744
|
+
decidedDate
|
|
14745
|
+
refusedDate
|
|
14658
14746
|
timeout
|
|
14659
14747
|
exchange {
|
|
14660
14748
|
...BaseExchangeFields
|