chatifai 1.0.3 → 1.0.4
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 +3 -5
- package/package.json +1 -1
- package/types.ts +3 -5
package/dist/types.d.ts
CHANGED
|
@@ -187,11 +187,9 @@ export declare const zodQuerySchema: z.ZodObject<{
|
|
|
187
187
|
users_ids?: string[] | undefined;
|
|
188
188
|
}>;
|
|
189
189
|
export type EventAttributeType = {
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
user_agent: string;
|
|
194
|
-
};
|
|
190
|
+
http_request: {
|
|
191
|
+
client_ip?: string;
|
|
192
|
+
user_agent?: string;
|
|
195
193
|
};
|
|
196
194
|
};
|
|
197
195
|
export type OrganizationType = z.infer<typeof zodOrganizationSchema>;
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -84,11 +84,9 @@ export const zodQuerySchema = z.object({
|
|
|
84
84
|
});
|
|
85
85
|
|
|
86
86
|
export type EventAttributeType = {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
user_agent: string;
|
|
91
|
-
};
|
|
87
|
+
http_request: {
|
|
88
|
+
client_ip?: string;
|
|
89
|
+
user_agent?: string;
|
|
92
90
|
};
|
|
93
91
|
};
|
|
94
92
|
|