@kohost/api-client 3.0.0-beta.72 → 3.0.0-beta.73

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.
@@ -7,7 +7,8 @@
7
7
 
8
8
  export interface Credential {
9
9
  id?: string;
10
- type: "verificationCode" | "token" | "mobileKey";
10
+ type: string;
11
+ discriminator?: "verificationCode" | "token" | "mobileKey";
11
12
  credential: string;
12
13
  user?: string;
13
14
  organization?: string;
@@ -9,6 +9,10 @@
9
9
  "$ref": "definitions.json#/definitions/id"
10
10
  },
11
11
  "type": {
12
+ "type": "string",
13
+ "default": "credential"
14
+ },
15
+ "discriminator": {
12
16
  "type": "string",
13
17
  "enum": ["verificationCode", "token", "mobileKey"]
14
18
  },
@@ -14743,6 +14743,10 @@ var require_credential = __commonJS({
14743
14743
  $ref: "definitions.json#/definitions/id"
14744
14744
  },
14745
14745
  type: {
14746
+ type: "string",
14747
+ default: "credential"
14748
+ },
14749
+ discriminator: {
14746
14750
  type: "string",
14747
14751
  enum: ["verificationCode", "token", "mobileKey"]
14748
14752
  },