@tripsam/onboarding 1.0.52 → 1.0.53
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-CGi168wq.d.cts → index-BGZmUfqH.d.cts} +3 -3
- package/dist/{index-CGi168wq.d.ts → index-BGZmUfqH.d.ts} +3 -3
- package/dist/index.cjs +4 -4
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/safari/index.cjs +4 -4
- package/dist/safari/index.d.cts +1 -1
- package/dist/safari/index.d.ts +1 -1
- package/dist/safari/index.js +4 -4
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ declare const get$1: z.ZodObject<{
|
|
|
23
23
|
id: z.ZodString;
|
|
24
24
|
name: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25
25
|
countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
26
|
-
|
|
26
|
+
phone: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27
27
|
isPhoneVerified: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
28
28
|
type: z.ZodEnum<{
|
|
29
29
|
other: "other";
|
|
@@ -38,14 +38,14 @@ declare const get$1: z.ZodObject<{
|
|
|
38
38
|
declare const create$4: z.ZodObject<{
|
|
39
39
|
name: z.ZodString;
|
|
40
40
|
countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
41
|
-
|
|
41
|
+
phone: z.ZodString;
|
|
42
42
|
type: z.ZodString;
|
|
43
43
|
}, z.core.$strip>;
|
|
44
44
|
declare const update$2: z.ZodObject<{
|
|
45
45
|
id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
46
46
|
name: z.ZodString;
|
|
47
47
|
countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
48
|
-
|
|
48
|
+
phone: z.ZodString;
|
|
49
49
|
type: z.ZodString;
|
|
50
50
|
}, z.core.$strip>;
|
|
51
51
|
type SafeGet$1 = z.infer<typeof get$1>;
|
|
@@ -23,7 +23,7 @@ declare const get$1: z.ZodObject<{
|
|
|
23
23
|
id: z.ZodString;
|
|
24
24
|
name: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25
25
|
countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
26
|
-
|
|
26
|
+
phone: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27
27
|
isPhoneVerified: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
28
28
|
type: z.ZodEnum<{
|
|
29
29
|
other: "other";
|
|
@@ -38,14 +38,14 @@ declare const get$1: z.ZodObject<{
|
|
|
38
38
|
declare const create$4: z.ZodObject<{
|
|
39
39
|
name: z.ZodString;
|
|
40
40
|
countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
41
|
-
|
|
41
|
+
phone: z.ZodString;
|
|
42
42
|
type: z.ZodString;
|
|
43
43
|
}, z.core.$strip>;
|
|
44
44
|
declare const update$2: z.ZodObject<{
|
|
45
45
|
id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
46
46
|
name: z.ZodString;
|
|
47
47
|
countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
48
|
-
|
|
48
|
+
phone: z.ZodString;
|
|
49
49
|
type: z.ZodString;
|
|
50
50
|
}, z.core.$strip>;
|
|
51
51
|
type SafeGet$1 = z.infer<typeof get$1>;
|
package/dist/index.cjs
CHANGED
|
@@ -74,28 +74,28 @@ var get = import_zod.z.object({
|
|
|
74
74
|
id: import_zod.z.string(),
|
|
75
75
|
name: import_zod.z.string().trim().optional().default(""),
|
|
76
76
|
countryCode: import_zod.z.string().optional().default("+91"),
|
|
77
|
-
|
|
77
|
+
phone: import_zod.z.string().optional().default(""),
|
|
78
78
|
isPhoneVerified: import_zod.z.boolean().optional().default(false),
|
|
79
79
|
type: safeSas
|
|
80
80
|
});
|
|
81
81
|
var create = import_zod.z.object({
|
|
82
82
|
name: import_zod.z.string().nonempty("required").trim(),
|
|
83
83
|
countryCode: import_zod.z.string().optional().default("+91"),
|
|
84
|
-
|
|
84
|
+
phone: import_zod.z.string().nonempty("required"),
|
|
85
85
|
type: import_zod.z.string().nonempty("required")
|
|
86
86
|
});
|
|
87
87
|
var update = import_zod.z.object({
|
|
88
88
|
id: import_zod.z.string().optional().default(""),
|
|
89
89
|
name: import_zod.z.string().nonempty("required").trim(),
|
|
90
90
|
countryCode: import_zod.z.string().optional().default("+91"),
|
|
91
|
-
|
|
91
|
+
phone: import_zod.z.string().nonempty("required"),
|
|
92
92
|
type: import_zod.z.string().nonempty("required")
|
|
93
93
|
});
|
|
94
94
|
var defaultBasicDetails = {
|
|
95
95
|
id: "",
|
|
96
96
|
name: "",
|
|
97
97
|
countryCode: "+91",
|
|
98
|
-
|
|
98
|
+
phone: "",
|
|
99
99
|
isPhoneVerified: false,
|
|
100
100
|
type: "leopard_safari"
|
|
101
101
|
};
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -43,28 +43,28 @@ var get = z.object({
|
|
|
43
43
|
id: z.string(),
|
|
44
44
|
name: z.string().trim().optional().default(""),
|
|
45
45
|
countryCode: z.string().optional().default("+91"),
|
|
46
|
-
|
|
46
|
+
phone: z.string().optional().default(""),
|
|
47
47
|
isPhoneVerified: z.boolean().optional().default(false),
|
|
48
48
|
type: safeSas
|
|
49
49
|
});
|
|
50
50
|
var create = z.object({
|
|
51
51
|
name: z.string().nonempty("required").trim(),
|
|
52
52
|
countryCode: z.string().optional().default("+91"),
|
|
53
|
-
|
|
53
|
+
phone: z.string().nonempty("required"),
|
|
54
54
|
type: z.string().nonempty("required")
|
|
55
55
|
});
|
|
56
56
|
var update = z.object({
|
|
57
57
|
id: z.string().optional().default(""),
|
|
58
58
|
name: z.string().nonempty("required").trim(),
|
|
59
59
|
countryCode: z.string().optional().default("+91"),
|
|
60
|
-
|
|
60
|
+
phone: z.string().nonempty("required"),
|
|
61
61
|
type: z.string().nonempty("required")
|
|
62
62
|
});
|
|
63
63
|
var defaultBasicDetails = {
|
|
64
64
|
id: "",
|
|
65
65
|
name: "",
|
|
66
66
|
countryCode: "+91",
|
|
67
|
-
|
|
67
|
+
phone: "",
|
|
68
68
|
isPhoneVerified: false,
|
|
69
69
|
type: "leopard_safari"
|
|
70
70
|
};
|
package/dist/safari/index.cjs
CHANGED
|
@@ -67,28 +67,28 @@ var get = import_zod.z.object({
|
|
|
67
67
|
id: import_zod.z.string(),
|
|
68
68
|
name: import_zod.z.string().trim().optional().default(""),
|
|
69
69
|
countryCode: import_zod.z.string().optional().default("+91"),
|
|
70
|
-
|
|
70
|
+
phone: import_zod.z.string().optional().default(""),
|
|
71
71
|
isPhoneVerified: import_zod.z.boolean().optional().default(false),
|
|
72
72
|
type: safeSas
|
|
73
73
|
});
|
|
74
74
|
var create = import_zod.z.object({
|
|
75
75
|
name: import_zod.z.string().nonempty("required").trim(),
|
|
76
76
|
countryCode: import_zod.z.string().optional().default("+91"),
|
|
77
|
-
|
|
77
|
+
phone: import_zod.z.string().nonempty("required"),
|
|
78
78
|
type: import_zod.z.string().nonempty("required")
|
|
79
79
|
});
|
|
80
80
|
var update = import_zod.z.object({
|
|
81
81
|
id: import_zod.z.string().optional().default(""),
|
|
82
82
|
name: import_zod.z.string().nonempty("required").trim(),
|
|
83
83
|
countryCode: import_zod.z.string().optional().default("+91"),
|
|
84
|
-
|
|
84
|
+
phone: import_zod.z.string().nonempty("required"),
|
|
85
85
|
type: import_zod.z.string().nonempty("required")
|
|
86
86
|
});
|
|
87
87
|
var defaultBasicDetails = {
|
|
88
88
|
id: "",
|
|
89
89
|
name: "",
|
|
90
90
|
countryCode: "+91",
|
|
91
|
-
|
|
91
|
+
phone: "",
|
|
92
92
|
isPhoneVerified: false,
|
|
93
93
|
type: "leopard_safari"
|
|
94
94
|
};
|
package/dist/safari/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { b as BasicDetails, a as BusinessDetails, d as DriverDetails, l as Location, o as OperationalDays, p as PersonalDetails, s as Slot, c as Step, v as VehicleDetails } from '../index-
|
|
1
|
+
export { b as BasicDetails, a as BusinessDetails, d as DriverDetails, l as Location, o as OperationalDays, p as PersonalDetails, s as Slot, c as Step, v as VehicleDetails } from '../index-BGZmUfqH.cjs';
|
|
2
2
|
import 'zod';
|
package/dist/safari/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { b as BasicDetails, a as BusinessDetails, d as DriverDetails, l as Location, o as OperationalDays, p as PersonalDetails, s as Slot, c as Step, v as VehicleDetails } from '../index-
|
|
1
|
+
export { b as BasicDetails, a as BusinessDetails, d as DriverDetails, l as Location, o as OperationalDays, p as PersonalDetails, s as Slot, c as Step, v as VehicleDetails } from '../index-BGZmUfqH.js';
|
|
2
2
|
import 'zod';
|
package/dist/safari/index.js
CHANGED
|
@@ -29,28 +29,28 @@ var get = z.object({
|
|
|
29
29
|
id: z.string(),
|
|
30
30
|
name: z.string().trim().optional().default(""),
|
|
31
31
|
countryCode: z.string().optional().default("+91"),
|
|
32
|
-
|
|
32
|
+
phone: z.string().optional().default(""),
|
|
33
33
|
isPhoneVerified: z.boolean().optional().default(false),
|
|
34
34
|
type: safeSas
|
|
35
35
|
});
|
|
36
36
|
var create = z.object({
|
|
37
37
|
name: z.string().nonempty("required").trim(),
|
|
38
38
|
countryCode: z.string().optional().default("+91"),
|
|
39
|
-
|
|
39
|
+
phone: z.string().nonempty("required"),
|
|
40
40
|
type: z.string().nonempty("required")
|
|
41
41
|
});
|
|
42
42
|
var update = z.object({
|
|
43
43
|
id: z.string().optional().default(""),
|
|
44
44
|
name: z.string().nonempty("required").trim(),
|
|
45
45
|
countryCode: z.string().optional().default("+91"),
|
|
46
|
-
|
|
46
|
+
phone: z.string().nonempty("required"),
|
|
47
47
|
type: z.string().nonempty("required")
|
|
48
48
|
});
|
|
49
49
|
var defaultBasicDetails = {
|
|
50
50
|
id: "",
|
|
51
51
|
name: "",
|
|
52
52
|
countryCode: "+91",
|
|
53
|
-
|
|
53
|
+
phone: "",
|
|
54
54
|
isPhoneVerified: false,
|
|
55
55
|
type: "leopard_safari"
|
|
56
56
|
};
|