@tripsam/onboarding 1.0.76 → 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 +7 -1
- package/dist/common/index.d.cts +1 -1
- package/dist/common/index.d.ts +1 -1
- package/dist/common/index.js +7 -1
- package/dist/{index-B-IQiM4C.d.cts → index-Jx3GSscX.d.cts} +16 -1
- package/dist/{index-B-IQiM4C.d.ts → index-Jx3GSscX.d.ts} +16 -1
- package/dist/index.cjs +7 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7 -1
- package/package.json +1 -1
package/dist/common/index.cjs
CHANGED
|
@@ -108,7 +108,8 @@ 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
115
|
var SafariDocuments = import_zod4.default.enum(
|
|
@@ -121,6 +122,11 @@ var SafariDocuments = import_zod4.default.enum(
|
|
|
121
122
|
"pan_card"
|
|
122
123
|
]
|
|
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
|
+
});
|
|
124
130
|
// Annotate the CommonJS export names for ESM import in node:
|
|
125
131
|
0 && (module.exports = {
|
|
126
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,7 +75,8 @@ 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
82
|
var SafariDocuments = z4.enum(
|
|
@@ -88,6 +89,11 @@ var SafariDocuments = z4.enum(
|
|
|
88
89
|
"pan_card"
|
|
89
90
|
]
|
|
90
91
|
);
|
|
92
|
+
var get = z4.object({
|
|
93
|
+
id: z4.string(),
|
|
94
|
+
type: SafariDocuments,
|
|
95
|
+
url: z4.string()
|
|
96
|
+
});
|
|
91
97
|
export {
|
|
92
98
|
document_exports as DocumentType,
|
|
93
99
|
location_exports as LocationAutoSuggest,
|
|
@@ -113,11 +113,26 @@ declare const SafariDocuments: z$1.ZodEnum<{
|
|
|
113
113
|
pan_card: "pan_card";
|
|
114
114
|
}>;
|
|
115
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>;
|
|
116
129
|
|
|
117
130
|
declare const document_SafariDocuments: typeof SafariDocuments;
|
|
131
|
+
type document_SafeGet = SafeGet;
|
|
118
132
|
type document_SafeSafariDocuments = SafeSafariDocuments;
|
|
133
|
+
declare const document_get: typeof get;
|
|
119
134
|
declare namespace document {
|
|
120
|
-
export { document_SafariDocuments as SafariDocuments, type document_SafeSafariDocuments as SafeSafariDocuments };
|
|
135
|
+
export { document_SafariDocuments as SafariDocuments, type document_SafeGet as SafeGet, type document_SafeSafariDocuments as SafeSafariDocuments, document_get as get };
|
|
121
136
|
}
|
|
122
137
|
|
|
123
138
|
declare namespace index {
|
|
@@ -113,11 +113,26 @@ declare const SafariDocuments: z$1.ZodEnum<{
|
|
|
113
113
|
pan_card: "pan_card";
|
|
114
114
|
}>;
|
|
115
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>;
|
|
116
129
|
|
|
117
130
|
declare const document_SafariDocuments: typeof SafariDocuments;
|
|
131
|
+
type document_SafeGet = SafeGet;
|
|
118
132
|
type document_SafeSafariDocuments = SafeSafariDocuments;
|
|
133
|
+
declare const document_get: typeof get;
|
|
119
134
|
declare namespace document {
|
|
120
|
-
export { document_SafariDocuments as SafariDocuments, type document_SafeSafariDocuments as SafeSafariDocuments };
|
|
135
|
+
export { document_SafariDocuments as SafariDocuments, type document_SafeGet as SafeGet, type document_SafeSafariDocuments as SafeSafariDocuments, document_get as get };
|
|
121
136
|
}
|
|
122
137
|
|
|
123
138
|
declare namespace index {
|
package/dist/index.cjs
CHANGED
|
@@ -436,7 +436,8 @@ 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
443
|
var SafariDocuments = import_zod14.default.enum(
|
|
@@ -449,6 +450,11 @@ var SafariDocuments = import_zod14.default.enum(
|
|
|
449
450
|
"pan_card"
|
|
450
451
|
]
|
|
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
|
+
});
|
|
452
458
|
// Annotate the CommonJS export names for ESM import in node:
|
|
453
459
|
0 && (module.exports = {
|
|
454
460
|
CommonOnboarding,
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -405,7 +405,8 @@ 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
412
|
var SafariDocuments = z14.enum(
|
|
@@ -418,6 +419,11 @@ var SafariDocuments = z14.enum(
|
|
|
418
419
|
"pan_card"
|
|
419
420
|
]
|
|
420
421
|
);
|
|
422
|
+
var get9 = z14.object({
|
|
423
|
+
id: z14.string(),
|
|
424
|
+
type: SafariDocuments,
|
|
425
|
+
url: z14.string()
|
|
426
|
+
});
|
|
421
427
|
export {
|
|
422
428
|
common_exports as CommonOnboarding,
|
|
423
429
|
safari_exports as SafariOnboarding
|