@pushwoosh/rpc-v2-http-api-data 0.2.121 → 0.2.123
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 +13 -3
- package/data.js +1883 -0
- package/inbound_webhooks.d.ts +3 -0
- package/package.json +1 -1
- package/pushwoosh_aibuilder_v1.d.ts +1491 -0
- package/pushwoosh_aibuilder_v1.js +3 -0
- package/pushwoosh_llm_v1.d.ts +68 -0
- package/pushwoosh_llm_v1.js +3 -0
package/accounts.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { RpcMethod } from './commonTypes';
|
|
2
|
+
import { AiBuilderDocument as pushwoosh_aibuilder_v1_AiBuilderDocument } from './pushwoosh_aibuilder_v1';
|
|
2
3
|
export type AccountsService_GetEmailStatisticCount = RpcMethod<GetEmailStatisticCountRequest, GetEmailStatisticCountResponse>;
|
|
3
4
|
export type AccountsService_GetActiveDevicesCount = RpcMethod<GetActiveDevicesCountRequest, GetActiveDevicesCountResponse>;
|
|
4
5
|
export type AccountsService_GetSubscribersCount = RpcMethod<GetSubscribersCountRequest, GetSubscribersCountResponse>;
|
|
@@ -372,14 +373,23 @@ export type EmailContent_Mjml = {
|
|
|
372
373
|
};
|
|
373
374
|
export type EmailContent_Smartcards = {
|
|
374
375
|
/**
|
|
375
|
-
* Deprecated: ignored on write. The server renders the html from
|
|
376
|
+
* Deprecated: ignored on write. The server renders the html from the document
|
|
376
377
|
* and stores what it rendered; sent values are dropped. Still returned on read.
|
|
377
378
|
*/
|
|
378
379
|
html: string;
|
|
379
|
-
/** Deprecated: ignored on write, derived from
|
|
380
|
+
/** Deprecated: ignored on write, derived from the document with the html. */
|
|
380
381
|
localizationData: object;
|
|
381
|
-
/**
|
|
382
|
+
/**
|
|
383
|
+
* The document in the editor dialect (camelCase, tagged oneofs) — what
|
|
384
|
+
* clients wrote before `document` existed. Accepted on write while stored
|
|
385
|
+
* templates still hold it; prefer `document`.
|
|
386
|
+
*/
|
|
382
387
|
content: object;
|
|
388
|
+
/**
|
|
389
|
+
* The document, typed. Same shape the renderer takes, so nothing converts
|
|
390
|
+
* it on the way in — set this and leave `content` empty.
|
|
391
|
+
*/
|
|
392
|
+
document: pushwoosh_aibuilder_v1_AiBuilderDocument;
|
|
383
393
|
};
|
|
384
394
|
export type EmailContent_Vibeblocks = {
|
|
385
395
|
/** Raw html */
|