From f87d2f0aa9d742314c0ec86eb56e65cc04589bf4 Mon Sep 17 00:00:00 2001 From: Jochen Schneider Date: Sun, 8 Dec 2024 10:45:46 +0100 Subject: [PATCH] - --- package-lock.json | 4 ++-- package.json | 2 +- src/content/validation.ts | 4 ++++ src/index.d.ts | 1 + src/index.js | 1 + 5 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 src/content/validation.ts diff --git a/package-lock.json b/package-lock.json index 54bb6b6..5104f33 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "guibo-types", - "version": "1.1.25", + "version": "1.1.26", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "guibo-types", - "version": "1.1.25", + "version": "1.1.26", "license": "ISC", "devDependencies": { "typescript": "^5.2.2" diff --git a/package.json b/package.json index d80d798..58a5a4e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "guibo-types", - "version": "1.1.25", + "version": "1.1.26", "description": "Typescript data structures for the GUIBO platform interfaces", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/src/content/validation.ts b/src/content/validation.ts new file mode 100644 index 0000000..2132950 --- /dev/null +++ b/src/content/validation.ts @@ -0,0 +1,4 @@ +export interface Validation { + valid: boolean; + message: string; +} \ No newline at end of file diff --git a/src/index.d.ts b/src/index.d.ts index 1146fb6..d8aaf6a 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -24,6 +24,7 @@ export * from './content/release_download'; export * from './content/release_asset'; export * from './content/release_asset_list'; export * from './content/account_basicinfo'; +export * from './content/validation'; export * from './analytics/application_incident'; export * from './analytics/log_context_detail'; export * from './analytics/operation_trace'; diff --git a/src/index.js b/src/index.js index 9693bd1..b65a44b 100644 --- a/src/index.js +++ b/src/index.js @@ -25,6 +25,7 @@ export * from './content/release_download'; export * from './content/release_asset'; export * from './content/release_asset_list'; export * from './content/account_basicinfo'; +export * from './content/validation'; export * from './analytics/application_incident'; export * from './analytics/log_context_detail'; export * from './analytics/operation_trace';