@flowio/types 11.24.84 → 11.24.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/dist/api-internal.d.ts +233 -29
- package/dist/api.d.ts +8 -5
- package/package.json +2 -2
- package/src/api-internal.ts +293 -37
- package/src/api.ts +12 -5
package/src/api.ts
CHANGED
|
@@ -2376,6 +2376,10 @@ declare namespace io.flow.ben.test.internal.v0.models {
|
|
|
2376
2376
|
readonly num_events: number;
|
|
2377
2377
|
}
|
|
2378
2378
|
|
|
2379
|
+
interface SvitlanaTest {
|
|
2380
|
+
readonly name: string;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2379
2383
|
interface Test {
|
|
2380
2384
|
readonly id: string;
|
|
2381
2385
|
readonly name: string;
|
|
@@ -2911,7 +2915,8 @@ declare namespace io.flow.v0.enums {
|
|
|
2911
2915
|
| 'fx'
|
|
2912
2916
|
| 'processing'
|
|
2913
2917
|
| 'rate_lock'
|
|
2914
|
-
| 'transfer'
|
|
2918
|
+
| 'transfer'
|
|
2919
|
+
| 'negative_balance_guarantee';
|
|
2915
2920
|
type FlowBehavior = 'view_consumer_data';
|
|
2916
2921
|
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can';
|
|
2917
2922
|
type FlowRole =
|
|
@@ -3120,7 +3125,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3120
3125
|
| 'fuel_surcharge'
|
|
3121
3126
|
| 'emergency_situation_surcharge'
|
|
3122
3127
|
| 'peak_surcharge'
|
|
3123
|
-
| 'duties_taxes_paid_surcharge'
|
|
3128
|
+
| 'duties_taxes_paid_surcharge'
|
|
3129
|
+
| 'tip';
|
|
3124
3130
|
type OrderPriceDetailKey =
|
|
3125
3131
|
| 'adjustment'
|
|
3126
3132
|
| 'subtotal'
|
|
@@ -3129,7 +3135,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3129
3135
|
| 'shipping'
|
|
3130
3136
|
| 'insurance'
|
|
3131
3137
|
| 'discount'
|
|
3132
|
-
| 'surcharges'
|
|
3138
|
+
| 'surcharges'
|
|
3139
|
+
| 'tip';
|
|
3133
3140
|
type OrderQuoteAddressType = 'shipping';
|
|
3134
3141
|
type OrderQuoteErrorCode =
|
|
3135
3142
|
| 'contact_email_invalid'
|
|
@@ -12303,9 +12310,9 @@ declare namespace io.flow.v0.models {
|
|
|
12303
12310
|
readonly key: string;
|
|
12304
12311
|
readonly attributes: Record<string, string>;
|
|
12305
12312
|
readonly carrier_tracking_number: string;
|
|
12306
|
-
readonly destination
|
|
12313
|
+
readonly destination?: io.flow.v0.models.ShippingAddress;
|
|
12307
12314
|
readonly flow_tracking_number: string;
|
|
12308
|
-
readonly origin
|
|
12315
|
+
readonly origin?: io.flow.v0.models.ShippingAddress;
|
|
12309
12316
|
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
12310
12317
|
readonly service: io.flow.v0.unions.ServiceDescription;
|
|
12311
12318
|
readonly window?: io.flow.v0.models.DatetimeRange;
|