@pushwoosh/rpc-v2-http-api-data 0.2.140 → 0.2.142

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.
Files changed (3) hide show
  1. package/accounts.d.ts +1 -27
  2. package/data.js +1 -40
  3. package/package.json +1 -1
package/accounts.d.ts CHANGED
@@ -361,16 +361,6 @@ export type EmailContent_Raw = {
361
361
  /** html map {"en": "html_content"...} */
362
362
  html: Record<string, string>;
363
363
  };
364
- export type EmailContent_Mjml = {
365
- /** Raw html */
366
- html: string;
367
- /** Localization map {"en": {"variable":"value"}...} */
368
- localizationData: object;
369
- /** MJML template source */
370
- mjml: string;
371
- /** MJML editor settings */
372
- settings: object;
373
- };
374
364
  export type EmailContent_Smartcards = {
375
365
  /**
376
366
  * Deprecated: ignored on write. The server renders the html from the document
@@ -391,14 +381,6 @@ export type EmailContent_Smartcards = {
391
381
  */
392
382
  document: pushwoosh_aibuilder_v1_AiBuilderDocument;
393
383
  };
394
- export type EmailContent_Vibeblocks = {
395
- /** Raw html */
396
- html: string;
397
- /** Localization map {"en": {"variable":"value"}...} */
398
- localizationData: object;
399
- /** Vibeblocks editor content */
400
- content: object;
401
- };
402
384
  export type EmailContent_kind_unlayer = {
403
385
  type: 'unlayer';
404
386
  data: EmailContent_Unlayer;
@@ -411,19 +393,11 @@ export type EmailContent_kind_raw = {
411
393
  type: 'raw';
412
394
  data: EmailContent_Raw;
413
395
  };
414
- export type EmailContent_kind_mjml = {
415
- type: 'mjml';
416
- data: EmailContent_Mjml;
417
- };
418
396
  export type EmailContent_kind_smartcards = {
419
397
  type: 'smartcards';
420
398
  data: EmailContent_Smartcards;
421
399
  };
422
- export type EmailContent_kind_vibeblocks = {
423
- type: 'vibeblocks';
424
- data: EmailContent_Vibeblocks;
425
- };
426
- export type EmailContent_kind = EmailContent_kind_unlayer | EmailContent_kind_pushwoosh | EmailContent_kind_raw | EmailContent_kind_mjml | EmailContent_kind_smartcards | EmailContent_kind_vibeblocks;
400
+ export type EmailContent_kind = EmailContent_kind_unlayer | EmailContent_kind_pushwoosh | EmailContent_kind_raw | EmailContent_kind_smartcards;
427
401
  export type EmailContent = {
428
402
  senderInfo: EmailContent_SenderInfo;
429
403
  /** subject map {"en": "subject_content"...} */
package/data.js CHANGED
@@ -9901,23 +9901,6 @@ export const data = {
9901
9901
  }
9902
9902
  }
9903
9903
  },
9904
- "pushwoosh.rpc_v2.accounts.EmailContent.Mjml": {
9905
- "type": "I",
9906
- "fields": {
9907
- "html": {
9908
- "type": "string"
9909
- },
9910
- "localizationData": {
9911
- "type": "object"
9912
- },
9913
- "mjml": {
9914
- "type": "string"
9915
- },
9916
- "settings": {
9917
- "type": "object"
9918
- }
9919
- }
9920
- },
9921
9904
  "pushwoosh.rpc_v2.accounts.EmailContent.Smartcards": {
9922
9905
  "type": "I",
9923
9906
  "fields": {
@@ -9935,20 +9918,6 @@ export const data = {
9935
9918
  }
9936
9919
  }
9937
9920
  },
9938
- "pushwoosh.rpc_v2.accounts.EmailContent.Vibeblocks": {
9939
- "type": "I",
9940
- "fields": {
9941
- "html": {
9942
- "type": "string"
9943
- },
9944
- "localizationData": {
9945
- "type": "object"
9946
- },
9947
- "content": {
9948
- "type": "object"
9949
- }
9950
- }
9951
- },
9952
9921
  "pushwoosh.rpc_v2.accounts.EmailContent": {
9953
9922
  "type": "I",
9954
9923
  "fields": {
@@ -9968,14 +9937,8 @@ export const data = {
9968
9937
  "raw": {
9969
9938
  "type": "pushwoosh.rpc_v2.accounts.EmailContent.Raw"
9970
9939
  },
9971
- "mjml": {
9972
- "type": "pushwoosh.rpc_v2.accounts.EmailContent.Mjml"
9973
- },
9974
9940
  "smartcards": {
9975
9941
  "type": "pushwoosh.rpc_v2.accounts.EmailContent.Smartcards"
9976
- },
9977
- "vibeblocks": {
9978
- "type": "pushwoosh.rpc_v2.accounts.EmailContent.Vibeblocks"
9979
9942
  }
9980
9943
  },
9981
9944
  "oneofs": {
@@ -9984,9 +9947,7 @@ export const data = {
9984
9947
  "unlayer",
9985
9948
  "pushwoosh",
9986
9949
  "raw",
9987
- "mjml",
9988
- "smartcards",
9989
- "vibeblocks"
9950
+ "smartcards"
9990
9951
  ]
9991
9952
  }
9992
9953
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.2.140",
3
+ "version": "0.2.142",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",