@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-internal-prop-types",
3
- "version": "9.24.140",
3
+ "version": "9.24.141",
4
4
  "description": "PropType validators that work with internal Flow API",
5
5
  "keywords": [
6
6
  "flow",
@@ -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>;
@@ -24544,6 +24544,7 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
24544
24544
  });
24545
24545
 
24546
24546
  T['io.flow.internal.v0.models.outbound_shipping_cost'] = PropTypes.exact({
24547
+ id: PropTypes.string.isRequired,
24547
24548
  channel_id: PropTypes.string.isRequired,
24548
24549
  organization_id: PropTypes.string.isRequired,
24549
24550
  destination_country: PropTypes.string.isRequired,
@@ -26981,6 +26982,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
26981
26982
  hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
26982
26983
  classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
26983
26984
  classification_resource_id: PropTypes.string,
26985
+ item_classification_resource_ids: PropTypes.objectOf(PropTypes.string),
26984
26986
  url: PropTypes.string,
26985
26987
  reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
26986
26988
  created_at: PropTypes.string.isRequired,
@@ -28106,6 +28108,7 @@ T['io.flow.internal.v0.models.bank_payment_detail'] = PropTypes.exact({
28106
28108
  source_type: T['io.flow.internal.v0.enums.account_type'].isRequired,
28107
28109
  source_id: PropTypes.string.isRequired,
28108
28110
  status: T['io.flow.internal.v0.enums.bank_payment_status_code'].isRequired,
28111
+ processed: PropTypes.bool.isRequired,
28109
28112
  amount: PropTypes.number.isRequired,
28110
28113
  currency: PropTypes.string.isRequired,
28111
28114
  created_at: PropTypes.string.isRequired,
@@ -30517,6 +30520,10 @@ T['io.flow.internal.v0.models.bank_payment_form'] = PropTypes.exact({
30517
30520
  attributes: PropTypes.objectOf(PropTypes.string),
30518
30521
  });
30519
30522
 
30523
+ T['io.flow.internal.v0.models.bank_payment_status_processed_import_form'] = PropTypes.exact({
30524
+ payment_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
30525
+ });
30526
+
30520
30527
  T['io.flow.internal.v0.models.bank_payment_status_sent_import_form'] = PropTypes.exact({
30521
30528
  payment_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
30522
30529
  });
@@ -32787,6 +32794,7 @@ export const bankPaymentStatusForm = T['io.flow.internal.v0.models.bank_payment_
32787
32794
  export const bankPaymentStatusImport = T['io.flow.internal.v0.models.bank_payment_status_import'];
32788
32795
  export const bankPaymentStatusImportForm = T['io.flow.internal.v0.models.bank_payment_status_import_form'];
32789
32796
  export const bankPaymentStatusImportResult = T['io.flow.internal.v0.models.bank_payment_status_import_result'];
32797
+ export const bankPaymentStatusProcessedImportForm = T['io.flow.internal.v0.models.bank_payment_status_processed_import_form'];
32790
32798
  export const bankPaymentStatusSentImportForm = T['io.flow.internal.v0.models.bank_payment_status_sent_import_form'];
32791
32799
  export const bankPaymentStatusSingleForm = T['io.flow.internal.v0.models.bank_payment_status_single_form'];
32792
32800
  export const bankPaymentUpserted = T['io.flow.internal.v0.models.bank_payment_upserted'];