@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/src/api.ts
CHANGED
|
@@ -3005,6 +3005,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3005
3005
|
| 'shipping_label_service'
|
|
3006
3006
|
| 'shipping_label_revenue_share'
|
|
3007
3007
|
| 'platform_fee'
|
|
3008
|
+
| 'tax'
|
|
3009
|
+
| 'duties'
|
|
3008
3010
|
| 'other_adjustment'
|
|
3009
3011
|
| 'tax_adjustment'
|
|
3010
3012
|
| 'channel'
|
|
@@ -3223,6 +3225,10 @@ declare namespace io.flow.v0.models {
|
|
|
3223
3225
|
readonly expires_at?: string;
|
|
3224
3226
|
}
|
|
3225
3227
|
|
|
3228
|
+
interface ActivationPutForm {
|
|
3229
|
+
readonly placeholder?: boolean;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3226
3232
|
interface Address {
|
|
3227
3233
|
readonly text?: string;
|
|
3228
3234
|
readonly streets?: string[];
|
|
@@ -11106,6 +11112,7 @@ declare namespace io.flow.v0.models {
|
|
|
11106
11112
|
interface ShippingLabelDocument {
|
|
11107
11113
|
readonly zpl?: string;
|
|
11108
11114
|
readonly pdf?: string;
|
|
11115
|
+
readonly pdf_data?: string;
|
|
11109
11116
|
readonly png?: string;
|
|
11110
11117
|
readonly html?: string;
|
|
11111
11118
|
readonly required: boolean;
|
|
@@ -13159,6 +13166,7 @@ export type ActionUseSdkKlarnaV1 = io.flow.v0.models.ActionUseSdkKlarnaV1;
|
|
|
13159
13166
|
export type ActionUseSdkPaypal = io.flow.v0.models.ActionUseSdkPaypal;
|
|
13160
13167
|
export type ActionUseSdkStripeV3 = io.flow.v0.models.ActionUseSdkStripeV3;
|
|
13161
13168
|
export type ActionWait = io.flow.v0.models.ActionWait;
|
|
13169
|
+
export type ActivationPutForm = io.flow.v0.models.ActivationPutForm;
|
|
13162
13170
|
export type Address = io.flow.v0.models.Address;
|
|
13163
13171
|
export type AddressConfiguration = io.flow.v0.models.AddressConfiguration;
|
|
13164
13172
|
export type AddressConfigurationFieldPlacement =
|