nuki-api-js 0.2.1 → 1.1.0
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/README.md +62 -7
- package/dist/components-eiu9qz9x.js +2351 -0
- package/dist/components-iddduu87.cjs +2458 -0
- package/dist/components.cjs +113 -0
- package/dist/components.d.mts +1597 -0
- package/dist/components.d.mts.map +1 -0
- package/dist/components.mjs +1 -0
- package/dist/effect.cjs +30 -0
- package/dist/effect.d.mts +247 -0
- package/dist/effect.d.mts.map +1 -0
- package/dist/effect.mjs +8 -0
- package/dist/index.cjs +916 -600
- package/dist/index.d.ts +45597 -3969
- package/dist/index.d.ts.map +1 -0
- package/dist/index.mjs +49 -600
- package/dist/schemas-hyottnja.cjs +3592 -0
- package/dist/schemas-n5izlvad.js +2739 -0
- package/dist/schemas.cjs +840 -0
- package/dist/schemas.d.mts +38462 -0
- package/dist/schemas.d.mts.map +1 -0
- package/dist/schemas.mjs +1 -0
- package/dist/types.cjs +227 -0
- package/dist/types.d.mts +7146 -0
- package/dist/types.d.mts.map +1 -0
- package/dist/types.mjs +195 -0
- package/package.json +66 -19
- package/.turbo/turbo-build.log +0 -14
- package/CHANGELOG.md +0 -61
- package/dist/index.d.cts +0 -5708
- package/dist/index.d.mts +0 -5708
- package/tsconfig.json +0 -19
package/dist/index.cjs
CHANGED
|
@@ -1,608 +1,924 @@
|
|
|
1
|
-
'
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
function compactObject(obj) {
|
|
7
|
-
return Object.fromEntries(Object.entries(obj).filter(([, value]) => notEmpty(value)));
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
const baseUrl = "https://api.nuki.io";
|
|
11
|
-
async function fetch$1({
|
|
12
|
-
url,
|
|
13
|
-
method,
|
|
14
|
-
body,
|
|
15
|
-
headers,
|
|
16
|
-
pathParams,
|
|
17
|
-
queryParams,
|
|
18
|
-
signal,
|
|
19
|
-
token,
|
|
20
|
-
fetchImpl
|
|
21
|
-
}) {
|
|
22
|
-
try {
|
|
23
|
-
const requestHeaders = compactObject({
|
|
24
|
-
"Content-Type": "application/json",
|
|
25
|
-
Authorization: token ? `Bearer ${token}` : void 0,
|
|
26
|
-
...headers
|
|
27
|
-
});
|
|
28
|
-
if (requestHeaders["Content-Type"]?.toLowerCase().includes("multipart/form-data")) {
|
|
29
|
-
delete requestHeaders["Content-Type"];
|
|
30
|
-
}
|
|
31
|
-
const payload = body instanceof FormData ? body : requestHeaders["Content-Type"] === "application/json" ? JSON.stringify(body) : body;
|
|
32
|
-
const response = await fetchImpl(`${baseUrl}${resolveUrl(url, queryParams, pathParams)}`, {
|
|
33
|
-
signal,
|
|
34
|
-
method: method.toUpperCase(),
|
|
35
|
-
body: payload,
|
|
36
|
-
headers: requestHeaders
|
|
37
|
-
});
|
|
38
|
-
if (!response.ok) {
|
|
39
|
-
let error;
|
|
40
|
-
try {
|
|
41
|
-
error = await response.json();
|
|
42
|
-
} catch (e) {
|
|
43
|
-
error = {
|
|
44
|
-
status: "unknown",
|
|
45
|
-
payload: e instanceof Error ? `Unexpected error (${e.message})` : "Unexpected error"
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
throw error;
|
|
49
|
-
}
|
|
50
|
-
if (response.headers?.get("content-type")?.includes("json")) {
|
|
51
|
-
return await response.json();
|
|
52
|
-
} else {
|
|
53
|
-
return await response.text();
|
|
54
|
-
}
|
|
55
|
-
} catch (e) {
|
|
56
|
-
const errorObject = {
|
|
57
|
-
name: "unknown",
|
|
58
|
-
message: e instanceof Error ? `Network error (${e.message})` : "Network error",
|
|
59
|
-
stack: e
|
|
60
|
-
};
|
|
61
|
-
throw errorObject;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
const resolveUrl = (url, queryParams = {}, pathParams = {}) => {
|
|
65
|
-
let query = new URLSearchParams(queryParams).toString();
|
|
66
|
-
if (query) query = `?${query}`;
|
|
67
|
-
return url.replace(/\{\w*\}/g, (key) => pathParams[key.slice(1, -1)] ?? "") + query;
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
const getAccountsResource = (variables, signal) => fetch$1({
|
|
71
|
-
url: "/account",
|
|
72
|
-
method: "get",
|
|
73
|
-
...variables,
|
|
74
|
-
signal
|
|
75
|
-
});
|
|
76
|
-
const postAccountsResource = (variables, signal) => fetch$1({ url: "/account", method: "post", ...variables, signal });
|
|
77
|
-
const deleteAccountsResource = (variables, signal) => fetch$1({
|
|
78
|
-
url: "/account",
|
|
79
|
-
method: "delete",
|
|
80
|
-
...variables,
|
|
81
|
-
signal
|
|
82
|
-
});
|
|
83
|
-
const postAccountEmailChangeResource = (variables, signal) => fetch$1({ url: "/account/email/change", method: "post", ...variables, signal });
|
|
84
|
-
const postAccountEmailVerifyResource = (variables, signal) => fetch$1({
|
|
85
|
-
url: "/account/email/verify",
|
|
86
|
-
method: "post",
|
|
87
|
-
...variables,
|
|
88
|
-
signal
|
|
89
|
-
});
|
|
90
|
-
const getAccountIntegrationsResource = (variables, signal) => fetch$1({ url: "/account/integration", method: "get", ...variables, signal });
|
|
91
|
-
const deleteAccountIntegrationsResource = (variables, signal) => fetch$1({ url: "/account/integration", method: "delete", ...variables, signal });
|
|
92
|
-
const postAccountOtpResource = (variables, signal) => fetch$1({ url: "/account/otp", method: "post", ...variables, signal });
|
|
93
|
-
const putAccountOtpResource = (variables, signal) => fetch$1({
|
|
94
|
-
url: "/account/otp",
|
|
95
|
-
method: "put",
|
|
96
|
-
...variables,
|
|
97
|
-
signal
|
|
98
|
-
});
|
|
99
|
-
const deleteAccountOtpResource = (variables, signal) => fetch$1({
|
|
100
|
-
url: "/account/otp",
|
|
101
|
-
method: "delete",
|
|
102
|
-
...variables,
|
|
103
|
-
signal
|
|
104
|
-
});
|
|
105
|
-
const postAccountPasswordResetResource = (variables, signal) => fetch$1({ url: "/account/password/reset", method: "post", ...variables, signal });
|
|
106
|
-
const getAccountSettingResource = (variables, signal) => fetch$1({ url: "/account/setting", method: "get", ...variables, signal });
|
|
107
|
-
const putAccountSettingResource = (variables, signal) => fetch$1({ url: "/account/setting", method: "put", ...variables, signal });
|
|
108
|
-
const deleteAccountSettingResource = (variables, signal) => fetch$1({
|
|
109
|
-
url: "/account/setting",
|
|
110
|
-
method: "delete",
|
|
111
|
-
...variables,
|
|
112
|
-
signal
|
|
113
|
-
});
|
|
114
|
-
const getAccountSubsResource = (variables, signal) => fetch$1({ url: "/account/sub", method: "get", ...variables, signal });
|
|
115
|
-
const putAccountSubsResource = (variables, signal) => fetch$1({ url: "/account/sub", method: "put", ...variables, signal });
|
|
116
|
-
const getAccountSubResource = (variables, signal) => fetch$1({ url: "/account/sub/{accountId}", method: "get", ...variables, signal });
|
|
117
|
-
const postAccountSubResource = (variables, signal) => fetch$1({ url: "/account/sub/{accountId}", method: "post", ...variables, signal });
|
|
118
|
-
const deleteAccountSubResource = (variables, signal) => fetch$1({
|
|
119
|
-
url: "/account/sub/{accountId}",
|
|
120
|
-
method: "delete",
|
|
121
|
-
...variables,
|
|
122
|
-
signal
|
|
123
|
-
});
|
|
124
|
-
const getAccountUsersResource = (variables, signal) => fetch$1({ url: "/account/user", method: "get", ...variables, signal });
|
|
125
|
-
const putAccountUsersResource = (variables, signal) => fetch$1({ url: "/account/user", method: "put", ...variables, signal });
|
|
126
|
-
const getAccountUserResource = (variables, signal) => fetch$1({
|
|
127
|
-
url: "/account/user/{accountUserId}",
|
|
128
|
-
method: "get",
|
|
129
|
-
...variables,
|
|
130
|
-
signal
|
|
131
|
-
});
|
|
132
|
-
const postAccountUserResource = (variables, signal) => fetch$1({
|
|
133
|
-
url: "/account/user/{accountUserId}",
|
|
134
|
-
method: "post",
|
|
135
|
-
...variables,
|
|
136
|
-
signal
|
|
137
|
-
});
|
|
138
|
-
const deleteAccountUserResource = (variables, signal) => fetch$1({
|
|
139
|
-
url: "/account/user/{accountUserId}",
|
|
140
|
-
method: "delete",
|
|
141
|
-
...variables,
|
|
142
|
-
signal
|
|
143
|
-
});
|
|
144
|
-
const getAddressesResource = (variables, signal) => fetch$1({ url: "/address", method: "get", ...variables, signal });
|
|
145
|
-
const putAddressesResource = (variables, signal) => fetch$1({ url: "/address", method: "put", ...variables, signal });
|
|
146
|
-
const getAddressTokenResource = (variables, signal) => fetch$1({ url: "/address/token/{id}", method: "get", ...variables, signal });
|
|
147
|
-
const getAddressTokenRedeemResource = (variables, signal) => fetch$1({ url: "/address/token/{id}/redeem", method: "get", ...variables, signal });
|
|
148
|
-
const postAddressTokenRedeemResource = (variables, signal) => fetch$1({
|
|
149
|
-
url: "/address/token/{id}/redeem",
|
|
150
|
-
method: "post",
|
|
151
|
-
...variables,
|
|
152
|
-
signal
|
|
153
|
-
});
|
|
154
|
-
const postAddressResource = (variables, signal) => fetch$1({ url: "/address/{addressId}", method: "post", ...variables, signal });
|
|
155
|
-
const deleteAddressResource = (variables, signal) => fetch$1({ url: "/address/{addressId}", method: "delete", ...variables, signal });
|
|
156
|
-
const getAddressReservationsResource = (variables, signal) => fetch$1({
|
|
157
|
-
url: "/address/{addressId}/reservation",
|
|
158
|
-
method: "get",
|
|
159
|
-
...variables,
|
|
160
|
-
signal
|
|
161
|
-
});
|
|
162
|
-
const postAddressReservationIssueResource = (variables, signal) => fetch$1({
|
|
163
|
-
url: "/address/{addressId}/reservation/{id}/issue",
|
|
164
|
-
method: "post",
|
|
165
|
-
...variables,
|
|
166
|
-
signal
|
|
167
|
-
});
|
|
168
|
-
const postAddressReservationRevokeResource = (variables, signal) => fetch$1({
|
|
169
|
-
url: "/address/{addressId}/reservation/{id}/revoke",
|
|
170
|
-
method: "post",
|
|
171
|
-
...variables,
|
|
172
|
-
signal
|
|
173
|
-
});
|
|
174
|
-
const postReservationAccessTimesUpdateResource = (variables, signal) => fetch$1({
|
|
175
|
-
url: "/address/{addressId}/reservation/{id}/update/accesstimes",
|
|
176
|
-
method: "post",
|
|
177
|
-
...variables,
|
|
178
|
-
signal
|
|
179
|
-
});
|
|
180
|
-
const getAddressTokensResource = (variables, signal) => fetch$1({ url: "/address/{addressId}/token", method: "get", ...variables, signal });
|
|
181
|
-
const getAddressUnitsResource = (variables, signal) => fetch$1({ url: "/address/{addressId}/unit", method: "get", ...variables, signal });
|
|
182
|
-
const putAddressUnitsResource = (variables, signal) => fetch$1({ url: "/address/{addressId}/unit", method: "put", ...variables, signal });
|
|
183
|
-
const deleteAddressUnitsResource = (variables, signal) => fetch$1({
|
|
184
|
-
url: "/address/{addressId}/unit",
|
|
185
|
-
method: "delete",
|
|
186
|
-
...variables,
|
|
187
|
-
signal
|
|
188
|
-
});
|
|
189
|
-
const deleteAddressUnitResource = (variables, signal) => fetch$1({
|
|
190
|
-
url: "/address/{addressId}/unit/{id}",
|
|
191
|
-
method: "delete",
|
|
192
|
-
...variables,
|
|
193
|
-
signal
|
|
194
|
-
});
|
|
195
|
-
const getDecentralWebhooksResource = (variables, signal) => fetch$1({ url: "/api/decentralWebhook", method: "get", ...variables, signal });
|
|
196
|
-
const putDecentralWebhooksResource = (variables, signal) => fetch$1({ url: "/api/decentralWebhook", method: "put", ...variables, signal });
|
|
197
|
-
const deleteDecentralWebhookResource = (variables, signal) => fetch$1({
|
|
198
|
-
url: "/api/decentralWebhook/{id}",
|
|
199
|
-
method: "delete",
|
|
200
|
-
...variables,
|
|
201
|
-
signal
|
|
202
|
-
});
|
|
203
|
-
const getApiKeysResource = (variables, signal) => fetch$1({ url: "/api/key", method: "get", ...variables, signal });
|
|
204
|
-
const putApiKeysResource = (variables, signal) => fetch$1({ url: "/api/key", method: "put", ...variables, signal });
|
|
205
|
-
const postApiKeyResource = (variables, signal) => fetch$1({ url: "/api/key/{apiKeyId}", method: "post", ...variables, signal });
|
|
206
|
-
const deleteApiKeyResource = (variables, signal) => fetch$1({ url: "/api/key/{apiKeyId}", method: "delete", ...variables, signal });
|
|
207
|
-
const getApiKeyAdvancedResource = (variables, signal) => fetch$1({
|
|
208
|
-
url: "/api/key/{apiKeyId}/advanced",
|
|
209
|
-
method: "get",
|
|
210
|
-
...variables,
|
|
211
|
-
signal
|
|
212
|
-
});
|
|
213
|
-
const postApiKeyAdvancedResource = (variables, signal) => fetch$1({
|
|
214
|
-
url: "/api/key/{apiKeyId}/advanced",
|
|
215
|
-
method: "post",
|
|
216
|
-
...variables,
|
|
217
|
-
signal
|
|
218
|
-
});
|
|
219
|
-
const putApiKeyAdvancedResource = (variables, signal) => fetch$1({
|
|
220
|
-
url: "/api/key/{apiKeyId}/advanced",
|
|
221
|
-
method: "put",
|
|
222
|
-
...variables,
|
|
223
|
-
signal
|
|
224
|
-
});
|
|
225
|
-
const deleteApiKeyAdvancedResource = (variables, signal) => fetch$1({
|
|
226
|
-
url: "/api/key/{apiKeyId}/advanced",
|
|
227
|
-
method: "delete",
|
|
228
|
-
...variables,
|
|
229
|
-
signal
|
|
230
|
-
});
|
|
231
|
-
const postApiKeyAdvancedReactivateResource = (variables, signal) => fetch$1({
|
|
232
|
-
url: "/api/key/{apiKeyId}/advanced/reactivate",
|
|
233
|
-
method: "post",
|
|
234
|
-
...variables,
|
|
235
|
-
signal
|
|
236
|
-
});
|
|
237
|
-
const getApiKeyTokensResource = (variables, signal) => fetch$1({ url: "/api/key/{apiKeyId}/token", method: "get", ...variables, signal });
|
|
238
|
-
const putApiKeyTokensResource = (variables, signal) => fetch$1({ url: "/api/key/{apiKeyId}/token", method: "put", ...variables, signal });
|
|
239
|
-
const postApiKeyTokenResource = (variables, signal) => fetch$1({
|
|
240
|
-
url: "/api/key/{apiKeyId}/token/{id}",
|
|
241
|
-
method: "post",
|
|
242
|
-
...variables,
|
|
243
|
-
signal
|
|
244
|
-
});
|
|
245
|
-
const deleteApiKeyTokenResource = (variables, signal) => fetch$1({
|
|
246
|
-
url: "/api/key/{apiKeyId}/token/{id}",
|
|
247
|
-
method: "delete",
|
|
248
|
-
...variables,
|
|
249
|
-
signal
|
|
250
|
-
});
|
|
251
|
-
const getWebhookLogsResource = (variables, signal) => fetch$1({
|
|
252
|
-
url: "/api/key/{apiKeyId}/webhook/logs",
|
|
253
|
-
method: "get",
|
|
254
|
-
...variables,
|
|
255
|
-
signal
|
|
256
|
-
});
|
|
257
|
-
const postSmartlockBulkWebConfigResource = (variables, signal) => fetch$1({ url: "/bulk-web-config", method: "post", ...variables, signal });
|
|
258
|
-
const getCompaniesResource = (variables, signal) => fetch$1({ url: "/company", method: "get", ...variables, signal });
|
|
259
|
-
const getNotificationsResource = (variables, signal) => fetch$1({ url: "/notification", method: "get", ...variables, signal });
|
|
260
|
-
const putNotificationsResource = (variables, signal) => fetch$1({ url: "/notification", method: "put", ...variables, signal });
|
|
261
|
-
const getNotificationResource = (variables, signal) => fetch$1({
|
|
262
|
-
url: "/notification/{notificationId}",
|
|
263
|
-
method: "get",
|
|
264
|
-
...variables,
|
|
265
|
-
signal
|
|
266
|
-
});
|
|
267
|
-
const postNotificationResource = (variables, signal) => fetch$1({
|
|
268
|
-
url: "/notification/{notificationId}",
|
|
269
|
-
method: "post",
|
|
270
|
-
...variables,
|
|
271
|
-
signal
|
|
272
|
-
});
|
|
273
|
-
const deleteNotificationResource = (variables, signal) => fetch$1({
|
|
274
|
-
url: "/notification/{notificationId}",
|
|
275
|
-
method: "delete",
|
|
276
|
-
...variables,
|
|
277
|
-
signal
|
|
278
|
-
});
|
|
279
|
-
const getOpenerBrandsResource = (variables, signal) => fetch$1({ url: "/opener/brand", method: "get", ...variables, signal });
|
|
280
|
-
const getOpenerBrandResource = (variables, signal) => fetch$1({ url: "/opener/brand/{brandId}", method: "get", ...variables, signal });
|
|
281
|
-
const getOpenerIntercomsResource = (variables, signal) => fetch$1({ url: "/opener/intercom", method: "get", ...variables, signal });
|
|
282
|
-
const getOpenerIntercomResource = (variables, signal) => fetch$1({
|
|
283
|
-
url: "/opener/intercom/{intercomId}",
|
|
284
|
-
method: "get",
|
|
285
|
-
...variables,
|
|
286
|
-
signal
|
|
287
|
-
});
|
|
288
|
-
const getServicesResource = (variables, signal) => fetch$1({ url: "/service", method: "get", ...variables, signal });
|
|
289
|
-
const getServiceResource = (variables, signal) => fetch$1({ url: "/service/{serviceId}", method: "get", ...variables, signal });
|
|
290
|
-
const postServiceLinkResource = (variables, signal) => fetch$1({ url: "/service/{serviceId}/link", method: "post", ...variables, signal });
|
|
291
|
-
const postServiceSyncResource = (variables, signal) => fetch$1({ url: "/service/{serviceId}/sync", method: "post", ...variables, signal });
|
|
292
|
-
const postServiceUnlinkResource = (variables, signal) => fetch$1({
|
|
293
|
-
url: "/service/{serviceId}/unlink",
|
|
294
|
-
method: "post",
|
|
295
|
-
...variables,
|
|
296
|
-
signal
|
|
297
|
-
});
|
|
298
|
-
const getSmartlocksResource = (variables, signal) => fetch$1({ url: "/smartlock", method: "get", ...variables, signal });
|
|
299
|
-
const getSmartlocksAuthsResource = (variables, signal) => fetch$1({ url: "/smartlock/auth", method: "get", ...variables, signal });
|
|
300
|
-
const postSmartlocksAuthsResource = (variables, signal) => fetch$1({ url: "/smartlock/auth", method: "post", ...variables, signal });
|
|
301
|
-
const putSmartlocksAuthsResource = (variables, signal) => fetch$1({ url: "/smartlock/auth", method: "put", ...variables, signal });
|
|
302
|
-
const deleteSmartlocksAuthsResource = (variables, signal) => fetch$1({ url: "/smartlock/auth", method: "delete", ...variables, signal });
|
|
303
|
-
const putSmartlockAuthsAdvancedResource = (variables, signal) => fetch$1({ url: "/smartlock/auth/advanced", method: "put", ...variables, signal });
|
|
304
|
-
const getSmartlocksAuthsPaginatedResource = (variables, signal) => fetch$1({ url: "/smartlock/auth/paged", method: "get", ...variables, signal });
|
|
305
|
-
const getSmartlocksLogsResource = (variables, signal) => fetch$1({ url: "/smartlock/log", method: "get", ...variables, signal });
|
|
306
|
-
const getSmartlockResource = (variables, signal) => fetch$1({ url: "/smartlock/{smartlockId}", method: "get", ...variables, signal });
|
|
307
|
-
const postSmartlockResource = (variables, signal) => fetch$1({ url: "/smartlock/{smartlockId}", method: "post", ...variables, signal });
|
|
308
|
-
const deleteSmartlockResource = (variables, signal) => fetch$1({
|
|
309
|
-
url: "/smartlock/{smartlockId}",
|
|
310
|
-
method: "delete",
|
|
311
|
-
...variables,
|
|
312
|
-
signal
|
|
313
|
-
});
|
|
314
|
-
const postSmartlockActionResource = (variables, signal) => fetch$1({
|
|
315
|
-
url: "/smartlock/{smartlockId}/action",
|
|
316
|
-
method: "post",
|
|
317
|
-
...variables,
|
|
318
|
-
signal
|
|
319
|
-
});
|
|
320
|
-
const postSmartlockActionAdvancedResource = (variables, signal) => fetch$1({
|
|
321
|
-
url: "/smartlock/{smartlockId}/action/advanced",
|
|
322
|
-
method: "post",
|
|
323
|
-
...variables,
|
|
324
|
-
signal
|
|
325
|
-
});
|
|
326
|
-
const postSmartlockLockActionResource = (variables, signal) => fetch$1({
|
|
327
|
-
url: "/smartlock/{smartlockId}/action/lock",
|
|
328
|
-
method: "post",
|
|
329
|
-
...variables,
|
|
330
|
-
signal
|
|
331
|
-
});
|
|
332
|
-
const postSmartlockLockActionAdvancedResource = (variables, signal) => fetch$1({
|
|
333
|
-
url: "/smartlock/{smartlockId}/action/lock/advanced",
|
|
334
|
-
method: "post",
|
|
335
|
-
...variables,
|
|
336
|
-
signal
|
|
337
|
-
});
|
|
338
|
-
const postSmartlockUnlockActionResource = (variables, signal) => fetch$1({
|
|
339
|
-
url: "/smartlock/{smartlockId}/action/unlock",
|
|
340
|
-
method: "post",
|
|
341
|
-
...variables,
|
|
342
|
-
signal
|
|
343
|
-
});
|
|
344
|
-
const postSmartlockUnlockActionAdvancedResource = (variables, signal) => fetch$1({
|
|
345
|
-
url: "/smartlock/{smartlockId}/action/unlock/advanced",
|
|
346
|
-
method: "post",
|
|
347
|
-
...variables,
|
|
348
|
-
signal
|
|
349
|
-
});
|
|
350
|
-
const postSmartlockAdminPinResource = (variables, signal) => fetch$1({
|
|
351
|
-
url: "/smartlock/{smartlockId}/admin/pin",
|
|
352
|
-
method: "post",
|
|
353
|
-
...variables,
|
|
354
|
-
signal
|
|
355
|
-
});
|
|
356
|
-
const postSmartlockAdvancedConfigResource = (variables, signal) => fetch$1({
|
|
357
|
-
url: "/smartlock/{smartlockId}/advanced/config",
|
|
358
|
-
method: "post",
|
|
359
|
-
...variables,
|
|
360
|
-
signal
|
|
361
|
-
});
|
|
362
|
-
const postSmartlockOpenerAdvancedConfigResource = (variables, signal) => fetch$1({
|
|
363
|
-
url: "/smartlock/{smartlockId}/advanced/openerconfig",
|
|
364
|
-
method: "post",
|
|
365
|
-
...variables,
|
|
366
|
-
signal
|
|
367
|
-
});
|
|
368
|
-
const postSmartdoorAdvancedConfigResource = (variables, signal) => fetch$1({
|
|
369
|
-
url: "/smartlock/{smartlockId}/advanced/smartdoorconfig",
|
|
370
|
-
method: "post",
|
|
371
|
-
...variables,
|
|
372
|
-
signal
|
|
373
|
-
});
|
|
374
|
-
const getSmartlockAuthsResource = (variables, signal) => fetch$1({
|
|
375
|
-
url: "/smartlock/{smartlockId}/auth",
|
|
376
|
-
method: "get",
|
|
377
|
-
...variables,
|
|
378
|
-
signal
|
|
379
|
-
});
|
|
380
|
-
const putSmartlockAuthsResource = (variables, signal) => fetch$1({
|
|
381
|
-
url: "/smartlock/{smartlockId}/auth",
|
|
382
|
-
method: "put",
|
|
383
|
-
...variables,
|
|
384
|
-
signal
|
|
385
|
-
});
|
|
386
|
-
const postSmartlockAuthWithSharedKeyResource = (variables, signal) => fetch$1({
|
|
387
|
-
url: "/smartlock/{smartlockId}/auth/advanced/sharedkey",
|
|
388
|
-
method: "post",
|
|
389
|
-
...variables,
|
|
390
|
-
signal
|
|
391
|
-
});
|
|
392
|
-
const getSmartlockAuthResource = (variables, signal) => fetch$1({
|
|
393
|
-
url: "/smartlock/{smartlockId}/auth/{id}",
|
|
394
|
-
method: "get",
|
|
395
|
-
...variables,
|
|
396
|
-
signal
|
|
397
|
-
});
|
|
398
|
-
const postSmartlockAuthResource = (variables, signal) => fetch$1({
|
|
399
|
-
url: "/smartlock/{smartlockId}/auth/{id}",
|
|
400
|
-
method: "post",
|
|
401
|
-
...variables,
|
|
402
|
-
signal
|
|
403
|
-
});
|
|
404
|
-
const deleteSmartlockAuthResource = (variables, signal) => fetch$1({
|
|
405
|
-
url: "/smartlock/{smartlockId}/auth/{id}",
|
|
406
|
-
method: "delete",
|
|
407
|
-
...variables,
|
|
408
|
-
signal
|
|
409
|
-
});
|
|
410
|
-
const postSmartlockConfigResource = (variables, signal) => fetch$1({
|
|
411
|
-
url: "/smartlock/{smartlockId}/config",
|
|
412
|
-
method: "post",
|
|
413
|
-
...variables,
|
|
414
|
-
signal
|
|
415
|
-
});
|
|
416
|
-
const getSmartlockLogsResource = (variables, signal) => fetch$1({
|
|
417
|
-
url: "/smartlock/{smartlockId}/log",
|
|
418
|
-
method: "get",
|
|
419
|
-
...variables,
|
|
420
|
-
signal
|
|
421
|
-
});
|
|
422
|
-
const postSmartlockSyncResource = (variables, signal) => fetch$1({
|
|
423
|
-
url: "/smartlock/{smartlockId}/sync",
|
|
424
|
-
method: "post",
|
|
425
|
-
...variables,
|
|
426
|
-
signal
|
|
427
|
-
});
|
|
428
|
-
const postSmartlockWebConfigResource = (variables, signal) => fetch$1({
|
|
429
|
-
url: "/smartlock/{smartlockId}/web/config",
|
|
430
|
-
method: "post",
|
|
431
|
-
...variables,
|
|
432
|
-
signal
|
|
433
|
-
});
|
|
434
|
-
const operationsByTag = {
|
|
435
|
-
account: {
|
|
436
|
-
getAccountsResource,
|
|
437
|
-
postAccountsResource,
|
|
438
|
-
deleteAccountsResource,
|
|
439
|
-
postAccountEmailChangeResource,
|
|
440
|
-
postAccountEmailVerifyResource,
|
|
441
|
-
getAccountIntegrationsResource,
|
|
442
|
-
deleteAccountIntegrationsResource,
|
|
443
|
-
postAccountOtpResource,
|
|
444
|
-
putAccountOtpResource,
|
|
445
|
-
deleteAccountOtpResource,
|
|
446
|
-
postAccountPasswordResetResource,
|
|
447
|
-
getAccountSettingResource,
|
|
448
|
-
putAccountSettingResource,
|
|
449
|
-
deleteAccountSettingResource,
|
|
450
|
-
getAccountSubsResource,
|
|
451
|
-
putAccountSubsResource,
|
|
452
|
-
getAccountSubResource,
|
|
453
|
-
postAccountSubResource,
|
|
454
|
-
deleteAccountSubResource
|
|
455
|
-
},
|
|
456
|
-
accountUser: {
|
|
457
|
-
getAccountUsersResource,
|
|
458
|
-
putAccountUsersResource,
|
|
459
|
-
getAccountUserResource,
|
|
460
|
-
postAccountUserResource,
|
|
461
|
-
deleteAccountUserResource
|
|
462
|
-
},
|
|
463
|
-
address: {
|
|
464
|
-
getAddressesResource,
|
|
465
|
-
putAddressesResource,
|
|
466
|
-
postAddressResource,
|
|
467
|
-
deleteAddressResource,
|
|
468
|
-
getAddressUnitsResource,
|
|
469
|
-
putAddressUnitsResource,
|
|
470
|
-
deleteAddressUnitsResource,
|
|
471
|
-
deleteAddressUnitResource
|
|
472
|
-
},
|
|
473
|
-
addressToken: {
|
|
474
|
-
getAddressTokenResource,
|
|
475
|
-
getAddressTokenRedeemResource,
|
|
476
|
-
postAddressTokenRedeemResource,
|
|
477
|
-
getAddressTokensResource
|
|
478
|
-
},
|
|
479
|
-
addressReservation: {
|
|
480
|
-
getAddressReservationsResource,
|
|
481
|
-
postAddressReservationIssueResource,
|
|
482
|
-
postAddressReservationRevokeResource,
|
|
483
|
-
postReservationAccessTimesUpdateResource
|
|
484
|
-
},
|
|
485
|
-
advancedApi: {
|
|
486
|
-
getDecentralWebhooksResource,
|
|
487
|
-
putDecentralWebhooksResource,
|
|
488
|
-
deleteDecentralWebhookResource,
|
|
489
|
-
getWebhookLogsResource,
|
|
490
|
-
putSmartlockAuthsAdvancedResource,
|
|
491
|
-
postSmartlockActionAdvancedResource,
|
|
492
|
-
postSmartlockLockActionAdvancedResource,
|
|
493
|
-
postSmartlockUnlockActionAdvancedResource
|
|
494
|
-
},
|
|
495
|
-
apiKey: {
|
|
496
|
-
getApiKeysResource,
|
|
497
|
-
putApiKeysResource,
|
|
498
|
-
postApiKeyResource,
|
|
499
|
-
deleteApiKeyResource,
|
|
500
|
-
getApiKeyAdvancedResource,
|
|
501
|
-
postApiKeyAdvancedResource,
|
|
502
|
-
putApiKeyAdvancedResource,
|
|
503
|
-
deleteApiKeyAdvancedResource,
|
|
504
|
-
postApiKeyAdvancedReactivateResource,
|
|
505
|
-
getApiKeyTokensResource,
|
|
506
|
-
putApiKeyTokensResource,
|
|
507
|
-
postApiKeyTokenResource,
|
|
508
|
-
deleteApiKeyTokenResource
|
|
509
|
-
},
|
|
510
|
-
smartlock: {
|
|
511
|
-
postSmartlockBulkWebConfigResource,
|
|
512
|
-
getSmartlocksResource,
|
|
513
|
-
getSmartlockResource,
|
|
514
|
-
postSmartlockResource,
|
|
515
|
-
deleteSmartlockResource,
|
|
516
|
-
postSmartlockActionResource,
|
|
517
|
-
postSmartlockLockActionResource,
|
|
518
|
-
postSmartlockUnlockActionResource,
|
|
519
|
-
postSmartlockAdminPinResource,
|
|
520
|
-
postSmartlockAdvancedConfigResource,
|
|
521
|
-
postSmartlockOpenerAdvancedConfigResource,
|
|
522
|
-
postSmartdoorAdvancedConfigResource,
|
|
523
|
-
postSmartlockConfigResource,
|
|
524
|
-
postSmartlockSyncResource,
|
|
525
|
-
postSmartlockWebConfigResource
|
|
526
|
-
},
|
|
527
|
-
company: { getCompaniesResource },
|
|
528
|
-
notification: {
|
|
529
|
-
getNotificationsResource,
|
|
530
|
-
putNotificationsResource,
|
|
531
|
-
getNotificationResource,
|
|
532
|
-
postNotificationResource,
|
|
533
|
-
deleteNotificationResource
|
|
534
|
-
},
|
|
535
|
-
opener: {
|
|
536
|
-
getOpenerBrandsResource,
|
|
537
|
-
getOpenerBrandResource,
|
|
538
|
-
getOpenerIntercomsResource,
|
|
539
|
-
getOpenerIntercomResource
|
|
540
|
-
},
|
|
541
|
-
service: {
|
|
542
|
-
getServicesResource,
|
|
543
|
-
getServiceResource,
|
|
544
|
-
postServiceLinkResource,
|
|
545
|
-
postServiceSyncResource,
|
|
546
|
-
postServiceUnlinkResource
|
|
547
|
-
},
|
|
548
|
-
smartlockAuth: {
|
|
549
|
-
getSmartlocksAuthsResource,
|
|
550
|
-
postSmartlocksAuthsResource,
|
|
551
|
-
putSmartlocksAuthsResource,
|
|
552
|
-
deleteSmartlocksAuthsResource,
|
|
553
|
-
getSmartlocksAuthsPaginatedResource,
|
|
554
|
-
getSmartlockAuthsResource,
|
|
555
|
-
putSmartlockAuthsResource,
|
|
556
|
-
postSmartlockAuthWithSharedKeyResource,
|
|
557
|
-
getSmartlockAuthResource,
|
|
558
|
-
postSmartlockAuthResource,
|
|
559
|
-
deleteSmartlockAuthResource
|
|
560
|
-
},
|
|
561
|
-
smartlockLog: { getSmartlocksLogsResource, getSmartlockLogsResource }
|
|
562
|
-
};
|
|
3
|
+
var components = require('./components-iddduu87.cjs');
|
|
4
|
+
var schemas = require('./schemas-hyottnja.cjs');
|
|
5
|
+
var types = require('./types.cjs');
|
|
563
6
|
|
|
564
7
|
class NukiApi {
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
}
|
|
582
|
-
return new Proxy(
|
|
583
|
-
{},
|
|
584
|
-
{
|
|
585
|
-
get: (_target2, operation) => {
|
|
586
|
-
if (operationsByTag[namespace][operation] === void 0) {
|
|
587
|
-
return void 0;
|
|
8
|
+
#token;
|
|
9
|
+
#fetch;
|
|
10
|
+
constructor(options){
|
|
11
|
+
this.#token = options.token;
|
|
12
|
+
this.#fetch = options.fetch || fetch;
|
|
13
|
+
if (!this.#fetch) throw new Error("Fetch is required");
|
|
14
|
+
}
|
|
15
|
+
get api() {
|
|
16
|
+
const getConfig = async ()=>({
|
|
17
|
+
token: this.#token,
|
|
18
|
+
fetchImpl: this.#fetch
|
|
19
|
+
});
|
|
20
|
+
return new Proxy({}, {
|
|
21
|
+
get: (_target, namespace)=>{
|
|
22
|
+
if (components.operationsByTag[namespace] === undefined) {
|
|
23
|
+
return undefined;
|
|
588
24
|
}
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
25
|
+
return new Proxy({}, {
|
|
26
|
+
get: (_target, operation)=>{
|
|
27
|
+
if (components.operationsByTag[namespace][operation] === undefined) {
|
|
28
|
+
return undefined;
|
|
29
|
+
}
|
|
30
|
+
const method = components.operationsByTag[namespace][operation];
|
|
31
|
+
return async (params)=>{
|
|
32
|
+
return await method({
|
|
33
|
+
...params,
|
|
34
|
+
config: await getConfig()
|
|
35
|
+
});
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
});
|
|
594
39
|
}
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
async request(endpoint, params) {
|
|
43
|
+
const [method = "", url = ""] = endpoint.split(" ");
|
|
44
|
+
const extraParams = params || {};
|
|
45
|
+
const result = await components.client({
|
|
46
|
+
...extraParams,
|
|
47
|
+
method,
|
|
48
|
+
url,
|
|
49
|
+
token: this.#token,
|
|
50
|
+
fetchImpl: this.#fetch
|
|
51
|
+
});
|
|
52
|
+
return result;
|
|
53
|
+
}
|
|
606
54
|
}
|
|
607
55
|
|
|
56
|
+
exports.operationsByPath = components.operationsByPath;
|
|
57
|
+
exports.operationsByTag = components.operationsByTag;
|
|
58
|
+
exports.tagDictionary = components.tagDictionary;
|
|
59
|
+
exports.accountConfigSchema = schemas.accountConfigSchema;
|
|
60
|
+
exports.accountDescentSchema = schemas.accountDescentSchema;
|
|
61
|
+
exports.accountEmailChangeSchema = schemas.accountEmailChangeSchema;
|
|
62
|
+
exports.accountIntegrationSchema = schemas.accountIntegrationSchema;
|
|
63
|
+
exports.accountOtpEnableSchema = schemas.accountOtpEnableSchema;
|
|
64
|
+
exports.accountPasswordResetSchema = schemas.accountPasswordResetSchema;
|
|
65
|
+
exports.accountProfileSchema = schemas.accountProfileSchema;
|
|
66
|
+
exports.accountSchema = schemas.accountSchema;
|
|
67
|
+
exports.accountSettingSchema = schemas.accountSettingSchema;
|
|
68
|
+
exports.accountSettingWebSchema = schemas.accountSettingWebSchema;
|
|
69
|
+
exports.accountSubCreateSchema = schemas.accountSubCreateSchema;
|
|
70
|
+
exports.accountSubUpdateSchema = schemas.accountSubUpdateSchema;
|
|
71
|
+
exports.accountUpdateSchema = schemas.accountUpdateSchema;
|
|
72
|
+
exports.accountUserCreateSchema = schemas.accountUserCreateSchema;
|
|
73
|
+
exports.accountUserSchema = schemas.accountUserSchema;
|
|
74
|
+
exports.accountUserUpdateSchema = schemas.accountUserUpdateSchema;
|
|
75
|
+
exports.addressCreateSchema = schemas.addressCreateSchema;
|
|
76
|
+
exports.addressReservationSchema = schemas.addressReservationSchema;
|
|
77
|
+
exports.addressSchema = schemas.addressSchema;
|
|
78
|
+
exports.addressTokenInfoSchema = schemas.addressTokenInfoSchema;
|
|
79
|
+
exports.addressTokenSchema = schemas.addressTokenSchema;
|
|
80
|
+
exports.addressUnitResponseSchema = schemas.addressUnitResponseSchema;
|
|
81
|
+
exports.addressUnitSchema = schemas.addressUnitSchema;
|
|
82
|
+
exports.addressUpdateSchema = schemas.addressUpdateSchema;
|
|
83
|
+
exports.advancedApiKeyCreateSchema = schemas.advancedApiKeyCreateSchema;
|
|
84
|
+
exports.advancedApiKeySchema = schemas.advancedApiKeySchema;
|
|
85
|
+
exports.advancedApiKeyUpdateSchema = schemas.advancedApiKeyUpdateSchema;
|
|
86
|
+
exports.advancedConfirmationResponseSchema = schemas.advancedConfirmationResponseSchema;
|
|
87
|
+
exports.apiKeyAdvancedSchema = schemas.apiKeyAdvancedSchema;
|
|
88
|
+
exports.apiKeyCreateSchema = schemas.apiKeyCreateSchema;
|
|
89
|
+
exports.apiKeySchema = schemas.apiKeySchema;
|
|
90
|
+
exports.apiKeyServiceSchema = schemas.apiKeyServiceSchema;
|
|
91
|
+
exports.apiKeyTokenCreateSchema = schemas.apiKeyTokenCreateSchema;
|
|
92
|
+
exports.apiKeyTokenSchema = schemas.apiKeyTokenSchema;
|
|
93
|
+
exports.apiKeyTokenUpdateSchema = schemas.apiKeyTokenUpdateSchema;
|
|
94
|
+
exports.apiKeyUpdateSchema = schemas.apiKeyUpdateSchema;
|
|
95
|
+
exports.applicationSchema = schemas.applicationSchema;
|
|
96
|
+
exports.authenticationInfoSchema = schemas.authenticationInfoSchema;
|
|
97
|
+
exports.bulkWebConfigRequestSchema = schemas.bulkWebConfigRequestSchema;
|
|
98
|
+
exports.cacheDirectiveSchema = schemas.cacheDirectiveSchema;
|
|
99
|
+
exports.certificateSchema = schemas.certificateSchema;
|
|
100
|
+
exports.challengeRequestSchema = schemas.challengeRequestSchema;
|
|
101
|
+
exports.challengeResponseSchema = schemas.challengeResponseSchema;
|
|
102
|
+
exports.challengeSchemeSchema = schemas.challengeSchemeSchema;
|
|
103
|
+
exports.characterSetSchema = schemas.characterSetSchema;
|
|
104
|
+
exports.clientInfoSchema = schemas.clientInfoSchema;
|
|
105
|
+
exports.companySchema = schemas.companySchema;
|
|
106
|
+
exports.completableFutureListApiKeySchema = schemas.completableFutureListApiKeySchema;
|
|
107
|
+
exports.completableFutureSchema = schemas.completableFutureSchema;
|
|
108
|
+
exports.conditionsSchema = schemas.conditionsSchema;
|
|
109
|
+
exports.connectorServiceSchema = schemas.connectorServiceSchema;
|
|
110
|
+
exports.connegServiceSchema = schemas.connegServiceSchema;
|
|
111
|
+
exports.contextSchema = schemas.contextSchema;
|
|
112
|
+
exports.converterServiceSchema = schemas.converterServiceSchema;
|
|
113
|
+
exports.cookieSchema = schemas.cookieSchema;
|
|
114
|
+
exports.cookieSettingSchema = schemas.cookieSettingSchema;
|
|
115
|
+
exports.decentralWebhookSchema = schemas.decentralWebhookSchema;
|
|
116
|
+
exports.decoderServiceSchema = schemas.decoderServiceSchema;
|
|
117
|
+
exports.deleteAccountIntegrationsResourceErrorSchema = schemas.deleteAccountIntegrationsResourceErrorSchema;
|
|
118
|
+
exports.deleteAccountIntegrationsResourceQueryApiKeyIdSchema = schemas.deleteAccountIntegrationsResourceQueryApiKeyIdSchema;
|
|
119
|
+
exports.deleteAccountIntegrationsResourceQueryTokenIdSchema = schemas.deleteAccountIntegrationsResourceQueryTokenIdSchema;
|
|
120
|
+
exports.deleteAccountIntegrationsResourceResponseSchema = schemas.deleteAccountIntegrationsResourceResponseSchema;
|
|
121
|
+
exports.deleteAccountIntegrationsResourceStatus204Schema = schemas.deleteAccountIntegrationsResourceStatus204Schema;
|
|
122
|
+
exports.deleteAccountIntegrationsResourceStatus401Schema = schemas.deleteAccountIntegrationsResourceStatus401Schema;
|
|
123
|
+
exports.deleteAccountOtpResourceErrorSchema = schemas.deleteAccountOtpResourceErrorSchema;
|
|
124
|
+
exports.deleteAccountOtpResourceResponseSchema = schemas.deleteAccountOtpResourceResponseSchema;
|
|
125
|
+
exports.deleteAccountOtpResourceStatus204Schema = schemas.deleteAccountOtpResourceStatus204Schema;
|
|
126
|
+
exports.deleteAccountOtpResourceStatus401Schema = schemas.deleteAccountOtpResourceStatus401Schema;
|
|
127
|
+
exports.deleteAccountSettingResourceErrorSchema = schemas.deleteAccountSettingResourceErrorSchema;
|
|
128
|
+
exports.deleteAccountSettingResourceResponseSchema = schemas.deleteAccountSettingResourceResponseSchema;
|
|
129
|
+
exports.deleteAccountSettingResourceStatus204Schema = schemas.deleteAccountSettingResourceStatus204Schema;
|
|
130
|
+
exports.deleteAccountSettingResourceStatus401Schema = schemas.deleteAccountSettingResourceStatus401Schema;
|
|
131
|
+
exports.deleteAccountSettingResourceStatus403Schema = schemas.deleteAccountSettingResourceStatus403Schema;
|
|
132
|
+
exports.deleteAccountSubResourceErrorSchema = schemas.deleteAccountSubResourceErrorSchema;
|
|
133
|
+
exports.deleteAccountSubResourcePathAccountIdSchema = schemas.deleteAccountSubResourcePathAccountIdSchema;
|
|
134
|
+
exports.deleteAccountSubResourceResponseSchema = schemas.deleteAccountSubResourceResponseSchema;
|
|
135
|
+
exports.deleteAccountSubResourceStatus204Schema = schemas.deleteAccountSubResourceStatus204Schema;
|
|
136
|
+
exports.deleteAccountSubResourceStatus401Schema = schemas.deleteAccountSubResourceStatus401Schema;
|
|
137
|
+
exports.deleteAccountUserResourceErrorSchema = schemas.deleteAccountUserResourceErrorSchema;
|
|
138
|
+
exports.deleteAccountUserResourcePathAccountUserIdSchema = schemas.deleteAccountUserResourcePathAccountUserIdSchema;
|
|
139
|
+
exports.deleteAccountUserResourceResponseSchema = schemas.deleteAccountUserResourceResponseSchema;
|
|
140
|
+
exports.deleteAccountUserResourceStatus204Schema = schemas.deleteAccountUserResourceStatus204Schema;
|
|
141
|
+
exports.deleteAccountUserResourceStatus401Schema = schemas.deleteAccountUserResourceStatus401Schema;
|
|
142
|
+
exports.deleteAccountUserResourceStatus423Schema = schemas.deleteAccountUserResourceStatus423Schema;
|
|
143
|
+
exports.deleteAccountsResourceErrorSchema = schemas.deleteAccountsResourceErrorSchema;
|
|
144
|
+
exports.deleteAccountsResourceResponseSchema = schemas.deleteAccountsResourceResponseSchema;
|
|
145
|
+
exports.deleteAccountsResourceStatus204Schema = schemas.deleteAccountsResourceStatus204Schema;
|
|
146
|
+
exports.deleteAccountsResourceStatus401Schema = schemas.deleteAccountsResourceStatus401Schema;
|
|
147
|
+
exports.deleteAddressResourceErrorSchema = schemas.deleteAddressResourceErrorSchema;
|
|
148
|
+
exports.deleteAddressResourcePathAddressIdSchema = schemas.deleteAddressResourcePathAddressIdSchema;
|
|
149
|
+
exports.deleteAddressResourceResponseSchema = schemas.deleteAddressResourceResponseSchema;
|
|
150
|
+
exports.deleteAddressResourceStatus204Schema = schemas.deleteAddressResourceStatus204Schema;
|
|
151
|
+
exports.deleteAddressResourceStatus401Schema = schemas.deleteAddressResourceStatus401Schema;
|
|
152
|
+
exports.deleteAddressResourceStatus403Schema = schemas.deleteAddressResourceStatus403Schema;
|
|
153
|
+
exports.deleteAddressUnitResourceErrorSchema = schemas.deleteAddressUnitResourceErrorSchema;
|
|
154
|
+
exports.deleteAddressUnitResourcePathAddressIdSchema = schemas.deleteAddressUnitResourcePathAddressIdSchema;
|
|
155
|
+
exports.deleteAddressUnitResourcePathIdSchema = schemas.deleteAddressUnitResourcePathIdSchema;
|
|
156
|
+
exports.deleteAddressUnitResourceResponseSchema = schemas.deleteAddressUnitResourceResponseSchema;
|
|
157
|
+
exports.deleteAddressUnitResourceStatus200Schema = schemas.deleteAddressUnitResourceStatus200Schema;
|
|
158
|
+
exports.deleteAddressUnitResourceStatus401Schema = schemas.deleteAddressUnitResourceStatus401Schema;
|
|
159
|
+
exports.deleteAddressUnitResourceStatus403Schema = schemas.deleteAddressUnitResourceStatus403Schema;
|
|
160
|
+
exports.deleteAddressUnitResourceStatus423Schema = schemas.deleteAddressUnitResourceStatus423Schema;
|
|
161
|
+
exports.deleteAddressUnitsResourceBodySchema = schemas.deleteAddressUnitsResourceBodySchema;
|
|
162
|
+
exports.deleteAddressUnitsResourceErrorSchema = schemas.deleteAddressUnitsResourceErrorSchema;
|
|
163
|
+
exports.deleteAddressUnitsResourcePathAddressIdSchema = schemas.deleteAddressUnitsResourcePathAddressIdSchema;
|
|
164
|
+
exports.deleteAddressUnitsResourceResponseSchema = schemas.deleteAddressUnitsResourceResponseSchema;
|
|
165
|
+
exports.deleteAddressUnitsResourceStatus200Schema = schemas.deleteAddressUnitsResourceStatus200Schema;
|
|
166
|
+
exports.deleteAddressUnitsResourceStatus400Schema = schemas.deleteAddressUnitsResourceStatus400Schema;
|
|
167
|
+
exports.deleteAddressUnitsResourceStatus401Schema = schemas.deleteAddressUnitsResourceStatus401Schema;
|
|
168
|
+
exports.deleteAddressUnitsResourceStatus403Schema = schemas.deleteAddressUnitsResourceStatus403Schema;
|
|
169
|
+
exports.deleteAddressUnitsResourceStatus423Schema = schemas.deleteAddressUnitsResourceStatus423Schema;
|
|
170
|
+
exports.deleteApiKeyAdvancedResourceErrorSchema = schemas.deleteApiKeyAdvancedResourceErrorSchema;
|
|
171
|
+
exports.deleteApiKeyAdvancedResourcePathApiKeyIdSchema = schemas.deleteApiKeyAdvancedResourcePathApiKeyIdSchema;
|
|
172
|
+
exports.deleteApiKeyAdvancedResourceResponseSchema = schemas.deleteApiKeyAdvancedResourceResponseSchema;
|
|
173
|
+
exports.deleteApiKeyAdvancedResourceStatus204Schema = schemas.deleteApiKeyAdvancedResourceStatus204Schema;
|
|
174
|
+
exports.deleteApiKeyAdvancedResourceStatus401Schema = schemas.deleteApiKeyAdvancedResourceStatus401Schema;
|
|
175
|
+
exports.deleteApiKeyResourceErrorSchema = schemas.deleteApiKeyResourceErrorSchema;
|
|
176
|
+
exports.deleteApiKeyResourcePathApiKeyIdSchema = schemas.deleteApiKeyResourcePathApiKeyIdSchema;
|
|
177
|
+
exports.deleteApiKeyResourceResponseSchema = schemas.deleteApiKeyResourceResponseSchema;
|
|
178
|
+
exports.deleteApiKeyResourceStatus204Schema = schemas.deleteApiKeyResourceStatus204Schema;
|
|
179
|
+
exports.deleteApiKeyResourceStatus401Schema = schemas.deleteApiKeyResourceStatus401Schema;
|
|
180
|
+
exports.deleteApiKeyTokenResourceErrorSchema = schemas.deleteApiKeyTokenResourceErrorSchema;
|
|
181
|
+
exports.deleteApiKeyTokenResourcePathApiKeyIdSchema = schemas.deleteApiKeyTokenResourcePathApiKeyIdSchema;
|
|
182
|
+
exports.deleteApiKeyTokenResourcePathIdSchema = schemas.deleteApiKeyTokenResourcePathIdSchema;
|
|
183
|
+
exports.deleteApiKeyTokenResourceResponseSchema = schemas.deleteApiKeyTokenResourceResponseSchema;
|
|
184
|
+
exports.deleteApiKeyTokenResourceStatus204Schema = schemas.deleteApiKeyTokenResourceStatus204Schema;
|
|
185
|
+
exports.deleteApiKeyTokenResourceStatus401Schema = schemas.deleteApiKeyTokenResourceStatus401Schema;
|
|
186
|
+
exports.deleteDecentralWebhookResourceErrorSchema = schemas.deleteDecentralWebhookResourceErrorSchema;
|
|
187
|
+
exports.deleteDecentralWebhookResourcePathIdSchema = schemas.deleteDecentralWebhookResourcePathIdSchema;
|
|
188
|
+
exports.deleteDecentralWebhookResourceResponseSchema = schemas.deleteDecentralWebhookResourceResponseSchema;
|
|
189
|
+
exports.deleteDecentralWebhookResourceStatus204Schema = schemas.deleteDecentralWebhookResourceStatus204Schema;
|
|
190
|
+
exports.deleteDecentralWebhookResourceStatus401Schema = schemas.deleteDecentralWebhookResourceStatus401Schema;
|
|
191
|
+
exports.deleteDecentralWebhookResourceStatus403Schema = schemas.deleteDecentralWebhookResourceStatus403Schema;
|
|
192
|
+
exports.deleteNotificationResourceErrorSchema = schemas.deleteNotificationResourceErrorSchema;
|
|
193
|
+
exports.deleteNotificationResourcePathNotificationIdSchema = schemas.deleteNotificationResourcePathNotificationIdSchema;
|
|
194
|
+
exports.deleteNotificationResourceResponseSchema = schemas.deleteNotificationResourceResponseSchema;
|
|
195
|
+
exports.deleteNotificationResourceStatus204Schema = schemas.deleteNotificationResourceStatus204Schema;
|
|
196
|
+
exports.deleteNotificationResourceStatus401Schema = schemas.deleteNotificationResourceStatus401Schema;
|
|
197
|
+
exports.deleteNotificationResourceStatus403Schema = schemas.deleteNotificationResourceStatus403Schema;
|
|
198
|
+
exports.deleteNotificationResourceStatus405Schema = schemas.deleteNotificationResourceStatus405Schema;
|
|
199
|
+
exports.deleteSmartlockAuthResourceErrorSchema = schemas.deleteSmartlockAuthResourceErrorSchema;
|
|
200
|
+
exports.deleteSmartlockAuthResourcePathIdSchema = schemas.deleteSmartlockAuthResourcePathIdSchema;
|
|
201
|
+
exports.deleteSmartlockAuthResourcePathSmartlockIdSchema = schemas.deleteSmartlockAuthResourcePathSmartlockIdSchema;
|
|
202
|
+
exports.deleteSmartlockAuthResourceResponseSchema = schemas.deleteSmartlockAuthResourceResponseSchema;
|
|
203
|
+
exports.deleteSmartlockAuthResourceStatus204Schema = schemas.deleteSmartlockAuthResourceStatus204Schema;
|
|
204
|
+
exports.deleteSmartlockAuthResourceStatus401Schema = schemas.deleteSmartlockAuthResourceStatus401Schema;
|
|
205
|
+
exports.deleteSmartlockAuthResourceStatus403Schema = schemas.deleteSmartlockAuthResourceStatus403Schema;
|
|
206
|
+
exports.deleteSmartlockAuthResourceStatus423Schema = schemas.deleteSmartlockAuthResourceStatus423Schema;
|
|
207
|
+
exports.deleteSmartlockResourceErrorSchema = schemas.deleteSmartlockResourceErrorSchema;
|
|
208
|
+
exports.deleteSmartlockResourcePathSmartlockIdSchema = schemas.deleteSmartlockResourcePathSmartlockIdSchema;
|
|
209
|
+
exports.deleteSmartlockResourceResponseSchema = schemas.deleteSmartlockResourceResponseSchema;
|
|
210
|
+
exports.deleteSmartlockResourceStatus204Schema = schemas.deleteSmartlockResourceStatus204Schema;
|
|
211
|
+
exports.deleteSmartlockResourceStatus400Schema = schemas.deleteSmartlockResourceStatus400Schema;
|
|
212
|
+
exports.deleteSmartlockResourceStatus401Schema = schemas.deleteSmartlockResourceStatus401Schema;
|
|
213
|
+
exports.deleteSmartlockResourceStatus403Schema = schemas.deleteSmartlockResourceStatus403Schema;
|
|
214
|
+
exports.deleteSmartlocksAuthsResourceBodySchema = schemas.deleteSmartlocksAuthsResourceBodySchema;
|
|
215
|
+
exports.deleteSmartlocksAuthsResourceErrorSchema = schemas.deleteSmartlocksAuthsResourceErrorSchema;
|
|
216
|
+
exports.deleteSmartlocksAuthsResourceResponseSchema = schemas.deleteSmartlocksAuthsResourceResponseSchema;
|
|
217
|
+
exports.deleteSmartlocksAuthsResourceStatus204Schema = schemas.deleteSmartlocksAuthsResourceStatus204Schema;
|
|
218
|
+
exports.deleteSmartlocksAuthsResourceStatus400Schema = schemas.deleteSmartlocksAuthsResourceStatus400Schema;
|
|
219
|
+
exports.deleteSmartlocksAuthsResourceStatus401Schema = schemas.deleteSmartlocksAuthsResourceStatus401Schema;
|
|
220
|
+
exports.deleteSmartlocksAuthsResourceStatus403Schema = schemas.deleteSmartlocksAuthsResourceStatus403Schema;
|
|
221
|
+
exports.deleteSmartlocksAuthsResourceStatus423Schema = schemas.deleteSmartlocksAuthsResourceStatus423Schema;
|
|
222
|
+
exports.digestSchema = schemas.digestSchema;
|
|
223
|
+
exports.dispositionSchema = schemas.dispositionSchema;
|
|
224
|
+
exports.encoderServiceSchema = schemas.encoderServiceSchema;
|
|
225
|
+
exports.encodingSchema = schemas.encodingSchema;
|
|
226
|
+
exports.enrolerSchema = schemas.enrolerSchema;
|
|
227
|
+
exports.enumerationSchema = schemas.enumerationSchema;
|
|
228
|
+
exports.enumerationStringSchema = schemas.enumerationStringSchema;
|
|
229
|
+
exports.errorManagerSchema = schemas.errorManagerSchema;
|
|
230
|
+
exports.expectationSchema = schemas.expectationSchema;
|
|
231
|
+
exports.filterSchema = schemas.filterSchema;
|
|
232
|
+
exports.formatterSchema = schemas.formatterSchema;
|
|
233
|
+
exports.getAccountIntegrationsResourceErrorSchema = schemas.getAccountIntegrationsResourceErrorSchema;
|
|
234
|
+
exports.getAccountIntegrationsResourceResponseSchema = schemas.getAccountIntegrationsResourceResponseSchema;
|
|
235
|
+
exports.getAccountIntegrationsResourceStatus200Schema = schemas.getAccountIntegrationsResourceStatus200Schema;
|
|
236
|
+
exports.getAccountIntegrationsResourceStatus401Schema = schemas.getAccountIntegrationsResourceStatus401Schema;
|
|
237
|
+
exports.getAccountSettingResourceErrorSchema = schemas.getAccountSettingResourceErrorSchema;
|
|
238
|
+
exports.getAccountSettingResourceResponseSchema = schemas.getAccountSettingResourceResponseSchema;
|
|
239
|
+
exports.getAccountSettingResourceStatus200Schema = schemas.getAccountSettingResourceStatus200Schema;
|
|
240
|
+
exports.getAccountSettingResourceStatus401Schema = schemas.getAccountSettingResourceStatus401Schema;
|
|
241
|
+
exports.getAccountSettingResourceStatus403Schema = schemas.getAccountSettingResourceStatus403Schema;
|
|
242
|
+
exports.getAccountSettingResourceStatus404Schema = schemas.getAccountSettingResourceStatus404Schema;
|
|
243
|
+
exports.getAccountSubResourceErrorSchema = schemas.getAccountSubResourceErrorSchema;
|
|
244
|
+
exports.getAccountSubResourcePathAccountIdSchema = schemas.getAccountSubResourcePathAccountIdSchema;
|
|
245
|
+
exports.getAccountSubResourceResponseSchema = schemas.getAccountSubResourceResponseSchema;
|
|
246
|
+
exports.getAccountSubResourceStatus200Schema = schemas.getAccountSubResourceStatus200Schema;
|
|
247
|
+
exports.getAccountSubResourceStatus401Schema = schemas.getAccountSubResourceStatus401Schema;
|
|
248
|
+
exports.getAccountSubsResourceErrorSchema = schemas.getAccountSubsResourceErrorSchema;
|
|
249
|
+
exports.getAccountSubsResourceQueryEmailSchema = schemas.getAccountSubsResourceQueryEmailSchema;
|
|
250
|
+
exports.getAccountSubsResourceResponseSchema = schemas.getAccountSubsResourceResponseSchema;
|
|
251
|
+
exports.getAccountSubsResourceStatus200Schema = schemas.getAccountSubsResourceStatus200Schema;
|
|
252
|
+
exports.getAccountSubsResourceStatus401Schema = schemas.getAccountSubsResourceStatus401Schema;
|
|
253
|
+
exports.getAccountUserResourceErrorSchema = schemas.getAccountUserResourceErrorSchema;
|
|
254
|
+
exports.getAccountUserResourcePathAccountUserIdSchema = schemas.getAccountUserResourcePathAccountUserIdSchema;
|
|
255
|
+
exports.getAccountUserResourceResponseSchema = schemas.getAccountUserResourceResponseSchema;
|
|
256
|
+
exports.getAccountUserResourceStatus200Schema = schemas.getAccountUserResourceStatus200Schema;
|
|
257
|
+
exports.getAccountUserResourceStatus401Schema = schemas.getAccountUserResourceStatus401Schema;
|
|
258
|
+
exports.getAccountUsersResourceErrorSchema = schemas.getAccountUsersResourceErrorSchema;
|
|
259
|
+
exports.getAccountUsersResourceQueryEmailSchema = schemas.getAccountUsersResourceQueryEmailSchema;
|
|
260
|
+
exports.getAccountUsersResourceQueryLimitSchema = schemas.getAccountUsersResourceQueryLimitSchema;
|
|
261
|
+
exports.getAccountUsersResourceQueryOffsetSchema = schemas.getAccountUsersResourceQueryOffsetSchema;
|
|
262
|
+
exports.getAccountUsersResourceResponseSchema = schemas.getAccountUsersResourceResponseSchema;
|
|
263
|
+
exports.getAccountUsersResourceStatus200Schema = schemas.getAccountUsersResourceStatus200Schema;
|
|
264
|
+
exports.getAccountUsersResourceStatus401Schema = schemas.getAccountUsersResourceStatus401Schema;
|
|
265
|
+
exports.getAccountsResourceErrorSchema = schemas.getAccountsResourceErrorSchema;
|
|
266
|
+
exports.getAccountsResourceResponseSchema = schemas.getAccountsResourceResponseSchema;
|
|
267
|
+
exports.getAccountsResourceStatus200Schema = schemas.getAccountsResourceStatus200Schema;
|
|
268
|
+
exports.getAccountsResourceStatus401Schema = schemas.getAccountsResourceStatus401Schema;
|
|
269
|
+
exports.getAddressReservationsResourceErrorSchema = schemas.getAddressReservationsResourceErrorSchema;
|
|
270
|
+
exports.getAddressReservationsResourcePathAddressIdSchema = schemas.getAddressReservationsResourcePathAddressIdSchema;
|
|
271
|
+
exports.getAddressReservationsResourceResponseSchema = schemas.getAddressReservationsResourceResponseSchema;
|
|
272
|
+
exports.getAddressReservationsResourceStatus200Schema = schemas.getAddressReservationsResourceStatus200Schema;
|
|
273
|
+
exports.getAddressReservationsResourceStatus401Schema = schemas.getAddressReservationsResourceStatus401Schema;
|
|
274
|
+
exports.getAddressTokenRedeemResourceErrorSchema = schemas.getAddressTokenRedeemResourceErrorSchema;
|
|
275
|
+
exports.getAddressTokenRedeemResourcePathIdSchema = schemas.getAddressTokenRedeemResourcePathIdSchema;
|
|
276
|
+
exports.getAddressTokenRedeemResourceResponseSchema = schemas.getAddressTokenRedeemResourceResponseSchema;
|
|
277
|
+
exports.getAddressTokenRedeemResourceStatus200Schema = schemas.getAddressTokenRedeemResourceStatus200Schema;
|
|
278
|
+
exports.getAddressTokenRedeemResourceStatus401Schema = schemas.getAddressTokenRedeemResourceStatus401Schema;
|
|
279
|
+
exports.getAddressTokenRedeemResourceStatus404Schema = schemas.getAddressTokenRedeemResourceStatus404Schema;
|
|
280
|
+
exports.getAddressTokenResourceErrorSchema = schemas.getAddressTokenResourceErrorSchema;
|
|
281
|
+
exports.getAddressTokenResourcePathIdSchema = schemas.getAddressTokenResourcePathIdSchema;
|
|
282
|
+
exports.getAddressTokenResourceResponseSchema = schemas.getAddressTokenResourceResponseSchema;
|
|
283
|
+
exports.getAddressTokenResourceStatus200Schema = schemas.getAddressTokenResourceStatus200Schema;
|
|
284
|
+
exports.getAddressTokenResourceStatus401Schema = schemas.getAddressTokenResourceStatus401Schema;
|
|
285
|
+
exports.getAddressTokenResourceStatus404Schema = schemas.getAddressTokenResourceStatus404Schema;
|
|
286
|
+
exports.getAddressTokensResourceErrorSchema = schemas.getAddressTokensResourceErrorSchema;
|
|
287
|
+
exports.getAddressTokensResourcePathAddressIdSchema = schemas.getAddressTokensResourcePathAddressIdSchema;
|
|
288
|
+
exports.getAddressTokensResourceResponseSchema = schemas.getAddressTokensResourceResponseSchema;
|
|
289
|
+
exports.getAddressTokensResourceStatus200Schema = schemas.getAddressTokensResourceStatus200Schema;
|
|
290
|
+
exports.getAddressTokensResourceStatus400Schema = schemas.getAddressTokensResourceStatus400Schema;
|
|
291
|
+
exports.getAddressTokensResourceStatus401Schema = schemas.getAddressTokensResourceStatus401Schema;
|
|
292
|
+
exports.getAddressUnitsResourceErrorSchema = schemas.getAddressUnitsResourceErrorSchema;
|
|
293
|
+
exports.getAddressUnitsResourcePathAddressIdSchema = schemas.getAddressUnitsResourcePathAddressIdSchema;
|
|
294
|
+
exports.getAddressUnitsResourceResponseSchema = schemas.getAddressUnitsResourceResponseSchema;
|
|
295
|
+
exports.getAddressUnitsResourceStatus200Schema = schemas.getAddressUnitsResourceStatus200Schema;
|
|
296
|
+
exports.getAddressUnitsResourceStatus400Schema = schemas.getAddressUnitsResourceStatus400Schema;
|
|
297
|
+
exports.getAddressUnitsResourceStatus401Schema = schemas.getAddressUnitsResourceStatus401Schema;
|
|
298
|
+
exports.getAddressesResourceErrorSchema = schemas.getAddressesResourceErrorSchema;
|
|
299
|
+
exports.getAddressesResourceResponseSchema = schemas.getAddressesResourceResponseSchema;
|
|
300
|
+
exports.getAddressesResourceStatus200Schema = schemas.getAddressesResourceStatus200Schema;
|
|
301
|
+
exports.getAddressesResourceStatus401Schema = schemas.getAddressesResourceStatus401Schema;
|
|
302
|
+
exports.getApiKeyAdvancedResourceErrorSchema = schemas.getApiKeyAdvancedResourceErrorSchema;
|
|
303
|
+
exports.getApiKeyAdvancedResourcePathApiKeyIdSchema = schemas.getApiKeyAdvancedResourcePathApiKeyIdSchema;
|
|
304
|
+
exports.getApiKeyAdvancedResourceResponseSchema = schemas.getApiKeyAdvancedResourceResponseSchema;
|
|
305
|
+
exports.getApiKeyAdvancedResourceStatus200Schema = schemas.getApiKeyAdvancedResourceStatus200Schema;
|
|
306
|
+
exports.getApiKeyAdvancedResourceStatus401Schema = schemas.getApiKeyAdvancedResourceStatus401Schema;
|
|
307
|
+
exports.getApiKeyAdvancedResourceStatus403Schema = schemas.getApiKeyAdvancedResourceStatus403Schema;
|
|
308
|
+
exports.getApiKeyAdvancedResourceStatus404Schema = schemas.getApiKeyAdvancedResourceStatus404Schema;
|
|
309
|
+
exports.getApiKeyTokensResourceErrorSchema = schemas.getApiKeyTokensResourceErrorSchema;
|
|
310
|
+
exports.getApiKeyTokensResourcePathApiKeyIdSchema = schemas.getApiKeyTokensResourcePathApiKeyIdSchema;
|
|
311
|
+
exports.getApiKeyTokensResourceResponseSchema = schemas.getApiKeyTokensResourceResponseSchema;
|
|
312
|
+
exports.getApiKeyTokensResourceStatus200Schema = schemas.getApiKeyTokensResourceStatus200Schema;
|
|
313
|
+
exports.getApiKeyTokensResourceStatus401Schema = schemas.getApiKeyTokensResourceStatus401Schema;
|
|
314
|
+
exports.getApiKeysResourceErrorSchema = schemas.getApiKeysResourceErrorSchema;
|
|
315
|
+
exports.getApiKeysResourceResponseSchema = schemas.getApiKeysResourceResponseSchema;
|
|
316
|
+
exports.getApiKeysResourceStatus200Schema = schemas.getApiKeysResourceStatus200Schema;
|
|
317
|
+
exports.getApiKeysResourceStatus401Schema = schemas.getApiKeysResourceStatus401Schema;
|
|
318
|
+
exports.getCompaniesResourceErrorSchema = schemas.getCompaniesResourceErrorSchema;
|
|
319
|
+
exports.getCompaniesResourceResponseSchema = schemas.getCompaniesResourceResponseSchema;
|
|
320
|
+
exports.getCompaniesResourceStatus200Schema = schemas.getCompaniesResourceStatus200Schema;
|
|
321
|
+
exports.getCompaniesResourceStatus401Schema = schemas.getCompaniesResourceStatus401Schema;
|
|
322
|
+
exports.getCompaniesResourceStatus403Schema = schemas.getCompaniesResourceStatus403Schema;
|
|
323
|
+
exports.getDecentralWebhooksResourceErrorSchema = schemas.getDecentralWebhooksResourceErrorSchema;
|
|
324
|
+
exports.getDecentralWebhooksResourceResponseSchema = schemas.getDecentralWebhooksResourceResponseSchema;
|
|
325
|
+
exports.getDecentralWebhooksResourceStatus200Schema = schemas.getDecentralWebhooksResourceStatus200Schema;
|
|
326
|
+
exports.getDecentralWebhooksResourceStatus401Schema = schemas.getDecentralWebhooksResourceStatus401Schema;
|
|
327
|
+
exports.getDecentralWebhooksResourceStatus403Schema = schemas.getDecentralWebhooksResourceStatus403Schema;
|
|
328
|
+
exports.getNotificationResourceErrorSchema = schemas.getNotificationResourceErrorSchema;
|
|
329
|
+
exports.getNotificationResourcePathNotificationIdSchema = schemas.getNotificationResourcePathNotificationIdSchema;
|
|
330
|
+
exports.getNotificationResourceResponseSchema = schemas.getNotificationResourceResponseSchema;
|
|
331
|
+
exports.getNotificationResourceStatus200Schema = schemas.getNotificationResourceStatus200Schema;
|
|
332
|
+
exports.getNotificationResourceStatus401Schema = schemas.getNotificationResourceStatus401Schema;
|
|
333
|
+
exports.getNotificationResourceStatus403Schema = schemas.getNotificationResourceStatus403Schema;
|
|
334
|
+
exports.getNotificationResourceStatus404Schema = schemas.getNotificationResourceStatus404Schema;
|
|
335
|
+
exports.getNotificationsResourceErrorSchema = schemas.getNotificationsResourceErrorSchema;
|
|
336
|
+
exports.getNotificationsResourceQueryReferenceIdSchema = schemas.getNotificationsResourceQueryReferenceIdSchema;
|
|
337
|
+
exports.getNotificationsResourceResponseSchema = schemas.getNotificationsResourceResponseSchema;
|
|
338
|
+
exports.getNotificationsResourceStatus200Schema = schemas.getNotificationsResourceStatus200Schema;
|
|
339
|
+
exports.getNotificationsResourceStatus401Schema = schemas.getNotificationsResourceStatus401Schema;
|
|
340
|
+
exports.getOpenerBrandResourcePathBrandIdSchema = schemas.getOpenerBrandResourcePathBrandIdSchema;
|
|
341
|
+
exports.getOpenerBrandResourceResponseSchema = schemas.getOpenerBrandResourceResponseSchema;
|
|
342
|
+
exports.getOpenerBrandResourceStatus200Schema = schemas.getOpenerBrandResourceStatus200Schema;
|
|
343
|
+
exports.getOpenerBrandsResourceResponseSchema = schemas.getOpenerBrandsResourceResponseSchema;
|
|
344
|
+
exports.getOpenerBrandsResourceStatus200Schema = schemas.getOpenerBrandsResourceStatus200Schema;
|
|
345
|
+
exports.getOpenerIntercomResourcePathIntercomIdSchema = schemas.getOpenerIntercomResourcePathIntercomIdSchema;
|
|
346
|
+
exports.getOpenerIntercomResourceResponseSchema = schemas.getOpenerIntercomResourceResponseSchema;
|
|
347
|
+
exports.getOpenerIntercomResourceStatus200Schema = schemas.getOpenerIntercomResourceStatus200Schema;
|
|
348
|
+
exports.getOpenerIntercomsResourceQueryBrandIdSchema = schemas.getOpenerIntercomsResourceQueryBrandIdSchema;
|
|
349
|
+
exports.getOpenerIntercomsResourceQueryIgnoreVerifiedSchema = schemas.getOpenerIntercomsResourceQueryIgnoreVerifiedSchema;
|
|
350
|
+
exports.getOpenerIntercomsResourceQueryRecentlyChangedSchema = schemas.getOpenerIntercomsResourceQueryRecentlyChangedSchema;
|
|
351
|
+
exports.getOpenerIntercomsResourceResponseSchema = schemas.getOpenerIntercomsResourceResponseSchema;
|
|
352
|
+
exports.getOpenerIntercomsResourceStatus200Schema = schemas.getOpenerIntercomsResourceStatus200Schema;
|
|
353
|
+
exports.getServiceResourceErrorSchema = schemas.getServiceResourceErrorSchema;
|
|
354
|
+
exports.getServiceResourcePathServiceIdSchema = schemas.getServiceResourcePathServiceIdSchema;
|
|
355
|
+
exports.getServiceResourceResponseSchema = schemas.getServiceResourceResponseSchema;
|
|
356
|
+
exports.getServiceResourceStatus200Schema = schemas.getServiceResourceStatus200Schema;
|
|
357
|
+
exports.getServiceResourceStatus401Schema = schemas.getServiceResourceStatus401Schema;
|
|
358
|
+
exports.getServicesResourceErrorSchema = schemas.getServicesResourceErrorSchema;
|
|
359
|
+
exports.getServicesResourceQueryServiceIdsSchema = schemas.getServicesResourceQueryServiceIdsSchema;
|
|
360
|
+
exports.getServicesResourceResponseSchema = schemas.getServicesResourceResponseSchema;
|
|
361
|
+
exports.getServicesResourceStatus200Schema = schemas.getServicesResourceStatus200Schema;
|
|
362
|
+
exports.getServicesResourceStatus401Schema = schemas.getServicesResourceStatus401Schema;
|
|
363
|
+
exports.getSmartlockAuthResourceErrorSchema = schemas.getSmartlockAuthResourceErrorSchema;
|
|
364
|
+
exports.getSmartlockAuthResourcePathIdSchema = schemas.getSmartlockAuthResourcePathIdSchema;
|
|
365
|
+
exports.getSmartlockAuthResourcePathSmartlockIdSchema = schemas.getSmartlockAuthResourcePathSmartlockIdSchema;
|
|
366
|
+
exports.getSmartlockAuthResourceResponseSchema = schemas.getSmartlockAuthResourceResponseSchema;
|
|
367
|
+
exports.getSmartlockAuthResourceStatus200Schema = schemas.getSmartlockAuthResourceStatus200Schema;
|
|
368
|
+
exports.getSmartlockAuthResourceStatus401Schema = schemas.getSmartlockAuthResourceStatus401Schema;
|
|
369
|
+
exports.getSmartlockAuthResourceStatus403Schema = schemas.getSmartlockAuthResourceStatus403Schema;
|
|
370
|
+
exports.getSmartlockAuthsResourceErrorSchema = schemas.getSmartlockAuthsResourceErrorSchema;
|
|
371
|
+
exports.getSmartlockAuthsResourcePathSmartlockIdSchema = schemas.getSmartlockAuthsResourcePathSmartlockIdSchema;
|
|
372
|
+
exports.getSmartlockAuthsResourceQueryIncludeEmailSchema = schemas.getSmartlockAuthsResourceQueryIncludeEmailSchema;
|
|
373
|
+
exports.getSmartlockAuthsResourceQueryTypesSchema = schemas.getSmartlockAuthsResourceQueryTypesSchema;
|
|
374
|
+
exports.getSmartlockAuthsResourceResponseSchema = schemas.getSmartlockAuthsResourceResponseSchema;
|
|
375
|
+
exports.getSmartlockAuthsResourceStatus200Schema = schemas.getSmartlockAuthsResourceStatus200Schema;
|
|
376
|
+
exports.getSmartlockAuthsResourceStatus401Schema = schemas.getSmartlockAuthsResourceStatus401Schema;
|
|
377
|
+
exports.getSmartlockAuthsResourceStatus403Schema = schemas.getSmartlockAuthsResourceStatus403Schema;
|
|
378
|
+
exports.getSmartlockLogsResourceErrorSchema = schemas.getSmartlockLogsResourceErrorSchema;
|
|
379
|
+
exports.getSmartlockLogsResourcePathSmartlockIdSchema = schemas.getSmartlockLogsResourcePathSmartlockIdSchema;
|
|
380
|
+
exports.getSmartlockLogsResourceQueryAccountUserIdSchema = schemas.getSmartlockLogsResourceQueryAccountUserIdSchema;
|
|
381
|
+
exports.getSmartlockLogsResourceQueryActionSchema = schemas.getSmartlockLogsResourceQueryActionSchema;
|
|
382
|
+
exports.getSmartlockLogsResourceQueryAuthIdSchema = schemas.getSmartlockLogsResourceQueryAuthIdSchema;
|
|
383
|
+
exports.getSmartlockLogsResourceQueryFromDateSchema = schemas.getSmartlockLogsResourceQueryFromDateSchema;
|
|
384
|
+
exports.getSmartlockLogsResourceQueryIdSchema = schemas.getSmartlockLogsResourceQueryIdSchema;
|
|
385
|
+
exports.getSmartlockLogsResourceQueryLimitSchema = schemas.getSmartlockLogsResourceQueryLimitSchema;
|
|
386
|
+
exports.getSmartlockLogsResourceQueryToDateSchema = schemas.getSmartlockLogsResourceQueryToDateSchema;
|
|
387
|
+
exports.getSmartlockLogsResourceResponseSchema = schemas.getSmartlockLogsResourceResponseSchema;
|
|
388
|
+
exports.getSmartlockLogsResourceStatus200Schema = schemas.getSmartlockLogsResourceStatus200Schema;
|
|
389
|
+
exports.getSmartlockLogsResourceStatus401Schema = schemas.getSmartlockLogsResourceStatus401Schema;
|
|
390
|
+
exports.getSmartlockResourceErrorSchema = schemas.getSmartlockResourceErrorSchema;
|
|
391
|
+
exports.getSmartlockResourcePathSmartlockIdSchema = schemas.getSmartlockResourcePathSmartlockIdSchema;
|
|
392
|
+
exports.getSmartlockResourceResponseSchema = schemas.getSmartlockResourceResponseSchema;
|
|
393
|
+
exports.getSmartlockResourceStatus200Schema = schemas.getSmartlockResourceStatus200Schema;
|
|
394
|
+
exports.getSmartlockResourceStatus401Schema = schemas.getSmartlockResourceStatus401Schema;
|
|
395
|
+
exports.getSmartlockResourceStatus403Schema = schemas.getSmartlockResourceStatus403Schema;
|
|
396
|
+
exports.getSmartlockResourceStatus404Schema = schemas.getSmartlockResourceStatus404Schema;
|
|
397
|
+
exports.getSmartlocksAuthsPaginatedResourceErrorSchema = schemas.getSmartlocksAuthsPaginatedResourceErrorSchema;
|
|
398
|
+
exports.getSmartlocksAuthsPaginatedResourceQueryAccountUserIdSchema = schemas.getSmartlocksAuthsPaginatedResourceQueryAccountUserIdSchema;
|
|
399
|
+
exports.getSmartlocksAuthsPaginatedResourceQueryPageSchema = schemas.getSmartlocksAuthsPaginatedResourceQueryPageSchema;
|
|
400
|
+
exports.getSmartlocksAuthsPaginatedResourceQuerySizeSchema = schemas.getSmartlocksAuthsPaginatedResourceQuerySizeSchema;
|
|
401
|
+
exports.getSmartlocksAuthsPaginatedResourceQueryTypesSchema = schemas.getSmartlocksAuthsPaginatedResourceQueryTypesSchema;
|
|
402
|
+
exports.getSmartlocksAuthsPaginatedResourceResponseSchema = schemas.getSmartlocksAuthsPaginatedResourceResponseSchema;
|
|
403
|
+
exports.getSmartlocksAuthsPaginatedResourceStatus200Schema = schemas.getSmartlocksAuthsPaginatedResourceStatus200Schema;
|
|
404
|
+
exports.getSmartlocksAuthsPaginatedResourceStatus401Schema = schemas.getSmartlocksAuthsPaginatedResourceStatus401Schema;
|
|
405
|
+
exports.getSmartlocksAuthsResourceErrorSchema = schemas.getSmartlocksAuthsResourceErrorSchema;
|
|
406
|
+
exports.getSmartlocksAuthsResourceQueryAccountUserIdSchema = schemas.getSmartlocksAuthsResourceQueryAccountUserIdSchema;
|
|
407
|
+
exports.getSmartlocksAuthsResourceQueryTypesSchema = schemas.getSmartlocksAuthsResourceQueryTypesSchema;
|
|
408
|
+
exports.getSmartlocksAuthsResourceResponseSchema = schemas.getSmartlocksAuthsResourceResponseSchema;
|
|
409
|
+
exports.getSmartlocksAuthsResourceStatus200Schema = schemas.getSmartlocksAuthsResourceStatus200Schema;
|
|
410
|
+
exports.getSmartlocksAuthsResourceStatus401Schema = schemas.getSmartlocksAuthsResourceStatus401Schema;
|
|
411
|
+
exports.getSmartlocksLogsResourceErrorSchema = schemas.getSmartlocksLogsResourceErrorSchema;
|
|
412
|
+
exports.getSmartlocksLogsResourceQueryAccountUserIdSchema = schemas.getSmartlocksLogsResourceQueryAccountUserIdSchema;
|
|
413
|
+
exports.getSmartlocksLogsResourceQueryActionSchema = schemas.getSmartlocksLogsResourceQueryActionSchema;
|
|
414
|
+
exports.getSmartlocksLogsResourceQueryFromDateSchema = schemas.getSmartlocksLogsResourceQueryFromDateSchema;
|
|
415
|
+
exports.getSmartlocksLogsResourceQueryIdSchema = schemas.getSmartlocksLogsResourceQueryIdSchema;
|
|
416
|
+
exports.getSmartlocksLogsResourceQueryLimitSchema = schemas.getSmartlocksLogsResourceQueryLimitSchema;
|
|
417
|
+
exports.getSmartlocksLogsResourceQueryToDateSchema = schemas.getSmartlocksLogsResourceQueryToDateSchema;
|
|
418
|
+
exports.getSmartlocksLogsResourceResponseSchema = schemas.getSmartlocksLogsResourceResponseSchema;
|
|
419
|
+
exports.getSmartlocksLogsResourceStatus200Schema = schemas.getSmartlocksLogsResourceStatus200Schema;
|
|
420
|
+
exports.getSmartlocksLogsResourceStatus401Schema = schemas.getSmartlocksLogsResourceStatus401Schema;
|
|
421
|
+
exports.getSmartlocksResourceErrorSchema = schemas.getSmartlocksResourceErrorSchema;
|
|
422
|
+
exports.getSmartlocksResourceQueryAuthIdSchema = schemas.getSmartlocksResourceQueryAuthIdSchema;
|
|
423
|
+
exports.getSmartlocksResourceQueryTypeSchema = schemas.getSmartlocksResourceQueryTypeSchema;
|
|
424
|
+
exports.getSmartlocksResourceResponseSchema = schemas.getSmartlocksResourceResponseSchema;
|
|
425
|
+
exports.getSmartlocksResourceStatus200Schema = schemas.getSmartlocksResourceStatus200Schema;
|
|
426
|
+
exports.getSmartlocksResourceStatus401Schema = schemas.getSmartlocksResourceStatus401Schema;
|
|
427
|
+
exports.getWebhookLogsResourceErrorSchema = schemas.getWebhookLogsResourceErrorSchema;
|
|
428
|
+
exports.getWebhookLogsResourcePathApiKeyIdSchema = schemas.getWebhookLogsResourcePathApiKeyIdSchema;
|
|
429
|
+
exports.getWebhookLogsResourceQueryIdSchema = schemas.getWebhookLogsResourceQueryIdSchema;
|
|
430
|
+
exports.getWebhookLogsResourceQueryLimitSchema = schemas.getWebhookLogsResourceQueryLimitSchema;
|
|
431
|
+
exports.getWebhookLogsResourceResponseSchema = schemas.getWebhookLogsResourceResponseSchema;
|
|
432
|
+
exports.getWebhookLogsResourceStatus200Schema = schemas.getWebhookLogsResourceStatus200Schema;
|
|
433
|
+
exports.getWebhookLogsResourceStatus401Schema = schemas.getWebhookLogsResourceStatus401Schema;
|
|
434
|
+
exports.handlerSchema = schemas.handlerSchema;
|
|
435
|
+
exports.headerSchema = schemas.headerSchema;
|
|
436
|
+
exports.inputStreamSchema = schemas.inputStreamSchema;
|
|
437
|
+
exports.languageSchema = schemas.languageSchema;
|
|
438
|
+
exports.levelSchema = schemas.levelSchema;
|
|
439
|
+
exports.localeSchema = schemas.localeSchema;
|
|
440
|
+
exports.loggerSchema = schemas.loggerSchema;
|
|
441
|
+
exports.mediaTypeSchema = schemas.mediaTypeSchema;
|
|
442
|
+
exports.metadataSchema = schemas.metadataSchema;
|
|
443
|
+
exports.metadataServiceSchema = schemas.metadataServiceSchema;
|
|
444
|
+
exports.methodSchema = schemas.methodSchema;
|
|
445
|
+
exports.myAccountSchema = schemas.myAccountSchema;
|
|
446
|
+
exports.namedValueSchema = schemas.namedValueSchema;
|
|
447
|
+
exports.namedValueStringSchema = schemas.namedValueStringSchema;
|
|
448
|
+
exports.notificationSchema = schemas.notificationSchema;
|
|
449
|
+
exports.notificationSettingSchema = schemas.notificationSettingSchema;
|
|
450
|
+
exports.objectIdSchema = schemas.objectIdSchema;
|
|
451
|
+
exports.openerIntercomBrandSchema = schemas.openerIntercomBrandSchema;
|
|
452
|
+
exports.openerIntercomModelSchema = schemas.openerIntercomModelSchema;
|
|
453
|
+
exports.paginatedResponseSchema = schemas.paginatedResponseSchema;
|
|
454
|
+
exports.paginationSchema = schemas.paginationSchema;
|
|
455
|
+
exports.parameterSchema = schemas.parameterSchema;
|
|
456
|
+
exports.postAccountEmailChangeResourceBodySchema = schemas.postAccountEmailChangeResourceBodySchema;
|
|
457
|
+
exports.postAccountEmailChangeResourceErrorSchema = schemas.postAccountEmailChangeResourceErrorSchema;
|
|
458
|
+
exports.postAccountEmailChangeResourceResponseSchema = schemas.postAccountEmailChangeResourceResponseSchema;
|
|
459
|
+
exports.postAccountEmailChangeResourceStatus204Schema = schemas.postAccountEmailChangeResourceStatus204Schema;
|
|
460
|
+
exports.postAccountEmailChangeResourceStatus400Schema = schemas.postAccountEmailChangeResourceStatus400Schema;
|
|
461
|
+
exports.postAccountEmailChangeResourceStatus401Schema = schemas.postAccountEmailChangeResourceStatus401Schema;
|
|
462
|
+
exports.postAccountEmailChangeResourceStatus409Schema = schemas.postAccountEmailChangeResourceStatus409Schema;
|
|
463
|
+
exports.postAccountEmailVerifyResourceErrorSchema = schemas.postAccountEmailVerifyResourceErrorSchema;
|
|
464
|
+
exports.postAccountEmailVerifyResourceResponseSchema = schemas.postAccountEmailVerifyResourceResponseSchema;
|
|
465
|
+
exports.postAccountEmailVerifyResourceStatus204Schema = schemas.postAccountEmailVerifyResourceStatus204Schema;
|
|
466
|
+
exports.postAccountEmailVerifyResourceStatus400Schema = schemas.postAccountEmailVerifyResourceStatus400Schema;
|
|
467
|
+
exports.postAccountEmailVerifyResourceStatus401Schema = schemas.postAccountEmailVerifyResourceStatus401Schema;
|
|
468
|
+
exports.postAccountEmailVerifyResourceStatus409Schema = schemas.postAccountEmailVerifyResourceStatus409Schema;
|
|
469
|
+
exports.postAccountOtpResourceBodySchema = schemas.postAccountOtpResourceBodySchema;
|
|
470
|
+
exports.postAccountOtpResourceErrorSchema = schemas.postAccountOtpResourceErrorSchema;
|
|
471
|
+
exports.postAccountOtpResourceResponseSchema = schemas.postAccountOtpResourceResponseSchema;
|
|
472
|
+
exports.postAccountOtpResourceStatus204Schema = schemas.postAccountOtpResourceStatus204Schema;
|
|
473
|
+
exports.postAccountOtpResourceStatus400Schema = schemas.postAccountOtpResourceStatus400Schema;
|
|
474
|
+
exports.postAccountOtpResourceStatus401Schema = schemas.postAccountOtpResourceStatus401Schema;
|
|
475
|
+
exports.postAccountOtpResourceStatus429Schema = schemas.postAccountOtpResourceStatus429Schema;
|
|
476
|
+
exports.postAccountPasswordResetResourceBodySchema = schemas.postAccountPasswordResetResourceBodySchema;
|
|
477
|
+
exports.postAccountPasswordResetResourceErrorSchema = schemas.postAccountPasswordResetResourceErrorSchema;
|
|
478
|
+
exports.postAccountPasswordResetResourceResponseSchema = schemas.postAccountPasswordResetResourceResponseSchema;
|
|
479
|
+
exports.postAccountPasswordResetResourceStatus204Schema = schemas.postAccountPasswordResetResourceStatus204Schema;
|
|
480
|
+
exports.postAccountPasswordResetResourceStatus401Schema = schemas.postAccountPasswordResetResourceStatus401Schema;
|
|
481
|
+
exports.postAccountSubResourceBodySchema = schemas.postAccountSubResourceBodySchema;
|
|
482
|
+
exports.postAccountSubResourceErrorSchema = schemas.postAccountSubResourceErrorSchema;
|
|
483
|
+
exports.postAccountSubResourcePathAccountIdSchema = schemas.postAccountSubResourcePathAccountIdSchema;
|
|
484
|
+
exports.postAccountSubResourceResponseSchema = schemas.postAccountSubResourceResponseSchema;
|
|
485
|
+
exports.postAccountSubResourceStatus204Schema = schemas.postAccountSubResourceStatus204Schema;
|
|
486
|
+
exports.postAccountSubResourceStatus400Schema = schemas.postAccountSubResourceStatus400Schema;
|
|
487
|
+
exports.postAccountSubResourceStatus401Schema = schemas.postAccountSubResourceStatus401Schema;
|
|
488
|
+
exports.postAccountSubResourceStatus409Schema = schemas.postAccountSubResourceStatus409Schema;
|
|
489
|
+
exports.postAccountUserResourceBodySchema = schemas.postAccountUserResourceBodySchema;
|
|
490
|
+
exports.postAccountUserResourceErrorSchema = schemas.postAccountUserResourceErrorSchema;
|
|
491
|
+
exports.postAccountUserResourcePathAccountUserIdSchema = schemas.postAccountUserResourcePathAccountUserIdSchema;
|
|
492
|
+
exports.postAccountUserResourceResponseSchema = schemas.postAccountUserResourceResponseSchema;
|
|
493
|
+
exports.postAccountUserResourceStatus200Schema = schemas.postAccountUserResourceStatus200Schema;
|
|
494
|
+
exports.postAccountUserResourceStatus204Schema = schemas.postAccountUserResourceStatus204Schema;
|
|
495
|
+
exports.postAccountUserResourceStatus400Schema = schemas.postAccountUserResourceStatus400Schema;
|
|
496
|
+
exports.postAccountUserResourceStatus401Schema = schemas.postAccountUserResourceStatus401Schema;
|
|
497
|
+
exports.postAccountUserResourceStatus409Schema = schemas.postAccountUserResourceStatus409Schema;
|
|
498
|
+
exports.postAccountsResourceBodySchema = schemas.postAccountsResourceBodySchema;
|
|
499
|
+
exports.postAccountsResourceErrorSchema = schemas.postAccountsResourceErrorSchema;
|
|
500
|
+
exports.postAccountsResourceQueryDeleteApiTokensSchema = schemas.postAccountsResourceQueryDeleteApiTokensSchema;
|
|
501
|
+
exports.postAccountsResourceResponseSchema = schemas.postAccountsResourceResponseSchema;
|
|
502
|
+
exports.postAccountsResourceStatus204Schema = schemas.postAccountsResourceStatus204Schema;
|
|
503
|
+
exports.postAccountsResourceStatus400Schema = schemas.postAccountsResourceStatus400Schema;
|
|
504
|
+
exports.postAccountsResourceStatus401Schema = schemas.postAccountsResourceStatus401Schema;
|
|
505
|
+
exports.postAccountsResourceStatus409Schema = schemas.postAccountsResourceStatus409Schema;
|
|
506
|
+
exports.postAddressReservationIssueResourceErrorSchema = schemas.postAddressReservationIssueResourceErrorSchema;
|
|
507
|
+
exports.postAddressReservationIssueResourcePathAddressIdSchema = schemas.postAddressReservationIssueResourcePathAddressIdSchema;
|
|
508
|
+
exports.postAddressReservationIssueResourcePathIdSchema = schemas.postAddressReservationIssueResourcePathIdSchema;
|
|
509
|
+
exports.postAddressReservationIssueResourceResponseSchema = schemas.postAddressReservationIssueResourceResponseSchema;
|
|
510
|
+
exports.postAddressReservationIssueResourceStatus204Schema = schemas.postAddressReservationIssueResourceStatus204Schema;
|
|
511
|
+
exports.postAddressReservationIssueResourceStatus400Schema = schemas.postAddressReservationIssueResourceStatus400Schema;
|
|
512
|
+
exports.postAddressReservationIssueResourceStatus401Schema = schemas.postAddressReservationIssueResourceStatus401Schema;
|
|
513
|
+
exports.postAddressReservationRevokeResourceErrorSchema = schemas.postAddressReservationRevokeResourceErrorSchema;
|
|
514
|
+
exports.postAddressReservationRevokeResourcePathAddressIdSchema = schemas.postAddressReservationRevokeResourcePathAddressIdSchema;
|
|
515
|
+
exports.postAddressReservationRevokeResourcePathIdSchema = schemas.postAddressReservationRevokeResourcePathIdSchema;
|
|
516
|
+
exports.postAddressReservationRevokeResourceResponseSchema = schemas.postAddressReservationRevokeResourceResponseSchema;
|
|
517
|
+
exports.postAddressReservationRevokeResourceStatus204Schema = schemas.postAddressReservationRevokeResourceStatus204Schema;
|
|
518
|
+
exports.postAddressReservationRevokeResourceStatus400Schema = schemas.postAddressReservationRevokeResourceStatus400Schema;
|
|
519
|
+
exports.postAddressReservationRevokeResourceStatus401Schema = schemas.postAddressReservationRevokeResourceStatus401Schema;
|
|
520
|
+
exports.postAddressResourceBodySchema = schemas.postAddressResourceBodySchema;
|
|
521
|
+
exports.postAddressResourceErrorSchema = schemas.postAddressResourceErrorSchema;
|
|
522
|
+
exports.postAddressResourcePathAddressIdSchema = schemas.postAddressResourcePathAddressIdSchema;
|
|
523
|
+
exports.postAddressResourceResponseSchema = schemas.postAddressResourceResponseSchema;
|
|
524
|
+
exports.postAddressResourceStatus204Schema = schemas.postAddressResourceStatus204Schema;
|
|
525
|
+
exports.postAddressResourceStatus400Schema = schemas.postAddressResourceStatus400Schema;
|
|
526
|
+
exports.postAddressResourceStatus401Schema = schemas.postAddressResourceStatus401Schema;
|
|
527
|
+
exports.postAddressResourceStatus403Schema = schemas.postAddressResourceStatus403Schema;
|
|
528
|
+
exports.postAddressTokenRedeemResourceErrorSchema = schemas.postAddressTokenRedeemResourceErrorSchema;
|
|
529
|
+
exports.postAddressTokenRedeemResourcePathIdSchema = schemas.postAddressTokenRedeemResourcePathIdSchema;
|
|
530
|
+
exports.postAddressTokenRedeemResourceQueryEmailSchema = schemas.postAddressTokenRedeemResourceQueryEmailSchema;
|
|
531
|
+
exports.postAddressTokenRedeemResourceResponseSchema = schemas.postAddressTokenRedeemResourceResponseSchema;
|
|
532
|
+
exports.postAddressTokenRedeemResourceStatus204Schema = schemas.postAddressTokenRedeemResourceStatus204Schema;
|
|
533
|
+
exports.postAddressTokenRedeemResourceStatus400Schema = schemas.postAddressTokenRedeemResourceStatus400Schema;
|
|
534
|
+
exports.postAddressTokenRedeemResourceStatus401Schema = schemas.postAddressTokenRedeemResourceStatus401Schema;
|
|
535
|
+
exports.postAddressTokenRedeemResourceStatus404Schema = schemas.postAddressTokenRedeemResourceStatus404Schema;
|
|
536
|
+
exports.postApiKeyAdvancedReactivateResourceErrorSchema = schemas.postApiKeyAdvancedReactivateResourceErrorSchema;
|
|
537
|
+
exports.postApiKeyAdvancedReactivateResourcePathApiKeyIdSchema = schemas.postApiKeyAdvancedReactivateResourcePathApiKeyIdSchema;
|
|
538
|
+
exports.postApiKeyAdvancedReactivateResourceResponseSchema = schemas.postApiKeyAdvancedReactivateResourceResponseSchema;
|
|
539
|
+
exports.postApiKeyAdvancedReactivateResourceStatus204Schema = schemas.postApiKeyAdvancedReactivateResourceStatus204Schema;
|
|
540
|
+
exports.postApiKeyAdvancedReactivateResourceStatus400Schema = schemas.postApiKeyAdvancedReactivateResourceStatus400Schema;
|
|
541
|
+
exports.postApiKeyAdvancedReactivateResourceStatus401Schema = schemas.postApiKeyAdvancedReactivateResourceStatus401Schema;
|
|
542
|
+
exports.postApiKeyAdvancedResourceBodySchema = schemas.postApiKeyAdvancedResourceBodySchema;
|
|
543
|
+
exports.postApiKeyAdvancedResourceErrorSchema = schemas.postApiKeyAdvancedResourceErrorSchema;
|
|
544
|
+
exports.postApiKeyAdvancedResourcePathApiKeyIdSchema = schemas.postApiKeyAdvancedResourcePathApiKeyIdSchema;
|
|
545
|
+
exports.postApiKeyAdvancedResourceResponseSchema = schemas.postApiKeyAdvancedResourceResponseSchema;
|
|
546
|
+
exports.postApiKeyAdvancedResourceStatus204Schema = schemas.postApiKeyAdvancedResourceStatus204Schema;
|
|
547
|
+
exports.postApiKeyAdvancedResourceStatus400Schema = schemas.postApiKeyAdvancedResourceStatus400Schema;
|
|
548
|
+
exports.postApiKeyAdvancedResourceStatus401Schema = schemas.postApiKeyAdvancedResourceStatus401Schema;
|
|
549
|
+
exports.postApiKeyResourceBodySchema = schemas.postApiKeyResourceBodySchema;
|
|
550
|
+
exports.postApiKeyResourceErrorSchema = schemas.postApiKeyResourceErrorSchema;
|
|
551
|
+
exports.postApiKeyResourcePathApiKeyIdSchema = schemas.postApiKeyResourcePathApiKeyIdSchema;
|
|
552
|
+
exports.postApiKeyResourceResponseSchema = schemas.postApiKeyResourceResponseSchema;
|
|
553
|
+
exports.postApiKeyResourceStatus204Schema = schemas.postApiKeyResourceStatus204Schema;
|
|
554
|
+
exports.postApiKeyResourceStatus400Schema = schemas.postApiKeyResourceStatus400Schema;
|
|
555
|
+
exports.postApiKeyResourceStatus401Schema = schemas.postApiKeyResourceStatus401Schema;
|
|
556
|
+
exports.postApiKeyResourceStatus503Schema = schemas.postApiKeyResourceStatus503Schema;
|
|
557
|
+
exports.postApiKeyTokenResourceBodySchema = schemas.postApiKeyTokenResourceBodySchema;
|
|
558
|
+
exports.postApiKeyTokenResourceErrorSchema = schemas.postApiKeyTokenResourceErrorSchema;
|
|
559
|
+
exports.postApiKeyTokenResourcePathApiKeyIdSchema = schemas.postApiKeyTokenResourcePathApiKeyIdSchema;
|
|
560
|
+
exports.postApiKeyTokenResourcePathIdSchema = schemas.postApiKeyTokenResourcePathIdSchema;
|
|
561
|
+
exports.postApiKeyTokenResourceResponseSchema = schemas.postApiKeyTokenResourceResponseSchema;
|
|
562
|
+
exports.postApiKeyTokenResourceStatus204Schema = schemas.postApiKeyTokenResourceStatus204Schema;
|
|
563
|
+
exports.postApiKeyTokenResourceStatus400Schema = schemas.postApiKeyTokenResourceStatus400Schema;
|
|
564
|
+
exports.postApiKeyTokenResourceStatus401Schema = schemas.postApiKeyTokenResourceStatus401Schema;
|
|
565
|
+
exports.postNotificationResourceBodySchema = schemas.postNotificationResourceBodySchema;
|
|
566
|
+
exports.postNotificationResourceErrorSchema = schemas.postNotificationResourceErrorSchema;
|
|
567
|
+
exports.postNotificationResourcePathNotificationIdSchema = schemas.postNotificationResourcePathNotificationIdSchema;
|
|
568
|
+
exports.postNotificationResourceResponseSchema = schemas.postNotificationResourceResponseSchema;
|
|
569
|
+
exports.postNotificationResourceStatus200Schema = schemas.postNotificationResourceStatus200Schema;
|
|
570
|
+
exports.postNotificationResourceStatus400Schema = schemas.postNotificationResourceStatus400Schema;
|
|
571
|
+
exports.postNotificationResourceStatus401Schema = schemas.postNotificationResourceStatus401Schema;
|
|
572
|
+
exports.postNotificationResourceStatus403Schema = schemas.postNotificationResourceStatus403Schema;
|
|
573
|
+
exports.postReservationAccessTimesUpdateResourceBodySchema = schemas.postReservationAccessTimesUpdateResourceBodySchema;
|
|
574
|
+
exports.postReservationAccessTimesUpdateResourceErrorSchema = schemas.postReservationAccessTimesUpdateResourceErrorSchema;
|
|
575
|
+
exports.postReservationAccessTimesUpdateResourcePathAddressIdSchema = schemas.postReservationAccessTimesUpdateResourcePathAddressIdSchema;
|
|
576
|
+
exports.postReservationAccessTimesUpdateResourcePathIdSchema = schemas.postReservationAccessTimesUpdateResourcePathIdSchema;
|
|
577
|
+
exports.postReservationAccessTimesUpdateResourceResponseSchema = schemas.postReservationAccessTimesUpdateResourceResponseSchema;
|
|
578
|
+
exports.postReservationAccessTimesUpdateResourceStatus204Schema = schemas.postReservationAccessTimesUpdateResourceStatus204Schema;
|
|
579
|
+
exports.postReservationAccessTimesUpdateResourceStatus400Schema = schemas.postReservationAccessTimesUpdateResourceStatus400Schema;
|
|
580
|
+
exports.postReservationAccessTimesUpdateResourceStatus401Schema = schemas.postReservationAccessTimesUpdateResourceStatus401Schema;
|
|
581
|
+
exports.postServiceLinkResourceErrorSchema = schemas.postServiceLinkResourceErrorSchema;
|
|
582
|
+
exports.postServiceLinkResourcePathServiceIdSchema = schemas.postServiceLinkResourcePathServiceIdSchema;
|
|
583
|
+
exports.postServiceLinkResourceResponseSchema = schemas.postServiceLinkResourceResponseSchema;
|
|
584
|
+
exports.postServiceLinkResourceStatus200Schema = schemas.postServiceLinkResourceStatus200Schema;
|
|
585
|
+
exports.postServiceLinkResourceStatus400Schema = schemas.postServiceLinkResourceStatus400Schema;
|
|
586
|
+
exports.postServiceLinkResourceStatus401Schema = schemas.postServiceLinkResourceStatus401Schema;
|
|
587
|
+
exports.postServiceSyncResourceErrorSchema = schemas.postServiceSyncResourceErrorSchema;
|
|
588
|
+
exports.postServiceSyncResourcePathServiceIdSchema = schemas.postServiceSyncResourcePathServiceIdSchema;
|
|
589
|
+
exports.postServiceSyncResourceResponseSchema = schemas.postServiceSyncResourceResponseSchema;
|
|
590
|
+
exports.postServiceSyncResourceStatus204Schema = schemas.postServiceSyncResourceStatus204Schema;
|
|
591
|
+
exports.postServiceSyncResourceStatus400Schema = schemas.postServiceSyncResourceStatus400Schema;
|
|
592
|
+
exports.postServiceSyncResourceStatus401Schema = schemas.postServiceSyncResourceStatus401Schema;
|
|
593
|
+
exports.postServiceUnlinkResourceErrorSchema = schemas.postServiceUnlinkResourceErrorSchema;
|
|
594
|
+
exports.postServiceUnlinkResourcePathServiceIdSchema = schemas.postServiceUnlinkResourcePathServiceIdSchema;
|
|
595
|
+
exports.postServiceUnlinkResourceResponseSchema = schemas.postServiceUnlinkResourceResponseSchema;
|
|
596
|
+
exports.postServiceUnlinkResourceStatus204Schema = schemas.postServiceUnlinkResourceStatus204Schema;
|
|
597
|
+
exports.postServiceUnlinkResourceStatus400Schema = schemas.postServiceUnlinkResourceStatus400Schema;
|
|
598
|
+
exports.postServiceUnlinkResourceStatus401Schema = schemas.postServiceUnlinkResourceStatus401Schema;
|
|
599
|
+
exports.postSmartdoorAdvancedConfigResourceBodySchema = schemas.postSmartdoorAdvancedConfigResourceBodySchema;
|
|
600
|
+
exports.postSmartdoorAdvancedConfigResourceErrorSchema = schemas.postSmartdoorAdvancedConfigResourceErrorSchema;
|
|
601
|
+
exports.postSmartdoorAdvancedConfigResourcePathSmartlockIdSchema = schemas.postSmartdoorAdvancedConfigResourcePathSmartlockIdSchema;
|
|
602
|
+
exports.postSmartdoorAdvancedConfigResourceResponseSchema = schemas.postSmartdoorAdvancedConfigResourceResponseSchema;
|
|
603
|
+
exports.postSmartdoorAdvancedConfigResourceStatus204Schema = schemas.postSmartdoorAdvancedConfigResourceStatus204Schema;
|
|
604
|
+
exports.postSmartdoorAdvancedConfigResourceStatus400Schema = schemas.postSmartdoorAdvancedConfigResourceStatus400Schema;
|
|
605
|
+
exports.postSmartdoorAdvancedConfigResourceStatus401Schema = schemas.postSmartdoorAdvancedConfigResourceStatus401Schema;
|
|
606
|
+
exports.postSmartlockActionAdvancedResourceBodySchema = schemas.postSmartlockActionAdvancedResourceBodySchema;
|
|
607
|
+
exports.postSmartlockActionAdvancedResourceErrorSchema = schemas.postSmartlockActionAdvancedResourceErrorSchema;
|
|
608
|
+
exports.postSmartlockActionAdvancedResourcePathSmartlockIdSchema = schemas.postSmartlockActionAdvancedResourcePathSmartlockIdSchema;
|
|
609
|
+
exports.postSmartlockActionAdvancedResourceResponseSchema = schemas.postSmartlockActionAdvancedResourceResponseSchema;
|
|
610
|
+
exports.postSmartlockActionAdvancedResourceStatus200Schema = schemas.postSmartlockActionAdvancedResourceStatus200Schema;
|
|
611
|
+
exports.postSmartlockActionAdvancedResourceStatus400Schema = schemas.postSmartlockActionAdvancedResourceStatus400Schema;
|
|
612
|
+
exports.postSmartlockActionAdvancedResourceStatus402Schema = schemas.postSmartlockActionAdvancedResourceStatus402Schema;
|
|
613
|
+
exports.postSmartlockActionAdvancedResourceStatus409Schema = schemas.postSmartlockActionAdvancedResourceStatus409Schema;
|
|
614
|
+
exports.postSmartlockActionAdvancedResourceStatus426Schema = schemas.postSmartlockActionAdvancedResourceStatus426Schema;
|
|
615
|
+
exports.postSmartlockActionResourceBodySchema = schemas.postSmartlockActionResourceBodySchema;
|
|
616
|
+
exports.postSmartlockActionResourceErrorSchema = schemas.postSmartlockActionResourceErrorSchema;
|
|
617
|
+
exports.postSmartlockActionResourcePathSmartlockIdSchema = schemas.postSmartlockActionResourcePathSmartlockIdSchema;
|
|
618
|
+
exports.postSmartlockActionResourceResponseSchema = schemas.postSmartlockActionResourceResponseSchema;
|
|
619
|
+
exports.postSmartlockActionResourceStatus204Schema = schemas.postSmartlockActionResourceStatus204Schema;
|
|
620
|
+
exports.postSmartlockActionResourceStatus400Schema = schemas.postSmartlockActionResourceStatus400Schema;
|
|
621
|
+
exports.postSmartlockActionResourceStatus401Schema = schemas.postSmartlockActionResourceStatus401Schema;
|
|
622
|
+
exports.postSmartlockActionResourceStatus402Schema = schemas.postSmartlockActionResourceStatus402Schema;
|
|
623
|
+
exports.postSmartlockAdminPinResourceBodySchema = schemas.postSmartlockAdminPinResourceBodySchema;
|
|
624
|
+
exports.postSmartlockAdminPinResourceErrorSchema = schemas.postSmartlockAdminPinResourceErrorSchema;
|
|
625
|
+
exports.postSmartlockAdminPinResourcePathSmartlockIdSchema = schemas.postSmartlockAdminPinResourcePathSmartlockIdSchema;
|
|
626
|
+
exports.postSmartlockAdminPinResourceResponseSchema = schemas.postSmartlockAdminPinResourceResponseSchema;
|
|
627
|
+
exports.postSmartlockAdminPinResourceStatus204Schema = schemas.postSmartlockAdminPinResourceStatus204Schema;
|
|
628
|
+
exports.postSmartlockAdminPinResourceStatus400Schema = schemas.postSmartlockAdminPinResourceStatus400Schema;
|
|
629
|
+
exports.postSmartlockAdminPinResourceStatus401Schema = schemas.postSmartlockAdminPinResourceStatus401Schema;
|
|
630
|
+
exports.postSmartlockAdvancedConfigResourceBodySchema = schemas.postSmartlockAdvancedConfigResourceBodySchema;
|
|
631
|
+
exports.postSmartlockAdvancedConfigResourceErrorSchema = schemas.postSmartlockAdvancedConfigResourceErrorSchema;
|
|
632
|
+
exports.postSmartlockAdvancedConfigResourcePathSmartlockIdSchema = schemas.postSmartlockAdvancedConfigResourcePathSmartlockIdSchema;
|
|
633
|
+
exports.postSmartlockAdvancedConfigResourceResponseSchema = schemas.postSmartlockAdvancedConfigResourceResponseSchema;
|
|
634
|
+
exports.postSmartlockAdvancedConfigResourceStatus204Schema = schemas.postSmartlockAdvancedConfigResourceStatus204Schema;
|
|
635
|
+
exports.postSmartlockAdvancedConfigResourceStatus400Schema = schemas.postSmartlockAdvancedConfigResourceStatus400Schema;
|
|
636
|
+
exports.postSmartlockAdvancedConfigResourceStatus401Schema = schemas.postSmartlockAdvancedConfigResourceStatus401Schema;
|
|
637
|
+
exports.postSmartlockAuthResourceBodySchema = schemas.postSmartlockAuthResourceBodySchema;
|
|
638
|
+
exports.postSmartlockAuthResourceErrorSchema = schemas.postSmartlockAuthResourceErrorSchema;
|
|
639
|
+
exports.postSmartlockAuthResourcePathIdSchema = schemas.postSmartlockAuthResourcePathIdSchema;
|
|
640
|
+
exports.postSmartlockAuthResourcePathSmartlockIdSchema = schemas.postSmartlockAuthResourcePathSmartlockIdSchema;
|
|
641
|
+
exports.postSmartlockAuthResourceResponseSchema = schemas.postSmartlockAuthResourceResponseSchema;
|
|
642
|
+
exports.postSmartlockAuthResourceStatus204Schema = schemas.postSmartlockAuthResourceStatus204Schema;
|
|
643
|
+
exports.postSmartlockAuthResourceStatus400Schema = schemas.postSmartlockAuthResourceStatus400Schema;
|
|
644
|
+
exports.postSmartlockAuthResourceStatus401Schema = schemas.postSmartlockAuthResourceStatus401Schema;
|
|
645
|
+
exports.postSmartlockAuthResourceStatus403Schema = schemas.postSmartlockAuthResourceStatus403Schema;
|
|
646
|
+
exports.postSmartlockAuthResourceStatus409Schema = schemas.postSmartlockAuthResourceStatus409Schema;
|
|
647
|
+
exports.postSmartlockAuthResourceStatus423Schema = schemas.postSmartlockAuthResourceStatus423Schema;
|
|
648
|
+
exports.postSmartlockAuthWithSharedKeyResourceBodySchema = schemas.postSmartlockAuthWithSharedKeyResourceBodySchema;
|
|
649
|
+
exports.postSmartlockAuthWithSharedKeyResourceErrorSchema = schemas.postSmartlockAuthWithSharedKeyResourceErrorSchema;
|
|
650
|
+
exports.postSmartlockAuthWithSharedKeyResourcePathSmartlockIdSchema = schemas.postSmartlockAuthWithSharedKeyResourcePathSmartlockIdSchema;
|
|
651
|
+
exports.postSmartlockAuthWithSharedKeyResourceResponseSchema = schemas.postSmartlockAuthWithSharedKeyResourceResponseSchema;
|
|
652
|
+
exports.postSmartlockAuthWithSharedKeyResourceStatus200Schema = schemas.postSmartlockAuthWithSharedKeyResourceStatus200Schema;
|
|
653
|
+
exports.postSmartlockAuthWithSharedKeyResourceStatus401Schema = schemas.postSmartlockAuthWithSharedKeyResourceStatus401Schema;
|
|
654
|
+
exports.postSmartlockAuthWithSharedKeyResourceStatus403Schema = schemas.postSmartlockAuthWithSharedKeyResourceStatus403Schema;
|
|
655
|
+
exports.postSmartlockAuthWithSharedKeyResourceStatus404Schema = schemas.postSmartlockAuthWithSharedKeyResourceStatus404Schema;
|
|
656
|
+
exports.postSmartlockBulkWebConfigResourceBodySchema = schemas.postSmartlockBulkWebConfigResourceBodySchema;
|
|
657
|
+
exports.postSmartlockBulkWebConfigResourceErrorSchema = schemas.postSmartlockBulkWebConfigResourceErrorSchema;
|
|
658
|
+
exports.postSmartlockBulkWebConfigResourceResponseSchema = schemas.postSmartlockBulkWebConfigResourceResponseSchema;
|
|
659
|
+
exports.postSmartlockBulkWebConfigResourceStatus204Schema = schemas.postSmartlockBulkWebConfigResourceStatus204Schema;
|
|
660
|
+
exports.postSmartlockBulkWebConfigResourceStatus400Schema = schemas.postSmartlockBulkWebConfigResourceStatus400Schema;
|
|
661
|
+
exports.postSmartlockBulkWebConfigResourceStatus401Schema = schemas.postSmartlockBulkWebConfigResourceStatus401Schema;
|
|
662
|
+
exports.postSmartlockConfigResourceBodySchema = schemas.postSmartlockConfigResourceBodySchema;
|
|
663
|
+
exports.postSmartlockConfigResourceErrorSchema = schemas.postSmartlockConfigResourceErrorSchema;
|
|
664
|
+
exports.postSmartlockConfigResourcePathSmartlockIdSchema = schemas.postSmartlockConfigResourcePathSmartlockIdSchema;
|
|
665
|
+
exports.postSmartlockConfigResourceResponseSchema = schemas.postSmartlockConfigResourceResponseSchema;
|
|
666
|
+
exports.postSmartlockConfigResourceStatus204Schema = schemas.postSmartlockConfigResourceStatus204Schema;
|
|
667
|
+
exports.postSmartlockConfigResourceStatus400Schema = schemas.postSmartlockConfigResourceStatus400Schema;
|
|
668
|
+
exports.postSmartlockConfigResourceStatus401Schema = schemas.postSmartlockConfigResourceStatus401Schema;
|
|
669
|
+
exports.postSmartlockLockActionAdvancedResourceErrorSchema = schemas.postSmartlockLockActionAdvancedResourceErrorSchema;
|
|
670
|
+
exports.postSmartlockLockActionAdvancedResourcePathSmartlockIdSchema = schemas.postSmartlockLockActionAdvancedResourcePathSmartlockIdSchema;
|
|
671
|
+
exports.postSmartlockLockActionAdvancedResourceResponseSchema = schemas.postSmartlockLockActionAdvancedResourceResponseSchema;
|
|
672
|
+
exports.postSmartlockLockActionAdvancedResourceStatus200Schema = schemas.postSmartlockLockActionAdvancedResourceStatus200Schema;
|
|
673
|
+
exports.postSmartlockLockActionAdvancedResourceStatus400Schema = schemas.postSmartlockLockActionAdvancedResourceStatus400Schema;
|
|
674
|
+
exports.postSmartlockLockActionAdvancedResourceStatus401Schema = schemas.postSmartlockLockActionAdvancedResourceStatus401Schema;
|
|
675
|
+
exports.postSmartlockLockActionAdvancedResourceStatus405Schema = schemas.postSmartlockLockActionAdvancedResourceStatus405Schema;
|
|
676
|
+
exports.postSmartlockLockActionResourceErrorSchema = schemas.postSmartlockLockActionResourceErrorSchema;
|
|
677
|
+
exports.postSmartlockLockActionResourcePathSmartlockIdSchema = schemas.postSmartlockLockActionResourcePathSmartlockIdSchema;
|
|
678
|
+
exports.postSmartlockLockActionResourceResponseSchema = schemas.postSmartlockLockActionResourceResponseSchema;
|
|
679
|
+
exports.postSmartlockLockActionResourceStatus204Schema = schemas.postSmartlockLockActionResourceStatus204Schema;
|
|
680
|
+
exports.postSmartlockLockActionResourceStatus400Schema = schemas.postSmartlockLockActionResourceStatus400Schema;
|
|
681
|
+
exports.postSmartlockLockActionResourceStatus401Schema = schemas.postSmartlockLockActionResourceStatus401Schema;
|
|
682
|
+
exports.postSmartlockLockActionResourceStatus405Schema = schemas.postSmartlockLockActionResourceStatus405Schema;
|
|
683
|
+
exports.postSmartlockOpenerAdvancedConfigResourceBodySchema = schemas.postSmartlockOpenerAdvancedConfigResourceBodySchema;
|
|
684
|
+
exports.postSmartlockOpenerAdvancedConfigResourceErrorSchema = schemas.postSmartlockOpenerAdvancedConfigResourceErrorSchema;
|
|
685
|
+
exports.postSmartlockOpenerAdvancedConfigResourcePathSmartlockIdSchema = schemas.postSmartlockOpenerAdvancedConfigResourcePathSmartlockIdSchema;
|
|
686
|
+
exports.postSmartlockOpenerAdvancedConfigResourceResponseSchema = schemas.postSmartlockOpenerAdvancedConfigResourceResponseSchema;
|
|
687
|
+
exports.postSmartlockOpenerAdvancedConfigResourceStatus204Schema = schemas.postSmartlockOpenerAdvancedConfigResourceStatus204Schema;
|
|
688
|
+
exports.postSmartlockOpenerAdvancedConfigResourceStatus400Schema = schemas.postSmartlockOpenerAdvancedConfigResourceStatus400Schema;
|
|
689
|
+
exports.postSmartlockOpenerAdvancedConfigResourceStatus401Schema = schemas.postSmartlockOpenerAdvancedConfigResourceStatus401Schema;
|
|
690
|
+
exports.postSmartlockResourceBodySchema = schemas.postSmartlockResourceBodySchema;
|
|
691
|
+
exports.postSmartlockResourceErrorSchema = schemas.postSmartlockResourceErrorSchema;
|
|
692
|
+
exports.postSmartlockResourcePathSmartlockIdSchema = schemas.postSmartlockResourcePathSmartlockIdSchema;
|
|
693
|
+
exports.postSmartlockResourceResponseSchema = schemas.postSmartlockResourceResponseSchema;
|
|
694
|
+
exports.postSmartlockResourceStatus204Schema = schemas.postSmartlockResourceStatus204Schema;
|
|
695
|
+
exports.postSmartlockResourceStatus400Schema = schemas.postSmartlockResourceStatus400Schema;
|
|
696
|
+
exports.postSmartlockResourceStatus401Schema = schemas.postSmartlockResourceStatus401Schema;
|
|
697
|
+
exports.postSmartlockResourceStatus403Schema = schemas.postSmartlockResourceStatus403Schema;
|
|
698
|
+
exports.postSmartlockSyncResourceErrorSchema = schemas.postSmartlockSyncResourceErrorSchema;
|
|
699
|
+
exports.postSmartlockSyncResourcePathSmartlockIdSchema = schemas.postSmartlockSyncResourcePathSmartlockIdSchema;
|
|
700
|
+
exports.postSmartlockSyncResourceResponseSchema = schemas.postSmartlockSyncResourceResponseSchema;
|
|
701
|
+
exports.postSmartlockSyncResourceStatus204Schema = schemas.postSmartlockSyncResourceStatus204Schema;
|
|
702
|
+
exports.postSmartlockSyncResourceStatus400Schema = schemas.postSmartlockSyncResourceStatus400Schema;
|
|
703
|
+
exports.postSmartlockSyncResourceStatus401Schema = schemas.postSmartlockSyncResourceStatus401Schema;
|
|
704
|
+
exports.postSmartlockUnlockActionAdvancedResourceErrorSchema = schemas.postSmartlockUnlockActionAdvancedResourceErrorSchema;
|
|
705
|
+
exports.postSmartlockUnlockActionAdvancedResourcePathSmartlockIdSchema = schemas.postSmartlockUnlockActionAdvancedResourcePathSmartlockIdSchema;
|
|
706
|
+
exports.postSmartlockUnlockActionAdvancedResourceResponseSchema = schemas.postSmartlockUnlockActionAdvancedResourceResponseSchema;
|
|
707
|
+
exports.postSmartlockUnlockActionAdvancedResourceStatus200Schema = schemas.postSmartlockUnlockActionAdvancedResourceStatus200Schema;
|
|
708
|
+
exports.postSmartlockUnlockActionAdvancedResourceStatus400Schema = schemas.postSmartlockUnlockActionAdvancedResourceStatus400Schema;
|
|
709
|
+
exports.postSmartlockUnlockActionAdvancedResourceStatus401Schema = schemas.postSmartlockUnlockActionAdvancedResourceStatus401Schema;
|
|
710
|
+
exports.postSmartlockUnlockActionAdvancedResourceStatus405Schema = schemas.postSmartlockUnlockActionAdvancedResourceStatus405Schema;
|
|
711
|
+
exports.postSmartlockUnlockActionResourceErrorSchema = schemas.postSmartlockUnlockActionResourceErrorSchema;
|
|
712
|
+
exports.postSmartlockUnlockActionResourcePathSmartlockIdSchema = schemas.postSmartlockUnlockActionResourcePathSmartlockIdSchema;
|
|
713
|
+
exports.postSmartlockUnlockActionResourceResponseSchema = schemas.postSmartlockUnlockActionResourceResponseSchema;
|
|
714
|
+
exports.postSmartlockUnlockActionResourceStatus204Schema = schemas.postSmartlockUnlockActionResourceStatus204Schema;
|
|
715
|
+
exports.postSmartlockUnlockActionResourceStatus400Schema = schemas.postSmartlockUnlockActionResourceStatus400Schema;
|
|
716
|
+
exports.postSmartlockUnlockActionResourceStatus401Schema = schemas.postSmartlockUnlockActionResourceStatus401Schema;
|
|
717
|
+
exports.postSmartlockUnlockActionResourceStatus405Schema = schemas.postSmartlockUnlockActionResourceStatus405Schema;
|
|
718
|
+
exports.postSmartlockWebConfigResourceBodySchema = schemas.postSmartlockWebConfigResourceBodySchema;
|
|
719
|
+
exports.postSmartlockWebConfigResourceErrorSchema = schemas.postSmartlockWebConfigResourceErrorSchema;
|
|
720
|
+
exports.postSmartlockWebConfigResourcePathSmartlockIdSchema = schemas.postSmartlockWebConfigResourcePathSmartlockIdSchema;
|
|
721
|
+
exports.postSmartlockWebConfigResourceResponseSchema = schemas.postSmartlockWebConfigResourceResponseSchema;
|
|
722
|
+
exports.postSmartlockWebConfigResourceStatus204Schema = schemas.postSmartlockWebConfigResourceStatus204Schema;
|
|
723
|
+
exports.postSmartlockWebConfigResourceStatus400Schema = schemas.postSmartlockWebConfigResourceStatus400Schema;
|
|
724
|
+
exports.postSmartlockWebConfigResourceStatus401Schema = schemas.postSmartlockWebConfigResourceStatus401Schema;
|
|
725
|
+
exports.postSmartlocksAuthsResourceBodySchema = schemas.postSmartlocksAuthsResourceBodySchema;
|
|
726
|
+
exports.postSmartlocksAuthsResourceErrorSchema = schemas.postSmartlocksAuthsResourceErrorSchema;
|
|
727
|
+
exports.postSmartlocksAuthsResourceResponseSchema = schemas.postSmartlocksAuthsResourceResponseSchema;
|
|
728
|
+
exports.postSmartlocksAuthsResourceStatus204Schema = schemas.postSmartlocksAuthsResourceStatus204Schema;
|
|
729
|
+
exports.postSmartlocksAuthsResourceStatus400Schema = schemas.postSmartlocksAuthsResourceStatus400Schema;
|
|
730
|
+
exports.postSmartlocksAuthsResourceStatus401Schema = schemas.postSmartlocksAuthsResourceStatus401Schema;
|
|
731
|
+
exports.postSmartlocksAuthsResourceStatus403Schema = schemas.postSmartlocksAuthsResourceStatus403Schema;
|
|
732
|
+
exports.postSmartlocksAuthsResourceStatus409Schema = schemas.postSmartlocksAuthsResourceStatus409Schema;
|
|
733
|
+
exports.postSmartlocksAuthsResourceStatus423Schema = schemas.postSmartlocksAuthsResourceStatus423Schema;
|
|
734
|
+
exports.preferenceCharacterSetSchema = schemas.preferenceCharacterSetSchema;
|
|
735
|
+
exports.preferenceEncodingSchema = schemas.preferenceEncodingSchema;
|
|
736
|
+
exports.preferenceLanguageSchema = schemas.preferenceLanguageSchema;
|
|
737
|
+
exports.preferenceMediaTypeSchema = schemas.preferenceMediaTypeSchema;
|
|
738
|
+
exports.preferenceSchema = schemas.preferenceSchema;
|
|
739
|
+
exports.principalSchema = schemas.principalSchema;
|
|
740
|
+
exports.productSchema = schemas.productSchema;
|
|
741
|
+
exports.protocolSchema = schemas.protocolSchema;
|
|
742
|
+
exports.publicKeySchema = schemas.publicKeySchema;
|
|
743
|
+
exports.putAccountOtpResourceErrorSchema = schemas.putAccountOtpResourceErrorSchema;
|
|
744
|
+
exports.putAccountOtpResourceResponseSchema = schemas.putAccountOtpResourceResponseSchema;
|
|
745
|
+
exports.putAccountOtpResourceStatus200Schema = schemas.putAccountOtpResourceStatus200Schema;
|
|
746
|
+
exports.putAccountOtpResourceStatus405Schema = schemas.putAccountOtpResourceStatus405Schema;
|
|
747
|
+
exports.putAccountSettingResourceBodySchema = schemas.putAccountSettingResourceBodySchema;
|
|
748
|
+
exports.putAccountSettingResourceErrorSchema = schemas.putAccountSettingResourceErrorSchema;
|
|
749
|
+
exports.putAccountSettingResourceResponseSchema = schemas.putAccountSettingResourceResponseSchema;
|
|
750
|
+
exports.putAccountSettingResourceStatus200Schema = schemas.putAccountSettingResourceStatus200Schema;
|
|
751
|
+
exports.putAccountSettingResourceStatus400Schema = schemas.putAccountSettingResourceStatus400Schema;
|
|
752
|
+
exports.putAccountSettingResourceStatus401Schema = schemas.putAccountSettingResourceStatus401Schema;
|
|
753
|
+
exports.putAccountSubsResourceBodySchema = schemas.putAccountSubsResourceBodySchema;
|
|
754
|
+
exports.putAccountSubsResourceErrorSchema = schemas.putAccountSubsResourceErrorSchema;
|
|
755
|
+
exports.putAccountSubsResourceResponseSchema = schemas.putAccountSubsResourceResponseSchema;
|
|
756
|
+
exports.putAccountSubsResourceStatus200Schema = schemas.putAccountSubsResourceStatus200Schema;
|
|
757
|
+
exports.putAccountSubsResourceStatus400Schema = schemas.putAccountSubsResourceStatus400Schema;
|
|
758
|
+
exports.putAccountUsersResourceBodySchema = schemas.putAccountUsersResourceBodySchema;
|
|
759
|
+
exports.putAccountUsersResourceErrorSchema = schemas.putAccountUsersResourceErrorSchema;
|
|
760
|
+
exports.putAccountUsersResourceResponseSchema = schemas.putAccountUsersResourceResponseSchema;
|
|
761
|
+
exports.putAccountUsersResourceStatus200Schema = schemas.putAccountUsersResourceStatus200Schema;
|
|
762
|
+
exports.putAccountUsersResourceStatus400Schema = schemas.putAccountUsersResourceStatus400Schema;
|
|
763
|
+
exports.putAddressUnitsResourceBodySchema = schemas.putAddressUnitsResourceBodySchema;
|
|
764
|
+
exports.putAddressUnitsResourceErrorSchema = schemas.putAddressUnitsResourceErrorSchema;
|
|
765
|
+
exports.putAddressUnitsResourcePathAddressIdSchema = schemas.putAddressUnitsResourcePathAddressIdSchema;
|
|
766
|
+
exports.putAddressUnitsResourceResponseSchema = schemas.putAddressUnitsResourceResponseSchema;
|
|
767
|
+
exports.putAddressUnitsResourceStatus200Schema = schemas.putAddressUnitsResourceStatus200Schema;
|
|
768
|
+
exports.putAddressUnitsResourceStatus400Schema = schemas.putAddressUnitsResourceStatus400Schema;
|
|
769
|
+
exports.putAddressUnitsResourceStatus401Schema = schemas.putAddressUnitsResourceStatus401Schema;
|
|
770
|
+
exports.putAddressUnitsResourceStatus403Schema = schemas.putAddressUnitsResourceStatus403Schema;
|
|
771
|
+
exports.putAddressesResourceBodySchema = schemas.putAddressesResourceBodySchema;
|
|
772
|
+
exports.putAddressesResourceErrorSchema = schemas.putAddressesResourceErrorSchema;
|
|
773
|
+
exports.putAddressesResourceResponseSchema = schemas.putAddressesResourceResponseSchema;
|
|
774
|
+
exports.putAddressesResourceStatus200Schema = schemas.putAddressesResourceStatus200Schema;
|
|
775
|
+
exports.putAddressesResourceStatus400Schema = schemas.putAddressesResourceStatus400Schema;
|
|
776
|
+
exports.putAddressesResourceStatus401Schema = schemas.putAddressesResourceStatus401Schema;
|
|
777
|
+
exports.putApiKeyAdvancedResourceBodySchema = schemas.putApiKeyAdvancedResourceBodySchema;
|
|
778
|
+
exports.putApiKeyAdvancedResourceErrorSchema = schemas.putApiKeyAdvancedResourceErrorSchema;
|
|
779
|
+
exports.putApiKeyAdvancedResourcePathApiKeyIdSchema = schemas.putApiKeyAdvancedResourcePathApiKeyIdSchema;
|
|
780
|
+
exports.putApiKeyAdvancedResourceResponseSchema = schemas.putApiKeyAdvancedResourceResponseSchema;
|
|
781
|
+
exports.putApiKeyAdvancedResourceStatus204Schema = schemas.putApiKeyAdvancedResourceStatus204Schema;
|
|
782
|
+
exports.putApiKeyAdvancedResourceStatus400Schema = schemas.putApiKeyAdvancedResourceStatus400Schema;
|
|
783
|
+
exports.putApiKeyAdvancedResourceStatus401Schema = schemas.putApiKeyAdvancedResourceStatus401Schema;
|
|
784
|
+
exports.putApiKeyTokensResourceBodySchema = schemas.putApiKeyTokensResourceBodySchema;
|
|
785
|
+
exports.putApiKeyTokensResourceErrorSchema = schemas.putApiKeyTokensResourceErrorSchema;
|
|
786
|
+
exports.putApiKeyTokensResourcePathApiKeyIdSchema = schemas.putApiKeyTokensResourcePathApiKeyIdSchema;
|
|
787
|
+
exports.putApiKeyTokensResourceResponseSchema = schemas.putApiKeyTokensResourceResponseSchema;
|
|
788
|
+
exports.putApiKeyTokensResourceStatus200Schema = schemas.putApiKeyTokensResourceStatus200Schema;
|
|
789
|
+
exports.putApiKeyTokensResourceStatus400Schema = schemas.putApiKeyTokensResourceStatus400Schema;
|
|
790
|
+
exports.putApiKeyTokensResourceStatus401Schema = schemas.putApiKeyTokensResourceStatus401Schema;
|
|
791
|
+
exports.putApiKeysResourceBodySchema = schemas.putApiKeysResourceBodySchema;
|
|
792
|
+
exports.putApiKeysResourceErrorSchema = schemas.putApiKeysResourceErrorSchema;
|
|
793
|
+
exports.putApiKeysResourceResponseSchema = schemas.putApiKeysResourceResponseSchema;
|
|
794
|
+
exports.putApiKeysResourceStatus200Schema = schemas.putApiKeysResourceStatus200Schema;
|
|
795
|
+
exports.putApiKeysResourceStatus400Schema = schemas.putApiKeysResourceStatus400Schema;
|
|
796
|
+
exports.putApiKeysResourceStatus401Schema = schemas.putApiKeysResourceStatus401Schema;
|
|
797
|
+
exports.putDecentralWebhooksResourceBodySchema = schemas.putDecentralWebhooksResourceBodySchema;
|
|
798
|
+
exports.putDecentralWebhooksResourceErrorSchema = schemas.putDecentralWebhooksResourceErrorSchema;
|
|
799
|
+
exports.putDecentralWebhooksResourceResponseSchema = schemas.putDecentralWebhooksResourceResponseSchema;
|
|
800
|
+
exports.putDecentralWebhooksResourceStatus200Schema = schemas.putDecentralWebhooksResourceStatus200Schema;
|
|
801
|
+
exports.putDecentralWebhooksResourceStatus400Schema = schemas.putDecentralWebhooksResourceStatus400Schema;
|
|
802
|
+
exports.putDecentralWebhooksResourceStatus401Schema = schemas.putDecentralWebhooksResourceStatus401Schema;
|
|
803
|
+
exports.putDecentralWebhooksResourceStatus403Schema = schemas.putDecentralWebhooksResourceStatus403Schema;
|
|
804
|
+
exports.putNotificationsResourceBodySchema = schemas.putNotificationsResourceBodySchema;
|
|
805
|
+
exports.putNotificationsResourceErrorSchema = schemas.putNotificationsResourceErrorSchema;
|
|
806
|
+
exports.putNotificationsResourceResponseSchema = schemas.putNotificationsResourceResponseSchema;
|
|
807
|
+
exports.putNotificationsResourceStatus200Schema = schemas.putNotificationsResourceStatus200Schema;
|
|
808
|
+
exports.putNotificationsResourceStatus400Schema = schemas.putNotificationsResourceStatus400Schema;
|
|
809
|
+
exports.putNotificationsResourceStatus401Schema = schemas.putNotificationsResourceStatus401Schema;
|
|
810
|
+
exports.putNotificationsResourceStatus403Schema = schemas.putNotificationsResourceStatus403Schema;
|
|
811
|
+
exports.putSmartlockAuthsAdvancedResourceBodySchema = schemas.putSmartlockAuthsAdvancedResourceBodySchema;
|
|
812
|
+
exports.putSmartlockAuthsAdvancedResourceErrorSchema = schemas.putSmartlockAuthsAdvancedResourceErrorSchema;
|
|
813
|
+
exports.putSmartlockAuthsAdvancedResourceResponseSchema = schemas.putSmartlockAuthsAdvancedResourceResponseSchema;
|
|
814
|
+
exports.putSmartlockAuthsAdvancedResourceStatus200Schema = schemas.putSmartlockAuthsAdvancedResourceStatus200Schema;
|
|
815
|
+
exports.putSmartlockAuthsAdvancedResourceStatus400Schema = schemas.putSmartlockAuthsAdvancedResourceStatus400Schema;
|
|
816
|
+
exports.putSmartlockAuthsAdvancedResourceStatus402Schema = schemas.putSmartlockAuthsAdvancedResourceStatus402Schema;
|
|
817
|
+
exports.putSmartlockAuthsAdvancedResourceStatus409Schema = schemas.putSmartlockAuthsAdvancedResourceStatus409Schema;
|
|
818
|
+
exports.putSmartlockAuthsAdvancedResourceStatus426Schema = schemas.putSmartlockAuthsAdvancedResourceStatus426Schema;
|
|
819
|
+
exports.putSmartlockAuthsResourceBodySchema = schemas.putSmartlockAuthsResourceBodySchema;
|
|
820
|
+
exports.putSmartlockAuthsResourceErrorSchema = schemas.putSmartlockAuthsResourceErrorSchema;
|
|
821
|
+
exports.putSmartlockAuthsResourcePathSmartlockIdSchema = schemas.putSmartlockAuthsResourcePathSmartlockIdSchema;
|
|
822
|
+
exports.putSmartlockAuthsResourceResponseSchema = schemas.putSmartlockAuthsResourceResponseSchema;
|
|
823
|
+
exports.putSmartlockAuthsResourceStatus204Schema = schemas.putSmartlockAuthsResourceStatus204Schema;
|
|
824
|
+
exports.putSmartlockAuthsResourceStatus400Schema = schemas.putSmartlockAuthsResourceStatus400Schema;
|
|
825
|
+
exports.putSmartlockAuthsResourceStatus402Schema = schemas.putSmartlockAuthsResourceStatus402Schema;
|
|
826
|
+
exports.putSmartlockAuthsResourceStatus409Schema = schemas.putSmartlockAuthsResourceStatus409Schema;
|
|
827
|
+
exports.putSmartlockAuthsResourceStatus426Schema = schemas.putSmartlockAuthsResourceStatus426Schema;
|
|
828
|
+
exports.putSmartlocksAuthsResourceBodySchema = schemas.putSmartlocksAuthsResourceBodySchema;
|
|
829
|
+
exports.putSmartlocksAuthsResourceErrorSchema = schemas.putSmartlocksAuthsResourceErrorSchema;
|
|
830
|
+
exports.putSmartlocksAuthsResourceResponseSchema = schemas.putSmartlocksAuthsResourceResponseSchema;
|
|
831
|
+
exports.putSmartlocksAuthsResourceStatus204Schema = schemas.putSmartlocksAuthsResourceStatus204Schema;
|
|
832
|
+
exports.putSmartlocksAuthsResourceStatus400Schema = schemas.putSmartlocksAuthsResourceStatus400Schema;
|
|
833
|
+
exports.putSmartlocksAuthsResourceStatus402Schema = schemas.putSmartlocksAuthsResourceStatus402Schema;
|
|
834
|
+
exports.putSmartlocksAuthsResourceStatus409Schema = schemas.putSmartlocksAuthsResourceStatus409Schema;
|
|
835
|
+
exports.putSmartlocksAuthsResourceStatus426Schema = schemas.putSmartlocksAuthsResourceStatus426Schema;
|
|
836
|
+
exports.rangeSchema = schemas.rangeSchema;
|
|
837
|
+
exports.rangeServiceSchema = schemas.rangeServiceSchema;
|
|
838
|
+
exports.readableByteChannelSchema = schemas.readableByteChannelSchema;
|
|
839
|
+
exports.readerSchema = schemas.readerSchema;
|
|
840
|
+
exports.recipientInfoSchema = schemas.recipientInfoSchema;
|
|
841
|
+
exports.referenceSchema = schemas.referenceSchema;
|
|
842
|
+
exports.representationSchema = schemas.representationSchema;
|
|
843
|
+
exports.requestSchema = schemas.requestSchema;
|
|
844
|
+
exports.reservationAccessTimesUpdateSchema = schemas.reservationAccessTimesUpdateSchema;
|
|
845
|
+
exports.resourceBundleSchema = schemas.resourceBundleSchema;
|
|
846
|
+
exports.responseSchema = schemas.responseSchema;
|
|
847
|
+
exports.restletSchema = schemas.restletSchema;
|
|
848
|
+
exports.roleSchema = schemas.roleSchema;
|
|
849
|
+
exports.scheduledExecutorServiceSchema = schemas.scheduledExecutorServiceSchema;
|
|
850
|
+
exports.selectableChannelSchema = schemas.selectableChannelSchema;
|
|
851
|
+
exports.selectionListenerSchema = schemas.selectionListenerSchema;
|
|
852
|
+
exports.selectionRegistrationSchema = schemas.selectionRegistrationSchema;
|
|
853
|
+
exports.serverInfoSchema = schemas.serverInfoSchema;
|
|
854
|
+
exports.serviceSchema = schemas.serviceSchema;
|
|
855
|
+
exports.shsSubscriptionSchema = schemas.shsSubscriptionSchema;
|
|
856
|
+
exports.smartlockActionSchema = schemas.smartlockActionSchema;
|
|
857
|
+
exports.smartlockAdminPinUpdateSchema = schemas.smartlockAdminPinUpdateSchema;
|
|
858
|
+
exports.smartlockAdvancedConfigSchema = schemas.smartlockAdvancedConfigSchema;
|
|
859
|
+
exports.smartlockAuthCreateSchema = schemas.smartlockAuthCreateSchema;
|
|
860
|
+
exports.smartlockAuthMultiUpdateSchema = schemas.smartlockAuthMultiUpdateSchema;
|
|
861
|
+
exports.smartlockAuthSchema = schemas.smartlockAuthSchema;
|
|
862
|
+
exports.smartlockAuthUpdateSchema = schemas.smartlockAuthUpdateSchema;
|
|
863
|
+
exports.smartlockAuthWithSharedKeyCreateSchema = schemas.smartlockAuthWithSharedKeyCreateSchema;
|
|
864
|
+
exports.smartlockConfigSchema = schemas.smartlockConfigSchema;
|
|
865
|
+
exports.smartlockLogOpenerLogSchema = schemas.smartlockLogOpenerLogSchema;
|
|
866
|
+
exports.smartlockLogSchema = schemas.smartlockLogSchema;
|
|
867
|
+
exports.smartlockOpenerAdvancedConfigSchema = schemas.smartlockOpenerAdvancedConfigSchema;
|
|
868
|
+
exports.smartlockSchema = schemas.smartlockSchema;
|
|
869
|
+
exports.smartlockSmartdoorAdvancedConfigSchema = schemas.smartlockSmartdoorAdvancedConfigSchema;
|
|
870
|
+
exports.smartlockStateSchema = schemas.smartlockStateSchema;
|
|
871
|
+
exports.smartlockUpdateSchema = schemas.smartlockUpdateSchema;
|
|
872
|
+
exports.smartlockWebConfigSchema = schemas.smartlockWebConfigSchema;
|
|
873
|
+
exports.smartlocksAuthAdvancedCreateSchema = schemas.smartlocksAuthAdvancedCreateSchema;
|
|
874
|
+
exports.smartlocksAuthCreateSchema = schemas.smartlocksAuthCreateSchema;
|
|
875
|
+
exports.stackTraceElementSchema = schemas.stackTraceElementSchema;
|
|
876
|
+
exports.staleDeviceSchema = schemas.staleDeviceSchema;
|
|
877
|
+
exports.statusSchema = schemas.statusSchema;
|
|
878
|
+
exports.statusServiceSchema = schemas.statusServiceSchema;
|
|
879
|
+
exports.tagSchema = schemas.tagSchema;
|
|
880
|
+
exports.taskServiceSchema = schemas.taskServiceSchema;
|
|
881
|
+
exports.termsOfUseSchema = schemas.termsOfUseSchema;
|
|
882
|
+
exports.throwableSchema = schemas.throwableSchema;
|
|
883
|
+
exports.tunnelServiceSchema = schemas.tunnelServiceSchema;
|
|
884
|
+
exports.uniformSchema = schemas.uniformSchema;
|
|
885
|
+
exports.userSchema = schemas.userSchema;
|
|
886
|
+
exports.variantSchema = schemas.variantSchema;
|
|
887
|
+
exports.verifierSchema = schemas.verifierSchema;
|
|
888
|
+
exports.wakeupListenerSchema = schemas.wakeupListenerSchema;
|
|
889
|
+
exports.warningSchema = schemas.warningSchema;
|
|
890
|
+
exports.webConfigRequestSchema = schemas.webConfigRequestSchema;
|
|
891
|
+
exports.webhookLogSchema = schemas.webhookLogSchema;
|
|
892
|
+
exports.webhookMessageSchema = schemas.webhookMessageSchema;
|
|
893
|
+
exports.accountDescentOriginEnum = types.accountDescentOriginEnum;
|
|
894
|
+
exports.accountIntegrationVersionEnum = types.accountIntegrationVersionEnum;
|
|
895
|
+
exports.accountSettingWebDeviceSortTypeEnum = types.accountSettingWebDeviceSortTypeEnum;
|
|
896
|
+
exports.accountSettingWebDeviceViewTypeEnum = types.accountSettingWebDeviceViewTypeEnum;
|
|
897
|
+
exports.accountShsSubscriptionTypeEnum = types.accountShsSubscriptionTypeEnum;
|
|
898
|
+
exports.accountUserCreateLanguageEnum = types.accountUserCreateLanguageEnum;
|
|
899
|
+
exports.accountUserUpdateLanguageEnum = types.accountUserUpdateLanguageEnum;
|
|
900
|
+
exports.addressReservationServiceIdEnum = types.addressReservationServiceIdEnum;
|
|
901
|
+
exports.addressReservationStateEnum = types.addressReservationStateEnum;
|
|
902
|
+
exports.addressServiceIdEnum = types.addressServiceIdEnum;
|
|
903
|
+
exports.addressTokenRedeemResultEnum = types.addressTokenRedeemResultEnum;
|
|
904
|
+
exports.addressUnitResponseRedeemResultEnum = types.addressUnitResponseRedeemResultEnum;
|
|
905
|
+
exports.advancedApiKeyCreateTypeEnum = types.advancedApiKeyCreateTypeEnum;
|
|
906
|
+
exports.advancedApiKeyCreateWebhookFeaturesEnum = types.advancedApiKeyCreateWebhookFeaturesEnum;
|
|
907
|
+
exports.advancedApiKeyCreateWebhookStatusEnum = types.advancedApiKeyCreateWebhookStatusEnum;
|
|
908
|
+
exports.advancedApiKeyStatusEnum = types.advancedApiKeyStatusEnum;
|
|
909
|
+
exports.advancedApiKeyTypeEnum = types.advancedApiKeyTypeEnum;
|
|
910
|
+
exports.advancedApiKeyUpdateWebhookFeaturesEnum = types.advancedApiKeyUpdateWebhookFeaturesEnum;
|
|
911
|
+
exports.advancedApiKeyWebhookFeaturesEnum = types.advancedApiKeyWebhookFeaturesEnum;
|
|
912
|
+
exports.advancedApiKeyWebhookStatusEnum = types.advancedApiKeyWebhookStatusEnum;
|
|
913
|
+
exports.apiKeyAdvancedStatusEnum = types.apiKeyAdvancedStatusEnum;
|
|
914
|
+
exports.apiKeyAdvancedTypeEnum = types.apiKeyAdvancedTypeEnum;
|
|
915
|
+
exports.apiKeyAdvancedWebhookFeaturesEnum = types.apiKeyAdvancedWebhookFeaturesEnum;
|
|
916
|
+
exports.apiKeyAdvancedWebhookStatusEnum = types.apiKeyAdvancedWebhookStatusEnum;
|
|
917
|
+
exports.decentralWebhookWebhookFeaturesEnum = types.decentralWebhookWebhookFeaturesEnum;
|
|
918
|
+
exports.myAccountShsSubscriptionTypeEnum = types.myAccountShsSubscriptionTypeEnum;
|
|
919
|
+
exports.responseDimensionsEnum = types.responseDimensionsEnum;
|
|
920
|
+
exports.shsSubscriptionShsSubscriptionTypeEnum = types.shsSubscriptionShsSubscriptionTypeEnum;
|
|
921
|
+
exports.shsSubscriptionStateEnum = types.shsSubscriptionStateEnum;
|
|
922
|
+
exports.shsSubscriptionTypeEnum = types.shsSubscriptionTypeEnum;
|
|
923
|
+
exports.termsOfUseStateEnum = types.termsOfUseStateEnum;
|
|
608
924
|
exports.NukiApi = NukiApi;
|