kcommons 14.23.0 → 14.23.2
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.
|
@@ -51,3 +51,10 @@ export interface IVendorTopItemsKPIResponse {
|
|
|
51
51
|
}
|
|
52
52
|
export interface IVendorTopItemsKPIFilters extends IVendorCommonKPIFilters {
|
|
53
53
|
}
|
|
54
|
+
export interface IVAsnAnalyticsKPIFilters extends IVendorCommonKPIFilters {
|
|
55
|
+
}
|
|
56
|
+
export interface IASNAnalyticsResponse {
|
|
57
|
+
total: number;
|
|
58
|
+
awaiting_approval: number;
|
|
59
|
+
pending_dispatch: number;
|
|
60
|
+
}
|
|
@@ -312,7 +312,8 @@ export declare enum UserInclude {
|
|
|
312
312
|
created_queue_jobs = "created_queue_jobs",
|
|
313
313
|
last_updated_payment_terms = "last_updated_payment_terms",
|
|
314
314
|
created_temporary_worker_form = "created_temporary_worker_form",
|
|
315
|
-
last_updated_temporary_worker_form = "last_updated_temporary_worker_form"
|
|
315
|
+
last_updated_temporary_worker_form = "last_updated_temporary_worker_form",
|
|
316
|
+
reporting_to = "reporting_to"
|
|
316
317
|
}
|
|
317
318
|
export interface IUserFilters {
|
|
318
319
|
name?: string | null;
|
|
@@ -124,4 +124,5 @@ var UserInclude;
|
|
|
124
124
|
UserInclude["last_updated_payment_terms"] = "last_updated_payment_terms";
|
|
125
125
|
UserInclude["created_temporary_worker_form"] = "created_temporary_worker_form";
|
|
126
126
|
UserInclude["last_updated_temporary_worker_form"] = "last_updated_temporary_worker_form";
|
|
127
|
+
UserInclude["reporting_to"] = "reporting_to";
|
|
127
128
|
})(UserInclude || (exports.UserInclude = UserInclude = {}));
|