@openfilz-sdk/typescript-ee 1.9.5 → 1.9.6
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/.openapi-generator/FILES +10 -0
- package/.openapi-generator/openfilz-api-generate-typescript-sdk.sha256 +1 -1
- package/README.md +10 -2
- package/api/aichat-api.ts +228 -0
- package/dist/api/aichat-api.d.ts +103 -0
- package/dist/api/aichat-api.js +213 -0
- package/dist/esm/api/aichat-api.d.ts +103 -0
- package/dist/esm/api/aichat-api.js +213 -0
- package/dist/esm/models/index.d.ts +5 -0
- package/dist/esm/models/index.js +5 -0
- package/dist/esm/models/item-result.d.ts +16 -0
- package/dist/esm/models/item-result.js +14 -0
- package/dist/esm/models/item.d.ts +21 -0
- package/dist/esm/models/item.js +14 -0
- package/dist/esm/models/reorganization-apply-request.d.ts +14 -0
- package/dist/esm/models/reorganization-apply-request.js +14 -0
- package/dist/esm/models/reorganization-apply-result.d.ts +22 -0
- package/dist/esm/models/reorganization-apply-result.js +14 -0
- package/dist/esm/models/reorganization-plan-view.d.ts +28 -0
- package/dist/esm/models/reorganization-plan-view.js +14 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/item-result.d.ts +16 -0
- package/dist/models/item-result.js +15 -0
- package/dist/models/item.d.ts +21 -0
- package/dist/models/item.js +15 -0
- package/dist/models/reorganization-apply-request.d.ts +14 -0
- package/dist/models/reorganization-apply-request.js +15 -0
- package/dist/models/reorganization-apply-result.d.ts +22 -0
- package/dist/models/reorganization-apply-result.js +15 -0
- package/dist/models/reorganization-plan-view.d.ts +28 -0
- package/dist/models/reorganization-plan-view.js +15 -0
- package/docs/AIChatApi.md +159 -0
- package/docs/Item.md +34 -0
- package/docs/ItemResult.md +24 -0
- package/docs/ReorganizationApplyRequest.md +20 -0
- package/docs/ReorganizationApplyResult.md +34 -0
- package/docs/ReorganizationPlanView.md +44 -0
- package/models/index.ts +5 -0
- package/models/item-result.ts +22 -0
- package/models/item.ts +27 -0
- package/models/reorganization-apply-request.ts +20 -0
- package/models/reorganization-apply-result.ts +30 -0
- package/models/reorganization-plan-view.ts +38 -0
- package/package.json +1 -1
|
@@ -31,6 +31,42 @@ import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
|
|
|
31
31
|
*/
|
|
32
32
|
export const AIChatApiAxiosParamCreator = function (configuration) {
|
|
33
33
|
return {
|
|
34
|
+
/**
|
|
35
|
+
* Creates the missing folders and moves the selected items (all applicable items when none is given).
|
|
36
|
+
* @summary Apply a proposed reorganisation plan
|
|
37
|
+
* @param {string} planId
|
|
38
|
+
* @param {ReorganizationApplyRequest} [reorganizationApplyRequest]
|
|
39
|
+
* @param {*} [options] Override http request option.
|
|
40
|
+
* @throws {RequiredError}
|
|
41
|
+
*/
|
|
42
|
+
apply: (planId_1, reorganizationApplyRequest_1, ...args_1) => __awaiter(this, [planId_1, reorganizationApplyRequest_1, ...args_1], void 0, function* (planId, reorganizationApplyRequest, options = {}) {
|
|
43
|
+
// verify required parameter 'planId' is not null or undefined
|
|
44
|
+
assertParamExists('apply', 'planId', planId);
|
|
45
|
+
const localVarPath = `/api/v1/ai/reorganization/{planId}/apply`
|
|
46
|
+
.replace('{planId}', encodeURIComponent(String(planId)));
|
|
47
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
48
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
49
|
+
let baseOptions;
|
|
50
|
+
if (configuration) {
|
|
51
|
+
baseOptions = configuration.baseOptions;
|
|
52
|
+
}
|
|
53
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
54
|
+
const localVarHeaderParameter = {};
|
|
55
|
+
const localVarQueryParameter = {};
|
|
56
|
+
// authentication keycloak_auth required
|
|
57
|
+
// http bearer authentication required
|
|
58
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
59
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
60
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
61
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
62
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
63
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
64
|
+
localVarRequestOptions.data = serializeDataIfNeeded(reorganizationApplyRequest, localVarRequestOptions, configuration);
|
|
65
|
+
return {
|
|
66
|
+
url: toPathString(localVarUrlObj),
|
|
67
|
+
options: localVarRequestOptions,
|
|
68
|
+
};
|
|
69
|
+
}),
|
|
34
70
|
/**
|
|
35
71
|
* Send a message and receive a streaming response. The AI can answer questions about documents, search, summarize, and reorganize files.
|
|
36
72
|
* @summary Chat with AI assistant
|
|
@@ -97,6 +133,72 @@ export const AIChatApiAxiosParamCreator = function (configuration) {
|
|
|
97
133
|
options: localVarRequestOptions,
|
|
98
134
|
};
|
|
99
135
|
}),
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @summary Discard a proposed reorganisation plan
|
|
139
|
+
* @param {string} planId
|
|
140
|
+
* @param {*} [options] Override http request option.
|
|
141
|
+
* @throws {RequiredError}
|
|
142
|
+
*/
|
|
143
|
+
discard: (planId_1, ...args_1) => __awaiter(this, [planId_1, ...args_1], void 0, function* (planId, options = {}) {
|
|
144
|
+
// verify required parameter 'planId' is not null or undefined
|
|
145
|
+
assertParamExists('discard', 'planId', planId);
|
|
146
|
+
const localVarPath = `/api/v1/ai/reorganization/{planId}/discard`
|
|
147
|
+
.replace('{planId}', encodeURIComponent(String(planId)));
|
|
148
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
149
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
150
|
+
let baseOptions;
|
|
151
|
+
if (configuration) {
|
|
152
|
+
baseOptions = configuration.baseOptions;
|
|
153
|
+
}
|
|
154
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
155
|
+
const localVarHeaderParameter = {};
|
|
156
|
+
const localVarQueryParameter = {};
|
|
157
|
+
// authentication keycloak_auth required
|
|
158
|
+
// http bearer authentication required
|
|
159
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
160
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
161
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
162
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
163
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
164
|
+
return {
|
|
165
|
+
url: toPathString(localVarUrlObj),
|
|
166
|
+
options: localVarRequestOptions,
|
|
167
|
+
};
|
|
168
|
+
}),
|
|
169
|
+
/**
|
|
170
|
+
* The plan\'s items (what moves where), which are applicable, and its status.
|
|
171
|
+
* @summary Get a reorganisation plan proposed by the AI assistant
|
|
172
|
+
* @param {string} planId
|
|
173
|
+
* @param {*} [options] Override http request option.
|
|
174
|
+
* @throws {RequiredError}
|
|
175
|
+
*/
|
|
176
|
+
get3: (planId_1, ...args_1) => __awaiter(this, [planId_1, ...args_1], void 0, function* (planId, options = {}) {
|
|
177
|
+
// verify required parameter 'planId' is not null or undefined
|
|
178
|
+
assertParamExists('get3', 'planId', planId);
|
|
179
|
+
const localVarPath = `/api/v1/ai/reorganization/{planId}`
|
|
180
|
+
.replace('{planId}', encodeURIComponent(String(planId)));
|
|
181
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
182
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
183
|
+
let baseOptions;
|
|
184
|
+
if (configuration) {
|
|
185
|
+
baseOptions = configuration.baseOptions;
|
|
186
|
+
}
|
|
187
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
188
|
+
const localVarHeaderParameter = {};
|
|
189
|
+
const localVarQueryParameter = {};
|
|
190
|
+
// authentication keycloak_auth required
|
|
191
|
+
// http bearer authentication required
|
|
192
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
193
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
194
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
195
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
196
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
197
|
+
return {
|
|
198
|
+
url: toPathString(localVarUrlObj),
|
|
199
|
+
options: localVarRequestOptions,
|
|
200
|
+
};
|
|
201
|
+
}),
|
|
100
202
|
/**
|
|
101
203
|
* Get all messages in a conversation
|
|
102
204
|
* @summary Get conversation history
|
|
@@ -167,6 +269,23 @@ export const AIChatApiAxiosParamCreator = function (configuration) {
|
|
|
167
269
|
export const AIChatApiFp = function (configuration) {
|
|
168
270
|
const localVarAxiosParamCreator = AIChatApiAxiosParamCreator(configuration);
|
|
169
271
|
return {
|
|
272
|
+
/**
|
|
273
|
+
* Creates the missing folders and moves the selected items (all applicable items when none is given).
|
|
274
|
+
* @summary Apply a proposed reorganisation plan
|
|
275
|
+
* @param {string} planId
|
|
276
|
+
* @param {ReorganizationApplyRequest} [reorganizationApplyRequest]
|
|
277
|
+
* @param {*} [options] Override http request option.
|
|
278
|
+
* @throws {RequiredError}
|
|
279
|
+
*/
|
|
280
|
+
apply(planId, reorganizationApplyRequest, options) {
|
|
281
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
282
|
+
var _a, _b, _c;
|
|
283
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.apply(planId, reorganizationApplyRequest, options);
|
|
284
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
285
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIChatApi.apply']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
286
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
287
|
+
});
|
|
288
|
+
},
|
|
170
289
|
/**
|
|
171
290
|
* Send a message and receive a streaming response. The AI can answer questions about documents, search, summarize, and reorganize files.
|
|
172
291
|
* @summary Chat with AI assistant
|
|
@@ -199,6 +318,38 @@ export const AIChatApiFp = function (configuration) {
|
|
|
199
318
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
200
319
|
});
|
|
201
320
|
},
|
|
321
|
+
/**
|
|
322
|
+
*
|
|
323
|
+
* @summary Discard a proposed reorganisation plan
|
|
324
|
+
* @param {string} planId
|
|
325
|
+
* @param {*} [options] Override http request option.
|
|
326
|
+
* @throws {RequiredError}
|
|
327
|
+
*/
|
|
328
|
+
discard(planId, options) {
|
|
329
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
330
|
+
var _a, _b, _c;
|
|
331
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.discard(planId, options);
|
|
332
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
333
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIChatApi.discard']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
334
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
335
|
+
});
|
|
336
|
+
},
|
|
337
|
+
/**
|
|
338
|
+
* The plan\'s items (what moves where), which are applicable, and its status.
|
|
339
|
+
* @summary Get a reorganisation plan proposed by the AI assistant
|
|
340
|
+
* @param {string} planId
|
|
341
|
+
* @param {*} [options] Override http request option.
|
|
342
|
+
* @throws {RequiredError}
|
|
343
|
+
*/
|
|
344
|
+
get3(planId, options) {
|
|
345
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
346
|
+
var _a, _b, _c;
|
|
347
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.get3(planId, options);
|
|
348
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
349
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIChatApi.get3']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
350
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
351
|
+
});
|
|
352
|
+
},
|
|
202
353
|
/**
|
|
203
354
|
* Get all messages in a conversation
|
|
204
355
|
* @summary Get conversation history
|
|
@@ -238,6 +389,17 @@ export const AIChatApiFp = function (configuration) {
|
|
|
238
389
|
export const AIChatApiFactory = function (configuration, basePath, axios) {
|
|
239
390
|
const localVarFp = AIChatApiFp(configuration);
|
|
240
391
|
return {
|
|
392
|
+
/**
|
|
393
|
+
* Creates the missing folders and moves the selected items (all applicable items when none is given).
|
|
394
|
+
* @summary Apply a proposed reorganisation plan
|
|
395
|
+
* @param {string} planId
|
|
396
|
+
* @param {ReorganizationApplyRequest} [reorganizationApplyRequest]
|
|
397
|
+
* @param {*} [options] Override http request option.
|
|
398
|
+
* @throws {RequiredError}
|
|
399
|
+
*/
|
|
400
|
+
apply(planId, reorganizationApplyRequest, options) {
|
|
401
|
+
return localVarFp.apply(planId, reorganizationApplyRequest, options).then((request) => request(axios, basePath));
|
|
402
|
+
},
|
|
241
403
|
/**
|
|
242
404
|
* Send a message and receive a streaming response. The AI can answer questions about documents, search, summarize, and reorganize files.
|
|
243
405
|
* @summary Chat with AI assistant
|
|
@@ -258,6 +420,26 @@ export const AIChatApiFactory = function (configuration, basePath, axios) {
|
|
|
258
420
|
deleteConversation(conversationId, options) {
|
|
259
421
|
return localVarFp.deleteConversation(conversationId, options).then((request) => request(axios, basePath));
|
|
260
422
|
},
|
|
423
|
+
/**
|
|
424
|
+
*
|
|
425
|
+
* @summary Discard a proposed reorganisation plan
|
|
426
|
+
* @param {string} planId
|
|
427
|
+
* @param {*} [options] Override http request option.
|
|
428
|
+
* @throws {RequiredError}
|
|
429
|
+
*/
|
|
430
|
+
discard(planId, options) {
|
|
431
|
+
return localVarFp.discard(planId, options).then((request) => request(axios, basePath));
|
|
432
|
+
},
|
|
433
|
+
/**
|
|
434
|
+
* The plan\'s items (what moves where), which are applicable, and its status.
|
|
435
|
+
* @summary Get a reorganisation plan proposed by the AI assistant
|
|
436
|
+
* @param {string} planId
|
|
437
|
+
* @param {*} [options] Override http request option.
|
|
438
|
+
* @throws {RequiredError}
|
|
439
|
+
*/
|
|
440
|
+
get3(planId, options) {
|
|
441
|
+
return localVarFp.get3(planId, options).then((request) => request(axios, basePath));
|
|
442
|
+
},
|
|
261
443
|
/**
|
|
262
444
|
* Get all messages in a conversation
|
|
263
445
|
* @summary Get conversation history
|
|
@@ -283,6 +465,17 @@ export const AIChatApiFactory = function (configuration, basePath, axios) {
|
|
|
283
465
|
* AIChatApi - object-oriented interface
|
|
284
466
|
*/
|
|
285
467
|
export class AIChatApi extends BaseAPI {
|
|
468
|
+
/**
|
|
469
|
+
* Creates the missing folders and moves the selected items (all applicable items when none is given).
|
|
470
|
+
* @summary Apply a proposed reorganisation plan
|
|
471
|
+
* @param {string} planId
|
|
472
|
+
* @param {ReorganizationApplyRequest} [reorganizationApplyRequest]
|
|
473
|
+
* @param {*} [options] Override http request option.
|
|
474
|
+
* @throws {RequiredError}
|
|
475
|
+
*/
|
|
476
|
+
apply(planId, reorganizationApplyRequest, options) {
|
|
477
|
+
return AIChatApiFp(this.configuration).apply(planId, reorganizationApplyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
478
|
+
}
|
|
286
479
|
/**
|
|
287
480
|
* Send a message and receive a streaming response. The AI can answer questions about documents, search, summarize, and reorganize files.
|
|
288
481
|
* @summary Chat with AI assistant
|
|
@@ -303,6 +496,26 @@ export class AIChatApi extends BaseAPI {
|
|
|
303
496
|
deleteConversation(conversationId, options) {
|
|
304
497
|
return AIChatApiFp(this.configuration).deleteConversation(conversationId, options).then((request) => request(this.axios, this.basePath));
|
|
305
498
|
}
|
|
499
|
+
/**
|
|
500
|
+
*
|
|
501
|
+
* @summary Discard a proposed reorganisation plan
|
|
502
|
+
* @param {string} planId
|
|
503
|
+
* @param {*} [options] Override http request option.
|
|
504
|
+
* @throws {RequiredError}
|
|
505
|
+
*/
|
|
506
|
+
discard(planId, options) {
|
|
507
|
+
return AIChatApiFp(this.configuration).discard(planId, options).then((request) => request(this.axios, this.basePath));
|
|
508
|
+
}
|
|
509
|
+
/**
|
|
510
|
+
* The plan\'s items (what moves where), which are applicable, and its status.
|
|
511
|
+
* @summary Get a reorganisation plan proposed by the AI assistant
|
|
512
|
+
* @param {string} planId
|
|
513
|
+
* @param {*} [options] Override http request option.
|
|
514
|
+
* @throws {RequiredError}
|
|
515
|
+
*/
|
|
516
|
+
get3(planId, options) {
|
|
517
|
+
return AIChatApiFp(this.configuration).get3(planId, options).then((request) => request(this.axios, this.basePath));
|
|
518
|
+
}
|
|
306
519
|
/**
|
|
307
520
|
* Get all messages in a conversation
|
|
308
521
|
* @summary Get conversation history
|
|
@@ -49,6 +49,8 @@ export * from './folder-element-info';
|
|
|
49
49
|
export * from './folder-response';
|
|
50
50
|
export * from './ingestion-status-dto';
|
|
51
51
|
export * from './instantiate-template-request';
|
|
52
|
+
export * from './item';
|
|
53
|
+
export * from './item-result';
|
|
52
54
|
export * from './license-info';
|
|
53
55
|
export * from './list-ai-models-request';
|
|
54
56
|
export * from './mcp-agent-token-info';
|
|
@@ -72,6 +74,9 @@ export * from './pdf-transform-audit';
|
|
|
72
74
|
export * from './public-signature-view';
|
|
73
75
|
export * from './rename-audit';
|
|
74
76
|
export * from './rename-request';
|
|
77
|
+
export * from './reorganization-apply-request';
|
|
78
|
+
export * from './reorganization-apply-result';
|
|
79
|
+
export * from './reorganization-plan-view';
|
|
75
80
|
export * from './replace-audit';
|
|
76
81
|
export * from './response';
|
|
77
82
|
export * from './restore-version-audit';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -49,6 +49,8 @@ export * from './folder-element-info';
|
|
|
49
49
|
export * from './folder-response';
|
|
50
50
|
export * from './ingestion-status-dto';
|
|
51
51
|
export * from './instantiate-template-request';
|
|
52
|
+
export * from './item';
|
|
53
|
+
export * from './item-result';
|
|
52
54
|
export * from './license-info';
|
|
53
55
|
export * from './list-ai-models-request';
|
|
54
56
|
export * from './mcp-agent-token-info';
|
|
@@ -72,6 +74,9 @@ export * from './pdf-transform-audit';
|
|
|
72
74
|
export * from './public-signature-view';
|
|
73
75
|
export * from './rename-audit';
|
|
74
76
|
export * from './rename-request';
|
|
77
|
+
export * from './reorganization-apply-request';
|
|
78
|
+
export * from './reorganization-apply-result';
|
|
79
|
+
export * from './reorganization-plan-view';
|
|
75
80
|
export * from './replace-audit';
|
|
76
81
|
export * from './response';
|
|
77
82
|
export * from './restore-version-audit';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface ItemResult {
|
|
13
|
+
'documentId'?: string;
|
|
14
|
+
'outcome'?: string;
|
|
15
|
+
'detail'?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface Item {
|
|
13
|
+
'documentId'?: string;
|
|
14
|
+
'name'?: string;
|
|
15
|
+
'type'?: string;
|
|
16
|
+
'currentPath'?: string;
|
|
17
|
+
'targetPath'?: string;
|
|
18
|
+
'targetExists'?: boolean;
|
|
19
|
+
'applicable'?: boolean;
|
|
20
|
+
'issue'?: string;
|
|
21
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface ReorganizationApplyRequest {
|
|
13
|
+
'itemIds'?: Array<string>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ReorganizationPlanView } from './reorganization-plan-view';
|
|
13
|
+
export interface ReorganizationApplyResult {
|
|
14
|
+
'planId'?: string;
|
|
15
|
+
'status'?: string;
|
|
16
|
+
'moved'?: number;
|
|
17
|
+
'failed'?: number;
|
|
18
|
+
'skipped'?: number;
|
|
19
|
+
'createdFolders'?: Array<string>;
|
|
20
|
+
'modifiedFolderIds'?: Array<string>;
|
|
21
|
+
'plan'?: ReorganizationPlanView;
|
|
22
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Item } from './item';
|
|
13
|
+
import type { ItemResult } from './item-result';
|
|
14
|
+
export interface ReorganizationPlanView {
|
|
15
|
+
'id'?: string;
|
|
16
|
+
'status'?: string;
|
|
17
|
+
'rootFolderId'?: string;
|
|
18
|
+
'rootFolderPath'?: string;
|
|
19
|
+
'rationale'?: string;
|
|
20
|
+
'items'?: Array<Item>;
|
|
21
|
+
'foldersToCreate'?: Array<string>;
|
|
22
|
+
'applicable'?: number;
|
|
23
|
+
'blocked'?: number;
|
|
24
|
+
'createdBy'?: string;
|
|
25
|
+
'createdAt'?: string;
|
|
26
|
+
'appliedAt'?: string;
|
|
27
|
+
'results'?: Array<ItemResult>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -49,6 +49,8 @@ export * from './folder-element-info';
|
|
|
49
49
|
export * from './folder-response';
|
|
50
50
|
export * from './ingestion-status-dto';
|
|
51
51
|
export * from './instantiate-template-request';
|
|
52
|
+
export * from './item';
|
|
53
|
+
export * from './item-result';
|
|
52
54
|
export * from './license-info';
|
|
53
55
|
export * from './list-ai-models-request';
|
|
54
56
|
export * from './mcp-agent-token-info';
|
|
@@ -72,6 +74,9 @@ export * from './pdf-transform-audit';
|
|
|
72
74
|
export * from './public-signature-view';
|
|
73
75
|
export * from './rename-audit';
|
|
74
76
|
export * from './rename-request';
|
|
77
|
+
export * from './reorganization-apply-request';
|
|
78
|
+
export * from './reorganization-apply-result';
|
|
79
|
+
export * from './reorganization-plan-view';
|
|
75
80
|
export * from './replace-audit';
|
|
76
81
|
export * from './response';
|
|
77
82
|
export * from './restore-version-audit';
|
package/dist/models/index.js
CHANGED
|
@@ -65,6 +65,8 @@ __exportStar(require("./folder-element-info"), exports);
|
|
|
65
65
|
__exportStar(require("./folder-response"), exports);
|
|
66
66
|
__exportStar(require("./ingestion-status-dto"), exports);
|
|
67
67
|
__exportStar(require("./instantiate-template-request"), exports);
|
|
68
|
+
__exportStar(require("./item"), exports);
|
|
69
|
+
__exportStar(require("./item-result"), exports);
|
|
68
70
|
__exportStar(require("./license-info"), exports);
|
|
69
71
|
__exportStar(require("./list-ai-models-request"), exports);
|
|
70
72
|
__exportStar(require("./mcp-agent-token-info"), exports);
|
|
@@ -88,6 +90,9 @@ __exportStar(require("./pdf-transform-audit"), exports);
|
|
|
88
90
|
__exportStar(require("./public-signature-view"), exports);
|
|
89
91
|
__exportStar(require("./rename-audit"), exports);
|
|
90
92
|
__exportStar(require("./rename-request"), exports);
|
|
93
|
+
__exportStar(require("./reorganization-apply-request"), exports);
|
|
94
|
+
__exportStar(require("./reorganization-apply-result"), exports);
|
|
95
|
+
__exportStar(require("./reorganization-plan-view"), exports);
|
|
91
96
|
__exportStar(require("./replace-audit"), exports);
|
|
92
97
|
__exportStar(require("./response"), exports);
|
|
93
98
|
__exportStar(require("./restore-version-audit"), exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface ItemResult {
|
|
13
|
+
'documentId'?: string;
|
|
14
|
+
'outcome'?: string;
|
|
15
|
+
'detail'?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* openfilz-api
|
|
6
|
+
* API for Document Management System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface Item {
|
|
13
|
+
'documentId'?: string;
|
|
14
|
+
'name'?: string;
|
|
15
|
+
'type'?: string;
|
|
16
|
+
'currentPath'?: string;
|
|
17
|
+
'targetPath'?: string;
|
|
18
|
+
'targetExists'?: boolean;
|
|
19
|
+
'applicable'?: boolean;
|
|
20
|
+
'issue'?: string;
|
|
21
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* openfilz-api
|
|
6
|
+
* API for Document Management System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface ReorganizationApplyRequest {
|
|
13
|
+
'itemIds'?: Array<string>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* openfilz-api
|
|
6
|
+
* API for Document Management System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ReorganizationPlanView } from './reorganization-plan-view';
|
|
13
|
+
export interface ReorganizationApplyResult {
|
|
14
|
+
'planId'?: string;
|
|
15
|
+
'status'?: string;
|
|
16
|
+
'moved'?: number;
|
|
17
|
+
'failed'?: number;
|
|
18
|
+
'skipped'?: number;
|
|
19
|
+
'createdFolders'?: Array<string>;
|
|
20
|
+
'modifiedFolderIds'?: Array<string>;
|
|
21
|
+
'plan'?: ReorganizationPlanView;
|
|
22
|
+
}
|