@wildix/wms-api-client 1.0.5 → 1.1.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.
|
@@ -38,18 +38,18 @@ export interface GetPbxAclGroupsPermissionsCommandOutput extends GetPbxAclGroups
|
|
|
38
38
|
* // { // GetPbxAclGroupsPermissionsOutput
|
|
39
39
|
* // type: "result" || "error", // required
|
|
40
40
|
* // result: [ // GetPbxAclGroupsPermissionsResult // required
|
|
41
|
-
* // { //
|
|
41
|
+
* // { // AclGroupPermission
|
|
42
42
|
* // ability: "can" || "cannot" || "yes" || "no", // required
|
|
43
43
|
* // key: "STRING_VALUE", // required
|
|
44
44
|
* // name: "STRING_VALUE", // required
|
|
45
45
|
* // containSubGroups: true || false, // required
|
|
46
|
-
* // groups: [ //
|
|
47
|
-
* // { //
|
|
46
|
+
* // groups: [ // AclGroupPermissionItemsList // required
|
|
47
|
+
* // { // AclGroupPermissionItem
|
|
48
48
|
* // groupDn: "STRING_VALUE", // required
|
|
49
49
|
* // groupName: "STRING_VALUE", // required
|
|
50
50
|
* // access: true || false, // required
|
|
51
|
-
* // subGroups: [ //
|
|
52
|
-
* // { //
|
|
51
|
+
* // subGroups: [ // AclGroupPermissionFlatItemList // required
|
|
52
|
+
* // { // AclGroupPermissionFlatItem
|
|
53
53
|
* // groupDn: "STRING_VALUE", // required
|
|
54
54
|
* // groupName: "STRING_VALUE", // required
|
|
55
55
|
* // access: true || false, // required
|
|
@@ -17,7 +17,7 @@ export type AclGroupPermissionAbility = typeof AclGroupPermissionAbility[keyof t
|
|
|
17
17
|
/**
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
|
-
export interface
|
|
20
|
+
export interface AclGroupPermissionFlatItem {
|
|
21
21
|
groupDn: string;
|
|
22
22
|
groupName: string;
|
|
23
23
|
access: boolean;
|
|
@@ -25,21 +25,21 @@ export interface AclGroupPermissonFlatItem {
|
|
|
25
25
|
/**
|
|
26
26
|
* @public
|
|
27
27
|
*/
|
|
28
|
-
export interface
|
|
28
|
+
export interface AclGroupPermissionItem {
|
|
29
29
|
groupDn: string;
|
|
30
30
|
groupName: string;
|
|
31
31
|
access: boolean;
|
|
32
|
-
subGroups: (
|
|
32
|
+
subGroups: (AclGroupPermissionFlatItem)[];
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
* @public
|
|
36
36
|
*/
|
|
37
|
-
export interface
|
|
37
|
+
export interface AclGroupPermission {
|
|
38
38
|
ability: AclGroupPermissionAbility | string;
|
|
39
39
|
key: string;
|
|
40
40
|
name: string;
|
|
41
41
|
containSubGroups: boolean;
|
|
42
|
-
groups: (
|
|
42
|
+
groups: (AclGroupPermissionItem)[];
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
* @public
|
|
@@ -186,7 +186,7 @@ export interface GetPbxAclGroupsPermissionsInput {
|
|
|
186
186
|
*/
|
|
187
187
|
export interface GetPbxAclGroupsPermissionsOutput {
|
|
188
188
|
type: ResponseType | string;
|
|
189
|
-
result: (
|
|
189
|
+
result: (AclGroupPermission)[];
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
192
192
|
* @public
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wms-api-client",
|
|
3
3
|
"description": "@wildix/wms-api-client client",
|
|
4
|
-
"version": "1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|