@pushwoosh/rpc-v2-http-api-data 0.1.919 → 0.1.920
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
|
@@ -24670,9 +24670,6 @@ export const data = {
|
|
|
24670
24670
|
"system": {
|
|
24671
24671
|
"type": "boolean"
|
|
24672
24672
|
},
|
|
24673
|
-
"appSpecific": {
|
|
24674
|
-
"type": "boolean"
|
|
24675
|
-
},
|
|
24676
24673
|
"userSpecific": {
|
|
24677
24674
|
"type": "boolean"
|
|
24678
24675
|
},
|
|
@@ -24690,9 +24687,6 @@ export const data = {
|
|
|
24690
24687
|
"type": {
|
|
24691
24688
|
"type": "pushwoosh.rpc_v2.tags.Tag.Type"
|
|
24692
24689
|
},
|
|
24693
|
-
"appSpecific": {
|
|
24694
|
-
"type": "boolean"
|
|
24695
|
-
},
|
|
24696
24690
|
"userSpecific": {
|
|
24697
24691
|
"type": "boolean"
|
|
24698
24692
|
}
|
package/package.json
CHANGED
package/tags.d.ts
CHANGED
|
@@ -21,14 +21,12 @@ export type Tag = {
|
|
|
21
21
|
name: string;
|
|
22
22
|
type: Tag_Type;
|
|
23
23
|
system: boolean;
|
|
24
|
-
appSpecific: boolean;
|
|
25
24
|
userSpecific: boolean;
|
|
26
25
|
hasRightAceModify: boolean;
|
|
27
26
|
};
|
|
28
27
|
export type CreateTagRequest = {
|
|
29
28
|
name?: string;
|
|
30
29
|
type?: Tag_Type;
|
|
31
|
-
appSpecific?: boolean;
|
|
32
30
|
userSpecific?: boolean;
|
|
33
31
|
};
|
|
34
32
|
export type CreateTagResponse = {
|