@flowio/api-internal-prop-types 9.24.127 → 9.24.129
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/lib/api-internal.d.ts +83 -12
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +83 -12
- package/src/api-internal.js +84 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-prop-types",
|
|
3
|
-
"version": "9.24.
|
|
3
|
+
"version": "9.24.129",
|
|
4
4
|
"description": "PropType validators that work with internal Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"prop-types": "^15.7.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "b4b0cd6a13ae636625754fd06a00ff8f0016498e"
|
|
34
34
|
}
|
package/src/api-internal.d.ts
CHANGED
|
@@ -8162,7 +8162,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
8162
8162
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
8163
8163
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
8164
8164
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
8165
|
-
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
8165
|
+
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
8166
8166
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
8167
8167
|
}
|
|
8168
8168
|
|
|
@@ -8237,9 +8237,9 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8237
8237
|
readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
8238
8238
|
}
|
|
8239
8239
|
|
|
8240
|
-
interface
|
|
8240
|
+
interface ChannelOrganizationDomains {
|
|
8241
8241
|
readonly 'internal': string;
|
|
8242
|
-
readonly '
|
|
8242
|
+
readonly 'external': string;
|
|
8243
8243
|
}
|
|
8244
8244
|
|
|
8245
8245
|
interface ChannelOrganizationInstallation {
|
|
@@ -8253,7 +8253,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8253
8253
|
}
|
|
8254
8254
|
|
|
8255
8255
|
interface ChannelOrganizationMetadata {
|
|
8256
|
-
readonly 'domain': io.flow.channel.internal.v0.models.
|
|
8256
|
+
readonly 'domain': io.flow.channel.internal.v0.models.ChannelOrganizationDomains;
|
|
8257
8257
|
readonly 'token': string;
|
|
8258
8258
|
}
|
|
8259
8259
|
|
|
@@ -12754,6 +12754,25 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12754
12754
|
interface TransactionMetadataTaxDuty {
|
|
12755
12755
|
readonly 'discriminator': 'transaction_tax_duty';
|
|
12756
12756
|
readonly 'reason_code': io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
|
|
12757
|
+
readonly 'local_currency'?: string;
|
|
12758
|
+
readonly 'actual'?: io.flow.billing.v0.models.TransactionMetadataTaxDutyActual;
|
|
12759
|
+
readonly 'estimate'?: io.flow.billing.v0.models.TransactionMetadataTaxDutyEstimate;
|
|
12760
|
+
readonly 'delta'?: io.flow.billing.v0.models.TransactionMetadataTaxDutyDelta;
|
|
12761
|
+
}
|
|
12762
|
+
|
|
12763
|
+
interface TransactionMetadataTaxDutyActual {
|
|
12764
|
+
readonly 'base'?: number;
|
|
12765
|
+
readonly 'local'?: number;
|
|
12766
|
+
}
|
|
12767
|
+
|
|
12768
|
+
interface TransactionMetadataTaxDutyDelta {
|
|
12769
|
+
readonly 'base'?: number;
|
|
12770
|
+
readonly 'local'?: number;
|
|
12771
|
+
}
|
|
12772
|
+
|
|
12773
|
+
interface TransactionMetadataTaxDutyEstimate {
|
|
12774
|
+
readonly 'base'?: number;
|
|
12775
|
+
readonly 'local'?: number;
|
|
12757
12776
|
}
|
|
12758
12777
|
|
|
12759
12778
|
interface TransactionMetadataTrueup {
|
|
@@ -13498,12 +13517,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13498
13517
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
13499
13518
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
13500
13519
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
13501
|
-
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
13520
|
+
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
13502
13521
|
type ChannelTransactionTriggerType = 'capture' | 'order';
|
|
13503
13522
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing' | 'order';
|
|
13504
13523
|
type ChapterCheckStatus = 'apparel_like' | 'similar' | 'does_not_match';
|
|
13505
13524
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
13506
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge';
|
|
13525
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge' | 'fuel_surcharge' | 'delivery_area_surcharge';
|
|
13507
13526
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
13508
13527
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
13509
13528
|
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
@@ -13622,7 +13641,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13622
13641
|
type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
|
|
13623
13642
|
type OrganizationRestrictionRiskLevel = '5' | '15';
|
|
13624
13643
|
type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
|
|
13625
|
-
type OrganizationSource = '
|
|
13644
|
+
type OrganizationSource = 'smb' | 'enterprise';
|
|
13626
13645
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
13627
13646
|
type Owner = 'flow' | 'organization';
|
|
13628
13647
|
type PaymentShortUrlDiscriminator = 'adyen_3ds2';
|
|
@@ -13657,7 +13676,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13657
13676
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
13658
13677
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
13659
13678
|
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
|
|
13660
|
-
type RestrictionOrganizationSource = '
|
|
13679
|
+
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
13661
13680
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
13662
13681
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
13663
13682
|
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
@@ -14491,6 +14510,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14491
14510
|
interface AttributeRule {
|
|
14492
14511
|
readonly 'restriction_attribute_rules': io.flow.internal.v0.models.RestrictionAttributeRule[];
|
|
14493
14512
|
readonly 'default_result'?: io.flow.internal.v0.enums.RestrictionAttributeResult;
|
|
14513
|
+
readonly 'require_msds'?: boolean;
|
|
14494
14514
|
}
|
|
14495
14515
|
|
|
14496
14516
|
interface AuthenticationForm {
|
|
@@ -15672,9 +15692,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15672
15692
|
readonly 'channel_order_summary': io.flow.internal.v0.models.ChannelOrderSummary;
|
|
15673
15693
|
}
|
|
15674
15694
|
|
|
15675
|
-
interface
|
|
15695
|
+
interface ChannelOrganizationDomains {
|
|
15676
15696
|
readonly 'internal': string;
|
|
15677
|
-
readonly '
|
|
15697
|
+
readonly 'external': string;
|
|
15678
15698
|
}
|
|
15679
15699
|
|
|
15680
15700
|
interface ChannelOrganizationIdentifier {
|
|
@@ -15710,7 +15730,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15710
15730
|
}
|
|
15711
15731
|
|
|
15712
15732
|
interface ChannelOrganizationMetadata {
|
|
15713
|
-
readonly 'domain': io.flow.internal.v0.models.
|
|
15733
|
+
readonly 'domain': io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
15714
15734
|
readonly 'token': string;
|
|
15715
15735
|
}
|
|
15716
15736
|
|
|
@@ -15772,6 +15792,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15772
15792
|
readonly 'timestamp'?: string;
|
|
15773
15793
|
}
|
|
15774
15794
|
|
|
15795
|
+
interface ChannelShop {
|
|
15796
|
+
readonly 'id': string;
|
|
15797
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
15798
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
15799
|
+
readonly 'external_id': string;
|
|
15800
|
+
readonly 'name': string;
|
|
15801
|
+
readonly 'domains': io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
15802
|
+
}
|
|
15803
|
+
|
|
15804
|
+
interface ChannelShopForm {
|
|
15805
|
+
readonly 'channel_id': string;
|
|
15806
|
+
readonly 'external_id': string;
|
|
15807
|
+
readonly 'name': string;
|
|
15808
|
+
readonly 'domains': io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
15809
|
+
readonly 'tokens': io.flow.internal.v0.models.Tokens;
|
|
15810
|
+
}
|
|
15811
|
+
|
|
15775
15812
|
interface ChannelTransaction {
|
|
15776
15813
|
readonly 'discriminator': 'channel_transaction';
|
|
15777
15814
|
readonly 'transaction': io.flow.internal.v0.models.TransactionReference;
|
|
@@ -19698,6 +19735,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19698
19735
|
readonly 'processing': number;
|
|
19699
19736
|
readonly 'rate_lock': number;
|
|
19700
19737
|
readonly 'transfer': number;
|
|
19738
|
+
readonly 'product_fee'?: number;
|
|
19739
|
+
readonly 'estimated_tax'?: number;
|
|
19740
|
+
readonly 'estimated_duty'?: number;
|
|
19741
|
+
readonly 'estimated_duties_and_taxes'?: number;
|
|
19742
|
+
readonly 'td_fx_diff'?: number;
|
|
19701
19743
|
readonly 'total': number;
|
|
19702
19744
|
}
|
|
19703
19745
|
|
|
@@ -21489,6 +21531,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21489
21531
|
readonly 'item': string;
|
|
21490
21532
|
}
|
|
21491
21533
|
|
|
21534
|
+
interface PriceInclusivity {
|
|
21535
|
+
readonly 'tax'?: boolean;
|
|
21536
|
+
readonly 'duty'?: boolean;
|
|
21537
|
+
}
|
|
21538
|
+
|
|
21492
21539
|
interface PrioritizedCenterReference {
|
|
21493
21540
|
readonly 'center_key': string;
|
|
21494
21541
|
readonly 'position': number;
|
|
@@ -22375,6 +22422,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22375
22422
|
readonly 'destination_country'?: number;
|
|
22376
22423
|
readonly 'usd': number;
|
|
22377
22424
|
readonly 'eur': number;
|
|
22425
|
+
readonly 'guaranteed'?: number;
|
|
22426
|
+
readonly 'spot'?: number;
|
|
22378
22427
|
}
|
|
22379
22428
|
|
|
22380
22429
|
interface ReportingCountry {
|
|
@@ -22420,6 +22469,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22420
22469
|
readonly 'mor': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22421
22470
|
readonly 'fx': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22422
22471
|
readonly 'sp': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22472
|
+
readonly 'product_fee'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22473
|
+
readonly 'estimated_tax'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22474
|
+
readonly 'estimated_duty'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22475
|
+
readonly 'estimated_duties_and_taxes'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22476
|
+
readonly 'td_fx_diff'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22423
22477
|
}
|
|
22424
22478
|
|
|
22425
22479
|
interface ReportingFulfillment {
|
|
@@ -22485,6 +22539,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22485
22539
|
readonly 'processing': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22486
22540
|
readonly 'rate_lock': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22487
22541
|
readonly 'transfer': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22542
|
+
readonly 'product_fee'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22543
|
+
readonly 'estimated_tax'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22544
|
+
readonly 'estimated_duty'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22545
|
+
readonly 'estimated_duties_and_taxes'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22546
|
+
readonly 'td_fx_diff'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22488
22547
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22489
22548
|
}
|
|
22490
22549
|
|
|
@@ -23171,9 +23230,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23171
23230
|
readonly 'order_total': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23172
23231
|
readonly 'shopper_breakdown': io.flow.internal.v0.models.ShopperBreakdown;
|
|
23173
23232
|
readonly 'payment': io.flow.internal.v0.models.ReportingPayment;
|
|
23233
|
+
readonly 'tax'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23234
|
+
readonly 'duty'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23174
23235
|
readonly 'fees': io.flow.internal.v0.models.ReportingFees;
|
|
23175
23236
|
readonly 'conversion_rate': io.flow.internal.v0.models.ReportingConversionRates;
|
|
23176
23237
|
readonly 'payment_is': io.flow.internal.v0.models.PaymentIs;
|
|
23238
|
+
readonly 'price_inclusivity'?: io.flow.internal.v0.models.PriceInclusivity;
|
|
23177
23239
|
readonly 'destination_country': string;
|
|
23178
23240
|
readonly 'fulfilled_at'?: string;
|
|
23179
23241
|
}
|
|
@@ -24945,6 +25007,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24945
25007
|
readonly 'timezone': string;
|
|
24946
25008
|
}
|
|
24947
25009
|
|
|
25010
|
+
interface Tokens {
|
|
25011
|
+
readonly 'webhook_signature_verification': string;
|
|
25012
|
+
readonly 'api': string;
|
|
25013
|
+
}
|
|
25014
|
+
|
|
24948
25015
|
interface TrackingAssuranceAnalysis {
|
|
24949
25016
|
readonly 'id': string;
|
|
24950
25017
|
readonly 'job_id': string;
|
|
@@ -26094,7 +26161,7 @@ export const channelOrderSummary: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26094
26161
|
export const channelOrderSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryDeleted>;
|
|
26095
26162
|
export const channelOrderSummaryFulfillmentDetails: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails>;
|
|
26096
26163
|
export const channelOrderSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryUpserted>;
|
|
26097
|
-
export const
|
|
26164
|
+
export const channelOrganizationDomains: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationDomains>;
|
|
26098
26165
|
export const channelOrganizationIdentifier: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifier>;
|
|
26099
26166
|
export const channelOrganizationIdentifierDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted>;
|
|
26100
26167
|
export const channelOrganizationIdentifierUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted>;
|
|
@@ -26112,6 +26179,8 @@ export const channelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26112
26179
|
export const channelOrganizationTokenBody: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationTokenBody>;
|
|
26113
26180
|
export const channelRateMetadataIdentity: PropTypes.Requireable<io.flow.internal.v0.models.ChannelRateMetadataIdentity>;
|
|
26114
26181
|
export const channelRateMetadataRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelRateMetadataRate>;
|
|
26182
|
+
export const channelShop: PropTypes.Requireable<io.flow.internal.v0.models.ChannelShop>;
|
|
26183
|
+
export const channelShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelShopForm>;
|
|
26115
26184
|
export const channelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransaction>;
|
|
26116
26185
|
export const channelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionDeleted>;
|
|
26117
26186
|
export const channelTransactionRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionRate>;
|
|
@@ -26831,6 +26900,7 @@ export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v
|
|
|
26831
26900
|
export const prateekItem: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItem>;
|
|
26832
26901
|
export const prateekItemForm: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItemForm>;
|
|
26833
26902
|
export const prediction: PropTypes.Requireable<io.flow.internal.v0.models.Prediction>;
|
|
26903
|
+
export const priceInclusivity: PropTypes.Requireable<io.flow.internal.v0.models.PriceInclusivity>;
|
|
26834
26904
|
export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
|
|
26835
26905
|
export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
|
|
26836
26906
|
export const processingTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransactionDeleted>;
|
|
@@ -27276,6 +27346,7 @@ export const timeToClassifyAggregatedUpserted: PropTypes.Requireable<io.flow.int
|
|
|
27276
27346
|
export const timeToClassifyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TimeToClassifyDeleted>;
|
|
27277
27347
|
export const timeToClassifyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TimeToClassifyUpserted>;
|
|
27278
27348
|
export const timeWithTimezone: PropTypes.Requireable<io.flow.internal.v0.models.TimeWithTimezone>;
|
|
27349
|
+
export const tokens: PropTypes.Requireable<io.flow.internal.v0.models.Tokens>;
|
|
27279
27350
|
export const trackingAssuranceAnalysis: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysis>;
|
|
27280
27351
|
export const trackingAssuranceAnalysisDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted>;
|
|
27281
27352
|
export const trackingAssuranceAnalysisUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted>;
|
package/src/api-internal.js
CHANGED
|
@@ -108,6 +108,21 @@ T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
|
108
108
|
|
|
109
109
|
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
110
110
|
|
|
111
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_delta'] = PropTypes.exact({
|
|
112
|
+
base: PropTypes.number,
|
|
113
|
+
local: PropTypes.number,
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_estimate'] = PropTypes.exact({
|
|
117
|
+
base: PropTypes.number,
|
|
118
|
+
local: PropTypes.number,
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_actual'] = PropTypes.exact({
|
|
122
|
+
base: PropTypes.number,
|
|
123
|
+
local: PropTypes.number,
|
|
124
|
+
});
|
|
125
|
+
|
|
111
126
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
112
127
|
id: PropTypes.string.isRequired,
|
|
113
128
|
service_id: PropTypes.string,
|
|
@@ -1459,17 +1474,17 @@ T['io.flow.partner.v0.models.partner_order_identifier'] = PropTypes.exact({
|
|
|
1459
1474
|
number: PropTypes.string.isRequired,
|
|
1460
1475
|
});
|
|
1461
1476
|
|
|
1462
|
-
T['io.flow.channel.internal.v0.models.
|
|
1477
|
+
T['io.flow.channel.internal.v0.models.channel_organization_domains'] = PropTypes.exact({
|
|
1463
1478
|
internal: PropTypes.string.isRequired,
|
|
1464
|
-
|
|
1479
|
+
external: PropTypes.string.isRequired,
|
|
1465
1480
|
});
|
|
1466
1481
|
|
|
1467
1482
|
T['io.flow.channel.internal.v0.models.channel_organization_metadata'] = PropTypes.exact({
|
|
1468
|
-
domain: T['io.flow.channel.internal.v0.models.
|
|
1483
|
+
domain: T['io.flow.channel.internal.v0.models.channel_organization_domains'].isRequired,
|
|
1469
1484
|
token: PropTypes.string.isRequired,
|
|
1470
1485
|
});
|
|
1471
1486
|
|
|
1472
|
-
T['io.flow.channel.internal.v0.enums.channel_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
1487
|
+
T['io.flow.channel.internal.v0.enums.channel_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability', 'all']);
|
|
1473
1488
|
|
|
1474
1489
|
T['io.flow.channel.internal.v0.models.channel_organization_token_body'] = PropTypes.exact({
|
|
1475
1490
|
cleartext: PropTypes.string.isRequired,
|
|
@@ -9807,6 +9822,10 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
9807
9822
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
|
|
9808
9823
|
discriminator: PropTypes.oneOf(['transaction_tax_duty']).isRequired,
|
|
9809
9824
|
reason_code: T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'].isRequired,
|
|
9825
|
+
local_currency: PropTypes.string,
|
|
9826
|
+
actual: T['io.flow.billing.v0.models.transaction_metadata_tax_duty_actual'],
|
|
9827
|
+
estimate: T['io.flow.billing.v0.models.transaction_metadata_tax_duty_estimate'],
|
|
9828
|
+
delta: T['io.flow.billing.v0.models.transaction_metadata_tax_duty_delta'],
|
|
9810
9829
|
});
|
|
9811
9830
|
|
|
9812
9831
|
T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'] = PropTypes.exact({
|
|
@@ -10995,6 +11014,11 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
|
|
|
10995
11014
|
|
|
10996
11015
|
T['io.flow.internal.v0.enums.sarvesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
10997
11016
|
|
|
11017
|
+
T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
|
|
11018
|
+
tax: PropTypes.bool,
|
|
11019
|
+
duty: PropTypes.bool,
|
|
11020
|
+
});
|
|
11021
|
+
|
|
10998
11022
|
T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
|
|
10999
11023
|
lvg: PropTypes.bool.isRequired,
|
|
11000
11024
|
manual: PropTypes.bool.isRequired,
|
|
@@ -11019,6 +11043,8 @@ T['io.flow.internal.v0.models.reporting_conversion_rates'] = PropTypes.exact({
|
|
|
11019
11043
|
destination_country: PropTypes.number,
|
|
11020
11044
|
usd: PropTypes.number.isRequired,
|
|
11021
11045
|
eur: PropTypes.number.isRequired,
|
|
11046
|
+
guaranteed: PropTypes.number,
|
|
11047
|
+
spot: PropTypes.number,
|
|
11022
11048
|
});
|
|
11023
11049
|
|
|
11024
11050
|
T['io.flow.internal.v0.models.reporting_currencies'] = PropTypes.exact({
|
|
@@ -11147,7 +11173,7 @@ T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTy
|
|
|
11147
11173
|
is_rule_active: PropTypes.bool,
|
|
11148
11174
|
});
|
|
11149
11175
|
|
|
11150
|
-
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['
|
|
11176
|
+
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['smb', 'enterprise']);
|
|
11151
11177
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11152
11178
|
|
|
11153
11179
|
T['io.flow.product.v0.models.product_taxonomy_value'] = PropTypes.exact({
|
|
@@ -11245,7 +11271,7 @@ T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exac
|
|
|
11245
11271
|
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
11246
11272
|
});
|
|
11247
11273
|
|
|
11248
|
-
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['
|
|
11274
|
+
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['smb', 'enterprise']);
|
|
11249
11275
|
|
|
11250
11276
|
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11251
11277
|
pending_restriction_count: PropTypes.number.isRequired,
|
|
@@ -14694,6 +14720,11 @@ T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
|
14694
14720
|
processing: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14695
14721
|
rate_lock: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14696
14722
|
transfer: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14723
|
+
product_fee: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14724
|
+
estimated_tax: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14725
|
+
estimated_duty: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14726
|
+
estimated_duties_and_taxes: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14727
|
+
td_fx_diff: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14697
14728
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14698
14729
|
});
|
|
14699
14730
|
|
|
@@ -14724,6 +14755,11 @@ T['io.flow.internal.v0.models.reporting_fees'] = PropTypes.exact({
|
|
|
14724
14755
|
mor: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14725
14756
|
fx: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14726
14757
|
sp: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14758
|
+
product_fee: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14759
|
+
estimated_tax: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14760
|
+
estimated_duty: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14761
|
+
estimated_duties_and_taxes: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14762
|
+
td_fx_diff: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14727
14763
|
});
|
|
14728
14764
|
|
|
14729
14765
|
T['io.flow.internal.v0.models.reporting_shopper_fees'] = PropTypes.exact({
|
|
@@ -14780,6 +14816,11 @@ T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
|
14780
14816
|
processing: PropTypes.number.isRequired,
|
|
14781
14817
|
rate_lock: PropTypes.number.isRequired,
|
|
14782
14818
|
transfer: PropTypes.number.isRequired,
|
|
14819
|
+
product_fee: PropTypes.number,
|
|
14820
|
+
estimated_tax: PropTypes.number,
|
|
14821
|
+
estimated_duty: PropTypes.number,
|
|
14822
|
+
estimated_duties_and_taxes: PropTypes.number,
|
|
14823
|
+
td_fx_diff: PropTypes.number,
|
|
14783
14824
|
total: PropTypes.number.isRequired,
|
|
14784
14825
|
});
|
|
14785
14826
|
|
|
@@ -16339,9 +16380,12 @@ T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
|
16339
16380
|
order_total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
16340
16381
|
shopper_breakdown: T['io.flow.internal.v0.models.shopper_breakdown'].isRequired,
|
|
16341
16382
|
payment: T['io.flow.internal.v0.models.reporting_payment'].isRequired,
|
|
16383
|
+
tax: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
16384
|
+
duty: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
16342
16385
|
fees: T['io.flow.internal.v0.models.reporting_fees'].isRequired,
|
|
16343
16386
|
conversion_rate: T['io.flow.internal.v0.models.reporting_conversion_rates'].isRequired,
|
|
16344
16387
|
payment_is: T['io.flow.internal.v0.models.payment_is'].isRequired,
|
|
16388
|
+
price_inclusivity: T['io.flow.internal.v0.models.price_inclusivity'],
|
|
16345
16389
|
destination_country: PropTypes.string.isRequired,
|
|
16346
16390
|
fulfilled_at: PropTypes.string,
|
|
16347
16391
|
});
|
|
@@ -17337,6 +17381,8 @@ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
|
|
|
17337
17381
|
'additional_handling',
|
|
17338
17382
|
'large_package_surcharge',
|
|
17339
17383
|
'peak_surcharge',
|
|
17384
|
+
'fuel_surcharge',
|
|
17385
|
+
'delivery_area_surcharge',
|
|
17340
17386
|
]);
|
|
17341
17387
|
|
|
17342
17388
|
T['io.flow.internal.v0.enums.evaluation_check_result'] = PropTypes.oneOf(['pass', 'fail']);
|
|
@@ -17408,6 +17454,11 @@ T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'] = PropTypes
|
|
|
17408
17454
|
trigger_type: T['io.flow.internal.v0.enums.channel_transaction_trigger_type'].isRequired,
|
|
17409
17455
|
});
|
|
17410
17456
|
|
|
17457
|
+
T['io.flow.internal.v0.models.tokens'] = PropTypes.exact({
|
|
17458
|
+
webhook_signature_verification: PropTypes.string.isRequired,
|
|
17459
|
+
api: PropTypes.string.isRequired,
|
|
17460
|
+
});
|
|
17461
|
+
|
|
17411
17462
|
T['io.flow.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
17412
17463
|
|
|
17413
17464
|
T['io.flow.internal.v0.models.shopify_channel_organization_token'] = PropTypes.exact({
|
|
@@ -17462,17 +17513,25 @@ T['io.flow.internal.v0.models.channel_organization_publication_owner'] = PropTyp
|
|
|
17462
17513
|
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17463
17514
|
});
|
|
17464
17515
|
|
|
17465
|
-
T['io.flow.internal.v0.models.
|
|
17516
|
+
T['io.flow.internal.v0.models.channel_organization_domains'] = PropTypes.exact({
|
|
17466
17517
|
internal: PropTypes.string.isRequired,
|
|
17467
|
-
|
|
17518
|
+
external: PropTypes.string.isRequired,
|
|
17519
|
+
});
|
|
17520
|
+
|
|
17521
|
+
T['io.flow.internal.v0.models.channel_shop_form'] = PropTypes.exact({
|
|
17522
|
+
channel_id: PropTypes.string.isRequired,
|
|
17523
|
+
external_id: PropTypes.string.isRequired,
|
|
17524
|
+
name: PropTypes.string.isRequired,
|
|
17525
|
+
domains: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
|
|
17526
|
+
tokens: T['io.flow.internal.v0.models.tokens'].isRequired,
|
|
17468
17527
|
});
|
|
17469
17528
|
|
|
17470
17529
|
T['io.flow.internal.v0.models.channel_organization_metadata'] = PropTypes.exact({
|
|
17471
|
-
domain: T['io.flow.internal.v0.models.
|
|
17530
|
+
domain: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
|
|
17472
17531
|
token: PropTypes.string.isRequired,
|
|
17473
17532
|
});
|
|
17474
17533
|
|
|
17475
|
-
T['io.flow.internal.v0.enums.channel_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
17534
|
+
T['io.flow.internal.v0.enums.channel_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability', 'all']);
|
|
17476
17535
|
|
|
17477
17536
|
T['io.flow.internal.v0.models.channel_organization_token_body'] = PropTypes.exact({
|
|
17478
17537
|
cleartext: PropTypes.string.isRequired,
|
|
@@ -20718,6 +20777,7 @@ T['io.flow.internal.v0.models.restriction_attribute_rule'] = PropTypes.exact({
|
|
|
20718
20777
|
T['io.flow.internal.v0.models.attribute_rule'] = PropTypes.exact({
|
|
20719
20778
|
restriction_attribute_rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_attribute_rule']).isRequired,
|
|
20720
20779
|
default_result: T['io.flow.internal.v0.enums.restriction_attribute_result'],
|
|
20780
|
+
require_msds: PropTypes.bool,
|
|
20721
20781
|
});
|
|
20722
20782
|
|
|
20723
20783
|
T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
@@ -24004,6 +24064,15 @@ T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes
|
|
|
24004
24064
|
invoice: T['io.flow.internal.v0.models.commercial_invoice_internal'].isRequired,
|
|
24005
24065
|
});
|
|
24006
24066
|
|
|
24067
|
+
T['io.flow.internal.v0.models.channel_shop'] = PropTypes.exact({
|
|
24068
|
+
id: PropTypes.string.isRequired,
|
|
24069
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24070
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
24071
|
+
external_id: PropTypes.string.isRequired,
|
|
24072
|
+
name: PropTypes.string.isRequired,
|
|
24073
|
+
domains: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
|
|
24074
|
+
});
|
|
24075
|
+
|
|
24007
24076
|
T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
24008
24077
|
id: PropTypes.string.isRequired,
|
|
24009
24078
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -30306,7 +30375,7 @@ export const channelOrderSummary = T['io.flow.internal.v0.models.channel_order_s
|
|
|
30306
30375
|
export const channelOrderSummaryDeleted = T['io.flow.internal.v0.models.channel_order_summary_deleted'];
|
|
30307
30376
|
export const channelOrderSummaryFulfillmentDetails = T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'];
|
|
30308
30377
|
export const channelOrderSummaryUpserted = T['io.flow.internal.v0.models.channel_order_summary_upserted'];
|
|
30309
|
-
export const
|
|
30378
|
+
export const channelOrganizationDomains = T['io.flow.internal.v0.models.channel_organization_domains'];
|
|
30310
30379
|
export const channelOrganizationIdentifier = T['io.flow.internal.v0.models.channel_organization_identifier'];
|
|
30311
30380
|
export const channelOrganizationIdentifierDeleted = T['io.flow.internal.v0.models.channel_organization_identifier_deleted'];
|
|
30312
30381
|
export const channelOrganizationIdentifierUpserted = T['io.flow.internal.v0.models.channel_organization_identifier_upserted'];
|
|
@@ -30326,6 +30395,8 @@ export const channelRateMetadata = T['io.flow.internal.v0.unions.channel_rate_me
|
|
|
30326
30395
|
export const channelRateMetadataIdentity = T['io.flow.internal.v0.models.channel_rate_metadata_identity'];
|
|
30327
30396
|
export const channelRateMetadataRate = T['io.flow.internal.v0.models.channel_rate_metadata_rate'];
|
|
30328
30397
|
export const channelService = T['io.flow.internal.v0.enums.channel_service'];
|
|
30398
|
+
export const channelShop = T['io.flow.internal.v0.models.channel_shop'];
|
|
30399
|
+
export const channelShopForm = T['io.flow.internal.v0.models.channel_shop_form'];
|
|
30329
30400
|
export const channelTransaction = T['io.flow.internal.v0.models.channel_transaction'];
|
|
30330
30401
|
export const channelTransactionDeleted = T['io.flow.internal.v0.models.channel_transaction_deleted'];
|
|
30331
30402
|
export const channelTransactionRate = T['io.flow.internal.v0.models.channel_transaction_rate'];
|
|
@@ -31218,6 +31289,7 @@ export const prateekItemForm = T['io.flow.internal.v0.models.prateek_item_form']
|
|
|
31218
31289
|
export const prateekItemType = T['io.flow.internal.v0.enums.prateek_item_type'];
|
|
31219
31290
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
31220
31291
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
31292
|
+
export const priceInclusivity = T['io.flow.internal.v0.models.price_inclusivity'];
|
|
31221
31293
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
31222
31294
|
export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
|
|
31223
31295
|
export const processingTransaction = T['io.flow.internal.v0.models.processing_transaction'];
|
|
@@ -31745,6 +31817,7 @@ export const timeToClassifyAggregatedUpserted = T['io.flow.internal.v0.models.ti
|
|
|
31745
31817
|
export const timeToClassifyDeleted = T['io.flow.internal.v0.models.time_to_classify_deleted'];
|
|
31746
31818
|
export const timeToClassifyUpserted = T['io.flow.internal.v0.models.time_to_classify_upserted'];
|
|
31747
31819
|
export const timeWithTimezone = T['io.flow.internal.v0.models.time_with_timezone'];
|
|
31820
|
+
export const tokens = T['io.flow.internal.v0.models.tokens'];
|
|
31748
31821
|
export const tracker = T['io.flow.internal.v0.unions.tracker'];
|
|
31749
31822
|
export const trackingAssuranceAnalysis = T['io.flow.internal.v0.models.tracking_assurance_analysis'];
|
|
31750
31823
|
export const trackingAssuranceAnalysisDeleted = T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'];
|