@pushwoosh/rpc-v2-http-api-data 0.1.542 → 0.1.544
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/accounts.d.ts +2 -0
- package/data.js +6 -0
- package/package.json +1 -1
package/accounts.d.ts
CHANGED
|
@@ -189,7 +189,9 @@ export interface EmailTemplatesService {
|
|
|
189
189
|
}
|
|
190
190
|
export type CloneEmailPresetsRequest = {
|
|
191
191
|
emailPresetCode?: string;
|
|
192
|
+
application?: string;
|
|
192
193
|
applicationId?: number;
|
|
194
|
+
name?: string;
|
|
193
195
|
};
|
|
194
196
|
export type CloneEmailPresetsResponse = {
|
|
195
197
|
emailPresetCode: string;
|
package/data.js
CHANGED
|
@@ -4500,8 +4500,14 @@ export const data = {
|
|
|
4500
4500
|
"emailPresetCode": {
|
|
4501
4501
|
"type": "string"
|
|
4502
4502
|
},
|
|
4503
|
+
"application": {
|
|
4504
|
+
"type": "string"
|
|
4505
|
+
},
|
|
4503
4506
|
"applicationId": {
|
|
4504
4507
|
"type": "number"
|
|
4508
|
+
},
|
|
4509
|
+
"name": {
|
|
4510
|
+
"type": "string"
|
|
4505
4511
|
}
|
|
4506
4512
|
}
|
|
4507
4513
|
},
|