@kumori/aurora-backend-handler 1.0.22 → 1.0.24

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.
@@ -319,7 +319,7 @@ export const createAccount = async (account: Account, security: Security) => {
319
319
  },
320
320
  },
321
321
  };
322
- } else if (providerName === "oasix") {
322
+ } else if (providerName === "oasix" || providerName === "cloudos") {
323
323
  accountBody = {
324
324
  tenant: account.tenant,
325
325
  account: account.name,
@@ -614,7 +614,7 @@ export const deleteAccount = async (account: Account, security: Security) => {
614
614
  },
615
615
  },
616
616
  };
617
- } else if (providerName === "oasix") {
617
+ } else if (providerName === "oasix" || providerName === "cloudos") {
618
618
  payload = {
619
619
  tenant: account.tenant,
620
620
  account: account.name,
@@ -1086,7 +1086,7 @@ export const updateAccount = async (account: Account, security: Security) => {
1086
1086
  },
1087
1087
  },
1088
1088
  };
1089
- } else if (providerName === "oasix") {
1089
+ } else if (providerName === "oasix" || providerName === "cloudos") {
1090
1090
  accountBody = {
1091
1091
  tenant: account.tenant,
1092
1092
  account: account.name,
package/package.json CHANGED
@@ -1,31 +1,35 @@
1
1
  {
2
+ "name": "@kumori/aurora-backend-handler",
3
+ "version": "1.0.24",
4
+ "description": "backend handler",
5
+ "main": "backend-handler.ts",
2
6
  "scripts": {
3
7
  "test": "jest --config jest.config.ts"
4
8
  },
9
+ "overrides": {
10
+ "minimatch": "^10.2.1",
11
+ "glob": "^11.0.0"
12
+ },
5
13
  "dependencies": {
6
- "@jest/globals": "^29.7.0",
7
14
  "@kumori/aurora-interfaces": "^1.0.1",
8
15
  "@kumori/kumori-dsl-generator": "^1.0.3",
9
16
  "@kumori/kumori-module-generator": "^1.1.6",
10
- "jest": "^29.7.0",
11
17
  "ts-node": "^10.9.2",
12
18
  "uuid": "^11.1.0",
13
19
  "ws": "^8.18.2"
14
20
  },
15
21
  "devDependencies": {
22
+ "@jest/globals": "^29.7.0",
16
23
  "@types/jest": "^29.5.14",
17
24
  "@types/ws": "^8.18.1",
18
25
  "formdata-node": "^6.0.3",
26
+ "jest": "^29.7.0",
19
27
  "jest-junit": "^16.0.0",
20
- "ts-jest": "^29.3.0",
28
+ "ts-jest": "^29.4.6",
21
29
  "typescript": "~5.6.2",
22
30
  "uuid": "^11.1.0",
23
31
  "ws": "^8.18.2"
24
32
  },
25
- "name": "@kumori/aurora-backend-handler",
26
- "version": "1.0.22",
27
- "description": "backend handler",
28
- "main": "backend-handler.ts",
29
33
  "repository": {
30
34
  "type": "git",
31
35
  "url": "https://gitlab.com/kumori/axebow/libraries/wui/backend-handler"
@@ -35,9 +39,7 @@
35
39
  "jest": {
36
40
  "preset": "ts-jest",
37
41
  "testEnvironment": "node",
38
- "extensionsToTreatAsEsm": [
39
- ".ts"
40
- ],
42
+ "extensionsToTreatAsEsm": [".ts"],
41
43
  "globals": {
42
44
  "ts-jest": {
43
45
  "useESM": true
@@ -47,4 +49,4 @@
47
49
  "^(\\.{1,2}/.*)\\.js$": "$1"
48
50
  }
49
51
  }
50
- }
52
+ }