@tripsam/onboarding 1.0.21 → 1.0.22

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/dist/index.cjs CHANGED
@@ -162,7 +162,7 @@ var create = import_zod4.z.object({
162
162
  minHour: import_zod4.z.coerce.number("invalid")
163
163
  });
164
164
  var me3 = import_zod4.z.object({
165
- id: import_zod4.z.string().trim().optional(),
165
+ id: import_zod4.z.string().trim(),
166
166
  name: import_zod4.z.string().trim().nonempty("required"),
167
167
  description: import_zod4.z.string().trim().optional(),
168
168
  startTime: import_zod4.z.coerce.number(),
package/dist/index.d.cts CHANGED
@@ -177,7 +177,7 @@ declare const create: z.ZodObject<{
177
177
  minHour: z.ZodCoercedNumber<unknown>;
178
178
  }, z.core.$strip>;
179
179
  declare const me: z.ZodObject<{
180
- id: z.ZodOptional<z.ZodString>;
180
+ id: z.ZodString;
181
181
  name: z.ZodString;
182
182
  description: z.ZodOptional<z.ZodString>;
183
183
  startTime: z.ZodCoercedNumber<unknown>;
@@ -185,7 +185,7 @@ declare const me: z.ZodObject<{
185
185
  minHour: z.ZodCoercedNumber<unknown>;
186
186
  }, z.core.$strip>;
187
187
  declare const meList: z.ZodArray<z.ZodObject<{
188
- id: z.ZodOptional<z.ZodString>;
188
+ id: z.ZodString;
189
189
  name: z.ZodString;
190
190
  description: z.ZodOptional<z.ZodString>;
191
191
  startTime: z.ZodCoercedNumber<unknown>;
package/dist/index.d.ts CHANGED
@@ -177,7 +177,7 @@ declare const create: z.ZodObject<{
177
177
  minHour: z.ZodCoercedNumber<unknown>;
178
178
  }, z.core.$strip>;
179
179
  declare const me: z.ZodObject<{
180
- id: z.ZodOptional<z.ZodString>;
180
+ id: z.ZodString;
181
181
  name: z.ZodString;
182
182
  description: z.ZodOptional<z.ZodString>;
183
183
  startTime: z.ZodCoercedNumber<unknown>;
@@ -185,7 +185,7 @@ declare const me: z.ZodObject<{
185
185
  minHour: z.ZodCoercedNumber<unknown>;
186
186
  }, z.core.$strip>;
187
187
  declare const meList: z.ZodArray<z.ZodObject<{
188
- id: z.ZodOptional<z.ZodString>;
188
+ id: z.ZodString;
189
189
  name: z.ZodString;
190
190
  description: z.ZodOptional<z.ZodString>;
191
191
  startTime: z.ZodCoercedNumber<unknown>;
package/dist/index.js CHANGED
@@ -139,7 +139,7 @@ var create = z4.object({
139
139
  minHour: z4.coerce.number("invalid")
140
140
  });
141
141
  var me3 = z4.object({
142
- id: z4.string().trim().optional(),
142
+ id: z4.string().trim(),
143
143
  name: z4.string().trim().nonempty("required"),
144
144
  description: z4.string().trim().optional(),
145
145
  startTime: z4.coerce.number(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripsam/onboarding",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",