chatifai 1.0.2 → 1.0.3
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/types.d.ts +1 -1
- package/package.json +1 -1
- package/types.ts +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -195,7 +195,7 @@ export type EventAttributeType = {
|
|
|
195
195
|
};
|
|
196
196
|
};
|
|
197
197
|
export type OrganizationType = z.infer<typeof zodOrganizationSchema>;
|
|
198
|
-
export type
|
|
198
|
+
export type UserType = z.infer<typeof zodUserSchema>;
|
|
199
199
|
export type AgentType = z.infer<typeof zodAgentSchema>;
|
|
200
200
|
export type ContextType = z.infer<typeof zodContextSchema>;
|
|
201
201
|
export type QueryType = z.infer<typeof zodQuerySchema>;
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -93,7 +93,7 @@ export type EventAttributeType = {
|
|
|
93
93
|
};
|
|
94
94
|
|
|
95
95
|
export type OrganizationType = z.infer<typeof zodOrganizationSchema>;
|
|
96
|
-
export type
|
|
96
|
+
export type UserType = z.infer<typeof zodUserSchema>;
|
|
97
97
|
export type AgentType = z.infer<typeof zodAgentSchema>;
|
|
98
98
|
export type ContextType = z.infer<typeof zodContextSchema>;
|
|
99
99
|
export type QueryType = z.infer<typeof zodQuerySchema>;
|