@kl1/contracts 1.0.9 → 1.0.10

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.
@@ -77,6 +77,40 @@ export declare const UserSchema: z.ZodObject<{
77
77
  displayName: string;
78
78
  }[];
79
79
  }>, "many">;
80
+ extension: z.ZodObject<{
81
+ id: z.ZodString;
82
+ createdAt: z.ZodDate;
83
+ updatedAt: z.ZodDate;
84
+ deletedAt: z.ZodNullable<z.ZodDate>;
85
+ userId: z.ZodNullable<z.ZodString>;
86
+ sipServerUrl: z.ZodString;
87
+ sipUserName: z.ZodString;
88
+ extensionId: z.ZodNullable<z.ZodNumber>;
89
+ extensionName: z.ZodNullable<z.ZodString>;
90
+ telephonySignature: z.ZodNullable<z.ZodString>;
91
+ }, "strip", z.ZodTypeAny, {
92
+ id: string;
93
+ createdAt: Date;
94
+ updatedAt: Date;
95
+ deletedAt: Date | null;
96
+ userId: string | null;
97
+ sipServerUrl: string;
98
+ sipUserName: string;
99
+ extensionId: number | null;
100
+ extensionName: string | null;
101
+ telephonySignature: string | null;
102
+ }, {
103
+ id: string;
104
+ createdAt: Date;
105
+ updatedAt: Date;
106
+ deletedAt: Date | null;
107
+ userId: string | null;
108
+ sipServerUrl: string;
109
+ sipUserName: string;
110
+ extensionId: number | null;
111
+ extensionName: string | null;
112
+ telephonySignature: string | null;
113
+ }>;
80
114
  }, "strip", z.ZodTypeAny, {
81
115
  id: string;
82
116
  address: string | null;
@@ -105,6 +139,18 @@ export declare const UserSchema: z.ZodObject<{
105
139
  displayName: string;
106
140
  }[];
107
141
  }[];
142
+ extension: {
143
+ id: string;
144
+ createdAt: Date;
145
+ updatedAt: Date;
146
+ deletedAt: Date | null;
147
+ userId: string | null;
148
+ sipServerUrl: string;
149
+ sipUserName: string;
150
+ extensionId: number | null;
151
+ extensionName: string | null;
152
+ telephonySignature: string | null;
153
+ };
108
154
  }, {
109
155
  id: string;
110
156
  address: string | null;
@@ -133,5 +179,17 @@ export declare const UserSchema: z.ZodObject<{
133
179
  displayName: string;
134
180
  }[];
135
181
  }[];
182
+ extension: {
183
+ id: string;
184
+ createdAt: Date;
185
+ updatedAt: Date;
186
+ deletedAt: Date | null;
187
+ userId: string | null;
188
+ sipServerUrl: string;
189
+ sipUserName: string;
190
+ extensionId: number | null;
191
+ extensionName: string | null;
192
+ telephonySignature: string | null;
193
+ };
136
194
  }>;
137
195
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/user/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOrB,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/user/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQrB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl1/contracts",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/src/index.d.ts",