Skip to content

Commit

Permalink
Merge pull request #280 from skadefro/master
Browse files Browse the repository at this point in the history
Prepare update for 1.5.2
  • Loading branch information
skadefro authored Nov 14, 2023
2 parents 42000ee + b882ba7 commit 5450e3e
Show file tree
Hide file tree
Showing 110 changed files with 1,336 additions and 3,130 deletions.
3 changes: 0 additions & 3 deletions .devcontainer.old/Dockerfile

This file was deleted.

37 changes: 0 additions & 37 deletions .devcontainer.old/devcontainer.json

This file was deleted.

19 changes: 0 additions & 19 deletions .devcontainer.old/docker-compose.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ docker-package.json
sonar-scanner.properties
sonar-project.properties
crash.log
.cache-require-paths.json
.devcontainer.old
.devcontainer.old
.clinic
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ sonar-scanner.properties
sonar-project.properties
crash.log
package-lock.json
.cache-require-paths.json
*.heapsnapshot
/proto
/proto
.clinic
4 changes: 2 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ crash.log
.nyrc.json
dockerignore
register.js
.cache-require-paths.json
.devcontainer.old
docker-package.json
.dockerignore
*.heapsnapshot
*.heapsnapshot
.clinic
25 changes: 15 additions & 10 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach to localhost",
"address": "localhost",
"port": 5858,
"localRoot": "${workspaceFolder}/dist",
"remoteRoot": "/data"
},
{
"args": [],
"cwd": "${workspaceRoot}",
Expand All @@ -20,20 +11,34 @@
"**/node_modules/@openiap/**/*",
],
"outputCapture": "std",
"preLaunchTask": "openflow-tsc-watch",
"program": "${workspaceRoot}/OpenFlow/src/index.ts",
"request": "launch",
"preLaunchTask": "tsc: watch - OpenFlow/tsconfig.json",
"runtimeArgs": [
"--inspect"
],
"runtimeExecutable": null,
"sourceMaps": true,
"stopOnEntry": false,
"type": "node",
"env": {
"otel_log_level": "info"
},
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**",
"**/node_modules/@openiap/**",
]
},
{
"type": "node",
"request": "attach",
"name": "Attach to localhost",
"preLaunchTask": "tsc: watch - OpenFlow/tsconfig.json",
"address": "localhost",
"port": 5858,
"localRoot": "${workspaceFolder}/dist",
"remoteRoot": "/data"
}
]
}
25 changes: 0 additions & 25 deletions .vscode/tasks.json

This file was deleted.

13 changes: 0 additions & 13 deletions OpenFlow.code-workspace

This file was deleted.

4 changes: 2 additions & 2 deletions OpenFlow/src/Audit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import { Crypt } from "./Crypt";
import { Span } from "@opentelemetry/api";
import { Logger } from "./Logger";
import { DatabaseConnection } from "./DatabaseConnection";
import { UpDownCounter } from "@opentelemetry/api-metrics";
import { UpDownCounter } from "@opentelemetry/api";

export type tokenType = "local" | "jwtsignin" | "samltoken" | "tokenissued" | "weblogin";
export type clientType = "saml" | "google" | "openid" | "local" | "websocket";
export type clientAgent = "node" | "browser" | "rdservice" | "nodered" | "openrpa" | "powershell" | "python" | "java" | "csharp" | "go" | "unknown";
export type clientAgent = "node" | "browser" | "rdservice" | "nodered" | "openrpa" | "powershell" | "python" | "java" | "csharp" | "go" | "test" | "unknown";
export class Audit {
public static openflow_logins: UpDownCounter = null;
public static ensure_openflow_logins() {
Expand Down
Loading

0 comments on commit 5450e3e

Please sign in to comment.