asfur 1.0.139 → 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 +8 -0
- package/package.json +1 -1
- package/types.ts +9 -0
package/dist/types.d.ts
CHANGED
|
@@ -2561,6 +2561,7 @@ export type UserPublicMetadata = {
|
|
|
2561
2561
|
}[];
|
|
2562
2562
|
notes?: string;
|
|
2563
2563
|
tier_id?: string;
|
|
2564
|
+
tier?: TierType;
|
|
2564
2565
|
} & UserSettingsType;
|
|
2565
2566
|
export type MessageMetaData = {
|
|
2566
2567
|
geoLocations?: string[];
|
|
@@ -2572,3 +2573,10 @@ export type MessageMetaData = {
|
|
|
2572
2573
|
[key: string]: number;
|
|
2573
2574
|
};
|
|
2574
2575
|
};
|
|
2576
|
+
export type UsersReportRequestType = {
|
|
2577
|
+
users: {
|
|
2578
|
+
user_id: string;
|
|
2579
|
+
slug: string;
|
|
2580
|
+
}[];
|
|
2581
|
+
time_range: number;
|
|
2582
|
+
};
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -489,6 +489,7 @@ export type UserPublicMetadata = {
|
|
|
489
489
|
}[];
|
|
490
490
|
notes?: string;
|
|
491
491
|
tier_id?: string;
|
|
492
|
+
tier?: TierType;
|
|
492
493
|
} & UserSettingsType;
|
|
493
494
|
|
|
494
495
|
export type MessageMetaData = {
|
|
@@ -499,3 +500,11 @@ export type MessageMetaData = {
|
|
|
499
500
|
userInstructions?: string;
|
|
500
501
|
sourceDocumentCounts?: { [key: string]: number };
|
|
501
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
|
+
}
|