@emilgroup/setting-sdk 0.3.1-beta.1 → 0.3.1-beta.16

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/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/setting-sdk@0.3.1-beta.1 --save
20
+ npm install @emilgroup/setting-sdk@0.3.1-beta.16 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/setting-sdk@0.3.1-beta.1
24
+ yarn add @emilgroup/setting-sdk@0.3.1-beta.16
25
25
  ```
26
26
 
27
27
  And then you can import ``.
package/base.ts CHANGED
@@ -44,6 +44,7 @@ export enum Environment {
44
44
  Staging = 'https://apiv2-staging.emil.de',
45
45
  Development = 'https://apiv2-dev.emil.de',
46
46
  ProductionZurich = 'https://eu-central-2.apiv2.emil.de',
47
+ StagingZurich = 'https://eu-central-2.apiv2-staging.emil.de',
47
48
  }
48
49
 
49
50
  let _retry_count = 0
package/dist/base.d.ts CHANGED
@@ -31,7 +31,8 @@ export declare enum Environment {
31
31
  Test = "https://apiv2-test.emil.de",
32
32
  Staging = "https://apiv2-staging.emil.de",
33
33
  Development = "https://apiv2-dev.emil.de",
34
- ProductionZurich = "https://eu-central-2.apiv2.emil.de"
34
+ ProductionZurich = "https://eu-central-2.apiv2.emil.de",
35
+ StagingZurich = "https://eu-central-2.apiv2-staging.emil.de"
35
36
  }
36
37
  export declare function resetRetry(): void;
37
38
  /**
package/dist/base.js CHANGED
@@ -102,6 +102,7 @@ var Environment;
102
102
  Environment["Staging"] = "https://apiv2-staging.emil.de";
103
103
  Environment["Development"] = "https://apiv2-dev.emil.de";
104
104
  Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
105
+ Environment["StagingZurich"] = "https://eu-central-2.apiv2-staging.emil.de";
105
106
  })(Environment = exports.Environment || (exports.Environment = {}));
106
107
  var _retry_count = 0;
107
108
  var _retry = null;
@@ -17,27 +17,27 @@ import { PublicKeyClass } from './public-key-class';
17
17
  */
18
18
  export interface ListPublicKeysResponseClass {
19
19
  /**
20
- * An array of public key entities containing all key details including code, slug, key value, and audit information
21
- * @type {Array<PublicKeyClass>}
20
+ * Next page token.
21
+ * @type {string}
22
22
  * @memberof ListPublicKeysResponseClass
23
23
  */
24
- 'items': Array<PublicKeyClass>;
24
+ 'nextPageToken': string;
25
25
  /**
26
- * The token for the next page of results
27
- * @type {string}
26
+ * Total amount of items.
27
+ * @type {number}
28
28
  * @memberof ListPublicKeysResponseClass
29
29
  */
30
- 'nextPageToken': string;
30
+ 'totalItems': number;
31
31
  /**
32
- * The number of items per page
32
+ * Items per page.
33
33
  * @type {number}
34
34
  * @memberof ListPublicKeysResponseClass
35
35
  */
36
36
  'itemsPerPage': number;
37
37
  /**
38
- * The total number of items in the collection
39
- * @type {number}
38
+ * An array of public key entities containing all key details including code, slug, key value, and audit information
39
+ * @type {Array<PublicKeyClass>}
40
40
  * @memberof ListPublicKeysResponseClass
41
41
  */
42
- 'totalItems': number;
42
+ 'items': Array<PublicKeyClass>;
43
43
  }
@@ -22,28 +22,28 @@ import { PublicKeyClass } from './public-key-class';
22
22
  */
23
23
  export interface ListPublicKeysResponseClass {
24
24
  /**
25
- * An array of public key entities containing all key details including code, slug, key value, and audit information
26
- * @type {Array<PublicKeyClass>}
25
+ * Next page token.
26
+ * @type {string}
27
27
  * @memberof ListPublicKeysResponseClass
28
28
  */
29
- 'items': Array<PublicKeyClass>;
29
+ 'nextPageToken': string;
30
30
  /**
31
- * The token for the next page of results
32
- * @type {string}
31
+ * Total amount of items.
32
+ * @type {number}
33
33
  * @memberof ListPublicKeysResponseClass
34
34
  */
35
- 'nextPageToken': string;
35
+ 'totalItems': number;
36
36
  /**
37
- * The number of items per page
37
+ * Items per page.
38
38
  * @type {number}
39
39
  * @memberof ListPublicKeysResponseClass
40
40
  */
41
41
  'itemsPerPage': number;
42
42
  /**
43
- * The total number of items in the collection
44
- * @type {number}
43
+ * An array of public key entities containing all key details including code, slug, key value, and audit information
44
+ * @type {Array<PublicKeyClass>}
45
45
  * @memberof ListPublicKeysResponseClass
46
46
  */
47
- 'totalItems': number;
47
+ 'items': Array<PublicKeyClass>;
48
48
  }
49
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/setting-sdk",
3
- "version": "0.3.1-beta.1",
3
+ "version": "0.3.1-beta.16",
4
4
  "description": "OpenAPI client for @emilgroup/setting-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -18,7 +18,7 @@
18
18
  "prepare": "npm run build"
19
19
  },
20
20
  "dependencies": {
21
- "axios": "^1.12.0"
21
+ "axios": "1.12.0"
22
22
  },
23
23
  "devDependencies": {
24
24