@flowio/api-types 0.0.243 → 0.0.245
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/generated/io.flow.billing.v0.billing.d.ts +1 -1
- package/generated/io.flow.common.v0.common.d.ts +1 -1
- package/generated/io.flow.experience.v0.experience.d.ts +1 -1
- package/generated/io.flow.internal.v0.api-internal.d.ts +215 -154
- package/generated/io.flow.label.v0.label.d.ts +0 -11
- package/generated/io.flow.payment.v0.payment.d.ts +42 -1
- package/generated/io.flow.ratecard.v0.ratecard.d.ts +3 -0
- package/generated/io.flow.stripe.v0.stripe.d.ts +19 -0
- package/generated/io.flow.units.v0.units.d.ts +1 -1
- package/generated/io.flow.v0.api.d.ts +122 -24
- package/package.json +2 -2
|
@@ -4,7 +4,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
4
4
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
5
5
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
6
6
|
type StatementAttachmentType = 'csv';
|
|
7
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | '
|
|
7
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share';
|
|
8
8
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
9
9
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
10
10
|
}
|
|
@@ -29,7 +29,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
29
29
|
type RoundingType = 'pattern' | 'multiple';
|
|
30
30
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
31
31
|
type SortDirection = 'ascending' | 'descending';
|
|
32
|
-
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
32
|
+
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
33
33
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
34
34
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
35
35
|
type ValueAddedService = 'Hazardous Material';
|
|
@@ -16,7 +16,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
16
16
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
17
17
|
type OrderStatus = 'open' | 'submitted';
|
|
18
18
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
19
|
-
type OrderType = 'standard' | 'replacement';
|
|
19
|
+
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
20
20
|
type OrganizationPaymentMethodTag = 'deny';
|
|
21
21
|
type PaymentMethodRuleContentKey = 'description';
|
|
22
22
|
type PriceFacetBoundary = 'min' | 'max';
|