@shipengine/js-api 4.16.0 → 4.16.1

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.
@@ -144,7 +144,7 @@ export interface PaymentMethod {
144
144
  * The PaymentMethod from the Update response
145
145
  */
146
146
  export type UpdatePaymentMethodResponse = Omit<PaymentMethod, "sourceAccountId" | "paymentMethodType" | "institutionName">;
147
- export type IdentityProvider = "Plaid";
147
+ export type IdentityProvider = "plaid";
148
148
  export type IdentityVerificationResponse = {
149
149
  /** Provider used for the identity verification */
150
150
  identityProvider: IdentityProvider;
@@ -152,8 +152,8 @@ export type IdentityVerificationResponse = {
152
152
  /** URL of the provider to start the identity verification */
153
153
  verificationUrl: string;
154
154
  };
155
- export type PaymentAccountTrustLevel = "New" | "Trusted" | "Restricted" | "Grandfathered";
156
- export type PaymentAccountEnrollmentStatus = "NotSet" | "Enrolled" | "Prohibited" | "OptedOut";
155
+ export type PaymentAccountTrustLevel = "new" | "trusted" | "restricted" | "grandfathered";
156
+ export type PaymentAccountEnrollmentStatus = "no_set" | "enrolled" | "prohibited" | "opted_out";
157
157
  export type PaymentAccountResponse = {
158
158
  /** Boolean to know if there is a IDV in progress */
159
159
  isVerificationRequested: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipengine/js-api",
3
- "version": "4.16.0",
3
+ "version": "4.16.1",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {