From 1f8641b3ca34d5caacc895e71641589ba6078208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Haylee=20Sch=C3=A4fer?= Date: Thu, 10 Oct 2024 12:00:21 +0200 Subject: [PATCH] add grants to ClientInfo --- dist/skin/v2/ClientInfo.d.ts | 1 + dist/skin/v2/ClientInfo.js.map | 2 +- src/skin/v2/ClientInfo.ts | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/skin/v2/ClientInfo.d.ts b/dist/skin/v2/ClientInfo.d.ts index 1fc370e..de62401 100644 --- a/dist/skin/v2/ClientInfo.d.ts +++ b/dist/skin/v2/ClientInfo.d.ts @@ -12,5 +12,6 @@ export interface ClientInfo { /** client user **/ user?: string; breadcrumb: string; + grants?: Record; billable?: boolean; } diff --git a/dist/skin/v2/ClientInfo.js.map b/dist/skin/v2/ClientInfo.js.map index 7b03eaa..b0481e8 100644 --- a/dist/skin/v2/ClientInfo.js.map +++ b/dist/skin/v2/ClientInfo.js.map @@ -1 +1 @@ -{"version":3,"file":"ClientInfo.js","sourceRoot":"/","sources":["skin/v2/ClientInfo.ts"],"names":[],"mappings":"","sourcesContent":["export interface ClientInfo {\r\n /** client request date millis **/\r\n time: number;\r\n /** client user agent **/\r\n agent: string;\r\n /** client origin **/\r\n origin?: string;\r\n /** client ip **/\r\n ip: string;\r\n /** client api key (ID) **/\r\n key?: string;\r\n /** client user **/\r\n user?: string;\r\n breadcrumb: string;\r\n billable?: boolean;\r\n}"]} \ No newline at end of file +{"version":3,"file":"ClientInfo.js","sourceRoot":"/","sources":["skin/v2/ClientInfo.ts"],"names":[],"mappings":"","sourcesContent":["export interface ClientInfo {\r\n /** client request date millis **/\r\n time: number;\r\n /** client user agent **/\r\n agent: string;\r\n /** client origin **/\r\n origin?: string;\r\n /** client ip **/\r\n ip: string;\r\n /** client api key (ID) **/\r\n key?: string;\r\n /** client user **/\r\n user?: string;\r\n breadcrumb: string;\r\n grants?: Record;\r\n billable?: boolean;\r\n}"]} \ No newline at end of file diff --git a/src/skin/v2/ClientInfo.ts b/src/skin/v2/ClientInfo.ts index 39788c0..20640ba 100644 --- a/src/skin/v2/ClientInfo.ts +++ b/src/skin/v2/ClientInfo.ts @@ -12,5 +12,6 @@ export interface ClientInfo { /** client user **/ user?: string; breadcrumb: string; + grants?: Record; billable?: boolean; } \ No newline at end of file