flexinet-api 0.0.2306 → 0.0.2307
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/api.ts +8 -1
- package/dist/api.d.ts +7 -0
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +7 -0
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## flexinet-api@0.0.
|
1
|
+
## flexinet-api@0.0.2307
|
2
2
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
4
4
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
36
36
|
_published:_
|
37
37
|
|
38
38
|
```
|
39
|
-
npm install flexinet-api@0.0.
|
39
|
+
npm install flexinet-api@0.0.2307 --save
|
40
40
|
```
|
41
41
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
@@ -128,6 +128,12 @@ export interface AuditLog {
|
|
128
128
|
* @memberof AuditLog
|
129
129
|
*/
|
130
130
|
'objectId'?: string;
|
131
|
+
/**
|
132
|
+
*
|
133
|
+
* @type {string}
|
134
|
+
* @memberof AuditLog
|
135
|
+
*/
|
136
|
+
'diff'?: string;
|
131
137
|
}
|
132
138
|
|
133
139
|
export const AuditLogActionEnum = {
|
@@ -176,7 +182,8 @@ export interface AuditLogListResponse {
|
|
176
182
|
|
177
183
|
export const AuditLogObjectType = {
|
178
184
|
Promotion: 'promotion',
|
179
|
-
ApiKey: 'api_key'
|
185
|
+
ApiKey: 'api_key',
|
186
|
+
Config: 'config'
|
180
187
|
} as const;
|
181
188
|
|
182
189
|
export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
|
package/dist/api.d.ts
CHANGED
@@ -110,6 +110,12 @@ export interface AuditLog {
|
|
110
110
|
* @memberof AuditLog
|
111
111
|
*/
|
112
112
|
'objectId'?: string;
|
113
|
+
/**
|
114
|
+
*
|
115
|
+
* @type {string}
|
116
|
+
* @memberof AuditLog
|
117
|
+
*/
|
118
|
+
'diff'?: string;
|
113
119
|
}
|
114
120
|
export declare const AuditLogActionEnum: {
|
115
121
|
readonly Create: "create";
|
@@ -155,6 +161,7 @@ export interface AuditLogListResponse {
|
|
155
161
|
export declare const AuditLogObjectType: {
|
156
162
|
readonly Promotion: "promotion";
|
157
163
|
readonly ApiKey: "api_key";
|
164
|
+
readonly Config: "config";
|
158
165
|
};
|
159
166
|
export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
|
160
167
|
/**
|
package/dist/api.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
@@ -110,6 +110,12 @@ export interface AuditLog {
|
|
110
110
|
* @memberof AuditLog
|
111
111
|
*/
|
112
112
|
'objectId'?: string;
|
113
|
+
/**
|
114
|
+
*
|
115
|
+
* @type {string}
|
116
|
+
* @memberof AuditLog
|
117
|
+
*/
|
118
|
+
'diff'?: string;
|
113
119
|
}
|
114
120
|
export declare const AuditLogActionEnum: {
|
115
121
|
readonly Create: "create";
|
@@ -155,6 +161,7 @@ export interface AuditLogListResponse {
|
|
155
161
|
export declare const AuditLogObjectType: {
|
156
162
|
readonly Promotion: "promotion";
|
157
163
|
readonly ApiKey: "api_key";
|
164
|
+
readonly Config: "config";
|
158
165
|
};
|
159
166
|
export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
|
160
167
|
/**
|
package/dist/esm/api.js
CHANGED