@otr-app/shared-backend-generated-client 2.2.159 → 2.2.160

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.
@@ -12,5 +12,14 @@
12
12
  export interface SettingResponse {
13
13
  "id"?: number;
14
14
  "name"?: string;
15
+ "type"?: SettingResponse.TypeEnum;
15
16
  "value"?: string;
16
17
  }
18
+ export declare namespace SettingResponse {
19
+ enum TypeEnum {
20
+ Boolean,
21
+ Integer,
22
+ List,
23
+ String
24
+ }
25
+ }
@@ -11,3 +11,14 @@
11
11
  * Do not edit the class manually.
12
12
  */
13
13
  Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.SettingResponse = void 0;
15
+ var SettingResponse;
16
+ (function (SettingResponse) {
17
+ var TypeEnum;
18
+ (function (TypeEnum) {
19
+ TypeEnum[TypeEnum["Boolean"] = 'Boolean'] = "Boolean";
20
+ TypeEnum[TypeEnum["Integer"] = 'Integer'] = "Integer";
21
+ TypeEnum[TypeEnum["List"] = 'List'] = "List";
22
+ TypeEnum[TypeEnum["String"] = 'String'] = "String";
23
+ })(TypeEnum = SettingResponse.TypeEnum || (SettingResponse.TypeEnum = {}));
24
+ })(SettingResponse = exports.SettingResponse || (exports.SettingResponse = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.2.159",
3
+ "version": "2.2.160",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"