@flowio/api-internal-prop-types 9.24.59 → 9.24.60
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 +3 -7
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +3 -7
- package/src/api-internal.js +3 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-prop-types",
|
|
3
|
-
"version": "9.24.
|
|
3
|
+
"version": "9.24.60",
|
|
4
4
|
"description": "PropType validators that work with internal Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"prop-types": "^15.7.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "46a04b6ac3cb8aabcc89d77f21c5586312ed2960"
|
|
34
34
|
}
|
package/src/api-internal.d.ts
CHANGED
|
@@ -6858,17 +6858,12 @@ declare namespace io.flow.partner.v0.enums {
|
|
|
6858
6858
|
}
|
|
6859
6859
|
|
|
6860
6860
|
declare namespace io.flow.partner.v0.models {
|
|
6861
|
-
interface BridgeHub {
|
|
6862
|
-
readonly 'hub_code': string;
|
|
6863
|
-
readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
6864
|
-
}
|
|
6865
|
-
|
|
6866
6861
|
interface BridgeLabelForm {
|
|
6867
6862
|
readonly 'discriminator': 'bridge_label_form';
|
|
6868
6863
|
readonly 'organization': string;
|
|
6869
6864
|
readonly 'order_number': string;
|
|
6870
6865
|
readonly 'package': io.flow.partner.v0.models.BridgeLabelPackage;
|
|
6871
|
-
readonly '
|
|
6866
|
+
readonly 'hub_code'?: string;
|
|
6872
6867
|
}
|
|
6873
6868
|
|
|
6874
6869
|
interface BridgeLabelPackage {
|
|
@@ -11697,6 +11692,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
11697
11692
|
}
|
|
11698
11693
|
|
|
11699
11694
|
interface OrganizationOnboardingState {
|
|
11695
|
+
readonly 'id': string;
|
|
11700
11696
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
11701
11697
|
readonly 'transitions': io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
|
|
11702
11698
|
readonly 'current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
@@ -20668,7 +20664,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20668
20664
|
|
|
20669
20665
|
interface OnboardingStateForm {
|
|
20670
20666
|
readonly 'onboarding_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
20671
|
-
readonly 'transitioned_at'
|
|
20667
|
+
readonly 'transitioned_at'?: string;
|
|
20672
20668
|
}
|
|
20673
20669
|
|
|
20674
20670
|
interface OneTimeTokenRedemptionForm {
|
package/src/api-internal.js
CHANGED
|
@@ -10068,7 +10068,7 @@ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition']
|
|
|
10068
10068
|
|
|
10069
10069
|
T['io.flow.internal.v0.models.onboarding_state_form'] = PropTypes.exact({
|
|
10070
10070
|
onboarding_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
10071
|
-
transitioned_at: PropTypes.string
|
|
10071
|
+
transitioned_at: PropTypes.string,
|
|
10072
10072
|
});
|
|
10073
10073
|
|
|
10074
10074
|
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
@@ -19409,11 +19409,6 @@ T['io.flow.fulfillment.v0.models.quote_version'] = PropTypes.exact({
|
|
|
19409
19409
|
quote: T['io.flow.fulfillment.v0.models.quote_summary'].isRequired,
|
|
19410
19410
|
});
|
|
19411
19411
|
|
|
19412
|
-
T['io.flow.partner.v0.models.bridge_hub'] = PropTypes.exact({
|
|
19413
|
-
hub_code: PropTypes.string.isRequired,
|
|
19414
|
-
address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
19415
|
-
});
|
|
19416
|
-
|
|
19417
19412
|
T['io.flow.return.v0.models.return_form'] = PropTypes.exact({
|
|
19418
19413
|
items: PropTypes.arrayOf(T['io.flow.return.v0.models.return_line_item']).isRequired,
|
|
19419
19414
|
tier_id: PropTypes.string,
|
|
@@ -21819,7 +21814,7 @@ T['io.flow.partner.v0.models.bridge_label_form'] = PropTypes.exact({
|
|
|
21819
21814
|
organization: PropTypes.string.isRequired,
|
|
21820
21815
|
order_number: PropTypes.string.isRequired,
|
|
21821
21816
|
'package': T['io.flow.partner.v0.models.bridge_label_package'].isRequired,
|
|
21822
|
-
|
|
21817
|
+
hub_code: PropTypes.string,
|
|
21823
21818
|
});
|
|
21824
21819
|
|
|
21825
21820
|
T['io.flow.label.v0.models.summary_shipping_notification_form'] = PropTypes.exact({
|
|
@@ -22733,6 +22728,7 @@ T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
|
|
|
22733
22728
|
});
|
|
22734
22729
|
|
|
22735
22730
|
T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
|
|
22731
|
+
id: PropTypes.string.isRequired,
|
|
22736
22732
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
22737
22733
|
|
|
22738
22734
|
transitions: PropTypes.arrayOf(
|