@tripsam/onboarding 1.0.75 → 1.0.77
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/common/index.cjs +17 -2
- package/dist/common/index.d.cts +1 -1
- package/dist/common/index.d.ts +1 -1
- package/dist/common/index.js +17 -2
- package/dist/{index-CkvKazak.d.cts → index-Jx3GSscX.d.cts} +18 -1
- package/dist/{index-CkvKazak.d.ts → index-Jx3GSscX.d.ts} +18 -1
- package/dist/index.cjs +17 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +17 -2
- package/package.json +1 -1
package/dist/common/index.cjs
CHANGED
|
@@ -108,10 +108,25 @@ var autocompleteResponse = import_zod3.default.array(locationDetails);
|
|
|
108
108
|
// src/common/document.ts
|
|
109
109
|
var document_exports = {};
|
|
110
110
|
__export(document_exports, {
|
|
111
|
-
SafariDocuments: () => SafariDocuments
|
|
111
|
+
SafariDocuments: () => SafariDocuments,
|
|
112
|
+
get: () => get
|
|
112
113
|
});
|
|
113
114
|
var import_zod4 = __toESM(require("zod"), 1);
|
|
114
|
-
var SafariDocuments = import_zod4.default.enum(
|
|
115
|
+
var SafariDocuments = import_zod4.default.enum(
|
|
116
|
+
[
|
|
117
|
+
"aadhaar_front",
|
|
118
|
+
"aadhaar_back",
|
|
119
|
+
"driving_license_front",
|
|
120
|
+
"driving_license_back",
|
|
121
|
+
"vehicle_rc",
|
|
122
|
+
"pan_card"
|
|
123
|
+
]
|
|
124
|
+
);
|
|
125
|
+
var get = import_zod4.default.object({
|
|
126
|
+
id: import_zod4.default.string(),
|
|
127
|
+
type: SafariDocuments,
|
|
128
|
+
url: import_zod4.default.string()
|
|
129
|
+
});
|
|
115
130
|
// Annotate the CommonJS export names for ESM import in node:
|
|
116
131
|
0 && (module.exports = {
|
|
117
132
|
DocumentType,
|
package/dist/common/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { d as DocumentType, l as LocationAutoSuggest, o as Onboard, v as VerifyEmail } from '../index-
|
|
1
|
+
export { d as DocumentType, l as LocationAutoSuggest, o as Onboard, v as VerifyEmail } from '../index-Jx3GSscX.cjs';
|
|
2
2
|
import 'zod';
|
package/dist/common/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { d as DocumentType, l as LocationAutoSuggest, o as Onboard, v as VerifyEmail } from '../index-
|
|
1
|
+
export { d as DocumentType, l as LocationAutoSuggest, o as Onboard, v as VerifyEmail } from '../index-Jx3GSscX.js';
|
|
2
2
|
import 'zod';
|
package/dist/common/index.js
CHANGED
|
@@ -75,10 +75,25 @@ var autocompleteResponse = z3.array(locationDetails);
|
|
|
75
75
|
// src/common/document.ts
|
|
76
76
|
var document_exports = {};
|
|
77
77
|
__export(document_exports, {
|
|
78
|
-
SafariDocuments: () => SafariDocuments
|
|
78
|
+
SafariDocuments: () => SafariDocuments,
|
|
79
|
+
get: () => get
|
|
79
80
|
});
|
|
80
81
|
import z4 from "zod";
|
|
81
|
-
var SafariDocuments = z4.enum(
|
|
82
|
+
var SafariDocuments = z4.enum(
|
|
83
|
+
[
|
|
84
|
+
"aadhaar_front",
|
|
85
|
+
"aadhaar_back",
|
|
86
|
+
"driving_license_front",
|
|
87
|
+
"driving_license_back",
|
|
88
|
+
"vehicle_rc",
|
|
89
|
+
"pan_card"
|
|
90
|
+
]
|
|
91
|
+
);
|
|
92
|
+
var get = z4.object({
|
|
93
|
+
id: z4.string(),
|
|
94
|
+
type: SafariDocuments,
|
|
95
|
+
url: z4.string()
|
|
96
|
+
});
|
|
82
97
|
export {
|
|
83
98
|
document_exports as DocumentType,
|
|
84
99
|
location_exports as LocationAutoSuggest,
|
|
@@ -112,10 +112,27 @@ declare const SafariDocuments: z$1.ZodEnum<{
|
|
|
112
112
|
vehicle_rc: "vehicle_rc";
|
|
113
113
|
pan_card: "pan_card";
|
|
114
114
|
}>;
|
|
115
|
+
type SafeSafariDocuments = z$1.infer<typeof SafariDocuments>;
|
|
116
|
+
declare const get: z$1.ZodObject<{
|
|
117
|
+
id: z$1.ZodString;
|
|
118
|
+
type: z$1.ZodEnum<{
|
|
119
|
+
aadhaar_front: "aadhaar_front";
|
|
120
|
+
aadhaar_back: "aadhaar_back";
|
|
121
|
+
driving_license_front: "driving_license_front";
|
|
122
|
+
driving_license_back: "driving_license_back";
|
|
123
|
+
vehicle_rc: "vehicle_rc";
|
|
124
|
+
pan_card: "pan_card";
|
|
125
|
+
}>;
|
|
126
|
+
url: z$1.ZodString;
|
|
127
|
+
}, z$1.core.$strip>;
|
|
128
|
+
type SafeGet = z$1.infer<typeof get>;
|
|
115
129
|
|
|
116
130
|
declare const document_SafariDocuments: typeof SafariDocuments;
|
|
131
|
+
type document_SafeGet = SafeGet;
|
|
132
|
+
type document_SafeSafariDocuments = SafeSafariDocuments;
|
|
133
|
+
declare const document_get: typeof get;
|
|
117
134
|
declare namespace document {
|
|
118
|
-
export { document_SafariDocuments as SafariDocuments };
|
|
135
|
+
export { document_SafariDocuments as SafariDocuments, type document_SafeGet as SafeGet, type document_SafeSafariDocuments as SafeSafariDocuments, document_get as get };
|
|
119
136
|
}
|
|
120
137
|
|
|
121
138
|
declare namespace index {
|
|
@@ -112,10 +112,27 @@ declare const SafariDocuments: z$1.ZodEnum<{
|
|
|
112
112
|
vehicle_rc: "vehicle_rc";
|
|
113
113
|
pan_card: "pan_card";
|
|
114
114
|
}>;
|
|
115
|
+
type SafeSafariDocuments = z$1.infer<typeof SafariDocuments>;
|
|
116
|
+
declare const get: z$1.ZodObject<{
|
|
117
|
+
id: z$1.ZodString;
|
|
118
|
+
type: z$1.ZodEnum<{
|
|
119
|
+
aadhaar_front: "aadhaar_front";
|
|
120
|
+
aadhaar_back: "aadhaar_back";
|
|
121
|
+
driving_license_front: "driving_license_front";
|
|
122
|
+
driving_license_back: "driving_license_back";
|
|
123
|
+
vehicle_rc: "vehicle_rc";
|
|
124
|
+
pan_card: "pan_card";
|
|
125
|
+
}>;
|
|
126
|
+
url: z$1.ZodString;
|
|
127
|
+
}, z$1.core.$strip>;
|
|
128
|
+
type SafeGet = z$1.infer<typeof get>;
|
|
115
129
|
|
|
116
130
|
declare const document_SafariDocuments: typeof SafariDocuments;
|
|
131
|
+
type document_SafeGet = SafeGet;
|
|
132
|
+
type document_SafeSafariDocuments = SafeSafariDocuments;
|
|
133
|
+
declare const document_get: typeof get;
|
|
117
134
|
declare namespace document {
|
|
118
|
-
export { document_SafariDocuments as SafariDocuments };
|
|
135
|
+
export { document_SafariDocuments as SafariDocuments, type document_SafeGet as SafeGet, type document_SafeSafariDocuments as SafeSafariDocuments, document_get as get };
|
|
119
136
|
}
|
|
120
137
|
|
|
121
138
|
declare namespace index {
|
package/dist/index.cjs
CHANGED
|
@@ -436,10 +436,25 @@ var onboard = import_zod13.z.object({
|
|
|
436
436
|
// src/common/document.ts
|
|
437
437
|
var document_exports = {};
|
|
438
438
|
__export(document_exports, {
|
|
439
|
-
SafariDocuments: () => SafariDocuments
|
|
439
|
+
SafariDocuments: () => SafariDocuments,
|
|
440
|
+
get: () => get9
|
|
440
441
|
});
|
|
441
442
|
var import_zod14 = __toESM(require("zod"), 1);
|
|
442
|
-
var SafariDocuments = import_zod14.default.enum(
|
|
443
|
+
var SafariDocuments = import_zod14.default.enum(
|
|
444
|
+
[
|
|
445
|
+
"aadhaar_front",
|
|
446
|
+
"aadhaar_back",
|
|
447
|
+
"driving_license_front",
|
|
448
|
+
"driving_license_back",
|
|
449
|
+
"vehicle_rc",
|
|
450
|
+
"pan_card"
|
|
451
|
+
]
|
|
452
|
+
);
|
|
453
|
+
var get9 = import_zod14.default.object({
|
|
454
|
+
id: import_zod14.default.string(),
|
|
455
|
+
type: SafariDocuments,
|
|
456
|
+
url: import_zod14.default.string()
|
|
457
|
+
});
|
|
443
458
|
// Annotate the CommonJS export names for ESM import in node:
|
|
444
459
|
0 && (module.exports = {
|
|
445
460
|
CommonOnboarding,
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -405,10 +405,25 @@ var onboard = z13.object({
|
|
|
405
405
|
// src/common/document.ts
|
|
406
406
|
var document_exports = {};
|
|
407
407
|
__export(document_exports, {
|
|
408
|
-
SafariDocuments: () => SafariDocuments
|
|
408
|
+
SafariDocuments: () => SafariDocuments,
|
|
409
|
+
get: () => get9
|
|
409
410
|
});
|
|
410
411
|
import z14 from "zod";
|
|
411
|
-
var SafariDocuments = z14.enum(
|
|
412
|
+
var SafariDocuments = z14.enum(
|
|
413
|
+
[
|
|
414
|
+
"aadhaar_front",
|
|
415
|
+
"aadhaar_back",
|
|
416
|
+
"driving_license_front",
|
|
417
|
+
"driving_license_back",
|
|
418
|
+
"vehicle_rc",
|
|
419
|
+
"pan_card"
|
|
420
|
+
]
|
|
421
|
+
);
|
|
422
|
+
var get9 = z14.object({
|
|
423
|
+
id: z14.string(),
|
|
424
|
+
type: SafariDocuments,
|
|
425
|
+
url: z14.string()
|
|
426
|
+
});
|
|
412
427
|
export {
|
|
413
428
|
common_exports as CommonOnboarding,
|
|
414
429
|
safari_exports as SafariOnboarding
|