@emilgroup/numbergenerator-sdk-node 1.5.1-beta.16 → 1.5.1-beta.18
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 +2 -2
- package/base.ts +1 -0
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -0
- package/dist/models/entity-number-class.d.ts +7 -0
- package/dist/models/entity-number-class.js +2 -1
- package/models/entity-number-class.ts +8 -1
- package/package.json +2 -2
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/numbergenerator-sdk-node@1.5.1-beta.
|
|
20
|
+
npm install @emilgroup/numbergenerator-sdk-node@1.5.1-beta.18 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/numbergenerator-sdk-node@1.5.1-beta.
|
|
24
|
+
yarn add @emilgroup/numbergenerator-sdk-node@1.5.1-beta.18
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `NumbersApi`.
|
package/base.ts
CHANGED
|
@@ -60,6 +60,7 @@ export enum Environment {
|
|
|
60
60
|
Staging = 'https://apiv2-staging.emil.de',
|
|
61
61
|
Development = 'https://apiv2-dev.emil.de',
|
|
62
62
|
ProductionZurich = 'https://eu-central-2.apiv2.emil.de',
|
|
63
|
+
StagingZurich = 'https://eu-central-2.apiv2-staging.emil.de',
|
|
63
64
|
}
|
|
64
65
|
|
|
65
66
|
let _retry_count = 0
|
package/dist/base.d.ts
CHANGED
|
@@ -39,7 +39,8 @@ export declare enum Environment {
|
|
|
39
39
|
Test = "https://apiv2-test.emil.de",
|
|
40
40
|
Staging = "https://apiv2-staging.emil.de",
|
|
41
41
|
Development = "https://apiv2-dev.emil.de",
|
|
42
|
-
ProductionZurich = "https://eu-central-2.apiv2.emil.de"
|
|
42
|
+
ProductionZurich = "https://eu-central-2.apiv2.emil.de",
|
|
43
|
+
StagingZurich = "https://eu-central-2.apiv2-staging.emil.de"
|
|
43
44
|
}
|
|
44
45
|
export declare function resetRetry(): void;
|
|
45
46
|
/**
|
package/dist/base.js
CHANGED
|
@@ -132,6 +132,7 @@ var Environment;
|
|
|
132
132
|
Environment["Staging"] = "https://apiv2-staging.emil.de";
|
|
133
133
|
Environment["Development"] = "https://apiv2-dev.emil.de";
|
|
134
134
|
Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
|
|
135
|
+
Environment["StagingZurich"] = "https://eu-central-2.apiv2-staging.emil.de";
|
|
135
136
|
})(Environment = exports.Environment || (exports.Environment = {}));
|
|
136
137
|
var _retry_count = 0;
|
|
137
138
|
var _retry = null;
|
|
@@ -45,6 +45,12 @@ export interface EntityNumberClass {
|
|
|
45
45
|
* @memberof EntityNumberClass
|
|
46
46
|
*/
|
|
47
47
|
'configuration': object;
|
|
48
|
+
/**
|
|
49
|
+
* Entity number statistics.
|
|
50
|
+
* @type {object}
|
|
51
|
+
* @memberof EntityNumberClass
|
|
52
|
+
*/
|
|
53
|
+
'stats'?: object;
|
|
48
54
|
/**
|
|
49
55
|
* Time at which the object was created.
|
|
50
56
|
* @type {string}
|
|
@@ -62,5 +68,6 @@ export declare const EntityNumberClassTypeEnum: {
|
|
|
62
68
|
readonly Sequence: "sequence";
|
|
63
69
|
readonly List: "list";
|
|
64
70
|
readonly Random: "random";
|
|
71
|
+
readonly Biglist: "biglist";
|
|
65
72
|
};
|
|
66
73
|
export type EntityNumberClassTypeEnum = typeof EntityNumberClassTypeEnum[keyof typeof EntityNumberClassTypeEnum];
|
|
@@ -50,6 +50,12 @@ export interface EntityNumberClass {
|
|
|
50
50
|
* @memberof EntityNumberClass
|
|
51
51
|
*/
|
|
52
52
|
'configuration': object;
|
|
53
|
+
/**
|
|
54
|
+
* Entity number statistics.
|
|
55
|
+
* @type {object}
|
|
56
|
+
* @memberof EntityNumberClass
|
|
57
|
+
*/
|
|
58
|
+
'stats'?: object;
|
|
53
59
|
/**
|
|
54
60
|
* Time at which the object was created.
|
|
55
61
|
* @type {string}
|
|
@@ -67,7 +73,8 @@ export interface EntityNumberClass {
|
|
|
67
73
|
export const EntityNumberClassTypeEnum = {
|
|
68
74
|
Sequence: 'sequence',
|
|
69
75
|
List: 'list',
|
|
70
|
-
Random: 'random'
|
|
76
|
+
Random: 'random',
|
|
77
|
+
Biglist: 'biglist'
|
|
71
78
|
} as const;
|
|
72
79
|
|
|
73
80
|
export type EntityNumberClassTypeEnum = typeof EntityNumberClassTypeEnum[keyof typeof EntityNumberClassTypeEnum];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/numbergenerator-sdk-node",
|
|
3
|
-
"version": "1.5.1-beta.
|
|
3
|
+
"version": "1.5.1-beta.18",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/numbergenerator-sdk-node",
|
|
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.
|
|
21
|
+
"axios": "1.18.0",
|
|
22
22
|
"form-data": "^4.0.0",
|
|
23
23
|
"url": "^0.11.0"
|
|
24
24
|
},
|