@shipengine/js-api 3.10.0 → 3.11.0
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/funding-sources/types.d.ts +2 -0
- package/index.js +2 -0
- package/index.mjs +2 -0
- package/package.json +1 -1
|
@@ -131,12 +131,14 @@ export declare enum MetadataRequirement {
|
|
|
131
131
|
Nickname = "nickname",
|
|
132
132
|
PaymentMethod = "payment_method",
|
|
133
133
|
PickupAddress = "pickup_address",
|
|
134
|
+
RequestActivation = "request_activation",
|
|
134
135
|
Unknown = "unknown"
|
|
135
136
|
}
|
|
136
137
|
/** @internal */
|
|
137
138
|
export declare enum MetadataSatisfyingFormTypes {
|
|
138
139
|
Address = "address",
|
|
139
140
|
CreditCard = "credit_card",
|
|
141
|
+
ExplicitIntent = "explicit_intent",
|
|
140
142
|
StampsAccountCredentials = "stamps_account_credentials",
|
|
141
143
|
StampsSellerLabelProvider = "stamps_seller_label_provider",
|
|
142
144
|
Unknown = "unknown"
|
package/index.js
CHANGED
|
@@ -59,12 +59,14 @@ var MetadataRequirement = /* @__PURE__ */ ((MetadataRequirement2) => {
|
|
|
59
59
|
MetadataRequirement2["Nickname"] = "nickname";
|
|
60
60
|
MetadataRequirement2["PaymentMethod"] = "payment_method";
|
|
61
61
|
MetadataRequirement2["PickupAddress"] = "pickup_address";
|
|
62
|
+
MetadataRequirement2["RequestActivation"] = "request_activation";
|
|
62
63
|
MetadataRequirement2["Unknown"] = "unknown";
|
|
63
64
|
return MetadataRequirement2;
|
|
64
65
|
})(MetadataRequirement || {});
|
|
65
66
|
var MetadataSatisfyingFormTypes = /* @__PURE__ */ ((MetadataSatisfyingFormTypes2) => {
|
|
66
67
|
MetadataSatisfyingFormTypes2["Address"] = "address";
|
|
67
68
|
MetadataSatisfyingFormTypes2["CreditCard"] = "credit_card";
|
|
69
|
+
MetadataSatisfyingFormTypes2["ExplicitIntent"] = "explicit_intent";
|
|
68
70
|
MetadataSatisfyingFormTypes2["StampsAccountCredentials"] = "stamps_account_credentials";
|
|
69
71
|
MetadataSatisfyingFormTypes2["StampsSellerLabelProvider"] = "stamps_seller_label_provider";
|
|
70
72
|
MetadataSatisfyingFormTypes2["Unknown"] = "unknown";
|
package/index.mjs
CHANGED
|
@@ -55,12 +55,14 @@ var MetadataRequirement = /* @__PURE__ */ ((MetadataRequirement2) => {
|
|
|
55
55
|
MetadataRequirement2["Nickname"] = "nickname";
|
|
56
56
|
MetadataRequirement2["PaymentMethod"] = "payment_method";
|
|
57
57
|
MetadataRequirement2["PickupAddress"] = "pickup_address";
|
|
58
|
+
MetadataRequirement2["RequestActivation"] = "request_activation";
|
|
58
59
|
MetadataRequirement2["Unknown"] = "unknown";
|
|
59
60
|
return MetadataRequirement2;
|
|
60
61
|
})(MetadataRequirement || {});
|
|
61
62
|
var MetadataSatisfyingFormTypes = /* @__PURE__ */ ((MetadataSatisfyingFormTypes2) => {
|
|
62
63
|
MetadataSatisfyingFormTypes2["Address"] = "address";
|
|
63
64
|
MetadataSatisfyingFormTypes2["CreditCard"] = "credit_card";
|
|
65
|
+
MetadataSatisfyingFormTypes2["ExplicitIntent"] = "explicit_intent";
|
|
64
66
|
MetadataSatisfyingFormTypes2["StampsAccountCredentials"] = "stamps_account_credentials";
|
|
65
67
|
MetadataSatisfyingFormTypes2["StampsSellerLabelProvider"] = "stamps_seller_label_provider";
|
|
66
68
|
MetadataSatisfyingFormTypes2["Unknown"] = "unknown";
|