@friggframework/core 2.0.0--canary.461.a5281ce.0 → 2.0.0--canary.461.8f52ae8.0

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.
@@ -58,8 +58,8 @@ describe('CheckEncryptionHealthUseCase', () => {
58
58
  const result = await useCase.execute();
59
59
 
60
60
  expect(result.mode).toBe('aes');
61
- expect(result.debug.hasKMS).toBe(false);
62
- expect(result.debug.hasAES).toBe(true);
61
+ expect(result.status).toBe('healthy');
62
+ expect(result.encryptionWorks).toBe(true);
63
63
  });
64
64
 
65
65
  it('should use KMS when only KMS is configured', async () => {
@@ -79,8 +79,8 @@ describe('CheckEncryptionHealthUseCase', () => {
79
79
  const result = await useCase.execute();
80
80
 
81
81
  expect(result.mode).toBe('kms');
82
- expect(result.debug.hasKMS).toBe(true);
83
- expect(result.debug.hasAES).toBe(false);
82
+ expect(result.status).toBe('healthy');
83
+ expect(result.encryptionWorks).toBe(true);
84
84
  });
85
85
 
86
86
  it('should bypass encryption for dev stage', async () => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@friggframework/core",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "2.0.0--canary.461.a5281ce.0",
4
+ "version": "2.0.0--canary.461.8f52ae8.0",
5
5
  "dependencies": {
6
6
  "@aws-sdk/client-apigatewaymanagementapi": "^3.588.0",
7
7
  "@aws-sdk/client-kms": "^3.588.0",
@@ -37,9 +37,9 @@
37
37
  }
38
38
  },
39
39
  "devDependencies": {
40
- "@friggframework/eslint-config": "2.0.0--canary.461.a5281ce.0",
41
- "@friggframework/prettier-config": "2.0.0--canary.461.a5281ce.0",
42
- "@friggframework/test": "2.0.0--canary.461.a5281ce.0",
40
+ "@friggframework/eslint-config": "2.0.0--canary.461.8f52ae8.0",
41
+ "@friggframework/prettier-config": "2.0.0--canary.461.8f52ae8.0",
42
+ "@friggframework/test": "2.0.0--canary.461.8f52ae8.0",
43
43
  "@prisma/client": "^6.17.0",
44
44
  "@types/lodash": "4.17.15",
45
45
  "@typescript-eslint/eslint-plugin": "^8.0.0",
@@ -79,5 +79,5 @@
79
79
  "publishConfig": {
80
80
  "access": "public"
81
81
  },
82
- "gitHead": "a5281ced43fde23f359098090034ef3bddb234ac"
82
+ "gitHead": "8f52ae84357c6b0fa02fe92bad85312590b8d17c"
83
83
  }