@kohost/api-client 3.1.17 → 3.1.19

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.
@@ -5895,10 +5895,10 @@ var require_CreateOrganization = __commonJS({
5895
5895
  }
5896
5896
  });
5897
5897
 
5898
- // dist/useCases/AdminUpdateCustomer.js
5899
- var require_AdminUpdateCustomer = __commonJS({
5900
- "dist/useCases/AdminUpdateCustomer.js"(exports2, module2) {
5901
- module2.exports = /* @__PURE__ */ __name(function AdminUpdateCustomer2(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
5898
+ // dist/useCases/UpdateOrganization.js
5899
+ var require_UpdateOrganization = __commonJS({
5900
+ "dist/useCases/UpdateOrganization.js"(exports2, module2) {
5901
+ module2.exports = /* @__PURE__ */ __name(function UpdateOrganization2(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
5902
5902
  if (!requestData)
5903
5903
  requestData = {};
5904
5904
  const pathParams = [":id"];
@@ -5929,7 +5929,7 @@ var require_AdminUpdateCustomer = __commonJS({
5929
5929
  if (headers)
5930
5930
  config.headers = headers;
5931
5931
  return this._http.request(config);
5932
- }, "AdminUpdateCustomer");
5932
+ }, "UpdateOrganization");
5933
5933
  }
5934
5934
  });
5935
5935
 
@@ -7035,6 +7035,120 @@ var require_UpdateTimeSheetTimeEntry = __commonJS({
7035
7035
  }
7036
7036
  });
7037
7037
 
7038
+ // dist/useCases/StartSOS.js
7039
+ var require_StartSOS = __commonJS({
7040
+ "dist/useCases/StartSOS.js"(exports2, module2) {
7041
+ module2.exports = /* @__PURE__ */ __name(function StartSOS2(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
7042
+ if (!requestData)
7043
+ requestData = {};
7044
+ const pathParams = null;
7045
+ const { data, query, headers } = requestData;
7046
+ let url = "/sos/start";
7047
+ if (pathParams && data) {
7048
+ for (const param of pathParams) {
7049
+ const paramName = param.replace(":", "");
7050
+ url = url.replace(param, data[paramName]);
7051
+ }
7052
+ }
7053
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
7054
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
7055
+ const missing = missingParams.map((param) => param.replace(":", ""));
7056
+ return Promise.reject(
7057
+ new Error("Missing parameters: " + missing.join(", "))
7058
+ );
7059
+ }
7060
+ const config = {
7061
+ method: "post",
7062
+ url,
7063
+ ...httpConfigOptions
7064
+ };
7065
+ if (data)
7066
+ config.data = data;
7067
+ if (query)
7068
+ config.params = query;
7069
+ if (headers)
7070
+ config.headers = headers;
7071
+ return this._http.request(config);
7072
+ }, "StartSOS");
7073
+ }
7074
+ });
7075
+
7076
+ // dist/useCases/StopSOS.js
7077
+ var require_StopSOS = __commonJS({
7078
+ "dist/useCases/StopSOS.js"(exports2, module2) {
7079
+ module2.exports = /* @__PURE__ */ __name(function StopSOS2(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
7080
+ if (!requestData)
7081
+ requestData = {};
7082
+ const pathParams = null;
7083
+ const { data, query, headers } = requestData;
7084
+ let url = "/sos/stop";
7085
+ if (pathParams && data) {
7086
+ for (const param of pathParams) {
7087
+ const paramName = param.replace(":", "");
7088
+ url = url.replace(param, data[paramName]);
7089
+ }
7090
+ }
7091
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
7092
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
7093
+ const missing = missingParams.map((param) => param.replace(":", ""));
7094
+ return Promise.reject(
7095
+ new Error("Missing parameters: " + missing.join(", "))
7096
+ );
7097
+ }
7098
+ const config = {
7099
+ method: "post",
7100
+ url,
7101
+ ...httpConfigOptions
7102
+ };
7103
+ if (data)
7104
+ config.data = data;
7105
+ if (query)
7106
+ config.params = query;
7107
+ if (headers)
7108
+ config.headers = headers;
7109
+ return this._http.request(config);
7110
+ }, "StopSOS");
7111
+ }
7112
+ });
7113
+
7114
+ // dist/useCases/DescribeSOS.js
7115
+ var require_DescribeSOS = __commonJS({
7116
+ "dist/useCases/DescribeSOS.js"(exports2, module2) {
7117
+ module2.exports = /* @__PURE__ */ __name(function DescribeSOS2(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
7118
+ if (!requestData)
7119
+ requestData = {};
7120
+ const pathParams = null;
7121
+ const { data, query, headers } = requestData;
7122
+ let url = "/sos";
7123
+ if (pathParams && data) {
7124
+ for (const param of pathParams) {
7125
+ const paramName = param.replace(":", "");
7126
+ url = url.replace(param, data[paramName]);
7127
+ }
7128
+ }
7129
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
7130
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
7131
+ const missing = missingParams.map((param) => param.replace(":", ""));
7132
+ return Promise.reject(
7133
+ new Error("Missing parameters: " + missing.join(", "))
7134
+ );
7135
+ }
7136
+ const config = {
7137
+ method: "get",
7138
+ url,
7139
+ ...httpConfigOptions
7140
+ };
7141
+ if (data)
7142
+ config.data = data;
7143
+ if (query)
7144
+ config.params = query;
7145
+ if (headers)
7146
+ config.headers = headers;
7147
+ return this._http.request(config);
7148
+ }, "DescribeSOS");
7149
+ }
7150
+ });
7151
+
7038
7152
  // src/Client/index.js
7039
7153
  var LoginStart = require_LoginStart();
7040
7154
  var RefreshToken = require_RefreshToken();
@@ -7191,7 +7305,7 @@ var UpdateReservationExpectedArrivalTime = require_UpdateReservationExpectedArri
7191
7305
  var OCRDocument = require_OCRDocument();
7192
7306
  var DescribeMyOrganization = require_DescribeMyOrganization();
7193
7307
  var CreateOrganization = require_CreateOrganization();
7194
- var AdminUpdateCustomer = require_AdminUpdateCustomer();
7308
+ var UpdateOrganization = require_UpdateOrganization();
7195
7309
  var DescribeOrganization = require_DescribeOrganization();
7196
7310
  var ListOrganizations = require_ListOrganizations();
7197
7311
  var ListProperties = require_ListProperties();
@@ -7221,6 +7335,9 @@ var UpdateTimeSheet = require_UpdateTimeSheet();
7221
7335
  var CreateTimeSheetTimeEntry = require_CreateTimeSheetTimeEntry();
7222
7336
  var DeleteTimeSheetTimeEntry = require_DeleteTimeSheetTimeEntry();
7223
7337
  var UpdateTimeSheetTimeEntry = require_UpdateTimeSheetTimeEntry();
7338
+ var StartSOS = require_StartSOS();
7339
+ var StopSOS = require_StopSOS();
7340
+ var DescribeSOS = require_DescribeSOS();
7224
7341
  var { EventEmitter } = require("events");
7225
7342
  var axios = require("axios");
7226
7343
  var KohostApiClient = class _KohostApiClient extends EventEmitter {
@@ -7515,7 +7632,7 @@ KohostApiClient.prototype.UpdateReservationExpectedArrivalTime = UpdateReservati
7515
7632
  KohostApiClient.prototype.OCRDocument = OCRDocument;
7516
7633
  KohostApiClient.prototype.DescribeMyOrganization = DescribeMyOrganization;
7517
7634
  KohostApiClient.prototype.CreateOrganization = CreateOrganization;
7518
- KohostApiClient.prototype.AdminUpdateCustomer = AdminUpdateCustomer;
7635
+ KohostApiClient.prototype.UpdateOrganization = UpdateOrganization;
7519
7636
  KohostApiClient.prototype.DescribeOrganization = DescribeOrganization;
7520
7637
  KohostApiClient.prototype.ListOrganizations = ListOrganizations;
7521
7638
  KohostApiClient.prototype.ListProperties = ListProperties;
@@ -7545,4 +7662,7 @@ KohostApiClient.prototype.UpdateTimeSheet = UpdateTimeSheet;
7545
7662
  KohostApiClient.prototype.CreateTimeSheetTimeEntry = CreateTimeSheetTimeEntry;
7546
7663
  KohostApiClient.prototype.DeleteTimeSheetTimeEntry = DeleteTimeSheetTimeEntry;
7547
7664
  KohostApiClient.prototype.UpdateTimeSheetTimeEntry = UpdateTimeSheetTimeEntry;
7665
+ KohostApiClient.prototype.StartSOS = StartSOS;
7666
+ KohostApiClient.prototype.StopSOS = StopSOS;
7667
+ KohostApiClient.prototype.DescribeSOS = DescribeSOS;
7548
7668
  module.exports = KohostApiClient;
@@ -153,7 +153,7 @@ export interface Lock {
153
153
  /**
154
154
  * AutoLock: Lock automatically locks after set time. Normal - Lock needs told to lock or unlock.
155
155
  */
156
- mode?: "normal" | "autoLock" | null;
156
+ mode?: "normal" | "autoLock" | "emergencyOpen" | "emergencyClose" | null;
157
157
  batteryLevel?: number;
158
158
  systemId?: string;
159
159
  watts?: number;
@@ -107,6 +107,11 @@ export interface Property {
107
107
  };
108
108
  [k: string]: unknown;
109
109
  };
110
+ SOS?: {
111
+ active?: boolean;
112
+ activeEmergencies?: ("medical" | "fire" | "suspiciousPerson" | "other" | "conflict" | "shooter")[];
113
+ [k: string]: unknown;
114
+ };
110
115
  Elevator?: unknown;
111
116
  Experiences?: unknown;
112
117
  Dining?: unknown;
@@ -490,7 +490,7 @@ export interface Lock {
490
490
  /**
491
491
  * AutoLock: Lock automatically locks after set time. Normal - Lock needs told to lock or unlock.
492
492
  */
493
- mode?: "normal" | "autoLock" | null;
493
+ mode?: "normal" | "autoLock" | "emergencyOpen" | "emergencyClose" | null;
494
494
  batteryLevel?: number;
495
495
  systemId?: string;
496
496
  watts?: number;
@@ -42,6 +42,15 @@ export interface Scene {
42
42
  commands?: string[];
43
43
  [k: string]: unknown;
44
44
  }[];
45
+ locks?: {
46
+ id?: string;
47
+ state?: "locked" | "unlocked" | null;
48
+ /**
49
+ * AutoLock: Lock automatically locks after set time. Normal - Lock needs told to lock or unlock.
50
+ */
51
+ mode?: "normal" | "autoLock" | "emergencyOpen" | "emergencyClose" | null;
52
+ [k: string]: unknown;
53
+ }[];
45
54
  };
46
55
  isDefault?: boolean;
47
56
  showOnUi?: boolean;
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "mode": {
34
34
  "type": ["string", "null"],
35
- "enum": ["normal", "autoLock", null],
35
+ "enum": ["normal", "autoLock", "emergencyOpen", "emergencyClose", null],
36
36
  "description": "AutoLock: Lock automatically locks after set time. Normal - Lock needs told to lock or unlock.",
37
37
  "default": "normal"
38
38
  },
@@ -231,6 +231,28 @@
231
231
  }
232
232
  }
