@flowio/api-types 0.0.259 → 0.0.260

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.
@@ -4,7 +4,7 @@ declare namespace io.flow.channel.internal.v0.enums {
4
4
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
5
5
  type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
6
6
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
7
- type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability';
7
+ type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
8
8
  type OrderPaymentSourceType = 'globale' | 'third_party';
9
9
  }
10
10
 
@@ -35,7 +35,7 @@ declare namespace io.flow.internal.v0.enums {
35
35
  type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
36
36
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
37
37
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
38
- type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability';
38
+ type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
39
39
  type ChannelTransactionTriggerType = 'capture' | 'order';
40
40
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing' | 'order';
41
41
  type ChapterCheckStatus = 'apparel_like' | 'similar' | 'does_not_match';
@@ -159,7 +159,7 @@ declare namespace io.flow.internal.v0.enums {
159
159
  type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
160
160
  type OrganizationRestrictionRiskLevel = '5' | '15';
161
161
  type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
162
- type OrganizationSource = 'shopify' | 'enterprise';
162
+ type OrganizationSource = 'shopify' | 'smb' | 'enterprise';
163
163
  type OutputStyle = 'flow' | 'shopify_p1';
164
164
  type Owner = 'flow' | 'organization';
165
165
  type PaymentShortUrlDiscriminator = 'adyen_3ds2';
@@ -194,7 +194,7 @@ declare namespace io.flow.internal.v0.enums {
194
194
  type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
195
195
  type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
196
196
  type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
197
- type RestrictionOrganizationSource = 'shopify' | 'enterprise';
197
+ type RestrictionOrganizationSource = 'shopify' | 'smb' | 'enterprise';
198
198
  type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
199
199
  type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
200
200
  type RestrictionRuleExceptionAction = 'allow' | 'deny';
@@ -6235,6 +6235,11 @@ declare namespace io.flow.internal.v0.models {
6235
6235
  readonly 'processing': number;
6236
6236
  readonly 'rate_lock': number;
6237
6237
  readonly 'transfer': number;
6238
+ readonly 'product_fee'?: number;
6239
+ readonly 'estimated_tax'?: number;
6240
+ readonly 'estimated_duty'?: number;
6241
+ readonly 'estimated_duties_and_taxes'?: number;
6242
+ readonly 'td_fx_diff'?: number;
6238
6243
  readonly 'total': number;
6239
6244
  }
6240
6245
 
@@ -8026,6 +8031,11 @@ declare namespace io.flow.internal.v0.models {
8026
8031
  readonly 'item': string;
8027
8032
  }
8028
8033
 
8034
+ interface PriceInclusivity {
8035
+ readonly 'tax'?: boolean;
8036
+ readonly 'duty'?: boolean;
8037
+ }
8038
+
8029
8039
  interface PrioritizedCenterReference {
8030
8040
  readonly 'center_key': string;
8031
8041
  readonly 'position': number;
@@ -8912,6 +8922,8 @@ declare namespace io.flow.internal.v0.models {
8912
8922
  readonly 'destination_country'?: number;
8913
8923
  readonly 'usd': number;
8914
8924
  readonly 'eur': number;
8925
+ readonly 'guaranteed'?: number;
8926
+ readonly 'spot'?: number;
8915
8927
  }
8916
8928
 
8917
8929
  interface ReportingCountry {
@@ -8957,6 +8969,11 @@ declare namespace io.flow.internal.v0.models {
8957
8969
  readonly 'mor': io.flow.internal.v0.models.ReportingMonetaryValue;
8958
8970
  readonly 'fx': io.flow.internal.v0.models.ReportingMonetaryValue;
8959
8971
  readonly 'sp': io.flow.internal.v0.models.ReportingMonetaryValue;
8972
+ readonly 'product_fee'?: io.flow.internal.v0.models.ReportingMonetaryValue;
8973
+ readonly 'estimated_tax'?: io.flow.internal.v0.models.ReportingMonetaryValue;
8974
+ readonly 'estimated_duty'?: io.flow.internal.v0.models.ReportingMonetaryValue;
8975
+ readonly 'estimated_duties_and_taxes'?: io.flow.internal.v0.models.ReportingMonetaryValue;
8976
+ readonly 'td_fx_diff'?: io.flow.internal.v0.models.ReportingMonetaryValue;
8960
8977
  }
8961
8978
 
8962
8979
  interface ReportingFulfillment {
@@ -9022,6 +9039,11 @@ declare namespace io.flow.internal.v0.models {
9022
9039
  readonly 'processing': io.flow.internal.v0.models.ReportingMonetaryValue;
9023
9040
  readonly 'rate_lock': io.flow.internal.v0.models.ReportingMonetaryValue;
9024
9041
  readonly 'transfer': io.flow.internal.v0.models.ReportingMonetaryValue;
9042
+ readonly 'product_fee'?: io.flow.internal.v0.models.ReportingMonetaryValue;
9043
+ readonly 'estimated_tax'?: io.flow.internal.v0.models.ReportingMonetaryValue;
9044
+ readonly 'estimated_duty'?: io.flow.internal.v0.models.ReportingMonetaryValue;
9045
+ readonly 'estimated_duties_and_taxes'?: io.flow.internal.v0.models.ReportingMonetaryValue;
9046
+ readonly 'td_fx_diff'?: io.flow.internal.v0.models.ReportingMonetaryValue;
9025
9047
  readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
9026
9048
  }
9027
9049
 
@@ -9711,6 +9733,7 @@ declare namespace io.flow.internal.v0.models {
9711
9733
  readonly 'fees': io.flow.internal.v0.models.ReportingFees;
9712
9734
  readonly 'conversion_rate': io.flow.internal.v0.models.ReportingConversionRates;
9713
9735
  readonly 'payment_is': io.flow.internal.v0.models.PaymentIs;
9736
+ readonly 'price_inclusivity'?: io.flow.internal.v0.models.PriceInclusivity;
9714
9737
  readonly 'destination_country': string;
9715
9738
  readonly 'fulfilled_at'?: string;
9716
9739
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-types",
3
- "version": "0.0.259",
3
+ "version": "0.0.260",
4
4
  "description": "Global TypeScript typings for Flow Commerce API",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,5 +14,5 @@
14
14
  "scripts": {
15
15
  "generate": "apibuilder update && node scripts/generate-index.js"
16
16
  },
17
- "gitHead": "e6ab4a371f4a5b27785d522dc32505277757198d"
17
+ "gitHead": "942e116995931225d013428a9da8237ec64c06be"
18
18
  }