@pushwoosh/rpc-v2-http-api-data 0.1.598 → 0.1.600
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/data.js +6 -0
- package/package.json +1 -1
- package/tags.d.ts +2 -0
package/data.js
CHANGED
|
@@ -19789,6 +19789,9 @@ export const data = {
|
|
|
19789
19789
|
},
|
|
19790
19790
|
"hasRightAceModify": {
|
|
19791
19791
|
"type": "boolean"
|
|
19792
|
+
},
|
|
19793
|
+
"encrypted": {
|
|
19794
|
+
"type": "boolean"
|
|
19792
19795
|
}
|
|
19793
19796
|
}
|
|
19794
19797
|
},
|
|
@@ -19806,6 +19809,9 @@ export const data = {
|
|
|
19806
19809
|
},
|
|
19807
19810
|
"userSpecific": {
|
|
19808
19811
|
"type": "boolean"
|
|
19812
|
+
},
|
|
19813
|
+
"encrypted": {
|
|
19814
|
+
"type": "boolean"
|
|
19809
19815
|
}
|
|
19810
19816
|
}
|
|
19811
19817
|
},
|
package/package.json
CHANGED
package/tags.d.ts
CHANGED
|
@@ -16,12 +16,14 @@ export type Tag = {
|
|
|
16
16
|
appSpecific: boolean;
|
|
17
17
|
userSpecific: boolean;
|
|
18
18
|
hasRightAceModify: boolean;
|
|
19
|
+
encrypted: boolean;
|
|
19
20
|
};
|
|
20
21
|
export type CreateTagRequest = {
|
|
21
22
|
name?: string;
|
|
22
23
|
type?: Tag_Type;
|
|
23
24
|
appSpecific?: boolean;
|
|
24
25
|
userSpecific?: boolean;
|
|
26
|
+
encrypted?: boolean;
|
|
25
27
|
};
|
|
26
28
|
export type CreateTagResponse = {
|
|
27
29
|
tag: Tag;
|