@hachej/boring-ask-user 0.1.24 → 0.1.26
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/shared/index.d.ts +10 -10
- package/package.json +4 -4
package/dist/shared/index.d.ts
CHANGED
|
@@ -2960,13 +2960,13 @@ declare const AskUserAnswerSchema: z.ZodObject<{
|
|
|
2960
2960
|
values: z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodBoolean, z.ZodNumber, z.ZodNull]>>;
|
|
2961
2961
|
submittedAt: z.ZodString;
|
|
2962
2962
|
}, "strict", z.ZodTypeAny, {
|
|
2963
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
2964
2963
|
sessionId: string;
|
|
2964
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
2965
2965
|
questionId: string;
|
|
2966
2966
|
submittedAt: string;
|
|
2967
2967
|
}, {
|
|
2968
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
2969
2968
|
sessionId: string;
|
|
2969
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
2970
2970
|
questionId: string;
|
|
2971
2971
|
submittedAt: string;
|
|
2972
2972
|
}>;
|
|
@@ -2978,28 +2978,28 @@ declare const QuestionsSubmitCommandSchema: z.ZodObject<{
|
|
|
2978
2978
|
questionId: z.ZodString;
|
|
2979
2979
|
sessionId: z.ZodString;
|
|
2980
2980
|
}, "strict", z.ZodTypeAny, {
|
|
2981
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
2982
2981
|
sessionId: string;
|
|
2982
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
2983
2983
|
questionId: string;
|
|
2984
2984
|
answerToken: string;
|
|
2985
2985
|
}, {
|
|
2986
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
2987
2986
|
sessionId: string;
|
|
2987
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
2988
2988
|
questionId: string;
|
|
2989
2989
|
answerToken: string;
|
|
2990
2990
|
}>;
|
|
2991
2991
|
}, "strict", z.ZodTypeAny, {
|
|
2992
2992
|
params: {
|
|
2993
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
2994
2993
|
sessionId: string;
|
|
2994
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
2995
2995
|
questionId: string;
|
|
2996
2996
|
answerToken: string;
|
|
2997
2997
|
};
|
|
2998
2998
|
kind: "questions.submit";
|
|
2999
2999
|
}, {
|
|
3000
3000
|
params: {
|
|
3001
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
3002
3001
|
sessionId: string;
|
|
3002
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
3003
3003
|
questionId: string;
|
|
3004
3004
|
answerToken: string;
|
|
3005
3005
|
};
|
|
@@ -3043,28 +3043,28 @@ declare const QuestionsCommandSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObje
|
|
|
3043
3043
|
questionId: z.ZodString;
|
|
3044
3044
|
sessionId: z.ZodString;
|
|
3045
3045
|
}, "strict", z.ZodTypeAny, {
|
|
3046
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
3047
3046
|
sessionId: string;
|
|
3047
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
3048
3048
|
questionId: string;
|
|
3049
3049
|
answerToken: string;
|
|
3050
3050
|
}, {
|
|
3051
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
3052
3051
|
sessionId: string;
|
|
3052
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
3053
3053
|
questionId: string;
|
|
3054
3054
|
answerToken: string;
|
|
3055
3055
|
}>;
|
|
3056
3056
|
}, "strict", z.ZodTypeAny, {
|
|
3057
3057
|
params: {
|
|
3058
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
3059
3058
|
sessionId: string;
|
|
3059
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
3060
3060
|
questionId: string;
|
|
3061
3061
|
answerToken: string;
|
|
3062
3062
|
};
|
|
3063
3063
|
kind: "questions.submit";
|
|
3064
3064
|
}, {
|
|
3065
3065
|
params: {
|
|
3066
|
-
values: Record<string, string | number | boolean | string[] | null>;
|
|
3067
3066
|
sessionId: string;
|
|
3067
|
+
values: Record<string, string | number | boolean | string[] | null>;
|
|
3068
3068
|
questionId: string;
|
|
3069
3069
|
answerToken: string;
|
|
3070
3070
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-ask-user",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"fastify": "^5.3.3",
|
|
47
47
|
"react": "^18.0.0 || ^19.0.0",
|
|
48
48
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
49
|
-
"@hachej/boring-workspace": "0.1.
|
|
49
|
+
"@hachej/boring-workspace": "0.1.26"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"lucide-react": "^1.8.0",
|
|
53
53
|
"zod": "^3.23.0",
|
|
54
|
-
"@hachej/boring-ui-kit": "0.1.
|
|
54
|
+
"@hachej/boring-ui-kit": "0.1.26"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"tsup": "^8.4.0",
|
|
68
68
|
"typescript": "~5.9.3",
|
|
69
69
|
"vitest": "^3.1.3",
|
|
70
|
-
"@hachej/boring-workspace": "0.1.
|
|
70
|
+
"@hachej/boring-workspace": "0.1.26"
|
|
71
71
|
},
|
|
72
72
|
"peerDependenciesMeta": {
|
|
73
73
|
"fastify": {
|