@pushwoosh/rpc-v2-http-api-data 0.1.755 → 0.1.756
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 +0 -6
- package/package.json +1 -1
- package/tags.d.ts +0 -2
package/data.js
CHANGED
|
@@ -22527,9 +22527,6 @@ export const data = {
|
|
|
22527
22527
|
},
|
|
22528
22528
|
"hasRightAceModify": {
|
|
22529
22529
|
"type": "boolean"
|
|
22530
|
-
},
|
|
22531
|
-
"encrypted": {
|
|
22532
|
-
"type": "boolean"
|
|
22533
22530
|
}
|
|
22534
22531
|
}
|
|
22535
22532
|
},
|
|
@@ -22547,9 +22544,6 @@ export const data = {
|
|
|
22547
22544
|
},
|
|
22548
22545
|
"userSpecific": {
|
|
22549
22546
|
"type": "boolean"
|
|
22550
|
-
},
|
|
22551
|
-
"encrypted": {
|
|
22552
|
-
"type": "boolean"
|
|
22553
22547
|
}
|
|
22554
22548
|
}
|
|
22555
22549
|
},
|
package/package.json
CHANGED
package/tags.d.ts
CHANGED
|
@@ -17,14 +17,12 @@ export type Tag = {
|
|
|
17
17
|
appSpecific: boolean;
|
|
18
18
|
userSpecific: boolean;
|
|
19
19
|
hasRightAceModify: boolean;
|
|
20
|
-
encrypted: boolean;
|
|
21
20
|
};
|
|
22
21
|
export type CreateTagRequest = {
|
|
23
22
|
name?: string;
|
|
24
23
|
type?: Tag_Type;
|
|
25
24
|
appSpecific?: boolean;
|
|
26
25
|
userSpecific?: boolean;
|
|
27
|
-
encrypted?: boolean;
|
|
28
26
|
};
|
|
29
27
|
export type CreateTagResponse = {
|
|
30
28
|
tag: Tag;
|