233
233
  },
234
+ "SOS": {
235
+ "type": "object",
236
+ "properties": {
237
+ "active": {
238
+ "type": "boolean"
239
+ },
240
+ "activeEmergencies": {
241
+ "type": "array",
242
+ "items": {
243
+ "type": "string",
244
+ "enum": [
245
+ "medical",
246
+ "fire",
247
+ "suspiciousPerson",
248
+ "other",
249
+ "conflict",
250
+ "shooter"
251
+ ]
252
+ }
253
+ }
254
+ }
255
+ },
234
256
  "Elevator": {},
235
257
  "Experiences": {},
236
258
  "Dining": {},
@@ -107,6 +107,23 @@
107
107
  }
108
108
  }
109
109
  }
110
+ },
111
+ "locks": {
112
+ "type": "array",
113
+ "items": {
114
+ "type": "object",
115
+ "properties": {
116
+ "id": {
117
+ "$ref": "definitions.json#/definitions/id"
118
+ },
119
+ "state": {
120
+ "$ref": "lock.json#/properties/state"
121
+ },
122
+ "mode": {
123
+ "$ref": "lock.json#/properties/mode"
124
+ }
125
+ }
126
+ }
110
127
  }
111
128
  },
112
129
  "additionalProperties": false
@@ -5895,10 +5895,10 @@ var require_CreateOrganization = __commonJS({
5895
5895
  }
5896
5896
  });
