@parra/parra-js-sdk 0.3.222 → 0.3.223

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.
@@ -176,7 +176,14 @@ export interface AppInfo {
176
176
  legal: AppLegalInfo;
177
177
  }
178
178
  export declare enum ApplicationType {
179
- ios = "ios"
179
+ ios = "ios",
180
+ android = "android",
181
+ web = "web",
182
+ cli = "cli",
183
+ sdk = "sdk",
184
+ api = "api",
185
+ desktop = "desktop",
186
+ other = "other"
180
187
  }
181
188
  export interface ApplicationIosConfig {
182
189
  app_id?: string | null;
@@ -265,6 +272,7 @@ export interface PasswordRule {
265
272
  error_message?: string;
266
273
  }
267
274
  export interface AppInfoPasswordConfig {
275
+ password_reset_disabled: boolean;
268
276
  ios_password_rules_descriptor?: string | null;
269
277
  rules: Array<PasswordRule>;
270
278
  }
@@ -497,7 +505,6 @@ export interface ImageAsset {
497
505
  }
498
506
  export interface CreateCheckoutSessionRequestBody {
499
507
  plan_id: string;
500
- return_url?: string | null;
501
508
  success_url?: string | null;
502
509
  cancel_url?: string | null;
503
510
  }
package/dist/ParraAPI.js CHANGED
@@ -55,6 +55,13 @@ var ReleaseType;
55
55
  var ApplicationType;
56
56
  (function (ApplicationType) {
57
57
  ApplicationType["ios"] = "ios";
58
+ ApplicationType["android"] = "android";
59
+ ApplicationType["web"] = "web";
60
+ ApplicationType["cli"] = "cli";
61
+ ApplicationType["sdk"] = "sdk";
62
+ ApplicationType["api"] = "api";
63
+ ApplicationType["desktop"] = "desktop";
64
+ ApplicationType["other"] = "other";
58
65
  })(ApplicationType || (exports.ApplicationType = ApplicationType = {}));
59
66
  var DomainType;
60
67
  (function (DomainType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.222",
3
+ "version": "0.3.223",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",