@adspireai/adspire-node-sdk 1.0.61 → 1.0.62
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/dist/types.gen.d.ts +2 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ export type Campaigns = {
|
|
|
86
86
|
start_date?: string;
|
|
87
87
|
end_date?: string;
|
|
88
88
|
status?: string;
|
|
89
|
+
whiteboard?: Whiteboards;
|
|
89
90
|
created_at?: string;
|
|
90
91
|
updated_at?: string;
|
|
91
92
|
};
|
|
@@ -233,6 +234,7 @@ export type Whiteboards = {
|
|
|
233
234
|
updated_at?: string;
|
|
234
235
|
};
|
|
235
236
|
export type WhiteboardsWithPosts = Whiteboards & {
|
|
237
|
+
campaign?: Campaigns;
|
|
236
238
|
posts?: Array<WhiteboardPosts>;
|
|
237
239
|
};
|
|
238
240
|
export type WhiteboardPosts = {
|