5897
5897
 
5898
- // dist/useCases/AdminUpdateCustomer.js
5899
- var require_AdminUpdateCustomer = __commonJS({
5900
- "dist/useCases/AdminUpdateCustomer.js"(exports, module) {
5901
- module.exports = /* @__PURE__ */ __name(function AdminUpdateCustomer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
5898
+ // dist/useCases/UpdateOrganization.js
5899
+ var require_UpdateOrganization = __commonJS({
5900
+ "dist/useCases/UpdateOrganization.js"(exports, module) {
5901
+ module.exports = /* @__PURE__ */ __name(function UpdateOrganization(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
5902
5902
  if (!requestData)
5903
5903
  requestData = {};
5904
5904
  const pathParams = [":id"];
@@ -5929,7 +5929,7 @@ var require_AdminUpdateCustomer = __commonJS({
5929
5929
  if (headers)
5930
5930
  config.headers = headers;
5931
5931
  return this._http.request(config);
5932
- }, "AdminUpdateCustomer");
5932
+ }, "UpdateOrganization");
5933
5933
  }
5934
5934
  });
5935
5935
 
@@ -7035,6 +7035,120 @@ var require_UpdateTimeSheetTimeEntry = __commonJS({
7035
7035
  }
7036
7036
  });
7037
7037
 
7038
+ // dist/useCases/StartSOS.js
7039
+ var require_StartSOS = __commonJS({
7040
+ "dist/useCases/StartSOS.js"(exports, module) {
7041
+ module.exports = /* @__PURE__ */ __name(function StartSOS(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
7042
+ if (!requestData)
7043
+ requestData = {};
7044
+ const pathParams = null;
7045
+ const { data, query, headers } = requestData;
7046
+ let url = "/sos/start";
7047
+ if (pathParams && data) {
7048
+ for (const param of pathParams) {
7049
+ const paramName = param.replace(":", "");
7050
+ url = url.replace(param, data[paramName]);
7051
+ }
7052
+ }
7053
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
7054
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
7055
+ const missing = missingParams.map((param) => param.replace(":", ""));
7056
+ return Promise.reject(
7057
+ new Error("Missing parameters: " + missing.join(", "))
7058
+ );
7059
+ }
7060
+ const config = {
7061
+ method: "post",
7062
+ url,
7063
+ ...httpConfigOptions
7064
+ };
7065
+ if (data)
7066
+ config.data = data;
7067
+ if (query)
7068
+ config.params = query;
7069
+ if (headers)
7070
+ config.headers = headers;
7071
+ return this._http.request(config);
7072
+ }, "StartSOS");
7073
+ }
7074
+ });
7075
+
7076
+ // dist/useCases/StopSOS.js
7077
+ var require_StopSOS = __commonJS({
7078
+ "dist/useCases/StopSOS.js"(exports, module) {
7079
+ module.exports = /* @__PURE__ */ __name(function StopSOS(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
7080
+ if (!requestData)
7081
+ requestData = {};
7082
+ const pathParams = null;
7083
+ const { data, query, headers } = requestData;
7084
+ let url = "/sos/stop";
7085
+ if (pathParams && data) {
7086
+ for (const param of pathParams) {
7087
+ const paramName = param.replace(":", "");
7088
+ url = url.replace(param, data[paramName]);
7089
+ }
7090
+ }
7091
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
7092
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
7093
+ const missing = missingParams.map((param) => param.replace(":", ""));
7094
+ return Promise.reject(
7095
+ new Error("Missing parameters: " + missing.join(", "))
7096
+ );
7097
+ }
7098
+ const config = {
7099
+ method: "post",
7100
+ url,
7101
+ ...httpConfigOptions
7102
+ };
7103
+ if (data)
7104
+ config.data = data;
7105
+ if (query)
7106
+ config.params = query;
7107
+ if (headers)
7108
+ config.headers = headers;
7109
+ return this._http.request(config);
7110
+ }, "StopSOS");
7111
+ }
7112
+ });
7113
+
7114
+ // dist/useCases/DescribeSOS.js
7115
+ var require_DescribeSOS = __commonJS({
7116
+ "dist/useCases/DescribeSOS.js"(exports, module) {
7117
+ module.exports = /* @__PURE__ */ __name(function DescribeSOS(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
7118
+ if (!requestData)
7119
+ requestData = {};
7120
+ const pathParams = null;
7121
+ const { data, query, headers } = requestData;
7122
+ let url = "/sos";
7123
+ if (pathParams && data) {
7124
+ for (const param of pathParams) {
7125
+ const paramName = param.replace(":", "");
7126
+ url = url.replace(param, data[paramName]);
7127
+ }
7128
+ }
7129
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
7130
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
7131
+ const missing = missingParams.map((param) => param.replace(":", ""));
7132
+ return Promise.reject(
7133
+ new Error("Missing parameters: " + missing.join(", "))
7134
+ );
7135
+ }
7136
+ const config = {
7137
+ method: "get",
7138
+ url,
7139
+ ...httpConfigOptions
7140
+ };
7141
+ if (data)
7142
+ config.data = data;
7143
+ if (query)
7144
+ config.params = query;
7145
+ if (headers)
7146
+ config.headers = headers;
7147
+ return this._http.request(config);
7148
+ }, "DescribeSOS");
7149
+ }
7150
+ });
7151
+
7038
7152
  // node_modules/events/events.js
