@kl1/contracts 1.1.24-uat → 1.1.25-uat
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.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +3 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +3 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +3 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -32211,18 +32211,21 @@ export declare const apiContract: {
|
|
32211
32211
|
callTo: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
32212
32212
|
note: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
32213
32213
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
32214
|
+
categoryIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
32214
32215
|
}, "strip", import("zod").ZodTypeAny, {
|
32215
32216
|
disposition?: string | null | undefined;
|
32216
32217
|
callFrom?: string | null | undefined;
|
32217
32218
|
callTo?: string | null | undefined;
|
32218
32219
|
note?: string | null | undefined;
|
32219
32220
|
tags?: string[] | undefined;
|
32221
|
+
categoryIds?: string[] | undefined;
|
32220
32222
|
}, {
|
32221
32223
|
disposition?: string | null | undefined;
|
32222
32224
|
callFrom?: string | null | undefined;
|
32223
32225
|
callTo?: string | null | undefined;
|
32224
32226
|
note?: string | null | undefined;
|
32225
32227
|
tags?: string[] | undefined;
|
32228
|
+
categoryIds?: string[] | undefined;
|
32226
32229
|
}>;
|
32227
32230
|
summary: "Update a wrap up form.";
|
32228
32231
|
method: "PATCH";
|