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
|
@@ -0,0 +1,3592 @@
|
|
|
1
|
+
var z = require('zod');
|
|
2
|
+
|
|
3
|
+
function _interopNamespace(e) {
|
|
4
|
+
if (e && e.__esModule) return e;
|
|
5
|
+
var n = Object.create(null);
|
|
6
|
+
if (e) {
|
|
7
|
+
Object.keys(e).forEach(function (k) {
|
|
8
|
+
if (k !== 'default') {
|
|
9
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
10
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () { return e[k]; }
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
n.default = e;
|
|
18
|
+
return n;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
var z__namespace = /*#__PURE__*/_interopNamespace(z);
|
|
22
|
+
|
|
23
|
+
// @ts-nocheck
|
|
24
|
+
const accountConfigSchema = z__namespace.object({
|
|
25
|
+
alexaPin: z__namespace.string().describe("The alexa pin - used by alexa for unlock actions"),
|
|
26
|
+
gactionsHomePin: z__namespace.string().describe("The google smart home pin - used for unlock actions"),
|
|
27
|
+
otpEnabledDate: z__namespace.iso.datetime().optional().describe("The opt enabled date")
|
|
28
|
+
});
|
|
29
|
+
const accountProfileSchema = z__namespace.object({
|
|
30
|
+
firstName: z__namespace.string().describe("The first name"),
|
|
31
|
+
lastName: z__namespace.string().describe("The last name"),
|
|
32
|
+
address: z__namespace.string().describe("The address"),
|
|
33
|
+
zip: z__namespace.string().describe("The postal code"),
|
|
34
|
+
city: z__namespace.string().describe("The city"),
|
|
35
|
+
country: z__namespace.string().describe("The 2-letter country code")
|
|
36
|
+
});
|
|
37
|
+
const accountDescentSchema = z__namespace.object({
|
|
38
|
+
origin: z__namespace.enum([
|
|
39
|
+
"GOOGLE",
|
|
40
|
+
"APPLE"
|
|
41
|
+
]).describe("The account origin source")
|
|
42
|
+
});
|
|
43
|
+
const termsOfUseSchema = z__namespace.object({
|
|
44
|
+
state: z__namespace.enum([
|
|
45
|
+
"Accepted",
|
|
46
|
+
"Inactive"
|
|
47
|
+
]).optional(),
|
|
48
|
+
publishDate: z__namespace.iso.datetime().optional(),
|
|
49
|
+
acceptanceDate: z__namespace.iso.datetime().optional()
|
|
50
|
+
});
|
|
51
|
+
const accountSchema = z__namespace.object({
|
|
52
|
+
accountId: z__namespace.int().describe("The account id"),
|
|
53
|
+
type: z__namespace.int().describe("The type: 0 .. user, 1 .. company, 2 .. caretaker"),
|
|
54
|
+
email: z__namespace.string().describe("The email address"),
|
|
55
|
+
emailVerified: z__namespace.boolean().optional().describe("true, if the email is verified"),
|
|
56
|
+
name: z__namespace.string().describe("The name"),
|
|
57
|
+
masterAccountId: z__namespace.int().optional().describe("The master account id if it's a sub account"),
|
|
58
|
+
rights: z__namespace.int().optional().describe("The rights bitmask if it's a sub account: 1 .. manage smartlock, 2 .. operate smartlock, 4 .. manage smartlock config, 8 .. manage smartlock authorizations, 16 .. view smartlock logs, 32 .. manage sub accounts, 64 .. create smartlocks"),
|
|
59
|
+
language: z__namespace.string().optional().describe("The language code").meta({
|
|
60
|
+
examples: [
|
|
61
|
+
"de"
|
|
62
|
+
]
|
|
63
|
+
}),
|
|
64
|
+
config: accountConfigSchema.optional().describe("The optional config"),
|
|
65
|
+
profile: accountProfileSchema.optional().describe("The optional profile"),
|
|
66
|
+
creationDate: z__namespace.iso.datetime().describe("The creation date"),
|
|
67
|
+
updateDate: z__namespace.iso.datetime().describe("The update date"),
|
|
68
|
+
descent: accountDescentSchema.optional().describe("Set, if your account is not a standard Nuki Web account"),
|
|
69
|
+
shsSubscriptionType: z__namespace.enum([
|
|
70
|
+
"BUSINESS",
|
|
71
|
+
"STANDARD",
|
|
72
|
+
"BUSINESS_PLUS",
|
|
73
|
+
"API_ONLY"
|
|
74
|
+
]).optional().describe("subscription type of the account (b2b)"),
|
|
75
|
+
b2bActive: z__namespace.boolean().optional(),
|
|
76
|
+
apiTermsOfUse: termsOfUseSchema.optional()
|
|
77
|
+
});
|
|
78
|
+
const accountEmailChangeSchema = z__namespace.object({
|
|
79
|
+
email: z__namespace.string().describe("The new email for the account")
|
|
80
|
+
});
|
|
81
|
+
const accountIntegrationSchema = z__namespace.object({
|
|
82
|
+
version: z__namespace.enum([
|
|
83
|
+
"LEGACY",
|
|
84
|
+
"HYDRA"
|
|
85
|
+
]).describe("If the integration/device is an legacy or from the new oauth implementation"),
|
|
86
|
+
vendorKey: z__namespace.string().describe("Enum key identifying the integration/device, values are e.g. ALEXA, IOS, NUKI_WEB, API_TOKEN etc"),
|
|
87
|
+
subAccountName: z__namespace.string().optional().describe("Name of the sub-account or null if there is none, which is associated with this token"),
|
|
88
|
+
subAccountId: z__namespace.int().optional().describe("Id of the sub-account or null if there is none, which is associated with this token"),
|
|
89
|
+
subAccount: z__namespace.boolean().optional().describe("True if the integration is done via a sub-account"),
|
|
90
|
+
name: z__namespace.string().describe("Name of the token"),
|
|
91
|
+
description: z__namespace.string().optional().describe("Description given by the user, usually only set for api tokens"),
|
|
92
|
+
createdAt: z__namespace.iso.datetime().optional().describe("First creation date of the token"),
|
|
93
|
+
lastActiveAt: z__namespace.iso.datetime().optional().describe("Last refresh date of the token"),
|
|
94
|
+
scopes: z__namespace.array(z__namespace.string()).optional().describe("The scopes which have been granted to the token"),
|
|
95
|
+
warning: z__namespace.boolean().optional().describe("If this is from a legacy integration this is set to true"),
|
|
96
|
+
tokenId: z__namespace.string().optional().describe("The tokenId if this a manual generated api token"),
|
|
97
|
+
advancedType: z__namespace.string().optional().describe("The enum advanced type (HEALTHCARE e.g.) if this integration is a advanced one"),
|
|
98
|
+
advancedState: z__namespace.string().optional().describe("The enum advanced state (TESTING e.g.) if this integration is a advanced one"),
|
|
99
|
+
clientId: z__namespace.string().describe("The clientId of this integration/device used for deleting the integration"),
|
|
100
|
+
sortOrder: z__namespace.int().optional().describe("Sort order by which the entry should be sorted, is being set by the vendor key enum"),
|
|
101
|
+
device: z__namespace.boolean().optional().describe("True this is a device and false this is an integration")
|
|
102
|
+
});
|
|
103
|
+
const accountOtpEnableSchema = z__namespace.object({
|
|
104
|
+
otp: z__namespace.string().describe("The one time password (otp)")
|
|
105
|
+
});
|
|
106
|
+
const accountPasswordResetSchema = z__namespace.object({
|
|
107
|
+
email: z__namespace.string(),
|
|
108
|
+
deleteApiTokens: z__namespace.boolean().optional()
|
|
109
|
+
});
|
|
110
|
+
const staleDeviceSchema = z__namespace.object({
|
|
111
|
+
smartlockId: z__namespace.coerce.bigint().optional(),
|
|
112
|
+
name: z__namespace.string().optional(),
|
|
113
|
+
read: z__namespace.boolean().optional()
|
|
114
|
+
});
|
|
115
|
+
const accountSettingWebSchema = z__namespace.object({
|
|
116
|
+
deviceViewType: z__namespace.enum([
|
|
117
|
+
"LIST",
|
|
118
|
+
"TILE"
|
|
119
|
+
]).optional().describe("The initial view type of the device page"),
|
|
120
|
+
deviceSortType: z__namespace.enum([
|
|
121
|
+
"FAVOURITES_FIRST",
|
|
122
|
+
"NAME_ASC",
|
|
123
|
+
"NAME_DESC",
|
|
124
|
+
"LAST_ADDED_DESC"
|
|
125
|
+
]).optional().describe("The initial sort type of the device page"),
|
|
126
|
+
nukiClubDismissed: z__namespace.boolean().optional().describe("If true, Nuki Club info is dismissed and no banner is shown"),
|
|
127
|
+
annotations: z__namespace.object({}).catchall(z__namespace.object({})).optional().describe('Additional generic settings. Key/Value Pair, key consists of a prefix (DNS subdomain) and a name (can contains alphanumeric characters with dashes, underscores and dots in between) separated by a dash ("/")').meta({
|
|
128
|
+
examples: [
|
|
129
|
+
'{"web.nuki.io/nfcBannerDismissed": true}'
|
|
130
|
+
]
|
|
131
|
+
}),
|
|
132
|
+
removedStaledDevices: z__namespace.array(staleDeviceSchema).optional().describe("List of removed staled devices"),
|
|
133
|
+
markedStaledDevices: z__namespace.array(staleDeviceSchema).optional().describe("List of marked staled devices")
|
|
134
|
+
});
|
|
135
|
+
const accountSettingSchema = z__namespace.object({
|
|
136
|
+
web: accountSettingWebSchema.optional().describe("The account settings for Nuki Web")
|
|
137
|
+
});
|
|
138
|
+
const accountSubCreateSchema = z__namespace.object({
|
|
139
|
+
email: z__namespace.string().describe("The email address").meta({
|
|
140
|
+
examples: [
|
|
141
|
+
"test@test.at"
|
|
142
|
+
]
|
|
143
|
+
}),
|
|
144
|
+
password: z__namespace.string().describe("The password (must be at least 7 chars long)"),
|
|
145
|
+
name: z__namespace.string().describe("The name of the sub account"),
|
|
146
|
+
rights: z__namespace.int().describe("The right bitmask of the sub account: 1 .. operate smartlock, 2 .. change smartlock config, 4 .. manage smartlock users, 8 .. view smartlock logs, 16 .. manage sub accounts"),
|
|
147
|
+
language: z__namespace.string().describe("The language code").meta({
|
|
148
|
+
examples: [
|
|
149
|
+
"de"
|
|
150
|
+
]
|
|
151
|
+
}),
|
|
152
|
+
profile: accountProfileSchema.optional().describe("The optional profile")
|
|
153
|
+
});
|
|
154
|
+
const accountSubUpdateSchema = z__namespace.object({
|
|
155
|
+
email: z__namespace.string().optional().describe("The new email address").meta({
|
|
156
|
+
examples: [
|
|
157
|
+
"test@test.at"
|
|
158
|
+
]
|
|
159
|
+
}),
|
|
160
|
+
password: z__namespace.string().optional().describe("The new password (must be at least 7 chars long)"),
|
|
161
|
+
name: z__namespace.string().optional().describe("The new name of the sub account"),
|
|
162
|
+
rights: z__namespace.int().optional().describe("The new right bitmask of the sub account: 1 .. operate smartlock, 2 .. change smartlock config, 4 .. manage smartlock users, 8 .. view smartlock logs, 16 .. manage sub accounts, 32 .. manage sub accounts, 64 .. create smartlocks"),
|
|
163
|
+
language: z__namespace.string().describe("The language code").meta({
|
|
164
|
+
examples: [
|
|
165
|
+
"de"
|
|
166
|
+
]
|
|
167
|
+
}),
|
|
168
|
+
config: accountConfigSchema.optional().describe("The optional config"),
|
|
169
|
+
profile: accountProfileSchema.optional().describe("The optional profile")
|
|
170
|
+
});
|
|
171
|
+
const accountUpdateSchema = z__namespace.object({
|
|
172
|
+
email: z__namespace.string().optional().describe("The new email address").meta({
|
|
173
|
+
examples: [
|
|
174
|
+
"test@test.at"
|
|
175
|
+
]
|
|
176
|
+
}),
|
|
177
|
+
password: z__namespace.string().optional().describe("The password (must be at least 7 chars long)"),
|
|
178
|
+
name: z__namespace.string().optional().describe("The name of the account"),
|
|
179
|
+
language: z__namespace.string().describe("The language code").meta({
|
|
180
|
+
examples: [
|
|
181
|
+
"de"
|
|
182
|
+
]
|
|
183
|
+
}),
|
|
184
|
+
config: accountConfigSchema.optional().describe("The optional config"),
|
|
185
|
+
profile: accountProfileSchema.optional().describe("The optional profile")
|
|
186
|
+
});
|
|
187
|
+
const accountUserSchema = z__namespace.object({
|
|
188
|
+
accountUserId: z__namespace.int().describe("The account user id"),
|
|
189
|
+
accountId: z__namespace.int().describe("The account id"),
|
|
190
|
+
type: z__namespace.int().optional().describe("The optional type: 0 .. user, 1 .. company"),
|
|
191
|
+
email: z__namespace.string().describe("The email address"),
|
|
192
|
+
name: z__namespace.string().describe("The name"),
|
|
193
|
+
language: z__namespace.string().optional().describe("The language code").meta({
|
|
194
|
+
examples: [
|
|
195
|
+
"de"
|
|
196
|
+
]
|
|
197
|
+
}),
|
|
198
|
+
operationId: z__namespace.string().optional().describe("The operation id - if set it's locked for another operation"),
|
|
199
|
+
creationDate: z__namespace.iso.datetime().describe("The creation date"),
|
|
200
|
+
updateDate: z__namespace.iso.datetime().describe("The update date")
|
|
201
|
+
});
|
|
202
|
+
const accountUserCreateSchema = z__namespace.object({
|
|
203
|
+
type: z__namespace.int().optional().describe("The optional type - only allowed for caretakers: 0 .. user, 1 .. company"),
|
|
204
|
+
email: z__namespace.string().describe("The email address"),
|
|
205
|
+
name: z__namespace.string().describe("The name"),
|
|
206
|
+
language: z__namespace.enum([
|
|
207
|
+
"en",
|
|
208
|
+
"de",
|
|
209
|
+
"es",
|
|
210
|
+
"fr",
|
|
211
|
+
"it",
|
|
212
|
+
"nl",
|
|
213
|
+
"cs",
|
|
214
|
+
"sk"
|
|
215
|
+
]).optional().describe("The language code")
|
|
216
|
+
});
|
|
217
|
+
const accountUserUpdateSchema = z__namespace.object({
|
|
218
|
+
email: z__namespace.string().optional().describe("The new email address").meta({
|
|
219
|
+
examples: [
|
|
220
|
+
"test@test.at"
|
|
221
|
+
]
|
|
222
|
+
}),
|
|
223
|
+
name: z__namespace.string().optional().describe("The new name of the sub account"),
|
|
224
|
+
language: z__namespace.enum([
|
|
225
|
+
"en",
|
|
226
|
+
"de",
|
|
227
|
+
"es",
|
|
228
|
+
"fr",
|
|
229
|
+
"it",
|
|
230
|
+
"nl",
|
|
231
|
+
"cs",
|
|
232
|
+
"sk"
|
|
233
|
+
]).optional().describe("The new language code")
|
|
234
|
+
});
|
|
235
|
+
const addressSchema = z__namespace.object({
|
|
236
|
+
addressId: z__namespace.int().describe("The address id"),
|
|
237
|
+
accountId: z__namespace.int().describe("The account id"),
|
|
238
|
+
name: z__namespace.string().describe("The name of the address"),
|
|
239
|
+
smartlockIds: z__namespace.array(z__namespace.coerce.bigint()).describe("The smartlocks for this address"),
|
|
240
|
+
serviceId: z__namespace.enum([
|
|
241
|
+
"airbnb",
|
|
242
|
+
"bookingsync"
|
|
243
|
+
]).optional().describe("The optional service id if the address is from an partner service"),
|
|
244
|
+
timeZone: z__namespace.string().optional().describe("The timezone"),
|
|
245
|
+
checkInTime: z__namespace.int().optional().describe("The optional check in time (minutes of the day)"),
|
|
246
|
+
checkOutTime: z__namespace.int().optional().describe("The optional check out time (minutes of the day)"),
|
|
247
|
+
settings: z__namespace.object({}).catchall(z__namespace.object({})).optional().describe("The optional settings object"),
|
|
248
|
+
creationDate: z__namespace.iso.datetime().describe("The creation date"),
|
|
249
|
+
updateDate: z__namespace.iso.datetime().describe("The update date")
|
|
250
|
+
});
|
|
251
|
+
const addressCreateSchema = z__namespace.object({
|
|
252
|
+
name: z__namespace.string().describe("The name of the address"),
|
|
253
|
+
smartlockIds: z__namespace.array(z__namespace.coerce.bigint()).describe("The smartlocks for this address")
|
|
254
|
+
});
|
|
255
|
+
const addressReservationSchema = z__namespace.object({
|
|
256
|
+
id: z__namespace.string().describe("The id"),
|
|
257
|
+
addressId: z__namespace.int().describe("The address id"),
|
|
258
|
+
accountId: z__namespace.int().describe("The account id"),
|
|
259
|
+
email: z__namespace.string().describe("The email of the guest"),
|
|
260
|
+
name: z__namespace.string().describe("The name of the guest"),
|
|
261
|
+
guests: z__namespace.int().describe("The number of guests"),
|
|
262
|
+
guestsIssued: z__namespace.int().describe("The number of guests issued"),
|
|
263
|
+
keypadIssued: z__namespace.boolean().describe("True if a keypad authorization was issued"),
|
|
264
|
+
state: z__namespace.enum([
|
|
265
|
+
"canceled",
|
|
266
|
+
"accepted"
|
|
267
|
+
]).describe("The state"),
|
|
268
|
+
serviceId: z__namespace.enum([
|
|
269
|
+
"airbnb",
|
|
270
|
+
"bookingsync"
|
|
271
|
+
]).optional().describe("The optional service id if the address is from an partner service"),
|
|
272
|
+
reference: z__namespace.string().optional().describe("The reference (booking code)"),
|
|
273
|
+
automation: z__namespace.int().describe("The automation state"),
|
|
274
|
+
checkedIn: z__namespace.boolean().optional().describe("True if the user has checked in, false if the check in is pending, null if it isn't monitored"),
|
|
275
|
+
startDate: z__namespace.iso.datetime().describe("The start date"),
|
|
276
|
+
endDate: z__namespace.iso.datetime().describe("The end date"),
|
|
277
|
+
updateDate: z__namespace.iso.datetime().describe("The update date"),
|
|
278
|
+
isCurrentlyIssuingAuth: z__namespace.boolean(),
|
|
279
|
+
isCurrentlyRevokingAuth: z__namespace.boolean(),
|
|
280
|
+
hasCustomAccessTimes: z__namespace.boolean(),
|
|
281
|
+
currentlyIssuingAuth: z__namespace.boolean().optional(),
|
|
282
|
+
currentlyRevokingAuth: z__namespace.boolean().optional()
|
|
283
|
+
});
|
|
284
|
+
const addressTokenSchema = z__namespace.object({
|
|
285
|
+
id: z__namespace.string().describe("The id"),
|
|
286
|
+
addressId: z__namespace.int().describe("The address id"),
|
|
287
|
+
creationDate: z__namespace.iso.datetime().describe("The creation date"),
|
|
288
|
+
redeemDate: z__namespace.iso.datetime().describe("The redeem date"),
|
|
289
|
+
redeemAccountId: z__namespace.int().describe("The redeem account id"),
|
|
290
|
+
inviteKeys: z__namespace.array(z__namespace.string()).optional().describe("The list of invite keys"),
|
|
291
|
+
redeemResult: z__namespace.enum([
|
|
292
|
+
"ok",
|
|
293
|
+
"failed"
|
|
294
|
+
]).optional().describe("The redeem result")
|
|
295
|
+
});
|
|
296
|
+
const addressTokenInfoSchema = z__namespace.object({
|
|
297
|
+
id: z__namespace.string().describe("The id"),
|
|
298
|
+
addressName: z__namespace.string().describe("The address name"),
|
|
299
|
+
smartlockNames: z__namespace.array(z__namespace.string()).describe("The associated smartlock names")
|
|
300
|
+
});
|
|
301
|
+
const addressUnitSchema = z__namespace.object({
|
|
302
|
+
id: z__namespace.string().optional().describe("The id"),
|
|
303
|
+
name: z__namespace.string().describe("The name of the address unit"),
|
|
304
|
+
addressId: z__namespace.int().optional().describe("The address id"),
|
|
305
|
+
addressTokenId: z__namespace.string().optional().describe("The address token id"),
|
|
306
|
+
operationId: z__namespace.string().optional().describe("The operation id - if set it's locked for another operation")
|
|
307
|
+
});
|
|
308
|
+
const addressUnitResponseSchema = z__namespace.object({
|
|
309
|
+
id: z__namespace.string().optional().describe("The id"),
|
|
310
|
+
name: z__namespace.string().describe("The name of the address unit"),
|
|
311
|
+
addressId: z__namespace.int().optional().describe("The address id"),
|
|
312
|
+
addressTokenId: z__namespace.string().optional().describe("The address token id"),
|
|
313
|
+
operationId: z__namespace.string().optional().describe("The operation id - if set it's locked for another operation"),
|
|
314
|
+
creationDate: z__namespace.iso.datetime().describe("The creation date"),
|
|
315
|
+
redeemDate: z__namespace.iso.datetime().describe("The redeem date"),
|
|
316
|
+
redeemResult: z__namespace.enum([
|
|
317
|
+
"ok",
|
|
318
|
+
"failed"
|
|
319
|
+
]).optional().describe("The redeem result")
|
|
320
|
+
});
|
|
321
|
+
const addressUpdateSchema = z__namespace.object({
|
|
322
|
+
name: z__namespace.string().optional().describe("The name of the address"),
|
|
323
|
+
smartlockIds: z__namespace.array(z__namespace.coerce.bigint()).optional().describe("The smartlocks for this address"),
|
|
324
|
+
settings: z__namespace.object({}).catchall(z__namespace.object({})).optional().describe("The optional settings")
|
|
325
|
+
});
|
|
326
|
+
const advancedApiKeySchema = z__namespace.object({
|
|
327
|
+
name: z__namespace.string().describe("The name of the company for which you apply for access"),
|
|
328
|
+
country: z__namespace.string().describe("The country of the headquarter or the country where you are mainly doing business in"),
|
|
329
|
+
description: z__namespace.string().describe("Describe the services and/or products you offer to your customers and how your customers would use Nuki devices in their processes"),
|
|
330
|
+
type: z__namespace.enum([
|
|
331
|
+
"ONLY_SECRET",
|
|
332
|
+
"SHORT_RENTAL",
|
|
333
|
+
"HEALTHCARE",
|
|
334
|
+
"SMART_HOME",
|
|
335
|
+
"OTHER"
|
|
336
|
+
]).describe("The application type"),
|
|
337
|
+
webhookStatus: z__namespace.enum([
|
|
338
|
+
"ACTIVE",
|
|
339
|
+
"DEACTIVATED"
|
|
340
|
+
]).optional().describe("The status of the webhook posting automation"),
|
|
341
|
+
url: z__namespace.string().describe("A website where we can find more information on the company and its business model"),
|
|
342
|
+
email: z__namespace.string().describe("An email address where we can contact you for checks on your application"),
|
|
343
|
+
webhookUrl: z__namespace.string().describe("The URL where our webhooks should point to"),
|
|
344
|
+
webhookFeatures: z__namespace.array(z__namespace.enum([
|
|
345
|
+
"DEVICE_STATUS",
|
|
346
|
+
"DEVICE_MASTERDATA",
|
|
347
|
+
"DEVICE_CONFIG",
|
|
348
|
+
"DEVICE_LOGS",
|
|
349
|
+
"DEVICE_AUTHS",
|
|
350
|
+
"ACCOUNT_USER"
|
|
351
|
+
])).refine((items)=>new Set(items).size === items.length, {
|
|
352
|
+
message: "Array entries must be unique"
|
|
353
|
+
}).describe("The features to trigger webhooks, for all types except 'ONLY_SECRET'"),
|
|
354
|
+
restricted: z__namespace.boolean().describe("Whether the advanced API key is restricted"),
|
|
355
|
+
secret: z__namespace.string().describe("The client secret, visible if application is approved (status >= 'TESTING')"),
|
|
356
|
+
status: z__namespace.enum([
|
|
357
|
+
"INACTIVE",
|
|
358
|
+
"APPLIED",
|
|
359
|
+
"TESTING",
|
|
360
|
+
"ACTIVE"
|
|
361
|
+
]).describe("The application status"),
|
|
362
|
+
creationDate: z__namespace.iso.datetime().describe("The creation date"),
|
|
363
|
+
updateDate: z__namespace.iso.datetime().describe("The update date")
|
|
364
|
+
});
|
|
365
|
+
const advancedApiKeyCreateSchema = z__namespace.object({
|
|
366
|
+
name: z__namespace.string().describe("The name of the company for which you apply for access"),
|
|
367
|
+
country: z__namespace.string().describe("The country of the headquarter or the country where you are mainly doing business in"),
|
|
368
|
+
description: z__namespace.string().describe("Describe the services and/or products you offer to your customers and how your customers would use Nuki devices in their processes"),
|
|
369
|
+
type: z__namespace.enum([
|
|
370
|
+
"ONLY_SECRET",
|
|
371
|
+
"SHORT_RENTAL",
|
|
372
|
+
"HEALTHCARE",
|
|
373
|
+
"SMART_HOME",
|
|
374
|
+
"OTHER"
|
|
375
|
+
]).describe("The application type"),
|
|
376
|
+
webhookStatus: z__namespace.enum([
|
|
377
|
+
"ACTIVE",
|
|
378
|
+
"DEACTIVATED"
|
|
379
|
+
]).optional().describe("The status of the webhook posting automation"),
|
|
380
|
+
url: z__namespace.string().describe("A website where we can find more information on the company and its business model"),
|
|
381
|
+
email: z__namespace.string().describe("An email address where we can contact you for checks on your application"),
|
|
382
|
+
webhookUrl: z__namespace.string().describe("The URL where our webhooks should point to"),
|
|
383
|
+
webhookFeatures: z__namespace.array(z__namespace.enum([
|
|
384
|
+
"DEVICE_STATUS",
|
|
385
|
+
"DEVICE_MASTERDATA",
|
|
386
|
+
"DEVICE_CONFIG",
|
|
387
|
+
"DEVICE_LOGS",
|
|
388
|
+
"DEVICE_AUTHS",
|
|
389
|
+
"ACCOUNT_USER"
|
|
390
|
+
])).refine((items)=>new Set(items).size === items.length, {
|
|
391
|
+
message: "Array entries must be unique"
|
|
392
|
+
}).describe("The features to trigger webhooks, for all types except 'ONLY_SECRET'"),
|
|
393
|
+
restricted: z__namespace.boolean().describe("Whether the advanced API key is restricted")
|
|
394
|
+
});
|
|
395
|
+
const advancedApiKeyUpdateSchema = z__namespace.object({
|
|
396
|
+
webhookUrl: z__namespace.string().describe("The URL where our webhooks should point to"),
|
|
397
|
+
webhookFeatures: z__namespace.array(z__namespace.enum([
|
|
398
|
+
"DEVICE_STATUS",
|
|
399
|
+
"DEVICE_MASTERDATA",
|
|
400
|
+
"DEVICE_CONFIG",
|
|
401
|
+
"DEVICE_LOGS",
|
|
402
|
+
"DEVICE_AUTHS",
|
|
403
|
+
"ACCOUNT_USER"
|
|
404
|
+
])).refine((items)=>new Set(items).size === items.length, {
|
|
405
|
+
message: "Array entries must be unique"
|
|
406
|
+
}).describe("The features to trigger webhooks, for all types except 'ONLY_SECRET'")
|
|
407
|
+
});
|
|
408
|
+
const advancedConfirmationResponseSchema = z__namespace.object({
|
|
409
|
+
requestId: z__namespace.string().describe("A UUID to identify the upcoming asynchronously web hook response"),
|
|
410
|
+
error: z__namespace.string().optional().describe("Contains error message and smartlock IDs, if auths can not be created because they need subscription.")
|
|
411
|
+
});
|
|
412
|
+
const apiKeySchema = z__namespace.object({
|
|
413
|
+
apiKeyId: z__namespace.int().describe("The id"),
|
|
414
|
+
accountId: z__namespace.int().describe("The account id"),
|
|
415
|
+
description: z__namespace.string().optional().describe("The description"),
|
|
416
|
+
redirectUris: z__namespace.array(z__namespace.string()).optional().describe("The redirect uris"),
|
|
417
|
+
creationDate: z__namespace.iso.datetime().describe("The creation date"),
|
|
418
|
+
apiKey: z__namespace.string().optional().describe("The api key")
|
|
419
|
+
});
|
|
420
|
+
const apiKeyAdvancedSchema = z__namespace.object({
|
|
421
|
+
name: z__namespace.string().optional(),
|
|
422
|
+
country: z__namespace.string().optional(),
|
|
423
|
+
description: z__namespace.string().optional(),
|
|
424
|
+
type: z__namespace.enum([
|
|
425
|
+
"ONLY_SECRET",
|
|
426
|
+
"SHORT_RENTAL",
|
|
427
|
+
"HEALTHCARE",
|
|
428
|
+
"SMART_HOME",
|
|
429
|
+
"OTHER"
|
|
430
|
+
]).optional(),
|
|
431
|
+
url: z__namespace.string().optional(),
|
|
432
|
+
email: z__namespace.string().optional(),
|
|
433
|
+
webhookFeatures: z__namespace.array(z__namespace.enum([
|
|
434
|
+
"DEVICE_STATUS",
|
|
435
|
+
"DEVICE_MASTERDATA",
|
|
436
|
+
"DEVICE_CONFIG",
|
|
437
|
+
"DEVICE_LOGS",
|
|
438
|
+
"DEVICE_AUTHS",
|
|
439
|
+
"ACCOUNT_USER"
|
|
440
|
+
])).refine((items)=>new Set(items).size === items.length, {
|
|
441
|
+
message: "Array entries must be unique"
|
|
442
|
+
}).optional(),
|
|
443
|
+
webhookUrl: z__namespace.string().optional(),
|
|
444
|
+
webhookSentSuccessfully: z__namespace.int().optional(),
|
|
445
|
+
webhookSentErroneous: z__namespace.int().optional(),
|
|
446
|
+
lastSuccessfulPost: z__namespace.iso.datetime().optional(),
|
|
447
|
+
lastPostDuration: z__namespace.coerce.bigint().optional(),
|
|
448
|
+
lastPostSuccesful: z__namespace.boolean().optional(),
|
|
449
|
+
status: z__namespace.enum([
|
|
450
|
+
"INACTIVE",
|
|
451
|
+
"APPLIED",
|
|
452
|
+
"TESTING",
|
|
453
|
+
"ACTIVE"
|
|
454
|
+
]).optional(),
|
|
455
|
+
webhookStatus: z__namespace.enum([
|
|
456
|
+
"ACTIVE",
|
|
457
|
+
"DEACTIVATED"
|
|
458
|
+
]).optional(),
|
|
459
|
+
creationDate: z__namespace.iso.datetime().optional(),
|
|
460
|
+
updateDate: z__namespace.iso.datetime().optional(),
|
|
461
|
+
restricted: z__namespace.boolean().optional()
|
|
462
|
+
});
|
|
463
|
+
const apiKeyCreateSchema = z__namespace.object({
|
|
464
|
+
description: z__namespace.string().optional().describe("The description"),
|
|
465
|
+
redirectUris: z__namespace.array(z__namespace.string()).optional().describe("The list of redirect uris")
|
|
466
|
+
});
|
|
467
|
+
const completableFutureListApiKeySchema = z__namespace.object({
|
|
468
|
+
completedExceptionally: z__namespace.boolean().optional(),
|
|
469
|
+
numberOfDependents: z__namespace.int().optional(),
|
|
470
|
+
done: z__namespace.boolean().optional(),
|
|
471
|
+
cancelled: z__namespace.boolean().optional()
|
|
472
|
+
});
|
|
473
|
+
const apiKeyServiceSchema = z__namespace.object({
|
|
474
|
+
byActiveWebhook: completableFutureListApiKeySchema.optional()
|
|
475
|
+
});
|
|
476
|
+
const apiKeyTokenSchema = z__namespace.object({
|
|
477
|
+
id: z__namespace.string().describe("The id"),
|
|
478
|
+
accountId: z__namespace.int().describe("The account id"),
|
|
479
|
+
description: z__namespace.string().optional().describe("The description"),
|
|
480
|
+
accessToken: z__namespace.string().optional().describe("The access token"),
|
|
481
|
+
scopes: z__namespace.array(z__namespace.string()).describe("The list of scopes"),
|
|
482
|
+
creationDate: z__namespace.iso.datetime().describe("The creation date")
|
|
483
|
+
});
|
|
484
|
+
const apiKeyTokenCreateSchema = z__namespace.object({
|
|
485
|
+
description: z__namespace.string().optional().describe("The description"),
|
|
486
|
+
scopes: z__namespace.array(z__namespace.string()).optional().describe("The list of scopes")
|
|
487
|
+
});
|
|
488
|
+
const apiKeyTokenUpdateSchema = z__namespace.object({
|
|
489
|
+
description: z__namespace.string().optional().describe("The description"),
|
|
490
|
+
scopes: z__namespace.array(z__namespace.string()).optional().describe("The list of scopes")
|
|
491
|
+
});
|
|
492
|
+
const apiKeyUpdateSchema = z__namespace.object({
|
|
493
|
+
description: z__namespace.string().optional().describe("The description"),
|
|
494
|
+
redirectUris: z__namespace.array(z__namespace.string()).optional().describe("The list of redirect uris")
|
|
495
|
+
});
|
|
496
|
+
const filterSchema = z__namespace.object({});
|
|
497
|
+
const levelSchema = z__namespace.object({
|
|
498
|
+
name: z__namespace.string().optional(),
|
|
499
|
+
resourceBundleName: z__namespace.string().optional(),
|
|
500
|
+
localizedName: z__namespace.string().optional()
|
|
501
|
+
});
|
|
502
|
+
const formatterSchema = z__namespace.object({});
|
|
503
|
+
const errorManagerSchema = z__namespace.object({});
|
|
504
|
+
const handlerSchema = z__namespace.object({
|
|
505
|
+
filter: filterSchema.optional(),
|
|
506
|
+
formatter: formatterSchema.optional(),
|
|
507
|
+
errorManager: errorManagerSchema.optional(),
|
|
508
|
+
encoding: z__namespace.string().optional(),
|
|
509
|
+
level: levelSchema.optional()
|
|
510
|
+
});
|
|
511
|
+
const localeSchema = z__namespace.object({
|
|
512
|
+
language: z__namespace.string().optional(),
|
|
513
|
+
displayName: z__namespace.string().optional(),
|
|
514
|
+
country: z__namespace.string().optional(),
|
|
515
|
+
variant: z__namespace.string().optional(),
|
|
516
|
+
script: z__namespace.string().optional(),
|
|
517
|
+
unicodeLocaleAttributes: z__namespace.array(z__namespace.string()).refine((items)=>new Set(items).size === items.length, {
|
|
518
|
+
message: "Array entries must be unique"
|
|
519
|
+
}).optional(),
|
|
520
|
+
unicodeLocaleKeys: z__namespace.array(z__namespace.string()).refine((items)=>new Set(items).size === items.length, {
|
|
521
|
+
message: "Array entries must be unique"
|
|
522
|
+
}).optional(),
|
|
523
|
+
displayLanguage: z__namespace.string().optional(),
|
|
524
|
+
displayScript: z__namespace.string().optional(),
|
|
525
|
+
displayCountry: z__namespace.string().optional(),
|
|
526
|
+
displayVariant: z__namespace.string().optional(),
|
|
527
|
+
extensionKeys: z__namespace.array(z__namespace.string()).refine((items)=>new Set(items).size === items.length, {
|
|
528
|
+
message: "Array entries must be unique"
|
|
529
|
+
}).optional(),
|
|
530
|
+
iso3Language: z__namespace.string().optional(),
|
|
531
|
+
iso3Country: z__namespace.string().optional()
|
|
532
|
+
});
|
|
533
|
+
const enumerationStringSchema = z__namespace.object({});
|
|
534
|
+
const resourceBundleSchema = z__namespace.object({
|
|
535
|
+
locale: localeSchema.optional(),
|
|
536
|
+
keys: enumerationStringSchema.optional(),
|
|
537
|
+
baseBundleName: z__namespace.string().optional()
|
|
538
|
+
});
|
|
539
|
+
const loggerSchema = z__namespace.object({
|
|
540
|
+
name: z__namespace.string().optional(),
|
|
541
|
+
get parent () {
|
|
542
|
+
return loggerSchema.optional();
|
|
543
|
+
},
|
|
544
|
+
filter: filterSchema.optional(),
|
|
545
|
+
level: levelSchema.optional(),
|
|
546
|
+
resourceBundleName: z__namespace.string().optional(),
|
|
547
|
+
handlers: z__namespace.array(handlerSchema).optional(),
|
|
548
|
+
useParentHandlers: z__namespace.boolean().optional(),
|
|
549
|
+
resourceBundle: resourceBundleSchema.optional()
|
|
550
|
+
});
|
|
551
|
+
const restletSchema = z__namespace.object({
|
|
552
|
+
author: z__namespace.string().optional(),
|
|
553
|
+
get context () {
|
|
554
|
+
return contextSchema.optional();
|
|
555
|
+
},
|
|
556
|
+
description: z__namespace.string().optional(),
|
|
557
|
+
name: z__namespace.string().optional(),
|
|
558
|
+
owner: z__namespace.string().optional(),
|
|
559
|
+
started: z__namespace.boolean().optional(),
|
|
560
|
+
get logger () {
|
|
561
|
+
return loggerSchema.optional();
|
|
562
|
+
},
|
|
563
|
+
get application () {
|
|
564
|
+
return applicationSchema.optional();
|
|
565
|
+
},
|
|
566
|
+
stopped: z__namespace.boolean().optional()
|
|
567
|
+
});
|
|
568
|
+
const parameterSchema = z__namespace.object({
|
|
569
|
+
name: z__namespace.string().optional(),
|
|
570
|
+
value: z__namespace.string().optional()
|
|
571
|
+
});
|
|
572
|
+
const enrolerSchema = z__namespace.object({});
|
|
573
|
+
const verifierSchema = z__namespace.object({});
|
|
574
|
+
const scheduledExecutorServiceSchema = z__namespace.object({
|
|
575
|
+
terminated: z__namespace.boolean().optional(),
|
|
576
|
+
shutdown: z__namespace.boolean().optional()
|
|
577
|
+
});
|
|
578
|
+
const contextSchema = z__namespace.object({
|
|
579
|
+
get clientDispatcher () {
|
|
580
|
+
return restletSchema.optional();
|
|
581
|
+
},
|
|
582
|
+
get serverDispatcher () {
|
|
583
|
+
return restletSchema.optional();
|
|
584
|
+
},
|
|
585
|
+
attributes: z__namespace.object({}).catchall(z__namespace.object({})).optional(),
|
|
586
|
+
get logger () {
|
|
587
|
+
return loggerSchema.optional();
|
|
588
|
+
},
|
|
589
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
590
|
+
defaultEnroler: enrolerSchema.optional(),
|
|
591
|
+
defaultVerifier: verifierSchema.optional(),
|
|
592
|
+
executorService: scheduledExecutorServiceSchema.optional()
|
|
593
|
+
});
|
|
594
|
+
const roleSchema = z__namespace.object({
|
|
595
|
+
get application () {
|
|
596
|
+
return applicationSchema.optional();
|
|
597
|
+
},
|
|
598
|
+
get childRoles () {
|
|
599
|
+
return z__namespace.array(roleSchema).optional();
|
|
600
|
+
},
|
|
601
|
+
description: z__namespace.string().optional(),
|
|
602
|
+
name: z__namespace.string().optional()
|
|
603
|
+
});
|
|
604
|
+
const serviceSchema = z__namespace.object({
|
|
605
|
+
get context () {
|
|
606
|
+
return contextSchema.optional();
|
|
607
|
+
},
|
|
608
|
+
enabled: z__namespace.boolean().optional(),
|
|
609
|
+
started: z__namespace.boolean().optional(),
|
|
610
|
+
stopped: z__namespace.boolean().optional()
|
|
611
|
+
});
|
|
612
|
+
const connegServiceSchema = z__namespace.object({
|
|
613
|
+
get context () {
|
|
614
|
+
return contextSchema.optional();
|
|
615
|
+
},
|
|
616
|
+
enabled: z__namespace.boolean().optional(),
|
|
617
|
+
started: z__namespace.boolean().optional(),
|
|
618
|
+
strict: z__namespace.boolean().optional(),
|
|
619
|
+
stopped: z__namespace.boolean().optional()
|
|
620
|
+
});
|
|
621
|
+
const converterServiceSchema = z__namespace.object({
|
|
622
|
+
get context () {
|
|
623
|
+
return contextSchema.optional();
|
|
624
|
+
},
|
|
625
|
+
enabled: z__namespace.boolean().optional(),
|
|
626
|
+
started: z__namespace.boolean().optional(),
|
|
627
|
+
stopped: z__namespace.boolean().optional()
|
|
628
|
+
});
|
|
629
|
+
const metadataSchema = z__namespace.object({
|
|
630
|
+
description: z__namespace.string().optional(),
|
|
631
|
+
name: z__namespace.string().optional(),
|
|
632
|
+
get parent () {
|
|
633
|
+
return metadataSchema.optional();
|
|
634
|
+
}
|
|
635
|
+
});
|
|
636
|
+
const characterSetSchema = z__namespace.object({
|
|
637
|
+
description: z__namespace.string().optional(),
|
|
638
|
+
name: z__namespace.string().optional(),
|
|
639
|
+
get parent () {
|
|
640
|
+
return metadataSchema.optional();
|
|
641
|
+
}
|
|
642
|
+
});
|
|
643
|
+
const encodingSchema = z__namespace.object({
|
|
644
|
+
description: z__namespace.string().optional(),
|
|
645
|
+
name: z__namespace.string().optional(),
|
|
646
|
+
get parent () {
|
|
647
|
+
return metadataSchema.optional();
|
|
648
|
+
}
|
|
649
|
+
});
|
|
650
|
+
const languageSchema = z__namespace.object({
|
|
651
|
+
description: z__namespace.string().optional(),
|
|
652
|
+
name: z__namespace.string().optional(),
|
|
653
|
+
subTags: z__namespace.array(z__namespace.string()).optional(),
|
|
654
|
+
get parent () {
|
|
655
|
+
return languageSchema.optional();
|
|
656
|
+
},
|
|
657
|
+
primaryTag: z__namespace.string().optional()
|
|
658
|
+
});
|
|
659
|
+
const mediaTypeSchema = z__namespace.object({
|
|
660
|
+
description: z__namespace.string().optional(),
|
|
661
|
+
name: z__namespace.string().optional(),
|
|
662
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
663
|
+
get parent () {
|
|
664
|
+
return mediaTypeSchema.optional();
|
|
665
|
+
},
|
|
666
|
+
mainType: z__namespace.string().optional(),
|
|
667
|
+
concrete: z__namespace.boolean().optional(),
|
|
668
|
+
subType: z__namespace.string().optional()
|
|
669
|
+
});
|
|
670
|
+
const metadataServiceSchema = z__namespace.object({
|
|
671
|
+
get context () {
|
|
672
|
+
return contextSchema.optional();
|
|
673
|
+
},
|
|
674
|
+
enabled: z__namespace.boolean().optional(),
|
|
675
|
+
started: z__namespace.boolean().optional(),
|
|
676
|
+
defaultCharacterSet: characterSetSchema.optional(),
|
|
677
|
+
defaultEncoding: encodingSchema.optional(),
|
|
678
|
+
get defaultLanguage () {
|
|
679
|
+
return languageSchema.optional();
|
|
680
|
+
},
|
|
681
|
+
get defaultMediaType () {
|
|
682
|
+
return mediaTypeSchema.optional();
|
|
683
|
+
},
|
|
684
|
+
allEncodingExtensionNames: z__namespace.array(z__namespace.string()).optional(),
|
|
685
|
+
allCharacterSetExtensionNames: z__namespace.array(z__namespace.string()).optional(),
|
|
686
|
+
allExtensionNames: z__namespace.array(z__namespace.string()).optional(),
|
|
687
|
+
allLanguageExtensionNames: z__namespace.array(z__namespace.string()).optional(),
|
|
688
|
+
allMediaTypeExtensionNames: z__namespace.array(z__namespace.string()).optional(),
|
|
689
|
+
stopped: z__namespace.boolean().optional()
|
|
690
|
+
});
|
|
691
|
+
const rangeServiceSchema = z__namespace.object({
|
|
692
|
+
get context () {
|
|
693
|
+
return contextSchema.optional();
|
|
694
|
+
},
|
|
695
|
+
enabled: z__namespace.boolean().optional(),
|
|
696
|
+
started: z__namespace.boolean().optional(),
|
|
697
|
+
stopped: z__namespace.boolean().optional()
|
|
698
|
+
});
|
|
699
|
+
const protocolSchema = z__namespace.object({
|
|
700
|
+
confidential: z__namespace.boolean().optional(),
|
|
701
|
+
defaultPort: z__namespace.int().optional(),
|
|
702
|
+
description: z__namespace.string().optional(),
|
|
703
|
+
name: z__namespace.string().optional(),
|
|
704
|
+
schemeName: z__namespace.string().optional(),
|
|
705
|
+
technicalName: z__namespace.string().optional(),
|
|
706
|
+
version: z__namespace.string().optional()
|
|
707
|
+
});
|
|
708
|
+
const referenceSchema = z__namespace.object({
|
|
709
|
+
get baseRef () {
|
|
710
|
+
return referenceSchema.optional();
|
|
711
|
+
},
|
|
712
|
+
absolute: z__namespace.boolean().optional(),
|
|
713
|
+
scheme: z__namespace.string().optional(),
|
|
714
|
+
opaque: z__namespace.boolean().optional(),
|
|
715
|
+
authority: z__namespace.string().optional(),
|
|
716
|
+
relative: z__namespace.boolean().optional(),
|
|
717
|
+
query: z__namespace.string().optional(),
|
|
718
|
+
path: z__namespace.string().optional(),
|
|
719
|
+
userInfo: z__namespace.string().optional(),
|
|
720
|
+
schemeSpecificPart: z__namespace.string().optional(),
|
|
721
|
+
fragment: z__namespace.string().optional(),
|
|
722
|
+
extensions: z__namespace.string().optional(),
|
|
723
|
+
extensionsAsArray: z__namespace.array(z__namespace.string()).optional(),
|
|
724
|
+
hierarchicalPart: z__namespace.string().optional(),
|
|
725
|
+
hostDomain: z__namespace.string().optional(),
|
|
726
|
+
hostIdentifier: z__namespace.string().optional(),
|
|
727
|
+
hostPort: z__namespace.int().optional(),
|
|
728
|
+
lastSegment: z__namespace.string().optional(),
|
|
729
|
+
get parentRef () {
|
|
730
|
+
return referenceSchema.optional();
|
|
731
|
+
},
|
|
732
|
+
relativePart: z__namespace.string().optional(),
|
|
733
|
+
get relativeRef () {
|
|
734
|
+
return referenceSchema.optional();
|
|
735
|
+
},
|
|
736
|
+
remainingPart: z__namespace.string().optional(),
|
|
737
|
+
schemeProtocol: protocolSchema.optional(),
|
|
738
|
+
segments: z__namespace.array(z__namespace.string()).optional(),
|
|
739
|
+
get targetRef () {
|
|
740
|
+
return referenceSchema.optional();
|
|
741
|
+
},
|
|
742
|
+
hierarchical: z__namespace.boolean().optional(),
|
|
743
|
+
identifier: z__namespace.string().optional(),
|
|
744
|
+
matrix: z__namespace.string().optional(),
|
|
745
|
+
matrixAsForm: z__namespace.array(parameterSchema).optional(),
|
|
746
|
+
queryAsForm: z__namespace.array(parameterSchema).optional()
|
|
747
|
+
});
|
|
748
|
+
const statusServiceSchema = z__namespace.object({
|
|
749
|
+
get context () {
|
|
750
|
+
return contextSchema.optional();
|
|
751
|
+
},
|
|
752
|
+
enabled: z__namespace.boolean().optional(),
|
|
753
|
+
started: z__namespace.boolean().optional(),
|
|
754
|
+
get connegService () {
|
|
755
|
+
return connegServiceSchema.optional();
|
|
756
|
+
},
|
|
757
|
+
contactEmail: z__namespace.string().optional(),
|
|
758
|
+
get converterService () {
|
|
759
|
+
return converterServiceSchema.optional();
|
|
760
|
+
},
|
|
761
|
+
get homeRef () {
|
|
762
|
+
return referenceSchema.optional();
|
|
763
|
+
},
|
|
764
|
+
get metadataService () {
|
|
765
|
+
return metadataServiceSchema.optional();
|
|
766
|
+
},
|
|
767
|
+
overwriting: z__namespace.boolean().optional(),
|
|
768
|
+
stopped: z__namespace.boolean().optional()
|
|
769
|
+
});
|
|
770
|
+
const taskServiceSchema = z__namespace.object({
|
|
771
|
+
get context () {
|
|
772
|
+
return contextSchema.optional();
|
|
773
|
+
},
|
|
774
|
+
enabled: z__namespace.boolean().optional(),
|
|
775
|
+
started: z__namespace.boolean().optional(),
|
|
776
|
+
corePoolSize: z__namespace.int().optional(),
|
|
777
|
+
daemon: z__namespace.boolean().optional(),
|
|
778
|
+
shutdownAllowed: z__namespace.boolean().optional(),
|
|
779
|
+
terminated: z__namespace.boolean().optional(),
|
|
780
|
+
shutdown: z__namespace.boolean().optional(),
|
|
781
|
+
stopped: z__namespace.boolean().optional()
|
|
782
|
+
});
|
|
783
|
+
const tunnelServiceSchema = z__namespace.object({
|
|
784
|
+
get context () {
|
|
785
|
+
return contextSchema.optional();
|
|
786
|
+
},
|
|
787
|
+
enabled: z__namespace.boolean().optional(),
|
|
788
|
+
started: z__namespace.boolean().optional(),
|
|
789
|
+
characterSetParameter: z__namespace.string().optional(),
|
|
790
|
+
encodingParameter: z__namespace.string().optional(),
|
|
791
|
+
extensionsTunnel: z__namespace.boolean().optional(),
|
|
792
|
+
headersTunnel: z__namespace.boolean().optional(),
|
|
793
|
+
languageParameter: z__namespace.string().optional(),
|
|
794
|
+
mediaTypeParameter: z__namespace.string().optional(),
|
|
795
|
+
methodHeader: z__namespace.string().optional(),
|
|
796
|
+
methodParameter: z__namespace.string().optional(),
|
|
797
|
+
methodTunnel: z__namespace.boolean().optional(),
|
|
798
|
+
preferencesTunnel: z__namespace.boolean().optional(),
|
|
799
|
+
queryTunnel: z__namespace.boolean().optional(),
|
|
800
|
+
userAgentTunnel: z__namespace.boolean().optional(),
|
|
801
|
+
stopped: z__namespace.boolean().optional()
|
|
802
|
+
});
|
|
803
|
+
const connectorServiceSchema = z__namespace.object({
|
|
804
|
+
get context () {
|
|
805
|
+
return contextSchema.optional();
|
|
806
|
+
},
|
|
807
|
+
enabled: z__namespace.boolean().optional(),
|
|
808
|
+
started: z__namespace.boolean().optional(),
|
|
809
|
+
clientProtocols: z__namespace.array(protocolSchema).optional(),
|
|
810
|
+
serverProtocols: z__namespace.array(protocolSchema).optional(),
|
|
811
|
+
stopped: z__namespace.boolean().optional()
|
|
812
|
+
});
|
|
813
|
+
const decoderServiceSchema = z__namespace.object({
|
|
814
|
+
get context () {
|
|
815
|
+
return contextSchema.optional();
|
|
816
|
+
},
|
|
817
|
+
enabled: z__namespace.boolean().optional(),
|
|
818
|
+
started: z__namespace.boolean().optional(),
|
|
819
|
+
stopped: z__namespace.boolean().optional()
|
|
820
|
+
});
|
|
821
|
+
const encoderServiceSchema = z__namespace.object({
|
|
822
|
+
get context () {
|
|
823
|
+
return contextSchema.optional();
|
|
824
|
+
},
|
|
825
|
+
enabled: z__namespace.boolean().optional(),
|
|
826
|
+
started: z__namespace.boolean().optional(),
|
|
827
|
+
get acceptedMediaTypes () {
|
|
828
|
+
return z__namespace.array(mediaTypeSchema).optional();
|
|
829
|
+
},
|
|
830
|
+
get ignoredMediaTypes () {
|
|
831
|
+
return z__namespace.array(mediaTypeSchema).optional();
|
|
832
|
+
},
|
|
833
|
+
minimumSize: z__namespace.coerce.bigint().optional(),
|
|
834
|
+
stopped: z__namespace.boolean().optional()
|
|
835
|
+
});
|
|
836
|
+
const applicationSchema = z__namespace.object({
|
|
837
|
+
author: z__namespace.string().optional(),
|
|
838
|
+
get context () {
|
|
839
|
+
return contextSchema.optional();
|
|
840
|
+
},
|
|
841
|
+
description: z__namespace.string().optional(),
|
|
842
|
+
name: z__namespace.string().optional(),
|
|
843
|
+
owner: z__namespace.string().optional(),
|
|
844
|
+
started: z__namespace.boolean().optional(),
|
|
845
|
+
debugging: z__namespace.boolean().optional(),
|
|
846
|
+
get inboundRoot () {
|
|
847
|
+
return restletSchema.optional();
|
|
848
|
+
},
|
|
849
|
+
get outboundRoot () {
|
|
850
|
+
return restletSchema.optional();
|
|
851
|
+
},
|
|
852
|
+
get roles () {
|
|
853
|
+
return z__namespace.array(roleSchema).optional();
|
|
854
|
+
},
|
|
855
|
+
get services () {
|
|
856
|
+
return z__namespace.array(serviceSchema).optional();
|
|
857
|
+
},
|
|
858
|
+
get connegService () {
|
|
859
|
+
return connegServiceSchema.optional();
|
|
860
|
+
},
|
|
861
|
+
get converterService () {
|
|
862
|
+
return converterServiceSchema.optional();
|
|
863
|
+
},
|
|
864
|
+
get metadataService () {
|
|
865
|
+
return metadataServiceSchema.optional();
|
|
866
|
+
},
|
|
867
|
+
get rangeService () {
|
|
868
|
+
return rangeServiceSchema.optional();
|
|
869
|
+
},
|
|
870
|
+
get statusService () {
|
|
871
|
+
return statusServiceSchema.optional();
|
|
872
|
+
},
|
|
873
|
+
get taskService () {
|
|
874
|
+
return taskServiceSchema.optional();
|
|
875
|
+
},
|
|
876
|
+
get tunnelService () {
|
|
877
|
+
return tunnelServiceSchema.optional();
|
|
878
|
+
},
|
|
879
|
+
get connectorService () {
|
|
880
|
+
return connectorServiceSchema.optional();
|
|
881
|
+
},
|
|
882
|
+
get decoderService () {
|
|
883
|
+
return decoderServiceSchema.optional();
|
|
884
|
+
},
|
|
885
|
+
get encoderService () {
|
|
886
|
+
return encoderServiceSchema.optional();
|
|
887
|
+
},
|
|
888
|
+
get logger () {
|
|
889
|
+
return loggerSchema.optional();
|
|
890
|
+
},
|
|
891
|
+
get application () {
|
|
892
|
+
return applicationSchema.optional();
|
|
893
|
+
},
|
|
894
|
+
stopped: z__namespace.boolean().optional()
|
|
895
|
+
});
|
|
896
|
+
const authenticationInfoSchema = z__namespace.object({
|
|
897
|
+
nextServerNonce: z__namespace.string().optional(),
|
|
898
|
+
nonceCount: z__namespace.int().optional(),
|
|
899
|
+
clientNonce: z__namespace.string().optional(),
|
|
900
|
+
quality: z__namespace.string().optional(),
|
|
901
|
+
responseDigest: z__namespace.string().optional()
|
|
902
|
+
});
|
|
903
|
+
const smartlockWebConfigSchema = z__namespace.object({
|
|
904
|
+
batteryWarningPerMailEnabled: z__namespace.boolean().optional().describe("True if a battery warning is send via email, if null/not send, the value is not being updated"),
|
|
905
|
+
dismissedLiftUpHandleWarning: z__namespace.array(z__namespace.int()).optional().describe("Contains the account ids which have dismissed the lift up handle warning, if null/not send, the value is not being updated. To clear send a empty array []")
|
|
906
|
+
});
|
|
907
|
+
const webConfigRequestSchema = z__namespace.object({
|
|
908
|
+
smartlockId: z__namespace.coerce.bigint().optional(),
|
|
909
|
+
webConfig: smartlockWebConfigSchema.optional()
|
|
910
|
+
});
|
|
911
|
+
const bulkWebConfigRequestSchema = z__namespace.object({
|
|
912
|
+
webConfigRequests: z__namespace.array(webConfigRequestSchema).optional()
|
|
913
|
+
});
|
|
914
|
+
const cacheDirectiveSchema = z__namespace.object({
|
|
915
|
+
digit: z__namespace.boolean().optional(),
|
|
916
|
+
name: z__namespace.string().optional(),
|
|
917
|
+
value: z__namespace.string().optional()
|
|
918
|
+
});
|
|
919
|
+
const publicKeySchema = z__namespace.object({
|
|
920
|
+
encoded: z__namespace.array(z__namespace.string()).optional(),
|
|
921
|
+
format: z__namespace.string().optional(),
|
|
922
|
+
algorithm: z__namespace.string().optional()
|
|
923
|
+
});
|
|
924
|
+
const certificateSchema = z__namespace.object({
|
|
925
|
+
type: z__namespace.string().optional(),
|
|
926
|
+
encoded: z__namespace.array(z__namespace.string()).optional(),
|
|
927
|
+
publicKey: publicKeySchema.optional()
|
|
928
|
+
});
|
|
929
|
+
const challengeSchemeSchema = z__namespace.object({
|
|
930
|
+
description: z__namespace.string().optional(),
|
|
931
|
+
name: z__namespace.string().optional(),
|
|
932
|
+
technicalName: z__namespace.string().optional()
|
|
933
|
+
});
|
|
934
|
+
const challengeRequestSchema = z__namespace.object({
|
|
935
|
+
rawValue: z__namespace.string().optional(),
|
|
936
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
937
|
+
scheme: challengeSchemeSchema.optional(),
|
|
938
|
+
serverNonce: z__namespace.string().optional(),
|
|
939
|
+
realm: z__namespace.string().optional(),
|
|
940
|
+
opaque: z__namespace.string().optional(),
|
|
941
|
+
digestAlgorithm: z__namespace.string().optional(),
|
|
942
|
+
qualityOptions: z__namespace.array(z__namespace.string()).optional(),
|
|
943
|
+
get domainRefs () {
|
|
944
|
+
return z__namespace.array(referenceSchema).optional();
|
|
945
|
+
},
|
|
946
|
+
stale: z__namespace.boolean().optional()
|
|
947
|
+
});
|
|
948
|
+
const principalSchema = z__namespace.object({
|
|
949
|
+
name: z__namespace.string().optional()
|
|
950
|
+
});
|
|
951
|
+
const challengeResponseSchema = z__namespace.object({
|
|
952
|
+
rawValue: z__namespace.string().optional(),
|
|
953
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
954
|
+
scheme: challengeSchemeSchema.optional(),
|
|
955
|
+
serverNonce: z__namespace.string().optional(),
|
|
956
|
+
realm: z__namespace.string().optional(),
|
|
957
|
+
opaque: z__namespace.string().optional(),
|
|
958
|
+
digestAlgorithm: z__namespace.string().optional(),
|
|
959
|
+
clientNonce: z__namespace.string().optional(),
|
|
960
|
+
get digestRef () {
|
|
961
|
+
return referenceSchema.optional();
|
|
962
|
+
},
|
|
963
|
+
identifier: z__namespace.string().optional(),
|
|
964
|
+
quality: z__namespace.string().optional(),
|
|
965
|
+
secret: z__namespace.array(z__namespace.string()).optional(),
|
|
966
|
+
secretAlgorithm: z__namespace.string().optional(),
|
|
967
|
+
serverNounceCount: z__namespace.int().optional(),
|
|
968
|
+
timeIssued: z__namespace.coerce.bigint().optional(),
|
|
969
|
+
principal: principalSchema.optional(),
|
|
970
|
+
serverNounceCountAsHex: z__namespace.string().optional()
|
|
971
|
+
});
|
|
972
|
+
const preferenceCharacterSetSchema = z__namespace.object({
|
|
973
|
+
metadata: characterSetSchema.optional(),
|
|
974
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
975
|
+
quality: z__namespace.number().optional()
|
|
976
|
+
});
|
|
977
|
+
const preferenceEncodingSchema = z__namespace.object({
|
|
978
|
+
metadata: encodingSchema.optional(),
|
|
979
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
980
|
+
quality: z__namespace.number().optional()
|
|
981
|
+
});
|
|
982
|
+
const preferenceLanguageSchema = z__namespace.object({
|
|
983
|
+
get metadata () {
|
|
984
|
+
return languageSchema.optional();
|
|
985
|
+
},
|
|
986
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
987
|
+
quality: z__namespace.number().optional()
|
|
988
|
+
});
|
|
989
|
+
const preferenceMediaTypeSchema = z__namespace.object({
|
|
990
|
+
get metadata () {
|
|
991
|
+
return mediaTypeSchema.optional();
|
|
992
|
+
},
|
|
993
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
994
|
+
quality: z__namespace.number().optional()
|
|
995
|
+
});
|
|
996
|
+
const productSchema = z__namespace.object({
|
|
997
|
+
comment: z__namespace.string().optional(),
|
|
998
|
+
name: z__namespace.string().optional(),
|
|
999
|
+
version: z__namespace.string().optional()
|
|
1000
|
+
});
|
|
1001
|
+
const expectationSchema = z__namespace.object({
|
|
1002
|
+
name: z__namespace.string().optional(),
|
|
1003
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
1004
|
+
value: z__namespace.string().optional()
|
|
1005
|
+
});
|
|
1006
|
+
const userSchema = z__namespace.object({
|
|
1007
|
+
email: z__namespace.string().optional(),
|
|
1008
|
+
firstName: z__namespace.string().optional(),
|
|
1009
|
+
identifier: z__namespace.string().optional(),
|
|
1010
|
+
lastName: z__namespace.string().optional(),
|
|
1011
|
+
secret: z__namespace.array(z__namespace.string()).optional(),
|
|
1012
|
+
name: z__namespace.string().optional()
|
|
1013
|
+
});
|
|
1014
|
+
const clientInfoSchema = z__namespace.object({
|
|
1015
|
+
acceptedCharacterSets: z__namespace.array(preferenceCharacterSetSchema).optional(),
|
|
1016
|
+
acceptedEncodings: z__namespace.array(preferenceEncodingSchema).optional(),
|
|
1017
|
+
acceptedLanguages: z__namespace.array(preferenceLanguageSchema).optional(),
|
|
1018
|
+
acceptedMediaTypes: z__namespace.array(preferenceMediaTypeSchema).optional(),
|
|
1019
|
+
acceptedPatches: z__namespace.array(preferenceMediaTypeSchema).optional(),
|
|
1020
|
+
address: z__namespace.string().optional(),
|
|
1021
|
+
agent: z__namespace.string().optional(),
|
|
1022
|
+
agentAttributes: z__namespace.object({}).catchall(z__namespace.string()).optional(),
|
|
1023
|
+
agentProducts: z__namespace.array(productSchema).optional(),
|
|
1024
|
+
authenticated: z__namespace.boolean().optional(),
|
|
1025
|
+
certificates: z__namespace.array(certificateSchema).optional(),
|
|
1026
|
+
cipherSuite: z__namespace.string().optional(),
|
|
1027
|
+
expectations: z__namespace.array(expectationSchema).optional(),
|
|
1028
|
+
forwardedAddresses: z__namespace.array(z__namespace.string()).optional(),
|
|
1029
|
+
from: z__namespace.string().optional(),
|
|
1030
|
+
port: z__namespace.int().optional(),
|
|
1031
|
+
principals: z__namespace.array(principalSchema).optional(),
|
|
1032
|
+
get roles () {
|
|
1033
|
+
return z__namespace.array(roleSchema).optional();
|
|
1034
|
+
},
|
|
1035
|
+
user: userSchema.optional(),
|
|
1036
|
+
agentName: z__namespace.string().optional(),
|
|
1037
|
+
agentVersion: z__namespace.string().optional(),
|
|
1038
|
+
mainAgentProduct: productSchema.optional(),
|
|
1039
|
+
upstreamAddress: z__namespace.string().optional()
|
|
1040
|
+
});
|
|
1041
|
+
const companySchema = z__namespace.object({
|
|
1042
|
+
name: z__namespace.string().optional(),
|
|
1043
|
+
email: z__namespace.string().optional()
|
|
1044
|
+
});
|
|
1045
|
+
const completableFutureSchema = z__namespace.object({
|
|
1046
|
+
completedExceptionally: z__namespace.boolean().optional(),
|
|
1047
|
+
numberOfDependents: z__namespace.int().optional(),
|
|
1048
|
+
done: z__namespace.boolean().optional(),
|
|
1049
|
+
cancelled: z__namespace.boolean().optional()
|
|
1050
|
+
});
|
|
1051
|
+
const tagSchema = z__namespace.object({
|
|
1052
|
+
name: z__namespace.string().optional(),
|
|
1053
|
+
weak: z__namespace.boolean().optional()
|
|
1054
|
+
});
|
|
1055
|
+
const conditionsSchema = z__namespace.object({
|
|
1056
|
+
match: z__namespace.array(tagSchema).optional(),
|
|
1057
|
+
modifiedSince: z__namespace.iso.datetime().optional(),
|
|
1058
|
+
noneMatch: z__namespace.array(tagSchema).optional(),
|
|
1059
|
+
rangeDate: z__namespace.iso.datetime().optional(),
|
|
1060
|
+
rangeTag: tagSchema.optional(),
|
|
1061
|
+
unmodifiedSince: z__namespace.iso.datetime().optional()
|
|
1062
|
+
});
|
|
1063
|
+
const cookieSchema = z__namespace.object({
|
|
1064
|
+
domain: z__namespace.string().optional(),
|
|
1065
|
+
name: z__namespace.string().optional(),
|
|
1066
|
+
path: z__namespace.string().optional(),
|
|
1067
|
+
value: z__namespace.string().optional(),
|
|
1068
|
+
version: z__namespace.int().optional()
|
|
1069
|
+
});
|
|
1070
|
+
const cookieSettingSchema = z__namespace.object({
|
|
1071
|
+
domain: z__namespace.string().optional(),
|
|
1072
|
+
name: z__namespace.string().optional(),
|
|
1073
|
+
path: z__namespace.string().optional(),
|
|
1074
|
+
value: z__namespace.string().optional(),
|
|
1075
|
+
version: z__namespace.int().optional(),
|
|
1076
|
+
accessRestricted: z__namespace.boolean().optional(),
|
|
1077
|
+
comment: z__namespace.string().optional(),
|
|
1078
|
+
maxAge: z__namespace.int().optional(),
|
|
1079
|
+
secure: z__namespace.boolean().optional(),
|
|
1080
|
+
description: z__namespace.string().optional()
|
|
1081
|
+
});
|
|
1082
|
+
const decentralWebhookSchema = z__namespace.object({
|
|
1083
|
+
id: z__namespace.int().optional().describe("The identifier"),
|
|
1084
|
+
secret: z__namespace.string().optional().describe("The secret to sign the webhook's payload"),
|
|
1085
|
+
webhookUrl: z__namespace.string().describe("The URL where our webhooks (POST requests) should point to (needs to be https)"),
|
|
1086
|
+
webhookFeatures: z__namespace.array(z__namespace.enum([
|
|
1087
|
+
"DEVICE_STATUS",
|
|
1088
|
+
"DEVICE_MASTERDATA",
|
|
1089
|
+
"DEVICE_CONFIG",
|
|
1090
|
+
"DEVICE_LOGS",
|
|
1091
|
+
"DEVICE_AUTHS",
|
|
1092
|
+
"ACCOUNT_USER"
|
|
1093
|
+
])).refine((items)=>new Set(items).size === items.length, {
|
|
1094
|
+
message: "Array entries must be unique"
|
|
1095
|
+
}).describe("The features to trigger webhooks, set values: DEVICE_STATUS, DEVICE_MASTERDATA, DEVICE_CONFIG, DEVICE_LOGS, DEVICE_AUTHS, ACCOUNT_USER")
|
|
1096
|
+
});
|
|
1097
|
+
const digestSchema = z__namespace.object({
|
|
1098
|
+
algorithm: z__namespace.string().optional(),
|
|
1099
|
+
value: z__namespace.array(z__namespace.string()).optional()
|
|
1100
|
+
});
|
|
1101
|
+
const dispositionSchema = z__namespace.object({
|
|
1102
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
1103
|
+
type: z__namespace.string().optional(),
|
|
1104
|
+
filename: z__namespace.string().optional()
|
|
1105
|
+
});
|
|
1106
|
+
const enumerationSchema = z__namespace.object({});
|
|
1107
|
+
const headerSchema = z__namespace.object({
|
|
1108
|
+
name: z__namespace.string().optional(),
|
|
1109
|
+
value: z__namespace.string().optional()
|
|
1110
|
+
});
|
|
1111
|
+
const inputStreamSchema = z__namespace.object({});
|
|
1112
|
+
const methodSchema = z__namespace.object({
|
|
1113
|
+
description: z__namespace.string().optional(),
|
|
1114
|
+
idempotent: z__namespace.boolean().optional(),
|
|
1115
|
+
name: z__namespace.string().optional(),
|
|
1116
|
+
replying: z__namespace.boolean().optional(),
|
|
1117
|
+
safe: z__namespace.boolean().optional(),
|
|
1118
|
+
uri: z__namespace.string().optional()
|
|
1119
|
+
});
|
|
1120
|
+
const myAccountSchema = z__namespace.object({
|
|
1121
|
+
accountId: z__namespace.int().describe("The account id"),
|
|
1122
|
+
type: z__namespace.int().describe("The type: 0 .. user, 1 .. company, 2 .. caretaker"),
|
|
1123
|
+
email: z__namespace.string().describe("The email address"),
|
|
1124
|
+
emailVerified: z__namespace.boolean().optional().describe("true, if the email is verified"),
|
|
1125
|
+
name: z__namespace.string().describe("The name"),
|
|
1126
|
+
masterAccountId: z__namespace.int().optional().describe("The master account id if it's a sub account"),
|
|
1127
|
+
rights: z__namespace.int().optional().describe("The rights bitmask if it's a sub account: 1 .. manage smartlock, 2 .. operate smartlock, 4 .. manage smartlock config, 8 .. manage smartlock authorizations, 16 .. view smartlock logs, 32 .. manage sub accounts, 64 .. create smartlocks"),
|
|
1128
|
+
language: z__namespace.string().optional().describe("The language code").meta({
|
|
1129
|
+
examples: [
|
|
1130
|
+
"de"
|
|
1131
|
+
]
|
|
1132
|
+
}),
|
|
1133
|
+
config: accountConfigSchema.optional().describe("The optional config"),
|
|
1134
|
+
profile: accountProfileSchema.optional().describe("The optional profile"),
|
|
1135
|
+
secret: z__namespace.array(z__namespace.string()).optional().describe("The secret base64 encoded"),
|
|
1136
|
+
creationDate: z__namespace.iso.datetime().describe("The creation date"),
|
|
1137
|
+
updateDate: z__namespace.iso.datetime().describe("The update date"),
|
|
1138
|
+
descent: accountDescentSchema.optional().describe("Set, if your account is not a standard Nuki Web account"),
|
|
1139
|
+
shsSubscriptionType: z__namespace.enum([
|
|
1140
|
+
"BUSINESS",
|
|
1141
|
+
"STANDARD",
|
|
1142
|
+
"BUSINESS_PLUS",
|
|
1143
|
+
"API_ONLY"
|
|
1144
|
+
]).optional().describe("subscription type of the account (b2b)"),
|
|
1145
|
+
b2bActive: z__namespace.boolean().optional(),
|
|
1146
|
+
apiTermsOfUse: termsOfUseSchema.optional()
|
|
1147
|
+
});
|
|
1148
|
+
const namedValueSchema = z__namespace.object({
|
|
1149
|
+
name: z__namespace.string().optional(),
|
|
1150
|
+
value: z__namespace.object({}).optional()
|
|
1151
|
+
});
|
|
1152
|
+
const namedValueStringSchema = z__namespace.object({
|
|
1153
|
+
name: z__namespace.string().optional(),
|
|
1154
|
+
value: z__namespace.string().optional()
|
|
1155
|
+
});
|
|
1156
|
+
const notificationSettingSchema = z__namespace.object({
|
|
1157
|
+
smartlockId: z__namespace.coerce.bigint().optional().describe("The smartlock ID, if not set all Smart Locks of the account are enabled for push notifications"),
|
|
1158
|
+
triggerEvents: z__namespace.array(z__namespace.string()).refine((items)=>new Set(items).size === items.length, {
|
|
1159
|
+
message: "Array entries must be unique"
|
|
1160
|
+
}).describe("A set on which push notifications should be triggered: lock, unlock, unlatch, lockngo, open, ring, doorsensor, warnings, smartlock"),
|
|
1161
|
+
authIds: z__namespace.array(z__namespace.string()).refine((items)=>new Set(items).size === items.length, {
|
|
1162
|
+
message: "Array entries must be unique"
|
|
1163
|
+
}).optional().describe("A set of auth IDs to filter push notifications to certain users or keypads. If no entry push notifications are triggered for all users and keypads")
|
|
1164
|
+
});
|
|
1165
|
+
const notificationSchema = z__namespace.object({
|
|
1166
|
+
notificationId: z__namespace.string().optional().describe("The unique notificationId for the notification"),
|
|
1167
|
+
referenceId: z__namespace.string().optional().describe("The reference ID, an ID to identify a foreign system"),
|
|
1168
|
+
pushId: z__namespace.string().describe("The push ID or the POST URL for a webhook"),
|
|
1169
|
+
secret: z__namespace.string().optional().describe("The 40 byte hex string to sign the checksumof the POST payload if the notification is webhook (os=2)").meta({
|
|
1170
|
+
examples: [
|
|
1171
|
+
"8d41a187c3954f886f9de3a88c2ef22df0eac190"
|
|
1172
|
+
]
|
|
1173
|
+
}),
|
|
1174
|
+
os: z__namespace.int().describe("The operating system: 0 .. Android, 1 .. iOS, 2 .. web hook"),
|
|
1175
|
+
language: z__namespace.string().optional().describe("The language of push messages: cs, de, en (default), es, fr, it, nl, sk"),
|
|
1176
|
+
status: z__namespace.int().optional().describe("Current state: 0 .. init, 1 .. active, 2 .. failed"),
|
|
1177
|
+
lastActiveDate: z__namespace.iso.datetime().optional().describe("The last active date"),
|
|
1178
|
+
settings: z__namespace.array(notificationSettingSchema).describe("Settings per Smart Lock")
|
|
1179
|
+
});
|
|
1180
|
+
const objectIdSchema = z__namespace.object({
|
|
1181
|
+
timestamp: z__namespace.int().optional(),
|
|
1182
|
+
counter: z__namespace.int().optional(),
|
|
1183
|
+
time: z__namespace.coerce.bigint().optional(),
|
|
1184
|
+
date: z__namespace.iso.datetime().optional(),
|
|
1185
|
+
machineIdentifier: z__namespace.int().optional(),
|
|
1186
|
+
processIdentifier: z__namespace.int().optional(),
|
|
1187
|
+
timeSecond: z__namespace.int().optional()
|
|
1188
|
+
});
|
|
1189
|
+
const openerIntercomBrandSchema = z__namespace.object({
|
|
1190
|
+
brandId: z__namespace.int().describe("The brand ID"),
|
|
1191
|
+
brand: z__namespace.string().describe("The brand name")
|
|
1192
|
+
});
|
|
1193
|
+
const openerIntercomModelSchema = z__namespace.object({
|
|
1194
|
+
intercomId: z__namespace.int().describe("The intercom ID"),
|
|
1195
|
+
brandId: z__namespace.int().describe("The related brand ID"),
|
|
1196
|
+
type: z__namespace.int().describe("The type of the model"),
|
|
1197
|
+
model: z__namespace.string().describe("The model name"),
|
|
1198
|
+
verified: z__namespace.int().describe("Verified Nuki intercom: 1 .. verified to work, 2 .. may be compatible, but not verified, 3 .. not compatible"),
|
|
1199
|
+
conGndBus: z__namespace.string().describe("Connection for ground BUS"),
|
|
1200
|
+
conBusAudio: z__namespace.string().describe("Connection for audio BUS"),
|
|
1201
|
+
conAudioout: z__namespace.string().describe("Connection for audio out"),
|
|
1202
|
+
conDoorbellPlus: z__namespace.string().describe("Connection for doorbell plus"),
|
|
1203
|
+
conDoorbellMinus: z__namespace.string().describe("Connection for doorbell minus"),
|
|
1204
|
+
conOpendoor: z__namespace.string().describe("Connection for open the door"),
|
|
1205
|
+
conGndAnalogue: z__namespace.string().describe("Connection for ground analogue"),
|
|
1206
|
+
busModeSwitch: z__namespace.int().describe("Settings value for BUS mode switch"),
|
|
1207
|
+
busModeSwitchShortCircuitDuration: z__namespace.int().describe("Settings value for BUS mode switch short cicuit duration"),
|
|
1208
|
+
creationDate: z__namespace.iso.datetime().optional().describe("The creation date"),
|
|
1209
|
+
updateDate: z__namespace.iso.datetime().optional().describe("The update date")
|
|
1210
|
+
});
|
|
1211
|
+
const paginationSchema = z__namespace.object({
|
|
1212
|
+
totalItems: z__namespace.coerce.bigint().optional(),
|
|
1213
|
+
totalPages: z__namespace.int().optional(),
|
|
1214
|
+
currentPage: z__namespace.int().optional(),
|
|
1215
|
+
nextPage: z__namespace.string().optional(),
|
|
1216
|
+
prevPage: z__namespace.string().optional(),
|
|
1217
|
+
pageSize: z__namespace.int().optional()
|
|
1218
|
+
});
|
|
1219
|
+
const paginatedResponseSchema = z__namespace.object({
|
|
1220
|
+
results: z__namespace.array(z__namespace.object({})).optional(),
|
|
1221
|
+
pagination: paginationSchema.optional()
|
|
1222
|
+
});
|
|
1223
|
+
const preferenceSchema = z__namespace.object({
|
|
1224
|
+
get metadata () {
|
|
1225
|
+
return metadataSchema.optional();
|
|
1226
|
+
},
|
|
1227
|
+
parameters: z__namespace.array(parameterSchema).optional(),
|
|
1228
|
+
quality: z__namespace.number().optional()
|
|
1229
|
+
});
|
|
1230
|
+
const rangeSchema = z__namespace.object({
|
|
1231
|
+
index: z__namespace.coerce.bigint().optional(),
|
|
1232
|
+
instanceSize: z__namespace.coerce.bigint().optional(),
|
|
1233
|
+
size: z__namespace.coerce.bigint().optional(),
|
|
1234
|
+
unitName: z__namespace.string().optional()
|
|
1235
|
+
});
|
|
1236
|
+
const readableByteChannelSchema = z__namespace.object({
|
|
1237
|
+
open: z__namespace.boolean().optional()
|
|
1238
|
+
});
|
|
1239
|
+
const readerSchema = z__namespace.object({});
|
|
1240
|
+
const recipientInfoSchema = z__namespace.object({
|
|
1241
|
+
protocol: protocolSchema.optional(),
|
|
1242
|
+
comment: z__namespace.string().optional(),
|
|
1243
|
+
name: z__namespace.string().optional()
|
|
1244
|
+
});
|
|
1245
|
+
const selectionListenerSchema = z__namespace.object({});
|
|
1246
|
+
const selectableChannelSchema = z__namespace.object({
|
|
1247
|
+
registered: z__namespace.boolean().optional(),
|
|
1248
|
+
blocking: z__namespace.boolean().optional(),
|
|
1249
|
+
open: z__namespace.boolean().optional()
|
|
1250
|
+
});
|
|
1251
|
+
const wakeupListenerSchema = z__namespace.object({});
|
|
1252
|
+
const selectionRegistrationSchema = z__namespace.object({
|
|
1253
|
+
canceling: z__namespace.boolean().optional(),
|
|
1254
|
+
interestOperations: z__namespace.int().optional(),
|
|
1255
|
+
selectionListener: selectionListenerSchema.optional(),
|
|
1256
|
+
readyOperations: z__namespace.int().optional(),
|
|
1257
|
+
selectableChannel: selectableChannelSchema.optional(),
|
|
1258
|
+
wakeupListener: wakeupListenerSchema.optional(),
|
|
1259
|
+
readable: z__namespace.boolean().optional(),
|
|
1260
|
+
writable: z__namespace.boolean().optional(),
|
|
1261
|
+
connectable: z__namespace.boolean().optional(),
|
|
1262
|
+
interestReady: z__namespace.boolean().optional()
|
|
1263
|
+
});
|
|
1264
|
+
const representationSchema = z__namespace.object({
|
|
1265
|
+
characterSet: characterSetSchema.optional(),
|
|
1266
|
+
encodings: z__namespace.array(encodingSchema).optional(),
|
|
1267
|
+
get locationRef () {
|
|
1268
|
+
return referenceSchema.optional();
|
|
1269
|
+
},
|
|
1270
|
+
get languages () {
|
|
1271
|
+
return z__namespace.array(languageSchema).optional();
|
|
1272
|
+
},
|
|
1273
|
+
get mediaType () {
|
|
1274
|
+
return mediaTypeSchema.optional();
|
|
1275
|
+
},
|
|
1276
|
+
modificationDate: z__namespace.iso.datetime().optional(),
|
|
1277
|
+
tag: tagSchema.optional(),
|
|
1278
|
+
available: z__namespace.boolean().optional(),
|
|
1279
|
+
digest: digestSchema.optional(),
|
|
1280
|
+
disposition: dispositionSchema.optional(),
|
|
1281
|
+
expirationDate: z__namespace.iso.datetime().optional(),
|
|
1282
|
+
range: rangeSchema.optional(),
|
|
1283
|
+
size: z__namespace.coerce.bigint().optional(),
|
|
1284
|
+
empty: z__namespace.boolean().optional(),
|
|
1285
|
+
channel: readableByteChannelSchema.optional(),
|
|
1286
|
+
transient: z__namespace.boolean().optional(),
|
|
1287
|
+
text: z__namespace.string().optional(),
|
|
1288
|
+
reader: readerSchema.optional(),
|
|
1289
|
+
availableSize: z__namespace.coerce.bigint().optional(),
|
|
1290
|
+
registration: selectionRegistrationSchema.optional(),
|
|
1291
|
+
stream: inputStreamSchema.optional(),
|
|
1292
|
+
selectable: z__namespace.boolean().optional()
|
|
1293
|
+
});
|
|
1294
|
+
const uniformSchema = z__namespace.object({});
|
|
1295
|
+
const stackTraceElementSchema = z__namespace.object({
|
|
1296
|
+
classLoaderName: z__namespace.string().optional(),
|
|
1297
|
+
moduleName: z__namespace.string().optional(),
|
|
1298
|
+
moduleVersion: z__namespace.string().optional(),
|
|
1299
|
+
methodName: z__namespace.string().optional(),
|
|
1300
|
+
fileName: z__namespace.string().optional(),
|
|
1301
|
+
lineNumber: z__namespace.int().optional(),
|
|
1302
|
+
className: z__namespace.string().optional(),
|
|
1303
|
+
nativeMethod: z__namespace.boolean().optional()
|
|
1304
|
+
});
|
|
1305
|
+
const throwableSchema = z__namespace.object({
|
|
1306
|
+
get cause () {
|
|
1307
|
+
return throwableSchema.optional();
|
|
1308
|
+
},
|
|
1309
|
+
stackTrace: z__namespace.array(stackTraceElementSchema).optional(),
|
|
1310
|
+
message: z__namespace.string().optional(),
|
|
1311
|
+
get suppressed () {
|
|
1312
|
+
return z__namespace.array(throwableSchema).optional();
|
|
1313
|
+
},
|
|
1314
|
+
localizedMessage: z__namespace.string().optional()
|
|
1315
|
+
});
|
|
1316
|
+
const statusSchema = z__namespace.object({
|
|
1317
|
+
code: z__namespace.int().optional(),
|
|
1318
|
+
description: z__namespace.string().optional(),
|
|
1319
|
+
reasonPhrase: z__namespace.string().optional(),
|
|
1320
|
+
get throwable () {
|
|
1321
|
+
return throwableSchema.optional();
|
|
1322
|
+
},
|
|
1323
|
+
uri: z__namespace.string().optional(),
|
|
1324
|
+
error: z__namespace.boolean().optional(),
|
|
1325
|
+
success: z__namespace.boolean().optional(),
|
|
1326
|
+
globalError: z__namespace.boolean().optional(),
|
|
1327
|
+
informational: z__namespace.boolean().optional(),
|
|
1328
|
+
redirection: z__namespace.boolean().optional(),
|
|
1329
|
+
recoverableError: z__namespace.boolean().optional(),
|
|
1330
|
+
serverError: z__namespace.boolean().optional(),
|
|
1331
|
+
connectorError: z__namespace.boolean().optional(),
|
|
1332
|
+
clientError: z__namespace.boolean().optional()
|
|
1333
|
+
});
|
|
1334
|
+
const warningSchema = z__namespace.object({
|
|
1335
|
+
agent: z__namespace.string().optional(),
|
|
1336
|
+
date: z__namespace.iso.datetime().optional(),
|
|
1337
|
+
status: statusSchema.optional(),
|
|
1338
|
+
text: z__namespace.string().optional()
|
|
1339
|
+
});
|
|
1340
|
+
const requestSchema = z__namespace.object({
|
|
1341
|
+
attributes: z__namespace.object({}).catchall(z__namespace.object({})).optional(),
|
|
1342
|
+
cacheDirectives: z__namespace.array(cacheDirectiveSchema).optional(),
|
|
1343
|
+
date: z__namespace.iso.datetime().optional(),
|
|
1344
|
+
entity: representationSchema.optional(),
|
|
1345
|
+
onError: uniformSchema.optional(),
|
|
1346
|
+
onSent: uniformSchema.optional(),
|
|
1347
|
+
recipientsInfo: z__namespace.array(recipientInfoSchema).optional(),
|
|
1348
|
+
warnings: z__namespace.array(warningSchema).optional(),
|
|
1349
|
+
accessControlRequestHeaders: z__namespace.array(z__namespace.string()).refine((items)=>new Set(items).size === items.length, {
|
|
1350
|
+
message: "Array entries must be unique"
|
|
1351
|
+
}).optional(),
|
|
1352
|
+
accessControlRequestMethod: methodSchema.optional(),
|
|
1353
|
+
challengeResponse: challengeResponseSchema.optional(),
|
|
1354
|
+
clientInfo: clientInfoSchema.optional(),
|
|
1355
|
+
conditions: conditionsSchema.optional(),
|
|
1356
|
+
cookies: z__namespace.array(cookieSchema).optional(),
|
|
1357
|
+
get hostRef () {
|
|
1358
|
+
return referenceSchema.optional();
|
|
1359
|
+
},
|
|
1360
|
+
loggable: z__namespace.boolean().optional(),
|
|
1361
|
+
maxForwards: z__namespace.int().optional(),
|
|
1362
|
+
method: methodSchema.optional(),
|
|
1363
|
+
onResponse: uniformSchema.optional(),
|
|
1364
|
+
get originalRef () {
|
|
1365
|
+
return referenceSchema.optional();
|
|
1366
|
+
},
|
|
1367
|
+
protocol: protocolSchema.optional(),
|
|
1368
|
+
proxyChallengeResponse: challengeResponseSchema.optional(),
|
|
1369
|
+
ranges: z__namespace.array(rangeSchema).optional(),
|
|
1370
|
+
get referrerRef () {
|
|
1371
|
+
return referenceSchema.optional();
|
|
1372
|
+
},
|
|
1373
|
+
get resourceRef () {
|
|
1374
|
+
return referenceSchema.optional();
|
|
1375
|
+
},
|
|
1376
|
+
get rootRef () {
|
|
1377
|
+
return referenceSchema.optional();
|
|
1378
|
+
},
|
|
1379
|
+
asynchronous: z__namespace.boolean().optional(),
|
|
1380
|
+
entityAvailable: z__namespace.boolean().optional(),
|
|
1381
|
+
expectingResponse: z__namespace.boolean().optional(),
|
|
1382
|
+
synchronous: z__namespace.boolean().optional(),
|
|
1383
|
+
confidential: z__namespace.boolean().optional(),
|
|
1384
|
+
entityAsText: z__namespace.string().optional(),
|
|
1385
|
+
headers: z__namespace.array(headerSchema).optional()
|
|
1386
|
+
});
|
|
1387
|
+
const reservationAccessTimesUpdateSchema = z__namespace.object({
|
|
1388
|
+
checkInTime: z__namespace.int().optional().describe("Custom check in time in minutes from midnight"),
|
|
1389
|
+
checkOutTime: z__namespace.int().optional().describe("Custom check out time in minutes from midnight")
|
|
1390
|
+
});
|
|
1391
|
+
const serverInfoSchema = z__namespace.object({
|
|
1392
|
+
acceptingRanges: z__namespace.boolean().optional(),
|
|
1393
|
+
address: z__namespace.string().optional(),
|
|
1394
|
+
agent: z__namespace.string().optional(),
|
|
1395
|
+
port: z__namespace.int().optional()
|
|
1396
|
+
});
|
|
1397
|
+
const responseSchema = z__namespace.object({
|
|
1398
|
+
attributes: z__namespace.object({}).catchall(z__namespace.object({})).optional(),
|
|
1399
|
+
cacheDirectives: z__namespace.array(cacheDirectiveSchema).optional(),
|
|
1400
|
+
date: z__namespace.iso.datetime().optional(),
|
|
1401
|
+
entity: representationSchema.optional(),
|
|
1402
|
+
onError: uniformSchema.optional(),
|
|
1403
|
+
onSent: uniformSchema.optional(),
|
|
1404
|
+
recipientsInfo: z__namespace.array(recipientInfoSchema).optional(),
|
|
1405
|
+
warnings: z__namespace.array(warningSchema).optional(),
|
|
1406
|
+
accessControlAllowCredentials: z__namespace.boolean().optional(),
|
|
1407
|
+
accessControlAllowHeaders: z__namespace.array(z__namespace.string()).refine((items)=>new Set(items).size === items.length, {
|
|
1408
|
+
message: "Array entries must be unique"
|
|
1409
|
+
}).optional(),
|
|
1410
|
+
accessControlAllowMethods: z__namespace.array(methodSchema).refine((items)=>new Set(items).size === items.length, {
|
|
1411
|
+
message: "Array entries must be unique"
|
|
1412
|
+
}).optional(),
|
|
1413
|
+
accessControlAllowOrigin: z__namespace.string().optional(),
|
|
1414
|
+
accessControlExposeHeaders: z__namespace.array(z__namespace.string()).refine((items)=>new Set(items).size === items.length, {
|
|
1415
|
+
message: "Array entries must be unique"
|
|
1416
|
+
}).optional(),
|
|
1417
|
+
accessControlMaxAge: z__namespace.int().optional(),
|
|
1418
|
+
age: z__namespace.int().optional(),
|
|
1419
|
+
allowedMethods: z__namespace.array(methodSchema).refine((items)=>new Set(items).size === items.length, {
|
|
1420
|
+
message: "Array entries must be unique"
|
|
1421
|
+
}).optional(),
|
|
1422
|
+
authenticationInfo: authenticationInfoSchema.optional(),
|
|
1423
|
+
autoCommitting: z__namespace.boolean().optional(),
|
|
1424
|
+
challengeRequests: z__namespace.array(challengeRequestSchema).optional(),
|
|
1425
|
+
committed: z__namespace.boolean().optional(),
|
|
1426
|
+
cookieSettings: z__namespace.array(cookieSettingSchema).optional(),
|
|
1427
|
+
dimensions: z__namespace.array(z__namespace.enum([
|
|
1428
|
+
"AUTHORIZATION",
|
|
1429
|
+
"CHARACTER_SET",
|
|
1430
|
+
"CLIENT_ADDRESS",
|
|
1431
|
+
"CLIENT_AGENT",
|
|
1432
|
+
"UNSPECIFIED",
|
|
1433
|
+
"ENCODING",
|
|
1434
|
+
"LANGUAGE",
|
|
1435
|
+
"MEDIA_TYPE",
|
|
1436
|
+
"TIME",
|
|
1437
|
+
"ORIGIN"
|
|
1438
|
+
])).refine((items)=>new Set(items).size === items.length, {
|
|
1439
|
+
message: "Array entries must be unique"
|
|
1440
|
+
}).optional(),
|
|
1441
|
+
get locationRef () {
|
|
1442
|
+
return referenceSchema.optional();
|
|
1443
|
+
},
|
|
1444
|
+
proxyChallengeRequests: z__namespace.array(challengeRequestSchema).optional(),
|
|
1445
|
+
request: requestSchema.optional(),
|
|
1446
|
+
retryAfter: z__namespace.iso.datetime().optional(),
|
|
1447
|
+
serverInfo: serverInfoSchema.optional(),
|
|
1448
|
+
status: statusSchema.optional(),
|
|
1449
|
+
final: z__namespace.boolean().optional(),
|
|
1450
|
+
provisional: z__namespace.boolean().optional(),
|
|
1451
|
+
confidential: z__namespace.boolean().optional(),
|
|
1452
|
+
entityAvailable: z__namespace.boolean().optional(),
|
|
1453
|
+
entityAsText: z__namespace.string().optional(),
|
|
1454
|
+
headers: z__namespace.array(headerSchema).optional()
|
|
1455
|
+
});
|
|
1456
|
+
const shsSubscriptionSchema = z__namespace.object({
|
|
1457
|
+
type: z__namespace.enum([
|
|
1458
|
+
"B2C",
|
|
1459
|
+
"B2B"
|
|
1460
|
+
]).optional(),
|
|
1461
|
+
state: z__namespace.enum([
|
|
1462
|
+
"ACTIVE",
|
|
1463
|
+
"INACTIVE",
|
|
1464
|
+
"CANCELLED",
|
|
1465
|
+
"EXPIRED",
|
|
1466
|
+
"ON_HOLD",
|
|
1467
|
+
"PENDING",
|
|
1468
|
+
"PENDING_CANCEL"
|
|
1469
|
+
]).optional(),
|
|
1470
|
+
shsSubscriptionType: z__namespace.enum([
|
|
1471
|
+
"BUSINESS",
|
|
1472
|
+
"STANDARD",
|
|
1473
|
+
"BUSINESS_PLUS",
|
|
1474
|
+
"API_ONLY"
|
|
1475
|
+
]).optional(),
|
|
1476
|
+
updateDate: z__namespace.iso.datetime().optional(),
|
|
1477
|
+
creationDate: z__namespace.iso.datetime().optional(),
|
|
1478
|
+
expirationDate: z__namespace.iso.datetime().optional(),
|
|
1479
|
+
isInGracePeriod: z__namespace.boolean().optional(),
|
|
1480
|
+
isGracePeriodWarningDismissed: z__namespace.boolean().optional(),
|
|
1481
|
+
gracePeriodWarningEmailSent: z__namespace.boolean().optional(),
|
|
1482
|
+
contractId: z__namespace.uuid().optional()
|
|
1483
|
+
});
|
|
1484
|
+
const smartlockConfigSchema = z__namespace.object({
|
|
1485
|
+
name: z__namespace.string().describe("The name of the smartlock for new users"),
|
|
1486
|
+
latitude: z__namespace.number().describe("The latitude of the smartlock position"),
|
|
1487
|
+
longitude: z__namespace.number().describe("The longitude of the smartlock position"),
|
|
1488
|
+
capabilities: z__namespace.int().optional().describe("The capabilities indicate whether door opening via app is possible, RTO is possible or both: 0 .. only door opening possible, 1 .. both possible, 2 .. only RTO possible (only for type=2)"),
|
|
1489
|
+
autoUnlatch: z__namespace.boolean().optional().describe("True if the door should be unlatched on unlocking (knob) (only for type=1 and type=3)"),
|
|
1490
|
+
liftUpHandle: z__namespace.boolean().optional().describe("True if the door has a lift up handle, which is required to be lifted up to lock the door"),
|
|
1491
|
+
pairingEnabled: z__namespace.boolean().optional().describe("True if the pairing is allowed via the smartlock button"),
|
|
1492
|
+
buttonEnabled: z__namespace.boolean().optional().describe("True if the button on the smartlock is enabled"),
|
|
1493
|
+
ledEnabled: z__namespace.boolean().optional().describe("True if the LED on the smartlock is enabled"),
|
|
1494
|
+
ledBrightness: z__namespace.int().optional().describe("The brightness of the LED: 0 .. off, 5 .. max (only for type=1 and type=3)"),
|
|
1495
|
+
timezoneOffset: z__namespace.int().describe("[deprecated] The timezone offset (in minutes)"),
|
|
1496
|
+
daylightSavingMode: z__namespace.int().optional().describe("[deprecated] The daylight saving mode: 0 .. off, 1 .. european"),
|
|
1497
|
+
fobPaired: z__namespace.boolean().optional().describe("True if a fob is paired with the smartlock"),
|
|
1498
|
+
fobAction1: z__namespace.int().optional().describe("The fob action if button is pressed once: type=0/3/4: 0 .. none, 1 .. unlock, 2 .. lock, 3 .. lock 'n' go, 4 .. intelligent (lock/unlocked based on the current state); type=2: 0 .. none, 1 .. toggle ring to open, 2 .. activate ring to open, 3 .. deactivate ring to open, 7 .. open (electric strike actuation), 8 .. ring"),
|
|
1499
|
+
fobAction2: z__namespace.int().optional().describe("The fob action if button is pressed twice: type=0/3/4: 0 .. none, 1 .. unlock, 2 .. lock, 3 .. lock 'n' go, 4 .. intelligent (lock/unlocked based on the current state); type=2: 0 .. none, 1 .. toggle ring to open, 2 .. activate ring to open, 3 .. deactivate ring to open, 7 .. open (electric strike actuation), 8 .. ring"),
|
|
1500
|
+
fobAction3: z__namespace.int().optional().describe("The fob action if button is pressed 3 times: type=0/3/4: 0 .. none, 1 .. unlock, 2 .. lock, 3 .. lock 'n' go, 4 .. intelligent (lock/unlocked based on the current state); type=2: 0 .. none, 1 .. toggle ring to open, 2 .. activate ring to open, 3 .. deactivate ring to open, 7 .. open (electric strike actuation), 8 .. ring"),
|
|
1501
|
+
singleLock: z__namespace.boolean().describe("True if the smartlock should only lock once (instead of twice) (only for type=1)"),
|
|
1502
|
+
operatingMode: z__namespace.int().optional().describe("The operating mode of the opener (only for type=2): 0x00 .. generic door opener, 0x01 .. analogue intercom, 0x02 .. digital intercom, 0x03 .. digital intercom Siedle, 0x04 .. digital intercom TCS, 0x05 .. digital intercom Bticino, 0x06 .. analog intercom Siedle HTS, 0x07 .. digital intercom STR, 0x08 .. digital intercom Ritto, 0x09 .. digital intercom Fermax, 0x0A .. digital intercom Comelit, 0x0B .. digital intercom Urmet BiBus, 0x0C .. digital intercom Urmet 2Voice, 0x0D .. digital intercom Golmar, 0x0E .. digital intercom SKS, 0x0F .. digital intercom Spare"),
|
|
1503
|
+
advertisingMode: z__namespace.int().describe("The advertising mode (battery saving): 0 .. automatic, 1 .. normal, 2 .. slow, 3 .. slowest"),
|
|
1504
|
+
keypadPaired: z__namespace.boolean().optional().describe("True if a keypad is paired with the smartlock"),
|
|
1505
|
+
keypad2Paired: z__namespace.boolean().optional().describe("True if a keypad 2 is paired with the smartlock"),
|
|
1506
|
+
homekitState: z__namespace.int().optional().describe("The homekit state: 0 .. unavailable, 1 .. disabled, 2 .. enabled, 3 .. enabled & paired"),
|
|
1507
|
+
matterState: z__namespace.int().optional().describe("The matter state: 0 .. not available, 1 .. disabled and no certificate available, 2 .. disabled, 3 .. enabled, 4 .. enabled & paired"),
|
|
1508
|
+
timezoneId: z__namespace.int().describe("The timezone id (check https://developer.nuki.io for ids)"),
|
|
1509
|
+
deviceType: z__namespace.int().optional().describe("The device type of a Nuki device"),
|
|
1510
|
+
wifiEnabled: z__namespace.boolean().optional().describe("Flag that indicates if the devices internal WIFI module can be used"),
|
|
1511
|
+
operationId: z__namespace.string().optional().describe("The operation id - if set it's locked for another operation"),
|
|
1512
|
+
productVariant: z__namespace.int().optional().describe("The product variant for Smartlock 5: 1 .. Go, 2 .. Pro, 3 .. Ultra")
|
|
1513
|
+
});
|
|
1514
|
+
const smartlockAdvancedConfigSchema = z__namespace.object({
|
|
1515
|
+
lngTimeout: z__namespace.int().optional().describe("Timeout in seconds for lock ‘n’ go"),
|
|
1516
|
+
singleButtonPressAction: z__namespace.int().optional().describe("The desired action, if the button is pressed once: 0 .. no action, 1 .. intelligent, 2 .. unlock, 3 .. lock, 4 .. unlatch, 5 .. lock 'n' go, 6 .. show status"),
|
|
1517
|
+
doubleButtonPressAction: z__namespace.int().optional().describe("The desired action, if the button is pressed twice: 0 .. no action, 1 .. intelligent, 2 .. unlock, 3 .. lock, 4 .. unlatch, 5 .. lock 'n' go, 6 .. show status"),
|
|
1518
|
+
automaticBatteryTypeDetection: z__namespace.boolean().optional().describe("Flag that indicates if the automatic detection of the battery type is enabled"),
|
|
1519
|
+
unlatchDuration: z__namespace.int().optional().describe("Duration in seconds for holding the latch in unlatched position"),
|
|
1520
|
+
operationId: z__namespace.string().optional().describe("The operation id - if set it's locked for another operation"),
|
|
1521
|
+
totalDegrees: z__namespace.int().describe("The absolute total position in degrees that has been reached during calibration"),
|
|
1522
|
+
singleLockedPositionOffsetDegrees: z__namespace.int().describe("Offset that alters the single locked position"),
|
|
1523
|
+
unlockedToLockedTransitionOffsetDegrees: z__namespace.int().optional().describe("Offset that alters the position where transition from unlocked to locked happens"),
|
|
1524
|
+
unlockedPositionOffsetDegrees: z__namespace.int().describe("Offset that alters the unlocked position"),
|
|
1525
|
+
lockedPositionOffsetDegrees: z__namespace.int().describe("Offset that alters the locked position"),
|
|
1526
|
+
detachedCylinder: z__namespace.boolean().optional().describe("Flag that indicates that the inner side of the used cylinder is detached from the outer side"),
|
|
1527
|
+
batteryType: z__namespace.int().describe("The type of the batteries present in the smart lock: 0 .. alkali, 1 .. accumulator, 2 .. lithium"),
|
|
1528
|
+
autoLock: z__namespace.boolean().optional().describe("New separate flag with FW >= 2.7.8/1.9.1: The Auto Lock feature automatically locks your door when it has been unlocked for a certain period of time"),
|
|
1529
|
+
autoLockTimeout: z__namespace.int().optional().describe("Seconds until the smart lock relocks itself after it has been unlocked. FW < 2.7.8/1.9.1: No auto relock if value is 0, FW >= 2.7.8/1.9.1: has to be >=2 (defaults to 2 for values <2 if autoLock is set to true)"),
|
|
1530
|
+
autoUpdateEnabled: z__namespace.boolean().optional().describe("Flag that indicates if available firmware updates for the deviceshould be installed automatically"),
|
|
1531
|
+
motorSpeed: z__namespace.int().optional().describe("Field used for setting the motor speed. 0x00 ... standard, 0x01 ... fast, 0x02 ... slow"),
|
|
1532
|
+
enableSlowSpeedDuringNightmode: z__namespace.boolean().optional().describe("Flag indicating if the slow speed shall be applied during NightMode")
|
|
1533
|
+
});
|
|
1534
|
+
const smartlockOpenerAdvancedConfigSchema = z__namespace.object({
|
|
1535
|
+
intercomId: z__namespace.int().describe("The database ID of the connected intercom"),
|
|
1536
|
+
busModeSwitch: z__namespace.int().describe("Method to switch between data and analogue mode"),
|
|
1537
|
+
shortCircuitDuration: z__namespace.int().describe("Duration of the short circuit for BUS mode switching in ms"),
|
|
1538
|
+
electricStrikeDelay: z__namespace.int().describe("Delay of electric strike activation in ms after lock action 3 'electric strike actuation'"),
|
|
1539
|
+
randomElectricStrikeDelay: z__namespace.boolean().describe("Random electricStrikeDelay (range 3000 - 7000 ms) in order to simulate a person inside actuating the electric strike"),
|
|
1540
|
+
electricStrikeDuration: z__namespace.int().describe("Duration in ms of electric strike actuation lock action 3 'electric strike actuation'"),
|
|
1541
|
+
disableRtoAfterRing: z__namespace.boolean().describe("Flag to disable RTO after ring"),
|
|
1542
|
+
rtoTimeout: z__namespace.int().describe("After this period of time in minutes, RTO gets deactivated automatically"),
|
|
1543
|
+
doorbellSuppression: z__namespace.int().describe("The doorbell supression bitmask: first bit (least significant) .. whenever the doorbell rings and CM and RTO are inactive, second bit .. RTO is active, third bit .. CM is active"),
|
|
1544
|
+
doorbellSuppressionDuration: z__namespace.int().describe("Duration in ms of doorbell suppression (only in Operating mode 2 'digital Intercom')"),
|
|
1545
|
+
soundRing: z__namespace.int().describe("The sound for ring: 0 .. no sound, 1 .. Sound1, 2 .. Sound2, 3 .. Sound3"),
|
|
1546
|
+
soundOpen: z__namespace.int().describe("The sound for open: 0 .. no sound, 1 .. Sound1, 2 .. Sound2, 3 .. Sound3"),
|
|
1547
|
+
soundRto: z__namespace.int().describe("The sound for RTO: 0 .. no sound, 1 .. Sound1, 2 .. Sound2, 3 .. Sound3"),
|
|
1548
|
+
soundCm: z__namespace.int().describe("The sound for CM: 0 .. no sound, 1 .. Sound1, 2 .. Sound2, 3 .. Sound3"),
|
|
1549
|
+
soundConfirmation: z__namespace.int().describe("The sound confirmation: 0 .. no sound, 1 .. sound"),
|
|
1550
|
+
soundLevel: z__namespace.int().describe("The sound level"),
|
|
1551
|
+
singleButtonPressAction: z__namespace.int().describe("The desired action, if the button is pressed once: 0 .. no action, 1 .. toggle RTO, 2 .. activate RTO, 3 .. deactivate RTO, 4 .. toggle CM, 5 .. activate CM, 6 .. deactivate CM, 7 .. open"),
|
|
1552
|
+
doubleButtonPressAction: z__namespace.int().describe("The desired action, if the button is pressed twice: 0 .. no action, 1 .. toggle RTO, 2 .. activate RTO, 3 .. deactivate RTO, 4 .. toggle CM, 5 .. activate CM, 6 .. deactivate CM, 7 .. open"),
|
|
1553
|
+
batteryType: z__namespace.int().describe("The type of the batteries present in the smart lock: 0 .. alkali, 1 .. accumulator, 2 .. lithium, 3 .. fixed"),
|
|
1554
|
+
automaticBatteryTypeDetection: z__namespace.boolean().optional().describe("Flag that indicates if the automatic detection of the battery type is enabled"),
|
|
1555
|
+
autoUpdateEnabled: z__namespace.boolean().optional().describe("Flag that indicates if available firmware updates for the deviceshould be installed automatically"),
|
|
1556
|
+
operationId: z__namespace.string().optional().describe("The operation id - if set it's locked for another operation")
|
|
1557
|
+
});
|
|
1558
|
+
const smartlockSmartdoorAdvancedConfigSchema = z__namespace.object({
|
|
1559
|
+
lngTimeout: z__namespace.int().optional().describe("Timeout in seconds for lock ‘n’ go"),
|
|
1560
|
+
singleButtonPressAction: z__namespace.int().optional().describe("The desired action, if the button is pressed once: 0 .. no action, 1 .. intelligent, 2 .. unlock, 3 .. lock, 4 .. unlatch, 5 .. lock 'n' go, 6 .. show status"),
|
|
1561
|
+
doubleButtonPressAction: z__namespace.int().optional().describe("The desired action, if the button is pressed twice: 0 .. no action, 1 .. intelligent, 2 .. unlock, 3 .. lock, 4 .. unlatch, 5 .. lock 'n' go, 6 .. show status"),
|
|
1562
|
+
automaticBatteryTypeDetection: z__namespace.boolean().optional().describe("Flag that indicates if the automatic detection of the battery type is enabled"),
|
|
1563
|
+
unlatchDuration: z__namespace.int().optional().describe("Duration in seconds for holding the latch in unlatched position"),
|
|
1564
|
+
operationId: z__namespace.string().optional().describe("The operation id - if set it's locked for another operation"),
|
|
1565
|
+
buzzerVolume: z__namespace.int().optional().describe("The volume of the buzzer: 0 .. off, 1 .. low, 2 .. normal"),
|
|
1566
|
+
supportedBatteryTypes: z__namespace.array(z__namespace.int()).refine((items)=>new Set(items).size === items.length, {
|
|
1567
|
+
message: "Array entries must be unique"
|
|
1568
|
+
}).optional().describe("Set of supported battery types: 0 .. alkali, 1 .. accumulator, 2 .. lithium, 3 .. fixed, 254 .. automatic, 255 .. unknown"),
|
|
1569
|
+
batteryType: z__namespace.int().describe("The type of the batteries present in the smart lock: 0 .. alkali, 1 .. accumulator, 2 .. lithium, 3 .. fixed, 255 .. unknown"),
|
|
1570
|
+
autoLockTimeout: z__namespace.int().optional().describe("Seconds until the smart lock relocks itself after it has been unlocked. No auto relock if value is 0"),
|
|
1571
|
+
autoLock: z__namespace.boolean().describe("The Auto Lock feature automatically locks your door when it has been unlocked for a certain period of time")
|
|
1572
|
+
});
|
|
1573
|
+
const smartlockStateSchema = z__namespace.object({
|
|
1574
|
+
mode: z__namespace.int().describe("The smartlock mode: 0 .. uninitialized, 1 .. pairing, 2 .. door (default), 3 .. continuous (type=2 only), 4 .. maintenance, 5 .. off-door charging"),
|
|
1575
|
+
state: z__namespace.int().describe("The smartlock state: type=0/3/4: 0 .. uncalibrated, 1 .. locked, 2 .. unlocking, 3 .. unlocked, 4 .. locking, 5 .. unlatched, 6 .. unlocked (lock 'n' go), 7 .. unlatching, 224 .. Error wrong entry code, 225 .. Error wrong Fingerprint, 254 .. motor blocked, 255 .. undefined; type=2: 0 .. untrained, 1 .. online, 3 .. ring to open active, 5 .. open, 7 .. opening, 253 .. boot run, 255 .. undefined"),
|
|
1576
|
+
trigger: z__namespace.int().describe(" The state trigger: 0 .. system, 1 .. manual, 2 .. button, 3 .. automatic, 4 .. web (type=1 only), 5 .. app (type=1 only), 6 .. continuous mode (type=2 only), 7 .. accessory (type=3 only)"),
|
|
1577
|
+
lastAction: z__namespace.int().describe("The action: type=0/3/4: 1 .. unlock, 2 .. lock, 3 .. unlatch, 4 .. lock 'n' go, 5 .. lock 'n' go with unlatch; type=1: 1 .. unlock; type=2: 1 .. activate ring to open, 2 .. deactivate ring to open, 3 .. open (electric strike actuation)"),
|
|
1578
|
+
batteryCritical: z__namespace.boolean().describe("True if the battery state of the device is critical"),
|
|
1579
|
+
batteryCharging: z__namespace.boolean().optional().describe("True if a Nuki battery pack in a Smart Lock is currently charging"),
|
|
1580
|
+
batteryCharge: z__namespace.int().optional().describe("Remaining capacity of a Nuki battery pack in %"),
|
|
1581
|
+
keypadBatteryCritical: z__namespace.boolean().optional().describe("True if the battery of a paired Keypad is critical (only available for supported devices)"),
|
|
1582
|
+
doorsensorBatteryCritical: z__namespace.boolean().optional().describe("True if the battery of a paired doorsensor is critical (only available for supported devices)"),
|
|
1583
|
+
doorState: z__namespace.int().describe("The door state: 0 .. unavailable/not paired, 1 .. deactivated, 2 .. door closed, 3 .. door opened, 4 .. door state unknown, 5 .. calibrating, 16 .. uncalibrated, 240 .. removed, 255 .. unknown"),
|
|
1584
|
+
ringToOpenTimer: z__namespace.int().describe("[deprecated] Remaining ring to open time; 0 if ring to open is not active (type=2 only)"),
|
|
1585
|
+
ringToOpenEnd: z__namespace.iso.datetime().optional().describe("End date of ring to open timeout; null if ring to open is not active (type=2 only)"),
|
|
1586
|
+
nightMode: z__namespace.boolean().describe("True if night mode currently active"),
|
|
1587
|
+
operationId: z__namespace.string().optional().describe("The operation id - if set it's locked for another operation")
|
|
1588
|
+
});
|
|
1589
|
+
const smartlockSchema = z__namespace.object({
|
|
1590
|
+
smartlockId: z__namespace.coerce.bigint().describe("The smartlock id"),
|
|
1591
|
+
accountId: z__namespace.int().describe("The account id"),
|
|
1592
|
+
type: z__namespace.int().describe("The type: 0 .. Smartlock 1/2, 1 .. Box, 2 .. Opener, 3 .. Smartdoor, 4 .. Smartlock 3/4, 5 .. Smartlock 5"),
|
|
1593
|
+
lmType: z__namespace.int().optional().describe("The lock mechanism used in the smart door lock: 1 .. MyEVO, 2 .. KFV Genius (only for type = 3)"),
|
|
1594
|
+
authId: z__namespace.int().describe("The authorization id"),
|
|
1595
|
+
name: z__namespace.string().describe("The name of the smartlock"),
|
|
1596
|
+
favorite: z__namespace.boolean().describe("The favorite flag"),
|
|
1597
|
+
config: smartlockConfigSchema.optional().describe("The config"),
|
|
1598
|
+
advancedConfig: smartlockAdvancedConfigSchema.optional().describe("The advanced config"),
|
|
1599
|
+
openerAdvancedConfig: smartlockOpenerAdvancedConfigSchema.optional().describe("The opener advanced config"),
|
|
1600
|
+
smartdoorAdvancedConfig: smartlockSmartdoorAdvancedConfigSchema.optional().describe("The smartdoor advanced config"),
|
|
1601
|
+
webConfig: smartlockWebConfigSchema.optional().describe("The web config"),
|
|
1602
|
+
state: smartlockStateSchema.optional().describe("The state"),
|
|
1603
|
+
firmwareVersion: z__namespace.int().optional().describe("The firmware version"),
|
|
1604
|
+
hardwareVersion: z__namespace.int().optional().describe("The hardware version"),
|
|
1605
|
+
operationId: z__namespace.string().optional().describe("The operation id - if set it's locked for another operation"),
|
|
1606
|
+
serverState: z__namespace.int().describe("The server state: 0 .. ok, 1 .. unregistered, 2 .. auth uuid invalid, 3 .. auth invalid, 4 .. offline"),
|
|
1607
|
+
adminPinState: z__namespace.int().describe("The admin pin state: 0 .. ok, 1 .. missing, 2 .. invalid"),
|
|
1608
|
+
virtualDevice: z__namespace.boolean().optional().describe("The flag indicating a virtual Smart Lock"),
|
|
1609
|
+
creationDate: z__namespace.iso.datetime().optional().describe("The creation date"),
|
|
1610
|
+
updateDate: z__namespace.iso.datetime().optional().describe("The update date"),
|
|
1611
|
+
error: z__namespace.string().optional().describe("In case of any error, it contains the error message"),
|
|
1612
|
+
previousSubscriptions: z__namespace.array(shsSubscriptionSchema).optional().describe("Previous Subscriptions"),
|
|
1613
|
+
currentSubscription: shsSubscriptionSchema.optional().describe("Current Subscription"),
|
|
1614
|
+
region: z__namespace.int().optional().describe("The region"),
|
|
1615
|
+
mountingVariant: z__namespace.int().optional().describe("The mounting variant"),
|
|
1616
|
+
opener: z__namespace.boolean().optional(),
|
|
1617
|
+
box: z__namespace.boolean().optional(),
|
|
1618
|
+
smartDoor: z__namespace.boolean().optional(),
|
|
1619
|
+
keyturner: z__namespace.boolean().optional()
|
|
1620
|
+
});
|
|
1621
|
+
const smartlockActionSchema = z__namespace.object({
|
|
1622
|
+
action: z__namespace.int().describe("The action: type=0/3/4: 1 .. unlock, 2 .. lock, 3 .. unlatch, 4 .. lock 'n' go, 5 .. lock 'n' go with unlatch; type=1: 1 .. unlock; type=2: 1 activate ring to open, 2 .. deactivate ring to open, 3 .. open (electric strike actuation), 6 ... activate continuous mode, 7 ... deactivate continuous mode"),
|
|
1623
|
+
option: z__namespace.int().optional().describe("The option mask: 0 .. none, 2 .. force, 4 .. full lock")
|
|
1624
|
+
});
|
|
1625
|
+
const smartlockAdminPinUpdateSchema = z__namespace.object({
|
|
1626
|
+
adminPin: z__namespace.int().describe("The admin pin")
|
|
1627
|
+
});
|
|
1628
|
+
const smartlockAuthSchema = z__namespace.object({
|
|
1629
|
+
id: z__namespace.string().describe("The unique id for the smartlock authorization"),
|
|
1630
|
+
smartlockId: z__namespace.coerce.bigint().describe("The smartlock id"),
|
|
1631
|
+
accountUserId: z__namespace.int().optional().describe("The id of the linked account user"),
|
|
1632
|
+
authId: z__namespace.int().optional().describe("The smartlock authorization id"),
|
|
1633
|
+
code: z__namespace.int().optional().describe("The keypad code (only for type keypad)"),
|
|
1634
|
+
fingerprints: z__namespace.object({}).catchall(z__namespace.string()).optional(),
|
|
1635
|
+
type: z__namespace.int().describe("The type of the authorization: 0 .. app, 1 .. bridge, 2 .. fob, 3 .. keypad, 13 .. keypad code, 14 .. z-key, 15 .. virtual"),
|
|
1636
|
+
name: z__namespace.string().describe("The name of the authorization (max 32 chars)"),
|
|
1637
|
+
enabled: z__namespace.boolean().describe("True if the auth is enabled"),
|
|
1638
|
+
remoteAllowed: z__namespace.boolean().describe("True if the auth has remote access"),
|
|
1639
|
+
lockCount: z__namespace.int().describe("The lock count"),
|
|
1640
|
+
allowedFromDate: z__namespace.iso.datetime().optional().describe("The allowed from date"),
|
|
1641
|
+
allowedUntilDate: z__namespace.iso.datetime().optional().describe("The allowed until date"),
|
|
1642
|
+
allowedWeekDays: z__namespace.int().optional().describe("The allowed weekdays bitmask: 64 .. monday, 32 .. tuesday, 16 .. wednesday, 8 .. thursday, 4 .. friday, 2 .. saturday, 1 .. sunday"),
|
|
1643
|
+
allowedFromTime: z__namespace.int().optional().describe("The allowed from time (in minutes from midnight)"),
|
|
1644
|
+
allowedUntilTime: z__namespace.int().optional().describe("The allowed until time (in minutes from midnight)"),
|
|
1645
|
+
lastActiveDate: z__namespace.iso.datetime().optional().describe("The last active date"),
|
|
1646
|
+
creationDate: z__namespace.iso.datetime().optional().describe("The creation date"),
|
|
1647
|
+
updateDate: z__namespace.iso.datetime().optional().describe("The update date"),
|
|
1648
|
+
operationId: objectIdSchema.optional().describe("The operation id - if set the auth is locked for another operations."),
|
|
1649
|
+
error: z__namespace.string().optional().describe("In case of any error, it contains the error message"),
|
|
1650
|
+
appId: z__namespace.int().optional().describe("The ID of the Nuki App"),
|
|
1651
|
+
authTypeAsString: z__namespace.string().optional()
|
|
1652
|
+
});
|
|
1653
|
+
const smartlockAuthCreateSchema = z__namespace.object({
|
|
1654
|
+
name: z__namespace.string().describe("The name of the authorization (max 32 chars)"),
|
|
1655
|
+
allowedFromDate: z__namespace.iso.datetime().optional().describe("The allowed from date"),
|
|
1656
|
+
allowedUntilDate: z__namespace.iso.datetime().optional().describe("The allowed until date"),
|
|
1657
|
+
allowedWeekDays: z__namespace.int().optional().describe("The allowed weekdays bitmask: 64 .. monday, 32 .. tuesday, 16 .. wednesday, 8 .. thursday, 4 .. friday, 2 .. saturday, 1 .. sunday"),
|
|
1658
|
+
allowedFromTime: z__namespace.int().optional().describe("The allowed from time (in minutes from midnight)"),
|
|
1659
|
+
allowedUntilTime: z__namespace.int().optional().describe("The allowed until time (in minutes from midnight)"),
|
|
1660
|
+
accountUserId: z__namespace.int().optional().describe("The id of the linked account user (required if type is NOT 13 .. keypad)"),
|
|
1661
|
+
remoteAllowed: z__namespace.boolean().describe("True if the auth has remote access"),
|
|
1662
|
+
smartActionsEnabled: z__namespace.boolean().optional().describe("The smart actions enabled flag"),
|
|
1663
|
+
type: z__namespace.int().optional().describe("The optional type of the auth 0 .. app (default), 2 .. fob, 13 .. keypad"),
|
|
1664
|
+
code: z__namespace.int().optional().describe("The code of the keypad authorization (only for keypad)")
|
|
1665
|
+
});
|
|
1666
|
+
const smartlockAuthMultiUpdateSchema = z__namespace.object({
|
|
1667
|
+
name: z__namespace.string().describe("The name of the authorization (max 32 chars)"),
|
|
1668
|
+
allowedFromDate: z__namespace.iso.datetime().optional().describe("The allowed from date"),
|
|
1669
|
+
allowedUntilDate: z__namespace.iso.datetime().optional().describe("The allowed until date"),
|
|
1670
|
+
allowedWeekDays: z__namespace.int().optional().describe("The allowed weekdays bitmask: 64 .. monday, 32 .. tuesday, 16 .. wednesday, 8 .. thursday, 4 .. friday, 2 .. saturday, 1 .. sunday"),
|
|
1671
|
+
allowedFromTime: z__namespace.int().optional().describe("The allowed from time (in minutes from midnight)"),
|
|
1672
|
+
allowedUntilTime: z__namespace.int().optional().describe("The allowed until time (in minutes from midnight)"),
|
|
1673
|
+
accountUserId: z__namespace.int().optional().describe("The id of the linked account user"),
|
|
1674
|
+
enabled: z__namespace.boolean().optional().describe("True if the auth is enabled"),
|
|
1675
|
+
remoteAllowed: z__namespace.boolean().optional().describe("True if the auth has remote access"),
|
|
1676
|
+
code: z__namespace.int().optional().describe("The code of the keypad authorization (only for keypad)"),
|
|
1677
|
+
id: z__namespace.string().describe("The unique id for the smartlock authorization")
|
|
1678
|
+
});
|
|
1679
|
+
const smartlockAuthUpdateSchema = z__namespace.object({
|
|
1680
|
+
name: z__namespace.string().describe("The name of the authorization (max 32 chars)"),
|
|
1681
|
+
allowedFromDate: z__namespace.iso.datetime().optional().describe("The allowed from date"),
|
|
1682
|
+
allowedUntilDate: z__namespace.iso.datetime().optional().describe("The allowed until date"),
|
|
1683
|
+
allowedWeekDays: z__namespace.int().optional().describe("The allowed weekdays bitmask: 64 .. monday, 32 .. tuesday, 16 .. wednesday, 8 .. thursday, 4 .. friday, 2 .. saturday, 1 .. sunday"),
|
|
1684
|
+
allowedFromTime: z__namespace.int().optional().describe("The allowed from time (in minutes from midnight)"),
|
|
1685
|
+
allowedUntilTime: z__namespace.int().optional().describe("The allowed until time (in minutes from midnight)"),
|
|
1686
|
+
accountUserId: z__namespace.int().optional().describe("The id of the linked account user"),
|
|
1687
|
+
enabled: z__namespace.boolean().optional().describe("True if the auth is enabled"),
|
|
1688
|
+
remoteAllowed: z__namespace.boolean().optional().describe("True if the auth has remote access"),
|
|
1689
|
+
code: z__namespace.int().optional().describe("The code of the keypad authorization (only for keypad)")
|
|
1690
|
+
});
|
|
1691
|
+
const smartlockAuthWithSharedKeyCreateSchema = z__namespace.object({
|
|
1692
|
+
name: z__namespace.string().describe("The name of the authorization (max 32 chars)"),
|
|
1693
|
+
allowedFromDate: z__namespace.iso.datetime().optional().describe("The allowed from date"),
|
|
1694
|
+
allowedUntilDate: z__namespace.iso.datetime().optional().describe("The allowed until date"),
|
|
1695
|
+
allowedWeekDays: z__namespace.int().optional().describe("The allowed weekdays bitmask: 64 .. monday, 32 .. tuesday, 16 .. wednesday, 8 .. thursday, 4 .. friday, 2 .. saturday, 1 .. sunday"),
|
|
1696
|
+
allowedFromTime: z__namespace.int().optional().describe("The allowed from time (in minutes from midnight)"),
|
|
1697
|
+
allowedUntilTime: z__namespace.int().optional().describe("The allowed until time (in minutes from midnight)"),
|
|
1698
|
+
accountUserId: z__namespace.int().optional().describe("The id of the linked account user")
|
|
1699
|
+
});
|
|
1700
|
+
const smartlockLogOpenerLogSchema = z__namespace.object({
|
|
1701
|
+
activeCm: z__namespace.boolean().describe("Flag indicating if continuous mode was active"),
|
|
1702
|
+
activeRto: z__namespace.boolean().describe("Flag indicating if ring to open was active"),
|
|
1703
|
+
source: z__namespace.int().describe("The cause of the activation of ring to open or continuous mode: 0 .. doorbell, 1 .. timecontrol, 2 .. app, 3 .. button, 4 .. fob, 5 .. bridge, 6 .. keypad"),
|
|
1704
|
+
flagGeoFence: z__namespace.boolean().describe("Flag indicating a geo fence induced action"),
|
|
1705
|
+
flagForce: z__namespace.boolean().describe("Flag indicating a force induced action"),
|
|
1706
|
+
flagDoorbellSuppression: z__namespace.boolean().describe("Flag indicating if doorbell suppression was active")
|
|
1707
|
+
});
|
|
1708
|
+
const smartlockLogSchema = z__namespace.object({
|
|
1709
|
+
id: z__namespace.string().describe("The unique id for the smartlock log"),
|
|
1710
|
+
smartlockId: z__namespace.coerce.bigint().describe("The smartlock id"),
|
|
1711
|
+
deviceType: z__namespace.int().describe("The device type: 0 .. Smartlock 1/2 + Box, 2 .. Opener, 3 .. Smartdoor, 4 .. Smartlock 3/4, 5 .. Smartlock 5"),
|
|
1712
|
+
accountUserId: z__namespace.int().optional().describe("The id of the linked account user"),
|
|
1713
|
+
authId: z__namespace.string().optional().describe("The id of the linked smartlock auth"),
|
|
1714
|
+
name: z__namespace.string().describe("The name"),
|
|
1715
|
+
action: z__namespace.int().describe("The action: 1 .. unlock, 2 .. lock, 3 .. unlatch, 4 .. lock'n'go, 5 .. lock'n'go with unlatch, 11 .. Restore reset to default setting, 208 .. door warning ajar, 209 door warning status mismatch, 224 .. doorbell recognition (only Opener), 240 .. door opened, 241 .. door closed, 242 .. door sensor jammed, 243 .. firmware update, 250 .. door log enabled, 251 .. door log disabled, 252 .. initialization, 253 .. calibration, 254 .. log enabled, 255 .. log disabled"),
|
|
1716
|
+
trigger: z__namespace.int().describe("The trigger: 0 .. system, 1 .. manual, 2 .. button, 3 .. automatic, 4 .. web, 5 .. app, 6 .. auto lock, 7 .. accessory, 253 .. keypad error, 254 .. nuki mode, 255 .. keypad"),
|
|
1717
|
+
state: z__namespace.int().describe("The completion state: 0 .. Success, 1 .. Motor blocked, 2 .. Canceled, 3 .. Too recent, 4 .. Busy, 5 .. Low motor voltage, 6 .. Clutch failure, 7 .. Motor power failure, 8 .. Incomplete, 9 .. Rejected, 10 .. Rejected night mode, 224 .. Invalid Code, 225 .. Invalid Fingerprint, 226 .. Invalid NFC Tag, 254 .. Other error, 255 .. Unknown error\nFor source=3 and trigger=253 the following states are used: 0 .. Access document revoked, 1 .. Send NFC failed, 2 .. Control flow, 3 .. Command time expired, 7 .. Invalid data content, 37 .. Invalid access rights, 255 .. Unknown"),
|
|
1718
|
+
autoUnlock: z__namespace.boolean().describe("True if it was an auto unlock"),
|
|
1719
|
+
date: z__namespace.iso.datetime().describe("The log date"),
|
|
1720
|
+
openerLog: smartlockLogOpenerLogSchema.optional().describe("The opener specific log"),
|
|
1721
|
+
ajarTimeout: z__namespace.int().optional().describe("The door sensor warning ajar timeout (in minutes, only for action = 208)"),
|
|
1722
|
+
source: z__namespace.int().optional().describe("The source of action: 1 .. Keypad code, 2 .. Fingerprint, 3 .. Tap to Unlock, 0 .. Default"),
|
|
1723
|
+
error: z__namespace.string().optional().describe("In case of any error, it contains the error message")
|
|
1724
|
+
});
|
|
1725
|
+
const smartlockUpdateSchema = z__namespace.object({
|
|
1726
|
+
name: z__namespace.string().optional().describe("The new name of the smartlock"),
|
|
1727
|
+
favorite: z__namespace.boolean().optional().describe("True if the smartlock is favorite")
|
|
1728
|
+
});
|
|
1729
|
+
const smartlocksAuthAdvancedCreateSchema = z__namespace.object({
|
|
1730
|
+
name: z__namespace.string().describe("The name of the authorization (max 32 chars)"),
|
|
1731
|
+
allowedFromDate: z__namespace.iso.datetime().optional().describe("The allowed from date"),
|
|
1732
|
+
allowedUntilDate: z__namespace.iso.datetime().optional().describe("The allowed until date"),
|
|
1733
|
+
allowedWeekDays: z__namespace.int().optional().describe("The allowed weekdays bitmask: 64 .. monday, 32 .. tuesday, 16 .. wednesday, 8 .. thursday, 4 .. friday, 2 .. saturday, 1 .. sunday"),
|
|
1734
|
+
allowedFromTime: z__namespace.int().optional().describe("The allowed from time (in minutes from midnight)"),
|
|
1735
|
+
allowedUntilTime: z__namespace.int().optional().describe("The allowed until time (in minutes from midnight)"),
|
|
1736
|
+
accountUserId: z__namespace.int().describe("The id of the linked account user"),
|
|
1737
|
+
smartlockIds: z__namespace.array(z__namespace.coerce.bigint()).describe("The list of smartlock ids"),
|
|
1738
|
+
remoteAllowed: z__namespace.boolean().describe("True if the auth has remote access"),
|
|
1739
|
+
smartActionsEnabled: z__namespace.boolean().optional().describe("The smart actions enabled flag")
|
|
1740
|
+
});
|
|
1741
|
+
const smartlocksAuthCreateSchema = z__namespace.object({
|
|
1742
|
+
name: z__namespace.string().describe("The name of the authorization (max 32 chars)"),
|
|
1743
|
+
allowedFromDate: z__namespace.iso.datetime().optional().describe("The allowed from date"),
|
|
1744
|
+
allowedUntilDate: z__namespace.iso.datetime().optional().describe("The allowed until date"),
|
|
1745
|
+
allowedWeekDays: z__namespace.int().optional().describe("The allowed weekdays bitmask: 64 .. monday, 32 .. tuesday, 16 .. wednesday, 8 .. thursday, 4 .. friday, 2 .. saturday, 1 .. sunday"),
|
|
1746
|
+
allowedFromTime: z__namespace.int().optional().describe("The allowed from time (in minutes from midnight)"),
|
|
1747
|
+
allowedUntilTime: z__namespace.int().optional().describe("The allowed until time (in minutes from midnight)"),
|
|
1748
|
+
accountUserId: z__namespace.int().optional().describe("The id of the linked account user (required if type is NOT 13 .. keypad)"),
|
|
1749
|
+
smartlockIds: z__namespace.array(z__namespace.coerce.bigint()).optional().describe("The list of smartlock ids"),
|
|
1750
|
+
remoteAllowed: z__namespace.boolean().describe("True if the auth has remote access"),
|
|
1751
|
+
smartActionsEnabled: z__namespace.boolean().optional().describe("The smart actions enabled flag"),
|
|
1752
|
+
type: z__namespace.int().optional().describe("The optional type of the auth 0 .. app (default), 2 .. fob, 13 .. keypad"),
|
|
1753
|
+
code: z__namespace.int().optional().describe("The code of the keypad authorization (only for keypad)")
|
|
1754
|
+
});
|
|
1755
|
+
const variantSchema = z__namespace.object({
|
|
1756
|
+
characterSet: characterSetSchema.optional(),
|
|
1757
|
+
encodings: z__namespace.array(encodingSchema).optional(),
|
|
1758
|
+
get locationRef () {
|
|
1759
|
+
return referenceSchema.optional();
|
|
1760
|
+
},
|
|
1761
|
+
get languages () {
|
|
1762
|
+
return z__namespace.array(languageSchema).optional();
|
|
1763
|
+
},
|
|
1764
|
+
get mediaType () {
|
|
1765
|
+
return mediaTypeSchema.optional();
|
|
1766
|
+
}
|
|
1767
|
+
});
|
|
1768
|
+
const webhookMessageSchema = z__namespace.object({
|
|
1769
|
+
headers: z__namespace.object({}).catchall(z__namespace.string()).describe("Http Headers as key value pairs"),
|
|
1770
|
+
body: z__namespace.object({}).catchall(z__namespace.object({})).optional().describe("Http Body as Json"),
|
|
1771
|
+
timestamp: z__namespace.iso.datetime().optional().describe("The timestamp when the message was created"),
|
|
1772
|
+
path: z__namespace.string().describe("Path of the message")
|
|
1773
|
+
});
|
|
1774
|
+
const webhookLogSchema = z__namespace.object({
|
|
1775
|
+
id: z__namespace.string().describe("The WebhookLog id"),
|
|
1776
|
+
requestId: z__namespace.string().optional().describe("Request id, set when api-triggered request otherwise empty"),
|
|
1777
|
+
succeeded: z__namespace.boolean().optional().describe("If the webhooks sends the data successfully"),
|
|
1778
|
+
responseStatus: z__namespace.int().optional().describe("Http Status code of the webhook response"),
|
|
1779
|
+
duration: z__namespace.coerce.bigint().optional().describe("The duration of the webhook in milli seconds"),
|
|
1780
|
+
accountId: z__namespace.int().describe("The account id"),
|
|
1781
|
+
request: webhookMessageSchema.optional().describe("Only set if webhook triggered by user"),
|
|
1782
|
+
response: webhookMessageSchema.optional().describe("Set if webhook sent"),
|
|
1783
|
+
apiKeyId: z__namespace.int().describe("Used Api Key for the webhook"),
|
|
1784
|
+
updated: z__namespace.iso.datetime().describe("last updated time"),
|
|
1785
|
+
created: z__namespace.iso.datetime().describe("Creation Date")
|
|
1786
|
+
});
|
|
1787
|
+
const getAccountsResourceStatus200Schema = myAccountSchema;
|
|
1788
|
+
const getAccountsResourceStatus401Schema = z__namespace.unknown();
|
|
1789
|
+
const getAccountsResourceResponseSchema = getAccountsResourceStatus200Schema;
|
|
1790
|
+
const getAccountsResourceErrorSchema = getAccountsResourceStatus401Schema;
|
|
1791
|
+
const postAccountsResourceQueryDeleteApiTokensSchema = z__namespace.boolean().optional().default(true).describe("If false existing API tokens are not deleted if the password is changed");
|
|
1792
|
+
const postAccountsResourceStatus204Schema = z__namespace.unknown();
|
|
1793
|
+
const postAccountsResourceStatus400Schema = z__namespace.unknown();
|
|
1794
|
+
const postAccountsResourceStatus401Schema = z__namespace.unknown();
|
|
1795
|
+
const postAccountsResourceStatus409Schema = z__namespace.unknown();
|
|
1796
|
+
const postAccountsResourceResponseSchema = postAccountsResourceStatus204Schema;
|
|
1797
|
+
const postAccountsResourceErrorSchema = z__namespace.union([
|
|
1798
|
+
postAccountsResourceStatus400Schema,
|
|
1799
|
+
postAccountsResourceStatus401Schema,
|
|
1800
|
+
postAccountsResourceStatus409Schema
|
|
1801
|
+
]);
|
|
1802
|
+
const postAccountsResourceBodySchema = accountUpdateSchema.describe("Account update representation");
|
|
1803
|
+
const deleteAccountsResourceStatus204Schema = z__namespace.unknown();
|
|
1804
|
+
const deleteAccountsResourceStatus401Schema = z__namespace.unknown();
|
|
1805
|
+
const deleteAccountsResourceResponseSchema = deleteAccountsResourceStatus204Schema;
|
|
1806
|
+
const deleteAccountsResourceErrorSchema = deleteAccountsResourceStatus401Schema;
|
|
1807
|
+
const postAccountEmailChangeResourceStatus204Schema = z__namespace.unknown();
|
|
1808
|
+
const postAccountEmailChangeResourceStatus400Schema = z__namespace.unknown();
|
|
1809
|
+
const postAccountEmailChangeResourceStatus401Schema = z__namespace.unknown();
|
|
1810
|
+
const postAccountEmailChangeResourceStatus409Schema = z__namespace.unknown();
|
|
1811
|
+
const postAccountEmailChangeResourceResponseSchema = postAccountEmailChangeResourceStatus204Schema;
|
|
1812
|
+
const postAccountEmailChangeResourceErrorSchema = z__namespace.union([
|
|
1813
|
+
postAccountEmailChangeResourceStatus400Schema,
|
|
1814
|
+
postAccountEmailChangeResourceStatus401Schema,
|
|
1815
|
+
postAccountEmailChangeResourceStatus409Schema
|
|
1816
|
+
]);
|
|
1817
|
+
const postAccountEmailChangeResourceBodySchema = accountEmailChangeSchema.describe("Account email change representation");
|
|
1818
|
+
const postAccountEmailVerifyResourceStatus204Schema = z__namespace.unknown();
|
|
1819
|
+
const postAccountEmailVerifyResourceStatus400Schema = z__namespace.unknown();
|
|
1820
|
+
const postAccountEmailVerifyResourceStatus401Schema = z__namespace.unknown();
|
|
1821
|
+
const postAccountEmailVerifyResourceStatus409Schema = z__namespace.unknown();
|
|
1822
|
+
const postAccountEmailVerifyResourceResponseSchema = postAccountEmailVerifyResourceStatus204Schema;
|
|
1823
|
+
const postAccountEmailVerifyResourceErrorSchema = z__namespace.union([
|
|
1824
|
+
postAccountEmailVerifyResourceStatus400Schema,
|
|
1825
|
+
postAccountEmailVerifyResourceStatus401Schema,
|
|
1826
|
+
postAccountEmailVerifyResourceStatus409Schema
|
|
1827
|
+
]);
|
|
1828
|
+
const getAccountIntegrationsResourceStatus200Schema = z__namespace.array(accountIntegrationSchema);
|
|
1829
|
+
const getAccountIntegrationsResourceStatus401Schema = z__namespace.unknown();
|
|
1830
|
+
const getAccountIntegrationsResourceResponseSchema = getAccountIntegrationsResourceStatus200Schema;
|
|
1831
|
+
const getAccountIntegrationsResourceErrorSchema = getAccountIntegrationsResourceStatus401Schema;
|
|
1832
|
+
const deleteAccountIntegrationsResourceQueryApiKeyIdSchema = z__namespace.int().optional().describe("The api key id to delete (this also removes all tokens if no specific tokenId is given)");
|
|
1833
|
+
const deleteAccountIntegrationsResourceQueryTokenIdSchema = z__namespace.int().optional().describe("The token id if a specific token has to be deleted but not the full api key");
|
|
1834
|
+
const deleteAccountIntegrationsResourceStatus204Schema = z__namespace.unknown();
|
|
1835
|
+
const deleteAccountIntegrationsResourceStatus401Schema = z__namespace.unknown();
|
|
1836
|
+
const deleteAccountIntegrationsResourceResponseSchema = deleteAccountIntegrationsResourceStatus204Schema;
|
|
1837
|
+
const deleteAccountIntegrationsResourceErrorSchema = deleteAccountIntegrationsResourceStatus401Schema;
|
|
1838
|
+
const postAccountOtpResourceStatus204Schema = z__namespace.unknown();
|
|
1839
|
+
const postAccountOtpResourceStatus400Schema = z__namespace.unknown();
|
|
1840
|
+
const postAccountOtpResourceStatus401Schema = z__namespace.unknown();
|
|
1841
|
+
const postAccountOtpResourceStatus429Schema = z__namespace.unknown();
|
|
1842
|
+
const postAccountOtpResourceResponseSchema = postAccountOtpResourceStatus204Schema;
|
|
1843
|
+
const postAccountOtpResourceErrorSchema = z__namespace.union([
|
|
1844
|
+
postAccountOtpResourceStatus400Schema,
|
|
1845
|
+
postAccountOtpResourceStatus401Schema,
|
|
1846
|
+
postAccountOtpResourceStatus429Schema
|
|
1847
|
+
]);
|
|
1848
|
+
const postAccountOtpResourceBodySchema = accountOtpEnableSchema.describe("Account one time password enable representation");
|
|
1849
|
+
const putAccountOtpResourceStatus200Schema = z__namespace.string();
|
|
1850
|
+
const putAccountOtpResourceStatus405Schema = z__namespace.unknown();
|
|
1851
|
+
const putAccountOtpResourceResponseSchema = putAccountOtpResourceStatus200Schema;
|
|
1852
|
+
const putAccountOtpResourceErrorSchema = putAccountOtpResourceStatus405Schema;
|
|
1853
|
+
const deleteAccountOtpResourceStatus204Schema = z__namespace.unknown();
|
|
1854
|
+
const deleteAccountOtpResourceStatus401Schema = z__namespace.unknown();
|
|
1855
|
+
const deleteAccountOtpResourceResponseSchema = deleteAccountOtpResourceStatus204Schema;
|
|
1856
|
+
const deleteAccountOtpResourceErrorSchema = deleteAccountOtpResourceStatus401Schema;
|
|
1857
|
+
const postAccountPasswordResetResourceStatus204Schema = z__namespace.unknown();
|
|
1858
|
+
const postAccountPasswordResetResourceStatus401Schema = z__namespace.unknown();
|
|
1859
|
+
const postAccountPasswordResetResourceResponseSchema = postAccountPasswordResetResourceStatus204Schema;
|
|
1860
|
+
const postAccountPasswordResetResourceErrorSchema = postAccountPasswordResetResourceStatus401Schema;
|
|
1861
|
+
const postAccountPasswordResetResourceBodySchema = accountPasswordResetSchema.describe("Account password reset representation");
|
|
1862
|
+
const getAccountSettingResourceStatus200Schema = accountSettingSchema;
|
|
1863
|
+
const getAccountSettingResourceStatus401Schema = z__namespace.unknown();
|
|
1864
|
+
const getAccountSettingResourceStatus403Schema = z__namespace.unknown();
|
|
1865
|
+
const getAccountSettingResourceStatus404Schema = z__namespace.unknown();
|
|
1866
|
+
const getAccountSettingResourceResponseSchema = getAccountSettingResourceStatus200Schema;
|
|
1867
|
+
const getAccountSettingResourceErrorSchema = z__namespace.union([
|
|
1868
|
+
getAccountSettingResourceStatus401Schema,
|
|
1869
|
+
getAccountSettingResourceStatus403Schema,
|
|
1870
|
+
getAccountSettingResourceStatus404Schema
|
|
1871
|
+
]);
|
|
1872
|
+
const putAccountSettingResourceStatus200Schema = accountSettingSchema;
|
|
1873
|
+
const putAccountSettingResourceStatus400Schema = z__namespace.unknown();
|
|
1874
|
+
const putAccountSettingResourceStatus401Schema = z__namespace.unknown();
|
|
1875
|
+
const putAccountSettingResourceResponseSchema = putAccountSettingResourceStatus200Schema;
|
|
1876
|
+
const putAccountSettingResourceErrorSchema = z__namespace.union([
|
|
1877
|
+
putAccountSettingResourceStatus400Schema,
|
|
1878
|
+
putAccountSettingResourceStatus401Schema
|
|
1879
|
+
]);
|
|
1880
|
+
const putAccountSettingResourceBodySchema = accountSettingSchema.describe("Account setting representation");
|
|
1881
|
+
const deleteAccountSettingResourceStatus204Schema = z__namespace.unknown();
|
|
1882
|
+
const deleteAccountSettingResourceStatus401Schema = z__namespace.unknown();
|
|
1883
|
+
const deleteAccountSettingResourceStatus403Schema = z__namespace.unknown();
|
|
1884
|
+
const deleteAccountSettingResourceResponseSchema = deleteAccountSettingResourceStatus204Schema;
|
|
1885
|
+
const deleteAccountSettingResourceErrorSchema = z__namespace.union([
|
|
1886
|
+
deleteAccountSettingResourceStatus401Schema,
|
|
1887
|
+
deleteAccountSettingResourceStatus403Schema
|
|
1888
|
+
]);
|
|
1889
|
+
const getAccountSubsResourceQueryEmailSchema = z__namespace.string().optional().describe("The optional email (regex)");
|
|
1890
|
+
const getAccountSubsResourceStatus200Schema = accountSchema;
|
|
1891
|
+
const getAccountSubsResourceStatus401Schema = z__namespace.unknown();
|
|
1892
|
+
const getAccountSubsResourceResponseSchema = getAccountSubsResourceStatus200Schema;
|
|
1893
|
+
const getAccountSubsResourceErrorSchema = getAccountSubsResourceStatus401Schema;
|
|
1894
|
+
const putAccountSubsResourceStatus200Schema = myAccountSchema;
|
|
1895
|
+
const putAccountSubsResourceStatus400Schema = z__namespace.unknown();
|
|
1896
|
+
const putAccountSubsResourceResponseSchema = putAccountSubsResourceStatus200Schema;
|
|
1897
|
+
const putAccountSubsResourceErrorSchema = putAccountSubsResourceStatus400Schema;
|
|
1898
|
+
const putAccountSubsResourceBodySchema = accountSubCreateSchema.describe("Account sub create representation");
|
|
1899
|
+
const getAccountSubResourcePathAccountIdSchema = z__namespace.int().describe("The account ID");
|
|
1900
|
+
const getAccountSubResourceStatus200Schema = accountSchema;
|
|
1901
|
+
const getAccountSubResourceStatus401Schema = z__namespace.unknown();
|
|
1902
|
+
const getAccountSubResourceResponseSchema = getAccountSubResourceStatus200Schema;
|
|
1903
|
+
const getAccountSubResourceErrorSchema = getAccountSubResourceStatus401Schema;
|
|
1904
|
+
const postAccountSubResourcePathAccountIdSchema = z__namespace.int().describe("The account ID");
|
|
1905
|
+
const postAccountSubResourceStatus204Schema = z__namespace.unknown();
|
|
1906
|
+
const postAccountSubResourceStatus400Schema = z__namespace.unknown();
|
|
1907
|
+
const postAccountSubResourceStatus401Schema = z__namespace.unknown();
|
|
1908
|
+
const postAccountSubResourceStatus409Schema = z__namespace.unknown();
|
|
1909
|
+
const postAccountSubResourceResponseSchema = postAccountSubResourceStatus204Schema;
|
|
1910
|
+
const postAccountSubResourceErrorSchema = z__namespace.union([
|
|
1911
|
+
postAccountSubResourceStatus400Schema,
|
|
1912
|
+
postAccountSubResourceStatus401Schema,
|
|
1913
|
+
postAccountSubResourceStatus409Schema
|
|
1914
|
+
]);
|
|
1915
|
+
const postAccountSubResourceBodySchema = accountSubUpdateSchema.describe("Account update representation");
|
|
1916
|
+
const deleteAccountSubResourcePathAccountIdSchema = z__namespace.int().describe("The account ID");
|
|
1917
|
+
const deleteAccountSubResourceStatus204Schema = z__namespace.unknown();
|
|
1918
|
+
const deleteAccountSubResourceStatus401Schema = z__namespace.unknown();
|
|
1919
|
+
const deleteAccountSubResourceResponseSchema = deleteAccountSubResourceStatus204Schema;
|
|
1920
|
+
const deleteAccountSubResourceErrorSchema = deleteAccountSubResourceStatus401Schema;
|
|
1921
|
+
const getAccountUsersResourceQueryEmailSchema = z__namespace.string().optional().describe("Filter for email");
|
|
1922
|
+
const getAccountUsersResourceQueryOffsetSchema = z__namespace.int().optional().describe("The offset of the first user in the collection to return");
|
|
1923
|
+
const getAccountUsersResourceQueryLimitSchema = z__namespace.int().optional().describe("The maximum number of users to return. If the value exceeds the maximum, then the maximum value will be used.");
|
|
1924
|
+
const getAccountUsersResourceStatus200Schema = z__namespace.array(accountUserSchema);
|
|
1925
|
+
const getAccountUsersResourceStatus401Schema = z__namespace.unknown();
|
|
1926
|
+
const getAccountUsersResourceResponseSchema = getAccountUsersResourceStatus200Schema;
|
|
1927
|
+
const getAccountUsersResourceErrorSchema = getAccountUsersResourceStatus401Schema;
|
|
1928
|
+
const putAccountUsersResourceStatus200Schema = accountUserSchema;
|
|
1929
|
+
const putAccountUsersResourceStatus400Schema = z__namespace.unknown();
|
|
1930
|
+
const putAccountUsersResourceResponseSchema = putAccountUsersResourceStatus200Schema;
|
|
1931
|
+
const putAccountUsersResourceErrorSchema = putAccountUsersResourceStatus400Schema;
|
|
1932
|
+
const putAccountUsersResourceBodySchema = accountUserCreateSchema.describe("Account sub create representation");
|
|
1933
|
+
const getAccountUserResourcePathAccountUserIdSchema = z__namespace.int().describe("The account user ID");
|
|
1934
|
+
const getAccountUserResourceStatus200Schema = accountUserSchema;
|
|
1935
|
+
const getAccountUserResourceStatus401Schema = z__namespace.unknown();
|
|
1936
|
+
const getAccountUserResourceResponseSchema = getAccountUserResourceStatus200Schema;
|
|
1937
|
+
const getAccountUserResourceErrorSchema = getAccountUserResourceStatus401Schema;
|
|
1938
|
+
const postAccountUserResourcePathAccountUserIdSchema = z__namespace.int().describe("The account user ID");
|
|
1939
|
+
const postAccountUserResourceStatus200Schema = accountUserSchema;
|
|
1940
|
+
const postAccountUserResourceStatus204Schema = z__namespace.unknown();
|
|
1941
|
+
const postAccountUserResourceStatus400Schema = z__namespace.unknown();
|
|
1942
|
+
const postAccountUserResourceStatus401Schema = z__namespace.unknown();
|
|
1943
|
+
const postAccountUserResourceStatus409Schema = z__namespace.unknown();
|
|
1944
|
+
const postAccountUserResourceResponseSchema = z__namespace.union([
|
|
1945
|
+
postAccountUserResourceStatus200Schema,
|
|
1946
|
+
postAccountUserResourceStatus204Schema
|
|
1947
|
+
]);
|
|
1948
|
+
const postAccountUserResourceErrorSchema = z__namespace.union([
|
|
1949
|
+
postAccountUserResourceStatus400Schema,
|
|
1950
|
+
postAccountUserResourceStatus401Schema,
|
|
1951
|
+
postAccountUserResourceStatus409Schema
|
|
1952
|
+
]);
|
|
1953
|
+
const postAccountUserResourceBodySchema = accountUserUpdateSchema.describe("Account update representation");
|
|
1954
|
+
const deleteAccountUserResourcePathAccountUserIdSchema = z__namespace.int().describe("The account user ID");
|
|
1955
|
+
const deleteAccountUserResourceStatus204Schema = z__namespace.unknown();
|
|
1956
|
+
const deleteAccountUserResourceStatus401Schema = z__namespace.unknown();
|
|
1957
|
+
const deleteAccountUserResourceStatus423Schema = z__namespace.unknown();
|
|
1958
|
+
const deleteAccountUserResourceResponseSchema = deleteAccountUserResourceStatus204Schema;
|
|
1959
|
+
const deleteAccountUserResourceErrorSchema = z__namespace.union([
|
|
1960
|
+
deleteAccountUserResourceStatus401Schema,
|
|
1961
|
+
deleteAccountUserResourceStatus423Schema
|
|
1962
|
+
]);
|
|
1963
|
+
const getAddressesResourceStatus200Schema = z__namespace.array(addressSchema);
|
|
1964
|
+
const getAddressesResourceStatus401Schema = z__namespace.unknown();
|
|
1965
|
+
const getAddressesResourceResponseSchema = getAddressesResourceStatus200Schema;
|
|
1966
|
+
const getAddressesResourceErrorSchema = getAddressesResourceStatus401Schema;
|
|
1967
|
+
const putAddressesResourceStatus200Schema = addressSchema;
|
|
1968
|
+
const putAddressesResourceStatus400Schema = z__namespace.unknown();
|
|
1969
|
+
const putAddressesResourceStatus401Schema = z__namespace.unknown();
|
|
1970
|
+
const putAddressesResourceResponseSchema = putAddressesResourceStatus200Schema;
|
|
1971
|
+
const putAddressesResourceErrorSchema = z__namespace.union([
|
|
1972
|
+
putAddressesResourceStatus400Schema,
|
|
1973
|
+
putAddressesResourceStatus401Schema
|
|
1974
|
+
]);
|
|
1975
|
+
const putAddressesResourceBodySchema = addressCreateSchema.describe("Address create representation");
|
|
1976
|
+
const getAddressTokenResourcePathIdSchema = z__namespace.string().describe("The token ID");
|
|
1977
|
+
const getAddressTokenResourceStatus200Schema = addressTokenInfoSchema;
|
|
1978
|
+
const getAddressTokenResourceStatus401Schema = z__namespace.unknown();
|
|
1979
|
+
const getAddressTokenResourceStatus404Schema = z__namespace.unknown();
|
|
1980
|
+
const getAddressTokenResourceResponseSchema = getAddressTokenResourceStatus200Schema;
|
|
1981
|
+
const getAddressTokenResourceErrorSchema = z__namespace.union([
|
|
1982
|
+
getAddressTokenResourceStatus401Schema,
|
|
1983
|
+
getAddressTokenResourceStatus404Schema
|
|
1984
|
+
]);
|
|
1985
|
+
const getAddressTokenRedeemResourcePathIdSchema = z__namespace.string().describe("The token ID");
|
|
1986
|
+
const getAddressTokenRedeemResourceStatus200Schema = addressTokenSchema;
|
|
1987
|
+
const getAddressTokenRedeemResourceStatus401Schema = z__namespace.unknown();
|
|
1988
|
+
const getAddressTokenRedeemResourceStatus404Schema = z__namespace.unknown();
|
|
1989
|
+
const getAddressTokenRedeemResourceResponseSchema = getAddressTokenRedeemResourceStatus200Schema;
|
|
1990
|
+
const getAddressTokenRedeemResourceErrorSchema = z__namespace.union([
|
|
1991
|
+
getAddressTokenRedeemResourceStatus401Schema,
|
|
1992
|
+
getAddressTokenRedeemResourceStatus404Schema
|
|
1993
|
+
]);
|
|
1994
|
+
const postAddressTokenRedeemResourcePathIdSchema = z__namespace.string().describe("The token ID");
|
|
1995
|
+
const postAddressTokenRedeemResourceQueryEmailSchema = z__namespace.boolean().optional().describe("If false, no email will be sent");
|
|
1996
|
+
const postAddressTokenRedeemResourceStatus204Schema = z__namespace.unknown();
|
|
1997
|
+
const postAddressTokenRedeemResourceStatus400Schema = z__namespace.unknown();
|
|
1998
|
+
const postAddressTokenRedeemResourceStatus401Schema = z__namespace.unknown();
|
|
1999
|
+
const postAddressTokenRedeemResourceStatus404Schema = z__namespace.unknown();
|
|
2000
|
+
const postAddressTokenRedeemResourceResponseSchema = postAddressTokenRedeemResourceStatus204Schema;
|
|
2001
|
+
const postAddressTokenRedeemResourceErrorSchema = z__namespace.union([
|
|
2002
|
+
postAddressTokenRedeemResourceStatus400Schema,
|
|
2003
|
+
postAddressTokenRedeemResourceStatus401Schema,
|
|
2004
|
+
postAddressTokenRedeemResourceStatus404Schema
|
|
2005
|
+
]);
|
|
2006
|
+
const postAddressResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2007
|
+
const postAddressResourceStatus204Schema = z__namespace.unknown();
|
|
2008
|
+
const postAddressResourceStatus400Schema = z__namespace.unknown();
|
|
2009
|
+
const postAddressResourceStatus401Schema = z__namespace.unknown();
|
|
2010
|
+
const postAddressResourceStatus403Schema = z__namespace.unknown();
|
|
2011
|
+
const postAddressResourceResponseSchema = postAddressResourceStatus204Schema;
|
|
2012
|
+
const postAddressResourceErrorSchema = z__namespace.union([
|
|
2013
|
+
postAddressResourceStatus400Schema,
|
|
2014
|
+
postAddressResourceStatus401Schema,
|
|
2015
|
+
postAddressResourceStatus403Schema
|
|
2016
|
+
]);
|
|
2017
|
+
const postAddressResourceBodySchema = addressUpdateSchema.describe("Address update representation");
|
|
2018
|
+
const deleteAddressResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2019
|
+
const deleteAddressResourceStatus204Schema = z__namespace.unknown();
|
|
2020
|
+
const deleteAddressResourceStatus401Schema = z__namespace.unknown();
|
|
2021
|
+
const deleteAddressResourceStatus403Schema = z__namespace.unknown();
|
|
2022
|
+
const deleteAddressResourceResponseSchema = deleteAddressResourceStatus204Schema;
|
|
2023
|
+
const deleteAddressResourceErrorSchema = z__namespace.union([
|
|
2024
|
+
deleteAddressResourceStatus401Schema,
|
|
2025
|
+
deleteAddressResourceStatus403Schema
|
|
2026
|
+
]);
|
|
2027
|
+
const getAddressReservationsResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2028
|
+
const getAddressReservationsResourceStatus200Schema = z__namespace.array(addressReservationSchema);
|
|
2029
|
+
const getAddressReservationsResourceStatus401Schema = z__namespace.unknown();
|
|
2030
|
+
const getAddressReservationsResourceResponseSchema = getAddressReservationsResourceStatus200Schema;
|
|
2031
|
+
const getAddressReservationsResourceErrorSchema = getAddressReservationsResourceStatus401Schema;
|
|
2032
|
+
const postAddressReservationIssueResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2033
|
+
const postAddressReservationIssueResourcePathIdSchema = z__namespace.string().describe("The address reservation ID");
|
|
2034
|
+
const postAddressReservationIssueResourceStatus204Schema = z__namespace.unknown();
|
|
2035
|
+
const postAddressReservationIssueResourceStatus400Schema = z__namespace.unknown();
|
|
2036
|
+
const postAddressReservationIssueResourceStatus401Schema = z__namespace.unknown();
|
|
2037
|
+
const postAddressReservationIssueResourceResponseSchema = postAddressReservationIssueResourceStatus204Schema;
|
|
2038
|
+
const postAddressReservationIssueResourceErrorSchema = z__namespace.union([
|
|
2039
|
+
postAddressReservationIssueResourceStatus400Schema,
|
|
2040
|
+
postAddressReservationIssueResourceStatus401Schema
|
|
2041
|
+
]);
|
|
2042
|
+
const postAddressReservationRevokeResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2043
|
+
const postAddressReservationRevokeResourcePathIdSchema = z__namespace.string().describe("The address reservation ID");
|
|
2044
|
+
const postAddressReservationRevokeResourceStatus204Schema = z__namespace.unknown();
|
|
2045
|
+
const postAddressReservationRevokeResourceStatus400Schema = z__namespace.unknown();
|
|
2046
|
+
const postAddressReservationRevokeResourceStatus401Schema = z__namespace.unknown();
|
|
2047
|
+
const postAddressReservationRevokeResourceResponseSchema = postAddressReservationRevokeResourceStatus204Schema;
|
|
2048
|
+
const postAddressReservationRevokeResourceErrorSchema = z__namespace.union([
|
|
2049
|
+
postAddressReservationRevokeResourceStatus400Schema,
|
|
2050
|
+
postAddressReservationRevokeResourceStatus401Schema
|
|
2051
|
+
]);
|
|
2052
|
+
const postReservationAccessTimesUpdateResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2053
|
+
const postReservationAccessTimesUpdateResourcePathIdSchema = z__namespace.string().describe("The reservation ID");
|
|
2054
|
+
const postReservationAccessTimesUpdateResourceStatus204Schema = z__namespace.unknown();
|
|
2055
|
+
const postReservationAccessTimesUpdateResourceStatus400Schema = z__namespace.unknown();
|
|
2056
|
+
const postReservationAccessTimesUpdateResourceStatus401Schema = z__namespace.unknown();
|
|
2057
|
+
const postReservationAccessTimesUpdateResourceResponseSchema = postReservationAccessTimesUpdateResourceStatus204Schema;
|
|
2058
|
+
const postReservationAccessTimesUpdateResourceErrorSchema = z__namespace.union([
|
|
2059
|
+
postReservationAccessTimesUpdateResourceStatus400Schema,
|
|
2060
|
+
postReservationAccessTimesUpdateResourceStatus401Schema
|
|
2061
|
+
]);
|
|
2062
|
+
const postReservationAccessTimesUpdateResourceBodySchema = reservationAccessTimesUpdateSchema.describe("Reservation access times update representation");
|
|
2063
|
+
const getAddressTokensResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2064
|
+
const getAddressTokensResourceStatus200Schema = z__namespace.array(addressTokenSchema);
|
|
2065
|
+
const getAddressTokensResourceStatus400Schema = z__namespace.unknown();
|
|
2066
|
+
const getAddressTokensResourceStatus401Schema = z__namespace.unknown();
|
|
2067
|
+
const getAddressTokensResourceResponseSchema = getAddressTokensResourceStatus200Schema;
|
|
2068
|
+
const getAddressTokensResourceErrorSchema = z__namespace.union([
|
|
2069
|
+
getAddressTokensResourceStatus400Schema,
|
|
2070
|
+
getAddressTokensResourceStatus401Schema
|
|
2071
|
+
]);
|
|
2072
|
+
const getAddressUnitsResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2073
|
+
const getAddressUnitsResourceStatus200Schema = z__namespace.array(addressUnitResponseSchema);
|
|
2074
|
+
const getAddressUnitsResourceStatus400Schema = z__namespace.unknown();
|
|
2075
|
+
const getAddressUnitsResourceStatus401Schema = z__namespace.unknown();
|
|
2076
|
+
const getAddressUnitsResourceResponseSchema = getAddressUnitsResourceStatus200Schema;
|
|
2077
|
+
const getAddressUnitsResourceErrorSchema = z__namespace.union([
|
|
2078
|
+
getAddressUnitsResourceStatus400Schema,
|
|
2079
|
+
getAddressUnitsResourceStatus401Schema
|
|
2080
|
+
]);
|
|
2081
|
+
const putAddressUnitsResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2082
|
+
const putAddressUnitsResourceStatus200Schema = addressUnitResponseSchema;
|
|
2083
|
+
const putAddressUnitsResourceStatus400Schema = z__namespace.unknown();
|
|
2084
|
+
const putAddressUnitsResourceStatus401Schema = z__namespace.unknown();
|
|
2085
|
+
const putAddressUnitsResourceStatus403Schema = z__namespace.unknown();
|
|
2086
|
+
const putAddressUnitsResourceResponseSchema = putAddressUnitsResourceStatus200Schema;
|
|
2087
|
+
const putAddressUnitsResourceErrorSchema = z__namespace.union([
|
|
2088
|
+
putAddressUnitsResourceStatus400Schema,
|
|
2089
|
+
putAddressUnitsResourceStatus401Schema,
|
|
2090
|
+
putAddressUnitsResourceStatus403Schema
|
|
2091
|
+
]);
|
|
2092
|
+
const putAddressUnitsResourceBodySchema = addressUnitSchema.omit({
|
|
2093
|
+
id: true,
|
|
2094
|
+
addressId: true,
|
|
2095
|
+
addressTokenId: true,
|
|
2096
|
+
operationId: true
|
|
2097
|
+
}).describe("Address unit representation");
|
|
2098
|
+
const deleteAddressUnitsResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2099
|
+
const deleteAddressUnitsResourceStatus200Schema = advancedConfirmationResponseSchema;
|
|
2100
|
+
const deleteAddressUnitsResourceStatus400Schema = z__namespace.unknown();
|
|
2101
|
+
const deleteAddressUnitsResourceStatus401Schema = z__namespace.unknown();
|
|
2102
|
+
const deleteAddressUnitsResourceStatus403Schema = z__namespace.unknown();
|
|
2103
|
+
const deleteAddressUnitsResourceStatus423Schema = z__namespace.unknown();
|
|
2104
|
+
const deleteAddressUnitsResourceResponseSchema = deleteAddressUnitsResourceStatus200Schema;
|
|
2105
|
+
const deleteAddressUnitsResourceErrorSchema = z__namespace.union([
|
|
2106
|
+
deleteAddressUnitsResourceStatus400Schema,
|
|
2107
|
+
deleteAddressUnitsResourceStatus401Schema,
|
|
2108
|
+
deleteAddressUnitsResourceStatus403Schema,
|
|
2109
|
+
deleteAddressUnitsResourceStatus423Schema
|
|
2110
|
+
]);
|
|
2111
|
+
const deleteAddressUnitsResourceBodySchema = z__namespace.array(z__namespace.string()).describe("Address unit IDs to delete");
|
|
2112
|
+
const deleteAddressUnitResourcePathAddressIdSchema = z__namespace.int().describe("The address ID");
|
|
2113
|
+
const deleteAddressUnitResourcePathIdSchema = z__namespace.string().describe("The address unit ID");
|
|
2114
|
+
const deleteAddressUnitResourceStatus200Schema = advancedConfirmationResponseSchema;
|
|
2115
|
+
const deleteAddressUnitResourceStatus401Schema = z__namespace.unknown();
|
|
2116
|
+
const deleteAddressUnitResourceStatus403Schema = z__namespace.unknown();
|
|
2117
|
+
const deleteAddressUnitResourceStatus423Schema = z__namespace.unknown();
|
|
2118
|
+
const deleteAddressUnitResourceResponseSchema = deleteAddressUnitResourceStatus200Schema;
|
|
2119
|
+
const deleteAddressUnitResourceErrorSchema = z__namespace.union([
|
|
2120
|
+
deleteAddressUnitResourceStatus401Schema,
|
|
2121
|
+
deleteAddressUnitResourceStatus403Schema,
|
|
2122
|
+
deleteAddressUnitResourceStatus423Schema
|
|
2123
|
+
]);
|
|
2124
|
+
const getDecentralWebhooksResourceStatus200Schema = z__namespace.array(decentralWebhookSchema);
|
|
2125
|
+
const getDecentralWebhooksResourceStatus401Schema = z__namespace.unknown();
|
|
2126
|
+
const getDecentralWebhooksResourceStatus403Schema = z__namespace.unknown();
|
|
2127
|
+
const getDecentralWebhooksResourceResponseSchema = getDecentralWebhooksResourceStatus200Schema;
|
|
2128
|
+
const getDecentralWebhooksResourceErrorSchema = z__namespace.union([
|
|
2129
|
+
getDecentralWebhooksResourceStatus401Schema,
|
|
2130
|
+
getDecentralWebhooksResourceStatus403Schema
|
|
2131
|
+
]);
|
|
2132
|
+
const putDecentralWebhooksResourceStatus200Schema = decentralWebhookSchema;
|
|
2133
|
+
const putDecentralWebhooksResourceStatus400Schema = z__namespace.unknown();
|
|
2134
|
+
const putDecentralWebhooksResourceStatus401Schema = z__namespace.unknown();
|
|
2135
|
+
const putDecentralWebhooksResourceStatus403Schema = z__namespace.unknown();
|
|
2136
|
+
const putDecentralWebhooksResourceResponseSchema = putDecentralWebhooksResourceStatus200Schema;
|
|
2137
|
+
const putDecentralWebhooksResourceErrorSchema = z__namespace.union([
|
|
2138
|
+
putDecentralWebhooksResourceStatus400Schema,
|
|
2139
|
+
putDecentralWebhooksResourceStatus401Schema,
|
|
2140
|
+
putDecentralWebhooksResourceStatus403Schema
|
|
2141
|
+
]);
|
|
2142
|
+
const putDecentralWebhooksResourceBodySchema = decentralWebhookSchema.omit({
|
|
2143
|
+
id: true,
|
|
2144
|
+
secret: true
|
|
2145
|
+
}).describe("Decentral webhook representation");
|
|
2146
|
+
const deleteDecentralWebhookResourcePathIdSchema = z__namespace.int().describe("The ID of the decentral webhook");
|
|
2147
|
+
const deleteDecentralWebhookResourceStatus204Schema = z__namespace.unknown();
|
|
2148
|
+
const deleteDecentralWebhookResourceStatus401Schema = z__namespace.unknown();
|
|
2149
|
+
const deleteDecentralWebhookResourceStatus403Schema = z__namespace.unknown();
|
|
2150
|
+
const deleteDecentralWebhookResourceResponseSchema = deleteDecentralWebhookResourceStatus204Schema;
|
|
2151
|
+
const deleteDecentralWebhookResourceErrorSchema = z__namespace.union([
|
|
2152
|
+
deleteDecentralWebhookResourceStatus401Schema,
|
|
2153
|
+
deleteDecentralWebhookResourceStatus403Schema
|
|
2154
|
+
]);
|
|
2155
|
+
const getApiKeysResourceStatus200Schema = z__namespace.array(apiKeySchema);
|
|
2156
|
+
const getApiKeysResourceStatus401Schema = z__namespace.unknown();
|
|
2157
|
+
const getApiKeysResourceResponseSchema = getApiKeysResourceStatus200Schema;
|
|
2158
|
+
const getApiKeysResourceErrorSchema = getApiKeysResourceStatus401Schema;
|
|
2159
|
+
const putApiKeysResourceStatus200Schema = apiKeySchema;
|
|
2160
|
+
const putApiKeysResourceStatus400Schema = z__namespace.unknown();
|
|
2161
|
+
const putApiKeysResourceStatus401Schema = z__namespace.unknown();
|
|
2162
|
+
const putApiKeysResourceResponseSchema = putApiKeysResourceStatus200Schema;
|
|
2163
|
+
const putApiKeysResourceErrorSchema = z__namespace.union([
|
|
2164
|
+
putApiKeysResourceStatus400Schema,
|
|
2165
|
+
putApiKeysResourceStatus401Schema
|
|
2166
|
+
]);
|
|
2167
|
+
const putApiKeysResourceBodySchema = apiKeyCreateSchema.describe("Api key create representation");
|
|
2168
|
+
const postApiKeyResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2169
|
+
const postApiKeyResourceStatus204Schema = z__namespace.unknown();
|
|
2170
|
+
const postApiKeyResourceStatus400Schema = z__namespace.unknown();
|
|
2171
|
+
const postApiKeyResourceStatus401Schema = z__namespace.unknown();
|
|
2172
|
+
const postApiKeyResourceStatus503Schema = z__namespace.unknown();
|
|
2173
|
+
const postApiKeyResourceResponseSchema = postApiKeyResourceStatus204Schema;
|
|
2174
|
+
const postApiKeyResourceErrorSchema = z__namespace.union([
|
|
2175
|
+
postApiKeyResourceStatus400Schema,
|
|
2176
|
+
postApiKeyResourceStatus401Schema,
|
|
2177
|
+
postApiKeyResourceStatus503Schema
|
|
2178
|
+
]);
|
|
2179
|
+
const postApiKeyResourceBodySchema = apiKeyUpdateSchema.describe("Api key update representation");
|
|
2180
|
+
const deleteApiKeyResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2181
|
+
const deleteApiKeyResourceStatus204Schema = z__namespace.unknown();
|
|
2182
|
+
const deleteApiKeyResourceStatus401Schema = z__namespace.unknown();
|
|
2183
|
+
const deleteApiKeyResourceResponseSchema = deleteApiKeyResourceStatus204Schema;
|
|
2184
|
+
const deleteApiKeyResourceErrorSchema = deleteApiKeyResourceStatus401Schema;
|
|
2185
|
+
const getApiKeyAdvancedResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2186
|
+
const getApiKeyAdvancedResourceStatus200Schema = advancedApiKeySchema;
|
|
2187
|
+
const getApiKeyAdvancedResourceStatus401Schema = z__namespace.unknown();
|
|
2188
|
+
const getApiKeyAdvancedResourceStatus403Schema = z__namespace.unknown();
|
|
2189
|
+
const getApiKeyAdvancedResourceStatus404Schema = z__namespace.unknown();
|
|
2190
|
+
const getApiKeyAdvancedResourceResponseSchema = getApiKeyAdvancedResourceStatus200Schema;
|
|
2191
|
+
const getApiKeyAdvancedResourceErrorSchema = z__namespace.union([
|
|
2192
|
+
getApiKeyAdvancedResourceStatus401Schema,
|
|
2193
|
+
getApiKeyAdvancedResourceStatus403Schema,
|
|
2194
|
+
getApiKeyAdvancedResourceStatus404Schema
|
|
2195
|
+
]);
|
|
2196
|
+
const postApiKeyAdvancedResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2197
|
+
const postApiKeyAdvancedResourceStatus204Schema = z__namespace.unknown();
|
|
2198
|
+
const postApiKeyAdvancedResourceStatus400Schema = z__namespace.unknown();
|
|
2199
|
+
const postApiKeyAdvancedResourceStatus401Schema = z__namespace.unknown();
|
|
2200
|
+
const postApiKeyAdvancedResourceResponseSchema = postApiKeyAdvancedResourceStatus204Schema;
|
|
2201
|
+
const postApiKeyAdvancedResourceErrorSchema = z__namespace.union([
|
|
2202
|
+
postApiKeyAdvancedResourceStatus400Schema,
|
|
2203
|
+
postApiKeyAdvancedResourceStatus401Schema
|
|
2204
|
+
]);
|
|
2205
|
+
const postApiKeyAdvancedResourceBodySchema = advancedApiKeyUpdateSchema.describe("Update for advaced api key representation");
|
|
2206
|
+
const putApiKeyAdvancedResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2207
|
+
const putApiKeyAdvancedResourceStatus204Schema = z__namespace.unknown();
|
|
2208
|
+
const putApiKeyAdvancedResourceStatus400Schema = z__namespace.unknown();
|
|
2209
|
+
const putApiKeyAdvancedResourceStatus401Schema = z__namespace.unknown();
|
|
2210
|
+
const putApiKeyAdvancedResourceResponseSchema = putApiKeyAdvancedResourceStatus204Schema;
|
|
2211
|
+
const putApiKeyAdvancedResourceErrorSchema = z__namespace.union([
|
|
2212
|
+
putApiKeyAdvancedResourceStatus400Schema,
|
|
2213
|
+
putApiKeyAdvancedResourceStatus401Schema
|
|
2214
|
+
]);
|
|
2215
|
+
const putApiKeyAdvancedResourceBodySchema = advancedApiKeyCreateSchema.omit({
|
|
2216
|
+
webhookStatus: true
|
|
2217
|
+
}).describe("Apply for advaced api key representation");
|
|
2218
|
+
const deleteApiKeyAdvancedResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2219
|
+
const deleteApiKeyAdvancedResourceStatus204Schema = z__namespace.unknown();
|
|
2220
|
+
const deleteApiKeyAdvancedResourceStatus401Schema = z__namespace.unknown();
|
|
2221
|
+
const deleteApiKeyAdvancedResourceResponseSchema = deleteApiKeyAdvancedResourceStatus204Schema;
|
|
2222
|
+
const deleteApiKeyAdvancedResourceErrorSchema = deleteApiKeyAdvancedResourceStatus401Schema;
|
|
2223
|
+
const postApiKeyAdvancedReactivateResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2224
|
+
const postApiKeyAdvancedReactivateResourceStatus204Schema = z__namespace.unknown();
|
|
2225
|
+
const postApiKeyAdvancedReactivateResourceStatus400Schema = z__namespace.unknown();
|
|
2226
|
+
const postApiKeyAdvancedReactivateResourceStatus401Schema = z__namespace.unknown();
|
|
2227
|
+
const postApiKeyAdvancedReactivateResourceResponseSchema = postApiKeyAdvancedReactivateResourceStatus204Schema;
|
|
2228
|
+
const postApiKeyAdvancedReactivateResourceErrorSchema = z__namespace.union([
|
|
2229
|
+
postApiKeyAdvancedReactivateResourceStatus400Schema,
|
|
2230
|
+
postApiKeyAdvancedReactivateResourceStatus401Schema
|
|
2231
|
+
]);
|
|
2232
|
+
const getApiKeyTokensResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2233
|
+
const getApiKeyTokensResourceStatus200Schema = z__namespace.array(apiKeyTokenSchema);
|
|
2234
|
+
const getApiKeyTokensResourceStatus401Schema = z__namespace.unknown();
|
|
2235
|
+
const getApiKeyTokensResourceResponseSchema = getApiKeyTokensResourceStatus200Schema;
|
|
2236
|
+
const getApiKeyTokensResourceErrorSchema = getApiKeyTokensResourceStatus401Schema;
|
|
2237
|
+
const putApiKeyTokensResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2238
|
+
const putApiKeyTokensResourceStatus200Schema = apiKeyTokenSchema;
|
|
2239
|
+
const putApiKeyTokensResourceStatus400Schema = z__namespace.unknown();
|
|
2240
|
+
const putApiKeyTokensResourceStatus401Schema = z__namespace.unknown();
|
|
2241
|
+
const putApiKeyTokensResourceResponseSchema = putApiKeyTokensResourceStatus200Schema;
|
|
2242
|
+
const putApiKeyTokensResourceErrorSchema = z__namespace.union([
|
|
2243
|
+
putApiKeyTokensResourceStatus400Schema,
|
|
2244
|
+
putApiKeyTokensResourceStatus401Schema
|
|
2245
|
+
]);
|
|
2246
|
+
const putApiKeyTokensResourceBodySchema = apiKeyTokenCreateSchema.describe("Api key token create representation");
|
|
2247
|
+
const postApiKeyTokenResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2248
|
+
const postApiKeyTokenResourcePathIdSchema = z__namespace.string().describe("The API key token ID");
|
|
2249
|
+
const postApiKeyTokenResourceStatus204Schema = z__namespace.unknown();
|
|
2250
|
+
const postApiKeyTokenResourceStatus400Schema = z__namespace.unknown();
|
|
2251
|
+
const postApiKeyTokenResourceStatus401Schema = z__namespace.unknown();
|
|
2252
|
+
const postApiKeyTokenResourceResponseSchema = postApiKeyTokenResourceStatus204Schema;
|
|
2253
|
+
const postApiKeyTokenResourceErrorSchema = z__namespace.union([
|
|
2254
|
+
postApiKeyTokenResourceStatus400Schema,
|
|
2255
|
+
postApiKeyTokenResourceStatus401Schema
|
|
2256
|
+
]);
|
|
2257
|
+
const postApiKeyTokenResourceBodySchema = apiKeyTokenUpdateSchema.describe("Api key token update representation");
|
|
2258
|
+
const deleteApiKeyTokenResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2259
|
+
const deleteApiKeyTokenResourcePathIdSchema = z__namespace.string().describe("The API key token ID");
|
|
2260
|
+
const deleteApiKeyTokenResourceStatus204Schema = z__namespace.unknown();
|
|
2261
|
+
const deleteApiKeyTokenResourceStatus401Schema = z__namespace.unknown();
|
|
2262
|
+
const deleteApiKeyTokenResourceResponseSchema = deleteApiKeyTokenResourceStatus204Schema;
|
|
2263
|
+
const deleteApiKeyTokenResourceErrorSchema = deleteApiKeyTokenResourceStatus401Schema;
|
|
2264
|
+
const getWebhookLogsResourcePathApiKeyIdSchema = z__namespace.int().describe("The API key ID");
|
|
2265
|
+
const getWebhookLogsResourceQueryIdSchema = z__namespace.string().optional().describe("Optionally filter for older logs");
|
|
2266
|
+
const getWebhookLogsResourceQueryLimitSchema = z__namespace.int().optional().default(50).describe("Amount of logs (max: 100)");
|
|
2267
|
+
const getWebhookLogsResourceStatus200Schema = z__namespace.array(webhookLogSchema);
|
|
2268
|
+
const getWebhookLogsResourceStatus401Schema = z__namespace.unknown();
|
|
2269
|
+
const getWebhookLogsResourceResponseSchema = getWebhookLogsResourceStatus200Schema;
|
|
2270
|
+
const getWebhookLogsResourceErrorSchema = getWebhookLogsResourceStatus401Schema;
|
|
2271
|
+
const postSmartlockBulkWebConfigResourceStatus204Schema = z__namespace.unknown();
|
|
2272
|
+
const postSmartlockBulkWebConfigResourceStatus400Schema = z__namespace.unknown();
|
|
2273
|
+
const postSmartlockBulkWebConfigResourceStatus401Schema = z__namespace.unknown();
|
|
2274
|
+
const postSmartlockBulkWebConfigResourceResponseSchema = postSmartlockBulkWebConfigResourceStatus204Schema;
|
|
2275
|
+
const postSmartlockBulkWebConfigResourceErrorSchema = z__namespace.union([
|
|
2276
|
+
postSmartlockBulkWebConfigResourceStatus400Schema,
|
|
2277
|
+
postSmartlockBulkWebConfigResourceStatus401Schema
|
|
2278
|
+
]);
|
|
2279
|
+
const postSmartlockBulkWebConfigResourceBodySchema = bulkWebConfigRequestSchema.describe("Smartlocks web config update representation");
|
|
2280
|
+
const getCompaniesResourceStatus200Schema = z__namespace.array(companySchema);
|
|
2281
|
+
const getCompaniesResourceStatus401Schema = z__namespace.unknown();
|
|
2282
|
+
const getCompaniesResourceStatus403Schema = z__namespace.unknown();
|
|
2283
|
+
const getCompaniesResourceResponseSchema = getCompaniesResourceStatus200Schema;
|
|
2284
|
+
const getCompaniesResourceErrorSchema = z__namespace.union([
|
|
2285
|
+
getCompaniesResourceStatus401Schema,
|
|
2286
|
+
getCompaniesResourceStatus403Schema
|
|
2287
|
+
]);
|
|
2288
|
+
const getNotificationsResourceQueryReferenceIdSchema = z__namespace.string().optional().describe("The reference ID to the third party system");
|
|
2289
|
+
const getNotificationsResourceStatus200Schema = z__namespace.array(notificationSchema);
|
|
2290
|
+
const getNotificationsResourceStatus401Schema = z__namespace.unknown();
|
|
2291
|
+
const getNotificationsResourceResponseSchema = getNotificationsResourceStatus200Schema;
|
|
2292
|
+
const getNotificationsResourceErrorSchema = getNotificationsResourceStatus401Schema;
|
|
2293
|
+
const putNotificationsResourceStatus200Schema = notificationSchema;
|
|
2294
|
+
const putNotificationsResourceStatus400Schema = z__namespace.unknown();
|
|
2295
|
+
const putNotificationsResourceStatus401Schema = z__namespace.unknown();
|
|
2296
|
+
const putNotificationsResourceStatus403Schema = z__namespace.unknown();
|
|
2297
|
+
const putNotificationsResourceResponseSchema = putNotificationsResourceStatus200Schema;
|
|
2298
|
+
const putNotificationsResourceErrorSchema = z__namespace.union([
|
|
2299
|
+
putNotificationsResourceStatus400Schema,
|
|
2300
|
+
putNotificationsResourceStatus401Schema,
|
|
2301
|
+
putNotificationsResourceStatus403Schema
|
|
2302
|
+
]);
|
|
2303
|
+
const putNotificationsResourceBodySchema = notificationSchema.describe("Notification representation");
|
|
2304
|
+
const getNotificationResourcePathNotificationIdSchema = z__namespace.string().describe("The unique notification ID");
|
|
2305
|
+
const getNotificationResourceStatus200Schema = notificationSchema;
|
|
2306
|
+
const getNotificationResourceStatus401Schema = z__namespace.unknown();
|
|
2307
|
+
const getNotificationResourceStatus403Schema = z__namespace.unknown();
|
|
2308
|
+
const getNotificationResourceStatus404Schema = z__namespace.unknown();
|
|
2309
|
+
const getNotificationResourceResponseSchema = getNotificationResourceStatus200Schema;
|
|
2310
|
+
const getNotificationResourceErrorSchema = z__namespace.union([
|
|
2311
|
+
getNotificationResourceStatus401Schema,
|
|
2312
|
+
getNotificationResourceStatus403Schema,
|
|
2313
|
+
getNotificationResourceStatus404Schema
|
|
2314
|
+
]);
|
|
2315
|
+
const postNotificationResourcePathNotificationIdSchema = z__namespace.string().describe("The unique notification ID");
|
|
2316
|
+
const postNotificationResourceStatus200Schema = notificationSchema;
|
|
2317
|
+
const postNotificationResourceStatus400Schema = z__namespace.unknown();
|
|
2318
|
+
const postNotificationResourceStatus401Schema = z__namespace.unknown();
|
|
2319
|
+
const postNotificationResourceStatus403Schema = z__namespace.unknown();
|
|
2320
|
+
const postNotificationResourceResponseSchema = postNotificationResourceStatus200Schema;
|
|
2321
|
+
const postNotificationResourceErrorSchema = z__namespace.union([
|
|
2322
|
+
postNotificationResourceStatus400Schema,
|
|
2323
|
+
postNotificationResourceStatus401Schema,
|
|
2324
|
+
postNotificationResourceStatus403Schema
|
|
2325
|
+
]);
|
|
2326
|
+
const postNotificationResourceBodySchema = notificationSchema.describe("Notification update representation");
|
|
2327
|
+
const deleteNotificationResourcePathNotificationIdSchema = z__namespace.string().describe("The unique notification ID");
|
|
2328
|
+
const deleteNotificationResourceStatus204Schema = z__namespace.unknown();
|
|
2329
|
+
const deleteNotificationResourceStatus401Schema = z__namespace.unknown();
|
|
2330
|
+
const deleteNotificationResourceStatus403Schema = z__namespace.unknown();
|
|
2331
|
+
const deleteNotificationResourceStatus405Schema = z__namespace.unknown();
|
|
2332
|
+
const deleteNotificationResourceResponseSchema = deleteNotificationResourceStatus204Schema;
|
|
2333
|
+
const deleteNotificationResourceErrorSchema = z__namespace.union([
|
|
2334
|
+
deleteNotificationResourceStatus401Schema,
|
|
2335
|
+
deleteNotificationResourceStatus403Schema,
|
|
2336
|
+
deleteNotificationResourceStatus405Schema
|
|
2337
|
+
]);
|
|
2338
|
+
const getOpenerBrandsResourceStatus200Schema = z__namespace.array(openerIntercomBrandSchema);
|
|
2339
|
+
const getOpenerBrandsResourceResponseSchema = getOpenerBrandsResourceStatus200Schema;
|
|
2340
|
+
const getOpenerBrandResourcePathBrandIdSchema = z__namespace.int().describe("The brand ID");
|
|
2341
|
+
const getOpenerBrandResourceStatus200Schema = openerIntercomBrandSchema;
|
|
2342
|
+
const getOpenerBrandResourceResponseSchema = getOpenerBrandResourceStatus200Schema;
|
|
2343
|
+
const getOpenerIntercomsResourceQueryBrandIdSchema = z__namespace.int().optional().describe("Filter for brandId. Required if 'recentlyChanged' is not set");
|
|
2344
|
+
const getOpenerIntercomsResourceQueryIgnoreVerifiedSchema = z__namespace.boolean().optional().describe("If true, return intercoms ignoring their verified value");
|
|
2345
|
+
const getOpenerIntercomsResourceQueryRecentlyChangedSchema = z__namespace.boolean().optional().describe("If true, return all intercoms which recently were updated");
|
|
2346
|
+
const getOpenerIntercomsResourceStatus200Schema = z__namespace.array(openerIntercomModelSchema);
|
|
2347
|
+
const getOpenerIntercomsResourceResponseSchema = getOpenerIntercomsResourceStatus200Schema;
|
|
2348
|
+
const getOpenerIntercomResourcePathIntercomIdSchema = z__namespace.int().describe("The intercom ID");
|
|
2349
|
+
const getOpenerIntercomResourceStatus200Schema = openerIntercomModelSchema;
|
|
2350
|
+
const getOpenerIntercomResourceResponseSchema = getOpenerIntercomResourceStatus200Schema;
|
|
2351
|
+
const getServicesResourceQueryServiceIdsSchema = z__namespace.string().optional().describe("Filter for service IDs (comma-separated eg: airbnb,guesty,smoobu)");
|
|
2352
|
+
const getServicesResourceStatus200Schema = z__namespace.array(z__namespace.lazy(()=>serviceSchema));
|
|
2353
|
+
const getServicesResourceStatus401Schema = z__namespace.unknown();
|
|
2354
|
+
const getServicesResourceResponseSchema = getServicesResourceStatus200Schema;
|
|
2355
|
+
const getServicesResourceErrorSchema = getServicesResourceStatus401Schema;
|
|
2356
|
+
const getServiceResourcePathServiceIdSchema = z__namespace.string().describe("The service ID");
|
|
2357
|
+
const getServiceResourceStatus200Schema = z__namespace.lazy(()=>serviceSchema);
|
|
2358
|
+
const getServiceResourceStatus401Schema = z__namespace.unknown();
|
|
2359
|
+
const getServiceResourceResponseSchema = getServiceResourceStatus200Schema;
|
|
2360
|
+
const getServiceResourceErrorSchema = getServiceResourceStatus401Schema;
|
|
2361
|
+
const postServiceLinkResourcePathServiceIdSchema = z__namespace.string().describe("The service ID");
|
|
2362
|
+
const postServiceLinkResourceStatus200Schema = z__namespace.string();
|
|
2363
|
+
const postServiceLinkResourceStatus400Schema = z__namespace.unknown();
|
|
2364
|
+
const postServiceLinkResourceStatus401Schema = z__namespace.unknown();
|
|
2365
|
+
const postServiceLinkResourceResponseSchema = postServiceLinkResourceStatus200Schema;
|
|
2366
|
+
const postServiceLinkResourceErrorSchema = z__namespace.union([
|
|
2367
|
+
postServiceLinkResourceStatus400Schema,
|
|
2368
|
+
postServiceLinkResourceStatus401Schema
|
|
2369
|
+
]);
|
|
2370
|
+
const postServiceSyncResourcePathServiceIdSchema = z__namespace.string().describe("The service ID");
|
|
2371
|
+
const postServiceSyncResourceStatus204Schema = z__namespace.unknown();
|
|
2372
|
+
const postServiceSyncResourceStatus400Schema = z__namespace.unknown();
|
|
2373
|
+
const postServiceSyncResourceStatus401Schema = z__namespace.unknown();
|
|
2374
|
+
const postServiceSyncResourceResponseSchema = postServiceSyncResourceStatus204Schema;
|
|
2375
|
+
const postServiceSyncResourceErrorSchema = z__namespace.union([
|
|
2376
|
+
postServiceSyncResourceStatus400Schema,
|
|
2377
|
+
postServiceSyncResourceStatus401Schema
|
|
2378
|
+
]);
|
|
2379
|
+
const postServiceUnlinkResourcePathServiceIdSchema = z__namespace.string().describe("The service ID");
|
|
2380
|
+
const postServiceUnlinkResourceStatus204Schema = z__namespace.unknown();
|
|
2381
|
+
const postServiceUnlinkResourceStatus400Schema = z__namespace.unknown();
|
|
2382
|
+
const postServiceUnlinkResourceStatus401Schema = z__namespace.unknown();
|
|
2383
|
+
const postServiceUnlinkResourceResponseSchema = postServiceUnlinkResourceStatus204Schema;
|
|
2384
|
+
const postServiceUnlinkResourceErrorSchema = z__namespace.union([
|
|
2385
|
+
postServiceUnlinkResourceStatus400Schema,
|
|
2386
|
+
postServiceUnlinkResourceStatus401Schema
|
|
2387
|
+
]);
|
|
2388
|
+
const getSmartlocksResourceQueryAuthIdSchema = z__namespace.int().optional().describe("Filter for authId");
|
|
2389
|
+
const getSmartlocksResourceQueryTypeSchema = z__namespace.int().optional().describe("Filter for type");
|
|
2390
|
+
const getSmartlocksResourceStatus200Schema = z__namespace.array(smartlockSchema);
|
|
2391
|
+
const getSmartlocksResourceStatus401Schema = z__namespace.unknown();
|
|
2392
|
+
const getSmartlocksResourceResponseSchema = getSmartlocksResourceStatus200Schema;
|
|
2393
|
+
const getSmartlocksResourceErrorSchema = getSmartlocksResourceStatus401Schema;
|
|
2394
|
+
const getSmartlocksAuthsResourceQueryAccountUserIdSchema = z__namespace.int().optional().describe("Filter for account users: set to a positive number will filter for authorizations with this specific accountUserId, set to a negative number will filter without set accountUserId");
|
|
2395
|
+
const getSmartlocksAuthsResourceQueryTypesSchema = z__namespace.string().optional().describe("Filter for authorization's types (comma-separated eg: 0,2,3)");
|
|
2396
|
+
const getSmartlocksAuthsResourceStatus200Schema = z__namespace.array(smartlockAuthSchema);
|
|
2397
|
+
const getSmartlocksAuthsResourceStatus401Schema = z__namespace.unknown();
|
|
2398
|
+
const getSmartlocksAuthsResourceResponseSchema = getSmartlocksAuthsResourceStatus200Schema;
|
|
2399
|
+
const getSmartlocksAuthsResourceErrorSchema = getSmartlocksAuthsResourceStatus401Schema;
|
|
2400
|
+
const postSmartlocksAuthsResourceStatus204Schema = z__namespace.unknown();
|
|
2401
|
+
const postSmartlocksAuthsResourceStatus400Schema = z__namespace.unknown();
|
|
2402
|
+
const postSmartlocksAuthsResourceStatus401Schema = z__namespace.unknown();
|
|
2403
|
+
const postSmartlocksAuthsResourceStatus403Schema = z__namespace.unknown();
|
|
2404
|
+
const postSmartlocksAuthsResourceStatus409Schema = z__namespace.unknown();
|
|
2405
|
+
const postSmartlocksAuthsResourceStatus423Schema = z__namespace.unknown();
|
|
2406
|
+
const postSmartlocksAuthsResourceResponseSchema = postSmartlocksAuthsResourceStatus204Schema;
|
|
2407
|
+
const postSmartlocksAuthsResourceErrorSchema = z__namespace.union([
|
|
2408
|
+
postSmartlocksAuthsResourceStatus400Schema,
|
|
2409
|
+
postSmartlocksAuthsResourceStatus401Schema,
|
|
2410
|
+
postSmartlocksAuthsResourceStatus403Schema,
|
|
2411
|
+
postSmartlocksAuthsResourceStatus409Schema,
|
|
2412
|
+
postSmartlocksAuthsResourceStatus423Schema
|
|
2413
|
+
]);
|
|
2414
|
+
const postSmartlocksAuthsResourceBodySchema = z__namespace.array(smartlockAuthMultiUpdateSchema).describe("Smartlock authorization update representations");
|
|
2415
|
+
const putSmartlocksAuthsResourceStatus204Schema = z__namespace.unknown();
|
|
2416
|
+
const putSmartlocksAuthsResourceStatus400Schema = z__namespace.unknown();
|
|
2417
|
+
const putSmartlocksAuthsResourceStatus402Schema = z__namespace.unknown();
|
|
2418
|
+
const putSmartlocksAuthsResourceStatus409Schema = z__namespace.unknown();
|
|
2419
|
+
const putSmartlocksAuthsResourceStatus426Schema = z__namespace.unknown();
|
|
2420
|
+
const putSmartlocksAuthsResourceResponseSchema = putSmartlocksAuthsResourceStatus204Schema;
|
|
2421
|
+
const putSmartlocksAuthsResourceErrorSchema = z__namespace.union([
|
|
2422
|
+
putSmartlocksAuthsResourceStatus400Schema,
|
|
2423
|
+
putSmartlocksAuthsResourceStatus402Schema,
|
|
2424
|
+
putSmartlocksAuthsResourceStatus409Schema,
|
|
2425
|
+
putSmartlocksAuthsResourceStatus426Schema
|
|
2426
|
+
]);
|
|
2427
|
+
const putSmartlocksAuthsResourceBodySchema = smartlocksAuthCreateSchema.describe("Smartlock authorization create representation");
|
|
2428
|
+
const deleteSmartlocksAuthsResourceStatus204Schema = z__namespace.unknown();
|
|
2429
|
+
const deleteSmartlocksAuthsResourceStatus400Schema = z__namespace.unknown();
|
|
2430
|
+
const deleteSmartlocksAuthsResourceStatus401Schema = z__namespace.unknown();
|
|
2431
|
+
const deleteSmartlocksAuthsResourceStatus403Schema = z__namespace.unknown();
|
|
2432
|
+
const deleteSmartlocksAuthsResourceStatus423Schema = z__namespace.unknown();
|
|
2433
|
+
const deleteSmartlocksAuthsResourceResponseSchema = deleteSmartlocksAuthsResourceStatus204Schema;
|
|
2434
|
+
const deleteSmartlocksAuthsResourceErrorSchema = z__namespace.union([
|
|
2435
|
+
deleteSmartlocksAuthsResourceStatus400Schema,
|
|
2436
|
+
deleteSmartlocksAuthsResourceStatus401Schema,
|
|
2437
|
+
deleteSmartlocksAuthsResourceStatus403Schema,
|
|
2438
|
+
deleteSmartlocksAuthsResourceStatus423Schema
|
|
2439
|
+
]);
|
|
2440
|
+
const deleteSmartlocksAuthsResourceBodySchema = z__namespace.array(z__namespace.string()).describe("Smartlock authorization IDs to delete");
|
|
2441
|
+
const putSmartlockAuthsAdvancedResourceStatus200Schema = advancedConfirmationResponseSchema;
|
|
2442
|
+
const putSmartlockAuthsAdvancedResourceStatus400Schema = z__namespace.unknown();
|
|
2443
|
+
const putSmartlockAuthsAdvancedResourceStatus402Schema = z__namespace.unknown();
|
|
2444
|
+
const putSmartlockAuthsAdvancedResourceStatus409Schema = z__namespace.unknown();
|
|
2445
|
+
const putSmartlockAuthsAdvancedResourceStatus426Schema = z__namespace.unknown();
|
|
2446
|
+
const putSmartlockAuthsAdvancedResourceResponseSchema = putSmartlockAuthsAdvancedResourceStatus200Schema;
|
|
2447
|
+
const putSmartlockAuthsAdvancedResourceErrorSchema = z__namespace.union([
|
|
2448
|
+
putSmartlockAuthsAdvancedResourceStatus400Schema,
|
|
2449
|
+
putSmartlockAuthsAdvancedResourceStatus402Schema,
|
|
2450
|
+
putSmartlockAuthsAdvancedResourceStatus409Schema,
|
|
2451
|
+
putSmartlockAuthsAdvancedResourceStatus426Schema
|
|
2452
|
+
]);
|
|
2453
|
+
const putSmartlockAuthsAdvancedResourceBodySchema = smartlocksAuthAdvancedCreateSchema.describe("Smartlock authorization create representation");
|
|
2454
|
+
const getSmartlocksAuthsPaginatedResourceQueryPageSchema = z__namespace.int().optional().default(0).describe("The page number, starting from 0");
|
|
2455
|
+
const getSmartlocksAuthsPaginatedResourceQuerySizeSchema = z__namespace.int().optional().default(100).describe("The number of items in one page");
|
|
2456
|
+
const getSmartlocksAuthsPaginatedResourceQueryAccountUserIdSchema = z__namespace.int().optional().describe("Filter for account users: set to a positive number will filter for authorizations with this specific accountUserId, set to a negative number will filter without set accountUserId");
|
|
2457
|
+
const getSmartlocksAuthsPaginatedResourceQueryTypesSchema = z__namespace.string().optional().describe("Filter for authorization's types (comma-separated eg: 0,2,3)");
|
|
2458
|
+
const getSmartlocksAuthsPaginatedResourceStatus200Schema = paginatedResponseSchema;
|
|
2459
|
+
const getSmartlocksAuthsPaginatedResourceStatus401Schema = z__namespace.unknown();
|
|
2460
|
+
const getSmartlocksAuthsPaginatedResourceResponseSchema = getSmartlocksAuthsPaginatedResourceStatus200Schema;
|
|
2461
|
+
const getSmartlocksAuthsPaginatedResourceErrorSchema = getSmartlocksAuthsPaginatedResourceStatus401Schema;
|
|
2462
|
+
const getSmartlocksLogsResourceQueryAccountUserIdSchema = z__namespace.int().optional().describe("Filter for account users");
|
|
2463
|
+
const getSmartlocksLogsResourceQueryFromDateSchema = z__namespace.string().optional().describe("Filter for date (RFC3339)");
|
|
2464
|
+
const getSmartlocksLogsResourceQueryToDateSchema = z__namespace.string().optional().describe("Filter for date (RFC3339)");
|
|
2465
|
+
const getSmartlocksLogsResourceQueryActionSchema = z__namespace.int().optional().describe("Filter for action");
|
|
2466
|
+
const getSmartlocksLogsResourceQueryIdSchema = z__namespace.string().optional().describe("Filter for older logs");
|
|
2467
|
+
const getSmartlocksLogsResourceQueryLimitSchema = z__namespace.int().optional().default(20).describe("Amount of logs (max: 50)");
|
|
2468
|
+
const getSmartlocksLogsResourceStatus200Schema = z__namespace.array(smartlockLogSchema);
|
|
2469
|
+
const getSmartlocksLogsResourceStatus401Schema = z__namespace.unknown();
|
|
2470
|
+
const getSmartlocksLogsResourceResponseSchema = getSmartlocksLogsResourceStatus200Schema;
|
|
2471
|
+
const getSmartlocksLogsResourceErrorSchema = getSmartlocksLogsResourceStatus401Schema;
|
|
2472
|
+
const getSmartlockResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2473
|
+
const getSmartlockResourceStatus200Schema = smartlockSchema;
|
|
2474
|
+
const getSmartlockResourceStatus401Schema = z__namespace.unknown();
|
|
2475
|
+
const getSmartlockResourceStatus403Schema = z__namespace.unknown();
|
|
2476
|
+
const getSmartlockResourceStatus404Schema = z__namespace.unknown();
|
|
2477
|
+
const getSmartlockResourceResponseSchema = getSmartlockResourceStatus200Schema;
|
|
2478
|
+
const getSmartlockResourceErrorSchema = z__namespace.union([
|
|
2479
|
+
getSmartlockResourceStatus401Schema,
|
|
2480
|
+
getSmartlockResourceStatus403Schema,
|
|
2481
|
+
getSmartlockResourceStatus404Schema
|
|
2482
|
+
]);
|
|
2483
|
+
const postSmartlockResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2484
|
+
const postSmartlockResourceStatus204Schema = z__namespace.unknown();
|
|
2485
|
+
const postSmartlockResourceStatus400Schema = z__namespace.unknown();
|
|
2486
|
+
const postSmartlockResourceStatus401Schema = z__namespace.unknown();
|
|
2487
|
+
const postSmartlockResourceStatus403Schema = z__namespace.unknown();
|
|
2488
|
+
const postSmartlockResourceResponseSchema = postSmartlockResourceStatus204Schema;
|
|
2489
|
+
const postSmartlockResourceErrorSchema = z__namespace.union([
|
|
2490
|
+
postSmartlockResourceStatus400Schema,
|
|
2491
|
+
postSmartlockResourceStatus401Schema,
|
|
2492
|
+
postSmartlockResourceStatus403Schema
|
|
2493
|
+
]);
|
|
2494
|
+
const postSmartlockResourceBodySchema = smartlockUpdateSchema.describe("Smartlock update representation");
|
|
2495
|
+
const deleteSmartlockResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2496
|
+
const deleteSmartlockResourceStatus204Schema = z__namespace.unknown();
|
|
2497
|
+
const deleteSmartlockResourceStatus400Schema = z__namespace.unknown();
|
|
2498
|
+
const deleteSmartlockResourceStatus401Schema = z__namespace.unknown();
|
|
2499
|
+
const deleteSmartlockResourceStatus403Schema = z__namespace.unknown();
|
|
2500
|
+
const deleteSmartlockResourceResponseSchema = deleteSmartlockResourceStatus204Schema;
|
|
2501
|
+
const deleteSmartlockResourceErrorSchema = z__namespace.union([
|
|
2502
|
+
deleteSmartlockResourceStatus400Schema,
|
|
2503
|
+
deleteSmartlockResourceStatus401Schema,
|
|
2504
|
+
deleteSmartlockResourceStatus403Schema
|
|
2505
|
+
]);
|
|
2506
|
+
const postSmartlockActionResourcePathSmartlockIdSchema = z__namespace.string().describe("The smartlock ID");
|
|
2507
|
+
const postSmartlockActionResourceStatus204Schema = z__namespace.unknown();
|
|
2508
|
+
const postSmartlockActionResourceStatus400Schema = z__namespace.unknown();
|
|
2509
|
+
const postSmartlockActionResourceStatus401Schema = z__namespace.unknown();
|
|
2510
|
+
const postSmartlockActionResourceStatus402Schema = z__namespace.unknown();
|
|
2511
|
+
const postSmartlockActionResourceResponseSchema = postSmartlockActionResourceStatus204Schema;
|
|
2512
|
+
const postSmartlockActionResourceErrorSchema = z__namespace.union([
|
|
2513
|
+
postSmartlockActionResourceStatus400Schema,
|
|
2514
|
+
postSmartlockActionResourceStatus401Schema,
|
|
2515
|
+
postSmartlockActionResourceStatus402Schema
|
|
2516
|
+
]);
|
|
2517
|
+
const postSmartlockActionResourceBodySchema = smartlockActionSchema.describe("Smartlock action representation");
|
|
2518
|
+
const postSmartlockActionAdvancedResourcePathSmartlockIdSchema = z__namespace.string().describe("The smartlock ID");
|
|
2519
|
+
const postSmartlockActionAdvancedResourceStatus200Schema = advancedConfirmationResponseSchema;
|
|
2520
|
+
const postSmartlockActionAdvancedResourceStatus400Schema = z__namespace.unknown();
|
|
2521
|
+
const postSmartlockActionAdvancedResourceStatus402Schema = z__namespace.unknown();
|
|
2522
|
+
const postSmartlockActionAdvancedResourceStatus409Schema = z__namespace.unknown();
|
|
2523
|
+
const postSmartlockActionAdvancedResourceStatus426Schema = z__namespace.unknown();
|
|
2524
|
+
const postSmartlockActionAdvancedResourceResponseSchema = postSmartlockActionAdvancedResourceStatus200Schema;
|
|
2525
|
+
const postSmartlockActionAdvancedResourceErrorSchema = z__namespace.union([
|
|
2526
|
+
postSmartlockActionAdvancedResourceStatus400Schema,
|
|
2527
|
+
postSmartlockActionAdvancedResourceStatus402Schema,
|
|
2528
|
+
postSmartlockActionAdvancedResourceStatus409Schema,
|
|
2529
|
+
postSmartlockActionAdvancedResourceStatus426Schema
|
|
2530
|
+
]);
|
|
2531
|
+
const postSmartlockActionAdvancedResourceBodySchema = smartlockActionSchema.describe("Smartlock action representation");
|
|
2532
|
+
const postSmartlockLockActionResourcePathSmartlockIdSchema = z__namespace.string().describe("The smartlock ID");
|
|
2533
|
+
const postSmartlockLockActionResourceStatus204Schema = z__namespace.unknown();
|
|
2534
|
+
const postSmartlockLockActionResourceStatus400Schema = z__namespace.unknown();
|
|
2535
|
+
const postSmartlockLockActionResourceStatus401Schema = z__namespace.unknown();
|
|
2536
|
+
const postSmartlockLockActionResourceStatus405Schema = z__namespace.unknown();
|
|
2537
|
+
const postSmartlockLockActionResourceResponseSchema = postSmartlockLockActionResourceStatus204Schema;
|
|
2538
|
+
const postSmartlockLockActionResourceErrorSchema = z__namespace.union([
|
|
2539
|
+
postSmartlockLockActionResourceStatus400Schema,
|
|
2540
|
+
postSmartlockLockActionResourceStatus401Schema,
|
|
2541
|
+
postSmartlockLockActionResourceStatus405Schema
|
|
2542
|
+
]);
|
|
2543
|
+
const postSmartlockLockActionAdvancedResourcePathSmartlockIdSchema = z__namespace.string().describe("The smartlock ID");
|
|
2544
|
+
const postSmartlockLockActionAdvancedResourceStatus200Schema = advancedConfirmationResponseSchema;
|
|
2545
|
+
const postSmartlockLockActionAdvancedResourceStatus400Schema = z__namespace.unknown();
|
|
2546
|
+
const postSmartlockLockActionAdvancedResourceStatus401Schema = z__namespace.unknown();
|
|
2547
|
+
const postSmartlockLockActionAdvancedResourceStatus405Schema = z__namespace.unknown();
|
|
2548
|
+
const postSmartlockLockActionAdvancedResourceResponseSchema = postSmartlockLockActionAdvancedResourceStatus200Schema;
|
|
2549
|
+
const postSmartlockLockActionAdvancedResourceErrorSchema = z__namespace.union([
|
|
2550
|
+
postSmartlockLockActionAdvancedResourceStatus400Schema,
|
|
2551
|
+
postSmartlockLockActionAdvancedResourceStatus401Schema,
|
|
2552
|
+
postSmartlockLockActionAdvancedResourceStatus405Schema
|
|
2553
|
+
]);
|
|
2554
|
+
const postSmartlockUnlockActionResourcePathSmartlockIdSchema = z__namespace.string().describe("The smartlock ID");
|
|
2555
|
+
const postSmartlockUnlockActionResourceStatus204Schema = z__namespace.unknown();
|
|
2556
|
+
const postSmartlockUnlockActionResourceStatus400Schema = z__namespace.unknown();
|
|
2557
|
+
const postSmartlockUnlockActionResourceStatus401Schema = z__namespace.unknown();
|
|
2558
|
+
const postSmartlockUnlockActionResourceStatus405Schema = z__namespace.unknown();
|
|
2559
|
+
const postSmartlockUnlockActionResourceResponseSchema = postSmartlockUnlockActionResourceStatus204Schema;
|
|
2560
|
+
const postSmartlockUnlockActionResourceErrorSchema = z__namespace.union([
|
|
2561
|
+
postSmartlockUnlockActionResourceStatus400Schema,
|
|
2562
|
+
postSmartlockUnlockActionResourceStatus401Schema,
|
|
2563
|
+
postSmartlockUnlockActionResourceStatus405Schema
|
|
2564
|
+
]);
|
|
2565
|
+
const postSmartlockUnlockActionAdvancedResourcePathSmartlockIdSchema = z__namespace.string().describe("The smartlock ID");
|
|
2566
|
+
const postSmartlockUnlockActionAdvancedResourceStatus200Schema = advancedConfirmationResponseSchema;
|
|
2567
|
+
const postSmartlockUnlockActionAdvancedResourceStatus400Schema = z__namespace.unknown();
|
|
2568
|
+
const postSmartlockUnlockActionAdvancedResourceStatus401Schema = z__namespace.unknown();
|
|
2569
|
+
const postSmartlockUnlockActionAdvancedResourceStatus405Schema = z__namespace.unknown();
|
|
2570
|
+
const postSmartlockUnlockActionAdvancedResourceResponseSchema = postSmartlockUnlockActionAdvancedResourceStatus200Schema;
|
|
2571
|
+
const postSmartlockUnlockActionAdvancedResourceErrorSchema = z__namespace.union([
|
|
2572
|
+
postSmartlockUnlockActionAdvancedResourceStatus400Schema,
|
|
2573
|
+
postSmartlockUnlockActionAdvancedResourceStatus401Schema,
|
|
2574
|
+
postSmartlockUnlockActionAdvancedResourceStatus405Schema
|
|
2575
|
+
]);
|
|
2576
|
+
const postSmartlockAdminPinResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2577
|
+
const postSmartlockAdminPinResourceStatus204Schema = z__namespace.unknown();
|
|
2578
|
+
const postSmartlockAdminPinResourceStatus400Schema = z__namespace.unknown();
|
|
2579
|
+
const postSmartlockAdminPinResourceStatus401Schema = z__namespace.unknown();
|
|
2580
|
+
const postSmartlockAdminPinResourceResponseSchema = postSmartlockAdminPinResourceStatus204Schema;
|
|
2581
|
+
const postSmartlockAdminPinResourceErrorSchema = z__namespace.union([
|
|
2582
|
+
postSmartlockAdminPinResourceStatus400Schema,
|
|
2583
|
+
postSmartlockAdminPinResourceStatus401Schema
|
|
2584
|
+
]);
|
|
2585
|
+
const postSmartlockAdminPinResourceBodySchema = smartlockAdminPinUpdateSchema.describe("Smartlock admin pin update representation");
|
|
2586
|
+
const postSmartlockAdvancedConfigResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2587
|
+
const postSmartlockAdvancedConfigResourceStatus204Schema = z__namespace.unknown();
|
|
2588
|
+
const postSmartlockAdvancedConfigResourceStatus400Schema = z__namespace.unknown();
|
|
2589
|
+
const postSmartlockAdvancedConfigResourceStatus401Schema = z__namespace.unknown();
|
|
2590
|
+
const postSmartlockAdvancedConfigResourceResponseSchema = postSmartlockAdvancedConfigResourceStatus204Schema;
|
|
2591
|
+
const postSmartlockAdvancedConfigResourceErrorSchema = z__namespace.union([
|
|
2592
|
+
postSmartlockAdvancedConfigResourceStatus400Schema,
|
|
2593
|
+
postSmartlockAdvancedConfigResourceStatus401Schema
|
|
2594
|
+
]);
|
|
2595
|
+
const postSmartlockAdvancedConfigResourceBodySchema = smartlockAdvancedConfigSchema.omit({
|
|
2596
|
+
operationId: true,
|
|
2597
|
+
totalDegrees: true
|
|
2598
|
+
}).describe("Smartlock config update representation");
|
|
2599
|
+
const postSmartlockOpenerAdvancedConfigResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock (opener) ID");
|
|
2600
|
+
const postSmartlockOpenerAdvancedConfigResourceStatus204Schema = z__namespace.unknown();
|
|
2601
|
+
const postSmartlockOpenerAdvancedConfigResourceStatus400Schema = z__namespace.unknown();
|
|
2602
|
+
const postSmartlockOpenerAdvancedConfigResourceStatus401Schema = z__namespace.unknown();
|
|
2603
|
+
const postSmartlockOpenerAdvancedConfigResourceResponseSchema = postSmartlockOpenerAdvancedConfigResourceStatus204Schema;
|
|
2604
|
+
const postSmartlockOpenerAdvancedConfigResourceErrorSchema = z__namespace.union([
|
|
2605
|
+
postSmartlockOpenerAdvancedConfigResourceStatus400Schema,
|
|
2606
|
+
postSmartlockOpenerAdvancedConfigResourceStatus401Schema
|
|
2607
|
+
]);
|
|
2608
|
+
const postSmartlockOpenerAdvancedConfigResourceBodySchema = smartlockOpenerAdvancedConfigSchema.omit({
|
|
2609
|
+
intercomId: true,
|
|
2610
|
+
busModeSwitch: true,
|
|
2611
|
+
operationId: true
|
|
2612
|
+
}).describe("Opener advanced config update representation");
|
|
2613
|
+
const postSmartdoorAdvancedConfigResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartdoor ID");
|
|
2614
|
+
const postSmartdoorAdvancedConfigResourceStatus204Schema = z__namespace.unknown();
|
|
2615
|
+
const postSmartdoorAdvancedConfigResourceStatus400Schema = z__namespace.unknown();
|
|
2616
|
+
const postSmartdoorAdvancedConfigResourceStatus401Schema = z__namespace.unknown();
|
|
2617
|
+
const postSmartdoorAdvancedConfigResourceResponseSchema = postSmartdoorAdvancedConfigResourceStatus204Schema;
|
|
2618
|
+
const postSmartdoorAdvancedConfigResourceErrorSchema = z__namespace.union([
|
|
2619
|
+
postSmartdoorAdvancedConfigResourceStatus400Schema,
|
|
2620
|
+
postSmartdoorAdvancedConfigResourceStatus401Schema
|
|
2621
|
+
]);
|
|
2622
|
+
const postSmartdoorAdvancedConfigResourceBodySchema = smartlockSmartdoorAdvancedConfigSchema.omit({
|
|
2623
|
+
operationId: true,
|
|
2624
|
+
supportedBatteryTypes: true
|
|
2625
|
+
}).describe("Smartdoor advanced config update representation");
|
|
2626
|
+
const getSmartlockAuthsResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2627
|
+
const getSmartlockAuthsResourceQueryTypesSchema = z__namespace.string().optional().describe("Filter for smartlock authorization's types (comma-separated eg: 0,2,3)");
|
|
2628
|
+
const getSmartlockAuthsResourceQueryIncludeEmailSchema = z__namespace.boolean().optional().describe("Indicates if email should be included in the response");
|
|
2629
|
+
const getSmartlockAuthsResourceStatus200Schema = z__namespace.array(smartlockAuthSchema);
|
|
2630
|
+
const getSmartlockAuthsResourceStatus401Schema = z__namespace.unknown();
|
|
2631
|
+
const getSmartlockAuthsResourceStatus403Schema = z__namespace.unknown();
|
|
2632
|
+
const getSmartlockAuthsResourceResponseSchema = getSmartlockAuthsResourceStatus200Schema;
|
|
2633
|
+
const getSmartlockAuthsResourceErrorSchema = z__namespace.union([
|
|
2634
|
+
getSmartlockAuthsResourceStatus401Schema,
|
|
2635
|
+
getSmartlockAuthsResourceStatus403Schema
|
|
2636
|
+
]);
|
|
2637
|
+
const putSmartlockAuthsResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2638
|
+
const putSmartlockAuthsResourceStatus204Schema = z__namespace.unknown();
|
|
2639
|
+
const putSmartlockAuthsResourceStatus400Schema = z__namespace.unknown();
|
|
2640
|
+
const putSmartlockAuthsResourceStatus402Schema = z__namespace.unknown();
|
|
2641
|
+
const putSmartlockAuthsResourceStatus409Schema = z__namespace.unknown();
|
|
2642
|
+
const putSmartlockAuthsResourceStatus426Schema = z__namespace.unknown();
|
|
2643
|
+
const putSmartlockAuthsResourceResponseSchema = putSmartlockAuthsResourceStatus204Schema;
|
|
2644
|
+
const putSmartlockAuthsResourceErrorSchema = z__namespace.union([
|
|
2645
|
+
putSmartlockAuthsResourceStatus400Schema,
|
|
2646
|
+
putSmartlockAuthsResourceStatus402Schema,
|
|
2647
|
+
putSmartlockAuthsResourceStatus409Schema,
|
|
2648
|
+
putSmartlockAuthsResourceStatus426Schema
|
|
2649
|
+
]);
|
|
2650
|
+
const putSmartlockAuthsResourceBodySchema = smartlockAuthCreateSchema.describe("Smartlock authorization create representation");
|
|
2651
|
+
const postSmartlockAuthWithSharedKeyResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2652
|
+
const postSmartlockAuthWithSharedKeyResourceStatus200Schema = z__namespace.array(smartlockAuthSchema);
|
|
2653
|
+
const postSmartlockAuthWithSharedKeyResourceStatus401Schema = z__namespace.unknown();
|
|
2654
|
+
const postSmartlockAuthWithSharedKeyResourceStatus403Schema = z__namespace.unknown();
|
|
2655
|
+
const postSmartlockAuthWithSharedKeyResourceStatus404Schema = z__namespace.unknown();
|
|
2656
|
+
const postSmartlockAuthWithSharedKeyResourceResponseSchema = postSmartlockAuthWithSharedKeyResourceStatus200Schema;
|
|
2657
|
+
const postSmartlockAuthWithSharedKeyResourceErrorSchema = z__namespace.union([
|
|
2658
|
+
postSmartlockAuthWithSharedKeyResourceStatus401Schema,
|
|
2659
|
+
postSmartlockAuthWithSharedKeyResourceStatus403Schema,
|
|
2660
|
+
postSmartlockAuthWithSharedKeyResourceStatus404Schema
|
|
2661
|
+
]);
|
|
2662
|
+
const postSmartlockAuthWithSharedKeyResourceBodySchema = smartlockAuthWithSharedKeyCreateSchema.describe("Smartlock auth create with shared key");
|
|
2663
|
+
const getSmartlockAuthResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2664
|
+
const getSmartlockAuthResourcePathIdSchema = z__namespace.string().describe("The smartlock auth unique ID");
|
|
2665
|
+
const getSmartlockAuthResourceStatus200Schema = smartlockAuthSchema;
|
|
2666
|
+
const getSmartlockAuthResourceStatus401Schema = z__namespace.unknown();
|
|
2667
|
+
const getSmartlockAuthResourceStatus403Schema = z__namespace.unknown();
|
|
2668
|
+
const getSmartlockAuthResourceResponseSchema = getSmartlockAuthResourceStatus200Schema;
|
|
2669
|
+
const getSmartlockAuthResourceErrorSchema = z__namespace.union([
|
|
2670
|
+
getSmartlockAuthResourceStatus401Schema,
|
|
2671
|
+
getSmartlockAuthResourceStatus403Schema
|
|
2672
|
+
]);
|
|
2673
|
+
const postSmartlockAuthResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2674
|
+
const postSmartlockAuthResourcePathIdSchema = z__namespace.string().describe("The smartlock authorization unique ID");
|
|
2675
|
+
const postSmartlockAuthResourceStatus204Schema = z__namespace.unknown();
|
|
2676
|
+
const postSmartlockAuthResourceStatus400Schema = z__namespace.unknown();
|
|
2677
|
+
const postSmartlockAuthResourceStatus401Schema = z__namespace.unknown();
|
|
2678
|
+
const postSmartlockAuthResourceStatus403Schema = z__namespace.unknown();
|
|
2679
|
+
const postSmartlockAuthResourceStatus409Schema = z__namespace.unknown();
|
|
2680
|
+
const postSmartlockAuthResourceStatus423Schema = z__namespace.unknown();
|
|
2681
|
+
const postSmartlockAuthResourceResponseSchema = postSmartlockAuthResourceStatus204Schema;
|
|
2682
|
+
const postSmartlockAuthResourceErrorSchema = z__namespace.union([
|
|
2683
|
+
postSmartlockAuthResourceStatus400Schema,
|
|
2684
|
+
postSmartlockAuthResourceStatus401Schema,
|
|
2685
|
+
postSmartlockAuthResourceStatus403Schema,
|
|
2686
|
+
postSmartlockAuthResourceStatus409Schema,
|
|
2687
|
+
postSmartlockAuthResourceStatus423Schema
|
|
2688
|
+
]);
|
|
2689
|
+
const postSmartlockAuthResourceBodySchema = smartlockAuthUpdateSchema.describe("Smartlock authorization update representation");
|
|
2690
|
+
const deleteSmartlockAuthResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2691
|
+
const deleteSmartlockAuthResourcePathIdSchema = z__namespace.string().describe("The smartlock authorization unique ID");
|
|
2692
|
+
const deleteSmartlockAuthResourceStatus204Schema = z__namespace.unknown();
|
|
2693
|
+
const deleteSmartlockAuthResourceStatus401Schema = z__namespace.unknown();
|
|
2694
|
+
const deleteSmartlockAuthResourceStatus403Schema = z__namespace.unknown();
|
|
2695
|
+
const deleteSmartlockAuthResourceStatus423Schema = z__namespace.unknown();
|
|
2696
|
+
const deleteSmartlockAuthResourceResponseSchema = deleteSmartlockAuthResourceStatus204Schema;
|
|
2697
|
+
const deleteSmartlockAuthResourceErrorSchema = z__namespace.union([
|
|
2698
|
+
deleteSmartlockAuthResourceStatus401Schema,
|
|
2699
|
+
deleteSmartlockAuthResourceStatus403Schema,
|
|
2700
|
+
deleteSmartlockAuthResourceStatus423Schema
|
|
2701
|
+
]);
|
|
2702
|
+
const postSmartlockConfigResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2703
|
+
const postSmartlockConfigResourceStatus204Schema = z__namespace.unknown();
|
|
2704
|
+
const postSmartlockConfigResourceStatus400Schema = z__namespace.unknown();
|
|
2705
|
+
const postSmartlockConfigResourceStatus401Schema = z__namespace.unknown();
|
|
2706
|
+
const postSmartlockConfigResourceResponseSchema = postSmartlockConfigResourceStatus204Schema;
|
|
2707
|
+
const postSmartlockConfigResourceErrorSchema = z__namespace.union([
|
|
2708
|
+
postSmartlockConfigResourceStatus400Schema,
|
|
2709
|
+
postSmartlockConfigResourceStatus401Schema
|
|
2710
|
+
]);
|
|
2711
|
+
const postSmartlockConfigResourceBodySchema = smartlockConfigSchema.omit({
|
|
2712
|
+
capabilities: true,
|
|
2713
|
+
fobPaired: true,
|
|
2714
|
+
fobAction1: true,
|
|
2715
|
+
fobAction2: true,
|
|
2716
|
+
fobAction3: true,
|
|
2717
|
+
operatingMode: true,
|
|
2718
|
+
keypadPaired: true,
|
|
2719
|
+
keypad2Paired: true,
|
|
2720
|
+
homekitState: true,
|
|
2721
|
+
matterState: true,
|
|
2722
|
+
deviceType: true,
|
|
2723
|
+
wifiEnabled: true,
|
|
2724
|
+
operationId: true,
|
|
2725
|
+
productVariant: true
|
|
2726
|
+
}).describe("Smartlock config update representation");
|
|
2727
|
+
const getSmartlockLogsResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2728
|
+
const getSmartlockLogsResourceQueryAuthIdSchema = z__namespace.string().optional().describe("Filter for auths");
|
|
2729
|
+
const getSmartlockLogsResourceQueryAccountUserIdSchema = z__namespace.int().optional().describe("Filter for account users");
|
|
2730
|
+
const getSmartlockLogsResourceQueryFromDateSchema = z__namespace.string().optional().describe("Filter for date (RFC3339)");
|
|
2731
|
+
const getSmartlockLogsResourceQueryToDateSchema = z__namespace.string().optional().describe("Filter for date (RFC3339)");
|
|
2732
|
+
const getSmartlockLogsResourceQueryActionSchema = z__namespace.int().optional().describe("Filter for action");
|
|
2733
|
+
const getSmartlockLogsResourceQueryIdSchema = z__namespace.string().optional().describe("Filter for older logs");
|
|
2734
|
+
const getSmartlockLogsResourceQueryLimitSchema = z__namespace.int().optional().default(20).describe("Amount of logs (max: 50)");
|
|
2735
|
+
const getSmartlockLogsResourceStatus200Schema = z__namespace.array(smartlockLogSchema);
|
|
2736
|
+
const getSmartlockLogsResourceStatus401Schema = z__namespace.unknown();
|
|
2737
|
+
const getSmartlockLogsResourceResponseSchema = getSmartlockLogsResourceStatus200Schema;
|
|
2738
|
+
const getSmartlockLogsResourceErrorSchema = getSmartlockLogsResourceStatus401Schema;
|
|
2739
|
+
const postSmartlockSyncResourcePathSmartlockIdSchema = z__namespace.string().describe("The smartlock ID");
|
|
2740
|
+
const postSmartlockSyncResourceStatus204Schema = z__namespace.unknown();
|
|
2741
|
+
const postSmartlockSyncResourceStatus400Schema = z__namespace.unknown();
|
|
2742
|
+
const postSmartlockSyncResourceStatus401Schema = z__namespace.unknown();
|
|
2743
|
+
const postSmartlockSyncResourceResponseSchema = postSmartlockSyncResourceStatus204Schema;
|
|
2744
|
+
const postSmartlockSyncResourceErrorSchema = z__namespace.union([
|
|
2745
|
+
postSmartlockSyncResourceStatus400Schema,
|
|
2746
|
+
postSmartlockSyncResourceStatus401Schema
|
|
2747
|
+
]);
|
|
2748
|
+
const postSmartlockWebConfigResourcePathSmartlockIdSchema = z__namespace.int().describe("The smartlock ID");
|
|
2749
|
+
const postSmartlockWebConfigResourceStatus204Schema = z__namespace.unknown();
|
|
2750
|
+
const postSmartlockWebConfigResourceStatus400Schema = z__namespace.unknown();
|
|
2751
|
+
const postSmartlockWebConfigResourceStatus401Schema = z__namespace.unknown();
|
|
2752
|
+
const postSmartlockWebConfigResourceResponseSchema = postSmartlockWebConfigResourceStatus204Schema;
|
|
2753
|
+
const postSmartlockWebConfigResourceErrorSchema = z__namespace.union([
|
|
2754
|
+
postSmartlockWebConfigResourceStatus400Schema,
|
|
2755
|
+
postSmartlockWebConfigResourceStatus401Schema
|
|
2756
|
+
]);
|
|
2757
|
+
const postSmartlockWebConfigResourceBodySchema = smartlockWebConfigSchema.describe("Smartlock web config update representation");
|
|
2758
|
+
|
|
2759
|
+
exports.accountConfigSchema = accountConfigSchema;
|
|
2760
|
+
exports.accountDescentSchema = accountDescentSchema;
|
|
2761
|
+
exports.accountEmailChangeSchema = accountEmailChangeSchema;
|
|
2762
|
+
exports.accountIntegrationSchema = accountIntegrationSchema;
|
|
2763
|
+
exports.accountOtpEnableSchema = accountOtpEnableSchema;
|
|
2764
|
+
exports.accountPasswordResetSchema = accountPasswordResetSchema;
|
|
2765
|
+
exports.accountProfileSchema = accountProfileSchema;
|
|
2766
|
+
exports.accountSchema = accountSchema;
|
|
2767
|
+
exports.accountSettingSchema = accountSettingSchema;
|
|
2768
|
+
exports.accountSettingWebSchema = accountSettingWebSchema;
|
|
2769
|
+
exports.accountSubCreateSchema = accountSubCreateSchema;
|
|
2770
|
+
exports.accountSubUpdateSchema = accountSubUpdateSchema;
|
|
2771
|
+
exports.accountUpdateSchema = accountUpdateSchema;
|
|
2772
|
+
exports.accountUserCreateSchema = accountUserCreateSchema;
|
|
2773
|
+
exports.accountUserSchema = accountUserSchema;
|
|
2774
|
+
exports.accountUserUpdateSchema = accountUserUpdateSchema;
|
|
2775
|
+
exports.addressCreateSchema = addressCreateSchema;
|
|
2776
|
+
exports.addressReservationSchema = addressReservationSchema;
|
|
2777
|
+
exports.addressSchema = addressSchema;
|
|
2778
|
+
exports.addressTokenInfoSchema = addressTokenInfoSchema;
|
|
2779
|
+
exports.addressTokenSchema = addressTokenSchema;
|
|
2780
|
+
exports.addressUnitResponseSchema = addressUnitResponseSchema;
|
|
2781
|
+
exports.addressUnitSchema = addressUnitSchema;
|
|
2782
|
+
exports.addressUpdateSchema = addressUpdateSchema;
|
|
2783
|
+
exports.advancedApiKeyCreateSchema = advancedApiKeyCreateSchema;
|
|
2784
|
+
exports.advancedApiKeySchema = advancedApiKeySchema;
|
|
2785
|
+
exports.advancedApiKeyUpdateSchema = advancedApiKeyUpdateSchema;
|
|
2786
|
+
exports.advancedConfirmationResponseSchema = advancedConfirmationResponseSchema;
|
|
2787
|
+
exports.apiKeyAdvancedSchema = apiKeyAdvancedSchema;
|
|
2788
|
+
exports.apiKeyCreateSchema = apiKeyCreateSchema;
|
|
2789
|
+
exports.apiKeySchema = apiKeySchema;
|
|
2790
|
+
exports.apiKeyServiceSchema = apiKeyServiceSchema;
|
|
2791
|
+
exports.apiKeyTokenCreateSchema = apiKeyTokenCreateSchema;
|
|
2792
|
+
exports.apiKeyTokenSchema = apiKeyTokenSchema;
|
|
2793
|
+
exports.apiKeyTokenUpdateSchema = apiKeyTokenUpdateSchema;
|
|
2794
|
+
exports.apiKeyUpdateSchema = apiKeyUpdateSchema;
|
|
2795
|
+
exports.applicationSchema = applicationSchema;
|
|
2796
|
+
exports.authenticationInfoSchema = authenticationInfoSchema;
|
|
2797
|
+
exports.bulkWebConfigRequestSchema = bulkWebConfigRequestSchema;
|
|
2798
|
+
exports.cacheDirectiveSchema = cacheDirectiveSchema;
|
|
2799
|
+
exports.certificateSchema = certificateSchema;
|
|
2800
|
+
exports.challengeRequestSchema = challengeRequestSchema;
|
|
2801
|
+
exports.challengeResponseSchema = challengeResponseSchema;
|
|
2802
|
+
exports.challengeSchemeSchema = challengeSchemeSchema;
|
|
2803
|
+
exports.characterSetSchema = characterSetSchema;
|
|
2804
|
+
exports.clientInfoSchema = clientInfoSchema;
|
|
2805
|
+
exports.companySchema = companySchema;
|
|
2806
|
+
exports.completableFutureListApiKeySchema = completableFutureListApiKeySchema;
|
|
2807
|
+
exports.completableFutureSchema = completableFutureSchema;
|
|
2808
|
+
exports.conditionsSchema = conditionsSchema;
|
|
2809
|
+
exports.connectorServiceSchema = connectorServiceSchema;
|
|
2810
|
+
exports.connegServiceSchema = connegServiceSchema;
|
|
2811
|
+
exports.contextSchema = contextSchema;
|
|
2812
|
+
exports.converterServiceSchema = converterServiceSchema;
|
|
2813
|
+
exports.cookieSchema = cookieSchema;
|
|
2814
|
+
exports.cookieSettingSchema = cookieSettingSchema;
|
|
2815
|
+
exports.decentralWebhookSchema = decentralWebhookSchema;
|
|
2816
|
+
exports.decoderServiceSchema = decoderServiceSchema;
|
|
2817
|
+
exports.deleteAccountIntegrationsResourceErrorSchema = deleteAccountIntegrationsResourceErrorSchema;
|
|
2818
|
+
exports.deleteAccountIntegrationsResourceQueryApiKeyIdSchema = deleteAccountIntegrationsResourceQueryApiKeyIdSchema;
|
|
2819
|
+
exports.deleteAccountIntegrationsResourceQueryTokenIdSchema = deleteAccountIntegrationsResourceQueryTokenIdSchema;
|
|
2820
|
+
exports.deleteAccountIntegrationsResourceResponseSchema = deleteAccountIntegrationsResourceResponseSchema;
|
|
2821
|
+
exports.deleteAccountIntegrationsResourceStatus204Schema = deleteAccountIntegrationsResourceStatus204Schema;
|
|
2822
|
+
exports.deleteAccountIntegrationsResourceStatus401Schema = deleteAccountIntegrationsResourceStatus401Schema;
|
|
2823
|
+
exports.deleteAccountOtpResourceErrorSchema = deleteAccountOtpResourceErrorSchema;
|
|
2824
|
+
exports.deleteAccountOtpResourceResponseSchema = deleteAccountOtpResourceResponseSchema;
|
|
2825
|
+
exports.deleteAccountOtpResourceStatus204Schema = deleteAccountOtpResourceStatus204Schema;
|
|
2826
|
+
exports.deleteAccountOtpResourceStatus401Schema = deleteAccountOtpResourceStatus401Schema;
|
|
2827
|
+
exports.deleteAccountSettingResourceErrorSchema = deleteAccountSettingResourceErrorSchema;
|
|
2828
|
+
exports.deleteAccountSettingResourceResponseSchema = deleteAccountSettingResourceResponseSchema;
|
|
2829
|
+
exports.deleteAccountSettingResourceStatus204Schema = deleteAccountSettingResourceStatus204Schema;
|
|
2830
|
+
exports.deleteAccountSettingResourceStatus401Schema = deleteAccountSettingResourceStatus401Schema;
|
|
2831
|
+
exports.deleteAccountSettingResourceStatus403Schema = deleteAccountSettingResourceStatus403Schema;
|
|
2832
|
+
exports.deleteAccountSubResourceErrorSchema = deleteAccountSubResourceErrorSchema;
|
|
2833
|
+
exports.deleteAccountSubResourcePathAccountIdSchema = deleteAccountSubResourcePathAccountIdSchema;
|
|
2834
|
+
exports.deleteAccountSubResourceResponseSchema = deleteAccountSubResourceResponseSchema;
|
|
2835
|
+
exports.deleteAccountSubResourceStatus204Schema = deleteAccountSubResourceStatus204Schema;
|
|
2836
|
+
exports.deleteAccountSubResourceStatus401Schema = deleteAccountSubResourceStatus401Schema;
|
|
2837
|
+
exports.deleteAccountUserResourceErrorSchema = deleteAccountUserResourceErrorSchema;
|
|
2838
|
+
exports.deleteAccountUserResourcePathAccountUserIdSchema = deleteAccountUserResourcePathAccountUserIdSchema;
|
|
2839
|
+
exports.deleteAccountUserResourceResponseSchema = deleteAccountUserResourceResponseSchema;
|
|
2840
|
+
exports.deleteAccountUserResourceStatus204Schema = deleteAccountUserResourceStatus204Schema;
|
|
2841
|
+
exports.deleteAccountUserResourceStatus401Schema = deleteAccountUserResourceStatus401Schema;
|
|
2842
|
+
exports.deleteAccountUserResourceStatus423Schema = deleteAccountUserResourceStatus423Schema;
|
|
2843
|
+
exports.deleteAccountsResourceErrorSchema = deleteAccountsResourceErrorSchema;
|
|
2844
|
+
exports.deleteAccountsResourceResponseSchema = deleteAccountsResourceResponseSchema;
|
|
2845
|
+
exports.deleteAccountsResourceStatus204Schema = deleteAccountsResourceStatus204Schema;
|
|
2846
|
+
exports.deleteAccountsResourceStatus401Schema = deleteAccountsResourceStatus401Schema;
|
|
2847
|
+
exports.deleteAddressResourceErrorSchema = deleteAddressResourceErrorSchema;
|
|
2848
|
+
exports.deleteAddressResourcePathAddressIdSchema = deleteAddressResourcePathAddressIdSchema;
|
|
2849
|
+
exports.deleteAddressResourceResponseSchema = deleteAddressResourceResponseSchema;
|
|
2850
|
+
exports.deleteAddressResourceStatus204Schema = deleteAddressResourceStatus204Schema;
|
|
2851
|
+
exports.deleteAddressResourceStatus401Schema = deleteAddressResourceStatus401Schema;
|
|
2852
|
+
exports.deleteAddressResourceStatus403Schema = deleteAddressResourceStatus403Schema;
|
|
2853
|
+
exports.deleteAddressUnitResourceErrorSchema = deleteAddressUnitResourceErrorSchema;
|
|
2854
|
+
exports.deleteAddressUnitResourcePathAddressIdSchema = deleteAddressUnitResourcePathAddressIdSchema;
|
|
2855
|
+
exports.deleteAddressUnitResourcePathIdSchema = deleteAddressUnitResourcePathIdSchema;
|
|
2856
|
+
exports.deleteAddressUnitResourceResponseSchema = deleteAddressUnitResourceResponseSchema;
|
|
2857
|
+
exports.deleteAddressUnitResourceStatus200Schema = deleteAddressUnitResourceStatus200Schema;
|
|
2858
|
+
exports.deleteAddressUnitResourceStatus401Schema = deleteAddressUnitResourceStatus401Schema;
|
|
2859
|
+
exports.deleteAddressUnitResourceStatus403Schema = deleteAddressUnitResourceStatus403Schema;
|
|
2860
|
+
exports.deleteAddressUnitResourceStatus423Schema = deleteAddressUnitResourceStatus423Schema;
|
|
2861
|
+
exports.deleteAddressUnitsResourceBodySchema = deleteAddressUnitsResourceBodySchema;
|
|
2862
|
+
exports.deleteAddressUnitsResourceErrorSchema = deleteAddressUnitsResourceErrorSchema;
|
|
2863
|
+
exports.deleteAddressUnitsResourcePathAddressIdSchema = deleteAddressUnitsResourcePathAddressIdSchema;
|
|
2864
|
+
exports.deleteAddressUnitsResourceResponseSchema = deleteAddressUnitsResourceResponseSchema;
|
|
2865
|
+
exports.deleteAddressUnitsResourceStatus200Schema = deleteAddressUnitsResourceStatus200Schema;
|
|
2866
|
+
exports.deleteAddressUnitsResourceStatus400Schema = deleteAddressUnitsResourceStatus400Schema;
|
|
2867
|
+
exports.deleteAddressUnitsResourceStatus401Schema = deleteAddressUnitsResourceStatus401Schema;
|
|
2868
|
+
exports.deleteAddressUnitsResourceStatus403Schema = deleteAddressUnitsResourceStatus403Schema;
|
|
2869
|
+
exports.deleteAddressUnitsResourceStatus423Schema = deleteAddressUnitsResourceStatus423Schema;
|
|
2870
|
+
exports.deleteApiKeyAdvancedResourceErrorSchema = deleteApiKeyAdvancedResourceErrorSchema;
|
|
2871
|
+
exports.deleteApiKeyAdvancedResourcePathApiKeyIdSchema = deleteApiKeyAdvancedResourcePathApiKeyIdSchema;
|
|
2872
|
+
exports.deleteApiKeyAdvancedResourceResponseSchema = deleteApiKeyAdvancedResourceResponseSchema;
|
|
2873
|
+
exports.deleteApiKeyAdvancedResourceStatus204Schema = deleteApiKeyAdvancedResourceStatus204Schema;
|
|
2874
|
+
exports.deleteApiKeyAdvancedResourceStatus401Schema = deleteApiKeyAdvancedResourceStatus401Schema;
|
|
2875
|
+
exports.deleteApiKeyResourceErrorSchema = deleteApiKeyResourceErrorSchema;
|
|
2876
|
+
exports.deleteApiKeyResourcePathApiKeyIdSchema = deleteApiKeyResourcePathApiKeyIdSchema;
|
|
2877
|
+
exports.deleteApiKeyResourceResponseSchema = deleteApiKeyResourceResponseSchema;
|
|
2878
|
+
exports.deleteApiKeyResourceStatus204Schema = deleteApiKeyResourceStatus204Schema;
|
|
2879
|
+
exports.deleteApiKeyResourceStatus401Schema = deleteApiKeyResourceStatus401Schema;
|
|
2880
|
+
exports.deleteApiKeyTokenResourceErrorSchema = deleteApiKeyTokenResourceErrorSchema;
|
|
2881
|
+
exports.deleteApiKeyTokenResourcePathApiKeyIdSchema = deleteApiKeyTokenResourcePathApiKeyIdSchema;
|
|
2882
|
+
exports.deleteApiKeyTokenResourcePathIdSchema = deleteApiKeyTokenResourcePathIdSchema;
|
|
2883
|
+
exports.deleteApiKeyTokenResourceResponseSchema = deleteApiKeyTokenResourceResponseSchema;
|
|
2884
|
+
exports.deleteApiKeyTokenResourceStatus204Schema = deleteApiKeyTokenResourceStatus204Schema;
|
|
2885
|
+
exports.deleteApiKeyTokenResourceStatus401Schema = deleteApiKeyTokenResourceStatus401Schema;
|
|
2886
|
+
exports.deleteDecentralWebhookResourceErrorSchema = deleteDecentralWebhookResourceErrorSchema;
|
|
2887
|
+
exports.deleteDecentralWebhookResourcePathIdSchema = deleteDecentralWebhookResourcePathIdSchema;
|
|
2888
|
+
exports.deleteDecentralWebhookResourceResponseSchema = deleteDecentralWebhookResourceResponseSchema;
|
|
2889
|
+
exports.deleteDecentralWebhookResourceStatus204Schema = deleteDecentralWebhookResourceStatus204Schema;
|
|
2890
|
+
exports.deleteDecentralWebhookResourceStatus401Schema = deleteDecentralWebhookResourceStatus401Schema;
|
|
2891
|
+
exports.deleteDecentralWebhookResourceStatus403Schema = deleteDecentralWebhookResourceStatus403Schema;
|
|
2892
|
+
exports.deleteNotificationResourceErrorSchema = deleteNotificationResourceErrorSchema;
|
|
2893
|
+
exports.deleteNotificationResourcePathNotificationIdSchema = deleteNotificationResourcePathNotificationIdSchema;
|
|
2894
|
+
exports.deleteNotificationResourceResponseSchema = deleteNotificationResourceResponseSchema;
|
|
2895
|
+
exports.deleteNotificationResourceStatus204Schema = deleteNotificationResourceStatus204Schema;
|
|
2896
|
+
exports.deleteNotificationResourceStatus401Schema = deleteNotificationResourceStatus401Schema;
|
|
2897
|
+
exports.deleteNotificationResourceStatus403Schema = deleteNotificationResourceStatus403Schema;
|
|
2898
|
+
exports.deleteNotificationResourceStatus405Schema = deleteNotificationResourceStatus405Schema;
|
|
2899
|
+
exports.deleteSmartlockAuthResourceErrorSchema = deleteSmartlockAuthResourceErrorSchema;
|
|
2900
|
+
exports.deleteSmartlockAuthResourcePathIdSchema = deleteSmartlockAuthResourcePathIdSchema;
|
|
2901
|
+
exports.deleteSmartlockAuthResourcePathSmartlockIdSchema = deleteSmartlockAuthResourcePathSmartlockIdSchema;
|
|
2902
|
+
exports.deleteSmartlockAuthResourceResponseSchema = deleteSmartlockAuthResourceResponseSchema;
|
|
2903
|
+
exports.deleteSmartlockAuthResourceStatus204Schema = deleteSmartlockAuthResourceStatus204Schema;
|
|
2904
|
+
exports.deleteSmartlockAuthResourceStatus401Schema = deleteSmartlockAuthResourceStatus401Schema;
|
|
2905
|
+
exports.deleteSmartlockAuthResourceStatus403Schema = deleteSmartlockAuthResourceStatus403Schema;
|
|
2906
|
+
exports.deleteSmartlockAuthResourceStatus423Schema = deleteSmartlockAuthResourceStatus423Schema;
|
|
2907
|
+
exports.deleteSmartlockResourceErrorSchema = deleteSmartlockResourceErrorSchema;
|
|
2908
|
+
exports.deleteSmartlockResourcePathSmartlockIdSchema = deleteSmartlockResourcePathSmartlockIdSchema;
|
|
2909
|
+
exports.deleteSmartlockResourceResponseSchema = deleteSmartlockResourceResponseSchema;
|
|
2910
|
+
exports.deleteSmartlockResourceStatus204Schema = deleteSmartlockResourceStatus204Schema;
|
|
2911
|
+
exports.deleteSmartlockResourceStatus400Schema = deleteSmartlockResourceStatus400Schema;
|
|
2912
|
+
exports.deleteSmartlockResourceStatus401Schema = deleteSmartlockResourceStatus401Schema;
|
|
2913
|
+
exports.deleteSmartlockResourceStatus403Schema = deleteSmartlockResourceStatus403Schema;
|
|
2914
|
+
exports.deleteSmartlocksAuthsResourceBodySchema = deleteSmartlocksAuthsResourceBodySchema;
|
|
2915
|
+
exports.deleteSmartlocksAuthsResourceErrorSchema = deleteSmartlocksAuthsResourceErrorSchema;
|
|
2916
|
+
exports.deleteSmartlocksAuthsResourceResponseSchema = deleteSmartlocksAuthsResourceResponseSchema;
|
|
2917
|
+
exports.deleteSmartlocksAuthsResourceStatus204Schema = deleteSmartlocksAuthsResourceStatus204Schema;
|
|
2918
|
+
exports.deleteSmartlocksAuthsResourceStatus400Schema = deleteSmartlocksAuthsResourceStatus400Schema;
|
|
2919
|
+
exports.deleteSmartlocksAuthsResourceStatus401Schema = deleteSmartlocksAuthsResourceStatus401Schema;
|
|
2920
|
+
exports.deleteSmartlocksAuthsResourceStatus403Schema = deleteSmartlocksAuthsResourceStatus403Schema;
|
|
2921
|
+
exports.deleteSmartlocksAuthsResourceStatus423Schema = deleteSmartlocksAuthsResourceStatus423Schema;
|
|
2922
|
+
exports.digestSchema = digestSchema;
|
|
2923
|
+
exports.dispositionSchema = dispositionSchema;
|
|
2924
|
+
exports.encoderServiceSchema = encoderServiceSchema;
|
|
2925
|
+
exports.encodingSchema = encodingSchema;
|
|
2926
|
+
exports.enrolerSchema = enrolerSchema;
|
|
2927
|
+
exports.enumerationSchema = enumerationSchema;
|
|
2928
|
+
exports.enumerationStringSchema = enumerationStringSchema;
|
|
2929
|
+
exports.errorManagerSchema = errorManagerSchema;
|
|
2930
|
+
exports.expectationSchema = expectationSchema;
|
|
2931
|
+
exports.filterSchema = filterSchema;
|
|
2932
|
+
exports.formatterSchema = formatterSchema;
|
|
2933
|
+
exports.getAccountIntegrationsResourceErrorSchema = getAccountIntegrationsResourceErrorSchema;
|
|
2934
|
+
exports.getAccountIntegrationsResourceResponseSchema = getAccountIntegrationsResourceResponseSchema;
|
|
2935
|
+
exports.getAccountIntegrationsResourceStatus200Schema = getAccountIntegrationsResourceStatus200Schema;
|
|
2936
|
+
exports.getAccountIntegrationsResourceStatus401Schema = getAccountIntegrationsResourceStatus401Schema;
|
|
2937
|
+
exports.getAccountSettingResourceErrorSchema = getAccountSettingResourceErrorSchema;
|
|
2938
|
+
exports.getAccountSettingResourceResponseSchema = getAccountSettingResourceResponseSchema;
|
|
2939
|
+
exports.getAccountSettingResourceStatus200Schema = getAccountSettingResourceStatus200Schema;
|
|
2940
|
+
exports.getAccountSettingResourceStatus401Schema = getAccountSettingResourceStatus401Schema;
|
|
2941
|
+
exports.getAccountSettingResourceStatus403Schema = getAccountSettingResourceStatus403Schema;
|
|
2942
|
+
exports.getAccountSettingResourceStatus404Schema = getAccountSettingResourceStatus404Schema;
|
|
2943
|
+
exports.getAccountSubResourceErrorSchema = getAccountSubResourceErrorSchema;
|
|
2944
|
+
exports.getAccountSubResourcePathAccountIdSchema = getAccountSubResourcePathAccountIdSchema;
|
|
2945
|
+
exports.getAccountSubResourceResponseSchema = getAccountSubResourceResponseSchema;
|
|
2946
|
+
exports.getAccountSubResourceStatus200Schema = getAccountSubResourceStatus200Schema;
|
|
2947
|
+
exports.getAccountSubResourceStatus401Schema = getAccountSubResourceStatus401Schema;
|
|
2948
|
+
exports.getAccountSubsResourceErrorSchema = getAccountSubsResourceErrorSchema;
|
|
2949
|
+
exports.getAccountSubsResourceQueryEmailSchema = getAccountSubsResourceQueryEmailSchema;
|
|
2950
|
+
exports.getAccountSubsResourceResponseSchema = getAccountSubsResourceResponseSchema;
|
|
2951
|
+
exports.getAccountSubsResourceStatus200Schema = getAccountSubsResourceStatus200Schema;
|
|
2952
|
+
exports.getAccountSubsResourceStatus401Schema = getAccountSubsResourceStatus401Schema;
|
|
2953
|
+
exports.getAccountUserResourceErrorSchema = getAccountUserResourceErrorSchema;
|
|
2954
|
+
exports.getAccountUserResourcePathAccountUserIdSchema = getAccountUserResourcePathAccountUserIdSchema;
|
|
2955
|
+
exports.getAccountUserResourceResponseSchema = getAccountUserResourceResponseSchema;
|
|
2956
|
+
exports.getAccountUserResourceStatus200Schema = getAccountUserResourceStatus200Schema;
|
|
2957
|
+
exports.getAccountUserResourceStatus401Schema = getAccountUserResourceStatus401Schema;
|
|
2958
|
+
exports.getAccountUsersResourceErrorSchema = getAccountUsersResourceErrorSchema;
|
|
2959
|
+
exports.getAccountUsersResourceQueryEmailSchema = getAccountUsersResourceQueryEmailSchema;
|
|
2960
|
+
exports.getAccountUsersResourceQueryLimitSchema = getAccountUsersResourceQueryLimitSchema;
|
|
2961
|
+
exports.getAccountUsersResourceQueryOffsetSchema = getAccountUsersResourceQueryOffsetSchema;
|
|
2962
|
+
exports.getAccountUsersResourceResponseSchema = getAccountUsersResourceResponseSchema;
|
|
2963
|
+
exports.getAccountUsersResourceStatus200Schema = getAccountUsersResourceStatus200Schema;
|
|
2964
|
+
exports.getAccountUsersResourceStatus401Schema = getAccountUsersResourceStatus401Schema;
|
|
2965
|
+
exports.getAccountsResourceErrorSchema = getAccountsResourceErrorSchema;
|
|
2966
|
+
exports.getAccountsResourceResponseSchema = getAccountsResourceResponseSchema;
|
|
2967
|
+
exports.getAccountsResourceStatus200Schema = getAccountsResourceStatus200Schema;
|
|
2968
|
+
exports.getAccountsResourceStatus401Schema = getAccountsResourceStatus401Schema;
|
|
2969
|
+
exports.getAddressReservationsResourceErrorSchema = getAddressReservationsResourceErrorSchema;
|
|
2970
|
+
exports.getAddressReservationsResourcePathAddressIdSchema = getAddressReservationsResourcePathAddressIdSchema;
|
|
2971
|
+
exports.getAddressReservationsResourceResponseSchema = getAddressReservationsResourceResponseSchema;
|
|
2972
|
+
exports.getAddressReservationsResourceStatus200Schema = getAddressReservationsResourceStatus200Schema;
|
|
2973
|
+
exports.getAddressReservationsResourceStatus401Schema = getAddressReservationsResourceStatus401Schema;
|
|
2974
|
+
exports.getAddressTokenRedeemResourceErrorSchema = getAddressTokenRedeemResourceErrorSchema;
|
|
2975
|
+
exports.getAddressTokenRedeemResourcePathIdSchema = getAddressTokenRedeemResourcePathIdSchema;
|
|
2976
|
+
exports.getAddressTokenRedeemResourceResponseSchema = getAddressTokenRedeemResourceResponseSchema;
|
|
2977
|
+
exports.getAddressTokenRedeemResourceStatus200Schema = getAddressTokenRedeemResourceStatus200Schema;
|
|
2978
|
+
exports.getAddressTokenRedeemResourceStatus401Schema = getAddressTokenRedeemResourceStatus401Schema;
|
|
2979
|
+
exports.getAddressTokenRedeemResourceStatus404Schema = getAddressTokenRedeemResourceStatus404Schema;
|
|
2980
|
+
exports.getAddressTokenResourceErrorSchema = getAddressTokenResourceErrorSchema;
|
|
2981
|
+
exports.getAddressTokenResourcePathIdSchema = getAddressTokenResourcePathIdSchema;
|
|
2982
|
+
exports.getAddressTokenResourceResponseSchema = getAddressTokenResourceResponseSchema;
|
|
2983
|
+
exports.getAddressTokenResourceStatus200Schema = getAddressTokenResourceStatus200Schema;
|
|
2984
|
+
exports.getAddressTokenResourceStatus401Schema = getAddressTokenResourceStatus401Schema;
|
|
2985
|
+
exports.getAddressTokenResourceStatus404Schema = getAddressTokenResourceStatus404Schema;
|
|
2986
|
+
exports.getAddressTokensResourceErrorSchema = getAddressTokensResourceErrorSchema;
|
|
2987
|
+
exports.getAddressTokensResourcePathAddressIdSchema = getAddressTokensResourcePathAddressIdSchema;
|
|
2988
|
+
exports.getAddressTokensResourceResponseSchema = getAddressTokensResourceResponseSchema;
|
|
2989
|
+
exports.getAddressTokensResourceStatus200Schema = getAddressTokensResourceStatus200Schema;
|
|
2990
|
+
exports.getAddressTokensResourceStatus400Schema = getAddressTokensResourceStatus400Schema;
|
|
2991
|
+
exports.getAddressTokensResourceStatus401Schema = getAddressTokensResourceStatus401Schema;
|
|
2992
|
+
exports.getAddressUnitsResourceErrorSchema = getAddressUnitsResourceErrorSchema;
|
|
2993
|
+
exports.getAddressUnitsResourcePathAddressIdSchema = getAddressUnitsResourcePathAddressIdSchema;
|
|
2994
|
+
exports.getAddressUnitsResourceResponseSchema = getAddressUnitsResourceResponseSchema;
|
|
2995
|
+
exports.getAddressUnitsResourceStatus200Schema = getAddressUnitsResourceStatus200Schema;
|
|
2996
|
+
exports.getAddressUnitsResourceStatus400Schema = getAddressUnitsResourceStatus400Schema;
|
|
2997
|
+
exports.getAddressUnitsResourceStatus401Schema = getAddressUnitsResourceStatus401Schema;
|
|
2998
|
+
exports.getAddressesResourceErrorSchema = getAddressesResourceErrorSchema;
|
|
2999
|
+
exports.getAddressesResourceResponseSchema = getAddressesResourceResponseSchema;
|
|
3000
|
+
exports.getAddressesResourceStatus200Schema = getAddressesResourceStatus200Schema;
|
|
3001
|
+
exports.getAddressesResourceStatus401Schema = getAddressesResourceStatus401Schema;
|
|
3002
|
+
exports.getApiKeyAdvancedResourceErrorSchema = getApiKeyAdvancedResourceErrorSchema;
|
|
3003
|
+
exports.getApiKeyAdvancedResourcePathApiKeyIdSchema = getApiKeyAdvancedResourcePathApiKeyIdSchema;
|
|
3004
|
+
exports.getApiKeyAdvancedResourceResponseSchema = getApiKeyAdvancedResourceResponseSchema;
|
|
3005
|
+
exports.getApiKeyAdvancedResourceStatus200Schema = getApiKeyAdvancedResourceStatus200Schema;
|
|
3006
|
+
exports.getApiKeyAdvancedResourceStatus401Schema = getApiKeyAdvancedResourceStatus401Schema;
|
|
3007
|
+
exports.getApiKeyAdvancedResourceStatus403Schema = getApiKeyAdvancedResourceStatus403Schema;
|
|
3008
|
+
exports.getApiKeyAdvancedResourceStatus404Schema = getApiKeyAdvancedResourceStatus404Schema;
|
|
3009
|
+
exports.getApiKeyTokensResourceErrorSchema = getApiKeyTokensResourceErrorSchema;
|
|
3010
|
+
exports.getApiKeyTokensResourcePathApiKeyIdSchema = getApiKeyTokensResourcePathApiKeyIdSchema;
|
|
3011
|
+
exports.getApiKeyTokensResourceResponseSchema = getApiKeyTokensResourceResponseSchema;
|
|
3012
|
+
exports.getApiKeyTokensResourceStatus200Schema = getApiKeyTokensResourceStatus200Schema;
|
|
3013
|
+
exports.getApiKeyTokensResourceStatus401Schema = getApiKeyTokensResourceStatus401Schema;
|
|
3014
|
+
exports.getApiKeysResourceErrorSchema = getApiKeysResourceErrorSchema;
|
|
3015
|
+
exports.getApiKeysResourceResponseSchema = getApiKeysResourceResponseSchema;
|
|
3016
|
+
exports.getApiKeysResourceStatus200Schema = getApiKeysResourceStatus200Schema;
|
|
3017
|
+
exports.getApiKeysResourceStatus401Schema = getApiKeysResourceStatus401Schema;
|
|
3018
|
+
exports.getCompaniesResourceErrorSchema = getCompaniesResourceErrorSchema;
|
|
3019
|
+
exports.getCompaniesResourceResponseSchema = getCompaniesResourceResponseSchema;
|
|
3020
|
+
exports.getCompaniesResourceStatus200Schema = getCompaniesResourceStatus200Schema;
|
|
3021
|
+
exports.getCompaniesResourceStatus401Schema = getCompaniesResourceStatus401Schema;
|
|
3022
|
+
exports.getCompaniesResourceStatus403Schema = getCompaniesResourceStatus403Schema;
|
|
3023
|
+
exports.getDecentralWebhooksResourceErrorSchema = getDecentralWebhooksResourceErrorSchema;
|
|
3024
|
+
exports.getDecentralWebhooksResourceResponseSchema = getDecentralWebhooksResourceResponseSchema;
|
|
3025
|
+
exports.getDecentralWebhooksResourceStatus200Schema = getDecentralWebhooksResourceStatus200Schema;
|
|
3026
|
+
exports.getDecentralWebhooksResourceStatus401Schema = getDecentralWebhooksResourceStatus401Schema;
|
|
3027
|
+
exports.getDecentralWebhooksResourceStatus403Schema = getDecentralWebhooksResourceStatus403Schema;
|
|
3028
|
+
exports.getNotificationResourceErrorSchema = getNotificationResourceErrorSchema;
|
|
3029
|
+
exports.getNotificationResourcePathNotificationIdSchema = getNotificationResourcePathNotificationIdSchema;
|
|
3030
|
+
exports.getNotificationResourceResponseSchema = getNotificationResourceResponseSchema;
|
|
3031
|
+
exports.getNotificationResourceStatus200Schema = getNotificationResourceStatus200Schema;
|
|
3032
|
+
exports.getNotificationResourceStatus401Schema = getNotificationResourceStatus401Schema;
|
|
3033
|
+
exports.getNotificationResourceStatus403Schema = getNotificationResourceStatus403Schema;
|
|
3034
|
+
exports.getNotificationResourceStatus404Schema = getNotificationResourceStatus404Schema;
|
|
3035
|
+
exports.getNotificationsResourceErrorSchema = getNotificationsResourceErrorSchema;
|
|
3036
|
+
exports.getNotificationsResourceQueryReferenceIdSchema = getNotificationsResourceQueryReferenceIdSchema;
|
|
3037
|
+
exports.getNotificationsResourceResponseSchema = getNotificationsResourceResponseSchema;
|
|
3038
|
+
exports.getNotificationsResourceStatus200Schema = getNotificationsResourceStatus200Schema;
|
|
3039
|
+
exports.getNotificationsResourceStatus401Schema = getNotificationsResourceStatus401Schema;
|
|
3040
|
+
exports.getOpenerBrandResourcePathBrandIdSchema = getOpenerBrandResourcePathBrandIdSchema;
|
|
3041
|
+
exports.getOpenerBrandResourceResponseSchema = getOpenerBrandResourceResponseSchema;
|
|
3042
|
+
exports.getOpenerBrandResourceStatus200Schema = getOpenerBrandResourceStatus200Schema;
|
|
3043
|
+
exports.getOpenerBrandsResourceResponseSchema = getOpenerBrandsResourceResponseSchema;
|
|
3044
|
+
exports.getOpenerBrandsResourceStatus200Schema = getOpenerBrandsResourceStatus200Schema;
|
|
3045
|
+
exports.getOpenerIntercomResourcePathIntercomIdSchema = getOpenerIntercomResourcePathIntercomIdSchema;
|
|
3046
|
+
exports.getOpenerIntercomResourceResponseSchema = getOpenerIntercomResourceResponseSchema;
|
|
3047
|
+
exports.getOpenerIntercomResourceStatus200Schema = getOpenerIntercomResourceStatus200Schema;
|
|
3048
|
+
exports.getOpenerIntercomsResourceQueryBrandIdSchema = getOpenerIntercomsResourceQueryBrandIdSchema;
|
|
3049
|
+
exports.getOpenerIntercomsResourceQueryIgnoreVerifiedSchema = getOpenerIntercomsResourceQueryIgnoreVerifiedSchema;
|
|
3050
|
+
exports.getOpenerIntercomsResourceQueryRecentlyChangedSchema = getOpenerIntercomsResourceQueryRecentlyChangedSchema;
|
|
3051
|
+
exports.getOpenerIntercomsResourceResponseSchema = getOpenerIntercomsResourceResponseSchema;
|
|
3052
|
+
exports.getOpenerIntercomsResourceStatus200Schema = getOpenerIntercomsResourceStatus200Schema;
|
|
3053
|
+
exports.getServiceResourceErrorSchema = getServiceResourceErrorSchema;
|
|
3054
|
+
exports.getServiceResourcePathServiceIdSchema = getServiceResourcePathServiceIdSchema;
|
|
3055
|
+
exports.getServiceResourceResponseSchema = getServiceResourceResponseSchema;
|
|
3056
|
+
exports.getServiceResourceStatus200Schema = getServiceResourceStatus200Schema;
|
|
3057
|
+
exports.getServiceResourceStatus401Schema = getServiceResourceStatus401Schema;
|
|
3058
|
+
exports.getServicesResourceErrorSchema = getServicesResourceErrorSchema;
|
|
3059
|
+
exports.getServicesResourceQueryServiceIdsSchema = getServicesResourceQueryServiceIdsSchema;
|
|
3060
|
+
exports.getServicesResourceResponseSchema = getServicesResourceResponseSchema;
|
|
3061
|
+
exports.getServicesResourceStatus200Schema = getServicesResourceStatus200Schema;
|
|
3062
|
+
exports.getServicesResourceStatus401Schema = getServicesResourceStatus401Schema;
|
|
3063
|
+
exports.getSmartlockAuthResourceErrorSchema = getSmartlockAuthResourceErrorSchema;
|
|
3064
|
+
exports.getSmartlockAuthResourcePathIdSchema = getSmartlockAuthResourcePathIdSchema;
|
|
3065
|
+
exports.getSmartlockAuthResourcePathSmartlockIdSchema = getSmartlockAuthResourcePathSmartlockIdSchema;
|
|
3066
|
+
exports.getSmartlockAuthResourceResponseSchema = getSmartlockAuthResourceResponseSchema;
|
|
3067
|
+
exports.getSmartlockAuthResourceStatus200Schema = getSmartlockAuthResourceStatus200Schema;
|
|
3068
|
+
exports.getSmartlockAuthResourceStatus401Schema = getSmartlockAuthResourceStatus401Schema;
|
|
3069
|
+
exports.getSmartlockAuthResourceStatus403Schema = getSmartlockAuthResourceStatus403Schema;
|
|
3070
|
+
exports.getSmartlockAuthsResourceErrorSchema = getSmartlockAuthsResourceErrorSchema;
|
|
3071
|
+
exports.getSmartlockAuthsResourcePathSmartlockIdSchema = getSmartlockAuthsResourcePathSmartlockIdSchema;
|
|
3072
|
+
exports.getSmartlockAuthsResourceQueryIncludeEmailSchema = getSmartlockAuthsResourceQueryIncludeEmailSchema;
|
|
3073
|
+
exports.getSmartlockAuthsResourceQueryTypesSchema = getSmartlockAuthsResourceQueryTypesSchema;
|
|
3074
|
+
exports.getSmartlockAuthsResourceResponseSchema = getSmartlockAuthsResourceResponseSchema;
|
|
3075
|
+
exports.getSmartlockAuthsResourceStatus200Schema = getSmartlockAuthsResourceStatus200Schema;
|
|
3076
|
+
exports.getSmartlockAuthsResourceStatus401Schema = getSmartlockAuthsResourceStatus401Schema;
|
|
3077
|
+
exports.getSmartlockAuthsResourceStatus403Schema = getSmartlockAuthsResourceStatus403Schema;
|
|
3078
|
+
exports.getSmartlockLogsResourceErrorSchema = getSmartlockLogsResourceErrorSchema;
|
|
3079
|
+
exports.getSmartlockLogsResourcePathSmartlockIdSchema = getSmartlockLogsResourcePathSmartlockIdSchema;
|
|
3080
|
+
exports.getSmartlockLogsResourceQueryAccountUserIdSchema = getSmartlockLogsResourceQueryAccountUserIdSchema;
|
|
3081
|
+
exports.getSmartlockLogsResourceQueryActionSchema = getSmartlockLogsResourceQueryActionSchema;
|
|
3082
|
+
exports.getSmartlockLogsResourceQueryAuthIdSchema = getSmartlockLogsResourceQueryAuthIdSchema;
|
|
3083
|
+
exports.getSmartlockLogsResourceQueryFromDateSchema = getSmartlockLogsResourceQueryFromDateSchema;
|
|
3084
|
+
exports.getSmartlockLogsResourceQueryIdSchema = getSmartlockLogsResourceQueryIdSchema;
|
|
3085
|
+
exports.getSmartlockLogsResourceQueryLimitSchema = getSmartlockLogsResourceQueryLimitSchema;
|
|
3086
|
+
exports.getSmartlockLogsResourceQueryToDateSchema = getSmartlockLogsResourceQueryToDateSchema;
|
|
3087
|
+
exports.getSmartlockLogsResourceResponseSchema = getSmartlockLogsResourceResponseSchema;
|
|
3088
|
+
exports.getSmartlockLogsResourceStatus200Schema = getSmartlockLogsResourceStatus200Schema;
|
|
3089
|
+
exports.getSmartlockLogsResourceStatus401Schema = getSmartlockLogsResourceStatus401Schema;
|
|
3090
|
+
exports.getSmartlockResourceErrorSchema = getSmartlockResourceErrorSchema;
|
|
3091
|
+
exports.getSmartlockResourcePathSmartlockIdSchema = getSmartlockResourcePathSmartlockIdSchema;
|
|
3092
|
+
exports.getSmartlockResourceResponseSchema = getSmartlockResourceResponseSchema;
|
|
3093
|
+
exports.getSmartlockResourceStatus200Schema = getSmartlockResourceStatus200Schema;
|
|
3094
|
+
exports.getSmartlockResourceStatus401Schema = getSmartlockResourceStatus401Schema;
|
|
3095
|
+
exports.getSmartlockResourceStatus403Schema = getSmartlockResourceStatus403Schema;
|
|
3096
|
+
exports.getSmartlockResourceStatus404Schema = getSmartlockResourceStatus404Schema;
|
|
3097
|
+
exports.getSmartlocksAuthsPaginatedResourceErrorSchema = getSmartlocksAuthsPaginatedResourceErrorSchema;
|
|
3098
|
+
exports.getSmartlocksAuthsPaginatedResourceQueryAccountUserIdSchema = getSmartlocksAuthsPaginatedResourceQueryAccountUserIdSchema;
|
|
3099
|
+
exports.getSmartlocksAuthsPaginatedResourceQueryPageSchema = getSmartlocksAuthsPaginatedResourceQueryPageSchema;
|
|
3100
|
+
exports.getSmartlocksAuthsPaginatedResourceQuerySizeSchema = getSmartlocksAuthsPaginatedResourceQuerySizeSchema;
|
|
3101
|
+
exports.getSmartlocksAuthsPaginatedResourceQueryTypesSchema = getSmartlocksAuthsPaginatedResourceQueryTypesSchema;
|
|
3102
|
+
exports.getSmartlocksAuthsPaginatedResourceResponseSchema = getSmartlocksAuthsPaginatedResourceResponseSchema;
|
|
3103
|
+
exports.getSmartlocksAuthsPaginatedResourceStatus200Schema = getSmartlocksAuthsPaginatedResourceStatus200Schema;
|
|
3104
|
+
exports.getSmartlocksAuthsPaginatedResourceStatus401Schema = getSmartlocksAuthsPaginatedResourceStatus401Schema;
|
|
3105
|
+
exports.getSmartlocksAuthsResourceErrorSchema = getSmartlocksAuthsResourceErrorSchema;
|
|
3106
|
+
exports.getSmartlocksAuthsResourceQueryAccountUserIdSchema = getSmartlocksAuthsResourceQueryAccountUserIdSchema;
|
|
3107
|
+
exports.getSmartlocksAuthsResourceQueryTypesSchema = getSmartlocksAuthsResourceQueryTypesSchema;
|
|
3108
|
+
exports.getSmartlocksAuthsResourceResponseSchema = getSmartlocksAuthsResourceResponseSchema;
|
|
3109
|
+
exports.getSmartlocksAuthsResourceStatus200Schema = getSmartlocksAuthsResourceStatus200Schema;
|
|
3110
|
+
exports.getSmartlocksAuthsResourceStatus401Schema = getSmartlocksAuthsResourceStatus401Schema;
|
|
3111
|
+
exports.getSmartlocksLogsResourceErrorSchema = getSmartlocksLogsResourceErrorSchema;
|
|
3112
|
+
exports.getSmartlocksLogsResourceQueryAccountUserIdSchema = getSmartlocksLogsResourceQueryAccountUserIdSchema;
|
|
3113
|
+
exports.getSmartlocksLogsResourceQueryActionSchema = getSmartlocksLogsResourceQueryActionSchema;
|
|
3114
|
+
exports.getSmartlocksLogsResourceQueryFromDateSchema = getSmartlocksLogsResourceQueryFromDateSchema;
|
|
3115
|
+
exports.getSmartlocksLogsResourceQueryIdSchema = getSmartlocksLogsResourceQueryIdSchema;
|
|
3116
|
+
exports.getSmartlocksLogsResourceQueryLimitSchema = getSmartlocksLogsResourceQueryLimitSchema;
|
|
3117
|
+
exports.getSmartlocksLogsResourceQueryToDateSchema = getSmartlocksLogsResourceQueryToDateSchema;
|
|
3118
|
+
exports.getSmartlocksLogsResourceResponseSchema = getSmartlocksLogsResourceResponseSchema;
|
|
3119
|
+
exports.getSmartlocksLogsResourceStatus200Schema = getSmartlocksLogsResourceStatus200Schema;
|
|
3120
|
+
exports.getSmartlocksLogsResourceStatus401Schema = getSmartlocksLogsResourceStatus401Schema;
|
|
3121
|
+
exports.getSmartlocksResourceErrorSchema = getSmartlocksResourceErrorSchema;
|
|
3122
|
+
exports.getSmartlocksResourceQueryAuthIdSchema = getSmartlocksResourceQueryAuthIdSchema;
|
|
3123
|
+
exports.getSmartlocksResourceQueryTypeSchema = getSmartlocksResourceQueryTypeSchema;
|
|
3124
|
+
exports.getSmartlocksResourceResponseSchema = getSmartlocksResourceResponseSchema;
|
|
3125
|
+
exports.getSmartlocksResourceStatus200Schema = getSmartlocksResourceStatus200Schema;
|
|
3126
|
+
exports.getSmartlocksResourceStatus401Schema = getSmartlocksResourceStatus401Schema;
|
|
3127
|
+
exports.getWebhookLogsResourceErrorSchema = getWebhookLogsResourceErrorSchema;
|
|
3128
|
+
exports.getWebhookLogsResourcePathApiKeyIdSchema = getWebhookLogsResourcePathApiKeyIdSchema;
|
|
3129
|
+
exports.getWebhookLogsResourceQueryIdSchema = getWebhookLogsResourceQueryIdSchema;
|
|
3130
|
+
exports.getWebhookLogsResourceQueryLimitSchema = getWebhookLogsResourceQueryLimitSchema;
|
|
3131
|
+
exports.getWebhookLogsResourceResponseSchema = getWebhookLogsResourceResponseSchema;
|
|
3132
|
+
exports.getWebhookLogsResourceStatus200Schema = getWebhookLogsResourceStatus200Schema;
|
|
3133
|
+
exports.getWebhookLogsResourceStatus401Schema = getWebhookLogsResourceStatus401Schema;
|
|
3134
|
+
exports.handlerSchema = handlerSchema;
|
|
3135
|
+
exports.headerSchema = headerSchema;
|
|
3136
|
+
exports.inputStreamSchema = inputStreamSchema;
|
|
3137
|
+
exports.languageSchema = languageSchema;
|
|
3138
|
+
exports.levelSchema = levelSchema;
|
|
3139
|
+
exports.localeSchema = localeSchema;
|
|
3140
|
+
exports.loggerSchema = loggerSchema;
|
|
3141
|
+
exports.mediaTypeSchema = mediaTypeSchema;
|
|
3142
|
+
exports.metadataSchema = metadataSchema;
|
|
3143
|
+
exports.metadataServiceSchema = metadataServiceSchema;
|
|
3144
|
+
exports.methodSchema = methodSchema;
|
|
3145
|
+
exports.myAccountSchema = myAccountSchema;
|
|
3146
|
+
exports.namedValueSchema = namedValueSchema;
|
|
3147
|
+
exports.namedValueStringSchema = namedValueStringSchema;
|
|
3148
|
+
exports.notificationSchema = notificationSchema;
|
|
3149
|
+
exports.notificationSettingSchema = notificationSettingSchema;
|
|
3150
|
+
exports.objectIdSchema = objectIdSchema;
|
|
3151
|
+
exports.openerIntercomBrandSchema = openerIntercomBrandSchema;
|
|
3152
|
+
exports.openerIntercomModelSchema = openerIntercomModelSchema;
|
|
3153
|
+
exports.paginatedResponseSchema = paginatedResponseSchema;
|
|
3154
|
+
exports.paginationSchema = paginationSchema;
|
|
3155
|
+
exports.parameterSchema = parameterSchema;
|
|
3156
|
+
exports.postAccountEmailChangeResourceBodySchema = postAccountEmailChangeResourceBodySchema;
|
|
3157
|
+
exports.postAccountEmailChangeResourceErrorSchema = postAccountEmailChangeResourceErrorSchema;
|
|
3158
|
+
exports.postAccountEmailChangeResourceResponseSchema = postAccountEmailChangeResourceResponseSchema;
|
|
3159
|
+
exports.postAccountEmailChangeResourceStatus204Schema = postAccountEmailChangeResourceStatus204Schema;
|
|
3160
|
+
exports.postAccountEmailChangeResourceStatus400Schema = postAccountEmailChangeResourceStatus400Schema;
|
|
3161
|
+
exports.postAccountEmailChangeResourceStatus401Schema = postAccountEmailChangeResourceStatus401Schema;
|
|
3162
|
+
exports.postAccountEmailChangeResourceStatus409Schema = postAccountEmailChangeResourceStatus409Schema;
|
|
3163
|
+
exports.postAccountEmailVerifyResourceErrorSchema = postAccountEmailVerifyResourceErrorSchema;
|
|
3164
|
+
exports.postAccountEmailVerifyResourceResponseSchema = postAccountEmailVerifyResourceResponseSchema;
|
|
3165
|
+
exports.postAccountEmailVerifyResourceStatus204Schema = postAccountEmailVerifyResourceStatus204Schema;
|
|
3166
|
+
exports.postAccountEmailVerifyResourceStatus400Schema = postAccountEmailVerifyResourceStatus400Schema;
|
|
3167
|
+
exports.postAccountEmailVerifyResourceStatus401Schema = postAccountEmailVerifyResourceStatus401Schema;
|
|
3168
|
+
exports.postAccountEmailVerifyResourceStatus409Schema = postAccountEmailVerifyResourceStatus409Schema;
|
|
3169
|
+
exports.postAccountOtpResourceBodySchema = postAccountOtpResourceBodySchema;
|
|
3170
|
+
exports.postAccountOtpResourceErrorSchema = postAccountOtpResourceErrorSchema;
|
|
3171
|
+
exports.postAccountOtpResourceResponseSchema = postAccountOtpResourceResponseSchema;
|
|
3172
|
+
exports.postAccountOtpResourceStatus204Schema = postAccountOtpResourceStatus204Schema;
|
|
3173
|
+
exports.postAccountOtpResourceStatus400Schema = postAccountOtpResourceStatus400Schema;
|
|
3174
|
+
exports.postAccountOtpResourceStatus401Schema = postAccountOtpResourceStatus401Schema;
|
|
3175
|
+
exports.postAccountOtpResourceStatus429Schema = postAccountOtpResourceStatus429Schema;
|
|
3176
|
+
exports.postAccountPasswordResetResourceBodySchema = postAccountPasswordResetResourceBodySchema;
|
|
3177
|
+
exports.postAccountPasswordResetResourceErrorSchema = postAccountPasswordResetResourceErrorSchema;
|
|
3178
|
+
exports.postAccountPasswordResetResourceResponseSchema = postAccountPasswordResetResourceResponseSchema;
|
|
3179
|
+
exports.postAccountPasswordResetResourceStatus204Schema = postAccountPasswordResetResourceStatus204Schema;
|
|
3180
|
+
exports.postAccountPasswordResetResourceStatus401Schema = postAccountPasswordResetResourceStatus401Schema;
|
|
3181
|
+
exports.postAccountSubResourceBodySchema = postAccountSubResourceBodySchema;
|
|
3182
|
+
exports.postAccountSubResourceErrorSchema = postAccountSubResourceErrorSchema;
|
|
3183
|
+
exports.postAccountSubResourcePathAccountIdSchema = postAccountSubResourcePathAccountIdSchema;
|
|
3184
|
+
exports.postAccountSubResourceResponseSchema = postAccountSubResourceResponseSchema;
|
|
3185
|
+
exports.postAccountSubResourceStatus204Schema = postAccountSubResourceStatus204Schema;
|
|
3186
|
+
exports.postAccountSubResourceStatus400Schema = postAccountSubResourceStatus400Schema;
|
|
3187
|
+
exports.postAccountSubResourceStatus401Schema = postAccountSubResourceStatus401Schema;
|
|
3188
|
+
exports.postAccountSubResourceStatus409Schema = postAccountSubResourceStatus409Schema;
|
|
3189
|
+
exports.postAccountUserResourceBodySchema = postAccountUserResourceBodySchema;
|
|
3190
|
+
exports.postAccountUserResourceErrorSchema = postAccountUserResourceErrorSchema;
|
|
3191
|
+
exports.postAccountUserResourcePathAccountUserIdSchema = postAccountUserResourcePathAccountUserIdSchema;
|
|
3192
|
+
exports.postAccountUserResourceResponseSchema = postAccountUserResourceResponseSchema;
|
|
3193
|
+
exports.postAccountUserResourceStatus200Schema = postAccountUserResourceStatus200Schema;
|
|
3194
|
+
exports.postAccountUserResourceStatus204Schema = postAccountUserResourceStatus204Schema;
|
|
3195
|
+
exports.postAccountUserResourceStatus400Schema = postAccountUserResourceStatus400Schema;
|
|
3196
|
+
exports.postAccountUserResourceStatus401Schema = postAccountUserResourceStatus401Schema;
|
|
3197
|
+
exports.postAccountUserResourceStatus409Schema = postAccountUserResourceStatus409Schema;
|
|
3198
|
+
exports.postAccountsResourceBodySchema = postAccountsResourceBodySchema;
|
|
3199
|
+
exports.postAccountsResourceErrorSchema = postAccountsResourceErrorSchema;
|
|
3200
|
+
exports.postAccountsResourceQueryDeleteApiTokensSchema = postAccountsResourceQueryDeleteApiTokensSchema;
|
|
3201
|
+
exports.postAccountsResourceResponseSchema = postAccountsResourceResponseSchema;
|
|
3202
|
+
exports.postAccountsResourceStatus204Schema = postAccountsResourceStatus204Schema;
|
|
3203
|
+
exports.postAccountsResourceStatus400Schema = postAccountsResourceStatus400Schema;
|
|
3204
|
+
exports.postAccountsResourceStatus401Schema = postAccountsResourceStatus401Schema;
|
|
3205
|
+
exports.postAccountsResourceStatus409Schema = postAccountsResourceStatus409Schema;
|
|
3206
|
+
exports.postAddressReservationIssueResourceErrorSchema = postAddressReservationIssueResourceErrorSchema;
|
|
3207
|
+
exports.postAddressReservationIssueResourcePathAddressIdSchema = postAddressReservationIssueResourcePathAddressIdSchema;
|
|
3208
|
+
exports.postAddressReservationIssueResourcePathIdSchema = postAddressReservationIssueResourcePathIdSchema;
|
|
3209
|
+
exports.postAddressReservationIssueResourceResponseSchema = postAddressReservationIssueResourceResponseSchema;
|
|
3210
|
+
exports.postAddressReservationIssueResourceStatus204Schema = postAddressReservationIssueResourceStatus204Schema;
|
|
3211
|
+
exports.postAddressReservationIssueResourceStatus400Schema = postAddressReservationIssueResourceStatus400Schema;
|
|
3212
|
+
exports.postAddressReservationIssueResourceStatus401Schema = postAddressReservationIssueResourceStatus401Schema;
|
|
3213
|
+
exports.postAddressReservationRevokeResourceErrorSchema = postAddressReservationRevokeResourceErrorSchema;
|
|
3214
|
+
exports.postAddressReservationRevokeResourcePathAddressIdSchema = postAddressReservationRevokeResourcePathAddressIdSchema;
|
|
3215
|
+
exports.postAddressReservationRevokeResourcePathIdSchema = postAddressReservationRevokeResourcePathIdSchema;
|
|
3216
|
+
exports.postAddressReservationRevokeResourceResponseSchema = postAddressReservationRevokeResourceResponseSchema;
|
|
3217
|
+
exports.postAddressReservationRevokeResourceStatus204Schema = postAddressReservationRevokeResourceStatus204Schema;
|
|
3218
|
+
exports.postAddressReservationRevokeResourceStatus400Schema = postAddressReservationRevokeResourceStatus400Schema;
|
|
3219
|
+
exports.postAddressReservationRevokeResourceStatus401Schema = postAddressReservationRevokeResourceStatus401Schema;
|
|
3220
|
+
exports.postAddressResourceBodySchema = postAddressResourceBodySchema;
|
|
3221
|
+
exports.postAddressResourceErrorSchema = postAddressResourceErrorSchema;
|
|
3222
|
+
exports.postAddressResourcePathAddressIdSchema = postAddressResourcePathAddressIdSchema;
|
|
3223
|
+
exports.postAddressResourceResponseSchema = postAddressResourceResponseSchema;
|
|
3224
|
+
exports.postAddressResourceStatus204Schema = postAddressResourceStatus204Schema;
|
|
3225
|
+
exports.postAddressResourceStatus400Schema = postAddressResourceStatus400Schema;
|
|
3226
|
+
exports.postAddressResourceStatus401Schema = postAddressResourceStatus401Schema;
|
|
3227
|
+
exports.postAddressResourceStatus403Schema = postAddressResourceStatus403Schema;
|
|
3228
|
+
exports.postAddressTokenRedeemResourceErrorSchema = postAddressTokenRedeemResourceErrorSchema;
|
|
3229
|
+
exports.postAddressTokenRedeemResourcePathIdSchema = postAddressTokenRedeemResourcePathIdSchema;
|
|
3230
|
+
exports.postAddressTokenRedeemResourceQueryEmailSchema = postAddressTokenRedeemResourceQueryEmailSchema;
|
|
3231
|
+
exports.postAddressTokenRedeemResourceResponseSchema = postAddressTokenRedeemResourceResponseSchema;
|
|
3232
|
+
exports.postAddressTokenRedeemResourceStatus204Schema = postAddressTokenRedeemResourceStatus204Schema;
|
|
3233
|
+
exports.postAddressTokenRedeemResourceStatus400Schema = postAddressTokenRedeemResourceStatus400Schema;
|
|
3234
|
+
exports.postAddressTokenRedeemResourceStatus401Schema = postAddressTokenRedeemResourceStatus401Schema;
|
|
3235
|
+
exports.postAddressTokenRedeemResourceStatus404Schema = postAddressTokenRedeemResourceStatus404Schema;
|
|
3236
|
+
exports.postApiKeyAdvancedReactivateResourceErrorSchema = postApiKeyAdvancedReactivateResourceErrorSchema;
|
|
3237
|
+
exports.postApiKeyAdvancedReactivateResourcePathApiKeyIdSchema = postApiKeyAdvancedReactivateResourcePathApiKeyIdSchema;
|
|
3238
|
+
exports.postApiKeyAdvancedReactivateResourceResponseSchema = postApiKeyAdvancedReactivateResourceResponseSchema;
|
|
3239
|
+
exports.postApiKeyAdvancedReactivateResourceStatus204Schema = postApiKeyAdvancedReactivateResourceStatus204Schema;
|
|
3240
|
+
exports.postApiKeyAdvancedReactivateResourceStatus400Schema = postApiKeyAdvancedReactivateResourceStatus400Schema;
|
|
3241
|
+
exports.postApiKeyAdvancedReactivateResourceStatus401Schema = postApiKeyAdvancedReactivateResourceStatus401Schema;
|
|
3242
|
+
exports.postApiKeyAdvancedResourceBodySchema = postApiKeyAdvancedResourceBodySchema;
|
|
3243
|
+
exports.postApiKeyAdvancedResourceErrorSchema = postApiKeyAdvancedResourceErrorSchema;
|
|
3244
|
+
exports.postApiKeyAdvancedResourcePathApiKeyIdSchema = postApiKeyAdvancedResourcePathApiKeyIdSchema;
|
|
3245
|
+
exports.postApiKeyAdvancedResourceResponseSchema = postApiKeyAdvancedResourceResponseSchema;
|
|
3246
|
+
exports.postApiKeyAdvancedResourceStatus204Schema = postApiKeyAdvancedResourceStatus204Schema;
|
|
3247
|
+
exports.postApiKeyAdvancedResourceStatus400Schema = postApiKeyAdvancedResourceStatus400Schema;
|
|
3248
|
+
exports.postApiKeyAdvancedResourceStatus401Schema = postApiKeyAdvancedResourceStatus401Schema;
|
|
3249
|
+
exports.postApiKeyResourceBodySchema = postApiKeyResourceBodySchema;
|
|
3250
|
+
exports.postApiKeyResourceErrorSchema = postApiKeyResourceErrorSchema;
|
|
3251
|
+
exports.postApiKeyResourcePathApiKeyIdSchema = postApiKeyResourcePathApiKeyIdSchema;
|
|
3252
|
+
exports.postApiKeyResourceResponseSchema = postApiKeyResourceResponseSchema;
|
|
3253
|
+
exports.postApiKeyResourceStatus204Schema = postApiKeyResourceStatus204Schema;
|
|
3254
|
+
exports.postApiKeyResourceStatus400Schema = postApiKeyResourceStatus400Schema;
|
|
3255
|
+
exports.postApiKeyResourceStatus401Schema = postApiKeyResourceStatus401Schema;
|
|
3256
|
+
exports.postApiKeyResourceStatus503Schema = postApiKeyResourceStatus503Schema;
|
|
3257
|
+
exports.postApiKeyTokenResourceBodySchema = postApiKeyTokenResourceBodySchema;
|
|
3258
|
+
exports.postApiKeyTokenResourceErrorSchema = postApiKeyTokenResourceErrorSchema;
|
|
3259
|
+
exports.postApiKeyTokenResourcePathApiKeyIdSchema = postApiKeyTokenResourcePathApiKeyIdSchema;
|
|
3260
|
+
exports.postApiKeyTokenResourcePathIdSchema = postApiKeyTokenResourcePathIdSchema;
|
|
3261
|
+
exports.postApiKeyTokenResourceResponseSchema = postApiKeyTokenResourceResponseSchema;
|
|
3262
|
+
exports.postApiKeyTokenResourceStatus204Schema = postApiKeyTokenResourceStatus204Schema;
|
|
3263
|
+
exports.postApiKeyTokenResourceStatus400Schema = postApiKeyTokenResourceStatus400Schema;
|
|
3264
|
+
exports.postApiKeyTokenResourceStatus401Schema = postApiKeyTokenResourceStatus401Schema;
|
|
3265
|
+
exports.postNotificationResourceBodySchema = postNotificationResourceBodySchema;
|
|
3266
|
+
exports.postNotificationResourceErrorSchema = postNotificationResourceErrorSchema;
|
|
3267
|
+
exports.postNotificationResourcePathNotificationIdSchema = postNotificationResourcePathNotificationIdSchema;
|
|
3268
|
+
exports.postNotificationResourceResponseSchema = postNotificationResourceResponseSchema;
|
|
3269
|
+
exports.postNotificationResourceStatus200Schema = postNotificationResourceStatus200Schema;
|
|
3270
|
+
exports.postNotificationResourceStatus400Schema = postNotificationResourceStatus400Schema;
|
|
3271
|
+
exports.postNotificationResourceStatus401Schema = postNotificationResourceStatus401Schema;
|
|
3272
|
+
exports.postNotificationResourceStatus403Schema = postNotificationResourceStatus403Schema;
|
|
3273
|
+
exports.postReservationAccessTimesUpdateResourceBodySchema = postReservationAccessTimesUpdateResourceBodySchema;
|
|
3274
|
+
exports.postReservationAccessTimesUpdateResourceErrorSchema = postReservationAccessTimesUpdateResourceErrorSchema;
|
|
3275
|
+
exports.postReservationAccessTimesUpdateResourcePathAddressIdSchema = postReservationAccessTimesUpdateResourcePathAddressIdSchema;
|
|
3276
|
+
exports.postReservationAccessTimesUpdateResourcePathIdSchema = postReservationAccessTimesUpdateResourcePathIdSchema;
|
|
3277
|
+
exports.postReservationAccessTimesUpdateResourceResponseSchema = postReservationAccessTimesUpdateResourceResponseSchema;
|
|
3278
|
+
exports.postReservationAccessTimesUpdateResourceStatus204Schema = postReservationAccessTimesUpdateResourceStatus204Schema;
|
|
3279
|
+
exports.postReservationAccessTimesUpdateResourceStatus400Schema = postReservationAccessTimesUpdateResourceStatus400Schema;
|
|
3280
|
+
exports.postReservationAccessTimesUpdateResourceStatus401Schema = postReservationAccessTimesUpdateResourceStatus401Schema;
|
|
3281
|
+
exports.postServiceLinkResourceErrorSchema = postServiceLinkResourceErrorSchema;
|
|
3282
|
+
exports.postServiceLinkResourcePathServiceIdSchema = postServiceLinkResourcePathServiceIdSchema;
|
|
3283
|
+
exports.postServiceLinkResourceResponseSchema = postServiceLinkResourceResponseSchema;
|
|
3284
|
+
exports.postServiceLinkResourceStatus200Schema = postServiceLinkResourceStatus200Schema;
|
|
3285
|
+
exports.postServiceLinkResourceStatus400Schema = postServiceLinkResourceStatus400Schema;
|
|
3286
|
+
exports.postServiceLinkResourceStatus401Schema = postServiceLinkResourceStatus401Schema;
|
|
3287
|
+
exports.postServiceSyncResourceErrorSchema = postServiceSyncResourceErrorSchema;
|
|
3288
|
+
exports.postServiceSyncResourcePathServiceIdSchema = postServiceSyncResourcePathServiceIdSchema;
|
|
3289
|
+
exports.postServiceSyncResourceResponseSchema = postServiceSyncResourceResponseSchema;
|
|
3290
|
+
exports.postServiceSyncResourceStatus204Schema = postServiceSyncResourceStatus204Schema;
|
|
3291
|
+
exports.postServiceSyncResourceStatus400Schema = postServiceSyncResourceStatus400Schema;
|
|
3292
|
+
exports.postServiceSyncResourceStatus401Schema = postServiceSyncResourceStatus401Schema;
|
|
3293
|
+
exports.postServiceUnlinkResourceErrorSchema = postServiceUnlinkResourceErrorSchema;
|
|
3294
|
+
exports.postServiceUnlinkResourcePathServiceIdSchema = postServiceUnlinkResourcePathServiceIdSchema;
|
|
3295
|
+
exports.postServiceUnlinkResourceResponseSchema = postServiceUnlinkResourceResponseSchema;
|
|
3296
|
+
exports.postServiceUnlinkResourceStatus204Schema = postServiceUnlinkResourceStatus204Schema;
|
|
3297
|
+
exports.postServiceUnlinkResourceStatus400Schema = postServiceUnlinkResourceStatus400Schema;
|
|
3298
|
+
exports.postServiceUnlinkResourceStatus401Schema = postServiceUnlinkResourceStatus401Schema;
|
|
3299
|
+
exports.postSmartdoorAdvancedConfigResourceBodySchema = postSmartdoorAdvancedConfigResourceBodySchema;
|
|
3300
|
+
exports.postSmartdoorAdvancedConfigResourceErrorSchema = postSmartdoorAdvancedConfigResourceErrorSchema;
|
|
3301
|
+
exports.postSmartdoorAdvancedConfigResourcePathSmartlockIdSchema = postSmartdoorAdvancedConfigResourcePathSmartlockIdSchema;
|
|
3302
|
+
exports.postSmartdoorAdvancedConfigResourceResponseSchema = postSmartdoorAdvancedConfigResourceResponseSchema;
|
|
3303
|
+
exports.postSmartdoorAdvancedConfigResourceStatus204Schema = postSmartdoorAdvancedConfigResourceStatus204Schema;
|
|
3304
|
+
exports.postSmartdoorAdvancedConfigResourceStatus400Schema = postSmartdoorAdvancedConfigResourceStatus400Schema;
|
|
3305
|
+
exports.postSmartdoorAdvancedConfigResourceStatus401Schema = postSmartdoorAdvancedConfigResourceStatus401Schema;
|
|
3306
|
+
exports.postSmartlockActionAdvancedResourceBodySchema = postSmartlockActionAdvancedResourceBodySchema;
|
|
3307
|
+
exports.postSmartlockActionAdvancedResourceErrorSchema = postSmartlockActionAdvancedResourceErrorSchema;
|
|
3308
|
+
exports.postSmartlockActionAdvancedResourcePathSmartlockIdSchema = postSmartlockActionAdvancedResourcePathSmartlockIdSchema;
|
|
3309
|
+
exports.postSmartlockActionAdvancedResourceResponseSchema = postSmartlockActionAdvancedResourceResponseSchema;
|
|
3310
|
+
exports.postSmartlockActionAdvancedResourceStatus200Schema = postSmartlockActionAdvancedResourceStatus200Schema;
|
|
3311
|
+
exports.postSmartlockActionAdvancedResourceStatus400Schema = postSmartlockActionAdvancedResourceStatus400Schema;
|
|
3312
|
+
exports.postSmartlockActionAdvancedResourceStatus402Schema = postSmartlockActionAdvancedResourceStatus402Schema;
|
|
3313
|
+
exports.postSmartlockActionAdvancedResourceStatus409Schema = postSmartlockActionAdvancedResourceStatus409Schema;
|
|
3314
|
+
exports.postSmartlockActionAdvancedResourceStatus426Schema = postSmartlockActionAdvancedResourceStatus426Schema;
|
|
3315
|
+
exports.postSmartlockActionResourceBodySchema = postSmartlockActionResourceBodySchema;
|
|
3316
|
+
exports.postSmartlockActionResourceErrorSchema = postSmartlockActionResourceErrorSchema;
|
|
3317
|
+
exports.postSmartlockActionResourcePathSmartlockIdSchema = postSmartlockActionResourcePathSmartlockIdSchema;
|
|
3318
|
+
exports.postSmartlockActionResourceResponseSchema = postSmartlockActionResourceResponseSchema;
|
|
3319
|
+
exports.postSmartlockActionResourceStatus204Schema = postSmartlockActionResourceStatus204Schema;
|
|
3320
|
+
exports.postSmartlockActionResourceStatus400Schema = postSmartlockActionResourceStatus400Schema;
|
|
3321
|
+
exports.postSmartlockActionResourceStatus401Schema = postSmartlockActionResourceStatus401Schema;
|
|
3322
|
+
exports.postSmartlockActionResourceStatus402Schema = postSmartlockActionResourceStatus402Schema;
|
|
3323
|
+
exports.postSmartlockAdminPinResourceBodySchema = postSmartlockAdminPinResourceBodySchema;
|
|
3324
|
+
exports.postSmartlockAdminPinResourceErrorSchema = postSmartlockAdminPinResourceErrorSchema;
|
|
3325
|
+
exports.postSmartlockAdminPinResourcePathSmartlockIdSchema = postSmartlockAdminPinResourcePathSmartlockIdSchema;
|
|
3326
|
+
exports.postSmartlockAdminPinResourceResponseSchema = postSmartlockAdminPinResourceResponseSchema;
|
|
3327
|
+
exports.postSmartlockAdminPinResourceStatus204Schema = postSmartlockAdminPinResourceStatus204Schema;
|
|
3328
|
+
exports.postSmartlockAdminPinResourceStatus400Schema = postSmartlockAdminPinResourceStatus400Schema;
|
|
3329
|
+
exports.postSmartlockAdminPinResourceStatus401Schema = postSmartlockAdminPinResourceStatus401Schema;
|
|
3330
|
+
exports.postSmartlockAdvancedConfigResourceBodySchema = postSmartlockAdvancedConfigResourceBodySchema;
|
|
3331
|
+
exports.postSmartlockAdvancedConfigResourceErrorSchema = postSmartlockAdvancedConfigResourceErrorSchema;
|
|
3332
|
+
exports.postSmartlockAdvancedConfigResourcePathSmartlockIdSchema = postSmartlockAdvancedConfigResourcePathSmartlockIdSchema;
|
|
3333
|
+
exports.postSmartlockAdvancedConfigResourceResponseSchema = postSmartlockAdvancedConfigResourceResponseSchema;
|
|
3334
|
+
exports.postSmartlockAdvancedConfigResourceStatus204Schema = postSmartlockAdvancedConfigResourceStatus204Schema;
|
|
3335
|
+
exports.postSmartlockAdvancedConfigResourceStatus400Schema = postSmartlockAdvancedConfigResourceStatus400Schema;
|
|
3336
|
+
exports.postSmartlockAdvancedConfigResourceStatus401Schema = postSmartlockAdvancedConfigResourceStatus401Schema;
|
|
3337
|
+
exports.postSmartlockAuthResourceBodySchema = postSmartlockAuthResourceBodySchema;
|
|
3338
|
+
exports.postSmartlockAuthResourceErrorSchema = postSmartlockAuthResourceErrorSchema;
|
|
3339
|
+
exports.postSmartlockAuthResourcePathIdSchema = postSmartlockAuthResourcePathIdSchema;
|
|
3340
|
+
exports.postSmartlockAuthResourcePathSmartlockIdSchema = postSmartlockAuthResourcePathSmartlockIdSchema;
|
|
3341
|
+
exports.postSmartlockAuthResourceResponseSchema = postSmartlockAuthResourceResponseSchema;
|
|
3342
|
+
exports.postSmartlockAuthResourceStatus204Schema = postSmartlockAuthResourceStatus204Schema;
|
|
3343
|
+
exports.postSmartlockAuthResourceStatus400Schema = postSmartlockAuthResourceStatus400Schema;
|
|
3344
|
+
exports.postSmartlockAuthResourceStatus401Schema = postSmartlockAuthResourceStatus401Schema;
|
|
3345
|
+
exports.postSmartlockAuthResourceStatus403Schema = postSmartlockAuthResourceStatus403Schema;
|
|
3346
|
+
exports.postSmartlockAuthResourceStatus409Schema = postSmartlockAuthResourceStatus409Schema;
|
|
3347
|
+
exports.postSmartlockAuthResourceStatus423Schema = postSmartlockAuthResourceStatus423Schema;
|
|
3348
|
+
exports.postSmartlockAuthWithSharedKeyResourceBodySchema = postSmartlockAuthWithSharedKeyResourceBodySchema;
|
|
3349
|
+
exports.postSmartlockAuthWithSharedKeyResourceErrorSchema = postSmartlockAuthWithSharedKeyResourceErrorSchema;
|
|
3350
|
+
exports.postSmartlockAuthWithSharedKeyResourcePathSmartlockIdSchema = postSmartlockAuthWithSharedKeyResourcePathSmartlockIdSchema;
|
|
3351
|
+
exports.postSmartlockAuthWithSharedKeyResourceResponseSchema = postSmartlockAuthWithSharedKeyResourceResponseSchema;
|
|
3352
|
+
exports.postSmartlockAuthWithSharedKeyResourceStatus200Schema = postSmartlockAuthWithSharedKeyResourceStatus200Schema;
|
|
3353
|
+
exports.postSmartlockAuthWithSharedKeyResourceStatus401Schema = postSmartlockAuthWithSharedKeyResourceStatus401Schema;
|
|
3354
|
+
exports.postSmartlockAuthWithSharedKeyResourceStatus403Schema = postSmartlockAuthWithSharedKeyResourceStatus403Schema;
|
|
3355
|
+
exports.postSmartlockAuthWithSharedKeyResourceStatus404Schema = postSmartlockAuthWithSharedKeyResourceStatus404Schema;
|
|
3356
|
+
exports.postSmartlockBulkWebConfigResourceBodySchema = postSmartlockBulkWebConfigResourceBodySchema;
|
|
3357
|
+
exports.postSmartlockBulkWebConfigResourceErrorSchema = postSmartlockBulkWebConfigResourceErrorSchema;
|
|
3358
|
+
exports.postSmartlockBulkWebConfigResourceResponseSchema = postSmartlockBulkWebConfigResourceResponseSchema;
|
|
3359
|
+
exports.postSmartlockBulkWebConfigResourceStatus204Schema = postSmartlockBulkWebConfigResourceStatus204Schema;
|
|
3360
|
+
exports.postSmartlockBulkWebConfigResourceStatus400Schema = postSmartlockBulkWebConfigResourceStatus400Schema;
|
|
3361
|
+
exports.postSmartlockBulkWebConfigResourceStatus401Schema = postSmartlockBulkWebConfigResourceStatus401Schema;
|
|
3362
|
+
exports.postSmartlockConfigResourceBodySchema = postSmartlockConfigResourceBodySchema;
|
|
3363
|
+
exports.postSmartlockConfigResourceErrorSchema = postSmartlockConfigResourceErrorSchema;
|
|
3364
|
+
exports.postSmartlockConfigResourcePathSmartlockIdSchema = postSmartlockConfigResourcePathSmartlockIdSchema;
|
|
3365
|
+
exports.postSmartlockConfigResourceResponseSchema = postSmartlockConfigResourceResponseSchema;
|
|
3366
|
+
exports.postSmartlockConfigResourceStatus204Schema = postSmartlockConfigResourceStatus204Schema;
|
|
3367
|
+
exports.postSmartlockConfigResourceStatus400Schema = postSmartlockConfigResourceStatus400Schema;
|
|
3368
|
+
exports.postSmartlockConfigResourceStatus401Schema = postSmartlockConfigResourceStatus401Schema;
|
|
3369
|
+
exports.postSmartlockLockActionAdvancedResourceErrorSchema = postSmartlockLockActionAdvancedResourceErrorSchema;
|
|
3370
|
+
exports.postSmartlockLockActionAdvancedResourcePathSmartlockIdSchema = postSmartlockLockActionAdvancedResourcePathSmartlockIdSchema;
|
|
3371
|
+
exports.postSmartlockLockActionAdvancedResourceResponseSchema = postSmartlockLockActionAdvancedResourceResponseSchema;
|
|
3372
|
+
exports.postSmartlockLockActionAdvancedResourceStatus200Schema = postSmartlockLockActionAdvancedResourceStatus200Schema;
|
|
3373
|
+
exports.postSmartlockLockActionAdvancedResourceStatus400Schema = postSmartlockLockActionAdvancedResourceStatus400Schema;
|
|
3374
|
+
exports.postSmartlockLockActionAdvancedResourceStatus401Schema = postSmartlockLockActionAdvancedResourceStatus401Schema;
|
|
3375
|
+
exports.postSmartlockLockActionAdvancedResourceStatus405Schema = postSmartlockLockActionAdvancedResourceStatus405Schema;
|
|
3376
|
+
exports.postSmartlockLockActionResourceErrorSchema = postSmartlockLockActionResourceErrorSchema;
|
|
3377
|
+
exports.postSmartlockLockActionResourcePathSmartlockIdSchema = postSmartlockLockActionResourcePathSmartlockIdSchema;
|
|
3378
|
+
exports.postSmartlockLockActionResourceResponseSchema = postSmartlockLockActionResourceResponseSchema;
|
|
3379
|
+
exports.postSmartlockLockActionResourceStatus204Schema = postSmartlockLockActionResourceStatus204Schema;
|
|
3380
|
+
exports.postSmartlockLockActionResourceStatus400Schema = postSmartlockLockActionResourceStatus400Schema;
|
|
3381
|
+
exports.postSmartlockLockActionResourceStatus401Schema = postSmartlockLockActionResourceStatus401Schema;
|
|
3382
|
+
exports.postSmartlockLockActionResourceStatus405Schema = postSmartlockLockActionResourceStatus405Schema;
|
|
3383
|
+
exports.postSmartlockOpenerAdvancedConfigResourceBodySchema = postSmartlockOpenerAdvancedConfigResourceBodySchema;
|
|
3384
|
+
exports.postSmartlockOpenerAdvancedConfigResourceErrorSchema = postSmartlockOpenerAdvancedConfigResourceErrorSchema;
|
|
3385
|
+
exports.postSmartlockOpenerAdvancedConfigResourcePathSmartlockIdSchema = postSmartlockOpenerAdvancedConfigResourcePathSmartlockIdSchema;
|
|
3386
|
+
exports.postSmartlockOpenerAdvancedConfigResourceResponseSchema = postSmartlockOpenerAdvancedConfigResourceResponseSchema;
|
|
3387
|
+
exports.postSmartlockOpenerAdvancedConfigResourceStatus204Schema = postSmartlockOpenerAdvancedConfigResourceStatus204Schema;
|
|
3388
|
+
exports.postSmartlockOpenerAdvancedConfigResourceStatus400Schema = postSmartlockOpenerAdvancedConfigResourceStatus400Schema;
|
|
3389
|
+
exports.postSmartlockOpenerAdvancedConfigResourceStatus401Schema = postSmartlockOpenerAdvancedConfigResourceStatus401Schema;
|
|
3390
|
+
exports.postSmartlockResourceBodySchema = postSmartlockResourceBodySchema;
|
|
3391
|
+
exports.postSmartlockResourceErrorSchema = postSmartlockResourceErrorSchema;
|
|
3392
|
+
exports.postSmartlockResourcePathSmartlockIdSchema = postSmartlockResourcePathSmartlockIdSchema;
|
|
3393
|
+
exports.postSmartlockResourceResponseSchema = postSmartlockResourceResponseSchema;
|
|
3394
|
+
exports.postSmartlockResourceStatus204Schema = postSmartlockResourceStatus204Schema;
|
|
3395
|
+
exports.postSmartlockResourceStatus400Schema = postSmartlockResourceStatus400Schema;
|
|
3396
|
+
exports.postSmartlockResourceStatus401Schema = postSmartlockResourceStatus401Schema;
|
|
3397
|
+
exports.postSmartlockResourceStatus403Schema = postSmartlockResourceStatus403Schema;
|
|
3398
|
+
exports.postSmartlockSyncResourceErrorSchema = postSmartlockSyncResourceErrorSchema;
|
|
3399
|
+
exports.postSmartlockSyncResourcePathSmartlockIdSchema = postSmartlockSyncResourcePathSmartlockIdSchema;
|
|
3400
|
+
exports.postSmartlockSyncResourceResponseSchema = postSmartlockSyncResourceResponseSchema;
|
|
3401
|
+
exports.postSmartlockSyncResourceStatus204Schema = postSmartlockSyncResourceStatus204Schema;
|
|
3402
|
+
exports.postSmartlockSyncResourceStatus400Schema = postSmartlockSyncResourceStatus400Schema;
|
|
3403
|
+
exports.postSmartlockSyncResourceStatus401Schema = postSmartlockSyncResourceStatus401Schema;
|
|
3404
|
+
exports.postSmartlockUnlockActionAdvancedResourceErrorSchema = postSmartlockUnlockActionAdvancedResourceErrorSchema;
|
|
3405
|
+
exports.postSmartlockUnlockActionAdvancedResourcePathSmartlockIdSchema = postSmartlockUnlockActionAdvancedResourcePathSmartlockIdSchema;
|
|
3406
|
+
exports.postSmartlockUnlockActionAdvancedResourceResponseSchema = postSmartlockUnlockActionAdvancedResourceResponseSchema;
|
|
3407
|
+
exports.postSmartlockUnlockActionAdvancedResourceStatus200Schema = postSmartlockUnlockActionAdvancedResourceStatus200Schema;
|
|
3408
|
+
exports.postSmartlockUnlockActionAdvancedResourceStatus400Schema = postSmartlockUnlockActionAdvancedResourceStatus400Schema;
|
|
3409
|
+
exports.postSmartlockUnlockActionAdvancedResourceStatus401Schema = postSmartlockUnlockActionAdvancedResourceStatus401Schema;
|
|
3410
|
+
exports.postSmartlockUnlockActionAdvancedResourceStatus405Schema = postSmartlockUnlockActionAdvancedResourceStatus405Schema;
|
|
3411
|
+
exports.postSmartlockUnlockActionResourceErrorSchema = postSmartlockUnlockActionResourceErrorSchema;
|
|
3412
|
+
exports.postSmartlockUnlockActionResourcePathSmartlockIdSchema = postSmartlockUnlockActionResourcePathSmartlockIdSchema;
|
|
3413
|
+
exports.postSmartlockUnlockActionResourceResponseSchema = postSmartlockUnlockActionResourceResponseSchema;
|
|
3414
|
+
exports.postSmartlockUnlockActionResourceStatus204Schema = postSmartlockUnlockActionResourceStatus204Schema;
|
|
3415
|
+
exports.postSmartlockUnlockActionResourceStatus400Schema = postSmartlockUnlockActionResourceStatus400Schema;
|
|
3416
|
+
exports.postSmartlockUnlockActionResourceStatus401Schema = postSmartlockUnlockActionResourceStatus401Schema;
|
|
3417
|
+
exports.postSmartlockUnlockActionResourceStatus405Schema = postSmartlockUnlockActionResourceStatus405Schema;
|
|
3418
|
+
exports.postSmartlockWebConfigResourceBodySchema = postSmartlockWebConfigResourceBodySchema;
|
|
3419
|
+
exports.postSmartlockWebConfigResourceErrorSchema = postSmartlockWebConfigResourceErrorSchema;
|
|
3420
|
+
exports.postSmartlockWebConfigResourcePathSmartlockIdSchema = postSmartlockWebConfigResourcePathSmartlockIdSchema;
|
|
3421
|
+
exports.postSmartlockWebConfigResourceResponseSchema = postSmartlockWebConfigResourceResponseSchema;
|
|
3422
|
+
exports.postSmartlockWebConfigResourceStatus204Schema = postSmartlockWebConfigResourceStatus204Schema;
|
|
3423
|
+
exports.postSmartlockWebConfigResourceStatus400Schema = postSmartlockWebConfigResourceStatus400Schema;
|
|
3424
|
+
exports.postSmartlockWebConfigResourceStatus401Schema = postSmartlockWebConfigResourceStatus401Schema;
|
|
3425
|
+
exports.postSmartlocksAuthsResourceBodySchema = postSmartlocksAuthsResourceBodySchema;
|
|
3426
|
+
exports.postSmartlocksAuthsResourceErrorSchema = postSmartlocksAuthsResourceErrorSchema;
|
|
3427
|
+
exports.postSmartlocksAuthsResourceResponseSchema = postSmartlocksAuthsResourceResponseSchema;
|
|
3428
|
+
exports.postSmartlocksAuthsResourceStatus204Schema = postSmartlocksAuthsResourceStatus204Schema;
|
|
3429
|
+
exports.postSmartlocksAuthsResourceStatus400Schema = postSmartlocksAuthsResourceStatus400Schema;
|
|
3430
|
+
exports.postSmartlocksAuthsResourceStatus401Schema = postSmartlocksAuthsResourceStatus401Schema;
|
|
3431
|
+
exports.postSmartlocksAuthsResourceStatus403Schema = postSmartlocksAuthsResourceStatus403Schema;
|
|
3432
|
+
exports.postSmartlocksAuthsResourceStatus409Schema = postSmartlocksAuthsResourceStatus409Schema;
|
|
3433
|
+
exports.postSmartlocksAuthsResourceStatus423Schema = postSmartlocksAuthsResourceStatus423Schema;
|
|
3434
|
+
exports.preferenceCharacterSetSchema = preferenceCharacterSetSchema;
|
|
3435
|
+
exports.preferenceEncodingSchema = preferenceEncodingSchema;
|
|
3436
|
+
exports.preferenceLanguageSchema = preferenceLanguageSchema;
|
|
3437
|
+
exports.preferenceMediaTypeSchema = preferenceMediaTypeSchema;
|
|
3438
|
+
exports.preferenceSchema = preferenceSchema;
|
|
3439
|
+
exports.principalSchema = principalSchema;
|
|
3440
|
+
exports.productSchema = productSchema;
|
|
3441
|
+
exports.protocolSchema = protocolSchema;
|
|
3442
|
+
exports.publicKeySchema = publicKeySchema;
|
|
3443
|
+
exports.putAccountOtpResourceErrorSchema = putAccountOtpResourceErrorSchema;
|
|
3444
|
+
exports.putAccountOtpResourceResponseSchema = putAccountOtpResourceResponseSchema;
|
|
3445
|
+
exports.putAccountOtpResourceStatus200Schema = putAccountOtpResourceStatus200Schema;
|
|
3446
|
+
exports.putAccountOtpResourceStatus405Schema = putAccountOtpResourceStatus405Schema;
|
|
3447
|
+
exports.putAccountSettingResourceBodySchema = putAccountSettingResourceBodySchema;
|
|
3448
|
+
exports.putAccountSettingResourceErrorSchema = putAccountSettingResourceErrorSchema;
|
|
3449
|
+
exports.putAccountSettingResourceResponseSchema = putAccountSettingResourceResponseSchema;
|
|
3450
|
+
exports.putAccountSettingResourceStatus200Schema = putAccountSettingResourceStatus200Schema;
|
|
3451
|
+
exports.putAccountSettingResourceStatus400Schema = putAccountSettingResourceStatus400Schema;
|
|
3452
|
+
exports.putAccountSettingResourceStatus401Schema = putAccountSettingResourceStatus401Schema;
|
|
3453
|
+
exports.putAccountSubsResourceBodySchema = putAccountSubsResourceBodySchema;
|
|
3454
|
+
exports.putAccountSubsResourceErrorSchema = putAccountSubsResourceErrorSchema;
|
|
3455
|
+
exports.putAccountSubsResourceResponseSchema = putAccountSubsResourceResponseSchema;
|
|
3456
|
+
exports.putAccountSubsResourceStatus200Schema = putAccountSubsResourceStatus200Schema;
|
|
3457
|
+
exports.putAccountSubsResourceStatus400Schema = putAccountSubsResourceStatus400Schema;
|
|
3458
|
+
exports.putAccountUsersResourceBodySchema = putAccountUsersResourceBodySchema;
|
|
3459
|
+
exports.putAccountUsersResourceErrorSchema = putAccountUsersResourceErrorSchema;
|
|
3460
|
+
exports.putAccountUsersResourceResponseSchema = putAccountUsersResourceResponseSchema;
|
|
3461
|
+
exports.putAccountUsersResourceStatus200Schema = putAccountUsersResourceStatus200Schema;
|
|
3462
|
+
exports.putAccountUsersResourceStatus400Schema = putAccountUsersResourceStatus400Schema;
|
|
3463
|
+
exports.putAddressUnitsResourceBodySchema = putAddressUnitsResourceBodySchema;
|
|
3464
|
+
exports.putAddressUnitsResourceErrorSchema = putAddressUnitsResourceErrorSchema;
|
|
3465
|
+
exports.putAddressUnitsResourcePathAddressIdSchema = putAddressUnitsResourcePathAddressIdSchema;
|
|
3466
|
+
exports.putAddressUnitsResourceResponseSchema = putAddressUnitsResourceResponseSchema;
|
|
3467
|
+
exports.putAddressUnitsResourceStatus200Schema = putAddressUnitsResourceStatus200Schema;
|
|
3468
|
+
exports.putAddressUnitsResourceStatus400Schema = putAddressUnitsResourceStatus400Schema;
|
|
3469
|
+
exports.putAddressUnitsResourceStatus401Schema = putAddressUnitsResourceStatus401Schema;
|
|
3470
|
+
exports.putAddressUnitsResourceStatus403Schema = putAddressUnitsResourceStatus403Schema;
|
|
3471
|
+
exports.putAddressesResourceBodySchema = putAddressesResourceBodySchema;
|
|
3472
|
+
exports.putAddressesResourceErrorSchema = putAddressesResourceErrorSchema;
|
|
3473
|
+
exports.putAddressesResourceResponseSchema = putAddressesResourceResponseSchema;
|
|
3474
|
+
exports.putAddressesResourceStatus200Schema = putAddressesResourceStatus200Schema;
|
|
3475
|
+
exports.putAddressesResourceStatus400Schema = putAddressesResourceStatus400Schema;
|
|
3476
|
+
exports.putAddressesResourceStatus401Schema = putAddressesResourceStatus401Schema;
|
|
3477
|
+
exports.putApiKeyAdvancedResourceBodySchema = putApiKeyAdvancedResourceBodySchema;
|
|
3478
|
+
exports.putApiKeyAdvancedResourceErrorSchema = putApiKeyAdvancedResourceErrorSchema;
|
|
3479
|
+
exports.putApiKeyAdvancedResourcePathApiKeyIdSchema = putApiKeyAdvancedResourcePathApiKeyIdSchema;
|
|
3480
|
+
exports.putApiKeyAdvancedResourceResponseSchema = putApiKeyAdvancedResourceResponseSchema;
|
|
3481
|
+
exports.putApiKeyAdvancedResourceStatus204Schema = putApiKeyAdvancedResourceStatus204Schema;
|
|
3482
|
+
exports.putApiKeyAdvancedResourceStatus400Schema = putApiKeyAdvancedResourceStatus400Schema;
|
|
3483
|
+
exports.putApiKeyAdvancedResourceStatus401Schema = putApiKeyAdvancedResourceStatus401Schema;
|
|
3484
|
+
exports.putApiKeyTokensResourceBodySchema = putApiKeyTokensResourceBodySchema;
|
|
3485
|
+
exports.putApiKeyTokensResourceErrorSchema = putApiKeyTokensResourceErrorSchema;
|
|
3486
|
+
exports.putApiKeyTokensResourcePathApiKeyIdSchema = putApiKeyTokensResourcePathApiKeyIdSchema;
|
|
3487
|
+
exports.putApiKeyTokensResourceResponseSchema = putApiKeyTokensResourceResponseSchema;
|
|
3488
|
+
exports.putApiKeyTokensResourceStatus200Schema = putApiKeyTokensResourceStatus200Schema;
|
|
3489
|
+
exports.putApiKeyTokensResourceStatus400Schema = putApiKeyTokensResourceStatus400Schema;
|
|
3490
|
+
exports.putApiKeyTokensResourceStatus401Schema = putApiKeyTokensResourceStatus401Schema;
|
|
3491
|
+
exports.putApiKeysResourceBodySchema = putApiKeysResourceBodySchema;
|
|
3492
|
+
exports.putApiKeysResourceErrorSchema = putApiKeysResourceErrorSchema;
|
|
3493
|
+
exports.putApiKeysResourceResponseSchema = putApiKeysResourceResponseSchema;
|
|
3494
|
+
exports.putApiKeysResourceStatus200Schema = putApiKeysResourceStatus200Schema;
|
|
3495
|
+
exports.putApiKeysResourceStatus400Schema = putApiKeysResourceStatus400Schema;
|
|
3496
|
+
exports.putApiKeysResourceStatus401Schema = putApiKeysResourceStatus401Schema;
|
|
3497
|
+
exports.putDecentralWebhooksResourceBodySchema = putDecentralWebhooksResourceBodySchema;
|
|
3498
|
+
exports.putDecentralWebhooksResourceErrorSchema = putDecentralWebhooksResourceErrorSchema;
|
|
3499
|
+
exports.putDecentralWebhooksResourceResponseSchema = putDecentralWebhooksResourceResponseSchema;
|
|
3500
|
+
exports.putDecentralWebhooksResourceStatus200Schema = putDecentralWebhooksResourceStatus200Schema;
|
|
3501
|
+
exports.putDecentralWebhooksResourceStatus400Schema = putDecentralWebhooksResourceStatus400Schema;
|
|
3502
|
+
exports.putDecentralWebhooksResourceStatus401Schema = putDecentralWebhooksResourceStatus401Schema;
|
|
3503
|
+
exports.putDecentralWebhooksResourceStatus403Schema = putDecentralWebhooksResourceStatus403Schema;
|
|
3504
|
+
exports.putNotificationsResourceBodySchema = putNotificationsResourceBodySchema;
|
|
3505
|
+
exports.putNotificationsResourceErrorSchema = putNotificationsResourceErrorSchema;
|
|
3506
|
+
exports.putNotificationsResourceResponseSchema = putNotificationsResourceResponseSchema;
|
|
3507
|
+
exports.putNotificationsResourceStatus200Schema = putNotificationsResourceStatus200Schema;
|
|
3508
|
+
exports.putNotificationsResourceStatus400Schema = putNotificationsResourceStatus400Schema;
|
|
3509
|
+
exports.putNotificationsResourceStatus401Schema = putNotificationsResourceStatus401Schema;
|
|
3510
|
+
exports.putNotificationsResourceStatus403Schema = putNotificationsResourceStatus403Schema;
|
|
3511
|
+
exports.putSmartlockAuthsAdvancedResourceBodySchema = putSmartlockAuthsAdvancedResourceBodySchema;
|
|
3512
|
+
exports.putSmartlockAuthsAdvancedResourceErrorSchema = putSmartlockAuthsAdvancedResourceErrorSchema;
|
|
3513
|
+
exports.putSmartlockAuthsAdvancedResourceResponseSchema = putSmartlockAuthsAdvancedResourceResponseSchema;
|
|
3514
|
+
exports.putSmartlockAuthsAdvancedResourceStatus200Schema = putSmartlockAuthsAdvancedResourceStatus200Schema;
|
|
3515
|
+
exports.putSmartlockAuthsAdvancedResourceStatus400Schema = putSmartlockAuthsAdvancedResourceStatus400Schema;
|
|
3516
|
+
exports.putSmartlockAuthsAdvancedResourceStatus402Schema = putSmartlockAuthsAdvancedResourceStatus402Schema;
|
|
3517
|
+
exports.putSmartlockAuthsAdvancedResourceStatus409Schema = putSmartlockAuthsAdvancedResourceStatus409Schema;
|
|
3518
|
+
exports.putSmartlockAuthsAdvancedResourceStatus426Schema = putSmartlockAuthsAdvancedResourceStatus426Schema;
|
|
3519
|
+
exports.putSmartlockAuthsResourceBodySchema = putSmartlockAuthsResourceBodySchema;
|
|
3520
|
+
exports.putSmartlockAuthsResourceErrorSchema = putSmartlockAuthsResourceErrorSchema;
|
|
3521
|
+
exports.putSmartlockAuthsResourcePathSmartlockIdSchema = putSmartlockAuthsResourcePathSmartlockIdSchema;
|
|
3522
|
+
exports.putSmartlockAuthsResourceResponseSchema = putSmartlockAuthsResourceResponseSchema;
|
|
3523
|
+
exports.putSmartlockAuthsResourceStatus204Schema = putSmartlockAuthsResourceStatus204Schema;
|
|
3524
|
+
exports.putSmartlockAuthsResourceStatus400Schema = putSmartlockAuthsResourceStatus400Schema;
|
|
3525
|
+
exports.putSmartlockAuthsResourceStatus402Schema = putSmartlockAuthsResourceStatus402Schema;
|
|
3526
|
+
exports.putSmartlockAuthsResourceStatus409Schema = putSmartlockAuthsResourceStatus409Schema;
|
|
3527
|
+
exports.putSmartlockAuthsResourceStatus426Schema = putSmartlockAuthsResourceStatus426Schema;
|
|
3528
|
+
exports.putSmartlocksAuthsResourceBodySchema = putSmartlocksAuthsResourceBodySchema;
|
|
3529
|
+
exports.putSmartlocksAuthsResourceErrorSchema = putSmartlocksAuthsResourceErrorSchema;
|
|
3530
|
+
exports.putSmartlocksAuthsResourceResponseSchema = putSmartlocksAuthsResourceResponseSchema;
|
|
3531
|
+
exports.putSmartlocksAuthsResourceStatus204Schema = putSmartlocksAuthsResourceStatus204Schema;
|
|
3532
|
+
exports.putSmartlocksAuthsResourceStatus400Schema = putSmartlocksAuthsResourceStatus400Schema;
|
|
3533
|
+
exports.putSmartlocksAuthsResourceStatus402Schema = putSmartlocksAuthsResourceStatus402Schema;
|
|
3534
|
+
exports.putSmartlocksAuthsResourceStatus409Schema = putSmartlocksAuthsResourceStatus409Schema;
|
|
3535
|
+
exports.putSmartlocksAuthsResourceStatus426Schema = putSmartlocksAuthsResourceStatus426Schema;
|
|
3536
|
+
exports.rangeSchema = rangeSchema;
|
|
3537
|
+
exports.rangeServiceSchema = rangeServiceSchema;
|
|
3538
|
+
exports.readableByteChannelSchema = readableByteChannelSchema;
|
|
3539
|
+
exports.readerSchema = readerSchema;
|
|
3540
|
+
exports.recipientInfoSchema = recipientInfoSchema;
|
|
3541
|
+
exports.referenceSchema = referenceSchema;
|
|
3542
|
+
exports.representationSchema = representationSchema;
|
|
3543
|
+
exports.requestSchema = requestSchema;
|
|
3544
|
+
exports.reservationAccessTimesUpdateSchema = reservationAccessTimesUpdateSchema;
|
|
3545
|
+
exports.resourceBundleSchema = resourceBundleSchema;
|
|
3546
|
+
exports.responseSchema = responseSchema;
|
|
3547
|
+
exports.restletSchema = restletSchema;
|
|
3548
|
+
exports.roleSchema = roleSchema;
|
|
3549
|
+
exports.scheduledExecutorServiceSchema = scheduledExecutorServiceSchema;
|
|
3550
|
+
exports.selectableChannelSchema = selectableChannelSchema;
|
|
3551
|
+
exports.selectionListenerSchema = selectionListenerSchema;
|
|
3552
|
+
exports.selectionRegistrationSchema = selectionRegistrationSchema;
|
|
3553
|
+
exports.serverInfoSchema = serverInfoSchema;
|
|
3554
|
+
exports.serviceSchema = serviceSchema;
|
|
3555
|
+
exports.shsSubscriptionSchema = shsSubscriptionSchema;
|
|
3556
|
+
exports.smartlockActionSchema = smartlockActionSchema;
|
|
3557
|
+
exports.smartlockAdminPinUpdateSchema = smartlockAdminPinUpdateSchema;
|
|
3558
|
+
exports.smartlockAdvancedConfigSchema = smartlockAdvancedConfigSchema;
|
|
3559
|
+
exports.smartlockAuthCreateSchema = smartlockAuthCreateSchema;
|
|
3560
|
+
exports.smartlockAuthMultiUpdateSchema = smartlockAuthMultiUpdateSchema;
|
|
3561
|
+
exports.smartlockAuthSchema = smartlockAuthSchema;
|
|
3562
|
+
exports.smartlockAuthUpdateSchema = smartlockAuthUpdateSchema;
|
|
3563
|
+
exports.smartlockAuthWithSharedKeyCreateSchema = smartlockAuthWithSharedKeyCreateSchema;
|
|
3564
|
+
exports.smartlockConfigSchema = smartlockConfigSchema;
|
|
3565
|
+
exports.smartlockLogOpenerLogSchema = smartlockLogOpenerLogSchema;
|
|
3566
|
+
exports.smartlockLogSchema = smartlockLogSchema;
|
|
3567
|
+
exports.smartlockOpenerAdvancedConfigSchema = smartlockOpenerAdvancedConfigSchema;
|
|
3568
|
+
exports.smartlockSchema = smartlockSchema;
|
|
3569
|
+
exports.smartlockSmartdoorAdvancedConfigSchema = smartlockSmartdoorAdvancedConfigSchema;
|
|
3570
|
+
exports.smartlockStateSchema = smartlockStateSchema;
|
|
3571
|
+
exports.smartlockUpdateSchema = smartlockUpdateSchema;
|
|
3572
|
+
exports.smartlockWebConfigSchema = smartlockWebConfigSchema;
|
|
3573
|
+
exports.smartlocksAuthAdvancedCreateSchema = smartlocksAuthAdvancedCreateSchema;
|
|
3574
|
+
exports.smartlocksAuthCreateSchema = smartlocksAuthCreateSchema;
|
|
3575
|
+
exports.stackTraceElementSchema = stackTraceElementSchema;
|
|
3576
|
+
exports.staleDeviceSchema = staleDeviceSchema;
|
|
3577
|
+
exports.statusSchema = statusSchema;
|
|
3578
|
+
exports.statusServiceSchema = statusServiceSchema;
|
|
3579
|
+
exports.tagSchema = tagSchema;
|
|
3580
|
+
exports.taskServiceSchema = taskServiceSchema;
|
|
3581
|
+
exports.termsOfUseSchema = termsOfUseSchema;
|
|
3582
|
+
exports.throwableSchema = throwableSchema;
|
|
3583
|
+
exports.tunnelServiceSchema = tunnelServiceSchema;
|
|
3584
|
+
exports.uniformSchema = uniformSchema;
|
|
3585
|
+
exports.userSchema = userSchema;
|
|
3586
|
+
exports.variantSchema = variantSchema;
|
|
3587
|
+
exports.verifierSchema = verifierSchema;
|
|
3588
|
+
exports.wakeupListenerSchema = wakeupListenerSchema;
|
|
3589
|
+
exports.warningSchema = warningSchema;
|
|
3590
|
+
exports.webConfigRequestSchema = webConfigRequestSchema;
|
|
3591
|
+
exports.webhookLogSchema = webhookLogSchema;
|
|
3592
|
+
exports.webhookMessageSchema = webhookMessageSchema;
|