@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.
- package/lib/api/event/index.d.ts +1 -1
- package/lib/types/base.d.ts +2 -2
- package/package.json +1 -1
package/lib/api/event/index.d.ts
CHANGED
|
@@ -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<
|
|
134
|
+
}, files?: any) => Promise<EventServerResponse>;
|
package/lib/types/base.d.ts
CHANGED
|
@@ -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<
|
|
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<
|
|
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>>;
|