@flowio/types 11.24.47 → 11.24.48
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 +113 -97
- package/dist/api.d.ts +2 -7
- package/package.json +2 -2
- package/src/api-internal.ts +162 -111
- package/src/api.ts +2 -8
package/src/api.ts
CHANGED
|
@@ -3022,12 +3022,13 @@ declare namespace io.flow.v0.enums {
|
|
|
3022
3022
|
| 'refund'
|
|
3023
3023
|
| 'dispute'
|
|
3024
3024
|
| 'adjustment'
|
|
3025
|
+
| 'reversal'
|
|
3025
3026
|
| 'shipping_label'
|
|
3026
3027
|
| 'shipping_label_service'
|
|
3027
3028
|
| 'shipping_label_revenue_share'
|
|
3028
3029
|
| 'platform_fee'
|
|
3029
3030
|
| 'tax'
|
|
3030
|
-
| '
|
|
3031
|
+
| 'duty'
|
|
3031
3032
|
| 'other_adjustment'
|
|
3032
3033
|
| 'tax_adjustment'
|
|
3033
3034
|
| 'channel'
|
|
@@ -3491,11 +3492,6 @@ declare namespace io.flow.v0.models {
|
|
|
3491
3492
|
readonly display_name?: string;
|
|
3492
3493
|
}
|
|
3493
3494
|
|
|
3494
|
-
interface ApplicationReceived {
|
|
3495
|
-
readonly discriminator: 'application_received';
|
|
3496
|
-
readonly placeholder?: boolean;
|
|
3497
|
-
}
|
|
3498
|
-
|
|
3499
3495
|
interface AtCost {
|
|
3500
3496
|
readonly discriminator: 'at_cost';
|
|
3501
3497
|
readonly ignore?: string;
|
|
@@ -13016,7 +13012,6 @@ declare namespace io.flow.v0.unions {
|
|
|
13016
13012
|
type MerchantApplicationsSummary =
|
|
13017
13013
|
io.flow.v0.models.ShopifyMerchantApplicationsSummary;
|
|
13018
13014
|
type OnboardingState =
|
|
13019
|
-
| io.flow.v0.models.ApplicationReceived
|
|
13020
13015
|
| io.flow.v0.models.InComplianceReview
|
|
13021
13016
|
| io.flow.v0.models.SetupInProgress
|
|
13022
13017
|
| io.flow.v0.models.MerchantRejected
|
|
@@ -13298,7 +13293,6 @@ export type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
|
13298
13293
|
export type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
13299
13294
|
export type ApplePayMerchantValidationPayload =
|
|
13300
13295
|
io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
13301
|
-
export type ApplicationReceived = io.flow.v0.models.ApplicationReceived;
|
|
13302
13296
|
export type AtCost = io.flow.v0.models.AtCost;
|
|
13303
13297
|
export type Attachment = io.flow.v0.models.Attachment;
|
|
13304
13298
|
export type AttachmentType = io.flow.v0.enums.AttachmentType;
|