asfur 1.0.140 → 1.0.141

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
@@ -2573,3 +2573,10 @@ export type MessageMetaData = {
2573
2573
  [key: string]: number;
2574
2574
  };
2575
2575
  };
2576
+ export type UsersReportRequestType = {
2577
+ users: {
2578
+ user_id: string;
2579
+ slug: string;
2580
+ }[];
2581
+ time_range: number;
2582
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asfur",
3
- "version": "1.0.140",
3
+ "version": "1.0.141",
4
4
  "description": "SDK for interacting with the Asfur API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.ts CHANGED
@@ -500,3 +500,11 @@ export type MessageMetaData = {
500
500
  userInstructions?: string;
501
501
  sourceDocumentCounts?: { [key: string]: number };
502
502
  };
503
+
504
+ export type UsersReportRequestType = {
505
+ users: {
506
+ user_id: string;
507
+ slug: string;
508
+ }[],
509
+ time_range: number; // e.g., last 30 days
510
+ }