hububb-saas-shared 1.2.44 → 1.2.45

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.
@@ -39,6 +39,7 @@ export declare const klevioLockSchema: z.ZodObject<{
39
39
  klevioAccountId: z.ZodNumber;
40
40
  klevioPropertyId: z.ZodString;
41
41
  name: z.ZodString;
42
+ instruction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
42
43
  action: z.ZodEnum<["UNLOCK_LOCK", "OPEN"]>;
43
44
  isConnected: z.ZodBoolean;
44
45
  availableActions: z.ZodArray<z.ZodString, "many">;
@@ -57,6 +58,7 @@ export declare const klevioLockSchema: z.ZodObject<{
57
58
  klevioPropertyId: string;
58
59
  availableActions: string[];
59
60
  hasKeypad: boolean;
61
+ instruction?: string | null | undefined;
60
62
  masterKeyId?: string | null | undefined;
61
63
  }, {
62
64
  name: string;
@@ -69,6 +71,7 @@ export declare const klevioLockSchema: z.ZodObject<{
69
71
  klevioPropertyId: string;
70
72
  availableActions: string[];
71
73
  hasKeypad: boolean;
74
+ instruction?: string | null | undefined;
72
75
  masterKeyId?: string | null | undefined;
73
76
  }>;
74
77
  export declare const propertyKlevioLockSchema: z.ZodObject<{
@@ -135,6 +138,7 @@ export declare const klevioKeySchema: z.ZodObject<{
135
138
  }>;
136
139
  export declare const klevioLockPreviewSchema: z.ZodObject<{
137
140
  name: z.ZodString;
141
+ instruction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
138
142
  isConnected: z.ZodBoolean;
139
143
  availableActions: z.ZodArray<z.ZodString, "many">;
140
144
  hasKeypad: z.ZodBoolean;
@@ -146,6 +150,7 @@ export declare const klevioLockPreviewSchema: z.ZodObject<{
146
150
  availableActions: string[];
147
151
  hasKeypad: boolean;
148
152
  suggestedAction: "UNLOCK_LOCK" | "OPEN";
153
+ instruction?: string | null | undefined;
149
154
  masterKeyId?: string | null | undefined;
150
155
  }, {
151
156
  name: string;
@@ -153,6 +158,7 @@ export declare const klevioLockPreviewSchema: z.ZodObject<{
153
158
  availableActions: string[];
154
159
  hasKeypad: boolean;
155
160
  suggestedAction: "UNLOCK_LOCK" | "OPEN";
161
+ instruction?: string | null | undefined;
156
162
  masterKeyId?: string | null | undefined;
157
163
  }>;
158
164
  export declare const lockControlResponseSchema: z.ZodObject<{
@@ -20,6 +20,7 @@ exports.klevioLockSchema = zod_1.z.object({
20
20
  klevioAccountId: zod_1.z.number().int(),
21
21
  klevioPropertyId: zod_1.z.string(),
22
22
  name: zod_1.z.string(),
23
+ instruction: zod_1.z.string().nullish(),
23
24
  action: exports.klevioLockActionSchema,
24
25
  isConnected: zod_1.z.boolean(),
25
26
  availableActions: zod_1.z.array(zod_1.z.string()),
@@ -52,6 +53,7 @@ exports.klevioKeySchema = zod_1.z.object({
52
53
  });
53
54
  exports.klevioLockPreviewSchema = zod_1.z.object({
54
55
  name: zod_1.z.string(),
56
+ instruction: zod_1.z.string().nullish(),
55
57
  isConnected: zod_1.z.boolean(),
56
58
  availableActions: zod_1.z.array(zod_1.z.string()),
57
59
  hasKeypad: zod_1.z.boolean(),
@@ -71,6 +71,7 @@ export interface SaveLocksParams {
71
71
  isConnected?: boolean;
72
72
  availableActions?: string[];
73
73
  hasKeypad?: boolean;
74
+ instruction?: string | null;
74
75
  }>;
75
76
  }
76
77
  export interface SaveLocksResponse {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "hububb-saas-shared",
4
- "version": "1.2.44",
4
+ "version": "1.2.45",
5
5
  "description": "This is a shared package for the hububb saas project",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",