@flowio/types 11.24.40 → 11.24.42
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 +165 -76
- package/dist/api.d.ts +11 -6
- package/package.json +2 -2
- package/src/api-internal.ts +198 -87
- package/src/api.ts +13 -5
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[];
|
|
@@ -3459,7 +3465,7 @@ declare namespace io.flow.v0.models {
|
|
|
3459
3465
|
|
|
3460
3466
|
interface ApplicationReceived {
|
|
3461
3467
|
readonly discriminator: 'application_received';
|
|
3462
|
-
readonly placeholder
|
|
3468
|
+
readonly placeholder?: boolean;
|
|
3463
3469
|
}
|
|
3464
3470
|
|
|
3465
3471
|
interface AtCost {
|
|
@@ -6682,7 +6688,7 @@ declare namespace io.flow.v0.models {
|
|
|
6682
6688
|
|
|
6683
6689
|
interface InComplianceReview {
|
|
6684
6690
|
readonly discriminator: 'in_compliance_review';
|
|
6685
|
-
readonly placeholder
|
|
6691
|
+
readonly placeholder?: boolean;
|
|
6686
6692
|
}
|
|
6687
6693
|
|
|
6688
6694
|
interface InboundCartonFee {
|
|
@@ -7598,7 +7604,7 @@ declare namespace io.flow.v0.models {
|
|
|
7598
7604
|
|
|
7599
7605
|
interface MerchantActivated {
|
|
7600
7606
|
readonly discriminator: 'merchant_activated';
|
|
7601
|
-
readonly placeholder
|
|
7607
|
+
readonly placeholder?: boolean;
|
|
7602
7608
|
}
|
|
7603
7609
|
|
|
7604
7610
|
interface MerchantApplicationDeleted {
|
|
@@ -10946,12 +10952,12 @@ declare namespace io.flow.v0.models {
|
|
|
10946
10952
|
|
|
10947
10953
|
interface SetupCompleted {
|
|
10948
10954
|
readonly discriminator: 'setup_completed';
|
|
10949
|
-
readonly placeholder
|
|
10955
|
+
readonly placeholder?: boolean;
|
|
10950
10956
|
}
|
|
10951
10957
|
|
|
10952
10958
|
interface SetupInProgress {
|
|
10953
10959
|
readonly discriminator: 'setup_in_progress';
|
|
10954
|
-
readonly placeholder
|
|
10960
|
+
readonly placeholder?: boolean;
|
|
10955
10961
|
}
|
|
10956
10962
|
|
|
10957
10963
|
interface ShipmentWindow {
|
|
@@ -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 =
|