@flowio/api-internal-prop-types 9.24.112 → 9.24.114
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 +201 -56
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +201 -56
- package/src/api-internal.js +353 -120
package/src/api-internal.js
CHANGED
|
@@ -5653,6 +5653,23 @@ T['io.flow.stripe.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
|
5653
5653
|
'lost',
|
|
5654
5654
|
]);
|
|
5655
5655
|
|
|
5656
|
+
T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
5657
|
+
'bank_cannot_process',
|
|
5658
|
+
'check_returned',
|
|
5659
|
+
'credit_not_processed',
|
|
5660
|
+
'customer_initiated',
|
|
5661
|
+
'debit_not_authorized',
|
|
5662
|
+
'duplicate',
|
|
5663
|
+
'fraudulent',
|
|
5664
|
+
'general',
|
|
5665
|
+
'incorrect_account_details',
|
|
5666
|
+
'insufficient_funds',
|
|
5667
|
+
'product_not_received',
|
|
5668
|
+
'product_unacceptable',
|
|
5669
|
+
'subscription_canceled',
|
|
5670
|
+
'unrecognized',
|
|
5671
|
+
]);
|
|
5672
|
+
|
|
5656
5673
|
T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
|
|
5657
5674
|
access_activity_log: PropTypes.string,
|
|
5658
5675
|
billing_address: PropTypes.string,
|
|
@@ -5683,6 +5700,43 @@ T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
|
|
|
5683
5700
|
uncategorized_text: PropTypes.string,
|
|
5684
5701
|
});
|
|
5685
5702
|
|
|
5703
|
+
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
5704
|
+
id: PropTypes.string.isRequired,
|
|
5705
|
+
amount: PropTypes.number.isRequired,
|
|
5706
|
+
charge: PropTypes.string.isRequired,
|
|
5707
|
+
currency: PropTypes.string.isRequired,
|
|
5708
|
+
evidence: T['io.flow.stripe.v0.models.dispute_evidence'].isRequired,
|
|
5709
|
+
metadata: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
5710
|
+
payment_intent: PropTypes.string,
|
|
5711
|
+
reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
|
|
5712
|
+
status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
|
|
5713
|
+
object: PropTypes.string.isRequired,
|
|
5714
|
+
balance_transactions: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction']).isRequired,
|
|
5715
|
+
created: PropTypes.number.isRequired,
|
|
5716
|
+
evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
|
|
5717
|
+
is_charge_refundable: PropTypes.bool.isRequired,
|
|
5718
|
+
livemode: PropTypes.bool.isRequired,
|
|
5719
|
+
payment_method_details: T['io.flow.stripe.v0.models.dispute_payment_method_details'],
|
|
5720
|
+
});
|
|
5721
|
+
|
|
5722
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event_data'] = PropTypes.exact({
|
|
5723
|
+
object: T['io.flow.stripe.v0.models.dispute'].isRequired,
|
|
5724
|
+
previous_attributes: PropTypes.object,
|
|
5725
|
+
});
|
|
5726
|
+
|
|
5727
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
|
|
5728
|
+
id: PropTypes.string.isRequired,
|
|
5729
|
+
api_version: PropTypes.string,
|
|
5730
|
+
data: T['io.flow.stripe.v0.models.stripe_dispute_event_data'].isRequired,
|
|
5731
|
+
request: PropTypes.object,
|
|
5732
|
+
type: T['io.flow.stripe.v0.enums.dispute_event_type'].isRequired,
|
|
5733
|
+
object: PropTypes.string.isRequired,
|
|
5734
|
+
account: PropTypes.string,
|
|
5735
|
+
created: PropTypes.number.isRequired,
|
|
5736
|
+
livemode: PropTypes.bool.isRequired,
|
|
5737
|
+
pending_webhooks: PropTypes.number.isRequired,
|
|
5738
|
+
});
|
|
5739
|
+
|
|
5686
5740
|
T['io.flow.stripe.v0.enums.code_verification_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
|
|
5687
5741
|
|
|
5688
5742
|
T['io.flow.stripe.v0.models.transfer_data'] = PropTypes.exact({
|
|
@@ -6399,6 +6453,23 @@ T['io.flow.payment.v0.models.issuer_v1'] = PropTypes.exact({
|
|
|
6399
6453
|
country: PropTypes.string,
|
|
6400
6454
|
});
|
|
6401
6455
|
|
|
6456
|
+
T['io.flow.payment.v0.models.dispute_reference'] = PropTypes.exact({
|
|
6457
|
+
discriminator: PropTypes.oneOf(['dispute_reference']).isRequired,
|
|
6458
|
+
id: PropTypes.string.isRequired,
|
|
6459
|
+
key: PropTypes.string.isRequired,
|
|
6460
|
+
});
|
|
6461
|
+
|
|
6462
|
+
T['io.flow.payment.v0.enums.transfer_status'] = PropTypes.oneOf(['succeeded', 'canceled']);
|
|
6463
|
+
|
|
6464
|
+
T['io.flow.payment.v0.enums.transfer_type'] = PropTypes.oneOf([
|
|
6465
|
+
'payout_to_merchant',
|
|
6466
|
+
'disputed_amount_to_merchant',
|
|
6467
|
+
'duties_and_taxes_adjustment_to_merchant',
|
|
6468
|
+
'disputed_amount_from_merchant',
|
|
6469
|
+
'duties_and_taxes_adjustment_from_merchant',
|
|
6470
|
+
'refund_from_merchant',
|
|
6471
|
+
]);
|
|
6472
|
+
|
|
6402
6473
|
T['io.flow.payment.v0.models.threeds_two_method'] = PropTypes.exact({
|
|
6403
6474
|
discriminator: PropTypes.oneOf(['threeds_two_method']).isRequired,
|
|
6404
6475
|
method: PropTypes.string.isRequired,
|
|
@@ -6611,6 +6682,7 @@ T['io.flow.payment.v0.models.expiration'] = PropTypes.exact({
|
|
|
6611
6682
|
});
|
|
6612
6683
|
|
|
6613
6684
|
T['io.flow.payment.v0.models.capture_reference'] = PropTypes.exact({
|
|
6685
|
+
discriminator: PropTypes.oneOf(['capture_reference']).isRequired,
|
|
6614
6686
|
id: PropTypes.string.isRequired,
|
|
6615
6687
|
key: PropTypes.string.isRequired,
|
|
6616
6688
|
});
|
|
@@ -8180,6 +8252,14 @@ T['io.flow.internal.v0.models.stripe_dispute_deleted'] = PropTypes.exact({
|
|
|
8180
8252
|
id: PropTypes.string.isRequired,
|
|
8181
8253
|
});
|
|
8182
8254
|
|
|
8255
|
+
T['io.flow.internal.v0.models.shopify_dispute_deleted'] = PropTypes.exact({
|
|
8256
|
+
discriminator: PropTypes.oneOf(['shopify_dispute_deleted']).isRequired,
|
|
8257
|
+
event_id: PropTypes.string.isRequired,
|
|
8258
|
+
timestamp: PropTypes.string.isRequired,
|
|
8259
|
+
organization: PropTypes.string.isRequired,
|
|
8260
|
+
id: PropTypes.string.isRequired,
|
|
8261
|
+
});
|
|
8262
|
+
|
|
8183
8263
|
T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'] = PropTypes.exact({
|
|
8184
8264
|
discriminator: PropTypes.oneOf(['shopify_merchant_plan_deleted']).isRequired,
|
|
8185
8265
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8396,6 +8476,13 @@ T['io.flow.internal.v0.models.authorization_bundle_deleted'] = PropTypes.exact({
|
|
|
8396
8476
|
id: PropTypes.string.isRequired,
|
|
8397
8477
|
});
|
|
8398
8478
|
|
|
8479
|
+
T['io.flow.internal.v0.models.partner_request_deleted'] = PropTypes.exact({
|
|
8480
|
+
discriminator: PropTypes.oneOf(['partner_request_deleted']).isRequired,
|
|
8481
|
+
event_id: PropTypes.string.isRequired,
|
|
8482
|
+
timestamp: PropTypes.string.isRequired,
|
|
8483
|
+
id: PropTypes.string.isRequired,
|
|
8484
|
+
});
|
|
8485
|
+
|
|
8399
8486
|
T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'] = PropTypes.exact({
|
|
8400
8487
|
discriminator: PropTypes.oneOf(['spp_tracker_update_request_deleted']).isRequired,
|
|
8401
8488
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9608,142 +9695,103 @@ T['io.flow.internal.v0.models.stripe_dispute_upserted'] = PropTypes.exact({
|
|
|
9608
9695
|
dispute: T['io.flow.internal.v0.models.stripe_internal_dispute'].isRequired,
|
|
9609
9696
|
});
|
|
9610
9697
|
|
|
9611
|
-
T['io.flow.
|
|
9612
|
-
'
|
|
9613
|
-
'
|
|
9614
|
-
'
|
|
9615
|
-
'customer_initiated',
|
|
9616
|
-
'debit_not_authorized',
|
|
9617
|
-
'duplicate',
|
|
9618
|
-
'fraudulent',
|
|
9619
|
-
'general',
|
|
9620
|
-
'incorrect_account_details',
|
|
9621
|
-
'insufficient_funds',
|
|
9622
|
-
'product_not_received',
|
|
9623
|
-
'product_unacceptable',
|
|
9624
|
-
'subscription_canceled',
|
|
9625
|
-
'unrecognized',
|
|
9698
|
+
T['io.flow.internal.v0.enums.connect_report_transfer_transfer_type'] = PropTypes.oneOf([
|
|
9699
|
+
'ManagedMarketsChargeCredit',
|
|
9700
|
+
'ManagedMarketsDisputeWonAmountCredit',
|
|
9701
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentCredit',
|
|
9626
9702
|
]);
|
|
9627
9703
|
|
|
9628
|
-
T['io.flow.
|
|
9629
|
-
id: PropTypes.string.isRequired,
|
|
9630
|
-
amount: PropTypes.number.isRequired,
|
|
9631
|
-
charge: PropTypes.string.isRequired,
|
|
9632
|
-
currency: PropTypes.string.isRequired,
|
|
9633
|
-
evidence: T['io.flow.stripe.v0.models.dispute_evidence'].isRequired,
|
|
9634
|
-
metadata: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
9635
|
-
payment_intent: PropTypes.string,
|
|
9636
|
-
reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
|
|
9637
|
-
status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
|
|
9638
|
-
object: PropTypes.string.isRequired,
|
|
9639
|
-
balance_transactions: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction']).isRequired,
|
|
9640
|
-
created: PropTypes.number.isRequired,
|
|
9641
|
-
evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
|
|
9642
|
-
is_charge_refundable: PropTypes.bool.isRequired,
|
|
9643
|
-
livemode: PropTypes.bool.isRequired,
|
|
9644
|
-
payment_method_details: T['io.flow.stripe.v0.models.dispute_payment_method_details'],
|
|
9645
|
-
});
|
|
9646
|
-
|
|
9647
|
-
T['io.flow.stripe.v0.models.stripe_dispute_event_data'] = PropTypes.exact({
|
|
9648
|
-
object: T['io.flow.stripe.v0.models.dispute'].isRequired,
|
|
9649
|
-
previous_attributes: PropTypes.object,
|
|
9650
|
-
});
|
|
9651
|
-
|
|
9652
|
-
T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
|
|
9653
|
-
id: PropTypes.string.isRequired,
|
|
9654
|
-
api_version: PropTypes.string,
|
|
9655
|
-
data: T['io.flow.stripe.v0.models.stripe_dispute_event_data'].isRequired,
|
|
9656
|
-
request: PropTypes.object,
|
|
9657
|
-
type: T['io.flow.stripe.v0.enums.dispute_event_type'].isRequired,
|
|
9658
|
-
object: PropTypes.string.isRequired,
|
|
9659
|
-
account: PropTypes.string,
|
|
9660
|
-
created: PropTypes.number.isRequired,
|
|
9661
|
-
livemode: PropTypes.bool.isRequired,
|
|
9662
|
-
pending_webhooks: PropTypes.number.isRequired,
|
|
9663
|
-
});
|
|
9664
|
-
|
|
9665
|
-
T['io.flow.stripe.v0.enums.connect_report_transfer_type'] = PropTypes.oneOf([
|
|
9704
|
+
T['io.flow.internal.v0.enums.connect_report_payment_transfer_type'] = PropTypes.oneOf([
|
|
9666
9705
|
'ManagedMarketsRefundDebit',
|
|
9667
9706
|
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
9668
9707
|
'ManagedMarketsDisputedAmountDebit',
|
|
9669
9708
|
]);
|
|
9670
9709
|
|
|
9671
|
-
T['io.flow.
|
|
9672
|
-
|
|
9673
|
-
T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'] = PropTypes.exact({
|
|
9710
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata'] = PropTypes.exact({
|
|
9711
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_transfer_metadata']).isRequired,
|
|
9674
9712
|
shop_id: PropTypes.number,
|
|
9675
|
-
shop_plan: T['io.flow.stripe.v0.enums.connect_report_shop_plan'],
|
|
9676
|
-
checkout_id: PropTypes.string,
|
|
9677
9713
|
order_id: PropTypes.number,
|
|
9678
9714
|
order_transaction_id: PropTypes.number,
|
|
9679
|
-
transfer_type: T['io.flow.
|
|
9680
|
-
transfer_exchange_rate: PropTypes.number,
|
|
9715
|
+
transfer_type: T['io.flow.internal.v0.enums.connect_report_transfer_transfer_type'],
|
|
9681
9716
|
charge_total: PropTypes.number,
|
|
9682
9717
|
charge_currency: PropTypes.string,
|
|
9683
9718
|
charge_exchange_rate: PropTypes.number,
|
|
9684
9719
|
duties: PropTypes.number,
|
|
9685
9720
|
import_taxes: PropTypes.number,
|
|
9686
|
-
|
|
9687
|
-
|
|
9721
|
+
mor_fees: PropTypes.number,
|
|
9722
|
+
mor_foreign_exchange_fees: PropTypes.number,
|
|
9723
|
+
merchant_account_currency: PropTypes.string,
|
|
9724
|
+
amount_in_merchant_account_currency: PropTypes.number,
|
|
9725
|
+
payout_exchange_rate: PropTypes.number,
|
|
9688
9726
|
});
|
|
9689
9727
|
|
|
9690
|
-
T['io.flow.stripe.v0.enums.
|
|
9728
|
+
T['io.flow.stripe.v0.enums.connect_report_connect_reporting_category'] = PropTypes.oneOf([
|
|
9729
|
+
'advance',
|
|
9730
|
+
'advance_funding',
|
|
9731
|
+
'connect_collection_transfer',
|
|
9732
|
+
'connect_reserved_funds',
|
|
9733
|
+
'platform_earning',
|
|
9734
|
+
'platform_earning_refund',
|
|
9735
|
+
'transfer',
|
|
9736
|
+
'transfer_reversal',
|
|
9737
|
+
]);
|
|
9691
9738
|
|
|
9692
|
-
T['io.flow.stripe.v0.
|
|
9693
|
-
|
|
9694
|
-
|
|
9695
|
-
|
|
9696
|
-
|
|
9697
|
-
|
|
9698
|
-
|
|
9699
|
-
|
|
9700
|
-
|
|
9701
|
-
|
|
9702
|
-
dispute_reason: T['io.flow.stripe.v0.enums.dispute_reason'],
|
|
9703
|
-
available_on_utc: PropTypes.string.isRequired,
|
|
9704
|
-
automatic_payout_effective_at_utc: PropTypes.string,
|
|
9705
|
-
source_id: PropTypes.string,
|
|
9706
|
-
customer_facing_amount: PropTypes.number,
|
|
9707
|
-
customer_facing_currency: PropTypes.string,
|
|
9708
|
-
payment_method_type: PropTypes.string,
|
|
9709
|
-
card_brand: PropTypes.string,
|
|
9710
|
-
statement_descriptor: PropTypes.string,
|
|
9711
|
-
payment_metadata: T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'],
|
|
9712
|
-
transfer_metadata: PropTypes.object,
|
|
9713
|
-
});
|
|
9739
|
+
T['io.flow.stripe.v0.enums.connect_report_issuing_reporting_category'] = PropTypes.oneOf([
|
|
9740
|
+
'issuing_authorization_hold',
|
|
9741
|
+
'issuing_authorization_release',
|
|
9742
|
+
'issuing_disbursement',
|
|
9743
|
+
'issuing_dispute',
|
|
9744
|
+
'issuing_dispute_fraud_liability_debit',
|
|
9745
|
+
'issuing_dispute_provisional_credit',
|
|
9746
|
+
'issuing_dispute_provisional_credit_reversal',
|
|
9747
|
+
'issuing_transaction',
|
|
9748
|
+
]);
|
|
9714
9749
|
|
|
9715
|
-
T['io.flow.
|
|
9716
|
-
|
|
9717
|
-
|
|
9718
|
-
|
|
9719
|
-
|
|
9720
|
-
|
|
9750
|
+
T['io.flow.stripe.v0.enums.connect_report_balance_reporting_category'] = PropTypes.oneOf([
|
|
9751
|
+
'anticipation_repayment',
|
|
9752
|
+
'climate_order_purchase',
|
|
9753
|
+
'climate_order_refund',
|
|
9754
|
+
'contribution',
|
|
9755
|
+
'currency_conversion',
|
|
9756
|
+
'fee',
|
|
9757
|
+
'other_adjustment',
|
|
9758
|
+
'payment_network_reserve_hold',
|
|
9759
|
+
'payment_network_reserve_release',
|
|
9760
|
+
'payout',
|
|
9761
|
+
'payout_minimum_balance_hold',
|
|
9762
|
+
'payout_minimum_balance_release',
|
|
9763
|
+
'payout_reversal',
|
|
9764
|
+
'risk_reserved_funds',
|
|
9765
|
+
'stripe_balance_payment_debit',
|
|
9766
|
+
'stripe_balance_payment_debit_reversal',
|
|
9767
|
+
'topup',
|
|
9768
|
+
'topup_reversal',
|
|
9769
|
+
'unreconciled_customer_funds',
|
|
9770
|
+
]);
|
|
9721
9771
|
|
|
9722
|
-
T['io.flow.
|
|
9723
|
-
|
|
9724
|
-
|
|
9725
|
-
|
|
9726
|
-
|
|
9727
|
-
|
|
9728
|
-
|
|
9729
|
-
|
|
9730
|
-
|
|
9731
|
-
|
|
9732
|
-
|
|
9733
|
-
|
|
9734
|
-
|
|
9735
|
-
|
|
9736
|
-
|
|
9737
|
-
|
|
9738
|
-
|
|
9739
|
-
|
|
9740
|
-
|
|
9741
|
-
|
|
9742
|
-
|
|
9743
|
-
|
|
9744
|
-
|
|
9745
|
-
transfer_metadata: PropTypes.object,
|
|
9746
|
-
});
|
|
9772
|
+
T['io.flow.stripe.v0.enums.connect_report_payment_reporting_category'] = PropTypes.oneOf([
|
|
9773
|
+
'charge',
|
|
9774
|
+
'charge_failure',
|
|
9775
|
+
'dispute',
|
|
9776
|
+
'dispute_reversal',
|
|
9777
|
+
'partial_capture_reversal',
|
|
9778
|
+
'refund',
|
|
9779
|
+
'refund_failure',
|
|
9780
|
+
]);
|
|
9781
|
+
|
|
9782
|
+
T['io.flow.stripe.v0.unions.connect_report_reporting_category'] = PropTypes.oneOfType([PropTypes.exact({
|
|
9783
|
+
discriminator: PropTypes.oneOf(['connect_report_payment_reporting_category']).isRequired,
|
|
9784
|
+
value: T['io.flow.stripe.v0.enums.connect_report_payment_reporting_category'],
|
|
9785
|
+
}), PropTypes.exact({
|
|
9786
|
+
discriminator: PropTypes.oneOf(['connect_report_balance_reporting_category']).isRequired,
|
|
9787
|
+
value: T['io.flow.stripe.v0.enums.connect_report_balance_reporting_category'],
|
|
9788
|
+
}), PropTypes.exact({
|
|
9789
|
+
discriminator: PropTypes.oneOf(['connect_report_issuing_reporting_category']).isRequired,
|
|
9790
|
+
value: T['io.flow.stripe.v0.enums.connect_report_issuing_reporting_category'],
|
|
9791
|
+
}), PropTypes.exact({
|
|
9792
|
+
discriminator: PropTypes.oneOf(['connect_report_connect_reporting_category']).isRequired,
|
|
9793
|
+
value: T['io.flow.stripe.v0.enums.connect_report_connect_reporting_category'],
|
|
9794
|
+
})]);
|
|
9747
9795
|
|
|
9748
9796
|
T['io.flow.internal.v0.models.stripe_internal_capture'] = PropTypes.exact({
|
|
9749
9797
|
id: PropTypes.string.isRequired,
|
|
@@ -10348,6 +10396,63 @@ T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropType
|
|
|
10348
10396
|
]);
|
|
10349
10397
|
|
|
10350
10398
|
T['io.flow.internal.v0.enums.shopify_plan_type'] = PropTypes.oneOf(['standard', 'shopify_plus']);
|
|
10399
|
+
|
|
10400
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'] = PropTypes.exact({
|
|
10401
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_payment_metadata']).isRequired,
|
|
10402
|
+
shop_id: PropTypes.number,
|
|
10403
|
+
shop_plan: T['io.flow.internal.v0.enums.shopify_plan_type'],
|
|
10404
|
+
checkout_id: PropTypes.string,
|
|
10405
|
+
order_id: PropTypes.number,
|
|
10406
|
+
order_transaction_id: PropTypes.number,
|
|
10407
|
+
transfer_type: T['io.flow.internal.v0.enums.connect_report_payment_transfer_type'],
|
|
10408
|
+
transfer_exchange_rate: PropTypes.number,
|
|
10409
|
+
charge_total: PropTypes.number,
|
|
10410
|
+
charge_currency: PropTypes.string,
|
|
10411
|
+
charge_exchange_rate: PropTypes.number,
|
|
10412
|
+
refund_exchange_rate: PropTypes.number,
|
|
10413
|
+
duties: PropTypes.number,
|
|
10414
|
+
import_taxes: PropTypes.number,
|
|
10415
|
+
mor_fees: PropTypes.number,
|
|
10416
|
+
mor_foreign_exchange_fees: PropTypes.number,
|
|
10417
|
+
});
|
|
10418
|
+
|
|
10419
|
+
T['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'] = PropTypes.oneOfType([
|
|
10420
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'],
|
|
10421
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata'],
|
|
10422
|
+
]);
|
|
10423
|
+
|
|
10424
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record'] = PropTypes.exact({
|
|
10425
|
+
id: PropTypes.string.isRequired,
|
|
10426
|
+
file_id: PropTypes.string.isRequired,
|
|
10427
|
+
line_number: PropTypes.number.isRequired,
|
|
10428
|
+
created_utc: PropTypes.string.isRequired,
|
|
10429
|
+
charge_id: PropTypes.string,
|
|
10430
|
+
payment_intent_id: PropTypes.string,
|
|
10431
|
+
gross: PropTypes.number.isRequired,
|
|
10432
|
+
fee: PropTypes.number.isRequired,
|
|
10433
|
+
net: PropTypes.number.isRequired,
|
|
10434
|
+
currency: PropTypes.string.isRequired,
|
|
10435
|
+
connected_account: PropTypes.string.isRequired,
|
|
10436
|
+
reporting_category: T['io.flow.stripe.v0.unions.connect_report_reporting_category'].isRequired,
|
|
10437
|
+
dispute_reason: PropTypes.string,
|
|
10438
|
+
available_on_utc: PropTypes.string.isRequired,
|
|
10439
|
+
automatic_payout_effective_at_utc: PropTypes.string,
|
|
10440
|
+
source_id: PropTypes.string,
|
|
10441
|
+
customer_facing_amount: PropTypes.number,
|
|
10442
|
+
customer_facing_currency: PropTypes.string,
|
|
10443
|
+
payment_method_type: PropTypes.string,
|
|
10444
|
+
card_brand: PropTypes.string,
|
|
10445
|
+
statement_descriptor: PropTypes.string,
|
|
10446
|
+
metadata: T['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'],
|
|
10447
|
+
});
|
|
10448
|
+
|
|
10449
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropTypes.exact({
|
|
10450
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_upserted']).isRequired,
|
|
10451
|
+
event_id: PropTypes.string.isRequired,
|
|
10452
|
+
timestamp: PropTypes.string.isRequired,
|
|
10453
|
+
record: T['io.flow.internal.v0.models.stripe_connect_report_record'].isRequired,
|
|
10454
|
+
});
|
|
10455
|
+
|
|
10351
10456
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
|
|
10352
10457
|
|
|
10353
10458
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
@@ -10365,6 +10470,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
|
10365
10470
|
'orders/updated',
|
|
10366
10471
|
'orders/delete',
|
|
10367
10472
|
'orders/edited',
|
|
10473
|
+
'orders/risk_assessment_changed',
|
|
10368
10474
|
'products/create',
|
|
10369
10475
|
'products/delete',
|
|
10370
10476
|
'products/update',
|
|
@@ -10737,6 +10843,28 @@ T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'] = PropTypes.
|
|
|
10737
10843
|
short_id: T['io.flow.internal.v0.models.shopify_experience_short_id'].isRequired,
|
|
10738
10844
|
});
|
|
10739
10845
|
|
|
10846
|
+
T['io.flow.internal.v0.models.shopify_dispute'] = PropTypes.exact({
|
|
10847
|
+
id: PropTypes.string.isRequired,
|
|
10848
|
+
organization_id: PropTypes.string.isRequired,
|
|
10849
|
+
authorization_id: PropTypes.string.isRequired,
|
|
10850
|
+
amount: PropTypes.number.isRequired,
|
|
10851
|
+
currency: PropTypes.string.isRequired,
|
|
10852
|
+
status: PropTypes.string.isRequired,
|
|
10853
|
+
category: PropTypes.string.isRequired,
|
|
10854
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
10855
|
+
external_reference_id: PropTypes.string.isRequired,
|
|
10856
|
+
issued_at: PropTypes.string.isRequired,
|
|
10857
|
+
updated_at: PropTypes.string.isRequired,
|
|
10858
|
+
});
|
|
10859
|
+
|
|
10860
|
+
T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
10861
|
+
discriminator: PropTypes.oneOf(['shopify_dispute_upserted']).isRequired,
|
|
10862
|
+
event_id: PropTypes.string.isRequired,
|
|
10863
|
+
timestamp: PropTypes.string.isRequired,
|
|
10864
|
+
organization: PropTypes.string.isRequired,
|
|
10865
|
+
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
10866
|
+
});
|
|
10867
|
+
|
|
10740
10868
|
T['io.flow.internal.v0.enums.shopify_check_inventory_error_code'] = PropTypes.oneOf(['inventory_out_of_stock']);
|
|
10741
10869
|
|
|
10742
10870
|
T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact({
|
|
@@ -10939,10 +11067,17 @@ T['io.flow.internal.v0.models.record_reference'] = PropTypes.exact({
|
|
|
10939
11067
|
});
|
|
10940
11068
|
|
|
10941
11069
|
T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
|
|
11070
|
+
discriminator: PropTypes.oneOf(['refund_reference']).isRequired,
|
|
10942
11071
|
id: PropTypes.string.isRequired,
|
|
10943
11072
|
key: PropTypes.string.isRequired,
|
|
10944
11073
|
});
|
|
10945
11074
|
|
|
11075
|
+
T['io.flow.payment.v0.unions.transfer_reference'] = PropTypes.oneOfType([
|
|
11076
|
+
T['io.flow.payment.v0.models.capture_reference'],
|
|
11077
|
+
T['io.flow.payment.v0.models.refund_reference'],
|
|
11078
|
+
T['io.flow.payment.v0.models.dispute_reference'],
|
|
11079
|
+
]);
|
|
11080
|
+
|
|
10946
11081
|
T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
|
|
10947
11082
|
id: PropTypes.string.isRequired,
|
|
10948
11083
|
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
@@ -11068,6 +11203,7 @@ T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exa
|
|
|
11068
11203
|
});
|
|
11069
11204
|
|
|
11070
11205
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11206
|
+
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11071
11207
|
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
11072
11208
|
|
|
11073
11209
|
T['io.flow.internal.v0.models.restriction_keyword_metadata'] = PropTypes.exact({
|
|
@@ -11195,6 +11331,14 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
11195
11331
|
});
|
|
11196
11332
|
|
|
11197
11333
|
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11334
|
+
|
|
11335
|
+
T['io.flow.internal.v0.enums.merchant_of_record'] = PropTypes.oneOf([
|
|
11336
|
+
'global_e_united_states',
|
|
11337
|
+
'global_e_united_kingdom',
|
|
11338
|
+
'global_e_canada',
|
|
11339
|
+
'global_e_netherlands',
|
|
11340
|
+
]);
|
|
11341
|
+
|
|
11198
11342
|
T['io.flow.internal.v0.enums.report_file_type'] = PropTypes.oneOf(['stripe_connect_report']);
|
|
11199
11343
|
|
|
11200
11344
|
T['io.flow.internal.v0.models.report_record_retry_queue'] = PropTypes.exact({
|
|
@@ -11209,6 +11353,7 @@ T['io.flow.internal.v0.models.report_file'] = PropTypes.exact({
|
|
|
11209
11353
|
id: PropTypes.string.isRequired,
|
|
11210
11354
|
processor: PropTypes.string.isRequired,
|
|
11211
11355
|
report_file_type: T['io.flow.internal.v0.enums.report_file_type'].isRequired,
|
|
11356
|
+
merchant_of_record_identifier: T['io.flow.internal.v0.enums.merchant_of_record'].isRequired,
|
|
11212
11357
|
file_name: PropTypes.string.isRequired,
|
|
11213
11358
|
status: T['io.flow.internal.v0.enums.report_file_status'].isRequired,
|
|
11214
11359
|
failure_reason: PropTypes.string,
|
|
@@ -11947,6 +12092,26 @@ T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'] = PropTyp
|
|
|
11947
12092
|
partner_tracking_subscription: T['io.flow.partner.v0.models.partner_tracking_subscription'].isRequired,
|
|
11948
12093
|
});
|
|
11949
12094
|
|
|
12095
|
+
T['io.flow.internal.v0.models.partner_request'] = PropTypes.exact({
|
|
12096
|
+
id: PropTypes.string.isRequired,
|
|
12097
|
+
partner_id: PropTypes.string.isRequired,
|
|
12098
|
+
organization_id: PropTypes.string.isRequired,
|
|
12099
|
+
method: PropTypes.string.isRequired,
|
|
12100
|
+
path: PropTypes.string.isRequired,
|
|
12101
|
+
request_id: PropTypes.string.isRequired,
|
|
12102
|
+
parameters: PropTypes.objectOf(PropTypes.string),
|
|
12103
|
+
request_body: PropTypes.object,
|
|
12104
|
+
response_body: PropTypes.object,
|
|
12105
|
+
reference_id: PropTypes.string,
|
|
12106
|
+
});
|
|
12107
|
+
|
|
12108
|
+
T['io.flow.internal.v0.models.partner_request_upserted'] = PropTypes.exact({
|
|
12109
|
+
discriminator: PropTypes.oneOf(['partner_request_upserted']).isRequired,
|
|
12110
|
+
event_id: PropTypes.string.isRequired,
|
|
12111
|
+
timestamp: PropTypes.string.isRequired,
|
|
12112
|
+
partner_request: T['io.flow.internal.v0.models.partner_request'].isRequired,
|
|
12113
|
+
});
|
|
12114
|
+
|
|
11950
12115
|
T['io.flow.partner.v0.enums.label_format'] = PropTypes.oneOf(['pdf', 'zpl', 'all']);
|
|
11951
12116
|
|
|
11952
12117
|
T['io.flow.internal.v0.models.partner_organization_settings_form'] = PropTypes.exact({
|
|
@@ -12138,6 +12303,9 @@ T['io.flow.internal.v0.models.organization_metadata'] = PropTypes.exact({
|
|
|
12138
12303
|
last_order_submitted_at: PropTypes.string,
|
|
12139
12304
|
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12140
12305
|
product_categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12306
|
+
matching_negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12307
|
+
decisions_user_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12308
|
+
restriction_rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12141
12309
|
});
|
|
12142
12310
|
|
|
12143
12311
|
T['io.flow.internal.v0.models.organization_metadata_upserted'] = PropTypes.exact({
|
|
@@ -12496,7 +12664,6 @@ T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
|
12496
12664
|
'dtce',
|
|
12497
12665
|
'restrictions',
|
|
12498
12666
|
'organization_status',
|
|
12499
|
-
'category_constraints',
|
|
12500
12667
|
'miscellaneous',
|
|
12501
12668
|
]);
|
|
12502
12669
|
|
|
@@ -12664,6 +12831,7 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12664
12831
|
T['io.flow.internal.v0.enums.merchant_override_status'] = PropTypes.oneOf(['in_review', 'accepted', 'rejected']);
|
|
12665
12832
|
|
|
12666
12833
|
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
12834
|
+
id: PropTypes.string.isRequired,
|
|
12667
12835
|
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12668
12836
|
});
|
|
12669
12837
|
|
|
@@ -12674,6 +12842,9 @@ T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
|
12674
12842
|
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12675
12843
|
hs6_code: PropTypes.string.isRequired,
|
|
12676
12844
|
merchant_hs6_code: PropTypes.string.isRequired,
|
|
12845
|
+
created_at: PropTypes.string.isRequired,
|
|
12846
|
+
updated_at: PropTypes.string.isRequired,
|
|
12847
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
12677
12848
|
});
|
|
12678
12849
|
|
|
12679
12850
|
T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
|
|
@@ -13455,6 +13626,7 @@ T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
|
13455
13626
|
T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
13456
13627
|
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
13457
13628
|
effective_at: PropTypes.string.isRequired,
|
|
13629
|
+
published_at: PropTypes.string,
|
|
13458
13630
|
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
13459
13631
|
service: PropTypes.string.isRequired,
|
|
13460
13632
|
number: PropTypes.string,
|
|
@@ -16533,7 +16705,7 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
|
16533
16705
|
]);
|
|
16534
16706
|
|
|
16535
16707
|
T['io.flow.internal.v0.enums.clothing_age_classification'] = PropTypes.oneOf(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']);
|
|
16536
|
-
T['io.flow.internal.v0.enums.classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML']);
|
|
16708
|
+
T['io.flow.internal.v0.enums.classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
16537
16709
|
T['io.flow.internal.v0.enums.classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
16538
16710
|
|
|
16539
16711
|
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
@@ -17517,6 +17689,13 @@ T['io.flow.internal.v0.models.task'] = PropTypes.exact({
|
|
|
17517
17689
|
snooze_id: PropTypes.string,
|
|
17518
17690
|
});
|
|
17519
17691
|
|
|
17692
|
+
T['io.flow.internal.v0.models.restriction_organization_summary'] = PropTypes.exact({
|
|
17693
|
+
id: PropTypes.string.isRequired,
|
|
17694
|
+
name: PropTypes.string.isRequired,
|
|
17695
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
17696
|
+
source: T['io.flow.internal.v0.enums.organization_source'].isRequired,
|
|
17697
|
+
});
|
|
17698
|
+
|
|
17520
17699
|
T['io.flow.internal.v0.models.partner_form'] = PropTypes.exact({
|
|
17521
17700
|
id: PropTypes.string,
|
|
17522
17701
|
name: PropTypes.string,
|
|
@@ -19349,6 +19528,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19349
19528
|
'virtual_card_refund',
|
|
19350
19529
|
'failed_payout',
|
|
19351
19530
|
'tax_refund',
|
|
19531
|
+
'duty_refund',
|
|
19352
19532
|
'non_l4l_tax_duty_fx',
|
|
19353
19533
|
'ge_revenue_share',
|
|
19354
19534
|
]);
|
|
@@ -20512,7 +20692,6 @@ T['io.flow.internal.v0.models.search_authorization'] = PropTypes.exact({
|
|
|
20512
20692
|
T['io.flow.internal.v0.unions.payment_summary_details'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.search_authorization']]);
|
|
20513
20693
|
|
|
20514
20694
|
T['io.flow.internal.v0.models.shopify_merchant_plan'] = PropTypes.exact({
|
|
20515
|
-
id: PropTypes.string.isRequired,
|
|
20516
20695
|
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
20517
20696
|
plan: T['io.flow.internal.v0.enums.shopify_plan_type'].isRequired,
|
|
20518
20697
|
});
|
|
@@ -21890,6 +22069,13 @@ T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'] = PropTypes
|
|
|
21890
22069
|
ends_at: PropTypes.string,
|
|
21891
22070
|
});
|
|
21892
22071
|
|
|
22072
|
+
T['io.flow.ratecard.v0.models.overweight_piece_surcharge_service_fee'] = PropTypes.exact({
|
|
22073
|
+
discriminator: PropTypes.oneOf(['overweight_piece_surcharge_service_fee']).isRequired,
|
|
22074
|
+
weight_threshold: PropTypes.number,
|
|
22075
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22076
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22077
|
+
});
|
|
22078
|
+
|
|
21893
22079
|
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'] = PropTypes.exact({
|
|
21894
22080
|
discriminator: PropTypes.oneOf(['oversize_piece_surcharge_service_fee']).isRequired,
|
|
21895
22081
|
dimensional_threshold: PropTypes.number,
|
|
@@ -22116,6 +22302,7 @@ T['io.flow.ratecard.v0.unions.service_fee'] = PropTypes.oneOfType([
|
|
|
22116
22302
|
T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'],
|
|
22117
22303
|
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'],
|
|
22118
22304
|
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'],
|
|
22305
|
+
T['io.flow.ratecard.v0.models.overweight_piece_surcharge_service_fee'],
|
|
22119
22306
|
T['io.flow.ratecard.v0.models.remote_area_by_weight_service_fee'],
|
|
22120
22307
|
T['io.flow.ratecard.v0.models.additional_handling_service_fee'],
|
|
22121
22308
|
T['io.flow.ratecard.v0.models.large_package_service_fee'],
|
|
@@ -22286,6 +22473,8 @@ T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
|
22286
22473
|
discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
|
|
22287
22474
|
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop_v2']).isRequired,
|
|
22288
22475
|
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22476
|
+
distance_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22477
|
+
weight_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22289
22478
|
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22290
22479
|
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22291
22480
|
ratecard_id: PropTypes.string,
|
|
@@ -22622,6 +22811,22 @@ T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
|
|
|
22622
22811
|
authorization_request_id: PropTypes.string,
|
|
22623
22812
|
});
|
|
22624
22813
|
|
|
22814
|
+
T['io.flow.payment.v0.models.exchanged_money'] = PropTypes.exact({
|
|
22815
|
+
fx_rate: PropTypes.number.isRequired,
|
|
22816
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22817
|
+
});
|
|
22818
|
+
|
|
22819
|
+
T['io.flow.payment.v0.models.transfer'] = PropTypes.exact({
|
|
22820
|
+
id: PropTypes.string.isRequired,
|
|
22821
|
+
type: T['io.flow.payment.v0.enums.transfer_type'].isRequired,
|
|
22822
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22823
|
+
transferred_money: T['io.flow.payment.v0.models.exchanged_money'].isRequired,
|
|
22824
|
+
status: T['io.flow.payment.v0.enums.transfer_status'].isRequired,
|
|
22825
|
+
created_at: PropTypes.string.isRequired,
|
|
22826
|
+
reference: T['io.flow.payment.v0.unions.transfer_reference'].isRequired,
|
|
22827
|
+
transferred_at: PropTypes.string.isRequired,
|
|
22828
|
+
});
|
|
22829
|
+
|
|
22625
22830
|
T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
22626
22831
|
discriminator: PropTypes.oneOf(['card_authorization']).isRequired,
|
|
22627
22832
|
id: PropTypes.string.isRequired,
|
|
@@ -26814,6 +27019,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26814
27019
|
T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'],
|
|
26815
27020
|
T['io.flow.internal.v0.models.spp_tracker_update_request_upserted'],
|
|
26816
27021
|
T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'],
|
|
27022
|
+
T['io.flow.internal.v0.models.partner_request_upserted'],
|
|
27023
|
+
T['io.flow.internal.v0.models.partner_request_deleted'],
|
|
26817
27024
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
26818
27025
|
T['io.flow.internal.v0.models.internal_authorization_deleted'],
|
|
26819
27026
|
T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
|
|
@@ -26913,6 +27120,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26913
27120
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'],
|
|
26914
27121
|
T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'],
|
|
26915
27122
|
T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'],
|
|
27123
|
+
T['io.flow.internal.v0.models.shopify_dispute_upserted'],
|
|
27124
|
+
T['io.flow.internal.v0.models.shopify_dispute_deleted'],
|
|
26916
27125
|
T['io.flow.internal.v0.models.stripe_authorization_deleted'],
|
|
26917
27126
|
T['io.flow.internal.v0.models.stripe_authorization_upserted'],
|
|
26918
27127
|
T['io.flow.internal.v0.models.stripe_reversal_deleted'],
|
|
@@ -27101,7 +27310,7 @@ T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['non
|
|
|
27101
27310
|
T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
|
|
27102
27311
|
T['io.flow.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
|
|
27103
27312
|
T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
|
|
27104
|
-
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
27313
|
+
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
|
|
27105
27314
|
|
|
27106
27315
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27107
27316
|
'adyen_authorization_deleted',
|
|
@@ -27331,6 +27540,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27331
27540
|
'partner_tracking_subscription_deleted',
|
|
27332
27541
|
'spp_tracker_update_request_upserted',
|
|
27333
27542
|
'spp_tracker_update_request_deleted',
|
|
27543
|
+
'partner_request_upserted',
|
|
27544
|
+
'partner_request_deleted',
|
|
27334
27545
|
'internal_authorization_upserted',
|
|
27335
27546
|
'internal_authorization_deleted',
|
|
27336
27547
|
'afterpay_authorization_upserted',
|
|
@@ -27430,6 +27641,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27430
27641
|
'shopify_order_fulfillments_snapshot_deleted',
|
|
27431
27642
|
'shopify_merchant_plan_upserted',
|
|
27432
27643
|
'shopify_merchant_plan_deleted',
|
|
27644
|
+
'shopify_dispute_upserted',
|
|
27645
|
+
'shopify_dispute_deleted',
|
|
27433
27646
|
'stripe_authorization_deleted',
|
|
27434
27647
|
'stripe_authorization_upserted',
|
|
27435
27648
|
'stripe_reversal_deleted',
|
|
@@ -29348,6 +29561,12 @@ T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'] = PropTypes
|
|
|
29348
29561
|
zip: PropTypes.string.isRequired,
|
|
29349
29562
|
});
|
|
29350
29563
|
|
|
29564
|
+
T['io.flow.shopify.markets.v0.models.shopify_order_risk_assessment_changed'] = PropTypes.exact({
|
|
29565
|
+
order_id: PropTypes.number.isRequired,
|
|
29566
|
+
risk_level: PropTypes.string.isRequired,
|
|
29567
|
+
created_at: PropTypes.string.isRequired,
|
|
29568
|
+
});
|
|
29569
|
+
|
|
29351
29570
|
T['io.flow.shopify.markets.v0.models.shopify_webhook_shop_redact'] = PropTypes.exact({
|
|
29352
29571
|
shop_id: PropTypes.number.isRequired,
|
|
29353
29572
|
shop_domain: PropTypes.string.isRequired,
|
|
@@ -30272,6 +30491,8 @@ export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
|
|
|
30272
30491
|
export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
|
|
30273
30492
|
export const complianceType = T['io.flow.internal.v0.enums.compliance_type'];
|
|
30274
30493
|
export const components = T['io.flow.internal.v0.models.components'];
|
|
30494
|
+
export const connectReportPaymentTransferType = T['io.flow.internal.v0.enums.connect_report_payment_transfer_type'];
|
|
30495
|
+
export const connectReportTransferTransferType = T['io.flow.internal.v0.enums.connect_report_transfer_transfer_type'];
|
|
30275
30496
|
export const consoleLabelRequestForm = T['io.flow.internal.v0.models.console_label_request_form'];
|
|
30276
30497
|
export const consoleLabelValidationForm = T['io.flow.internal.v0.unions.console_label_validation_form'];
|
|
30277
30498
|
export const consoleMarkUnresolvableForm = T['io.flow.internal.v0.models.console_mark_unresolvable_form'];
|
|
@@ -30826,6 +31047,7 @@ export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merch
|
|
|
30826
31047
|
export const merchantGuidAssignmentUpserted = T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'];
|
|
30827
31048
|
export const merchantHubOverride = T['io.flow.internal.v0.models.merchant_hub_override'];
|
|
30828
31049
|
export const merchantHubOverrideForm = T['io.flow.internal.v0.models.merchant_hub_override_form'];
|
|
31050
|
+
export const merchantOfRecord = T['io.flow.internal.v0.enums.merchant_of_record'];
|
|
30829
31051
|
export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
|
|
30830
31052
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
30831
31053
|
export const merchantOverride = T['io.flow.internal.v0.models.merchant_override'];
|
|
@@ -30978,6 +31200,7 @@ export const organizationRestrictionStatusNote = T['io.flow.internal.v0.models.o
|
|
|
30978
31200
|
export const organizationRestrictionStatusUpserted = T['io.flow.internal.v0.models.organization_restriction_status_upserted'];
|
|
30979
31201
|
export const organizationSettings = T['io.flow.internal.v0.models.organization_settings'];
|
|
30980
31202
|
export const organizationSettingsForm = T['io.flow.internal.v0.models.organization_settings_form'];
|
|
31203
|
+
export const organizationSource = T['io.flow.internal.v0.enums.organization_source'];
|
|
30981
31204
|
export const organizationStatusChange = T['io.flow.internal.v0.models.organization_status_change'];
|
|
30982
31205
|
export const organizationStatusChangeDeleted = T['io.flow.internal.v0.models.organization_status_change_deleted'];
|
|
30983
31206
|
export const organizationStatusChangeUpserted = T['io.flow.internal.v0.models.organization_status_change_upserted'];
|
|
@@ -31020,6 +31243,9 @@ export const partnerOrganizationSettings = T['io.flow.internal.v0.models.partner
|
|
|
31020
31243
|
export const partnerOrganizationSettingsDeleted = T['io.flow.internal.v0.models.partner_organization_settings_deleted'];
|
|
31021
31244
|
export const partnerOrganizationSettingsForm = T['io.flow.internal.v0.models.partner_organization_settings_form'];
|
|
31022
31245
|
export const partnerOrganizationSettingsUpserted = T['io.flow.internal.v0.models.partner_organization_settings_upserted'];
|
|
31246
|
+
export const partnerRequest = T['io.flow.internal.v0.models.partner_request'];
|
|
31247
|
+
export const partnerRequestDeleted = T['io.flow.internal.v0.models.partner_request_deleted'];
|
|
31248
|
+
export const partnerRequestUpserted = T['io.flow.internal.v0.models.partner_request_upserted'];
|
|
31023
31249
|
export const partnerTrackingSubscriptionDeleted = T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'];
|
|
31024
31250
|
export const partnerTrackingSubscriptionUpserted = T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'];
|
|
31025
31251
|
export const passphrase = T['io.flow.internal.v0.models.passphrase'];
|
|
@@ -31275,6 +31501,7 @@ export const restrictionOrganizationDecisionSummary = T['io.flow.internal.v0.mod
|
|
|
31275
31501
|
export const restrictionOrganizationStatus = T['io.flow.internal.v0.models.restriction_organization_status'];
|
|
31276
31502
|
export const restrictionOrganizationStatusDeleted = T['io.flow.internal.v0.models.restriction_organization_status_deleted'];
|
|
31277
31503
|
export const restrictionOrganizationStatusUpserted = T['io.flow.internal.v0.models.restriction_organization_status_upserted'];
|
|
31504
|
+
export const restrictionOrganizationSummary = T['io.flow.internal.v0.models.restriction_organization_summary'];
|
|
31278
31505
|
export const restrictionPending = T['io.flow.internal.v0.models.restriction_pending'];
|
|
31279
31506
|
export const restrictionProduct = T['io.flow.internal.v0.models.restriction_product'];
|
|
31280
31507
|
export const restrictionProductDecisionForm = T['io.flow.internal.v0.models.restriction_product_decision_form'];
|
|
@@ -31355,6 +31582,9 @@ export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.sh
|
|
|
31355
31582
|
export const shopifyCheckInventoryError = T['io.flow.internal.v0.models.shopify_check_inventory_error'];
|
|
31356
31583
|
export const shopifyCheckInventoryErrorCode = T['io.flow.internal.v0.enums.shopify_check_inventory_error_code'];
|
|
31357
31584
|
export const shopifyCodeForm = T['io.flow.internal.v0.models.shopify_code_form'];
|
|
31585
|
+
export const shopifyDispute = T['io.flow.internal.v0.models.shopify_dispute'];
|
|
31586
|
+
export const shopifyDisputeDeleted = T['io.flow.internal.v0.models.shopify_dispute_deleted'];
|
|
31587
|
+
export const shopifyDisputeUpserted = T['io.flow.internal.v0.models.shopify_dispute_upserted'];
|
|
31358
31588
|
export const shopifyExperienceShortId = T['io.flow.internal.v0.models.shopify_experience_short_id'];
|
|
31359
31589
|
export const shopifyExperienceShortIdDeleted = T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'];
|
|
31360
31590
|
export const shopifyExperienceShortIdUpserted = T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'];
|
|
@@ -31548,6 +31778,9 @@ export const stripeCaptureDeleted = T['io.flow.internal.v0.models.stripe_capture
|
|
|
31548
31778
|
export const stripeCaptureUpserted = T['io.flow.internal.v0.models.stripe_capture_upserted'];
|
|
31549
31779
|
export const stripeConnectReportRecord = T['io.flow.internal.v0.models.stripe_connect_report_record'];
|
|
31550
31780
|
export const stripeConnectReportRecordDeleted = T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'];
|
|
31781
|
+
export const stripeConnectReportRecordMetadata = T['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'];
|
|
31782
|
+
export const stripeConnectReportRecordPaymentMetadata = T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'];
|
|
31783
|
+
export const stripeConnectReportRecordTransferMetadata = T['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata'];
|
|
31551
31784
|
export const stripeConnectReportRecordUpserted = T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'];
|
|
31552
31785
|
export const stripeDisputeDeleted = T['io.flow.internal.v0.models.stripe_dispute_deleted'];
|
|
31553
31786
|
export const stripeDisputeUpserted = T['io.flow.internal.v0.models.stripe_dispute_upserted'];
|