@gewis/grooster-backend-ts 1.13.0 → 1.13.2

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.
Files changed (2) hide show
  1. package/dist/api.d.ts +3 -3
  2. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -1075,7 +1075,7 @@ export declare const OrganApiFp: (configuration?: Configuration) => {
1075
1075
  * @param {*} [options] Override http request option.
1076
1076
  * @throws {RequiredError}
1077
1077
  */
1078
- getMembersSettings(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOrgan>>;
1078
+ getMembersSettings(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserOrgan>>>;
1079
1079
  /**
1080
1080
  * Get organ-specific settings like nickname/username
1081
1081
  * @summary Get settings for a user within an organ
@@ -1108,7 +1108,7 @@ export declare const OrganApiFactory: (configuration?: Configuration, basePath?:
1108
1108
  * @param {*} [options] Override http request option.
1109
1109
  * @throws {RequiredError}
1110
1110
  */
1111
- getMembersSettings(id: number, options?: RawAxiosRequestConfig): AxiosPromise<UserOrgan>;
1111
+ getMembersSettings(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<UserOrgan>>;
1112
1112
  /**
1113
1113
  * Get organ-specific settings like nickname/username
1114
1114
  * @summary Get settings for a user within an organ
@@ -1144,7 +1144,7 @@ export declare class OrganApi extends BaseAPI {
1144
1144
  * @throws {RequiredError}
1145
1145
  * @memberof OrganApi
1146
1146
  */
1147
- getMembersSettings(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOrgan, any, {}>>;
1147
+ getMembersSettings(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOrgan[], any, {}>>;
1148
1148
  /**
1149
1149
  * Get organ-specific settings like nickname/username
1150
1150
  * @summary Get settings for a user within an organ
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gewis/grooster-backend-ts",
3
3
  "main": "./dist/index.js",
4
- "version": "1.13.0",
4
+ "version": "1.13.2",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [
7
7
  "dist/"