@flowio/types 11.24.101 → 11.24.103
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/api-internal.d.ts +297 -31
- package/dist/api.d.ts +81 -9
- package/package.json +2 -2
- package/src/api-internal.ts +417 -30
- package/src/api.ts +129 -6
package/src/api-internal.ts
CHANGED
|
@@ -327,7 +327,10 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
327
327
|
| 'bancontact'
|
|
328
328
|
| 'twint'
|
|
329
329
|
| 'przelewy24'
|
|
330
|
-
| 'mobilepay'
|
|
330
|
+
| 'mobilepay'
|
|
331
|
+
| 'grabpay'
|
|
332
|
+
| 'vipps'
|
|
333
|
+
| 'kcp_creditcard';
|
|
331
334
|
}
|
|
332
335
|
|
|
333
336
|
declare namespace io.flow.payment.gateway.v0.models {
|
|
@@ -702,12 +705,22 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
702
705
|
readonly reference?: string;
|
|
703
706
|
}
|
|
704
707
|
|
|
708
|
+
interface PaymentMethodDataInitGrabpay {
|
|
709
|
+
readonly type: 'init_grabpay';
|
|
710
|
+
readonly reference?: string;
|
|
711
|
+
}
|
|
712
|
+
|
|
705
713
|
interface PaymentMethodDataInitIdeal {
|
|
706
714
|
readonly type: 'init_ideal';
|
|
707
715
|
readonly issuer?: string;
|
|
708
716
|
readonly reference?: string;
|
|
709
717
|
}
|
|
710
718
|
|
|
719
|
+
interface PaymentMethodDataInitKcpCreditcard {
|
|
720
|
+
readonly type: 'init_kcp_creditcard';
|
|
721
|
+
readonly reference?: string;
|
|
722
|
+
}
|
|
723
|
+
|
|
711
724
|
interface PaymentMethodDataInitKlarna {
|
|
712
725
|
readonly type: 'init_klarna';
|
|
713
726
|
readonly reference?: string;
|
|
@@ -738,6 +751,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
738
751
|
readonly reference?: string;
|
|
739
752
|
}
|
|
740
753
|
|
|
754
|
+
interface PaymentMethodDataInitVipps {
|
|
755
|
+
readonly type: 'init_vipps';
|
|
756
|
+
readonly reference?: string;
|
|
757
|
+
}
|
|
758
|
+
|
|
741
759
|
interface PaymentMethodDataOptionLogoSvg {
|
|
742
760
|
readonly type: 'svg';
|
|
743
761
|
readonly url: string;
|
|
@@ -800,12 +818,22 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
800
818
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
801
819
|
}
|
|
802
820
|
|
|
821
|
+
interface PaymentMethodSummaryGrabpay {
|
|
822
|
+
readonly type: 'grabpay';
|
|
823
|
+
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
824
|
+
}
|
|
825
|
+
|
|
803
826
|
interface PaymentMethodSummaryIdeal {
|
|
804
827
|
readonly type: 'ideal';
|
|
805
828
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
806
829
|
readonly issuer?: string;
|
|
807
830
|
}
|
|
808
831
|
|
|
832
|
+
interface PaymentMethodSummaryKcpCreditcard {
|
|
833
|
+
readonly type: 'kcp_creditcard';
|
|
834
|
+
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
835
|
+
}
|
|
836
|
+
|
|
809
837
|
interface PaymentMethodSummaryKlarna {
|
|
810
838
|
readonly type: 'klarna';
|
|
811
839
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -836,6 +864,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
836
864
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
837
865
|
}
|
|
838
866
|
|
|
867
|
+
interface PaymentMethodSummaryVipps {
|
|
868
|
+
readonly type: 'vipps';
|
|
869
|
+
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
870
|
+
}
|
|
871
|
+
|
|
839
872
|
interface PaymentOrderDetailsLineItem {
|
|
840
873
|
readonly id?: string;
|
|
841
874
|
readonly description: string;
|
|
@@ -1020,7 +1053,10 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
1020
1053
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitTwint
|
|
1021
1054
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitPrzelewy24
|
|
1022
1055
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitMobilepay
|
|
1056
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitKcpCreditcard
|
|
1023
1057
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact
|
|
1058
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitGrabpay
|
|
1059
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitVipps
|
|
1024
1060
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay
|
|
1025
1061
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard
|
|
1026
1062
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay
|
|
@@ -1049,10 +1085,13 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
1049
1085
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal
|
|
1050
1086
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal
|
|
1051
1087
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryTwint
|
|
1088
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryVipps
|
|
1052
1089
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryPrzelewy24
|
|
1053
1090
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryMobilepay
|
|
1091
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryKcpCreditcard
|
|
1054
1092
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort
|
|
1055
|
-
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact
|
|
1093
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact
|
|
1094
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryGrabpay;
|
|
1056
1095
|
type PaymentRequestCancellationReason =
|
|
1057
1096
|
io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
1058
1097
|
type SdkAdyenV3AuthenticationToken =
|
|
@@ -1797,6 +1836,19 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1797
1836
|
| 'billing_address'
|
|
1798
1837
|
| 'number';
|
|
1799
1838
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1839
|
+
type RefundFailureCategory =
|
|
1840
|
+
| 'amount_too_high'
|
|
1841
|
+
| 'amount_too_low'
|
|
1842
|
+
| 'not_enough_balance'
|
|
1843
|
+
| 'insufficient_funds'
|
|
1844
|
+
| 'refund_period_expired'
|
|
1845
|
+
| 'dispute'
|
|
1846
|
+
| 'not_captured'
|
|
1847
|
+
| 'unsupported_payment_method'
|
|
1848
|
+
| 'unsupported_partial_refund'
|
|
1849
|
+
| 'invalid_currency'
|
|
1850
|
+
| 'card_no_longer_valid'
|
|
1851
|
+
| 'general';
|
|
1800
1852
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
1801
1853
|
type ReversalErrorCode =
|
|
1802
1854
|
| 'amount_exceeds_balance'
|
|
@@ -2515,6 +2567,8 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2515
2567
|
readonly attributes?: Record<string, string>;
|
|
2516
2568
|
readonly status?: io.flow.payment.v0.enums.RefundStatus;
|
|
2517
2569
|
readonly base?: io.flow.common.v0.models.Money;
|
|
2570
|
+
readonly failure_category?: io.flow.payment.v0.enums.RefundFailureCategory;
|
|
2571
|
+
readonly failure_psp_reason?: string;
|
|
2518
2572
|
}
|
|
2519
2573
|
|
|
2520
2574
|
interface RefundCapture {
|
|
@@ -3247,8 +3301,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
3247
3301
|
| 'it-CH'
|
|
3248
3302
|
| 'en-CH';
|
|
3249
3303
|
type RefundFailureReason =
|
|
3250
|
-
| '
|
|
3304
|
+
| 'charge_for_pending_refund_disputed'
|
|
3305
|
+
| 'declined'
|
|
3251
3306
|
| 'expired_or_canceled_card'
|
|
3307
|
+
| 'insufficient_funds'
|
|
3308
|
+
| 'lost_or_stolen_card'
|
|
3309
|
+
| 'merchant_request'
|
|
3252
3310
|
| 'unknown';
|
|
3253
3311
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
3254
3312
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
@@ -5237,7 +5295,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5237
5295
|
}
|
|
5238
5296
|
|
|
5239
5297
|
interface CanceledRecurringBilling {
|
|
5240
|
-
readonly expected_refund?: io.flow.external.paypal.v1.models.
|
|
5298
|
+
readonly expected_refund?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5241
5299
|
readonly cancellation_details?: io.flow.external.paypal.v1.models.CancellationDetails;
|
|
5242
5300
|
}
|
|
5243
5301
|
|
|
@@ -5256,7 +5314,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5256
5314
|
|
|
5257
5315
|
interface CreditNotProcessed {
|
|
5258
5316
|
readonly issue_type?: io.flow.external.paypal.v1.enums.IssueType;
|
|
5259
|
-
readonly expected_refund?: io.flow.external.paypal.v1.models.
|
|
5317
|
+
readonly expected_refund?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5260
5318
|
readonly cancellation_details?: io.flow.external.paypal.v1.models.CancellationDetails;
|
|
5261
5319
|
readonly product_details?: io.flow.external.paypal.v1.models.ProductDetails;
|
|
5262
5320
|
readonly service_details?: io.flow.external.paypal.v1.models.ServiceDetails;
|
|
@@ -5270,7 +5328,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5270
5328
|
readonly disputed_transactions: io.flow.external.paypal.v1.models.TransactionInfo[];
|
|
5271
5329
|
readonly reason: io.flow.external.paypal.v1.enums.DisputeReason;
|
|
5272
5330
|
readonly status: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
5273
|
-
readonly dispute_amount: io.flow.external.paypal.v1.models.
|
|
5331
|
+
readonly dispute_amount: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5274
5332
|
readonly fee_policy?: any /*object*/;
|
|
5275
5333
|
readonly external_reason_code?: string;
|
|
5276
5334
|
readonly dispute_outcome?: io.flow.external.paypal.v1.models.DisputeOutcome;
|
|
@@ -5289,6 +5347,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5289
5347
|
readonly supporting_info?: io.flow.external.paypal.v1.models.SupportingInfo;
|
|
5290
5348
|
readonly allowed_response_options?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
|
|
5291
5349
|
readonly links?: io.flow.external.paypal.v1.models.Link[];
|
|
5350
|
+
readonly previous_status?: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
5292
5351
|
}
|
|
5293
5352
|
|
|
5294
5353
|
interface DisputeExtension {
|
|
@@ -5307,9 +5366,14 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5307
5366
|
readonly links: io.flow.external.paypal.v1.models.Link[];
|
|
5308
5367
|
}
|
|
5309
5368
|
|
|
5369
|
+
interface DisputeMoney {
|
|
5370
|
+
readonly currency_code: string;
|
|
5371
|
+
readonly value: string;
|
|
5372
|
+
}
|
|
5373
|
+
|
|
5310
5374
|
interface DisputeOutcome {
|
|
5311
5375
|
readonly outcome_code?: io.flow.external.paypal.v1.enums.DisputeOutcomeCode;
|
|
5312
|
-
readonly amount_refunded?: io.flow.external.paypal.v1.models.
|
|
5376
|
+
readonly amount_refunded?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5313
5377
|
}
|
|
5314
5378
|
|
|
5315
5379
|
interface DisputeSummary {
|
|
@@ -5318,7 +5382,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5318
5382
|
readonly update_time: string;
|
|
5319
5383
|
readonly reason: io.flow.external.paypal.v1.enums.DisputeReason;
|
|
5320
5384
|
readonly status: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
5321
|
-
readonly dispute_amount: io.flow.external.paypal.v1.models.
|
|
5385
|
+
readonly dispute_amount: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5322
5386
|
readonly dispute_life_cycle_stage: io.flow.external.paypal.v1.enums.DisputeLifeCycleStage;
|
|
5323
5387
|
readonly links: io.flow.external.paypal.v1.models.Link[];
|
|
5324
5388
|
}
|
|
@@ -5364,7 +5428,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5364
5428
|
}
|
|
5365
5429
|
|
|
5366
5430
|
interface IncorrectTransactionAmount {
|
|
5367
|
-
readonly correct_transaction_amount?: io.flow.external.paypal.v1.models.
|
|
5431
|
+
readonly correct_transaction_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5368
5432
|
readonly correct_transaction_time?: string;
|
|
5369
5433
|
}
|
|
5370
5434
|
|
|
@@ -5384,7 +5448,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5384
5448
|
readonly item_quantity?: string;
|
|
5385
5449
|
readonly partner_transaction_id?: string;
|
|
5386
5450
|
readonly reason?: io.flow.external.paypal.v1.enums.DisputeReason;
|
|
5387
|
-
readonly dispute_amount?: io.flow.external.paypal.v1.models.
|
|
5451
|
+
readonly dispute_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5388
5452
|
readonly notes?: string;
|
|
5389
5453
|
}
|
|
5390
5454
|
|
|
@@ -5417,21 +5481,21 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5417
5481
|
}
|
|
5418
5482
|
|
|
5419
5483
|
interface Money {
|
|
5420
|
-
readonly currency_code
|
|
5421
|
-
readonly value
|
|
5484
|
+
readonly currency_code?: string;
|
|
5485
|
+
readonly value?: string;
|
|
5422
5486
|
}
|
|
5423
5487
|
|
|
5424
5488
|
interface MoneyMovement {
|
|
5425
5489
|
readonly affected_party?: io.flow.external.paypal.v1.enums.AffectedParty;
|
|
5426
|
-
readonly amount?: io.flow.external.paypal.v1.models.
|
|
5490
|
+
readonly amount?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5427
5491
|
readonly initiated_time?: string;
|
|
5428
5492
|
readonly type?: io.flow.external.paypal.v1.enums.MoneyMovementType;
|
|
5429
5493
|
readonly reason?: io.flow.external.paypal.v1.enums.MoneyMovementReason;
|
|
5430
5494
|
}
|
|
5431
5495
|
|
|
5432
5496
|
interface Offer {
|
|
5433
|
-
readonly buyer_requested_amount?: io.flow.external.paypal.v1.models.
|
|
5434
|
-
readonly seller_offered_amount?: io.flow.external.paypal.v1.models.
|
|
5497
|
+
readonly buyer_requested_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5498
|
+
readonly seller_offered_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5435
5499
|
readonly offer_type?: io.flow.external.paypal.v1.enums.OfferType;
|
|
5436
5500
|
}
|
|
5437
5501
|
|
|
@@ -5535,7 +5599,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5535
5599
|
}
|
|
5536
5600
|
|
|
5537
5601
|
interface RefundDetails {
|
|
5538
|
-
readonly allowed_refund_amount?: io.flow.external.paypal.v1.models.
|
|
5602
|
+
readonly allowed_refund_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5539
5603
|
}
|
|
5540
5604
|
|
|
5541
5605
|
interface RefundId {
|
|
@@ -5670,7 +5734,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5670
5734
|
readonly reference_id?: string;
|
|
5671
5735
|
readonly create_time?: string;
|
|
5672
5736
|
readonly transaction_status?: io.flow.external.paypal.v1.enums.TransactionStatus;
|
|
5673
|
-
readonly gross_amount?: io.flow.external.paypal.v1.models.
|
|
5737
|
+
readonly gross_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
5674
5738
|
readonly invoice_number: string;
|
|
5675
5739
|
readonly custom?: string;
|
|
5676
5740
|
readonly buyer?: io.flow.external.paypal.v1.models.Buyer;
|
|
@@ -6099,6 +6163,12 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
6099
6163
|
}
|
|
6100
6164
|
|
|
6101
6165
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
6166
|
+
interface BulkDutyUpdateValidationError {
|
|
6167
|
+
readonly message: string;
|
|
6168
|
+
readonly reason: string;
|
|
6169
|
+
readonly next_action_from: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
6170
|
+
}
|
|
6171
|
+
|
|
6102
6172
|
interface CatalogPublicationSyncValidationError {
|
|
6103
6173
|
readonly message: string;
|
|
6104
6174
|
readonly reason: string;
|
|
@@ -6326,6 +6396,15 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6326
6396
|
type Channel = 'web';
|
|
6327
6397
|
type Contract = 'RECURRING';
|
|
6328
6398
|
type DeviceChannel = 'app' | 'browser';
|
|
6399
|
+
type DisputeStatus =
|
|
6400
|
+
| 'Accepted'
|
|
6401
|
+
| 'Expired'
|
|
6402
|
+
| 'Lost'
|
|
6403
|
+
| 'Pending'
|
|
6404
|
+
| 'Responded'
|
|
6405
|
+
| 'Undefended'
|
|
6406
|
+
| 'Unresponded'
|
|
6407
|
+
| 'Won';
|
|
6329
6408
|
type EventCode =
|
|
6330
6409
|
| 'AUTHORISATION'
|
|
6331
6410
|
| 'CANCELLATION'
|
|
@@ -6389,6 +6468,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6389
6468
|
| 'ebanking_FI'
|
|
6390
6469
|
| 'gcash'
|
|
6391
6470
|
| 'giropay'
|
|
6471
|
+
| 'grabpay_MY'
|
|
6472
|
+
| 'grabpay_PH'
|
|
6473
|
+
| 'grabpay_SG'
|
|
6392
6474
|
| 'ideal'
|
|
6393
6475
|
| 'interac'
|
|
6394
6476
|
| 'jcb'
|
|
@@ -6410,6 +6492,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6410
6492
|
| 'trustpay'
|
|
6411
6493
|
| 'twint'
|
|
6412
6494
|
| 'unionpay'
|
|
6495
|
+
| 'vipps'
|
|
6413
6496
|
| 'visa'
|
|
6414
6497
|
| 'wechatpay'
|
|
6415
6498
|
| 'unknowncard';
|
|
@@ -6579,6 +6662,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6579
6662
|
readonly modificationMerchantReferences: string;
|
|
6580
6663
|
readonly chargebackSchemeCode: string;
|
|
6581
6664
|
readonly defensePeriodEndsAt?: string;
|
|
6665
|
+
readonly disputeStatus?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
6666
|
+
readonly defendable?: string;
|
|
6582
6667
|
}
|
|
6583
6668
|
|
|
6584
6669
|
interface Error {
|
|
@@ -7065,7 +7150,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7065
7150
|
}
|
|
7066
7151
|
|
|
7067
7152
|
interface GraphqlMeasurement {
|
|
7068
|
-
readonly weight
|
|
7153
|
+
readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
7069
7154
|
}
|
|
7070
7155
|
|
|
7071
7156
|
interface GraphqlOption {
|
|
@@ -8567,7 +8652,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
8567
8652
|
readonly created_at: string;
|
|
8568
8653
|
readonly notify_customer: boolean;
|
|
8569
8654
|
readonly order_id: number;
|
|
8570
|
-
readonly staff_note
|
|
8655
|
+
readonly staff_note?: string;
|
|
8571
8656
|
readonly user_id?: number;
|
|
8572
8657
|
readonly line_items: io.flow.shopify.markets.v0.models.ShopifyOrderEditLineItems;
|
|
8573
8658
|
readonly discounts: any /*object*/;
|
|
@@ -8613,6 +8698,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
8613
8698
|
}
|
|
8614
8699
|
|
|
8615
8700
|
interface ShopifyOrderLineItem {
|
|
8701
|
+
readonly current_quantity?: number;
|
|
8616
8702
|
readonly fulfillable_quantity?: number;
|
|
8617
8703
|
readonly fulfillment_status?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
|
|
8618
8704
|
readonly grams?: number;
|
|
@@ -8716,6 +8802,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
8716
8802
|
readonly location_id?: number;
|
|
8717
8803
|
readonly subtotal?: number;
|
|
8718
8804
|
readonly total_tax?: number;
|
|
8805
|
+
readonly total_tax_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
8719
8806
|
}
|
|
8720
8807
|
|
|
8721
8808
|
interface ShopifyOrderShippingLine {
|
|
@@ -8787,6 +8874,13 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
8787
8874
|
readonly payment_schedules?: io.flow.shopify.markets.v0.models.ShopifyPaymentSchedules;
|
|
8788
8875
|
}
|
|
8789
8876
|
|
|
8877
|
+
interface ShopifyProductVariantInventoryItemWrapper {
|
|
8878
|
+
readonly product_id: number;
|
|
8879
|
+
readonly variant_id: number;
|
|
8880
|
+
readonly harmonized_system_code: string;
|
|
8881
|
+
readonly country_harmonized_system_codes: io.flow.shopify.markets.v0.models.ShopifyCountryHarmonizedSystemCode[];
|
|
8882
|
+
}
|
|
8883
|
+
|
|
8790
8884
|
interface ShopifyRefund {
|
|
8791
8885
|
readonly notify_x: boolean;
|
|
8792
8886
|
readonly note?: string;
|
|
@@ -10330,6 +10424,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10330
10424
|
readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
10331
10425
|
}
|
|
10332
10426
|
|
|
10427
|
+
interface DestinationContactDetail {
|
|
10428
|
+
readonly title: string;
|
|
10429
|
+
readonly country: string;
|
|
10430
|
+
readonly import_identifier: string;
|
|
10431
|
+
}
|
|
10432
|
+
|
|
10333
10433
|
interface Discount {
|
|
10334
10434
|
readonly discriminator: 'discount';
|
|
10335
10435
|
readonly id: string;
|
|
@@ -10692,6 +10792,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10692
10792
|
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
10693
10793
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
10694
10794
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
10795
|
+
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
10695
10796
|
}
|
|
10696
10797
|
|
|
10697
10798
|
interface OrderAddress {
|
|
@@ -12498,6 +12599,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
12498
12599
|
readonly in_transit: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12499
12600
|
readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12500
12601
|
readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12602
|
+
readonly returned?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12501
12603
|
}
|
|
12502
12604
|
|
|
12503
12605
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -12941,6 +13043,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
12941
13043
|
readonly local?: io.flow.catalog.v0.models.Local;
|
|
12942
13044
|
readonly created_at?: string;
|
|
12943
13045
|
readonly updated_at?: string;
|
|
13046
|
+
readonly deleted_at?: string;
|
|
12944
13047
|
}
|
|
12945
13048
|
|
|
12946
13049
|
interface ItemAttributesPatchForm {
|
|
@@ -12958,6 +13061,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
12958
13061
|
readonly attributes?: Record<string, string>;
|
|
12959
13062
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
12960
13063
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
13064
|
+
readonly deleted_at?: string;
|
|
12961
13065
|
}
|
|
12962
13066
|
|
|
12963
13067
|
interface ItemFormOverlay {
|
|
@@ -12971,6 +13075,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
12971
13075
|
readonly attributes?: Record<string, string>;
|
|
12972
13076
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
12973
13077
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
13078
|
+
readonly deleted_at?: string;
|
|
12974
13079
|
}
|
|
12975
13080
|
|
|
12976
13081
|
interface ItemFormOverlayForm {
|
|
@@ -12983,6 +13088,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
12983
13088
|
readonly attributes?: Record<string, string>;
|
|
12984
13089
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
12985
13090
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
13091
|
+
readonly deleted_at?: string;
|
|
12986
13092
|
}
|
|
12987
13093
|
|
|
12988
13094
|
interface ItemPriceUpdateForm {
|
|
@@ -13541,7 +13647,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13541
13647
|
| 'waiting_for_in_transit'
|
|
13542
13648
|
| 'waiting_for_next_payout_date'
|
|
13543
13649
|
| 'waiting_for_tracking_info'
|
|
13544
|
-
| 'waiting_for_positive_account_balance'
|
|
13650
|
+
| 'waiting_for_positive_account_balance'
|
|
13651
|
+
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
13652
|
+
| 'account_payment_hold';
|
|
13545
13653
|
type StatementAttachmentType = 'csv';
|
|
13546
13654
|
type TransactionSource =
|
|
13547
13655
|
| 'capture'
|
|
@@ -13568,7 +13676,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13568
13676
|
| 'order_service'
|
|
13569
13677
|
| 'virtual_card_capture'
|
|
13570
13678
|
| 'virtual_card_refund'
|
|
13571
|
-
| 'failed_payout'
|
|
13679
|
+
| 'failed_payout'
|
|
13680
|
+
| 'tax_refund';
|
|
13572
13681
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
13573
13682
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
13574
13683
|
}
|
|
@@ -16187,11 +16296,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16187
16296
|
| 'accounts_with_final_statements_pending_transaction_total'
|
|
16188
16297
|
| 'edited_order_tax_amount_exceeding_transaction'
|
|
16189
16298
|
| 'edited_order_duty_amount_exceeding_transaction'
|
|
16299
|
+
| 'negative_balance_scheduled_count'
|
|
16190
16300
|
| 'negative_balance_scheduled_total'
|
|
16191
|
-
| '
|
|
16192
|
-
| '
|
|
16193
|
-
| '
|
|
16194
|
-
| '
|
|
16301
|
+
| 'negative_balance_sent_count'
|
|
16302
|
+
| 'negative_balance_sent_total'
|
|
16303
|
+
| 'negative_balance_failed_count'
|
|
16304
|
+
| 'negative_balance_failed_total'
|
|
16195
16305
|
| 'negative_debit_success_rate';
|
|
16196
16306
|
type BillingStatementAttachmentKey =
|
|
16197
16307
|
| 'invoice'
|
|
@@ -16234,7 +16344,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16234
16344
|
| 'tax'
|
|
16235
16345
|
| 'duty'
|
|
16236
16346
|
| 'trueup'
|
|
16237
|
-
| 'carrier_charge'
|
|
16347
|
+
| 'carrier_charge'
|
|
16348
|
+
| 'tax_refund';
|
|
16238
16349
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
16239
16350
|
type CalculatorEngine =
|
|
16240
16351
|
| 'flow_rate_and_rule'
|
|
@@ -16375,11 +16486,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16375
16486
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
16376
16487
|
type DisputeBillable = 'flow' | 'organization';
|
|
16377
16488
|
type DisputeCategory = 'friendly_fraud' | 'true_fraud' | 'processing_error';
|
|
16489
|
+
type DisputeDefenseOutcome = 'defended' | 'undefended' | 'undefendable';
|
|
16378
16490
|
type DisputeEvidence = 'proof_of_delivery' | 'proof_of_fulfillment' | 'other';
|
|
16379
16491
|
type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
|
|
16380
16492
|
type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
|
|
16381
16493
|
type DisputeLiability = 'flow' | 'organization';
|
|
16382
|
-
type DisputeProcessor = 'adyen' | 'paypal';
|
|
16494
|
+
type DisputeProcessor = 'adyen' | 'paypal' | 'stripe';
|
|
16383
16495
|
type DisputeReportingCategory =
|
|
16384
16496
|
| 'charge_issues'
|
|
16385
16497
|
| 'delivery'
|
|
@@ -16413,9 +16525,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16413
16525
|
| 'preferential_rate';
|
|
16414
16526
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
16415
16527
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
16528
|
+
type EldarItemType = 'digital' | 'physical';
|
|
16416
16529
|
type EmptyAttribute = 'irrelevant';
|
|
16417
16530
|
type ErpFileType = 'vendor';
|
|
16418
16531
|
type EventType =
|
|
16532
|
+
| 'adjusted_estimates_upserted'
|
|
16533
|
+
| 'adjusted_estimates_deleted'
|
|
16419
16534
|
| 'adyen_authorization_deleted'
|
|
16420
16535
|
| 'adyen_authorization_upserted'
|
|
16421
16536
|
| 'adyen_cancel_deleted'
|
|
@@ -16589,6 +16704,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16589
16704
|
| 'ftp_file_to_process_uploaded'
|
|
16590
16705
|
| 'center_defaults_upserted'
|
|
16591
16706
|
| 'center_defaults_deleted'
|
|
16707
|
+
| 'fulfillment_fallbacks_upserted'
|
|
16708
|
+
| 'fulfillment_fallbacks_deleted'
|
|
16592
16709
|
| 'pregenerated_request_event'
|
|
16593
16710
|
| 'quote_upserted'
|
|
16594
16711
|
| 'quote_deleted'
|
|
@@ -16756,6 +16873,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16756
16873
|
| 'svitlana_item_deleted'
|
|
16757
16874
|
| 'colm_item_upserted'
|
|
16758
16875
|
| 'colm_item_deleted'
|
|
16876
|
+
| 'eldar_item_upserted'
|
|
16877
|
+
| 'eldar_item_deleted'
|
|
16759
16878
|
| 'harinath_item_upserted'
|
|
16760
16879
|
| 'harinath_item_deleted'
|
|
16761
16880
|
| 'konstantin_item_upserted'
|
|
@@ -16782,6 +16901,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16782
16901
|
| 'tracking_deleted'
|
|
16783
16902
|
| 'tracking_assurance_analysis_upserted'
|
|
16784
16903
|
| 'tracking_assurance_analysis_deleted'
|
|
16904
|
+
| 'tracking_assurance_job_upserted'
|
|
16905
|
+
| 'tracking_assurance_job_deleted'
|
|
16906
|
+
| 'tracking_label_dimensions_upserted'
|
|
16907
|
+
| 'tracking_label_dimensions_deleted'
|
|
16785
16908
|
| 'tracking_request_upserted'
|
|
16786
16909
|
| 'tracking_response_upserted'
|
|
16787
16910
|
| 'user_upserted_v2'
|
|
@@ -16864,6 +16987,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16864
16987
|
| 'globale_address_repair'
|
|
16865
16988
|
| 'merchant_operations'
|
|
16866
16989
|
| 'globale_system';
|
|
16990
|
+
type LabelRequestResultOrganizationType =
|
|
16991
|
+
| 'all'
|
|
16992
|
+
| 'legacy_production'
|
|
16993
|
+
| 'managed_markets_production'
|
|
16994
|
+
| 'sandbox';
|
|
16995
|
+
type LabelRequestResultState = 'success' | 'failure';
|
|
16867
16996
|
type LabelTransactionType =
|
|
16868
16997
|
| 'adjustment'
|
|
16869
16998
|
| 'reversal'
|
|
@@ -17215,7 +17344,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17215
17344
|
| 'product_sync'
|
|
17216
17345
|
| 'webhook_registrations'
|
|
17217
17346
|
| 'channel_organization_identifier'
|
|
17218
|
-
| 'bulk_product_ingestion'
|
|
17347
|
+
| 'bulk_product_ingestion'
|
|
17348
|
+
| 'bulk_duty_update';
|
|
17219
17349
|
type ShopifyMarketsTradeSector =
|
|
17220
17350
|
| 'apparel_and_accessories'
|
|
17221
17351
|
| 'beauty_and_cosmetics'
|
|
@@ -17277,9 +17407,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17277
17407
|
| 'duty_inclusive_tax_inclusive';
|
|
17278
17408
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
17279
17409
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
17280
|
-
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
17410
|
+
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
17281
17411
|
type ThiagoItemType = 'digital' | 'physical';
|
|
17282
17412
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
17413
|
+
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
17283
17414
|
type TrackingProcessingFailureClassification =
|
|
17284
17415
|
| 'tracking_expired'
|
|
17285
17416
|
| 'expired_tracking_number_new_event'
|
|
@@ -17563,6 +17694,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17563
17694
|
readonly province_code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
17564
17695
|
}
|
|
17565
17696
|
|
|
17697
|
+
interface AdjustedEstimates {
|
|
17698
|
+
readonly id: string;
|
|
17699
|
+
readonly organization_id: string;
|
|
17700
|
+
readonly label_id: string;
|
|
17701
|
+
readonly estimates: io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
17702
|
+
}
|
|
17703
|
+
|
|
17704
|
+
interface AdjustedEstimatesDeleted {
|
|
17705
|
+
readonly discriminator: 'adjusted_estimates_deleted';
|
|
17706
|
+
readonly event_id: string;
|
|
17707
|
+
readonly timestamp: string;
|
|
17708
|
+
readonly organization: string;
|
|
17709
|
+
readonly id: string;
|
|
17710
|
+
}
|
|
17711
|
+
|
|
17712
|
+
interface AdjustedEstimatesUpserted {
|
|
17713
|
+
readonly discriminator: 'adjusted_estimates_upserted';
|
|
17714
|
+
readonly event_id: string;
|
|
17715
|
+
readonly timestamp: string;
|
|
17716
|
+
readonly organization: string;
|
|
17717
|
+
readonly adjusted_estimates: io.flow.internal.v0.models.AdjustedEstimates;
|
|
17718
|
+
}
|
|
17719
|
+
|
|
17566
17720
|
interface AdjustmentAmountFixed {
|
|
17567
17721
|
readonly discriminator: 'fixed';
|
|
17568
17722
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -18016,6 +18170,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18016
18170
|
readonly value: string;
|
|
18017
18171
|
}
|
|
18018
18172
|
|
|
18173
|
+
interface AttemptStatistics {
|
|
18174
|
+
readonly merchant_count: number;
|
|
18175
|
+
readonly amount: number;
|
|
18176
|
+
readonly failed_merchant_count: number;
|
|
18177
|
+
readonly failed_amount: number;
|
|
18178
|
+
readonly success_ratio: number;
|
|
18179
|
+
}
|
|
18180
|
+
|
|
18019
18181
|
interface AttributeLabel {
|
|
18020
18182
|
readonly value: string;
|
|
18021
18183
|
readonly unverified: boolean;
|
|
@@ -18367,6 +18529,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18367
18529
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
18368
18530
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
18369
18531
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
18532
|
+
readonly tax_refund: io.flow.common.v0.models.Price;
|
|
18370
18533
|
}
|
|
18371
18534
|
|
|
18372
18535
|
interface BillingStatementUpserted {
|
|
@@ -18524,6 +18687,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18524
18687
|
readonly actions: io.flow.internal.v0.models.SingleClassificationAction[];
|
|
18525
18688
|
}
|
|
18526
18689
|
|
|
18690
|
+
interface BulkDutyUpdateValidationError {
|
|
18691
|
+
readonly message: string;
|
|
18692
|
+
readonly reason: string;
|
|
18693
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
18694
|
+
}
|
|
18695
|
+
|
|
18527
18696
|
interface CalculatedTaxAmount {
|
|
18528
18697
|
readonly discriminator: 'calculated_tax_amount';
|
|
18529
18698
|
readonly amount: number;
|
|
@@ -19621,6 +19790,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19621
19790
|
readonly customs_description_suggestions: io.flow.internal.v0.models.CustomsDescriptionSuggestion[];
|
|
19622
19791
|
}
|
|
19623
19792
|
|
|
19793
|
+
interface ClassificationMerchant {
|
|
19794
|
+
readonly MerchantId: string;
|
|
19795
|
+
readonly PlatformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
19796
|
+
readonly Name: string;
|
|
19797
|
+
readonly DateLastUpdated?: string;
|
|
19798
|
+
readonly Order: number;
|
|
19799
|
+
}
|
|
19800
|
+
|
|
19801
|
+
interface ClassificationMerchantEnvelope {
|
|
19802
|
+
readonly messageType: string[];
|
|
19803
|
+
readonly message: io.flow.internal.v0.models.ClassificationMerchant;
|
|
19804
|
+
}
|
|
19805
|
+
|
|
19624
19806
|
interface ClassificationProduct {
|
|
19625
19807
|
readonly organization_id: string;
|
|
19626
19808
|
readonly product_id?: string;
|
|
@@ -19794,11 +19976,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19794
19976
|
readonly transaction_date: string;
|
|
19795
19977
|
readonly origin: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
19796
19978
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
19979
|
+
readonly billing_address?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
19797
19980
|
readonly service: string;
|
|
19798
19981
|
readonly flow_tracking_number: string;
|
|
19799
19982
|
readonly rex_number?: string;
|
|
19800
19983
|
readonly wee_number?: string;
|
|
19801
19984
|
readonly business_gst_numbers: string[];
|
|
19985
|
+
readonly destination_gst_numbers?: string[];
|
|
19802
19986
|
readonly vat_name: string;
|
|
19803
19987
|
readonly shipping_price: string;
|
|
19804
19988
|
readonly shipment_recipient?: string;
|
|
@@ -19821,6 +20005,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19821
20005
|
readonly show_us_outbound_signature: boolean;
|
|
19822
20006
|
readonly show_us_outbound_stamp: boolean;
|
|
19823
20007
|
readonly invoice_url?: string;
|
|
20008
|
+
readonly invoice_number?: string;
|
|
19824
20009
|
}
|
|
19825
20010
|
|
|
19826
20011
|
interface CommercialInvoiceInternalDeleted {
|
|
@@ -20434,7 +20619,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20434
20619
|
interface Dispute {
|
|
20435
20620
|
readonly id: string;
|
|
20436
20621
|
readonly organization_id: string;
|
|
20437
|
-
readonly order
|
|
20622
|
+
readonly order?: io.flow.internal.v0.models.DisputeOrderReference;
|
|
20438
20623
|
readonly authorization: io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
20439
20624
|
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
20440
20625
|
readonly key: string;
|
|
@@ -20443,9 +20628,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20443
20628
|
readonly category: io.flow.internal.v0.enums.DisputeCategory;
|
|
20444
20629
|
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
20445
20630
|
readonly reason: string;
|
|
20631
|
+
readonly code?: string;
|
|
20446
20632
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20447
20633
|
readonly liability: io.flow.internal.v0.enums.DisputeLiability;
|
|
20448
20634
|
readonly billable: io.flow.internal.v0.enums.DisputeBillable;
|
|
20635
|
+
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
20449
20636
|
readonly details: io.flow.internal.v0.unions.DisputeDetails;
|
|
20450
20637
|
readonly issued_at: string;
|
|
20451
20638
|
readonly expires_at?: string;
|
|
@@ -20465,6 +20652,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20465
20652
|
readonly id: string;
|
|
20466
20653
|
}
|
|
20467
20654
|
|
|
20655
|
+
interface DisputeDetail {
|
|
20656
|
+
readonly authorization: io.flow.internal.v0.models.SearchAuthorization;
|
|
20657
|
+
readonly dispute: io.flow.internal.v0.models.Dispute;
|
|
20658
|
+
}
|
|
20659
|
+
|
|
20468
20660
|
interface DisputeDetailsAdyen {
|
|
20469
20661
|
readonly discriminator: 'adyen';
|
|
20470
20662
|
readonly psp_reference: string;
|
|
@@ -20476,6 +20668,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20476
20668
|
readonly original_transaction_id: string;
|
|
20477
20669
|
readonly transaction_invoice_id: string;
|
|
20478
20670
|
readonly case_id: string;
|
|
20671
|
+
readonly dispute_channel?: string;
|
|
20479
20672
|
}
|
|
20480
20673
|
|
|
20481
20674
|
interface DisputeDetailsStripe {
|
|
@@ -20515,6 +20708,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20515
20708
|
readonly id: string;
|
|
20516
20709
|
}
|
|
20517
20710
|
|
|
20711
|
+
interface DisputeOverrideUpdateForm {
|
|
20712
|
+
readonly billable?: io.flow.internal.v0.enums.DisputeBillable;
|
|
20713
|
+
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
20714
|
+
readonly category?: io.flow.internal.v0.enums.DisputeCategory;
|
|
20715
|
+
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
20716
|
+
}
|
|
20717
|
+
|
|
20518
20718
|
interface DisputeStatusForm {
|
|
20519
20719
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20520
20720
|
}
|
|
@@ -20723,6 +20923,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20723
20923
|
readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
|
|
20724
20924
|
}
|
|
20725
20925
|
|
|
20926
|
+
interface EldarItem {
|
|
20927
|
+
readonly id: string;
|
|
20928
|
+
readonly number: string;
|
|
20929
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20930
|
+
readonly description?: string;
|
|
20931
|
+
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
20932
|
+
readonly added_on: string;
|
|
20933
|
+
}
|
|
20934
|
+
|
|
20935
|
+
interface EldarItemDeleted {
|
|
20936
|
+
readonly discriminator: 'eldar_item_deleted';
|
|
20937
|
+
readonly event_id: string;
|
|
20938
|
+
readonly timestamp: string;
|
|
20939
|
+
readonly id: string;
|
|
20940
|
+
}
|
|
20941
|
+
|
|
20942
|
+
interface EldarItemForm {
|
|
20943
|
+
readonly number: string;
|
|
20944
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20945
|
+
readonly description?: string;
|
|
20946
|
+
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
20947
|
+
readonly added_on: string;
|
|
20948
|
+
}
|
|
20949
|
+
|
|
20950
|
+
interface EldarItemUpserted {
|
|
20951
|
+
readonly discriminator: 'eldar_item_upserted';
|
|
20952
|
+
readonly event_id: string;
|
|
20953
|
+
readonly timestamp: string;
|
|
20954
|
+
readonly item: io.flow.internal.v0.models.EldarItem;
|
|
20955
|
+
}
|
|
20956
|
+
|
|
20726
20957
|
interface EmailForm {
|
|
20727
20958
|
readonly to: string[];
|
|
20728
20959
|
readonly cc?: string[];
|
|
@@ -21068,6 +21299,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21068
21299
|
readonly description?: string;
|
|
21069
21300
|
readonly order_number?: string;
|
|
21070
21301
|
readonly raw_carrier_event_code?: string;
|
|
21302
|
+
readonly aggregator_status_code?: string;
|
|
21071
21303
|
readonly created_at?: string;
|
|
21072
21304
|
}
|
|
21073
21305
|
|
|
@@ -21822,6 +22054,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21822
22054
|
readonly id: string;
|
|
21823
22055
|
}
|
|
21824
22056
|
|
|
22057
|
+
interface FulfillmentFallbacks {
|
|
22058
|
+
readonly id: string;
|
|
22059
|
+
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
22060
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
22061
|
+
readonly location?: io.flow.common.v0.models.Address;
|
|
22062
|
+
}
|
|
22063
|
+
|
|
22064
|
+
interface FulfillmentFallbacksDeleted {
|
|
22065
|
+
readonly discriminator: 'fulfillment_fallbacks_deleted';
|
|
22066
|
+
readonly event_id: string;
|
|
22067
|
+
readonly timestamp: string;
|
|
22068
|
+
readonly organization: string;
|
|
22069
|
+
readonly id: string;
|
|
22070
|
+
}
|
|
22071
|
+
|
|
22072
|
+
interface FulfillmentFallbacksUpserted {
|
|
22073
|
+
readonly discriminator: 'fulfillment_fallbacks_upserted';
|
|
22074
|
+
readonly event_id: string;
|
|
22075
|
+
readonly timestamp: string;
|
|
22076
|
+
readonly organization: string;
|
|
22077
|
+
readonly fulfillment_fallbacks: io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
22078
|
+
}
|
|
22079
|
+
|
|
21825
22080
|
interface FulfillmentInternalExperienceReference {
|
|
21826
22081
|
readonly id: string;
|
|
21827
22082
|
readonly key: string;
|
|
@@ -22968,6 +23223,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22968
23223
|
readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
|
|
22969
23224
|
}
|
|
22970
23225
|
|
|
23226
|
+
interface LabelRequestResult {
|
|
23227
|
+
readonly id: string;
|
|
23228
|
+
readonly created_at: string;
|
|
23229
|
+
readonly state: io.flow.internal.v0.enums.LabelRequestResultState;
|
|
23230
|
+
readonly organization_id: string;
|
|
23231
|
+
readonly order_number: string;
|
|
23232
|
+
readonly label_request_method: io.flow.label.v0.enums.LabelRequestMethod;
|
|
23233
|
+
readonly carrier_id?: string;
|
|
23234
|
+
readonly carrier_tracking_number?: string;
|
|
23235
|
+
readonly url?: string;
|
|
23236
|
+
readonly error?: string;
|
|
23237
|
+
readonly suggested_responsibility?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
23238
|
+
readonly origin_country?: string;
|
|
23239
|
+
readonly destination_country?: string;
|
|
23240
|
+
}
|
|
23241
|
+
|
|
22971
23242
|
interface LabelSummary {
|
|
22972
23243
|
readonly id: string;
|
|
22973
23244
|
readonly commercial_invoice?: string;
|
|
@@ -23959,6 +24230,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23959
24230
|
readonly duty: number;
|
|
23960
24231
|
readonly freight: number;
|
|
23961
24232
|
readonly total: number;
|
|
24233
|
+
readonly tax_refund?: number;
|
|
23962
24234
|
}
|
|
23963
24235
|
|
|
23964
24236
|
interface MerchantUpserted {
|
|
@@ -24050,6 +24322,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24050
24322
|
readonly percent: number;
|
|
24051
24323
|
}
|
|
24052
24324
|
|
|
24325
|
+
interface NegativeDebitMetrics {
|
|
24326
|
+
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24327
|
+
readonly second_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24328
|
+
readonly third_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24329
|
+
}
|
|
24330
|
+
|
|
24053
24331
|
interface NextBillingStatement {
|
|
24054
24332
|
readonly date: string;
|
|
24055
24333
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -24326,6 +24604,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24326
24604
|
readonly created_at: string;
|
|
24327
24605
|
readonly updated_at: string;
|
|
24328
24606
|
readonly shopify_order_id?: string;
|
|
24607
|
+
readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
|
|
24329
24608
|
}
|
|
24330
24609
|
|
|
24331
24610
|
interface OrderFulfillmentDeleted {
|
|
@@ -24519,6 +24798,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24519
24798
|
readonly resolved_at?: string;
|
|
24520
24799
|
readonly last_failure?: io.flow.internal.v0.models.LastFailureSummary;
|
|
24521
24800
|
readonly sla_breach_at?: string;
|
|
24801
|
+
readonly capabilities_at_creation?: io.flow.internal.v0.enums.LogisticsCapability[];
|
|
24802
|
+
readonly first_globale_address_repair_failure_at?: string;
|
|
24522
24803
|
}
|
|
24523
24804
|
|
|
24524
24805
|
interface OrderValidationDeleted {
|
|
@@ -26540,6 +26821,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26540
26821
|
readonly tax_inclusive?: boolean;
|
|
26541
26822
|
readonly duty_inclusive?: boolean;
|
|
26542
26823
|
readonly manual_payment?: boolean;
|
|
26824
|
+
readonly partial_fulfillment?: boolean;
|
|
26825
|
+
readonly partial_refund?: boolean;
|
|
26543
26826
|
}
|
|
26544
26827
|
|
|
26545
26828
|
interface ReportingFx {
|
|
@@ -26585,6 +26868,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26585
26868
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
26586
26869
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
26587
26870
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
26871
|
+
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
26588
26872
|
}
|
|
26589
26873
|
|
|
26590
26874
|
interface ReportingMonetaryValue {
|
|
@@ -28752,6 +29036,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28752
29036
|
readonly analysis: io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
28753
29037
|
}
|
|
28754
29038
|
|
|
29039
|
+
interface TrackingAssuranceJob {
|
|
29040
|
+
readonly id: string;
|
|
29041
|
+
readonly created_at: string;
|
|
29042
|
+
}
|
|
29043
|
+
|
|
29044
|
+
interface TrackingAssuranceJobDeleted {
|
|
29045
|
+
readonly discriminator: 'tracking_assurance_job_deleted';
|
|
29046
|
+
readonly event_id: string;
|
|
29047
|
+
readonly timestamp: string;
|
|
29048
|
+
readonly id: string;
|
|
29049
|
+
}
|
|
29050
|
+
|
|
29051
|
+
interface TrackingAssuranceJobUpserted {
|
|
29052
|
+
readonly discriminator: 'tracking_assurance_job_upserted';
|
|
29053
|
+
readonly event_id: string;
|
|
29054
|
+
readonly timestamp: string;
|
|
29055
|
+
readonly job: io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
29056
|
+
}
|
|
29057
|
+
|
|
28755
29058
|
interface TrackingDebugForceTransitForm {
|
|
28756
29059
|
readonly description: string;
|
|
28757
29060
|
}
|
|
@@ -28795,6 +29098,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28795
29098
|
readonly tracking_label: io.flow.internal.v0.models.ExportTrackingLabel;
|
|
28796
29099
|
}
|
|
28797
29100
|
|
|
29101
|
+
interface TrackingLabelDimensions {
|
|
29102
|
+
readonly id: string;
|
|
29103
|
+
readonly organization_id: string;
|
|
29104
|
+
readonly tracking_label_id: string;
|
|
29105
|
+
readonly source: io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
29106
|
+
readonly created_at: string;
|
|
29107
|
+
readonly dimensions: io.flow.common.v0.models.Dimensions;
|
|
29108
|
+
}
|
|
29109
|
+
|
|
29110
|
+
interface TrackingLabelDimensionsDeleted {
|
|
29111
|
+
readonly discriminator: 'tracking_label_dimensions_deleted';
|
|
29112
|
+
readonly event_id: string;
|
|
29113
|
+
readonly timestamp: string;
|
|
29114
|
+
readonly organization: string;
|
|
29115
|
+
readonly id: string;
|
|
29116
|
+
}
|
|
29117
|
+
|
|
29118
|
+
interface TrackingLabelDimensionsUpserted {
|
|
29119
|
+
readonly discriminator: 'tracking_label_dimensions_upserted';
|
|
29120
|
+
readonly event_id: string;
|
|
29121
|
+
readonly timestamp: string;
|
|
29122
|
+
readonly organization: string;
|
|
29123
|
+
readonly tracking_label_dimensions: io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
29124
|
+
}
|
|
29125
|
+
|
|
28798
29126
|
interface TrackingLabelEventDeletedV2 {
|
|
28799
29127
|
readonly discriminator: 'tracking_label_event_deleted_v2';
|
|
28800
29128
|
readonly event_id: string;
|
|
@@ -29269,6 +29597,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29269
29597
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
29270
29598
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
29271
29599
|
type Event =
|
|
29600
|
+
| io.flow.internal.v0.models.AdjustedEstimatesUpserted
|
|
29601
|
+
| io.flow.internal.v0.models.AdjustedEstimatesDeleted
|
|
29272
29602
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
29273
29603
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
29274
29604
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -29442,6 +29772,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29442
29772
|
| io.flow.internal.v0.models.FtpFileToProcessUploaded
|
|
29443
29773
|
| io.flow.internal.v0.models.CenterDefaultsUpserted
|
|
29444
29774
|
| io.flow.internal.v0.models.CenterDefaultsDeleted
|
|
29775
|
+
| io.flow.internal.v0.models.FulfillmentFallbacksUpserted
|
|
29776
|
+
| io.flow.internal.v0.models.FulfillmentFallbacksDeleted
|
|
29445
29777
|
| io.flow.internal.v0.models.PregeneratedRequestEvent
|
|
29446
29778
|
| io.flow.internal.v0.models.QuoteUpserted
|
|
29447
29779
|
| io.flow.internal.v0.models.QuoteDeleted
|
|
@@ -29609,6 +29941,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29609
29941
|
| io.flow.internal.v0.models.SvitlanaItemDeleted
|
|
29610
29942
|
| io.flow.internal.v0.models.ColmItemUpserted
|
|
29611
29943
|
| io.flow.internal.v0.models.ColmItemDeleted
|
|
29944
|
+
| io.flow.internal.v0.models.EldarItemUpserted
|
|
29945
|
+
| io.flow.internal.v0.models.EldarItemDeleted
|
|
29612
29946
|
| io.flow.internal.v0.models.HarinathItemUpserted
|
|
29613
29947
|
| io.flow.internal.v0.models.HarinathItemDeleted
|
|
29614
29948
|
| io.flow.internal.v0.models.KonstantinItemUpserted
|
|
@@ -29635,6 +29969,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29635
29969
|
| io.flow.internal.v0.models.TrackingDeleted
|
|
29636
29970
|
| io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted
|
|
29637
29971
|
| io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted
|
|
29972
|
+
| io.flow.internal.v0.models.TrackingAssuranceJobUpserted
|
|
29973
|
+
| io.flow.internal.v0.models.TrackingAssuranceJobDeleted
|
|
29974
|
+
| io.flow.internal.v0.models.TrackingLabelDimensionsUpserted
|
|
29975
|
+
| io.flow.internal.v0.models.TrackingLabelDimensionsDeleted
|
|
29638
29976
|
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
29639
29977
|
| io.flow.internal.v0.models.TrackingResponseUpserted
|
|
29640
29978
|
| io.flow.internal.v0.models.UserUpsertedV2
|
|
@@ -29922,6 +30260,11 @@ export type AddressConfigurationSettingForm =
|
|
|
29922
30260
|
io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
29923
30261
|
export type AddressConfigurationSettingProvinceCode =
|
|
29924
30262
|
io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
30263
|
+
export type AdjustedEstimates = io.flow.internal.v0.models.AdjustedEstimates;
|
|
30264
|
+
export type AdjustedEstimatesDeleted =
|
|
30265
|
+
io.flow.internal.v0.models.AdjustedEstimatesDeleted;
|
|
30266
|
+
export type AdjustedEstimatesUpserted =
|
|
30267
|
+
io.flow.internal.v0.models.AdjustedEstimatesUpserted;
|
|
29925
30268
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
29926
30269
|
export type AdjustmentAmountFixed =
|
|
29927
30270
|
io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -30038,6 +30381,7 @@ export type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
|
30038
30381
|
export type ApplePayAuthorizationPayload =
|
|
30039
30382
|
io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
30040
30383
|
export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
30384
|
+
export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
30041
30385
|
export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
30042
30386
|
export type AuthenticationForm = io.flow.internal.v0.models.AuthenticationForm;
|
|
30043
30387
|
export type AuthorizationBundle =
|
|
@@ -30191,6 +30535,8 @@ export type BrowserBundlePaymentMethods =
|
|
|
30191
30535
|
io.flow.internal.v0.models.BrowserBundlePaymentMethods;
|
|
30192
30536
|
export type BulkClassificationAction =
|
|
30193
30537
|
io.flow.internal.v0.models.BulkClassificationAction;
|
|
30538
|
+
export type BulkDutyUpdateValidationError =
|
|
30539
|
+
io.flow.internal.v0.models.BulkDutyUpdateValidationError;
|
|
30194
30540
|
export type CalculatedTaxAmount =
|
|
30195
30541
|
io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
30196
30542
|
export type CalculationStampingLineItem =
|
|
@@ -30493,6 +30839,10 @@ export type ClassificationJudgementForm =
|
|
|
30493
30839
|
io.flow.internal.v0.unions.ClassificationJudgementForm;
|
|
30494
30840
|
export type ClassificationLabelAttribute =
|
|
30495
30841
|
io.flow.internal.v0.unions.ClassificationLabelAttribute;
|
|
30842
|
+
export type ClassificationMerchant =
|
|
30843
|
+
io.flow.internal.v0.models.ClassificationMerchant;
|
|
30844
|
+
export type ClassificationMerchantEnvelope =
|
|
30845
|
+
io.flow.internal.v0.models.ClassificationMerchantEnvelope;
|
|
30496
30846
|
export type ClassificationPlatform =
|
|
30497
30847
|
io.flow.internal.v0.enums.ClassificationPlatform;
|
|
30498
30848
|
export type ClassificationProduct =
|
|
@@ -30711,7 +31061,10 @@ export type DisputeAuthorizationReference =
|
|
|
30711
31061
|
io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
30712
31062
|
export type DisputeBillable = io.flow.internal.v0.enums.DisputeBillable;
|
|
30713
31063
|
export type DisputeCategory = io.flow.internal.v0.enums.DisputeCategory;
|
|
31064
|
+
export type DisputeDefenseOutcome =
|
|
31065
|
+
io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
30714
31066
|
export type DisputeDeleted = io.flow.internal.v0.models.DisputeDeleted;
|
|
31067
|
+
export type DisputeDetail = io.flow.internal.v0.models.DisputeDetail;
|
|
30715
31068
|
export type DisputeDetails = io.flow.internal.v0.unions.DisputeDetails;
|
|
30716
31069
|
export type DisputeDetailsAdyen =
|
|
30717
31070
|
io.flow.internal.v0.models.DisputeDetailsAdyen;
|
|
@@ -30732,6 +31085,8 @@ export type DisputeOrderReference =
|
|
|
30732
31085
|
io.flow.internal.v0.models.DisputeOrderReference;
|
|
30733
31086
|
export type DisputeOrganizationReference =
|
|
30734
31087
|
io.flow.internal.v0.models.DisputeOrganizationReference;
|
|
31088
|
+
export type DisputeOverrideUpdateForm =
|
|
31089
|
+
io.flow.internal.v0.models.DisputeOverrideUpdateForm;
|
|
30735
31090
|
export type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
|
|
30736
31091
|
export type DisputeReportingCategory =
|
|
30737
31092
|
io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
@@ -30785,6 +31140,11 @@ export type DutyTransactionDeleted =
|
|
|
30785
31140
|
export type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
|
|
30786
31141
|
export type DutyTransactionUpserted =
|
|
30787
31142
|
io.flow.internal.v0.models.DutyTransactionUpserted;
|
|
31143
|
+
export type EldarItem = io.flow.internal.v0.models.EldarItem;
|
|
31144
|
+
export type EldarItemDeleted = io.flow.internal.v0.models.EldarItemDeleted;
|
|
31145
|
+
export type EldarItemForm = io.flow.internal.v0.models.EldarItemForm;
|
|
31146
|
+
export type EldarItemType = io.flow.internal.v0.enums.EldarItemType;
|
|
31147
|
+
export type EldarItemUpserted = io.flow.internal.v0.models.EldarItemUpserted;
|
|
30788
31148
|
export type EmailForm = io.flow.internal.v0.models.EmailForm;
|
|
30789
31149
|
export type EmailModificationForm =
|
|
30790
31150
|
io.flow.internal.v0.models.EmailModificationForm;
|
|
@@ -31024,6 +31384,12 @@ export type FulfillmentBusiness =
|
|
|
31024
31384
|
export type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
31025
31385
|
export type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
31026
31386
|
export type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
31387
|
+
export type FulfillmentFallbacks =
|
|
31388
|
+
io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
31389
|
+
export type FulfillmentFallbacksDeleted =
|
|
31390
|
+
io.flow.internal.v0.models.FulfillmentFallbacksDeleted;
|
|
31391
|
+
export type FulfillmentFallbacksUpserted =
|
|
31392
|
+
io.flow.internal.v0.models.FulfillmentFallbacksUpserted;
|
|
31027
31393
|
export type FulfillmentInternalExperienceReference =
|
|
31028
31394
|
io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
31029
31395
|
export type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
@@ -31330,6 +31696,11 @@ export type LabelRequestErrorHandlingResponsibility =
|
|
|
31330
31696
|
io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
31331
31697
|
export type LabelRequestErrorUpserted =
|
|
31332
31698
|
io.flow.internal.v0.models.LabelRequestErrorUpserted;
|
|
31699
|
+
export type LabelRequestResult = io.flow.internal.v0.models.LabelRequestResult;
|
|
31700
|
+
export type LabelRequestResultOrganizationType =
|
|
31701
|
+
io.flow.internal.v0.enums.LabelRequestResultOrganizationType;
|
|
31702
|
+
export type LabelRequestResultState =
|
|
31703
|
+
io.flow.internal.v0.enums.LabelRequestResultState;
|
|
31333
31704
|
export type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
31334
31705
|
export type LabelSurchargeForm = io.flow.internal.v0.models.LabelSurchargeForm;
|
|
31335
31706
|
export type LabelSurchargeSingleForm =
|
|
@@ -31616,6 +31987,8 @@ export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
|
31616
31987
|
export type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
|
|
31617
31988
|
export type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
|
|
31618
31989
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
31990
|
+
export type NegativeDebitMetrics =
|
|
31991
|
+
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
31619
31992
|
export type NextBillingStatement =
|
|
31620
31993
|
io.flow.internal.v0.models.NextBillingStatement;
|
|
31621
31994
|
export type NoCalculatedTaxAmount =
|
|
@@ -32874,6 +33247,12 @@ export type TrackingAssuranceAnalysisDeleted =
|
|
|
32874
33247
|
io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted;
|
|
32875
33248
|
export type TrackingAssuranceAnalysisUpserted =
|
|
32876
33249
|
io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted;
|
|
33250
|
+
export type TrackingAssuranceJob =
|
|
33251
|
+
io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
33252
|
+
export type TrackingAssuranceJobDeleted =
|
|
33253
|
+
io.flow.internal.v0.models.TrackingAssuranceJobDeleted;
|
|
33254
|
+
export type TrackingAssuranceJobUpserted =
|
|
33255
|
+
io.flow.internal.v0.models.TrackingAssuranceJobUpserted;
|
|
32877
33256
|
export type TrackingDebugForceTransitForm =
|
|
32878
33257
|
io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
32879
33258
|
export type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
@@ -32887,6 +33266,14 @@ export type TrackingIntegrationType =
|
|
|
32887
33266
|
io.flow.internal.v0.enums.TrackingIntegrationType;
|
|
32888
33267
|
export type TrackingLabelDeleted =
|
|
32889
33268
|
io.flow.internal.v0.models.TrackingLabelDeleted;
|
|
33269
|
+
export type TrackingLabelDimensions =
|
|
33270
|
+
io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
33271
|
+
export type TrackingLabelDimensionsDeleted =
|
|
33272
|
+
io.flow.internal.v0.models.TrackingLabelDimensionsDeleted;
|
|
33273
|
+
export type TrackingLabelDimensionsSource =
|
|
33274
|
+
io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
33275
|
+
export type TrackingLabelDimensionsUpserted =
|
|
33276
|
+
io.flow.internal.v0.models.TrackingLabelDimensionsUpserted;
|
|
32890
33277
|
export type TrackingLabelEventDeletedV2 =
|
|
32891
33278
|
io.flow.internal.v0.models.TrackingLabelEventDeletedV2;
|
|
32892
33279
|
export type TrackingLabelEventUpsertedV2 =
|