@adspireai/adspire-node-sdk 1.0.202 → 1.0.203

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 (2) hide show
  1. package/dist/types.gen.d.ts +22 -20
  2. package/package.json +1 -1
@@ -283,6 +283,28 @@ export type Campaigns = {
283
283
  cover_photo?: string | null;
284
284
  whiteboard?: Whiteboards;
285
285
  };
286
+ export type WhiteboardPreviews = {
287
+ id?: string;
288
+ whiteboard_id: string;
289
+ status?: WhiteboardPreviewStatus;
290
+ version?: number;
291
+ campaign?: Campaigns | null;
292
+ created_by?: Users;
293
+ created_at?: string;
294
+ external_users?: Array<WhiteboardPreviewPublicUser>;
295
+ };
296
+ export type WhiteboardPreviewsWithPosts = {
297
+ id?: string;
298
+ title: string;
299
+ status?: WhiteboardPreviewStatus;
300
+ feedback?: string | null;
301
+ campaign?: Campaigns | null;
302
+ created_by?: Users;
303
+ created_at?: string;
304
+ reviewed_by?: Users | null;
305
+ reviewed_at?: string | null;
306
+ posts?: Array<WhiteboardPreviewPosts>;
307
+ };
286
308
  export type WorkspaceDetail = {
287
309
  id: string;
288
310
  name: string;
@@ -540,26 +562,6 @@ export type WhiteboardPosts = {
540
562
  created_at?: string;
541
563
  updated_at?: string;
542
564
  };
543
- export type WhiteboardPreviews = {
544
- id?: string;
545
- status?: WhiteboardPreviewStatus;
546
- version?: number;
547
- created_by?: Users;
548
- created_at?: string;
549
- external_users?: Array<WhiteboardPreviewPublicUser>;
550
- };
551
- export type WhiteboardPreviewsWithPosts = {
552
- id?: string;
553
- title: string;
554
- status?: WhiteboardPreviewStatus;
555
- feedback?: string | null;
556
- campaign?: Campaigns | null;
557
- created_by?: Users;
558
- created_at?: string;
559
- reviewed_by?: Users | null;
560
- reviewed_at?: string | null;
561
- posts?: Array<WhiteboardPreviewPosts>;
562
- };
563
565
  export type WhiteboardPreviewPosts = {
564
566
  id?: string;
565
567
  whiteboard_preview_id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adspireai/adspire-node-sdk",
3
- "version": "1.0.202",
3
+ "version": "1.0.203",
4
4
  "description": "Official Node.js SDK for AdspireAI API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",