@optifye/dashboard-core 6.10.50 → 6.10.52
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/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +435 -218
- package/dist/index.mjs +435 -218
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -5230,6 +5230,12 @@ declare function useCompanyUsersUsage(companyId?: string, options?: UseCompanyUs
|
|
|
5230
5230
|
|
|
5231
5231
|
interface ClipsCostData {
|
|
5232
5232
|
totalClassifications: number;
|
|
5233
|
+
monthlyClassifications: number;
|
|
5234
|
+
monthStart: string | null;
|
|
5235
|
+
historicalMonthlyClassifications: Array<{
|
|
5236
|
+
monthStart: string;
|
|
5237
|
+
classifications: number;
|
|
5238
|
+
}>;
|
|
5233
5239
|
hasVlmEnabledLine: boolean;
|
|
5234
5240
|
}
|
|
5235
5241
|
interface UseCompanyClipsCostReturn {
|
package/dist/index.d.ts
CHANGED
|
@@ -5230,6 +5230,12 @@ declare function useCompanyUsersUsage(companyId?: string, options?: UseCompanyUs
|
|
|
5230
5230
|
|
|
5231
5231
|
interface ClipsCostData {
|
|
5232
5232
|
totalClassifications: number;
|
|
5233
|
+
monthlyClassifications: number;
|
|
5234
|
+
monthStart: string | null;
|
|
5235
|
+
historicalMonthlyClassifications: Array<{
|
|
5236
|
+
monthStart: string;
|
|
5237
|
+
classifications: number;
|
|
5238
|
+
}>;
|
|
5233
5239
|
hasVlmEnabledLine: boolean;
|
|
5234
5240
|
}
|
|
5235
5241
|
interface UseCompanyClipsCostReturn {
|