@flowio/api-internal-prop-types 9.24.140 → 9.24.141
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/lib/api-internal.d.ts +8 -0
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +8 -0
- package/src/api-internal.js +8 -0
package/lib/api-internal.d.ts
CHANGED
|
@@ -15574,6 +15574,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15574
15574
|
readonly 'source_type': io.flow.internal.v0.enums.AccountType;
|
|
15575
15575
|
readonly 'source_id': string;
|
|
15576
15576
|
readonly 'status': io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
15577
|
+
readonly 'processed': boolean;
|
|
15577
15578
|
readonly 'amount': number;
|
|
15578
15579
|
readonly 'currency': string;
|
|
15579
15580
|
readonly 'created_at': string;
|
|
@@ -15644,6 +15645,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15644
15645
|
readonly 'errors_url'?: string;
|
|
15645
15646
|
}
|
|
15646
15647
|
|
|
15648
|
+
interface BankPaymentStatusProcessedImportForm {
|
|
15649
|
+
readonly 'payment_ids': string[];
|
|
15650
|
+
}
|
|
15651
|
+
|
|
15647
15652
|
interface BankPaymentStatusSentImportForm {
|
|
15648
15653
|
readonly 'payment_ids': string[];
|
|
15649
15654
|
}
|
|
@@ -22424,6 +22429,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22424
22429
|
}
|
|
22425
22430
|
|
|
22426
22431
|
interface OutboundShippingCost {
|
|
22432
|
+
readonly 'id': string;
|
|
22427
22433
|
readonly 'channel_id': string;
|
|
22428
22434
|
readonly 'organization_id': string;
|
|
22429
22435
|
readonly 'destination_country': string;
|
|
@@ -24606,6 +24612,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24606
24612
|
readonly 'hs_code_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
24607
24613
|
readonly 'classification_scope'?: io.flow.internal.v0.enums.ClassificationScope;
|
|
24608
24614
|
readonly 'classification_resource_id'?: string;
|
|
24615
|
+
readonly 'item_classification_resource_ids'?: Record<string, string>;
|
|
24609
24616
|
readonly 'url'?: string;
|
|
24610
24617
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionItemReview[];
|
|
24611
24618
|
readonly 'created_at': string;
|
|
@@ -28245,6 +28252,7 @@ export const bankPaymentStatusForm: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
28245
28252
|
export const bankPaymentStatusImport: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentStatusImport>;
|
|
28246
28253
|
export const bankPaymentStatusImportForm: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentStatusImportForm>;
|
|
28247
28254
|
export const bankPaymentStatusImportResult: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentStatusImportResult>;
|
|
28255
|
+
export const bankPaymentStatusProcessedImportForm: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentStatusProcessedImportForm>;
|
|
28248
28256
|
export const bankPaymentStatusSentImportForm: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentStatusSentImportForm>;
|
|
28249
28257
|
export const bankPaymentStatusSingleForm: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentStatusSingleForm>;
|
|
28250
28258
|
export const bankPaymentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentUpserted>;
|