7039
7153
  var require_events = __commonJS({
7040
7154
  "node_modules/events/events.js"(exports, module) {
@@ -8180,6 +8294,8 @@ var require_axios = __commonJS({
8180
8294
  function formDataToJSON(formData) {
8181
8295
  function buildPath(path, value, target, index) {
8182
8296
  let name = path[index++];
8297
+ if (name === "__proto__")
8298
+ return true;
8183
8299
  const isNumericKey = Number.isFinite(+name);
8184
8300
  const isLast = index >= path.length;
8185
8301
  name = !name && utils$1.isArray(target) ? target.length : name;
@@ -8237,9 +8353,6 @@ var require_axios = __commonJS({
8237
8353
  }
8238
8354
  const isFormData2 = utils$1.isFormData(data);
8239
8355
  if (isFormData2) {
8240
- if (!hasJSONContentType) {
8241
- return data;
8242
- }
8243
8356
  return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;
8244
8357
  }
8245
8358
  if (utils$1.isArrayBuffer(data) || utils$1.isBuffer(data) || utils$1.isStream(data) || utils$1.isFile(data) || utils$1.isBlob(data)) {
@@ -8665,7 +8778,7 @@ var require_axios = __commonJS({
8665
8778
  }
8666
8779
  __name(isAbsoluteURL, "isAbsoluteURL");
8667
8780
  function combineURLs(baseURL, relativeURL) {
8668
- return relativeURL ? baseURL.replace(/\/+$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
8781
+ return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
8669
8782
  }
8670
8783
  __name(combineURLs, "combineURLs");
8671
8784
  function buildFullPath(baseURL, requestedURL) {
@@ -9105,7 +9218,7 @@ var require_axios = __commonJS({
9105
9218
  return config;
9106
9219
  }
9107
9220
  __name(mergeConfig, "mergeConfig");
9108
- var VERSION = "1.6.2";
9221
+ var VERSION = "1.6.7";
9109
9222
  var validators$1 = {};
9110
9223
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
9111
9224
  validators$1[type] = /* @__PURE__ */ __name(function validator2(thing) {
@@ -9184,7 +9297,24 @@ var require_axios = __commonJS({
9184
9297
  *
9185
9298
  * @returns {Promise} The Promise to be fulfilled
9186
9299
  */
9187
- request(configOrUrl, config) {
9300
+ async request(configOrUrl, config) {
9301
+ try {
9302
+ return await this._request(configOrUrl, config);
9303
+ } catch (err) {
9304
+ if (err instanceof Error) {
9305
+ let dummy;
9306
+ Error.captureStackTrace ? Error.captureStackTrace(dummy = {}) : dummy = new Error();
9307
+ const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, "") : "";
9308
+ if (!err.stack) {
9309
+ err.stack = stack;
9310
+ } else if (stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, ""))) {
9311
+ err.stack += "\n" + stack;
9312
+ }
9313
+ }
9314
+ throw err;
9315
+ }
9316
+ }
9317
+ _request(configOrUrl, config) {
9188
9318
  if (typeof configOrUrl === "string") {
9189
9319
  config = config || {};
9190
9320
  config.url = configOrUrl;
@@ -9672,7 +9802,7 @@ var require_Client = __commonJS({
9672
9802
  var OCRDocument = require_OCRDocument();
9673
9803
  var DescribeMyOrganization = require_DescribeMyOrganization();
9674
9804
  var CreateOrganization = require_CreateOrganization();
9675
- var AdminUpdateCustomer = require_AdminUpdateCustomer();
9805
+ var UpdateOrganization = require_UpdateOrganization();
9676
9806
  var DescribeOrganization = require_DescribeOrganization();
9677
9807
  var ListOrganizations = require_ListOrganizations();
9678
9808
  var ListProperties = require_ListProperties();
@@ -9702,6 +9832,9 @@ var require_Client = __commonJS({
9702
9832
  var CreateTimeSheetTimeEntry = require_CreateTimeSheetTimeEntry();
9703
9833
  var DeleteTimeSheetTimeEntry = require_DeleteTimeSheetTimeEntry();
9704
9834
  var UpdateTimeSheetTimeEntry = require_UpdateTimeSheetTimeEntry();
9835
+ var StartSOS = require_StartSOS();
9836
+ var StopSOS = require_StopSOS();
9837
+ var DescribeSOS = require_DescribeSOS();
9705
9838
  var { EventEmitter } = require_events();
9706
9839
  var axios = require_axios();
9707
9840
  var KohostApiClient = class _KohostApiClient extends EventEmitter {
@@ -9996,7 +10129,7 @@ var require_Client = __commonJS({
9996
10129
  KohostApiClient.prototype.OCRDocument = OCRDocument;
9997
10130
  KohostApiClient.prototype.DescribeMyOrganization = DescribeMyOrganization;
9998
10131
  KohostApiClient.prototype.CreateOrganization = CreateOrganization;
9999
- KohostApiClient.prototype.AdminUpdateCustomer = AdminUpdateCustomer;
10132
+ KohostApiClient.prototype.UpdateOrganization = UpdateOrganization;
10000
10133
  KohostApiClient.prototype.DescribeOrganization = DescribeOrganization;
10001
10134
  KohostApiClient.prototype.ListOrganizations = ListOrganizations;
10002
10135
  KohostApiClient.prototype.ListProperties = ListProperties;
@@ -10026,6 +10159,9 @@ var require_Client = __commonJS({
10026
10159
  KohostApiClient.prototype.CreateTimeSheetTimeEntry = CreateTimeSheetTimeEntry;
10027
10160
  KohostApiClient.prototype.DeleteTimeSheetTimeEntry = DeleteTimeSheetTimeEntry;
10028
10161
  KohostApiClient.prototype.UpdateTimeSheetTimeEntry = UpdateTimeSheetTimeEntry;
10162
+ KohostApiClient.prototype.StartSOS = StartSOS;
10163
+ KohostApiClient.prototype.StopSOS = StopSOS;
10164
+ KohostApiClient.prototype.DescribeSOS = DescribeSOS;
10029
10165
  module.exports = KohostApiClient;
10030
10166
  }
10031
10167
  });