flexinet-api 0.0.2306 → 0.0.2308

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
@@ -1,4 +1,4 @@
1
- ## flexinet-api@0.0.2306
1
+ ## flexinet-api@0.0.2308
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.2306 --save
39
+ npm install flexinet-api@0.0.2308 --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
@@ -51,7 +51,8 @@ exports.AuditLogActionEnum = {
51
51
  */
52
52
  exports.AuditLogObjectType = {
53
53
  Promotion: 'promotion',
54
- ApiKey: 'api_key'
54
+ ApiKey: 'api_key',
55
+ Config: 'config'
55
56
  };
56
57
  /**
57
58
  *
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
@@ -46,7 +46,8 @@ export const AuditLogActionEnum = {
46
46
  */
47
47
  export const AuditLogObjectType = {
48
48
  Promotion: 'promotion',
49
- ApiKey: 'api_key'
49
+ ApiKey: 'api_key',
50
+ Config: 'config'
50
51
  };
51
52
  /**
52
53
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flexinet-api",
3
- "version": "0.0.2306",
3
+ "version": "0.0.2308",
4
4
  "description": "OpenAPI client for flexinet-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {