@flowio/api-prop-types 10.16.85 → 10.16.86
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.d.ts +4 -0
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +4 -0
- package/src/api.js +10 -0
package/lib/api.d.ts
CHANGED
|
@@ -2559,6 +2559,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2559
2559
|
type OrganizationPaymentMethodTag = 'deny';
|
|
2560
2560
|
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
2561
2561
|
type OrganizationType = 'standalone' | 'channel';
|
|
2562
|
+
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
2562
2563
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
2563
2564
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
2564
2565
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
@@ -3557,6 +3558,7 @@ declare namespace io.flow.v0.models {
|
|
|
3557
3558
|
readonly 'origin'?: io.flow.v0.models.ShippingAddress;
|
|
3558
3559
|
readonly 'direction'?: io.flow.v0.enums.Direction;
|
|
3559
3560
|
readonly 'reference_id'?: string;
|
|
3561
|
+
readonly 'origin_location_source'?: io.flow.v0.enums.OriginLocationSource;
|
|
3560
3562
|
readonly 'hub_code'?: string;
|
|
3561
3563
|
}
|
|
3562
3564
|
|
|
@@ -5192,6 +5194,7 @@ declare namespace io.flow.v0.models {
|
|
|
5192
5194
|
readonly 'service'?: string;
|
|
5193
5195
|
readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
|
|
5194
5196
|
readonly 'package_dimensions_source'?: io.flow.v0.enums.PackageDimensionsSource;
|
|
5197
|
+
readonly 'origin_location_source'?: io.flow.v0.enums.OriginLocationSource;
|
|
5195
5198
|
readonly 'reference_id'?: string;
|
|
5196
5199
|
}
|
|
5197
5200
|
|
|
@@ -13319,6 +13322,7 @@ export const orderType: PropTypes.Requireable<io.flow.v0.enums.OrderType>;
|
|
|
13319
13322
|
export const organizationPaymentMethodTag: PropTypes.Requireable<io.flow.v0.enums.OrganizationPaymentMethodTag>;
|
|
13320
13323
|
export const organizationStatus: PropTypes.Requireable<io.flow.v0.enums.OrganizationStatus>;
|
|
13321
13324
|
export const organizationType: PropTypes.Requireable<io.flow.v0.enums.OrganizationType>;
|
|
13325
|
+
export const originLocationSource: PropTypes.Requireable<io.flow.v0.enums.OriginLocationSource>;
|
|
13322
13326
|
export const packageDimensionsSource: PropTypes.Requireable<io.flow.v0.enums.PackageDimensionsSource>;
|
|
13323
13327
|
export const paymentActionType: PropTypes.Requireable<io.flow.v0.enums.PaymentActionType>;
|
|
13324
13328
|
export const paymentErrorCode: PropTypes.Requireable<io.flow.v0.enums.PaymentErrorCode>;
|