@hubs101/js-api-skd-client 1.0.10480 → 1.0.10481

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.
@@ -128,5 +128,5 @@ export declare const _deleteMediaDirectories: (basePath: string, token: string,
128
128
  export declare const _deleteMediaDirectoryFiles: (basePath: string, token: string, accountId: string, filepath: string) => Promise<APIResponse>;
129
129
  export declare const _addMediaFolder: (basePath: string, token: string, accountId: string, path: string, name: string) => Promise<APIResponse>;
130
130
  export declare const _updateEventWebsite: (basePath: string, token: string, eventId: string, keyData: string, data: {
131
- website_content: Record<string, string | boolean>[];
131
+ website_content: Record<string, string | boolean | File>[];
132
132
  }, files?: any) => Promise<ResponseAPIType1>;
@@ -553,10 +553,10 @@ export type EventServerResponse = {
553
553
  }[];
554
554
  webinar: string;
555
555
  website_content: {
556
- keytopics: Record<string, string | boolean>[];
557
- targetgroups: Record<string, string | boolean>[];
558
- testimonials: Record<string, string | boolean>[];
559
- whoattend: Record<string, string | boolean>[];
556
+ keytopics: Record<string, string | boolean | File>[];
557
+ targetgroups: Record<string, string | boolean | File>[];
558
+ testimonials: Record<string, string | boolean | File>[];
559
+ whoattend: Record<string, string | boolean | File>[];
560
560
  };
561
561
  };
562
562
  export type AccountInput = {
@@ -92,7 +92,7 @@ export type BaseAPIType = {
92
92
  deleteMediaDirectories: (basePath: string, token: string, accountId: string, path: string, name: string) => Promise<APIResponse>;
93
93
  addMediaFolder: (basePath: string, token: string, accountId: string, path: string, name: string) => Promise<APIResponse>;
94
94
  updateEventWebsite: (basePath: string, token: string, eventId: string, keyData: string, data: {
95
- website_content: Record<string, string | boolean>[];
95
+ website_content: Record<string, string | boolean | File>[];
96
96
  }, files?: any) => Promise<ResponseAPIType1>;
97
97
  deleteMediaDirectoryFiles: (basePath: string, token: string, accountId: string, filepath: string) => Promise<APIResponse>;
98
98
  updateAccountGroup: (basePath: string, token: string, accountId: string, groupId: string, data: GroupInputType) => Promise<GroupResponseType>;
@@ -344,7 +344,7 @@ export type EventAPIType = {
344
344
  deleteMediaDirectories: (accountId: string, path: string, name: string) => Promise<APIResponse>;
345
345
  addMediaFolder: (accountId: string, path: string, name: string) => Promise<APIResponse>;
346
346
  updateEventWebsite: (eventId: string, keyData: string, data: {
347
- website_content: Record<string, string | boolean>[];
347
+ website_content: Record<string, string | boolean | File>[];
348
348
  }, files?: any) => Promise<ResponseAPIType1>;
349
349
  deleteMediaDirectoryFiles: (accountId: string, filepath: string) => Promise<APIResponse>;
350
350
  updateAccountGroup: (accountId: string, groupId: string, data: GroupInputType) => Promise<GroupResponseType>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10480",
3
+ "version": "1.0.10481",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",