@flowio/api-types 0.0.260 → 0.0.262

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.
@@ -1,4 +1,5 @@
1
1
  declare namespace io.flow.label.v0.enums {
2
+ type CommercialInvoiceMode = 'direct' | 'indirect';
2
3
  type CostEstimateSource = 'flow' | 'channel';
3
4
  type Direction = 'outbound' | 'return';
4
5
  type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
@@ -6,6 +6,77 @@ declare namespace io.flow.merchant.onboarding.v0.enums {
6
6
  }
7
7
 
8
8
  declare namespace io.flow.merchant.onboarding.v0.models {
9
+ interface CommonMerchantApplication {
10
+ readonly 'discriminator': 'common_merchant_application';
11
+ readonly 'id': string;
12
+ readonly 'organization_id': string;
13
+ readonly 'organization_reference': io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
14
+ readonly 'status': io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
15
+ readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
16
+ readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
17
+ readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
18
+ readonly 'business_url'?: string;
19
+ readonly 'business_description'?: string;
20
+ readonly 'business_address'?: io.flow.common.v0.models.Address;
21
+ readonly 'refund_percentage'?: number;
22
+ readonly 'chargeback_percentage'?: number;
23
+ readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
24
+ readonly 'other_trade_sector'?: string;
25
+ readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
26
+ readonly 'center_address'?: io.flow.common.v0.models.Address;
27
+ readonly 'average_order_weight'?: number;
28
+ readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
29
+ readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
30
+ readonly 'monthly_average'?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
31
+ readonly 'default_country_of_origin'?: string;
32
+ readonly 'rate_card': string;
33
+ readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
34
+ readonly 'created_at': string;
35
+ readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
36
+ readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
37
+ readonly 'average_order_value'?: io.flow.common.v0.models.Money;
38
+ readonly 'mcc_codes'?: number[];
39
+ }
40
+
41
+ interface CommonMerchantApplicationForm {
42
+ readonly 'discriminator': 'common_merchant_application_form';
43
+ readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
44
+ readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
45
+ readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
46
+ readonly 'business_url'?: string;
47
+ readonly 'business_description'?: string;
48
+ readonly 'business_address'?: io.flow.common.v0.models.Address;
49
+ readonly 'refund_percentage'?: number;
50
+ readonly 'chargeback_percentage'?: number;
51
+ readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
52
+ readonly 'other_trade_sector'?: string;
53
+ readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
54
+ readonly 'center_address'?: io.flow.common.v0.models.Address;
55
+ readonly 'average_order_weight'?: number;
56
+ readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
57
+ readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
58
+ readonly 'monthly_average_volume_amount'?: number;
59
+ readonly 'monthly_average_volume_currency'?: string;
60
+ readonly 'monthly_average_number_transactions'?: number;
61
+ readonly 'default_country_of_origin'?: string;
62
+ readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
63
+ readonly 'rate_card'?: string;
64
+ readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
65
+ readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
66
+ readonly 'average_order_value'?: io.flow.common.v0.models.Money;
67
+ readonly 'mcc_codes'?: number[];
68
+ }
69
+
70
+ interface CommonMerchantApplicationPutForm {
71
+ readonly 'discriminator': 'common_merchant_application_put_form';
72
+ readonly 'status'?: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
73
+ }
74
+
75
+ interface CommonMerchantApplicationsSummary {
76
+ readonly 'discriminator': 'common_merchant_applications_summary';
77
+ readonly 'total': number;
78
+ }
79
+
9
80
  interface IndirectTax {
10
81
  readonly 'number'?: string;
11
82
  readonly 'id'?: string;
@@ -22,6 +93,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
22
93
  readonly 'region'?: io.flow.merchant.onboarding.v0.enums.RegionType;
23
94
  readonly 'region_value'?: string;
24
95
  readonly 'category_code'?: string;
96
+ readonly 'description'?: string;
25
97
  }
26
98
 
27
99
  interface MerchantOnboardingAddress {
@@ -33,6 +105,17 @@ declare namespace io.flow.merchant.onboarding.v0.models {
33
105
  readonly 'country'?: string;
34
106
  }
35
107
 
108
+ interface MerchantOnboardingBeneficiaryDetails {
109
+ readonly 'name'?: string;
110
+ readonly 'address'?: io.flow.common.v0.models.Address;
111
+ readonly 'phone'?: string;
112
+ readonly 'email'?: string;
113
+ readonly 'bank_account_number'?: string;
114
+ readonly 'bank_routing_number'?: string;
115
+ readonly 'bank_name'?: string;
116
+ readonly 'bank_address'?: io.flow.common.v0.models.Address;
117
+ }
118
+
36
119
  interface MonthlyAverage {
37
120
  readonly 'volume'?: io.flow.merchant.onboarding.v0.models.MonthlyAverageVolume;
38
121
  readonly 'number_transactions'?: number;
@@ -97,6 +180,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
97
180
  readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
98
181
  readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
99
182
  readonly 'average_order_weight'?: number;
183
+ readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
100
184
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
101
185
  readonly 'monthly_average'?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
102
186
  readonly 'default_country_of_origin'?: string;
@@ -130,6 +214,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
130
214
  readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
131
215
  readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
132
216
  readonly 'average_order_weight'?: number;
217
+ readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
133
218
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
134
219
  readonly 'monthly_average_volume_amount'?: number;
135
220
  readonly 'monthly_average_volume_currency'?: string;
@@ -170,8 +255,8 @@ declare namespace io.flow.merchant.onboarding.v0.models {
170
255
  }
171
256
 
172
257
  declare namespace io.flow.merchant.onboarding.v0.unions {
173
- type MerchantApplication = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication);
174
- type MerchantApplicationForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm);
175
- type MerchantApplicationPutForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm);
176
- type MerchantApplicationsSummary = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary);
258
+ type MerchantApplication = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication | io.flow.merchant.onboarding.v0.models.CommonMerchantApplication);
259
+ type MerchantApplicationForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationForm);
260
+ type MerchantApplicationPutForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationPutForm);
261
+ type MerchantApplicationsSummary = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationsSummary);
177
262
  }
