@flowio/types 11.24.40 → 11.24.41
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 +3 -2
- package/dist/api.d.ts +5 -5
- package/package.json +2 -2
- package/src/api-internal.ts +3 -2
- package/src/api.ts +5 -5
package/dist/api-internal.d.ts
CHANGED
|
@@ -10259,7 +10259,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10259
10259
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
10260
10260
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason';
|
|
10261
10261
|
type OrganizationRestrictionRiskLevel = '5' | '15';
|
|
10262
|
-
type OrganizationRestrictionScreeningStatus = 'in_review' | '
|
|
10262
|
+
type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
|
|
10263
10263
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
10264
10264
|
type Owner = 'flow' | 'organization';
|
|
10265
10265
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
@@ -13984,7 +13984,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13984
13984
|
interface DebugLabel {
|
|
13985
13985
|
readonly carrier_id: string;
|
|
13986
13986
|
readonly carrier_tracking_number: string;
|
|
13987
|
-
readonly
|
|
13987
|
+
readonly label_tracking_summary_id?: string;
|
|
13988
|
+
readonly label_id?: string;
|
|
13988
13989
|
readonly transactions?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
|
|
13989
13990
|
}
|
|
13990
13991
|
interface DebugLabelTransactionSummary {
|
package/dist/api.d.ts
CHANGED
|
@@ -2203,7 +2203,7 @@ declare namespace io.flow.v0.models {
|
|
|
2203
2203
|
}
|
|
2204
2204
|
interface ApplicationReceived {
|
|
2205
2205
|
readonly discriminator: 'application_received';
|
|
2206
|
-
readonly placeholder
|
|
2206
|
+
readonly placeholder?: boolean;
|
|
2207
2207
|
}
|
|
2208
2208
|
interface AtCost {
|
|
2209
2209
|
readonly discriminator: 'at_cost';
|
|
@@ -4969,7 +4969,7 @@ declare namespace io.flow.v0.models {
|
|
|
4969
4969
|
}
|
|
4970
4970
|
interface InComplianceReview {
|
|
4971
4971
|
readonly discriminator: 'in_compliance_review';
|
|
4972
|
-
readonly placeholder
|
|
4972
|
+
readonly placeholder?: boolean;
|
|
4973
4973
|
}
|
|
4974
4974
|
interface InboundCartonFee {
|
|
4975
4975
|
readonly discriminator: 'inbound_carton_fee';
|
|
@@ -5755,7 +5755,7 @@ declare namespace io.flow.v0.models {
|
|
|
5755
5755
|
}
|
|
5756
5756
|
interface MerchantActivated {
|
|
5757
5757
|
readonly discriminator: 'merchant_activated';
|
|
5758
|
-
readonly placeholder
|
|
5758
|
+
readonly placeholder?: boolean;
|
|
5759
5759
|
}
|
|
5760
5760
|
interface MerchantApplicationDeleted {
|
|
5761
5761
|
readonly discriminator: 'merchant_application_deleted';
|
|
@@ -8622,11 +8622,11 @@ declare namespace io.flow.v0.models {
|
|
|
8622
8622
|
}
|
|
8623
8623
|
interface SetupCompleted {
|
|
8624
8624
|
readonly discriminator: 'setup_completed';
|
|
8625
|
-
readonly placeholder
|
|
8625
|
+
readonly placeholder?: boolean;
|
|
8626
8626
|
}
|
|
8627
8627
|
interface SetupInProgress {
|
|
8628
8628
|
readonly discriminator: 'setup_in_progress';
|
|
8629
|
-
readonly placeholder
|
|
8629
|
+
readonly placeholder?: boolean;
|
|
8630
8630
|
}
|
|
8631
8631
|
interface ShipmentWindow {
|
|
8632
8632
|
readonly from: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.41",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "52061c2130395e8550acf7a142dd62fc9420faf6"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -14036,7 +14036,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14036
14036
|
type OrganizationRestrictionRiskLevel = '5' | '15';
|
|
14037
14037
|
type OrganizationRestrictionScreeningStatus =
|
|
14038
14038
|
| 'in_review'
|
|
14039
|
-
| '
|
|
14039
|
+
| 'fully_reviewed'
|
|
14040
14040
|
| 'rejected'
|
|
14041
14041
|
| 'unscreened';
|
|
14042
14042
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
@@ -18581,7 +18581,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18581
18581
|
interface DebugLabel {
|
|
18582
18582
|
readonly carrier_id: string;
|
|
18583
18583
|
readonly carrier_tracking_number: string;
|
|
18584
|
-
readonly
|
|
18584
|
+
readonly label_tracking_summary_id?: string;
|
|
18585
|
+
readonly label_id?: string;
|
|
18585
18586
|
readonly transactions?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
|
|
18586
18587
|
}
|
|
18587
18588
|
|
package/src/api.ts
CHANGED
|
@@ -3459,7 +3459,7 @@ declare namespace io.flow.v0.models {
|
|
|
3459
3459
|
|
|
3460
3460
|
interface ApplicationReceived {
|
|
3461
3461
|
readonly discriminator: 'application_received';
|
|
3462
|
-
readonly placeholder
|
|
3462
|
+
readonly placeholder?: boolean;
|
|
3463
3463
|
}
|
|
3464
3464
|
|
|
3465
3465
|
interface AtCost {
|
|
@@ -6682,7 +6682,7 @@ declare namespace io.flow.v0.models {
|
|
|
6682
6682
|
|
|
6683
6683
|
interface InComplianceReview {
|
|
6684
6684
|
readonly discriminator: 'in_compliance_review';
|
|
6685
|
-
readonly placeholder
|
|
6685
|
+
readonly placeholder?: boolean;
|
|
6686
6686
|
}
|
|
6687
6687
|
|
|
6688
6688
|
interface InboundCartonFee {
|
|
@@ -7598,7 +7598,7 @@ declare namespace io.flow.v0.models {
|
|
|
7598
7598
|
|
|
7599
7599
|
interface MerchantActivated {
|
|
7600
7600
|
readonly discriminator: 'merchant_activated';
|
|
7601
|
-
readonly placeholder
|
|
7601
|
+
readonly placeholder?: boolean;
|
|
7602
7602
|
}
|
|
7603
7603
|
|
|
7604
7604
|
interface MerchantApplicationDeleted {
|
|
@@ -10946,12 +10946,12 @@ declare namespace io.flow.v0.models {
|
|
|
10946
10946
|
|
|
10947
10947
|
interface SetupCompleted {
|
|
10948
10948
|
readonly discriminator: 'setup_completed';
|
|
10949
|
-
readonly placeholder
|
|
10949
|
+
readonly placeholder?: boolean;
|
|
10950
10950
|
}
|
|
10951
10951
|
|
|
10952
10952
|
interface SetupInProgress {
|
|
10953
10953
|
readonly discriminator: 'setup_in_progress';
|
|
10954
|
-
readonly placeholder
|
|
10954
|
+
readonly placeholder?: boolean;
|
|
10955
10955
|
}
|
|
10956
10956
|
|
|
10957
10957
|
interface ShipmentWindow {
|