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 CHANGED
@@ -195,7 +195,7 @@ export type EventAttributeType = {
195
195
  };
196
196
  };
197
197
  export type OrganizationType = z.infer<typeof zodOrganizationSchema>;
198
- export type UseType = z.infer<typeof zodUserSchema>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chatifai",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "SDK for interacting with the Chatifai API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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 UseType = z.infer<typeof zodUserSchema>;
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>;