@@ -110,6 +110,22 @@ declare namespace io.flow.organization.v0.models {
110
110
  readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
111
111
  }
112
112
 
113
+ interface OrganizationTaxRegistration {
114
+ readonly 'id': string;
115
+ readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
116
+ readonly 'address': io.flow.common.v0.models.BillingAddress;
117
+ readonly 'registration': io.flow.organization.v0.models.TaxRegistrationDetail;
118
+ readonly 'self_billing_agreement': io.flow.organization.v0.models.SelfBillingAgreement;
119
+ }
120
+
121
+ interface OrganizationTaxRegistrationForm {
122
+ readonly 'tax_number': string;
123
+ readonly 'country': string;
124
+ readonly 'province'?: string;
125
+ readonly 'self_billing_agreement_effective_at': string;
126
+ readonly 'self_billing_agreement_expires_at'?: string;
127
+ }
128
+
113
129
  interface OrganizationVersion {
114
130
  readonly 'id': string;
115
131
  readonly 'timestamp': string;
@@ -126,4 +142,16 @@ declare namespace io.flow.organization.v0.models {
126
142
  interface RegionSettingForm {
127
143
  readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
128
144
  }
145
+
146
+ interface SelfBillingAgreement {
147
+ readonly 'effective_at': string;
148
+ readonly 'expires_at': string;
149
+ }
150
+
151
+ interface TaxRegistrationDetail {
152
+ readonly 'tax_number': string;
153
+ readonly 'country': string;
154
+ readonly 'tax_code': string;
155
+ readonly 'province'?: string;
156
+ }
129
157
  }
@@ -614,6 +614,7 @@ declare namespace io.flow.payment.gateway.v0.models {
614
614
  readonly 'supported_actions': io.flow.payment.gateway.v0.enums.PaymentActionType[];
615
615
  readonly 'payment_capture_option'?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
616
616
  readonly 'review'?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
617
+ readonly 'client_secret'?: string;
617
618
  }
618
619
 
619
620
  interface PaymentRequestCancellationReasonOrderMissing {
@@ -78,6 +78,7 @@ declare namespace io.flow.ratecard.v0.models {
78
78
  readonly 'amount': io.flow.common.v0.models.Money;
79
79
  readonly 'origin_region'?: io.flow.ratecard.v0.models.RatecardRegionReference;
80
80
  readonly 'destination_region'?: io.flow.ratecard.v0.models.RatecardRegionReference;
81
+ readonly 'destination_regions'?: io.flow.ratecard.v0.models.RatecardRegionReference[];
81
82
  readonly 'interval_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
82
83
  }
83
84
 
@@ -282,6 +283,7 @@ declare namespace io.flow.ratecard.v0.models {
282
283
  readonly 'center_id'?: string;
283
284
  readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
284
285
  readonly 'duties_owed'?: io.flow.common.v0.models.Money;
286
+ readonly 'commercial_invoice_mode'?: io.flow.label.v0.enums.CommercialInvoiceMode;
285
287
  }
286
288
 
287
289
  interface RatecardEstimateSummaryForm {
@@ -501,6 +503,43 @@ declare namespace io.flow.ratecard.v0.models {
501
503
  readonly 'from': number;
502
504
  readonly 'to': number;
503
505
  }
506
+
507
+ interface ShippingRateEstimate {
508
+ readonly 'origin_address': io.flow.common.v0.models.Address;
509
+ readonly 'destination_address': io.flow.common.v0.models.Address;
510
+ readonly 'shipping_date_time': string;
511
+ readonly 'services': string[];
512
+ readonly 'available': io.flow.ratecard.v0.models.ShippingRateEstimateAvailable[];
513
+ readonly 'unavailable'?: io.flow.ratecard.v0.models.ShippingRateEstimateUnavailable[];
514
+ }
515
+
516
+ interface ShippingRateEstimateAvailable {
517
+ readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
518
+ readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
519
+ readonly 'shipment_window': io.flow.ratecard.v0.models.ShipmentWindow;
520
+ readonly 'total_amount': io.flow.common.v0.models.Money;
521
+ readonly 'base_amount': io.flow.common.v0.models.Money;
522
+ readonly 'fees': io.flow.ratecard.v0.unions.RatecardFee[];
523
+ readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
524
+ readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
525
+ readonly 'weight_break'?: number;
526
+ }
527
+
528
+ interface ShippingRateEstimateRequest {
529
+ readonly 'origin_address': io.flow.common.v0.models.Address;
530
+ readonly 'destination_address': io.flow.common.v0.models.Address;
531
+ readonly 'package_dimensions': io.flow.common.v0.models.Dimension;
532
+ readonly 'shipping_date_time': string;
533
+ readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
534
+ readonly 'duties_owed'?: io.flow.common.v0.models.Money;
535
+ readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
536
+ readonly 'line_items'?: io.flow.common.v0.models.LineItemForm[];
537
+ }
538
+
539
+ interface ShippingRateEstimateUnavailable {
540
+ readonly 'service': string;
541
+ readonly 'reason': string;
542
+ }
504
543
  }
505
544
 
506
545
  declare namespace io.flow.ratecard.v0.unions {
@@ -0,0 +1,40 @@
1
+ declare namespace io.flow.restrictions.v0.enums {
2
+ type RestrictedReviewStatus = 'in_review' | 'reviewed';
3
+ type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
4
+ type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
5
+ }
6
+
7
+ declare namespace io.flow.restrictions.v0.models {
8
+ interface CarrierRestrictions {
9
+ readonly 'carrier': string;
10
+ readonly 'regions': string[];
11
+ }
12
+
13
+ interface NeedsActionAttributes {
14
+ readonly 'reason_code': string;
15
+ readonly 'category_metafield_handles': string[];
16
+ readonly 'require_msds'?: boolean;
17
+ }
18
+
19
+ interface ProductRestrictionResult {
20
+ readonly 'id': string;
21
+ readonly 'product_id': string;
22
+ readonly 'item_numbers': string[];
23
+ readonly 'prohibited_regions': string[];
24
+ readonly 'sellability_restricted_regions'?: string[];
25
+ readonly 'reasons_per_region'?: io.flow.restrictions.v0.models.ReasonsPerRegion[];
26
+ readonly 'review_status'?: io.flow.restrictions.v0.enums.ReviewStatus;
27
+ readonly 'rules'?: string[];
28
+ readonly 'updated_by'?: string;
29
+ readonly 'product_restriction_id'?: string;
30
+ readonly 'hs_code'?: string;
31
+ readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
32
+ readonly 'needs_action_attributes'?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
33
+ }
34
+
35
+ interface ReasonsPerRegion {
36
+ readonly 'region': string;
37
+ readonly 'reasons': string[];
38
+ readonly 'review_status': io.flow.restrictions.v0.enums.RestrictedReviewStatus;
39
+ }
40
+ }
@@ -2,6 +2,9 @@ declare namespace io.flow.sellability.v0.enums {
2
2
  type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
3
3
  type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
4
4
  type SellabilityRequestStatus = 'commit';
5
+ type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
6
+ type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
7
+ type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
5
8
  }
6
9
 
7
10
  declare namespace io.flow.sellability.v0.models {
@@ -11,10 +14,11 @@ declare namespace io.flow.sellability.v0.models {
11
14
  readonly 'product_id'?: string;
12
15
  readonly 'request_id': string;
13
16
  readonly 'hs6_code': string;
14
- readonly 'restricted_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
17
+ readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
15
18
  }
16
19
 
17
20
  interface ProductSellabilityForm {
21
+ readonly 'discriminator': 'product_sellability_form';
18
22
  readonly 'shop_id': string;
19
23
  readonly 'product_id'?: string;
20
24
  readonly 'name': string;
@@ -25,12 +29,64 @@ declare namespace io.flow.sellability.v0.models {
25
29
  readonly 'dry_run'?: boolean;
26
30
  }
27
31
 
32
+ interface ProductSellabilityResult {
33
+ readonly 'merchant_id'?: string;
34
+ readonly 'product_id': string;
35
+ readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
36
+ readonly 'needs_action_attributes'?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
37
+ readonly 'request_id'?: string;
38
+ }
39
+
28
40
  interface SellabilityError {
29
41
  readonly 'discriminator': 'sellability_error';
30
42
  readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
31
43
  readonly 'messages': string[];
32
44
  }
33
45
 
46
+ interface SellabilityNeedsActionAttributes {
47
+ readonly 'reason_code': string;
48
+ readonly 'category_metafield_handles': string[];
49
+ readonly 'require_msds'?: boolean;
50
+ }
51
+
52
+ interface SellabilityRegionResult {
53
+ readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
54
+ readonly 'regions': string[];
55
+ }
56
+
57
+ interface SellabilityRegionWithReasons {
58
+ readonly 'region': string;
59
+ readonly 'reasons': string[];
60
+ }
61
+
62
+ interface SellabilityRestrictedRegion {
63
+ readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
64
+ readonly 'regions_with_reasons': io.flow.sellability.v0.models.SellabilityRegionWithReasons[];
65
+ }
66
+
67
+ interface SellabilityScreening {
68
+ readonly 'discriminator': 'sellability_screening';
69
+ readonly 'sellability_result'?: io.flow.sellability.v0.models.ProductSellabilityResult;
70
+ readonly 'request_id': string;
71
+ readonly 'status': io.flow.sellability.v0.enums.SellabilityResultStatus;
72
+ readonly 'error_code'?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
73
+ readonly 'error_message'?: string;
74
+ }
75
+
76
+ interface SellabilityScreeningForm {
77
+ readonly 'discriminator': 'sellability_screening_form';
78
+ readonly 'merchant_id': string;
79
+ readonly 'product_id': string;
80
+ readonly 'name': string;
81
+ readonly 'price': io.flow.common.v0.models.Money;
82
+ readonly 'description': string;
83
+ readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
84
+ readonly 'mode': io.flow.sellability.v0.enums.SellabilityScreeningMode;
85
+ readonly 'catalog_size'?: number;
86
+ readonly 'relative_ranking'?: number;
87
+ readonly 'dry_run'?: boolean;
88
+ }
89
+
34
90
  interface SellablilityRegionResult {
35
91
  readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
36
92
  readonly 'regions': string[];
@@ -38,5 +94,6 @@ declare namespace io.flow.sellability.v0.models {
38
94
  }
39
95
 
40
96
  declare namespace io.flow.sellability.v0.unions {
41
- type SellabilityResponse = (io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError);
97
+ type SellabilityRequest = (io.flow.sellability.v0.models.ProductSellabilityForm | io.flow.sellability.v0.models.SellabilityScreeningForm);
98
+ type SellabilityResponse = (io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError | io.flow.sellability.v0.models.SellabilityScreening);
42
99
  }
@@ -160,6 +160,14 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
160
160
  readonly 'shopify': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
161
161
  readonly 'internal': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
162
162
  readonly 'discrepancy_data': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancyData;
163
+ readonly 'organization_metrics'?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
164
+ }
165
+
166
+ interface ShopifyMarketsOrganizationOrderMetrics {
167
+ readonly 'organization_id': string;
168
+ readonly 'shopify_order_count': number;
169
+ readonly 'internal_order_count': number;
170
+ readonly 'discrepancy_count'?: number;
163
171
  }
164
172
 
165
173
  interface ShopifyMarketsQueuedRecord {
@@ -308,6 +308,7 @@ declare namespace io.flow.shopify.markets.v0.models {
308
308
  readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
309
309
  readonly 'merchant_of_record_app_id'?: number;
310
310
  readonly 'total_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
311
+ readonly 'current_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
311
312
  readonly 'total_tip_received'?: string;
312
313
  }
313
314