@prezly/sdk 12.3.0 → 12.3.1

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.
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.DEFAULT_USER_AGENT = void 0;
7
- const VERSION = "12.2.0";
7
+ const VERSION = "12.3.0";
8
8
  const URL = 'https://github.com/prezly/javascript-sdk';
9
9
  const DEFAULT_USER_AGENT = `prezly-javascript-sdk/${VERSION} (+${URL})`;
10
10
  exports.DEFAULT_USER_AGENT = DEFAULT_USER_AGENT;
@@ -1,3 +1,3 @@
1
- const VERSION = "12.2.0";
1
+ const VERSION = "12.3.0";
2
2
  const URL = 'https://github.com/prezly/javascript-sdk';
3
3
  export const DEFAULT_USER_AGENT = `prezly-javascript-sdk/${VERSION} (+${URL})`;
@@ -43,6 +43,7 @@ const ALL_EXTRA_FIELDS_SHAPE = {
43
43
  attached_videos_content: true,
44
44
  attached_bookmarks_content: true,
45
45
  attached_attachments_content: true,
46
+ attached_contacts_content: true,
46
47
  referenced_entities: true,
47
48
  'campaigns.count': true,
48
49
  'pitches.count': true
@@ -37,6 +37,7 @@ const ALL_EXTRA_FIELDS_SHAPE = {
37
37
  attached_videos_content: true,
38
38
  attached_bookmarks_content: true,
39
39
  attached_attachments_content: true,
40
+ attached_contacts_content: true,
40
41
  referenced_entities: true,
41
42
  'campaigns.count': true,
42
43
  'pitches.count': true
@@ -220,6 +220,11 @@ export declare namespace Story {
220
220
  * Always `null` for v3 stories.
221
221
  */
222
222
  attached_attachments_content: string | null;
223
+ /**
224
+ * Contains attached contacts slate content.
225
+ * Always `null` for v3 stories.
226
+ */
227
+ attached_contacts_content: string | null;
223
228
  referenced_entities: {
224
229
  stories: Record<string, OEmbedInfo>;
225
230
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prezly/sdk",
3
- "version": "12.3.0",
3
+ "version": "12.3.1",
4
4
  "description": "Prezly API SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",