@credal/actions 0.1.91 → 0.1.93
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.
@@ -573,7 +573,7 @@ export declare const asanaGetTasksDetailsOutputSchema: z.ZodObject<{
|
|
573
573
|
approval_status: z.ZodString;
|
574
574
|
completed: z.ZodBoolean;
|
575
575
|
created_at: z.ZodString;
|
576
|
-
due_at: z.ZodOptional<z.ZodString
|
576
|
+
due_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
577
577
|
assignee_name: z.ZodString;
|
578
578
|
notes: z.ZodString;
|
579
579
|
comments: z.ZodArray<z.ZodObject<{
|
@@ -602,7 +602,7 @@ export declare const asanaGetTasksDetailsOutputSchema: z.ZodObject<{
|
|
602
602
|
text: string;
|
603
603
|
creator_name: string;
|
604
604
|
}[];
|
605
|
-
due_at?: string | undefined;
|
605
|
+
due_at?: string | null | undefined;
|
606
606
|
}, {
|
607
607
|
name: string;
|
608
608
|
completed: boolean;
|
@@ -616,7 +616,7 @@ export declare const asanaGetTasksDetailsOutputSchema: z.ZodObject<{
|
|
616
616
|
text: string;
|
617
617
|
creator_name: string;
|
618
618
|
}[];
|
619
|
-
due_at?: string | undefined;
|
619
|
+
due_at?: string | null | undefined;
|
620
620
|
}>, "many">>;
|
621
621
|
}, "strip", z.ZodTypeAny, {
|
622
622
|
success: boolean;
|
@@ -633,7 +633,7 @@ export declare const asanaGetTasksDetailsOutputSchema: z.ZodObject<{
|
|
633
633
|
text: string;
|
634
634
|
creator_name: string;
|
635
635
|
}[];
|
636
|
-
due_at?: string | undefined;
|
636
|
+
due_at?: string | null | undefined;
|
637
637
|
}[] | undefined;
|
638
638
|
errors?: string[] | undefined;
|
639
639
|
}, {
|
@@ -651,7 +651,7 @@ export declare const asanaGetTasksDetailsOutputSchema: z.ZodObject<{
|
|
651
651
|
text: string;
|
652
652
|
creator_name: string;
|
653
653
|
}[];
|
654
|
-
due_at?: string | undefined;
|
654
|
+
due_at?: string | null | undefined;
|
655
655
|
}[] | undefined;
|
656
656
|
errors?: string[] | undefined;
|
657
657
|
}>;
|
@@ -166,7 +166,7 @@ exports.asanaGetTasksDetailsOutputSchema = zod_1.z.object({
|
|
166
166
|
approval_status: zod_1.z.string(),
|
167
167
|
completed: zod_1.z.boolean(),
|
168
168
|
created_at: zod_1.z.string(),
|
169
|
-
due_at: zod_1.z.string().optional(),
|
169
|
+
due_at: zod_1.z.string().nullable().optional(),
|
170
170
|
assignee_name: zod_1.z.string(),
|
171
171
|
notes: zod_1.z.string(),
|
172
172
|
comments: zod_1.z.array(zod_1.z.object({ text: zod_1.z.string(), created_at: zod_1.z.string(), creator_name: zod_1.z.string() })),
|
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
export { runAction, getActionGroups, type ActionGroupsReturn } from "./app";
|
2
2
|
export { ACTION_GROUPS, type ActionGroups } from "./actions/groups";
|
3
3
|
export { ActionMapper } from "./actions/actionMapper";
|
4
|
+
export { ActionTemplate } from "./actions/parse";
|
4
5
|
export * from "./actions/autogen/templates";
|
5
6
|
export * from "./actions/autogen/types";
|