@flowio/types 11.24.41 → 11.24.43
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/dist/api-internal.d.ts +181 -77
- package/dist/api.d.ts +6 -1
- package/package.json +2 -2
- package/src/api-internal.ts +225 -88
- package/src/api.ts +8 -0
package/dist/api.d.ts
CHANGED
|
@@ -1831,7 +1831,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1831
1831
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
1832
1832
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
1833
1833
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
1834
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
1834
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duties' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
1835
1835
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
1836
1836
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
1837
1837
|
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
@@ -1999,6 +1999,9 @@ declare namespace io.flow.v0.models {
|
|
|
1999
1999
|
readonly type: 'wait';
|
|
2000
2000
|
readonly expires_at?: string;
|
|
2001
2001
|
}
|
|
2002
|
+
interface ActivationPutForm {
|
|
2003
|
+
readonly placeholder?: boolean;
|
|
2004
|
+
}
|
|
2002
2005
|
interface Address {
|
|
2003
2006
|
readonly text?: string;
|
|
2004
2007
|
readonly streets?: string[];
|
|
@@ -8761,6 +8764,7 @@ declare namespace io.flow.v0.models {
|
|
|
8761
8764
|
interface ShippingLabelDocument {
|
|
8762
8765
|
readonly zpl?: string;
|
|
8763
8766
|
readonly pdf?: string;
|
|
8767
|
+
readonly pdf_data?: string;
|
|
8764
8768
|
readonly png?: string;
|
|
8765
8769
|
readonly html?: string;
|
|
8766
8770
|
readonly required: boolean;
|
|
@@ -10164,6 +10168,7 @@ export declare type ActionUseSdkKlarnaV1 = io.flow.v0.models.ActionUseSdkKlarnaV
|
|
|
10164
10168
|
export declare type ActionUseSdkPaypal = io.flow.v0.models.ActionUseSdkPaypal;
|
|
10165
10169
|
export declare type ActionUseSdkStripeV3 = io.flow.v0.models.ActionUseSdkStripeV3;
|
|
10166
10170
|
export declare type ActionWait = io.flow.v0.models.ActionWait;
|
|
10171
|
+
export declare type ActivationPutForm = io.flow.v0.models.ActivationPutForm;
|
|
10167
10172
|
export declare type Address = io.flow.v0.models.Address;
|
|
10168
10173
|
export declare type AddressConfiguration = io.flow.v0.models.AddressConfiguration;
|
|
10169
10174
|
export declare type AddressConfigurationFieldPlacement = io.flow.v0.models.AddressConfigurationFieldPlacement;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.43",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "e9504490ad2239aa159cfb034ad8f04de3137eb4"
|
|
29
29
|
}
|