starta.apiclient 1.37.2021 → 1.37.2025

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.
@@ -68,7 +68,6 @@ export default class Organizations {
68
68
  setBookingWidgetStyles(organizationLogin: any, bookingWidgetStyles: any): Promise<import("../../types").StartaResponse>;
69
69
  getMembersSchedule(organizationLogin: any, date: any): Promise<import("../../types").StartaResponse>;
70
70
  getSingleMemberSchedule(organizationLogin: any, member: any, from: any, to: any): Promise<import("../../types").StartaResponse>;
71
- setLanguages(organizationLogin: string, languages: Array<string>): Promise<import("../../types").StartaResponse>;
72
71
  updateRoles(organizationLogin: any, roles: any): Promise<import("../../types").StartaResponse>;
73
72
  setLicense(organizationLogin: any, { period, returnUrl }: {
74
73
  period: 'monthly' | 'yearly';
@@ -138,13 +138,6 @@ var Organizations = /** @class */ (function () {
138
138
  method: 'GET',
139
139
  });
140
140
  };
141
- Organizations.prototype.setLanguages = function (organizationLogin, languages) {
142
- return this._requestRunner.performRequest({
143
- url: "accounts/".concat(organizationLogin, "/languages"),
144
- method: 'PUT',
145
- body: { languages: languages },
146
- });
147
- };
148
141
  Organizations.prototype.updateRoles = function (organizationLogin, roles) {
149
142
  return this._requestRunner.performRequest({
150
143
  url: "accounts/".concat(organizationLogin, "/roles"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starta.apiclient",
3
- "version": "1.37.2021",
3
+ "version": "1.37.2025",
4
4
  "main": "./lib/index.js",
5
5
  "description": "Wrapper for starta.one api",
6
6
  "author": "Collaboracia OÜ",