@emilgroup/numbergenerator-sdk-node 1.5.1-beta.17 → 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
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`.
|
|
@@ -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