@alicloud/cms20240330 6.0.0 → 6.0.1
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 +2 -2
- package/dist/client.js +20 -3
- package/dist/client.js.map +1 -1
- package/dist/models/CreateDigitalEmployeeRequest.d.ts +7 -0
- package/dist/models/CreateDigitalEmployeeRequest.js +8 -0
- package/dist/models/CreateDigitalEmployeeRequest.js.map +1 -1
- package/dist/models/GetDigitalEmployeeResponseBody.d.ts +7 -0
- package/dist/models/GetDigitalEmployeeResponseBody.js +8 -0
- package/dist/models/GetDigitalEmployeeResponseBody.js.map +1 -1
- package/dist/models/ListDigitalEmployeesRequest.d.ts +7 -0
- package/dist/models/ListDigitalEmployeesRequest.js +8 -0
- package/dist/models/ListDigitalEmployeesRequest.js.map +1 -1
- package/dist/models/ListDigitalEmployeesResponseBody.d.ts +7 -0
- package/dist/models/ListDigitalEmployeesResponseBody.js +8 -0
- package/dist/models/ListDigitalEmployeesResponseBody.js.map +1 -1
- package/dist/models/ListDigitalEmployeesShrinkRequest.d.ts +36 -0
- package/dist/models/ListDigitalEmployeesShrinkRequest.js +70 -0
- package/dist/models/ListDigitalEmployeesShrinkRequest.js.map +1 -0
- package/dist/models/NotifyStrategyForModify.d.ts +2 -0
- package/dist/models/NotifyStrategyForModify.js +4 -0
- package/dist/models/NotifyStrategyForModify.js.map +1 -1
- package/dist/models/NotifyStrategyForView.d.ts +2 -0
- package/dist/models/NotifyStrategyForView.js +4 -0
- package/dist/models/NotifyStrategyForView.js.map +1 -1
- package/dist/models/SubscriptionForModify.d.ts +2 -0
- package/dist/models/SubscriptionForModify.js +6 -0
- package/dist/models/SubscriptionForModify.js.map +1 -1
- package/dist/models/SubscriptionForView.d.ts +2 -0
- package/dist/models/SubscriptionForView.js +6 -0
- package/dist/models/SubscriptionForView.js.map +1 -1
- package/dist/models/Tag.d.ts +8 -0
- package/dist/models/Tag.js.map +1 -1
- package/dist/models/model.d.ts +1 -0
- package/dist/models/model.js +6 -4
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +25 -3
- package/src/models/CreateDigitalEmployeeRequest.ts +14 -0
- package/src/models/GetDigitalEmployeeResponseBody.ts +14 -0
- package/src/models/ListDigitalEmployeesRequest.ts +14 -0
- package/src/models/ListDigitalEmployeesResponseBody.ts +14 -0
- package/src/models/ListDigitalEmployeesShrinkRequest.ts +61 -0
- package/src/models/NotifyStrategyForModify.ts +6 -0
- package/src/models/NotifyStrategyForView.ts +6 -0
- package/src/models/SubscriptionForModify.ts +7 -0
- package/src/models/SubscriptionForView.ts +7 -0
- package/src/models/Tag.ts +8 -0
- package/src/models/model.ts +1 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// This file is auto-generated, don't edit it
|
|
2
2
|
import * as $dara from '@darabonba/typescript';
|
|
3
3
|
import { FilterSetting } from "./FilterSetting";
|
|
4
|
+
import { WorkspaceFilterSetting } from "./WorkspaceFilterSetting";
|
|
4
5
|
|
|
5
6
|
|
|
6
7
|
export class SubscriptionForModifyPushingSetting extends $dara.Model {
|
|
@@ -51,6 +52,7 @@ export class SubscriptionForModify extends $dara.Model {
|
|
|
51
52
|
* This parameter is required.
|
|
52
53
|
*/
|
|
53
54
|
subscriptionName?: string;
|
|
55
|
+
workspaceFilterSetting?: WorkspaceFilterSetting;
|
|
54
56
|
static names(): { [key: string]: string } {
|
|
55
57
|
return {
|
|
56
58
|
description: 'description',
|
|
@@ -58,6 +60,7 @@ export class SubscriptionForModify extends $dara.Model {
|
|
|
58
60
|
notifyStrategyId: 'notifyStrategyId',
|
|
59
61
|
pushingSetting: 'pushingSetting',
|
|
60
62
|
subscriptionName: 'subscriptionName',
|
|
63
|
+
workspaceFilterSetting: 'workspaceFilterSetting',
|
|
61
64
|
};
|
|
62
65
|
}
|
|
63
66
|
|
|
@@ -68,6 +71,7 @@ export class SubscriptionForModify extends $dara.Model {
|
|
|
68
71
|
notifyStrategyId: 'string',
|
|
69
72
|
pushingSetting: SubscriptionForModifyPushingSetting,
|
|
70
73
|
subscriptionName: 'string',
|
|
74
|
+
workspaceFilterSetting: WorkspaceFilterSetting,
|
|
71
75
|
};
|
|
72
76
|
}
|
|
73
77
|
|
|
@@ -78,6 +82,9 @@ export class SubscriptionForModify extends $dara.Model {
|
|
|
78
82
|
if(this.pushingSetting && typeof (this.pushingSetting as any).validate === 'function') {
|
|
79
83
|
(this.pushingSetting as any).validate();
|
|
80
84
|
}
|
|
85
|
+
if(this.workspaceFilterSetting && typeof (this.workspaceFilterSetting as any).validate === 'function') {
|
|
86
|
+
(this.workspaceFilterSetting as any).validate();
|
|
87
|
+
}
|
|
81
88
|
super.validate();
|
|
82
89
|
}
|
|
83
90
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// This file is auto-generated, don't edit it
|
|
2
2
|
import * as $dara from '@darabonba/typescript';
|
|
3
3
|
import { FilterSetting } from "./FilterSetting";
|
|
4
|
+
import { WorkspaceFilterSetting } from "./WorkspaceFilterSetting";
|
|
4
5
|
|
|
5
6
|
|
|
6
7
|
export class SubscriptionForViewPushingSetting extends $dara.Model {
|
|
@@ -58,6 +59,7 @@ export class SubscriptionForView extends $dara.Model {
|
|
|
58
59
|
updateTime?: string;
|
|
59
60
|
userId?: string;
|
|
60
61
|
workspace?: string;
|
|
62
|
+
workspaceFilterSetting?: WorkspaceFilterSetting;
|
|
61
63
|
static names(): { [key: string]: string } {
|
|
62
64
|
return {
|
|
63
65
|
createTime: 'createTime',
|
|
@@ -72,6 +74,7 @@ export class SubscriptionForView extends $dara.Model {
|
|
|
72
74
|
updateTime: 'updateTime',
|
|
73
75
|
userId: 'userId',
|
|
74
76
|
workspace: 'workspace',
|
|
77
|
+
workspaceFilterSetting: 'workspaceFilterSetting',
|
|
75
78
|
};
|
|
76
79
|
}
|
|
77
80
|
|
|
@@ -89,6 +92,7 @@ export class SubscriptionForView extends $dara.Model {
|
|
|
89
92
|
updateTime: 'string',
|
|
90
93
|
userId: 'string',
|
|
91
94
|
workspace: 'string',
|
|
95
|
+
workspaceFilterSetting: WorkspaceFilterSetting,
|
|
92
96
|
};
|
|
93
97
|
}
|
|
94
98
|
|
|
@@ -99,6 +103,9 @@ export class SubscriptionForView extends $dara.Model {
|
|
|
99
103
|
if(this.pushingSetting && typeof (this.pushingSetting as any).validate === 'function') {
|
|
100
104
|
(this.pushingSetting as any).validate();
|
|
101
105
|
}
|
|
106
|
+
if(this.workspaceFilterSetting && typeof (this.workspaceFilterSetting as any).validate === 'function') {
|
|
107
|
+
(this.workspaceFilterSetting as any).validate();
|
|
108
|
+
}
|
|
102
109
|
super.validate();
|
|
103
110
|
}
|
|
104
111
|
|
package/src/models/Tag.ts
CHANGED
|
@@ -3,7 +3,15 @@ import * as $dara from '@darabonba/typescript';
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
export class Tag extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* test-key
|
|
9
|
+
*/
|
|
6
10
|
key?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* test-value
|
|
14
|
+
*/
|
|
7
15
|
value?: string;
|
|
8
16
|
static names(): { [key: string]: string } {
|
|
9
17
|
return {
|
package/src/models/model.ts
CHANGED
|
@@ -445,6 +445,7 @@ export { ListBizTracesRequest } from './ListBizTracesRequest';
|
|
|
445
445
|
export { ListBizTracesResponseBody } from './ListBizTracesResponseBody';
|
|
446
446
|
export { ListBizTracesResponse } from './ListBizTracesResponse';
|
|
447
447
|
export { ListDigitalEmployeesRequest } from './ListDigitalEmployeesRequest';
|
|
448
|
+
export { ListDigitalEmployeesShrinkRequest } from './ListDigitalEmployeesShrinkRequest';
|
|
448
449
|
export { ListDigitalEmployeesResponseBody } from './ListDigitalEmployeesResponseBody';
|
|
449
450
|
export { ListDigitalEmployeesResponse } from './ListDigitalEmployeesResponse';
|
|
450
451
|
export { ListIntegrationPoliciesRequest } from './ListIntegrationPoliciesRequest';
|