@droz-js/sdk 0.5.5 → 0.5.6

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@droz-js/sdk",
3
3
  "description": "Droz SDK",
4
- "version": "0.5.5",
4
+ "version": "0.5.6",
5
5
  "private": false,
6
6
  "exports": {
7
7
  ".": "./src/index.js",
@@ -157,8 +157,9 @@ export declare enum AppInstanceStatus {
157
157
  Inactive = "Inactive"
158
158
  }
159
159
  export declare enum AppType {
160
- Regular = "Regular",
161
- Trigger = "Trigger"
160
+ Agent = "Agent",
161
+ User = "User",
162
+ Utility = "Utility"
162
163
  }
163
164
  export type AuthInfo = {
164
165
  authenticationEndpoint: Scalars['String']['output'];
@@ -11,8 +11,9 @@ var AppInstanceStatus;
11
11
  })(AppInstanceStatus || (exports.AppInstanceStatus = AppInstanceStatus = {}));
12
12
  var AppType;
13
13
  (function (AppType) {
14
- AppType["Regular"] = "Regular";
15
- AppType["Trigger"] = "Trigger";
14
+ AppType["Agent"] = "Agent";
15
+ AppType["User"] = "User";
16
+ AppType["Utility"] = "Utility";
16
17
  })(AppType || (exports.AppType = AppType = {}));
17
18
  var CredentialsType;
18
19
  (function (CredentialsType) {