@alicloud/dms-enterprise20181101 2.5.0 → 2.6.0
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/dist/client.d.ts +84 -0
- package/dist/client.js +204 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CheckInventoryJobRequest.d.ts +21 -0
- package/dist/models/CheckInventoryJobRequest.js +58 -0
- package/dist/models/CheckInventoryJobRequest.js.map +1 -0
- package/dist/models/CheckInventoryJobResponse.d.ts +19 -0
- package/dist/models/CheckInventoryJobResponse.js +69 -0
- package/dist/models/CheckInventoryJobResponse.js.map +1 -0
- package/dist/models/CheckInventoryJobResponseBody.d.ts +45 -0
- package/dist/models/CheckInventoryJobResponseBody.js +70 -0
- package/dist/models/CheckInventoryJobResponseBody.js.map +1 -0
- package/dist/models/ConfirmInventoryKnowledgeRequest.d.ts +37 -0
- package/dist/models/ConfirmInventoryKnowledgeRequest.js +62 -0
- package/dist/models/ConfirmInventoryKnowledgeRequest.js.map +1 -0
- package/dist/models/ConfirmInventoryKnowledgeResponse.d.ts +19 -0
- package/dist/models/ConfirmInventoryKnowledgeResponse.js +69 -0
- package/dist/models/ConfirmInventoryKnowledgeResponse.js.map +1 -0
- package/dist/models/ConfirmInventoryKnowledgeResponseBody.d.ts +41 -0
- package/dist/models/ConfirmInventoryKnowledgeResponseBody.js +66 -0
- package/dist/models/ConfirmInventoryKnowledgeResponseBody.js.map +1 -0
- package/dist/models/CreateInventoryJobRequest.d.ts +14 -0
- package/dist/models/CreateInventoryJobRequest.js +58 -0
- package/dist/models/CreateInventoryJobRequest.js.map +1 -0
- package/dist/models/CreateInventoryJobResponse.d.ts +19 -0
- package/dist/models/CreateInventoryJobResponse.js +69 -0
- package/dist/models/CreateInventoryJobResponse.js.map +1 -0
- package/dist/models/CreateInventoryJobResponseBody.d.ts +41 -0
- package/dist/models/CreateInventoryJobResponseBody.js +66 -0
- package/dist/models/CreateInventoryJobResponseBody.js.map +1 -0
- package/dist/models/KnowledgeBaseVo.d.ts +36 -0
- package/dist/models/KnowledgeBaseVo.js +102 -0
- package/dist/models/KnowledgeBaseVo.js.map +1 -0
- package/dist/models/KnowledgeJobInfoVo.d.ts +24 -0
- package/dist/models/KnowledgeJobInfoVo.js +78 -0
- package/dist/models/KnowledgeJobInfoVo.js.map +1 -0
- package/dist/models/KnowledgeSubJobInfoVo.d.ts +19 -0
- package/dist/models/KnowledgeSubJobInfoVo.js +68 -0
- package/dist/models/KnowledgeSubJobInfoVo.js.map +1 -0
- package/dist/models/MetaAgentPreCheckParam.d.ts +18 -0
- package/dist/models/MetaAgentPreCheckParam.js +66 -0
- package/dist/models/MetaAgentPreCheckParam.js.map +1 -0
- package/dist/models/SearchInventoryKnowledgeRequest.d.ts +51 -0
- package/dist/models/SearchInventoryKnowledgeRequest.js +70 -0
- package/dist/models/SearchInventoryKnowledgeRequest.js.map +1 -0
- package/dist/models/SearchInventoryKnowledgeResponse.d.ts +19 -0
- package/dist/models/SearchInventoryKnowledgeResponse.js +69 -0
- package/dist/models/SearchInventoryKnowledgeResponse.js.map +1 -0
- package/dist/models/SearchInventoryKnowledgeResponseBody.d.ts +56 -0
- package/dist/models/SearchInventoryKnowledgeResponseBody.js +94 -0
- package/dist/models/SearchInventoryKnowledgeResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +17 -0
- package/dist/models/model.js +56 -22
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +224 -0
- package/src/models/CheckInventoryJobRequest.ts +34 -0
- package/src/models/CheckInventoryJobResponse.ts +40 -0
- package/src/models/CheckInventoryJobResponseBody.ts +69 -0
- package/src/models/ConfirmInventoryKnowledgeRequest.ts +54 -0
- package/src/models/ConfirmInventoryKnowledgeResponse.ts +40 -0
- package/src/models/ConfirmInventoryKnowledgeResponseBody.ts +62 -0
- package/src/models/CreateInventoryJobRequest.ts +27 -0
- package/src/models/CreateInventoryJobResponse.ts +40 -0
- package/src/models/CreateInventoryJobResponseBody.ts +62 -0
- package/src/models/KnowledgeBaseVo.ts +93 -0
- package/src/models/KnowledgeJobInfoVo.ts +57 -0
- package/src/models/KnowledgeSubJobInfoVo.ts +42 -0
- package/src/models/MetaAgentPreCheckParam.ts +39 -0
- package/src/models/SearchInventoryKnowledgeRequest.ts +76 -0
- package/src/models/SearchInventoryKnowledgeResponse.ts +40 -0
- package/src/models/SearchInventoryKnowledgeResponseBody.ts +95 -0
- package/src/models/model.ts +17 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.MetaAgentPreCheckParam = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class MetaAgentPreCheckParam extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
dbIds: 'DbIds',
|
|
43
|
+
description: 'Description',
|
|
44
|
+
instanceIds: 'InstanceIds',
|
|
45
|
+
supplement: 'Supplement',
|
|
46
|
+
tableNames: 'TableNames',
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
static types() {
|
|
50
|
+
return {
|
|
51
|
+
dbIds: 'string',
|
|
52
|
+
description: 'string',
|
|
53
|
+
instanceIds: 'string',
|
|
54
|
+
supplement: 'string',
|
|
55
|
+
tableNames: 'string',
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
validate() {
|
|
59
|
+
super.validate();
|
|
60
|
+
}
|
|
61
|
+
constructor(map) {
|
|
62
|
+
super(map);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.MetaAgentPreCheckParam = MetaAgentPreCheckParam;
|
|
66
|
+
//# sourceMappingURL=MetaAgentPreCheckParam.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MetaAgentPreCheckParam.js","sourceRoot":"","sources":["../../src/models/MetaAgentPreCheckParam.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,sBAAuB,SAAQ,KAAK,CAAC,KAAK;IAMrD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,aAAa;YAC1B,UAAU,EAAE,YAAY;YACxB,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,QAAQ;YACf,WAAW,EAAE,QAAQ;YACrB,WAAW,EAAE,QAAQ;YACrB,UAAU,EAAE,QAAQ;YACpB,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,wDAiCC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class SearchInventoryKnowledgeRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* This parameter is required.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* 1001
|
|
9
|
+
*/
|
|
10
|
+
jobId?: number;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 0
|
|
14
|
+
*/
|
|
15
|
+
offset?: number;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 订单
|
|
19
|
+
*/
|
|
20
|
+
query?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* TABLE
|
|
24
|
+
*/
|
|
25
|
+
showType?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* 20
|
|
29
|
+
*/
|
|
30
|
+
size?: number;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* confidence
|
|
34
|
+
*/
|
|
35
|
+
sortBy?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* desc
|
|
39
|
+
*/
|
|
40
|
+
sortOrder?: string;
|
|
41
|
+
static names(): {
|
|
42
|
+
[key: string]: string;
|
|
43
|
+
};
|
|
44
|
+
static types(): {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
};
|
|
47
|
+
validate(): void;
|
|
48
|
+
constructor(map?: {
|
|
49
|
+
[key: string]: any;
|
|
50
|
+
});
|
|
51
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.SearchInventoryKnowledgeRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class SearchInventoryKnowledgeRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
jobId: 'JobId',
|
|
43
|
+
offset: 'Offset',
|
|
44
|
+
query: 'Query',
|
|
45
|
+
showType: 'ShowType',
|
|
46
|
+
size: 'Size',
|
|
47
|
+
sortBy: 'SortBy',
|
|
48
|
+
sortOrder: 'SortOrder',
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
static types() {
|
|
52
|
+
return {
|
|
53
|
+
jobId: 'number',
|
|
54
|
+
offset: 'number',
|
|
55
|
+
query: 'string',
|
|
56
|
+
showType: 'string',
|
|
57
|
+
size: 'number',
|
|
58
|
+
sortBy: 'string',
|
|
59
|
+
sortOrder: 'string',
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
validate() {
|
|
63
|
+
super.validate();
|
|
64
|
+
}
|
|
65
|
+
constructor(map) {
|
|
66
|
+
super(map);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.SearchInventoryKnowledgeRequest = SearchInventoryKnowledgeRequest;
|
|
70
|
+
//# sourceMappingURL=SearchInventoryKnowledgeRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchInventoryKnowledgeRequest.js","sourceRoot":"","sources":["../../src/models/SearchInventoryKnowledgeRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;IAuC9D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,MAAM,EAAE,QAAQ;YAChB,KAAK,EAAE,OAAO;YACd,QAAQ,EAAE,UAAU;YACpB,IAAI,EAAE,MAAM;YACZ,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,QAAQ;YACf,MAAM,EAAE,QAAQ;YAChB,KAAK,EAAE,QAAQ;YACf,QAAQ,EAAE,QAAQ;YAClB,IAAI,EAAE,QAAQ;YACd,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtED,0EAsEC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { SearchInventoryKnowledgeResponseBody } from "./SearchInventoryKnowledgeResponseBody";
|
|
3
|
+
export declare class SearchInventoryKnowledgeResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: SearchInventoryKnowledgeResponseBody;
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.SearchInventoryKnowledgeResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const SearchInventoryKnowledgeResponseBody_1 = require("./SearchInventoryKnowledgeResponseBody");
|
|
40
|
+
class SearchInventoryKnowledgeResponse extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
headers: 'headers',
|
|
44
|
+
statusCode: 'statusCode',
|
|
45
|
+
body: 'body',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
51
|
+
statusCode: 'number',
|
|
52
|
+
body: SearchInventoryKnowledgeResponseBody_1.SearchInventoryKnowledgeResponseBody,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
validate() {
|
|
56
|
+
if (this.headers) {
|
|
57
|
+
$dara.Model.validateMap(this.headers);
|
|
58
|
+
}
|
|
59
|
+
if (this.body && typeof this.body.validate === 'function') {
|
|
60
|
+
this.body.validate();
|
|
61
|
+
}
|
|
62
|
+
super.validate();
|
|
63
|
+
}
|
|
64
|
+
constructor(map) {
|
|
65
|
+
super(map);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.SearchInventoryKnowledgeResponse = SearchInventoryKnowledgeResponse;
|
|
69
|
+
//# sourceMappingURL=SearchInventoryKnowledgeResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchInventoryKnowledgeResponse.js","sourceRoot":"","sources":["../../src/models/SearchInventoryKnowledgeResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,iGAA8F;AAG9F,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAI/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,2EAAoC;SAC3C,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,4EAiCC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { KnowledgeBaseVO } from "./KnowledgeBaseVo";
|
|
3
|
+
export declare class SearchInventoryKnowledgeResponseBodyData extends $dara.Model {
|
|
4
|
+
items?: KnowledgeBaseVO[];
|
|
5
|
+
/**
|
|
6
|
+
* @example
|
|
7
|
+
* 100
|
|
8
|
+
*/
|
|
9
|
+
totalCount?: number;
|
|
10
|
+
static names(): {
|
|
11
|
+
[key: string]: string;
|
|
12
|
+
};
|
|
13
|
+
static types(): {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
};
|
|
16
|
+
validate(): void;
|
|
17
|
+
constructor(map?: {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
export declare class SearchInventoryKnowledgeResponseBody extends $dara.Model {
|
|
22
|
+
data?: SearchInventoryKnowledgeResponseBodyData;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* UnknownError
|
|
26
|
+
*/
|
|
27
|
+
errorCode?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* UnknownError
|
|
31
|
+
*/
|
|
32
|
+
errorMessage?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @remarks
|
|
35
|
+
* Id of the request
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* 0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
|
|
39
|
+
*/
|
|
40
|
+
requestId?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @example
|
|
43
|
+
* true
|
|
44
|
+
*/
|
|
45
|
+
success?: boolean;
|
|
46
|
+
static names(): {
|
|
47
|
+
[key: string]: string;
|
|
48
|
+
};
|
|
49
|
+
static types(): {
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
};
|
|
52
|
+
validate(): void;
|
|
53
|
+
constructor(map?: {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
});
|
|
56
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.SearchInventoryKnowledgeResponseBody = exports.SearchInventoryKnowledgeResponseBodyData = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const KnowledgeBaseVo_1 = require("./KnowledgeBaseVo");
|
|
40
|
+
class SearchInventoryKnowledgeResponseBodyData extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
items: 'Items',
|
|
44
|
+
totalCount: 'TotalCount',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static types() {
|
|
48
|
+
return {
|
|
49
|
+
items: { 'type': 'array', 'itemType': KnowledgeBaseVo_1.KnowledgeBaseVO },
|
|
50
|
+
totalCount: 'number',
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
validate() {
|
|
54
|
+
if (Array.isArray(this.items)) {
|
|
55
|
+
$dara.Model.validateArray(this.items);
|
|
56
|
+
}
|
|
57
|
+
super.validate();
|
|
58
|
+
}
|
|
59
|
+
constructor(map) {
|
|
60
|
+
super(map);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.SearchInventoryKnowledgeResponseBodyData = SearchInventoryKnowledgeResponseBodyData;
|
|
64
|
+
class SearchInventoryKnowledgeResponseBody extends $dara.Model {
|
|
65
|
+
static names() {
|
|
66
|
+
return {
|
|
67
|
+
data: 'Data',
|
|
68
|
+
errorCode: 'ErrorCode',
|
|
69
|
+
errorMessage: 'ErrorMessage',
|
|
70
|
+
requestId: 'RequestId',
|
|
71
|
+
success: 'Success',
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
static types() {
|
|
75
|
+
return {
|
|
76
|
+
data: SearchInventoryKnowledgeResponseBodyData,
|
|
77
|
+
errorCode: 'string',
|
|
78
|
+
errorMessage: 'string',
|
|
79
|
+
requestId: 'string',
|
|
80
|
+
success: 'boolean',
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
validate() {
|
|
84
|
+
if (this.data && typeof this.data.validate === 'function') {
|
|
85
|
+
this.data.validate();
|
|
86
|
+
}
|
|
87
|
+
super.validate();
|
|
88
|
+
}
|
|
89
|
+
constructor(map) {
|
|
90
|
+
super(map);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
exports.SearchInventoryKnowledgeResponseBody = SearchInventoryKnowledgeResponseBody;
|
|
94
|
+
//# sourceMappingURL=SearchInventoryKnowledgeResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchInventoryKnowledgeResponseBody.js","sourceRoot":"","sources":["../../src/models/SearchInventoryKnowledgeResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,uDAAoD;AAGpD,MAAa,wCAAyC,SAAQ,KAAK,CAAC,KAAK;IAOvE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,iCAAe,EAAE;YACvD,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;YAC7B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACxC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA/BD,4FA+BC;AAED,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IAyBnE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,SAAS,EAAE,WAAW;YACtB,YAAY,EAAE,cAAc;YAC5B,SAAS,EAAE,WAAW;YACtB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,wCAAwC;YAC9C,SAAS,EAAE,QAAQ;YACnB,YAAY,EAAE,QAAQ;YACtB,SAAS,EAAE,QAAQ;YACnB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvDD,oFAuDC"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -361,6 +361,7 @@ export { SearchDatabaseResponseBodySearchDatabaseListSearchDatabaseOwnerIdList }
|
|
|
361
361
|
export { SearchDatabaseResponseBodySearchDatabaseListSearchDatabaseOwnerNameList } from './SearchDatabaseResponseBody';
|
|
362
362
|
export { SearchDatabaseResponseBodySearchDatabaseListSearchDatabase } from './SearchDatabaseResponseBody';
|
|
363
363
|
export { SearchDatabaseResponseBodySearchDatabaseList } from './SearchDatabaseResponseBody';
|
|
364
|
+
export { SearchInventoryKnowledgeResponseBodyData } from './SearchInventoryKnowledgeResponseBody';
|
|
364
365
|
export { SearchTableResponseBodySearchTableListSearchTableOwnerIdList } from './SearchTableResponseBody';
|
|
365
366
|
export { SearchTableResponseBodySearchTableListSearchTableOwnerNameList } from './SearchTableResponseBody';
|
|
366
367
|
export { SearchTableResponseBodySearchTableListSearchTable } from './SearchTableResponseBody';
|
|
@@ -393,6 +394,10 @@ export { DLTablebaseInfo } from './DltablebaseInfo';
|
|
|
393
394
|
export { DatasetItemVO } from './DatasetItemVo';
|
|
394
395
|
export { GetTableDataKeyVO } from './GetTableDataKeyVo';
|
|
395
396
|
export { ImportMasterKeyVO } from './ImportMasterKeyVo';
|
|
397
|
+
export { KnowledgeBaseVO } from './KnowledgeBaseVo';
|
|
398
|
+
export { KnowledgeJobInfoVO } from './KnowledgeJobInfoVo';
|
|
399
|
+
export { KnowledgeSubJobInfoVO } from './KnowledgeSubJobInfoVo';
|
|
400
|
+
export { MetaAgentPreCheckParam } from './MetaAgentPreCheckParam';
|
|
396
401
|
export { MetaCategory } from './MetaCategory';
|
|
397
402
|
export { MetaCategoryTableEntity } from './MetaCategoryTableEntity';
|
|
398
403
|
export { PartitionError } from './PartitionError';
|
|
@@ -479,9 +484,15 @@ export { CheckBatchTableAccessPermissionRequest } from './CheckBatchTableAccessP
|
|
|
479
484
|
export { CheckBatchTableAccessPermissionShrinkRequest } from './CheckBatchTableAccessPermissionShrinkRequest';
|
|
480
485
|
export { CheckBatchTableAccessPermissionResponseBody } from './CheckBatchTableAccessPermissionResponseBody';
|
|
481
486
|
export { CheckBatchTableAccessPermissionResponse } from './CheckBatchTableAccessPermissionResponse';
|
|
487
|
+
export { CheckInventoryJobRequest } from './CheckInventoryJobRequest';
|
|
488
|
+
export { CheckInventoryJobResponseBody } from './CheckInventoryJobResponseBody';
|
|
489
|
+
export { CheckInventoryJobResponse } from './CheckInventoryJobResponse';
|
|
482
490
|
export { CloseOrderRequest } from './CloseOrderRequest';
|
|
483
491
|
export { CloseOrderResponseBody } from './CloseOrderResponseBody';
|
|
484
492
|
export { CloseOrderResponse } from './CloseOrderResponse';
|
|
493
|
+
export { ConfirmInventoryKnowledgeRequest } from './ConfirmInventoryKnowledgeRequest';
|
|
494
|
+
export { ConfirmInventoryKnowledgeResponseBody } from './ConfirmInventoryKnowledgeResponseBody';
|
|
495
|
+
export { ConfirmInventoryKnowledgeResponse } from './ConfirmInventoryKnowledgeResponse';
|
|
485
496
|
export { CreateAbacAuthorizationRequest } from './CreateAbacAuthorizationRequest';
|
|
486
497
|
export { CreateAbacAuthorizationResponseBody } from './CreateAbacAuthorizationResponseBody';
|
|
487
498
|
export { CreateAbacAuthorizationResponse } from './CreateAbacAuthorizationResponse';
|
|
@@ -542,6 +553,9 @@ export { CreateFreeLockCorrectOrderRequest } from './CreateFreeLockCorrectOrderR
|
|
|
542
553
|
export { CreateFreeLockCorrectOrderShrinkRequest } from './CreateFreeLockCorrectOrderShrinkRequest';
|
|
543
554
|
export { CreateFreeLockCorrectOrderResponseBody } from './CreateFreeLockCorrectOrderResponseBody';
|
|
544
555
|
export { CreateFreeLockCorrectOrderResponse } from './CreateFreeLockCorrectOrderResponse';
|
|
556
|
+
export { CreateInventoryJobRequest } from './CreateInventoryJobRequest';
|
|
557
|
+
export { CreateInventoryJobResponseBody } from './CreateInventoryJobResponseBody';
|
|
558
|
+
export { CreateInventoryJobResponse } from './CreateInventoryJobResponse';
|
|
545
559
|
export { CreateLakeHouseSpaceRequest } from './CreateLakeHouseSpaceRequest';
|
|
546
560
|
export { CreateLakeHouseSpaceResponseBody } from './CreateLakeHouseSpaceResponseBody';
|
|
547
561
|
export { CreateLakeHouseSpaceResponse } from './CreateLakeHouseSpaceResponse';
|
|
@@ -1257,6 +1271,9 @@ export { SearchDataTrackResultResponse } from './SearchDataTrackResultResponse';
|
|
|
1257
1271
|
export { SearchDatabaseRequest } from './SearchDatabaseRequest';
|
|
1258
1272
|
export { SearchDatabaseResponseBody } from './SearchDatabaseResponseBody';
|
|
1259
1273
|
export { SearchDatabaseResponse } from './SearchDatabaseResponse';
|
|
1274
|
+
export { SearchInventoryKnowledgeRequest } from './SearchInventoryKnowledgeRequest';
|
|
1275
|
+
export { SearchInventoryKnowledgeResponseBody } from './SearchInventoryKnowledgeResponseBody';
|
|
1276
|
+
export { SearchInventoryKnowledgeResponse } from './SearchInventoryKnowledgeResponse';
|
|
1260
1277
|
export { SearchTableRequest } from './SearchTableRequest';
|
|
1261
1278
|
export { SearchTableResponseBody } from './SearchTableResponseBody';
|
|
1262
1279
|
export { SearchTableResponse } from './SearchTableResponse';
|