@pushwoosh/rpc-v2-http-api-data 0.1.879 → 0.1.881
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 +21 -0
- package/email_categories.d.ts +7 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -6117,6 +6117,15 @@ export const data = {
|
|
|
6117
6117
|
},
|
|
6118
6118
|
"description": {
|
|
6119
6119
|
"type": "string"
|
|
6120
|
+
},
|
|
6121
|
+
"subscribeNew": {
|
|
6122
|
+
"type": "boolean"
|
|
6123
|
+
},
|
|
6124
|
+
"subscribeOld": {
|
|
6125
|
+
"type": "boolean"
|
|
6126
|
+
},
|
|
6127
|
+
"subscribeOldUpdated": {
|
|
6128
|
+
"type": "Date"
|
|
6120
6129
|
}
|
|
6121
6130
|
}
|
|
6122
6131
|
},
|
|
@@ -6131,6 +6140,12 @@ export const data = {
|
|
|
6131
6140
|
},
|
|
6132
6141
|
"description": {
|
|
6133
6142
|
"type": "string"
|
|
6143
|
+
},
|
|
6144
|
+
"subscribeNew": {
|
|
6145
|
+
"type": "boolean"
|
|
6146
|
+
},
|
|
6147
|
+
"subscribeOld": {
|
|
6148
|
+
"type": "boolean"
|
|
6134
6149
|
}
|
|
6135
6150
|
}
|
|
6136
6151
|
},
|
|
@@ -6190,6 +6205,12 @@ export const data = {
|
|
|
6190
6205
|
},
|
|
6191
6206
|
"description": {
|
|
6192
6207
|
"type": "string"
|
|
6208
|
+
},
|
|
6209
|
+
"subscribeNew": {
|
|
6210
|
+
"type": "boolean"
|
|
6211
|
+
},
|
|
6212
|
+
"subscribeOld": {
|
|
6213
|
+
"type": "boolean"
|
|
6193
6214
|
}
|
|
6194
6215
|
}
|
|
6195
6216
|
},
|
package/email_categories.d.ts
CHANGED
|
@@ -22,11 +22,16 @@ export type Category = {
|
|
|
22
22
|
application: string;
|
|
23
23
|
name: string;
|
|
24
24
|
description: string;
|
|
25
|
+
subscribeNew: boolean;
|
|
26
|
+
subscribeOld: boolean;
|
|
27
|
+
subscribeOldUpdated: Date;
|
|
25
28
|
};
|
|
26
29
|
export type CreateRequest = {
|
|
27
30
|
application?: string;
|
|
28
31
|
name?: string;
|
|
29
32
|
description?: string;
|
|
33
|
+
subscribeNew?: boolean;
|
|
34
|
+
subscribeOld?: boolean;
|
|
30
35
|
};
|
|
31
36
|
export type CreateResponse = {
|
|
32
37
|
category: Category;
|
|
@@ -48,6 +53,8 @@ export type UpdateRequest = {
|
|
|
48
53
|
code?: string;
|
|
49
54
|
name?: string;
|
|
50
55
|
description?: string;
|
|
56
|
+
subscribeNew?: boolean;
|
|
57
|
+
subscribeOld?: boolean;
|
|
51
58
|
};
|
|
52
59
|
export type UpdateResponse = {};
|
|
53
60
|
export type DeleteRequest = {
|