@hubs101/js-api-skd-client 1.0.10421 → 1.0.10423

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.
@@ -22,7 +22,7 @@ export declare const _deletePaymentAccount: (basePath: string, token: string, pa
22
22
  export declare const _fetchAccountEvents: (basePath: string, token: string, url: string) => Promise<ResponseAccountEventsType>;
23
23
  export declare const _fetchAccountGroups: (basePath: string, token: string, accountId: string, type: GroupType) => Promise<ResponsePaginationType<GroupResponseType>>;
24
24
  export declare const _createAccountGroup: (basePath: string, token: string, accountId: string, data: GroupInputType) => Promise<GroupResponseType>;
25
- export declare const _fetchColocatedEventsGroups: (basePath: string, token: string, accountId: string) => Promise<ResponsePaginationType<ColocatedEventsGroupType>>;
25
+ export declare const _fetchColocatedEventsGroups: (basePath: string, token: string, accountId: string) => Promise<ColocatedEventsGroupType[]>;
26
26
  export declare const _createColocatedEventsGroup: (basePath: string, token: string, accountId: string, data: ColocatedEventsGroupInputType) => Promise<ColocatedEventsGroupType>;
27
27
  export declare const _editColocatedEventsGroup: (basePath: string, token: string, id: string, data: ColocatedEventsGroupInputType) => Promise<ColocatedEventsGroupType>;
28
28
  export declare const _deleteColocatedEventsGroup: (basePath: string, token: string, id: string) => Promise<Response>;
@@ -307,7 +307,7 @@ export type BaseAPIType = {
307
307
  value: File;
308
308
  }[]) => Promise<BlogPage>;
309
309
  deletePortfolioBlogPage: (basePath: string, token: string, portfolioId: string, blogPostId: string) => Promise<Response>;
310
- fetchColocatedEventsGroups: (basePath: string, token: string, accountId: string) => Promise<ResponsePaginationType<ColocatedEventsGroupType>>;
310
+ fetchColocatedEventsGroups: (basePath: string, token: string, accountId: string) => Promise<ColocatedEventsGroupType[]>;
311
311
  createColocatedEventsGroup: (basePath: string, token: string, accountId: string, data: ColocatedEventsGroupInputType) => Promise<ColocatedEventsGroupType>;
312
312
  editColocatedEventsGroup: (basePath: string, token: string, id: string, data: ColocatedEventsGroupInputType) => Promise<ColocatedEventsGroupType>;
313
313
  deleteColocatedEventsGroup: (basePath: string, token: string, id: string) => Promise<Response>;
@@ -546,7 +546,7 @@ export type EventAPIType = {
546
546
  value: File;
547
547
  }[]) => Promise<BlogPage>;
548
548
  deletePortfolioBlogPage: (portfolioId: string, blogPostId: string) => Promise<Response>;
549
- fetchColocatedEventsGroups: (accountId: string) => Promise<ResponsePaginationType<ColocatedEventsGroupType>>;
549
+ fetchColocatedEventsGroups: (accountId: string) => Promise<ColocatedEventsGroupType[]>;
550
550
  createColocatedEventsGroup: (accountId: string, data: ColocatedEventsGroupInputType) => Promise<ColocatedEventsGroupType>;
551
551
  editColocatedEventsGroup: (id: string, data: ColocatedEventsGroupInputType) => Promise<ColocatedEventsGroupType>;
552
552
  deleteColocatedEventsGroup: (id: string) => Promise<Response>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10421",
3
+ "version": "1.0.10423",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",