@flowio/api-internal-prop-types 9.24.112 → 9.24.113
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 +150 -52
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +150 -52
- package/src/api-internal.js +308 -130
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,82 @@ 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
|
-
'bank_cannot_process',
|
|
9613
|
-
'check_returned',
|
|
9614
|
-
'credit_not_processed',
|
|
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',
|
|
9626
|
-
]);
|
|
9627
|
-
|
|
9628
|
-
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
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([
|
|
9698
|
+
T['io.flow.internal.v0.enums.connect_report_transfer_type'] = PropTypes.oneOf([
|
|
9666
9699
|
'ManagedMarketsRefundDebit',
|
|
9667
9700
|
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
9668
9701
|
'ManagedMarketsDisputedAmountDebit',
|
|
9702
|
+
'ManagedMarketsChargeCredit',
|
|
9703
|
+
'ManagedMarketsDisputeWonAmountCredit',
|
|
9704
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentCredit',
|
|
9669
9705
|
]);
|
|
9670
9706
|
|
|
9671
|
-
T['io.flow.stripe.v0.enums.
|
|
9672
|
-
|
|
9673
|
-
|
|
9674
|
-
|
|
9675
|
-
|
|
9676
|
-
|
|
9677
|
-
|
|
9678
|
-
|
|
9679
|
-
|
|
9680
|
-
|
|
9681
|
-
charge_total: PropTypes.number,
|
|
9682
|
-
charge_currency: PropTypes.string,
|
|
9683
|
-
charge_exchange_rate: PropTypes.number,
|
|
9684
|
-
duties: PropTypes.number,
|
|
9685
|
-
import_taxes: PropTypes.number,
|
|
9686
|
-
mor_fee: PropTypes.number,
|
|
9687
|
-
fx_fee: PropTypes.number,
|
|
9688
|
-
});
|
|
9707
|
+
T['io.flow.stripe.v0.enums.connect_report_connect_reporting_category'] = PropTypes.oneOf([
|
|
9708
|
+
'advance',
|
|
9709
|
+
'advance_funding',
|
|
9710
|
+
'connect_collection_transfer',
|
|
9711
|
+
'connect_reserved_funds',
|
|
9712
|
+
'platform_earning',
|
|
9713
|
+
'platform_earning_refund',
|
|
9714
|
+
'transfer',
|
|
9715
|
+
'transfer_reversal',
|
|
9716
|
+
]);
|
|
9689
9717
|
|
|
9690
|
-
T['io.flow.stripe.v0.enums.
|
|
9718
|
+
T['io.flow.stripe.v0.enums.connect_report_issuing_reporting_category'] = PropTypes.oneOf([
|
|
9719
|
+
'issuing_authorization_hold',
|
|
9720
|
+
'issuing_authorization_release',
|
|
9721
|
+
'issuing_disbursement',
|
|
9722
|
+
'issuing_dispute',
|
|
9723
|
+
'issuing_dispute_fraud_liability_debit',
|
|
9724
|
+
'issuing_dispute_provisional_credit',
|
|
9725
|
+
'issuing_dispute_provisional_credit_reversal',
|
|
9726
|
+
'issuing_transaction',
|
|
9727
|
+
]);
|
|
9691
9728
|
|
|
9692
|
-
T['io.flow.stripe.v0.
|
|
9693
|
-
|
|
9694
|
-
|
|
9695
|
-
|
|
9696
|
-
|
|
9697
|
-
|
|
9698
|
-
|
|
9699
|
-
|
|
9700
|
-
|
|
9701
|
-
|
|
9702
|
-
|
|
9703
|
-
|
|
9704
|
-
|
|
9705
|
-
|
|
9706
|
-
|
|
9707
|
-
|
|
9708
|
-
|
|
9709
|
-
|
|
9710
|
-
|
|
9711
|
-
|
|
9712
|
-
|
|
9713
|
-
});
|
|
9729
|
+
T['io.flow.stripe.v0.enums.connect_report_balance_reporting_category'] = PropTypes.oneOf([
|
|
9730
|
+
'anticipation_repayment',
|
|
9731
|
+
'climate_order_purchase',
|
|
9732
|
+
'climate_order_refund',
|
|
9733
|
+
'contribution',
|
|
9734
|
+
'currency_conversion',
|
|
9735
|
+
'fee',
|
|
9736
|
+
'other_adjustment',
|
|
9737
|
+
'payment_network_reserve_hold',
|
|
9738
|
+
'payment_network_reserve_release',
|
|
9739
|
+
'payout',
|
|
9740
|
+
'payout_minimum_balance_hold',
|
|
9741
|
+
'payout_minimum_balance_release',
|
|
9742
|
+
'payout_reversal',
|
|
9743
|
+
'risk_reserved_funds',
|
|
9744
|
+
'stripe_balance_payment_debit',
|
|
9745
|
+
'stripe_balance_payment_debit_reversal',
|
|
9746
|
+
'topup',
|
|
9747
|
+
'topup_reversal',
|
|
9748
|
+
'unreconciled_customer_funds',
|
|
9749
|
+
]);
|
|
9714
9750
|
|
|
9715
|
-
T['io.flow.
|
|
9716
|
-
|
|
9717
|
-
|
|
9718
|
-
|
|
9719
|
-
|
|
9720
|
-
|
|
9751
|
+
T['io.flow.stripe.v0.enums.connect_report_payment_reporting_category'] = PropTypes.oneOf([
|
|
9752
|
+
'charge',
|
|
9753
|
+
'charge_failure',
|
|
9754
|
+
'dispute',
|
|
9755
|
+
'dispute_reversal',
|
|
9756
|
+
'partial_capture_reversal',
|
|
9757
|
+
'refund',
|
|
9758
|
+
'refund_failure',
|
|
9759
|
+
]);
|
|
9721
9760
|
|
|
9722
|
-
T['io.flow.
|
|
9723
|
-
|
|
9724
|
-
|
|
9725
|
-
|
|
9726
|
-
|
|
9727
|
-
|
|
9728
|
-
|
|
9729
|
-
|
|
9730
|
-
|
|
9731
|
-
|
|
9732
|
-
|
|
9733
|
-
|
|
9734
|
-
|
|
9735
|
-
dispute_reason: PropTypes.string,
|
|
9736
|
-
available_on_utc: PropTypes.string.isRequired,
|
|
9737
|
-
automatic_payout_effective_at_utc: PropTypes.string,
|
|
9738
|
-
source_id: PropTypes.string,
|
|
9739
|
-
customer_facing_amount: PropTypes.number,
|
|
9740
|
-
customer_facing_currency: PropTypes.string,
|
|
9741
|
-
payment_method_type: PropTypes.string,
|
|
9742
|
-
card_brand: PropTypes.string,
|
|
9743
|
-
statement_descriptor: PropTypes.string,
|
|
9744
|
-
payment_metadata: T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'],
|
|
9745
|
-
transfer_metadata: PropTypes.object,
|
|
9746
|
-
});
|
|
9761
|
+
T['io.flow.stripe.v0.unions.connect_report_reporting_category'] = PropTypes.oneOfType([PropTypes.exact({
|
|
9762
|
+
discriminator: PropTypes.oneOf(['connect_report_payment_reporting_category']).isRequired,
|
|
9763
|
+
value: T['io.flow.stripe.v0.enums.connect_report_payment_reporting_category'],
|
|
9764
|
+
}), PropTypes.exact({
|
|
9765
|
+
discriminator: PropTypes.oneOf(['connect_report_balance_reporting_category']).isRequired,
|
|
9766
|
+
value: T['io.flow.stripe.v0.enums.connect_report_balance_reporting_category'],
|
|
9767
|
+
}), PropTypes.exact({
|
|
9768
|
+
discriminator: PropTypes.oneOf(['connect_report_issuing_reporting_category']).isRequired,
|
|
9769
|
+
value: T['io.flow.stripe.v0.enums.connect_report_issuing_reporting_category'],
|
|
9770
|
+
}), PropTypes.exact({
|
|
9771
|
+
discriminator: PropTypes.oneOf(['connect_report_connect_reporting_category']).isRequired,
|
|
9772
|
+
value: T['io.flow.stripe.v0.enums.connect_report_connect_reporting_category'],
|
|
9773
|
+
})]);
|
|
9747
9774
|
|
|
9748
9775
|
T['io.flow.internal.v0.models.stripe_internal_capture'] = PropTypes.exact({
|
|
9749
9776
|
id: PropTypes.string.isRequired,
|
|
@@ -10348,6 +10375,57 @@ T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropType
|
|
|
10348
10375
|
]);
|
|
10349
10376
|
|
|
10350
10377
|
T['io.flow.internal.v0.enums.shopify_plan_type'] = PropTypes.oneOf(['standard', 'shopify_plus']);
|
|
10378
|
+
|
|
10379
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'] = PropTypes.exact({
|
|
10380
|
+
shop_id: PropTypes.number,
|
|
10381
|
+
shop_plan: T['io.flow.internal.v0.enums.shopify_plan_type'],
|
|
10382
|
+
checkout_id: PropTypes.string,
|
|
10383
|
+
order_id: PropTypes.number,
|
|
10384
|
+
order_transaction_id: PropTypes.number,
|
|
10385
|
+
transfer_type: T['io.flow.internal.v0.enums.connect_report_transfer_type'],
|
|
10386
|
+
transfer_exchange_rate: PropTypes.number,
|
|
10387
|
+
charge_total: PropTypes.number,
|
|
10388
|
+
charge_currency: PropTypes.string,
|
|
10389
|
+
charge_exchange_rate: PropTypes.number,
|
|
10390
|
+
duties: PropTypes.number,
|
|
10391
|
+
import_taxes: PropTypes.number,
|
|
10392
|
+
mor_fee: PropTypes.number,
|
|
10393
|
+
fx_fee: PropTypes.number,
|
|
10394
|
+
});
|
|
10395
|
+
|
|
10396
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record'] = PropTypes.exact({
|
|
10397
|
+
id: PropTypes.string.isRequired,
|
|
10398
|
+
file_id: PropTypes.string.isRequired,
|
|
10399
|
+
line_number: PropTypes.number.isRequired,
|
|
10400
|
+
created_utc: PropTypes.string.isRequired,
|
|
10401
|
+
charge_id: PropTypes.string,
|
|
10402
|
+
payment_intent_id: PropTypes.string,
|
|
10403
|
+
gross: PropTypes.number.isRequired,
|
|
10404
|
+
fee: PropTypes.number.isRequired,
|
|
10405
|
+
net: PropTypes.number.isRequired,
|
|
10406
|
+
currency: PropTypes.string.isRequired,
|
|
10407
|
+
connected_account: PropTypes.string.isRequired,
|
|
10408
|
+
reporting_category: T['io.flow.stripe.v0.unions.connect_report_reporting_category'].isRequired,
|
|
10409
|
+
dispute_reason: PropTypes.string,
|
|
10410
|
+
available_on_utc: PropTypes.string.isRequired,
|
|
10411
|
+
automatic_payout_effective_at_utc: PropTypes.string,
|
|
10412
|
+
source_id: PropTypes.string,
|
|
10413
|
+
customer_facing_amount: PropTypes.number,
|
|
10414
|
+
customer_facing_currency: PropTypes.string,
|
|
10415
|
+
payment_method_type: PropTypes.string,
|
|
10416
|
+
card_brand: PropTypes.string,
|
|
10417
|
+
statement_descriptor: PropTypes.string,
|
|
10418
|
+
payment_metadata: T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'],
|
|
10419
|
+
transfer_metadata: PropTypes.object,
|
|
10420
|
+
});
|
|
10421
|
+
|
|
10422
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropTypes.exact({
|
|
10423
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_upserted']).isRequired,
|
|
10424
|
+
event_id: PropTypes.string.isRequired,
|
|
10425
|
+
timestamp: PropTypes.string.isRequired,
|
|
10426
|
+
record: T['io.flow.internal.v0.models.stripe_connect_report_record'].isRequired,
|
|
10427
|
+
});
|
|
10428
|
+
|
|
10351
10429
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
|
|
10352
10430
|
|
|
10353
10431
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
@@ -10737,6 +10815,28 @@ T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'] = PropTypes.
|
|
|
10737
10815
|
short_id: T['io.flow.internal.v0.models.shopify_experience_short_id'].isRequired,
|
|
10738
10816
|
});
|
|
10739
10817
|
|
|
10818
|
+
T['io.flow.internal.v0.models.shopify_dispute'] = PropTypes.exact({
|
|
10819
|
+
id: PropTypes.string.isRequired,
|
|
10820
|
+
organization_id: PropTypes.string.isRequired,
|
|
10821
|
+
authorization_id: PropTypes.string.isRequired,
|
|
10822
|
+
amount: PropTypes.number.isRequired,
|
|
10823
|
+
currency: PropTypes.string.isRequired,
|
|
10824
|
+
status: PropTypes.string.isRequired,
|
|
10825
|
+
category: PropTypes.string.isRequired,
|
|
10826
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
10827
|
+
external_reference_id: PropTypes.string.isRequired,
|
|
10828
|
+
issued_at: PropTypes.string.isRequired,
|
|
10829
|
+
updated_at: PropTypes.string.isRequired,
|
|
10830
|
+
});
|
|
10831
|
+
|
|
10832
|
+
T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
10833
|
+
discriminator: PropTypes.oneOf(['shopify_dispute_upserted']).isRequired,
|
|
10834
|
+
event_id: PropTypes.string.isRequired,
|
|
10835
|
+
timestamp: PropTypes.string.isRequired,
|
|
10836
|
+
organization: PropTypes.string.isRequired,
|
|
10837
|
+
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
10838
|
+
});
|
|
10839
|
+
|
|
10740
10840
|
T['io.flow.internal.v0.enums.shopify_check_inventory_error_code'] = PropTypes.oneOf(['inventory_out_of_stock']);
|
|
10741
10841
|
|
|
10742
10842
|
T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact({
|
|
@@ -10939,10 +11039,17 @@ T['io.flow.internal.v0.models.record_reference'] = PropTypes.exact({
|
|
|
10939
11039
|
});
|
|
10940
11040
|
|
|
10941
11041
|
T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
|
|
11042
|
+
discriminator: PropTypes.oneOf(['refund_reference']).isRequired,
|
|
10942
11043
|
id: PropTypes.string.isRequired,
|
|
10943
11044
|
key: PropTypes.string.isRequired,
|
|
10944
11045
|
});
|
|
10945
11046
|
|
|
11047
|
+
T['io.flow.payment.v0.unions.transfer_reference'] = PropTypes.oneOfType([
|
|
11048
|
+
T['io.flow.payment.v0.models.capture_reference'],
|
|
11049
|
+
T['io.flow.payment.v0.models.refund_reference'],
|
|
11050
|
+
T['io.flow.payment.v0.models.dispute_reference'],
|
|
11051
|
+
]);
|
|
11052
|
+
|
|
10946
11053
|
T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
|
|
10947
11054
|
id: PropTypes.string.isRequired,
|
|
10948
11055
|
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
@@ -11195,6 +11302,14 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
11195
11302
|
});
|
|
11196
11303
|
|
|
11197
11304
|
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11305
|
+
|
|
11306
|
+
T['io.flow.internal.v0.enums.merchant_of_record'] = PropTypes.oneOf([
|
|
11307
|
+
'global_e_united_states',
|
|
11308
|
+
'global_e_united_kingdom',
|
|
11309
|
+
'global_e_canada',
|
|
11310
|
+
'global_e_netherlands',
|
|
11311
|
+
]);
|
|
11312
|
+
|
|
11198
11313
|
T['io.flow.internal.v0.enums.report_file_type'] = PropTypes.oneOf(['stripe_connect_report']);
|
|
11199
11314
|
|
|
11200
11315
|
T['io.flow.internal.v0.models.report_record_retry_queue'] = PropTypes.exact({
|
|
@@ -11209,6 +11324,7 @@ T['io.flow.internal.v0.models.report_file'] = PropTypes.exact({
|
|
|
11209
11324
|
id: PropTypes.string.isRequired,
|
|
11210
11325
|
processor: PropTypes.string.isRequired,
|
|
11211
11326
|
report_file_type: T['io.flow.internal.v0.enums.report_file_type'].isRequired,
|
|
11327
|
+
merchant_of_record_identifier: T['io.flow.internal.v0.enums.merchant_of_record'].isRequired,
|
|
11212
11328
|
file_name: PropTypes.string.isRequired,
|
|
11213
11329
|
status: T['io.flow.internal.v0.enums.report_file_status'].isRequired,
|
|
11214
11330
|
failure_reason: PropTypes.string,
|
|
@@ -11947,6 +12063,26 @@ T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'] = PropTyp
|
|
|
11947
12063
|
partner_tracking_subscription: T['io.flow.partner.v0.models.partner_tracking_subscription'].isRequired,
|
|
11948
12064
|
});
|
|
11949
12065
|
|
|
12066
|
+
T['io.flow.internal.v0.models.partner_request'] = PropTypes.exact({
|
|
12067
|
+
id: PropTypes.string.isRequired,
|
|
12068
|
+
partner_id: PropTypes.string.isRequired,
|
|
12069
|
+
organization_id: PropTypes.string.isRequired,
|
|
12070
|
+
method: PropTypes.string.isRequired,
|
|
12071
|
+
path: PropTypes.string.isRequired,
|
|
12072
|
+
request_id: PropTypes.string.isRequired,
|
|
12073
|
+
parameters: PropTypes.objectOf(PropTypes.string),
|
|
12074
|
+
request_body: PropTypes.object,
|
|
12075
|
+
response_body: PropTypes.object,
|
|
12076
|
+
reference_id: PropTypes.string,
|
|
12077
|
+
});
|
|
12078
|
+
|
|
12079
|
+
T['io.flow.internal.v0.models.partner_request_upserted'] = PropTypes.exact({
|
|
12080
|
+
discriminator: PropTypes.oneOf(['partner_request_upserted']).isRequired,
|
|
12081
|
+
event_id: PropTypes.string.isRequired,
|
|
12082
|
+
timestamp: PropTypes.string.isRequired,
|
|
12083
|
+
partner_request: T['io.flow.internal.v0.models.partner_request'].isRequired,
|
|
12084
|
+
});
|
|
12085
|
+
|
|
11950
12086
|
T['io.flow.partner.v0.enums.label_format'] = PropTypes.oneOf(['pdf', 'zpl', 'all']);
|
|
11951
12087
|
|
|
11952
12088
|
T['io.flow.internal.v0.models.partner_organization_settings_form'] = PropTypes.exact({
|
|
@@ -12138,6 +12274,9 @@ T['io.flow.internal.v0.models.organization_metadata'] = PropTypes.exact({
|
|
|
12138
12274
|
last_order_submitted_at: PropTypes.string,
|
|
12139
12275
|
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12140
12276
|
product_categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12277
|
+
matching_negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12278
|
+
decisions_user_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12279
|
+
restriction_rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12141
12280
|
});
|
|
12142
12281
|
|
|
12143
12282
|
T['io.flow.internal.v0.models.organization_metadata_upserted'] = PropTypes.exact({
|
|
@@ -12496,7 +12635,6 @@ T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
|
12496
12635
|
'dtce',
|
|
12497
12636
|
'restrictions',
|
|
12498
12637
|
'organization_status',
|
|
12499
|
-
'category_constraints',
|
|
12500
12638
|
'miscellaneous',
|
|
12501
12639
|
]);
|
|
12502
12640
|
|
|
@@ -12664,6 +12802,7 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12664
12802
|
T['io.flow.internal.v0.enums.merchant_override_status'] = PropTypes.oneOf(['in_review', 'accepted', 'rejected']);
|
|
12665
12803
|
|
|
12666
12804
|
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
12805
|
+
id: PropTypes.string.isRequired,
|
|
12667
12806
|
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12668
12807
|
});
|
|
12669
12808
|
|
|
@@ -12674,6 +12813,9 @@ T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
|
12674
12813
|
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12675
12814
|
hs6_code: PropTypes.string.isRequired,
|
|
12676
12815
|
merchant_hs6_code: PropTypes.string.isRequired,
|
|
12816
|
+
created_at: PropTypes.string.isRequired,
|
|
12817
|
+
updated_at: PropTypes.string.isRequired,
|
|
12818
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
12677
12819
|
});
|
|
12678
12820
|
|
|
12679
12821
|
T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
|
|
@@ -16533,7 +16675,7 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
|
16533
16675
|
]);
|
|
16534
16676
|
|
|
16535
16677
|
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']);
|
|
16678
|
+
T['io.flow.internal.v0.enums.classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
16537
16679
|
T['io.flow.internal.v0.enums.classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
16538
16680
|
|
|
16539
16681
|
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
@@ -19349,6 +19491,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19349
19491
|
'virtual_card_refund',
|
|
19350
19492
|
'failed_payout',
|
|
19351
19493
|
'tax_refund',
|
|
19494
|
+
'duty_refund',
|
|
19352
19495
|
'non_l4l_tax_duty_fx',
|
|
19353
19496
|
'ge_revenue_share',
|
|
19354
19497
|
]);
|
|
@@ -22286,6 +22429,8 @@ T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
|
22286
22429
|
discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
|
|
22287
22430
|
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop_v2']).isRequired,
|
|
22288
22431
|
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22432
|
+
distance_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22433
|
+
weight_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22289
22434
|
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22290
22435
|
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22291
22436
|
ratecard_id: PropTypes.string,
|
|
@@ -22622,6 +22767,22 @@ T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
|
|
|
22622
22767
|
authorization_request_id: PropTypes.string,
|
|
22623
22768
|
});
|
|
22624
22769
|
|
|
22770
|
+
T['io.flow.payment.v0.models.exchanged_money'] = PropTypes.exact({
|
|
22771
|
+
fx_rate: PropTypes.number.isRequired,
|
|
22772
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22773
|
+
});
|
|
22774
|
+
|
|
22775
|
+
T['io.flow.payment.v0.models.transfer'] = PropTypes.exact({
|
|
22776
|
+
id: PropTypes.string.isRequired,
|
|
22777
|
+
type: T['io.flow.payment.v0.enums.transfer_type'].isRequired,
|
|
22778
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22779
|
+
transferred_money: T['io.flow.payment.v0.models.exchanged_money'].isRequired,
|
|
22780
|
+
status: T['io.flow.payment.v0.enums.transfer_status'].isRequired,
|
|
22781
|
+
created_at: PropTypes.string.isRequired,
|
|
22782
|
+
reference: T['io.flow.payment.v0.unions.transfer_reference'].isRequired,
|
|
22783
|
+
transferred_at: PropTypes.string.isRequired,
|
|
22784
|
+
});
|
|
22785
|
+
|
|
22625
22786
|
T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
22626
22787
|
discriminator: PropTypes.oneOf(['card_authorization']).isRequired,
|
|
22627
22788
|
id: PropTypes.string.isRequired,
|
|
@@ -26814,6 +26975,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26814
26975
|
T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'],
|
|
26815
26976
|
T['io.flow.internal.v0.models.spp_tracker_update_request_upserted'],
|
|
26816
26977
|
T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'],
|
|
26978
|
+
T['io.flow.internal.v0.models.partner_request_upserted'],
|
|
26979
|
+
T['io.flow.internal.v0.models.partner_request_deleted'],
|
|
26817
26980
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
26818
26981
|
T['io.flow.internal.v0.models.internal_authorization_deleted'],
|
|
26819
26982
|
T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
|
|
@@ -26913,6 +27076,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26913
27076
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'],
|
|
26914
27077
|
T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'],
|
|
26915
27078
|
T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'],
|
|
27079
|
+
T['io.flow.internal.v0.models.shopify_dispute_upserted'],
|
|
27080
|
+
T['io.flow.internal.v0.models.shopify_dispute_deleted'],
|
|
26916
27081
|
T['io.flow.internal.v0.models.stripe_authorization_deleted'],
|
|
26917
27082
|
T['io.flow.internal.v0.models.stripe_authorization_upserted'],
|
|
26918
27083
|
T['io.flow.internal.v0.models.stripe_reversal_deleted'],
|
|
@@ -27101,7 +27266,7 @@ T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['non
|
|
|
27101
27266
|
T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
|
|
27102
27267
|
T['io.flow.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
|
|
27103
27268
|
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']);
|
|
27269
|
+
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
|
|
27105
27270
|
|
|
27106
27271
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27107
27272
|
'adyen_authorization_deleted',
|
|
@@ -27331,6 +27496,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27331
27496
|
'partner_tracking_subscription_deleted',
|
|
27332
27497
|
'spp_tracker_update_request_upserted',
|
|
27333
27498
|
'spp_tracker_update_request_deleted',
|
|
27499
|
+
'partner_request_upserted',
|
|
27500
|
+
'partner_request_deleted',
|
|
27334
27501
|
'internal_authorization_upserted',
|
|
27335
27502
|
'internal_authorization_deleted',
|
|
27336
27503
|
'afterpay_authorization_upserted',
|
|
@@ -27430,6 +27597,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27430
27597
|
'shopify_order_fulfillments_snapshot_deleted',
|
|
27431
27598
|
'shopify_merchant_plan_upserted',
|
|
27432
27599
|
'shopify_merchant_plan_deleted',
|
|
27600
|
+
'shopify_dispute_upserted',
|
|
27601
|
+
'shopify_dispute_deleted',
|
|
27433
27602
|
'stripe_authorization_deleted',
|
|
27434
27603
|
'stripe_authorization_upserted',
|
|
27435
27604
|
'stripe_reversal_deleted',
|
|
@@ -30272,6 +30441,7 @@ export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
|
|
|
30272
30441
|
export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
|
|
30273
30442
|
export const complianceType = T['io.flow.internal.v0.enums.compliance_type'];
|
|
30274
30443
|
export const components = T['io.flow.internal.v0.models.components'];
|
|
30444
|
+
export const connectReportTransferType = T['io.flow.internal.v0.enums.connect_report_transfer_type'];
|
|
30275
30445
|
export const consoleLabelRequestForm = T['io.flow.internal.v0.models.console_label_request_form'];
|
|
30276
30446
|
export const consoleLabelValidationForm = T['io.flow.internal.v0.unions.console_label_validation_form'];
|
|
30277
30447
|
export const consoleMarkUnresolvableForm = T['io.flow.internal.v0.models.console_mark_unresolvable_form'];
|
|
@@ -30826,6 +30996,7 @@ export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merch
|
|
|
30826
30996
|
export const merchantGuidAssignmentUpserted = T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'];
|
|
30827
30997
|
export const merchantHubOverride = T['io.flow.internal.v0.models.merchant_hub_override'];
|
|
30828
30998
|
export const merchantHubOverrideForm = T['io.flow.internal.v0.models.merchant_hub_override_form'];
|
|
30999
|
+
export const merchantOfRecord = T['io.flow.internal.v0.enums.merchant_of_record'];
|
|
30829
31000
|
export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
|
|
30830
31001
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
30831
31002
|
export const merchantOverride = T['io.flow.internal.v0.models.merchant_override'];
|
|
@@ -31020,6 +31191,9 @@ export const partnerOrganizationSettings = T['io.flow.internal.v0.models.partner
|
|
|
31020
31191
|
export const partnerOrganizationSettingsDeleted = T['io.flow.internal.v0.models.partner_organization_settings_deleted'];
|
|
31021
31192
|
export const partnerOrganizationSettingsForm = T['io.flow.internal.v0.models.partner_organization_settings_form'];
|
|
31022
31193
|
export const partnerOrganizationSettingsUpserted = T['io.flow.internal.v0.models.partner_organization_settings_upserted'];
|
|
31194
|
+
export const partnerRequest = T['io.flow.internal.v0.models.partner_request'];
|
|
31195
|
+
export const partnerRequestDeleted = T['io.flow.internal.v0.models.partner_request_deleted'];
|
|
31196
|
+
export const partnerRequestUpserted = T['io.flow.internal.v0.models.partner_request_upserted'];
|
|
31023
31197
|
export const partnerTrackingSubscriptionDeleted = T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'];
|
|
31024
31198
|
export const partnerTrackingSubscriptionUpserted = T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'];
|
|
31025
31199
|
export const passphrase = T['io.flow.internal.v0.models.passphrase'];
|
|
@@ -31355,6 +31529,9 @@ export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.sh
|
|
|
31355
31529
|
export const shopifyCheckInventoryError = T['io.flow.internal.v0.models.shopify_check_inventory_error'];
|
|
31356
31530
|
export const shopifyCheckInventoryErrorCode = T['io.flow.internal.v0.enums.shopify_check_inventory_error_code'];
|
|
31357
31531
|
export const shopifyCodeForm = T['io.flow.internal.v0.models.shopify_code_form'];
|
|
31532
|
+
export const shopifyDispute = T['io.flow.internal.v0.models.shopify_dispute'];
|
|
31533
|
+
export const shopifyDisputeDeleted = T['io.flow.internal.v0.models.shopify_dispute_deleted'];
|
|
31534
|
+
export const shopifyDisputeUpserted = T['io.flow.internal.v0.models.shopify_dispute_upserted'];
|
|
31358
31535
|
export const shopifyExperienceShortId = T['io.flow.internal.v0.models.shopify_experience_short_id'];
|
|
31359
31536
|
export const shopifyExperienceShortIdDeleted = T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'];
|
|
31360
31537
|
export const shopifyExperienceShortIdUpserted = T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'];
|
|
@@ -31548,6 +31725,7 @@ export const stripeCaptureDeleted = T['io.flow.internal.v0.models.stripe_capture
|
|
|
31548
31725
|
export const stripeCaptureUpserted = T['io.flow.internal.v0.models.stripe_capture_upserted'];
|
|
31549
31726
|
export const stripeConnectReportRecord = T['io.flow.internal.v0.models.stripe_connect_report_record'];
|
|
31550
31727
|
export const stripeConnectReportRecordDeleted = T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'];
|
|
31728
|
+
export const stripeConnectReportRecordPaymentMetadata = T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'];
|
|
31551
31729
|
export const stripeConnectReportRecordUpserted = T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'];
|
|
31552
31730
|
export const stripeDisputeDeleted = T['io.flow.internal.v0.models.stripe_dispute_deleted'];
|
|
31553
31731
|
export const stripeDisputeUpserted = T['io.flow.internal.v0.models.stripe_dispute_upserted'];
|