@hubs101/js-api-skd-client 1.0.10485 → 1.0.10486

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.
@@ -131,4 +131,4 @@ export declare const _deleteMediaDirectoryFiles: (basePath: string, token: strin
131
131
  export declare const _addMediaFolder: (basePath: string, token: string, accountId: string, path: string, name: string) => Promise<APIResponse>;
132
132
  export declare const _updateEventWebsite: (basePath: string, token: string, eventId: string, keyData: string, data: {
133
133
  website_content: Record<string, string | boolean | File>[];
134
- }, files?: any) => Promise<Record<string, string>[]>;
134
+ }, files?: any) => Promise<EventServerResponse>;
@@ -93,7 +93,7 @@ export type BaseAPIType = {
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
95
  website_content: Record<string, string | boolean | File>[];
96
- }, files?: any) => Promise<Record<string, string>[]>;
96
+ }, files?: any) => Promise<EventServerResponse>;
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>;
99
99
  fetchAccountGroups: (basePath: string, token: string, accountId: string, type: GroupType) => Promise<ResponsePaginationType<GroupResponseType>>;
@@ -347,7 +347,7 @@ export type EventAPIType = {
347
347
  addMediaFolder: (accountId: string, path: string, name: string) => Promise<APIResponse>;
348
348
  updateEventWebsite: (eventId: string, keyData: string, data: {
349
349
  website_content: Record<string, string | boolean | File>[];
350
- }, files?: any) => Promise<Record<string, string>[]>;
350
+ }, files?: any) => Promise<EventServerResponse>;
351
351
  deleteMediaDirectoryFiles: (accountId: string, filepath: string) => Promise<APIResponse>;
352
352
  updateAccountGroup: (accountId: string, groupId: string, data: GroupInputType) => Promise<GroupResponseType>;
353
353
  fetchAccountGroups: (accountId: string, type: GroupType) => Promise<ResponsePaginationType<GroupResponseType>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10485",
3
+ "version": "1.0.10486",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",