@flowio/api-internal-prop-types 9.24.60 → 9.24.61
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 +31 -5
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +31 -5
- package/src/api-internal.js +48 -6
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.61",
|
|
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": "5bf5109cdb6252257d20453fbdab8e9cf5a7344c"
|
|
34
34
|
}
|
package/src/api-internal.d.ts
CHANGED
|
@@ -6858,12 +6858,17 @@ declare namespace io.flow.partner.v0.enums {
|
|
|
6858
6858
|
}
|
|
6859
6859
|
|
|
6860
6860
|
declare namespace io.flow.partner.v0.models {
|
|
6861
|
+
interface BridgeHub {
|
|
6862
|
+
readonly 'hub_code': string;
|
|
6863
|
+
readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
6864
|
+
}
|
|
6865
|
+
|
|
6861
6866
|
interface BridgeLabelForm {
|
|
6862
6867
|
readonly 'discriminator': 'bridge_label_form';
|
|
6863
6868
|
readonly 'organization': string;
|
|
6864
6869
|
readonly 'order_number': string;
|
|
6865
6870
|
readonly 'package': io.flow.partner.v0.models.BridgeLabelPackage;
|
|
6866
|
-
readonly '
|
|
6871
|
+
readonly 'hub'?: io.flow.partner.v0.models.BridgeHub;
|
|
6867
6872
|
}
|
|
6868
6873
|
|
|
6869
6874
|
interface BridgeLabelPackage {
|
|
@@ -10225,7 +10230,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
10225
10230
|
type PayoutAttachmentType = 'transactions';
|
|
10226
10231
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
10227
10232
|
type StatementAttachmentType = 'csv';
|
|
10228
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
10233
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
10229
10234
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
10230
10235
|
}
|
|
10231
10236
|
|
|
@@ -12233,8 +12238,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12233
12238
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'miscellaneous';
|
|
12234
12239
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
12235
12240
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
12241
|
+
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
12236
12242
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
12237
12243
|
type OrderAttributeIntent = 'discount_code';
|
|
12244
|
+
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
12238
12245
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
12239
12246
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
12240
12247
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
@@ -12371,6 +12378,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12371
12378
|
readonly 'payment_conditions'?: string;
|
|
12372
12379
|
readonly 'deposit_rule'?: io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
12373
12380
|
readonly 'center_key'?: string;
|
|
12381
|
+
readonly 'bank_account_id'?: string;
|
|
12374
12382
|
}
|
|
12375
12383
|
|
|
12376
12384
|
interface AccountOrdersExportRequest {
|
|
@@ -13074,6 +13082,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13074
13082
|
readonly 'experiment_key'?: string;
|
|
13075
13083
|
}
|
|
13076
13084
|
|
|
13085
|
+
interface BankAccountReference {
|
|
13086
|
+
readonly 'id': string;
|
|
13087
|
+
}
|
|
13088
|
+
|
|
13077
13089
|
interface BankPayment {
|
|
13078
13090
|
readonly 'id': string;
|
|
13079
13091
|
readonly 'key': string;
|
|
@@ -13822,6 +13834,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13822
13834
|
readonly 'center_key'?: string;
|
|
13823
13835
|
readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
|
|
13824
13836
|
readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
|
|
13837
|
+
readonly 'bank_account'?: io.flow.internal.v0.models.BankAccountReference;
|
|
13825
13838
|
readonly 'created_at': string;
|
|
13826
13839
|
}
|
|
13827
13840
|
|
|
@@ -17870,7 +17883,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17870
17883
|
|
|
17871
17884
|
interface FinanceBankAccount {
|
|
17872
17885
|
readonly 'id': string;
|
|
17873
|
-
readonly '
|
|
17886
|
+
readonly 'accounts': io.flow.internal.v0.models.AccountSummary[];
|
|
17874
17887
|
readonly 'last4': string;
|
|
17875
17888
|
readonly 'info': io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
17876
17889
|
readonly 'owner'?: io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
@@ -18014,6 +18027,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18014
18027
|
readonly 'center_key'?: string;
|
|
18015
18028
|
readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
|
|
18016
18029
|
readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
|
|
18030
|
+
readonly 'bank_account'?: io.flow.internal.v0.models.BankAccountReference;
|
|
18017
18031
|
readonly 'created_at': string;
|
|
18018
18032
|
}
|
|
18019
18033
|
|
|
@@ -20660,6 +20674,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20660
20674
|
readonly 'setup_completed_at'?: string;
|
|
20661
20675
|
readonly 'gmv': number;
|
|
20662
20676
|
readonly 'health_score': number;
|
|
20677
|
+
readonly 'blocked_since'?: string;
|
|
20663
20678
|
}
|
|
20664
20679
|
|
|
20665
20680
|
interface OnboardingStateForm {
|
|
@@ -20794,8 +20809,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20794
20809
|
readonly 'description': string;
|
|
20795
20810
|
}
|
|
20796
20811
|
|
|
20812
|
+
interface OrderCancellationEvidenceReturnToSender {
|
|
20813
|
+
readonly 'discriminator': 'return_to_sender';
|
|
20814
|
+
readonly 'initiated_by': io.flow.internal.v0.enums.OrderCancellationInitiatedBy;
|
|
20815
|
+
}
|
|
20816
|
+
|
|
20797
20817
|
interface OrderCancellationForm {
|
|
20798
|
-
readonly 'evidence': io.flow.internal.v0.
|
|
20818
|
+
readonly 'evidence': io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
20799
20819
|
}
|
|
20800
20820
|
|
|
20801
20821
|
interface OrderDetail {
|
|
@@ -20964,6 +20984,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20964
20984
|
readonly 'center_key'?: string;
|
|
20965
20985
|
readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
|
|
20966
20986
|
readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
|
|
20987
|
+
readonly 'bank_account'?: io.flow.internal.v0.models.BankAccountReference;
|
|
20967
20988
|
readonly 'created_at': string;
|
|
20968
20989
|
}
|
|
20969
20990
|
|
|
@@ -22539,6 +22560,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22539
22560
|
interface RestrictionRuleDecisionForm {
|
|
22540
22561
|
readonly 'rule_id': string;
|
|
22541
22562
|
readonly 'decision': io.flow.internal.v0.enums.RestrictionDecision;
|
|
22563
|
+
readonly 'product_id'?: string;
|
|
22542
22564
|
}
|
|
22543
22565
|
|
|
22544
22566
|
interface RestrictionRuleForm {
|
|
@@ -24490,7 +24512,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24490
24512
|
type MarketingGatewaySourceSummary = (io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary);
|
|
24491
24513
|
type OptinPromptDisplay = (io.flow.internal.v0.models.OptinPromptCheckoutDisplay);
|
|
24492
24514
|
type OrderActionForm = (io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm);
|
|
24493
|
-
type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled);
|
|
24515
|
+
type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender);
|
|
24494
24516
|
type PaymentRedirect = (io.flow.internal.v0.models.OnlineAuthorizationCompleted | io.flow.internal.v0.models.RedirectActionCompleted);
|
|
24495
24517
|
type PaymentSummaryDetails = (io.flow.internal.v0.models.SearchAuthorization);
|
|
24496
24518
|
type PlatformFee = (io.flow.internal.v0.models.PlatformFeePause | io.flow.internal.v0.models.PlatformFeeFlat | io.flow.internal.v0.models.PlatformFeePercentage | io.flow.internal.v0.models.PlatformFeeDisabled);
|
|
@@ -24705,8 +24727,10 @@ export const onboardingAuditResult: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
24705
24727
|
export const onboardingAuditThemeKey: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditThemeKey>;
|
|
24706
24728
|
export const onboardingAutomationProcessState: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAutomationProcessState>;
|
|
24707
24729
|
export const onboardingAutomationTaskState: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAutomationTaskState>;
|
|
24730
|
+
export const onboardingStateSource: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingStateSource>;
|
|
24708
24731
|
export const orderAction: PropTypes.Requireable<io.flow.internal.v0.enums.OrderAction>;
|
|
24709
24732
|
export const orderAttributeIntent: PropTypes.Requireable<io.flow.internal.v0.enums.OrderAttributeIntent>;
|
|
24733
|
+
export const orderCancellationInitiatedBy: PropTypes.Requireable<io.flow.internal.v0.enums.OrderCancellationInitiatedBy>;
|
|
24710
24734
|
export const orderChargeTrigger: PropTypes.Requireable<io.flow.internal.v0.enums.OrderChargeTrigger>;
|
|
24711
24735
|
export const orderLifecycleEvent: PropTypes.Requireable<io.flow.internal.v0.enums.OrderLifecycleEvent>;
|
|
24712
24736
|
export const orderTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.OrderTransactionType>;
|
|
@@ -24883,6 +24907,7 @@ export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0
|
|
|
24883
24907
|
export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
|
|
24884
24908
|
export const backfill: PropTypes.Requireable<io.flow.internal.v0.models.Backfill>;
|
|
24885
24909
|
export const backfillForm: PropTypes.Requireable<io.flow.internal.v0.models.BackfillForm>;
|
|
24910
|
+
export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
|
|
24886
24911
|
export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
|
|
24887
24912
|
export const bankPaymentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeleted>;
|
|
24888
24913
|
export const bankPaymentDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeletedV2>;
|
|
@@ -25995,6 +26020,7 @@ export const orderAttributeUpserted: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
25995
26020
|
export const orderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellation>;
|
|
25996
26021
|
export const orderCancellationEvidenceFullyRefundedNotFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled>;
|
|
25997
26022
|
export const orderCancellationEvidenceManual: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceManual>;
|
|
26023
|
+
export const orderCancellationEvidenceReturnToSender: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender>;
|
|
25998
26024
|
export const orderCancellationForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationForm>;
|
|
25999
26025
|
export const orderDetail: PropTypes.Requireable<io.flow.internal.v0.models.OrderDetail>;
|
|
26000
26026
|
export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentDeleted>;
|
package/src/api-internal.js
CHANGED
|
@@ -9223,6 +9223,7 @@ T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept',
|
|
|
9223
9223
|
T['io.flow.internal.v0.models.restriction_rule_decision_form'] = PropTypes.exact({
|
|
9224
9224
|
rule_id: PropTypes.string.isRequired,
|
|
9225
9225
|
decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
|
|
9226
|
+
product_id: PropTypes.string,
|
|
9226
9227
|
});
|
|
9227
9228
|
|
|
9228
9229
|
T['io.flow.internal.v0.models.restriction_product_decision_form'] = PropTypes.exact({
|
|
@@ -9934,6 +9935,13 @@ T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
|
|
|
9934
9935
|
sort: PropTypes.string,
|
|
9935
9936
|
});
|
|
9936
9937
|
|
|
9938
|
+
T['io.flow.internal.v0.enums.order_cancellation_initiated_by'] = PropTypes.oneOf(['flow', 'organization']);
|
|
9939
|
+
|
|
9940
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'] = PropTypes.exact({
|
|
9941
|
+
discriminator: PropTypes.oneOf(['return_to_sender']).isRequired,
|
|
9942
|
+
initiated_by: T['io.flow.internal.v0.enums.order_cancellation_initiated_by'].isRequired,
|
|
9943
|
+
});
|
|
9944
|
+
|
|
9937
9945
|
T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'] = PropTypes.exact({
|
|
9938
9946
|
discriminator: PropTypes.oneOf(['fully_refunded_not_fulfilled']).isRequired,
|
|
9939
9947
|
placeholder: PropTypes.string,
|
|
@@ -9944,15 +9952,16 @@ T['io.flow.internal.v0.models.order_cancellation_evidence_manual'] = PropTypes.e
|
|
|
9944
9952
|
description: PropTypes.string.isRequired,
|
|
9945
9953
|
});
|
|
9946
9954
|
|
|
9947
|
-
T['io.flow.internal.v0.models.order_cancellation_form'] = PropTypes.exact({
|
|
9948
|
-
evidence: T['io.flow.internal.v0.models.order_cancellation_evidence_manual'].isRequired,
|
|
9949
|
-
});
|
|
9950
|
-
|
|
9951
9955
|
T['io.flow.internal.v0.unions.order_cancellation_evidence'] = PropTypes.oneOfType([
|
|
9952
9956
|
T['io.flow.internal.v0.models.order_cancellation_evidence_manual'],
|
|
9953
9957
|
T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'],
|
|
9958
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'],
|
|
9954
9959
|
]);
|
|
9955
9960
|
|
|
9961
|
+
T['io.flow.internal.v0.models.order_cancellation_form'] = PropTypes.exact({
|
|
9962
|
+
evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
|
|
9963
|
+
});
|
|
9964
|
+
|
|
9956
9965
|
T['io.flow.internal.v0.enums.order_attribute_intent'] = PropTypes.oneOf(['discount_code']);
|
|
9957
9966
|
T['io.flow.common.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
|
|
9958
9967
|
|
|
@@ -10083,6 +10092,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
10083
10092
|
setup_completed_at: PropTypes.string,
|
|
10084
10093
|
gmv: PropTypes.number.isRequired,
|
|
10085
10094
|
health_score: PropTypes.number.isRequired,
|
|
10095
|
+
blocked_since: PropTypes.string,
|
|
10086
10096
|
});
|
|
10087
10097
|
|
|
10088
10098
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
@@ -12992,6 +13002,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
12992
13002
|
'platform_fee',
|
|
12993
13003
|
'tax',
|
|
12994
13004
|
'duty',
|
|
13005
|
+
'withholding',
|
|
12995
13006
|
'other_adjustment',
|
|
12996
13007
|
'tax_adjustment',
|
|
12997
13008
|
'channel',
|
|
@@ -19409,6 +19420,11 @@ T['io.flow.fulfillment.v0.models.quote_version'] = PropTypes.exact({
|
|
|
19409
19420
|
quote: T['io.flow.fulfillment.v0.models.quote_summary'].isRequired,
|
|
19410
19421
|
});
|
|
19411
19422
|
|
|
19423
|
+
T['io.flow.partner.v0.models.bridge_hub'] = PropTypes.exact({
|
|
19424
|
+
hub_code: PropTypes.string.isRequired,
|
|
19425
|
+
address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
19426
|
+
});
|
|
19427
|
+
|
|
19412
19428
|
T['io.flow.return.v0.models.return_form'] = PropTypes.exact({
|
|
19413
19429
|
items: PropTypes.arrayOf(T['io.flow.return.v0.models.return_line_item']).isRequired,
|
|
19414
19430
|
tier_id: PropTypes.string,
|
|
@@ -21814,7 +21830,7 @@ T['io.flow.partner.v0.models.bridge_label_form'] = PropTypes.exact({
|
|
|
21814
21830
|
organization: PropTypes.string.isRequired,
|
|
21815
21831
|
order_number: PropTypes.string.isRequired,
|
|
21816
21832
|
'package': T['io.flow.partner.v0.models.bridge_label_package'].isRequired,
|
|
21817
|
-
|
|
21833
|
+
hub: T['io.flow.partner.v0.models.bridge_hub'],
|
|
21818
21834
|
});
|
|
21819
21835
|
|
|
21820
21836
|
T['io.flow.label.v0.models.summary_shipping_notification_form'] = PropTypes.exact({
|
|
@@ -22626,6 +22642,10 @@ T['io.flow.internal.v0.unions.order_action_form'] = PropTypes.oneOfType([
|
|
|
22626
22642
|
T['io.flow.internal.v0.models.fulfillment_action_form'],
|
|
22627
22643
|
]);
|
|
22628
22644
|
|
|
22645
|
+
T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
|
|
22646
|
+
id: PropTypes.string.isRequired,
|
|
22647
|
+
});
|
|
22648
|
+
|
|
22629
22649
|
T['io.flow.internal.v0.models.account_deposit_rule'] = PropTypes.exact({
|
|
22630
22650
|
target: PropTypes.number.isRequired,
|
|
22631
22651
|
rate: PropTypes.number.isRequired,
|
|
@@ -24878,7 +24898,7 @@ T['io.flow.internal.v0.models.finance_bank_payment'] = PropTypes.exact({
|
|
|
24878
24898
|
|
|
24879
24899
|
T['io.flow.internal.v0.models.finance_bank_account'] = PropTypes.exact({
|
|
24880
24900
|
id: PropTypes.string.isRequired,
|
|
24881
|
-
|
|
24901
|
+
accounts: PropTypes.arrayOf(T['io.flow.internal.v0.models.account_summary']).isRequired,
|
|
24882
24902
|
last4: PropTypes.string.isRequired,
|
|
24883
24903
|
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
24884
24904
|
owner: T['io.flow.internal.v0.models.finance_bank_account_owner'],
|
|
@@ -25494,6 +25514,7 @@ T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
|
|
|
25494
25514
|
center_key: PropTypes.string,
|
|
25495
25515
|
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
25496
25516
|
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
25517
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
25497
25518
|
created_at: PropTypes.string.isRequired,
|
|
25498
25519
|
});
|
|
25499
25520
|
|
|
@@ -25516,6 +25537,7 @@ T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
|
|
|
25516
25537
|
center_key: PropTypes.string,
|
|
25517
25538
|
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
25518
25539
|
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
25540
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
25519
25541
|
created_at: PropTypes.string.isRequired,
|
|
25520
25542
|
});
|
|
25521
25543
|
|
|
@@ -25538,6 +25560,7 @@ T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
|
|
|
25538
25560
|
center_key: PropTypes.string,
|
|
25539
25561
|
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
25540
25562
|
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
25563
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
25541
25564
|
created_at: PropTypes.string.isRequired,
|
|
25542
25565
|
});
|
|
25543
25566
|
|
|
@@ -25562,6 +25585,7 @@ T['io.flow.internal.v0.models.account_form'] = PropTypes.exact({
|
|
|
25562
25585
|
payment_conditions: PropTypes.string,
|
|
25563
25586
|
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule_form'],
|
|
25564
25587
|
center_key: PropTypes.string,
|
|
25588
|
+
bank_account_id: PropTypes.string,
|
|
25565
25589
|
});
|
|
25566
25590
|
|
|
25567
25591
|
T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
|
|
@@ -26411,6 +26435,20 @@ T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropType
|
|
|
26411
26435
|
T['io.flow.internal.v0.enums.marketing_gateway_product_status'] = PropTypes.oneOf(['approved', 'not_approved', 'pending', 'not_found', 'excluded']);
|
|
26412
26436
|
T['io.flow.internal.v0.enums.onboarding_automation_process_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
26413
26437
|
T['io.flow.internal.v0.enums.onboarding_automation_task_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
26438
|
+
|
|
26439
|
+
T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
|
|
26440
|
+
'unknown',
|
|
26441
|
+
'unit_test',
|
|
26442
|
+
'api',
|
|
26443
|
+
'api_activation',
|
|
26444
|
+
'api_internal',
|
|
26445
|
+
'api_internal_block',
|
|
26446
|
+
'api_internal_unblock',
|
|
26447
|
+
'onboarding_application',
|
|
26448
|
+
'organization_state_change',
|
|
26449
|
+
'restriction_organization_status',
|
|
26450
|
+
]);
|
|
26451
|
+
|
|
26414
26452
|
T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_placed', 'ready_to_fulfill']);
|
|
26415
26453
|
T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
|
|
26416
26454
|
T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
|
|
@@ -28413,6 +28451,7 @@ export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_or
|
|
|
28413
28451
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
28414
28452
|
export const backfill = T['io.flow.internal.v0.models.backfill'];
|
|
28415
28453
|
export const backfillForm = T['io.flow.internal.v0.models.backfill_form'];
|
|
28454
|
+
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
28416
28455
|
export const bankPayment = T['io.flow.internal.v0.models.bank_payment'];
|
|
28417
28456
|
export const bankPaymentDeleted = T['io.flow.internal.v0.models.bank_payment_deleted'];
|
|
28418
28457
|
export const bankPaymentDeletedV2 = T['io.flow.internal.v0.models.bank_payment_deleted_v2'];
|
|
@@ -29802,6 +29841,7 @@ export const onboardingAutomationProcessState = T['io.flow.internal.v0.enums.onb
|
|
|
29802
29841
|
export const onboardingAutomationTaskState = T['io.flow.internal.v0.enums.onboarding_automation_task_state'];
|
|
29803
29842
|
export const onboardingOrganization = T['io.flow.internal.v0.models.onboarding_organization'];
|
|
29804
29843
|
export const onboardingStateForm = T['io.flow.internal.v0.models.onboarding_state_form'];
|
|
29844
|
+
export const onboardingStateSource = T['io.flow.internal.v0.enums.onboarding_state_source'];
|
|
29805
29845
|
export const oneTimeTokenRedemptionForm = T['io.flow.internal.v0.models.one_time_token_redemption_form'];
|
|
29806
29846
|
export const onlineAuthorizationCompleted = T['io.flow.internal.v0.models.online_authorization_completed'];
|
|
29807
29847
|
export const optinAttribute = T['io.flow.internal.v0.models.optin_attribute'];
|
|
@@ -29825,7 +29865,9 @@ export const orderCancellation = T['io.flow.internal.v0.models.order_cancellatio
|
|
|
29825
29865
|
export const orderCancellationEvidence = T['io.flow.internal.v0.unions.order_cancellation_evidence'];
|
|
29826
29866
|
export const orderCancellationEvidenceFullyRefundedNotFulfilled = T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'];
|
|
29827
29867
|
export const orderCancellationEvidenceManual = T['io.flow.internal.v0.models.order_cancellation_evidence_manual'];
|
|
29868
|
+
export const orderCancellationEvidenceReturnToSender = T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'];
|
|
29828
29869
|
export const orderCancellationForm = T['io.flow.internal.v0.models.order_cancellation_form'];
|
|
29870
|
+
export const orderCancellationInitiatedBy = T['io.flow.internal.v0.enums.order_cancellation_initiated_by'];
|
|
29829
29871
|
export const orderChargeTrigger = T['io.flow.internal.v0.enums.order_charge_trigger'];
|
|
29830
29872
|
export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
|
|
29831
29873
|
export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];
|