@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.
@@ -399,12 +399,16 @@ export declare type Dispute = {
399
399
  buyer: Buyer;
400
400
  buyerPercent: Scalars["BigInt"];
401
401
  complaint: Scalars["String"];
402
+ decidedDate?: Maybe<Scalars["BigInt"]>;
402
403
  disputedDate: Scalars["BigInt"];
403
404
  escalatedDate?: Maybe<Scalars["BigInt"]>;
404
405
  exchange: Exchange;
405
406
  exchangeId: Scalars["BigInt"];
406
407
  finalizedDate?: Maybe<Scalars["BigInt"]>;
407
408
  id: Scalars["ID"];
409
+ refusedDate?: Maybe<Scalars["BigInt"]>;
410
+ resolvedDate?: Maybe<Scalars["BigInt"]>;
411
+ retractedDate?: Maybe<Scalars["BigInt"]>;
408
412
  seller: Seller;
409
413
  state: DisputeState;
410
414
  timeout: Scalars["BigInt"];
@@ -771,6 +775,14 @@ export declare type Dispute_Filter = {
771
775
  complaint_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
772
776
  complaint_starts_with?: InputMaybe<Scalars["String"]>;
773
777
  complaint_starts_with_nocase?: InputMaybe<Scalars["String"]>;
778
+ decidedDate?: InputMaybe<Scalars["BigInt"]>;
779
+ decidedDate_gt?: InputMaybe<Scalars["BigInt"]>;
780
+ decidedDate_gte?: InputMaybe<Scalars["BigInt"]>;
781
+ decidedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
782
+ decidedDate_lt?: InputMaybe<Scalars["BigInt"]>;
783
+ decidedDate_lte?: InputMaybe<Scalars["BigInt"]>;
784
+ decidedDate_not?: InputMaybe<Scalars["BigInt"]>;
785
+ decidedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
774
786
  disputedDate?: InputMaybe<Scalars["BigInt"]>;
775
787
  disputedDate_gt?: InputMaybe<Scalars["BigInt"]>;
776
788
  disputedDate_gte?: InputMaybe<Scalars["BigInt"]>;
@@ -831,6 +843,30 @@ export declare type Dispute_Filter = {
831
843
  id_lte?: InputMaybe<Scalars["ID"]>;
832
844
  id_not?: InputMaybe<Scalars["ID"]>;
833
845
  id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
846
+ refusedDate?: InputMaybe<Scalars["BigInt"]>;
847
+ refusedDate_gt?: InputMaybe<Scalars["BigInt"]>;
848
+ refusedDate_gte?: InputMaybe<Scalars["BigInt"]>;
849
+ refusedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
850
+ refusedDate_lt?: InputMaybe<Scalars["BigInt"]>;
851
+ refusedDate_lte?: InputMaybe<Scalars["BigInt"]>;
852
+ refusedDate_not?: InputMaybe<Scalars["BigInt"]>;
853
+ refusedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
854
+ resolvedDate?: InputMaybe<Scalars["BigInt"]>;
855
+ resolvedDate_gt?: InputMaybe<Scalars["BigInt"]>;
856
+ resolvedDate_gte?: InputMaybe<Scalars["BigInt"]>;
857
+ resolvedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
858
+ resolvedDate_lt?: InputMaybe<Scalars["BigInt"]>;
859
+ resolvedDate_lte?: InputMaybe<Scalars["BigInt"]>;
860
+ resolvedDate_not?: InputMaybe<Scalars["BigInt"]>;
861
+ resolvedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
862
+ retractedDate?: InputMaybe<Scalars["BigInt"]>;
863
+ retractedDate_gt?: InputMaybe<Scalars["BigInt"]>;
864
+ retractedDate_gte?: InputMaybe<Scalars["BigInt"]>;
865
+ retractedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
866
+ retractedDate_lt?: InputMaybe<Scalars["BigInt"]>;
867
+ retractedDate_lte?: InputMaybe<Scalars["BigInt"]>;
868
+ retractedDate_not?: InputMaybe<Scalars["BigInt"]>;
869
+ retractedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
834
870
  seller?: InputMaybe<Scalars["String"]>;
835
871
  seller_contains?: InputMaybe<Scalars["String"]>;
836
872
  seller_contains_nocase?: InputMaybe<Scalars["String"]>;
@@ -868,12 +904,16 @@ export declare enum Dispute_OrderBy {
868
904
  Buyer = "buyer",
869
905
  BuyerPercent = "buyerPercent",
870
906
  Complaint = "complaint",
907
+ DecidedDate = "decidedDate",
871
908
  DisputedDate = "disputedDate",
872
909
  EscalatedDate = "escalatedDate",
873
910
  Exchange = "exchange",
874
911
  ExchangeId = "exchangeId",
875
912
  FinalizedDate = "finalizedDate",
876
913
  Id = "id",
914
+ RefusedDate = "refusedDate",
915
+ ResolvedDate = "resolvedDate",
916
+ RetractedDate = "retractedDate",
877
917
  Seller = "seller",
878
918
  State = "state",
879
919
  Timeout = "timeout"
@@ -885,6 +925,7 @@ export declare type Exchange = {
885
925
  committedDate: Scalars["BigInt"];
886
926
  completedDate?: Maybe<Scalars["BigInt"]>;
887
927
  disputed: Scalars["Boolean"];
928
+ disputedDate?: Maybe<Scalars["BigInt"]>;
888
929
  expired: Scalars["Boolean"];
889
930
  finalizedDate?: Maybe<Scalars["BigInt"]>;
890
931
  id: Scalars["ID"];
@@ -1062,6 +1103,14 @@ export declare type Exchange_Filter = {
1062
1103
  completedDate_not?: InputMaybe<Scalars["BigInt"]>;
1063
1104
  completedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
1064
1105
  disputed?: InputMaybe<Scalars["Boolean"]>;
1106
+ disputedDate?: InputMaybe<Scalars["BigInt"]>;
1107
+ disputedDate_gt?: InputMaybe<Scalars["BigInt"]>;
1108
+ disputedDate_gte?: InputMaybe<Scalars["BigInt"]>;
1109
+ disputedDate_in?: InputMaybe<Array<Scalars["BigInt"]>>;
1110
+ disputedDate_lt?: InputMaybe<Scalars["BigInt"]>;
1111
+ disputedDate_lte?: InputMaybe<Scalars["BigInt"]>;
1112
+ disputedDate_not?: InputMaybe<Scalars["BigInt"]>;
1113
+ disputedDate_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
1065
1114
  disputed_in?: InputMaybe<Array<Scalars["Boolean"]>>;
1066
1115
  disputed_not?: InputMaybe<Scalars["Boolean"]>;
1067
1116
  disputed_not_in?: InputMaybe<Array<Scalars["Boolean"]>>;
@@ -1160,6 +1209,7 @@ export declare enum Exchange_OrderBy {
1160
1209
  CommittedDate = "committedDate",
1161
1210
  CompletedDate = "completedDate",
1162
1211
  Disputed = "disputed",
1212
+ DisputedDate = "disputedDate",
1163
1213
  Expired = "expired",
1164
1214
  FinalizedDate = "finalizedDate",
1165
1215
  Id = "id",
@@ -3922,7 +3972,7 @@ export declare enum ProductV1Section_OrderBy {
3922
3972
  export declare type ProductV1Seller = {
3923
3973
  __typename?: "ProductV1Seller";
3924
3974
  contactLinks?: Maybe<Array<ProductV1SellerContactLink>>;
3925
- defaultVersion?: Maybe<Scalars["Int"]>;
3975
+ defaultVersion: Scalars["Int"];
3926
3976
  description?: Maybe<Scalars["String"]>;
3927
3977
  externalUrl?: Maybe<Scalars["String"]>;
3928
3978
  id: Scalars["ID"];
@@ -5721,7 +5771,7 @@ export declare type GetSellerByIdQueryQuery = {
5721
5771
  productV1Seller: {
5722
5772
  __typename?: "ProductV1Seller";
5723
5773
  id: string;
5724
- defaultVersion?: number | null;
5774
+ defaultVersion: number;
5725
5775
  name?: string | null;
5726
5776
  description?: string | null;
5727
5777
  externalUrl?: string | null;
@@ -5787,6 +5837,7 @@ export declare type GetSellerByIdQueryQuery = {
5787
5837
  revokedDate?: string | null;
5788
5838
  cancelledDate?: string | null;
5789
5839
  completedDate?: string | null;
5840
+ disputedDate?: string | null;
5790
5841
  expired: boolean;
5791
5842
  }>;
5792
5843
  } | null;
@@ -6037,7 +6088,7 @@ export declare type GetSellersQueryQuery = {
6037
6088
  productV1Seller: {
6038
6089
  __typename?: "ProductV1Seller";
6039
6090
  id: string;
6040
- defaultVersion?: number | null;
6091
+ defaultVersion: number;
6041
6092
  name?: string | null;
6042
6093
  description?: string | null;
6043
6094
  externalUrl?: string | null;
@@ -6103,6 +6154,7 @@ export declare type GetSellersQueryQuery = {
6103
6154
  revokedDate?: string | null;
6104
6155
  cancelledDate?: string | null;
6105
6156
  completedDate?: string | null;
6157
+ disputedDate?: string | null;
6106
6158
  expired: boolean;
6107
6159
  }>;
6108
6160
  }>;
@@ -6155,6 +6207,7 @@ export declare type GetBuyerByIdQueryQuery = {
6155
6207
  revokedDate?: string | null;
6156
6208
  cancelledDate?: string | null;
6157
6209
  completedDate?: string | null;
6210
+ disputedDate?: string | null;
6158
6211
  expired: boolean;
6159
6212
  }>;
6160
6213
  } | null;
@@ -6217,6 +6270,7 @@ export declare type GetBuyersQueryQuery = {
6217
6270
  revokedDate?: string | null;
6218
6271
  cancelledDate?: string | null;
6219
6272
  completedDate?: string | null;
6273
+ disputedDate?: string | null;
6220
6274
  expired: boolean;
6221
6275
  }>;
6222
6276
  }>;
@@ -6437,7 +6491,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
6437
6491
  productV1Seller: {
6438
6492
  __typename?: "ProductV1Seller";
6439
6493
  id: string;
6440
- defaultVersion?: number | null;
6494
+ defaultVersion: number;
6441
6495
  name?: string | null;
6442
6496
  description?: string | null;
6443
6497
  externalUrl?: string | null;
@@ -6728,7 +6782,7 @@ export declare type GetDisputeResolversQueryQuery = {
6728
6782
  productV1Seller: {
6729
6783
  __typename?: "ProductV1Seller";
6730
6784
  id: string;
6731
- defaultVersion?: number | null;
6785
+ defaultVersion: number;
6732
6786
  name?: string | null;
6733
6787
  description?: string | null;
6734
6788
  externalUrl?: string | null;
@@ -7018,7 +7072,7 @@ export declare type SellerFieldsFragment = {
7018
7072
  productV1Seller: {
7019
7073
  __typename?: "ProductV1Seller";
7020
7074
  id: string;
7021
- defaultVersion?: number | null;
7075
+ defaultVersion: number;
7022
7076
  name?: string | null;
7023
7077
  description?: string | null;
7024
7078
  externalUrl?: string | null;
@@ -7084,6 +7138,7 @@ export declare type SellerFieldsFragment = {
7084
7138
  revokedDate?: string | null;
7085
7139
  cancelledDate?: string | null;
7086
7140
  completedDate?: string | null;
7141
+ disputedDate?: string | null;
7087
7142
  expired: boolean;
7088
7143
  }>;
7089
7144
  };
@@ -7130,6 +7185,7 @@ export declare type BuyerFieldsFragment = {
7130
7185
  revokedDate?: string | null;
7131
7186
  cancelledDate?: string | null;
7132
7187
  completedDate?: string | null;
7188
+ disputedDate?: string | null;
7133
7189
  expired: boolean;
7134
7190
  }>;
7135
7191
  };
@@ -7344,7 +7400,7 @@ export declare type DisputeResolverFieldsFragment = {
7344
7400
  productV1Seller: {
7345
7401
  __typename?: "ProductV1Seller";
7346
7402
  id: string;
7347
- defaultVersion?: number | null;
7403
+ defaultVersion: number;
7348
7404
  name?: string | null;
7349
7405
  description?: string | null;
7350
7406
  externalUrl?: string | null;
@@ -7485,6 +7541,10 @@ export declare type GetDisputeByIdQueryQuery = {
7485
7541
  disputedDate: string;
7486
7542
  escalatedDate?: string | null;
7487
7543
  finalizedDate?: string | null;
7544
+ retractedDate?: string | null;
7545
+ resolvedDate?: string | null;
7546
+ decidedDate?: string | null;
7547
+ refusedDate?: string | null;
7488
7548
  timeout: string;
7489
7549
  exchange: {
7490
7550
  __typename?: "Exchange";
@@ -7498,6 +7558,7 @@ export declare type GetDisputeByIdQueryQuery = {
7498
7558
  revokedDate?: string | null;
7499
7559
  cancelledDate?: string | null;
7500
7560
  completedDate?: string | null;
7561
+ disputedDate?: string | null;
7501
7562
  expired: boolean;
7502
7563
  };
7503
7564
  seller: {
@@ -7539,6 +7600,10 @@ export declare type GetDisputesQueryQuery = {
7539
7600
  disputedDate: string;
7540
7601
  escalatedDate?: string | null;
7541
7602
  finalizedDate?: string | null;
7603
+ retractedDate?: string | null;
7604
+ resolvedDate?: string | null;
7605
+ decidedDate?: string | null;
7606
+ refusedDate?: string | null;
7542
7607
  timeout: string;
7543
7608
  exchange: {
7544
7609
  __typename?: "Exchange";
@@ -7552,6 +7617,7 @@ export declare type GetDisputesQueryQuery = {
7552
7617
  revokedDate?: string | null;
7553
7618
  cancelledDate?: string | null;
7554
7619
  completedDate?: string | null;
7620
+ disputedDate?: string | null;
7555
7621
  expired: boolean;
7556
7622
  };
7557
7623
  seller: {
@@ -7584,6 +7650,10 @@ export declare type DisputeFieldsFragment = {
7584
7650
  disputedDate: string;
7585
7651
  escalatedDate?: string | null;
7586
7652
  finalizedDate?: string | null;
7653
+ retractedDate?: string | null;
7654
+ resolvedDate?: string | null;
7655
+ decidedDate?: string | null;
7656
+ refusedDate?: string | null;
7587
7657
  timeout: string;
7588
7658
  exchange: {
7589
7659
  __typename?: "Exchange";
@@ -7597,6 +7667,7 @@ export declare type DisputeFieldsFragment = {
7597
7667
  revokedDate?: string | null;
7598
7668
  cancelledDate?: string | null;
7599
7669
  completedDate?: string | null;
7670
+ disputedDate?: string | null;
7600
7671
  expired: boolean;
7601
7672
  };
7602
7673
  seller: {
@@ -7628,6 +7699,10 @@ export declare type BaseDisputeFieldsFragment = {
7628
7699
  disputedDate: string;
7629
7700
  escalatedDate?: string | null;
7630
7701
  finalizedDate?: string | null;
7702
+ retractedDate?: string | null;
7703
+ resolvedDate?: string | null;
7704
+ decidedDate?: string | null;
7705
+ refusedDate?: string | null;
7631
7706
  timeout: string;
7632
7707
  exchange: {
7633
7708
  __typename?: "Exchange";
@@ -7641,6 +7716,7 @@ export declare type BaseDisputeFieldsFragment = {
7641
7716
  revokedDate?: string | null;
7642
7717
  cancelledDate?: string | null;
7643
7718
  completedDate?: string | null;
7719
+ disputedDate?: string | null;
7644
7720
  expired: boolean;
7645
7721
  };
7646
7722
  seller: {
@@ -7885,7 +7961,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
7885
7961
  productV1Seller: {
7886
7962
  __typename?: "ProductV1Seller";
7887
7963
  id: string;
7888
- defaultVersion?: number | null;
7964
+ defaultVersion: number;
7889
7965
  name?: string | null;
7890
7966
  description?: string | null;
7891
7967
  externalUrl?: string | null;
@@ -8169,7 +8245,7 @@ export declare type GetExchangeTokensQueryQuery = {
8169
8245
  productV1Seller: {
8170
8246
  __typename?: "ProductV1Seller";
8171
8247
  id: string;
8172
- defaultVersion?: number | null;
8248
+ defaultVersion: number;
8173
8249
  name?: string | null;
8174
8250
  description?: string | null;
8175
8251
  externalUrl?: string | null;
@@ -8432,7 +8508,7 @@ export declare type ExchangeTokenFieldsFragment = {
8432
8508
  productV1Seller: {
8433
8509
  __typename?: "ProductV1Seller";
8434
8510
  id: string;
8435
- defaultVersion?: number | null;
8511
+ defaultVersion: number;
8436
8512
  name?: string | null;
8437
8513
  description?: string | null;
8438
8514
  externalUrl?: string | null;
@@ -8518,6 +8594,7 @@ export declare type GetExchangeByIdQueryQuery = {
8518
8594
  revokedDate?: string | null;
8519
8595
  cancelledDate?: string | null;
8520
8596
  completedDate?: string | null;
8597
+ disputedDate?: string | null;
8521
8598
  expired: boolean;
8522
8599
  buyer: {
8523
8600
  __typename?: "Buyer";
@@ -8731,7 +8808,7 @@ export declare type GetExchangeByIdQueryQuery = {
8731
8808
  productV1Seller: {
8732
8809
  __typename?: "ProductV1Seller";
8733
8810
  id: string;
8734
- defaultVersion?: number | null;
8811
+ defaultVersion: number;
8735
8812
  name?: string | null;
8736
8813
  description?: string | null;
8737
8814
  externalUrl?: string | null;
@@ -8808,6 +8885,7 @@ export declare type GetExchangesQueryQuery = {
8808
8885
  revokedDate?: string | null;
8809
8886
  cancelledDate?: string | null;
8810
8887
  completedDate?: string | null;
8888
+ disputedDate?: string | null;
8811
8889
  expired: boolean;
8812
8890
  buyer: {
8813
8891
  __typename?: "Buyer";
@@ -9021,7 +9099,7 @@ export declare type GetExchangesQueryQuery = {
9021
9099
  productV1Seller: {
9022
9100
  __typename?: "ProductV1Seller";
9023
9101
  id: string;
9024
- defaultVersion?: number | null;
9102
+ defaultVersion: number;
9025
9103
  name?: string | null;
9026
9104
  description?: string | null;
9027
9105
  externalUrl?: string | null;
@@ -9089,6 +9167,7 @@ export declare type ExchangeFieldsFragment = {
9089
9167
  revokedDate?: string | null;
9090
9168
  cancelledDate?: string | null;
9091
9169
  completedDate?: string | null;
9170
+ disputedDate?: string | null;
9092
9171
  expired: boolean;
9093
9172
  buyer: {
9094
9173
  __typename?: "Buyer";
@@ -9302,7 +9381,7 @@ export declare type ExchangeFieldsFragment = {
9302
9381
  productV1Seller: {
9303
9382
  __typename?: "ProductV1Seller";
9304
9383
  id: string;
9305
- defaultVersion?: number | null;
9384
+ defaultVersion: number;
9306
9385
  name?: string | null;
9307
9386
  description?: string | null;
9308
9387
  externalUrl?: string | null;
@@ -9369,6 +9448,7 @@ export declare type BaseExchangeFieldsFragment = {
9369
9448
  revokedDate?: string | null;
9370
9449
  cancelledDate?: string | null;
9371
9450
  completedDate?: string | null;
9451
+ disputedDate?: string | null;
9372
9452
  expired: boolean;
9373
9453
  };
9374
9454
  export declare type GetFundsByIdQueryVariables = Exact<{
@@ -9659,7 +9739,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
9659
9739
  productV1Seller: {
9660
9740
  __typename?: "ProductV1Seller";
9661
9741
  id: string;
9662
- defaultVersion?: number | null;
9742
+ defaultVersion: number;
9663
9743
  name?: string | null;
9664
9744
  description?: string | null;
9665
9745
  externalUrl?: string | null;
@@ -9958,7 +10038,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
9958
10038
  productV1Seller: {
9959
10039
  __typename?: "ProductV1Seller";
9960
10040
  id: string;
9961
- defaultVersion?: number | null;
10041
+ defaultVersion: number;
9962
10042
  name?: string | null;
9963
10043
  description?: string | null;
9964
10044
  externalUrl?: string | null;
@@ -10248,7 +10328,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
10248
10328
  productV1Seller: {
10249
10329
  __typename?: "ProductV1Seller";
10250
10330
  id: string;
10251
- defaultVersion?: number | null;
10331
+ defaultVersion: number;
10252
10332
  name?: string | null;
10253
10333
  description?: string | null;
10254
10334
  externalUrl?: string | null;
@@ -10537,7 +10617,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
10537
10617
  productV1Seller: {
10538
10618
  __typename?: "ProductV1Seller";
10539
10619
  id: string;
10540
- defaultVersion?: number | null;
10620
+ defaultVersion: number;
10541
10621
  name?: string | null;
10542
10622
  description?: string | null;
10543
10623
  externalUrl?: string | null;
@@ -10867,7 +10947,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
10867
10947
  productV1Seller: {
10868
10948
  __typename?: "ProductV1Seller";
10869
10949
  id: string;
10870
- defaultVersion?: number | null;
10950
+ defaultVersion: number;
10871
10951
  name?: string | null;
10872
10952
  description?: string | null;
10873
10953
  externalUrl?: string | null;
@@ -11030,7 +11110,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
11030
11110
  productV1Seller: {
11031
11111
  __typename?: "ProductV1Seller";
11032
11112
  id: string;
11033
- defaultVersion?: number | null;
11113
+ defaultVersion: number;
11034
11114
  name?: string | null;
11035
11115
  description?: string | null;
11036
11116
  externalUrl?: string | null;
@@ -11295,7 +11375,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
11295
11375
  productV1Seller: {
11296
11376
  __typename?: "ProductV1Seller";
11297
11377
  id: string;
11298
- defaultVersion?: number | null;
11378
+ defaultVersion: number;
11299
11379
  name?: string | null;
11300
11380
  description?: string | null;
11301
11381
  externalUrl?: string | null;
@@ -11458,7 +11538,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
11458
11538
  productV1Seller: {
11459
11539
  __typename?: "ProductV1Seller";
11460
11540
  id: string;
11461
- defaultVersion?: number | null;
11541
+ defaultVersion: number;
11462
11542
  name?: string | null;
11463
11543
  description?: string | null;
11464
11544
  externalUrl?: string | null;
@@ -11714,7 +11794,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
11714
11794
  productV1Seller: {
11715
11795
  __typename?: "ProductV1Seller";
11716
11796
  id: string;
11717
- defaultVersion?: number | null;
11797
+ defaultVersion: number;
11718
11798
  name?: string | null;
11719
11799
  description?: string | null;
11720
11800
  externalUrl?: string | null;
@@ -11877,7 +11957,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
11877
11957
  productV1Seller: {
11878
11958
  __typename?: "ProductV1Seller";
11879
11959
  id: string;
11880
- defaultVersion?: number | null;
11960
+ defaultVersion: number;
11881
11961
  name?: string | null;
11882
11962
  description?: string | null;
11883
11963
  externalUrl?: string | null;
@@ -12132,7 +12212,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
12132
12212
  productV1Seller: {
12133
12213
  __typename?: "ProductV1Seller";
12134
12214
  id: string;
12135
- defaultVersion?: number | null;
12215
+ defaultVersion: number;
12136
12216
  name?: string | null;
12137
12217
  description?: string | null;
12138
12218
  externalUrl?: string | null;
@@ -12295,7 +12375,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
12295
12375
  productV1Seller: {
12296
12376
  __typename?: "ProductV1Seller";
12297
12377
  id: string;
12298
- defaultVersion?: number | null;
12378
+ defaultVersion: number;
12299
12379
  name?: string | null;
12300
12380
  description?: string | null;
12301
12381
  externalUrl?: string | null;
@@ -12456,7 +12536,7 @@ export declare type BaseProductV1VariationFieldsFragment = {
12456
12536
  export declare type BaseProductV1SellerFieldsFragment = {
12457
12537
  __typename?: "ProductV1Seller";
12458
12538
  id: string;
12459
- defaultVersion?: number | null;
12539
+ defaultVersion: number;
12460
12540
  name?: string | null;
12461
12541
  description?: string | null;
12462
12542
  externalUrl?: string | null;
@@ -12607,6 +12687,7 @@ export declare type GetOfferByIdQueryQuery = {
12607
12687
  revokedDate?: string | null;
12608
12688
  cancelledDate?: string | null;
12609
12689
  completedDate?: string | null;
12690
+ disputedDate?: string | null;
12610
12691
  expired: boolean;
12611
12692
  }>;
12612
12693
  seller: {
@@ -12780,7 +12861,7 @@ export declare type GetOfferByIdQueryQuery = {
12780
12861
  productV1Seller: {
12781
12862
  __typename?: "ProductV1Seller";
12782
12863
  id: string;
12783
- defaultVersion?: number | null;
12864
+ defaultVersion: number;
12784
12865
  name?: string | null;
12785
12866
  description?: string | null;
12786
12867
  externalUrl?: string | null;
@@ -12885,6 +12966,7 @@ export declare type GetOffersQueryQuery = {
12885
12966
  revokedDate?: string | null;
12886
12967
  cancelledDate?: string | null;
12887
12968
  completedDate?: string | null;
12969
+ disputedDate?: string | null;
12888
12970
  expired: boolean;
12889
12971
  }>;
12890
12972
  seller: {
@@ -13058,7 +13140,7 @@ export declare type GetOffersQueryQuery = {
13058
13140
  productV1Seller: {
13059
13141
  __typename?: "ProductV1Seller";
13060
13142
  id: string;
13061
- defaultVersion?: number | null;
13143
+ defaultVersion: number;
13062
13144
  name?: string | null;
13063
13145
  description?: string | null;
13064
13146
  externalUrl?: string | null;
@@ -13148,6 +13230,7 @@ export declare type OfferFieldsFragment = {
13148
13230
  revokedDate?: string | null;
13149
13231
  cancelledDate?: string | null;
13150
13232
  completedDate?: string | null;
13233
+ disputedDate?: string | null;
13151
13234
  expired: boolean;
13152
13235
  }>;
13153
13236
  seller: {
@@ -13321,7 +13404,7 @@ export declare type OfferFieldsFragment = {
13321
13404
  productV1Seller: {
13322
13405
  __typename?: "ProductV1Seller";
13323
13406
  id: string;
13324
- defaultVersion?: number | null;
13407
+ defaultVersion: number;
13325
13408
  name?: string | null;
13326
13409
  description?: string | null;
13327
13410
  externalUrl?: string | null;
@@ -13569,7 +13652,7 @@ export declare type BaseOfferFieldsFragment = {
13569
13652
  productV1Seller: {
13570
13653
  __typename?: "ProductV1Seller";
13571
13654
  id: string;
13572
- defaultVersion?: number | null;
13655
+ defaultVersion: number;
13573
13656
  name?: string | null;
13574
13657
  description?: string | null;
13575
13658
  externalUrl?: string | null;