@tripsam/onboarding 1.0.10 → 1.0.11

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
@@ -70,7 +70,7 @@ var update = import_zod2.z.object({
70
70
  // src/location.ts
71
71
  var location_exports = {};
72
72
  __export(location_exports, {
73
- get: () => get,
73
+ me: () => me2,
74
74
  minimum: () => minimum,
75
75
  minimumList: () => minimumList,
76
76
  save: () => save,
@@ -112,7 +112,7 @@ var save = import_zod3.z.object({
112
112
  landmarkId2: import_zod3.z.string().optional(),
113
113
  distanceFromLandmark2: import_zod3.z.string().optional()
114
114
  });
115
- var get = import_zod3.z.object({
115
+ var me2 = import_zod3.z.object({
116
116
  location: minimum,
117
117
  safariLocation: import_zod3.z.string(),
118
118
  pickupLocation: import_zod3.z.string(),
@@ -128,7 +128,7 @@ var get = import_zod3.z.object({
128
128
  type: import_zod3.z.string().optional().default(""),
129
129
  distanceKm: import_zod3.z.coerce.number()
130
130
  },
131
- new: import_zod3.z.boolean()
131
+ completed: import_zod3.z.boolean()
132
132
  });
133
133
  var minimumList = import_zod3.z.array(minimum);
134
134
  // Annotate the CommonJS export names for ESM import in node:
package/dist/index.d.cts CHANGED
@@ -24,7 +24,7 @@ declare namespace verifyEmail {
24
24
  export { type verifyEmail_SafeSendOtp as SafeSendOtp, type verifyEmail_SafeVerifyOtp as SafeVerifyOtp, type verifyEmail_SafeVerifyOtpResponse as SafeVerifyOtpResponse, verifyEmail_sendOtp as sendOtp, verifyEmail_verifyOtp as verifyOtp, verifyEmail_verifyOtpResponse as verifyOtpResponse };
25
25
  }
26
26
 
27
- declare const me: z.ZodObject<{
27
+ declare const me$1: z.ZodObject<{
28
28
  id: z.ZodString;
29
29
  email: z.ZodString;
30
30
  name: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -38,15 +38,13 @@ declare const update: z.ZodObject<{
38
38
  countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
39
39
  phoneNumber: z.ZodString;
40
40
  }, z.core.$strip>;
41
- type SafeMe = z.infer<typeof me>;
41
+ type SafeMe$1 = z.infer<typeof me$1>;
42
42
  type SafeUpdate = z.output<typeof update>;
43
43
 
44
- type basicDetails_SafeMe = SafeMe;
45
44
  type basicDetails_SafeUpdate = SafeUpdate;
46
- declare const basicDetails_me: typeof me;
47
45
  declare const basicDetails_update: typeof update;
48
46
  declare namespace basicDetails {
49
- export { type basicDetails_SafeMe as SafeMe, type basicDetails_SafeUpdate as SafeUpdate, basicDetails_me as me, basicDetails_update as update };
47
+ export { type SafeMe$1 as SafeMe, type basicDetails_SafeUpdate as SafeUpdate, me$1 as me, basicDetails_update as update };
50
48
  }
51
49
 
52
50
  declare const suggest: z.ZodObject<{
@@ -84,7 +82,7 @@ declare const save: z.ZodObject<{
84
82
  landmarkId2: z.ZodOptional<z.ZodString>;
85
83
  distanceFromLandmark2: z.ZodOptional<z.ZodString>;
86
84
  }, z.core.$strip>;
87
- declare const get: z.ZodObject<{
85
+ declare const me: z.ZodObject<{
88
86
  location: z.ZodObject<{
89
87
  id: z.ZodString;
90
88
  name: z.ZodString;
@@ -119,7 +117,7 @@ declare const get: z.ZodObject<{
119
117
  type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
120
118
  distanceKm: z.ZodCoercedNumber<unknown>;
121
119
  };
122
- new: z.ZodBoolean;
120
+ completed: z.ZodBoolean;
123
121
  }, z.core.$strip>;
124
122
  declare const minimumList: z.ZodArray<z.ZodObject<{
125
123
  id: z.ZodString;
@@ -144,17 +142,21 @@ declare const minimumList: z.ZodArray<z.ZodObject<{
144
142
  type SafeMinimum = z.output<typeof minimum>;
145
143
  type SafeMinimumList = z.output<typeof minimum>;
146
144
  type SafeSuggest = z.output<typeof suggest>;
145
+ type SafeSave = z.output<typeof save>;
146
+ type SafeMe = z.output<typeof me>;
147
147
 
148
+ type location_SafeMe = SafeMe;
148
149
  type location_SafeMinimum = SafeMinimum;
149
150
  type location_SafeMinimumList = SafeMinimumList;
151
+ type location_SafeSave = SafeSave;
150
152
  type location_SafeSuggest = SafeSuggest;
151
- declare const location_get: typeof get;
153
+ declare const location_me: typeof me;
152
154
  declare const location_minimum: typeof minimum;
153
155
  declare const location_minimumList: typeof minimumList;
154
156
  declare const location_save: typeof save;
155
157
  declare const location_suggest: typeof suggest;
156
158
  declare namespace location {
157
- export { type location_SafeMinimum as SafeMinimum, type location_SafeMinimumList as SafeMinimumList, type location_SafeSuggest as SafeSuggest, location_get as get, location_minimum as minimum, location_minimumList as minimumList, location_save as save, location_suggest as suggest };
159
+ export { type location_SafeMe as SafeMe, type location_SafeMinimum as SafeMinimum, type location_SafeMinimumList as SafeMinimumList, type location_SafeSave as SafeSave, type location_SafeSuggest as SafeSuggest, location_me as me, location_minimum as minimum, location_minimumList as minimumList, location_save as save, location_suggest as suggest };
158
160
  }
159
161
 
160
162
  export { basicDetails as BasicDetails, location as Location, verifyEmail as VerifyEmail };
package/dist/index.d.ts CHANGED
@@ -24,7 +24,7 @@ declare namespace verifyEmail {
24
24
  export { type verifyEmail_SafeSendOtp as SafeSendOtp, type verifyEmail_SafeVerifyOtp as SafeVerifyOtp, type verifyEmail_SafeVerifyOtpResponse as SafeVerifyOtpResponse, verifyEmail_sendOtp as sendOtp, verifyEmail_verifyOtp as verifyOtp, verifyEmail_verifyOtpResponse as verifyOtpResponse };
25
25
  }
26
26
 
27
- declare const me: z.ZodObject<{
27
+ declare const me$1: z.ZodObject<{
28
28
  id: z.ZodString;
29
29
  email: z.ZodString;
30
30
  name: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -38,15 +38,13 @@ declare const update: z.ZodObject<{
38
38
  countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
39
39
  phoneNumber: z.ZodString;
40
40
  }, z.core.$strip>;
41
- type SafeMe = z.infer<typeof me>;
41
+ type SafeMe$1 = z.infer<typeof me$1>;
42
42
  type SafeUpdate = z.output<typeof update>;
43
43
 
44
- type basicDetails_SafeMe = SafeMe;
45
44
  type basicDetails_SafeUpdate = SafeUpdate;
46
- declare const basicDetails_me: typeof me;
47
45
  declare const basicDetails_update: typeof update;
48
46
  declare namespace basicDetails {
49
- export { type basicDetails_SafeMe as SafeMe, type basicDetails_SafeUpdate as SafeUpdate, basicDetails_me as me, basicDetails_update as update };
47
+ export { type SafeMe$1 as SafeMe, type basicDetails_SafeUpdate as SafeUpdate, me$1 as me, basicDetails_update as update };
50
48
  }
51
49
 
52
50
  declare const suggest: z.ZodObject<{
@@ -84,7 +82,7 @@ declare const save: z.ZodObject<{
84
82
  landmarkId2: z.ZodOptional<z.ZodString>;
85
83
  distanceFromLandmark2: z.ZodOptional<z.ZodString>;
86
84
  }, z.core.$strip>;
87
- declare const get: z.ZodObject<{
85
+ declare const me: z.ZodObject<{
88
86
  location: z.ZodObject<{
89
87
  id: z.ZodString;
90
88
  name: z.ZodString;
@@ -119,7 +117,7 @@ declare const get: z.ZodObject<{
119
117
  type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
120
118
  distanceKm: z.ZodCoercedNumber<unknown>;
121
119
  };
122
- new: z.ZodBoolean;
120
+ completed: z.ZodBoolean;
123
121
  }, z.core.$strip>;
124
122
  declare const minimumList: z.ZodArray<z.ZodObject<{
125
123
  id: z.ZodString;
@@ -144,17 +142,21 @@ declare const minimumList: z.ZodArray<z.ZodObject<{
144
142
  type SafeMinimum = z.output<typeof minimum>;
145
143
  type SafeMinimumList = z.output<typeof minimum>;
146
144
  type SafeSuggest = z.output<typeof suggest>;
145
+ type SafeSave = z.output<typeof save>;
146
+ type SafeMe = z.output<typeof me>;
147
147
 
148
+ type location_SafeMe = SafeMe;
148
149
  type location_SafeMinimum = SafeMinimum;
149
150
  type location_SafeMinimumList = SafeMinimumList;
151
+ type location_SafeSave = SafeSave;
150
152
  type location_SafeSuggest = SafeSuggest;
151
- declare const location_get: typeof get;
153
+ declare const location_me: typeof me;
152
154
  declare const location_minimum: typeof minimum;
153
155
  declare const location_minimumList: typeof minimumList;
154
156
  declare const location_save: typeof save;
155
157
  declare const location_suggest: typeof suggest;
156
158
  declare namespace location {
157
- export { type location_SafeMinimum as SafeMinimum, type location_SafeMinimumList as SafeMinimumList, type location_SafeSuggest as SafeSuggest, location_get as get, location_minimum as minimum, location_minimumList as minimumList, location_save as save, location_suggest as suggest };
159
+ export { type location_SafeMe as SafeMe, type location_SafeMinimum as SafeMinimum, type location_SafeMinimumList as SafeMinimumList, type location_SafeSave as SafeSave, type location_SafeSuggest as SafeSuggest, location_me as me, location_minimum as minimum, location_minimumList as minimumList, location_save as save, location_suggest as suggest };
158
160
  }
159
161
 
160
162
  export { basicDetails as BasicDetails, location as Location, verifyEmail as VerifyEmail };
package/dist/index.js CHANGED
@@ -48,7 +48,7 @@ var update = z2.object({
48
48
  // src/location.ts
49
49
  var location_exports = {};
50
50
  __export(location_exports, {
51
- get: () => get,
51
+ me: () => me2,
52
52
  minimum: () => minimum,
53
53
  minimumList: () => minimumList,
54
54
  save: () => save,
@@ -90,7 +90,7 @@ var save = z3.object({
90
90
  landmarkId2: z3.string().optional(),
91
91
  distanceFromLandmark2: z3.string().optional()
92
92
  });
93
- var get = z3.object({
93
+ var me2 = z3.object({
94
94
  location: minimum,
95
95
  safariLocation: z3.string(),
96
96
  pickupLocation: z3.string(),
@@ -106,7 +106,7 @@ var get = z3.object({
106
106
  type: z3.string().optional().default(""),
107
107
  distanceKm: z3.coerce.number()
108
108
  },
109
- new: z3.boolean()
109
+ completed: z3.boolean()
110
110
  });
111
111
  var minimumList = z3.array(minimum);
112
112
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripsam/onboarding",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",