@friggframework/core 2.0.0--canary.546.74db90f.0 → 2.0.0--canary.545.e7becd9.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.
Files changed (252) hide show
  1. package/CHANGELOG.md +66 -67
  2. package/CLAUDE.md +148 -124
  3. package/README.md +165 -130
  4. package/admin-scripts/index.js +52 -0
  5. package/admin-scripts/repositories/admin-api-key-repository-documentdb.js +21 -0
  6. package/admin-scripts/repositories/admin-api-key-repository-factory.js +55 -0
  7. package/admin-scripts/repositories/admin-api-key-repository-interface.js +121 -0
  8. package/admin-scripts/repositories/admin-api-key-repository-mongo.js +155 -0
  9. package/admin-scripts/repositories/admin-api-key-repository-postgres.js +189 -0
  10. package/admin-scripts/repositories/admin-process-repository-documentdb.js +21 -0
  11. package/admin-scripts/repositories/admin-process-repository-factory.js +51 -0
  12. package/admin-scripts/repositories/admin-process-repository-interface.js +150 -0
  13. package/admin-scripts/repositories/admin-process-repository-mongo.js +213 -0
  14. package/admin-scripts/repositories/admin-process-repository-postgres.js +251 -0
  15. package/admin-scripts/repositories/script-execution-repository-documentdb.js +21 -0
  16. package/admin-scripts/repositories/script-execution-repository-factory.js +55 -0
  17. package/admin-scripts/repositories/script-execution-repository-interface.js +193 -0
  18. package/admin-scripts/repositories/script-execution-repository-mongo.js +278 -0
  19. package/admin-scripts/repositories/script-execution-repository-postgres.js +320 -0
  20. package/admin-scripts/repositories/script-schedule-repository-documentdb.js +21 -0
  21. package/admin-scripts/repositories/script-schedule-repository-factory.js +51 -0
  22. package/admin-scripts/repositories/script-schedule-repository-interface.js +108 -0
  23. package/admin-scripts/repositories/script-schedule-repository-mongo.js +179 -0
  24. package/admin-scripts/repositories/script-schedule-repository-postgres.js +210 -0
  25. package/application/commands/admin-script-commands.js +348 -0
  26. package/application/commands/integration-commands.js +12 -6
  27. package/application/index.js +5 -3
  28. package/assertions/get.js +17 -7
  29. package/assertions/is-equal.js +2 -4
  30. package/associations/association.js +59 -57
  31. package/associations/model.js +54 -0
  32. package/core/CLAUDE.md +222 -156
  33. package/core/Worker.js +33 -12
  34. package/core/create-handler.js +1 -1
  35. package/credential/credential-router.js +262 -0
  36. package/credential/repositories/credential-repository-documentdb.js +71 -1
  37. package/credential/repositories/credential-repository-interface.js +8 -2
  38. package/credential/repositories/credential-repository-mongo.js +45 -4
  39. package/credential/repositories/credential-repository-postgres.js +44 -3
  40. package/credential/repositories/credential-repository.js +3 -1
  41. package/credential/use-cases/delete-credential-for-user.js +50 -0
  42. package/credential/use-cases/get-credential-for-user.js +21 -3
  43. package/credential/use-cases/list-credentials-for-user.js +31 -0
  44. package/credential/use-cases/reauthorize-credential.js +103 -0
  45. package/credential/use-cases/update-authentication-status.js +5 -2
  46. package/database/MONGODB_TRANSACTION_FIX.md +72 -52
  47. package/database/config.js +15 -13
  48. package/database/documentdb-encryption-service.js +29 -13
  49. package/database/documentdb-utils.js +21 -12
  50. package/database/encryption/README.md +53 -36
  51. package/database/encryption/encryption-schema-registry.js +21 -9
  52. package/database/encryption/field-encryption-service.js +15 -4
  53. package/database/encryption/logger.js +3 -2
  54. package/database/encryption/prisma-encryption-extension.js +5 -8
  55. package/database/index.js +47 -5
  56. package/database/models/IndividualUser.js +76 -0
  57. package/database/models/OrganizationUser.js +31 -0
  58. package/database/models/UserModel.js +7 -0
  59. package/database/models/WebsocketConnection.js +79 -0
  60. package/database/models/readme.md +1 -0
  61. package/database/mongoose.js +5 -0
  62. package/database/prisma.js +22 -14
  63. package/database/repositories/health-check-repository-documentdb.js +30 -19
  64. package/database/repositories/health-check-repository-factory.js +9 -3
  65. package/database/repositories/health-check-repository-interface.js +15 -5
  66. package/database/repositories/health-check-repository-mongodb.js +23 -22
  67. package/database/repositories/health-check-repository-postgres.js +1 -1
  68. package/database/repositories/health-check-repository.js +108 -0
  69. package/database/use-cases/check-database-health-use-case.js +3 -2
  70. package/database/use-cases/check-database-state-use-case.js +8 -7
  71. package/database/use-cases/get-database-state-via-worker-use-case.js +15 -12
  72. package/database/use-cases/get-migration-status-use-case.js +4 -2
  73. package/database/use-cases/run-database-migration-use-case.js +41 -9
  74. package/database/use-cases/test-encryption-use-case.js +4 -5
  75. package/database/use-cases/trigger-database-migration-use-case.js +9 -8
  76. package/database/utils/mongodb-collection-utils.js +23 -18
  77. package/database/utils/mongodb-schema-init.js +13 -9
  78. package/database/utils/prisma-runner.js +144 -74
  79. package/database/utils/prisma-schema-parser.js +2 -2
  80. package/docs/PROCESS_MANAGEMENT_QUEUE_SPEC.md +135 -80
  81. package/encrypt/Cryptor.js +54 -49
  82. package/encrypt/aes-encryption-key-provider.js +82 -0
  83. package/encrypt/encryption-key-provider-interface.js +50 -0
  84. package/encrypt/test-encrypt.js +105 -0
  85. package/errors/fetch-error.js +1 -1
  86. package/generated/prisma-mongodb/edge.js +59 -4
  87. package/generated/prisma-mongodb/index-browser.js +49 -1
  88. package/generated/prisma-mongodb/index.d.ts +4023 -61
  89. package/generated/prisma-mongodb/index.js +59 -4
  90. package/generated/prisma-mongodb/package.json +1 -1
  91. package/generated/prisma-mongodb/schema.prisma +87 -0
  92. package/generated/prisma-mongodb/wasm.js +59 -4
  93. package/generated/prisma-postgresql/edge.js +58 -4
  94. package/generated/prisma-postgresql/index-browser.js +48 -1
  95. package/generated/prisma-postgresql/index.d.ts +4738 -54
  96. package/generated/prisma-postgresql/index.js +58 -4
  97. package/generated/prisma-postgresql/package.json +1 -1
  98. package/generated/prisma-postgresql/schema.prisma +85 -0
  99. package/generated/prisma-postgresql/wasm.js +58 -4
  100. package/handlers/WEBHOOKS.md +104 -81
  101. package/handlers/app-definition-loader.js +53 -10
  102. package/handlers/app-handler-helpers.js +14 -3
  103. package/handlers/backend-utils.js +0 -1
  104. package/handlers/database-migration-handler.js +64 -45
  105. package/handlers/middleware/admin-auth.js +53 -0
  106. package/handlers/routers/HEALTHCHECK.md +170 -135
  107. package/handlers/routers/admin.js +450 -0
  108. package/handlers/routers/auth.js +23 -2
  109. package/handlers/routers/db-migration.handler.js +2 -3
  110. package/handlers/routers/db-migration.js +102 -66
  111. package/handlers/routers/docs.js +180 -0
  112. package/handlers/routers/health.js +39 -249
  113. package/handlers/routers/integration-defined-routers.js +4 -4
  114. package/handlers/routers/integration-webhook-routers.js +17 -7
  115. package/handlers/routers/middleware/loadUser.js +39 -0
  116. package/handlers/routers/middleware/requireAdmin.js +43 -0
  117. package/handlers/routers/middleware/requireLoggedInUser.js +19 -0
  118. package/handlers/routers/websocket.js +9 -3
  119. package/handlers/use-cases/check-integrations-health-use-case.js +13 -6
  120. package/handlers/workers/db-migration.js +74 -35
  121. package/index.js +71 -14
  122. package/infrastructure/scheduler/index.js +15 -11
  123. package/infrastructure/scheduler/netlify-scheduler-adapter.js +185 -0
  124. package/infrastructure/scheduler/scheduler-service-factory.js +38 -31
  125. package/integrations/WEBHOOK-QUICKSTART.md +21 -14
  126. package/integrations/index.js +4 -0
  127. package/integrations/integration-base.js +9 -6
  128. package/integrations/integration-router.js +1828 -157
  129. package/integrations/options.js +47 -20
  130. package/integrations/repositories/integration-repository-documentdb.js +53 -24
  131. package/integrations/repositories/integration-repository-factory.js +6 -2
  132. package/integrations/repositories/integration-repository-interface.js +27 -9
  133. package/integrations/repositories/integration-repository-postgres.js +3 -3
  134. package/integrations/repositories/process-repository-factory.js +0 -1
  135. package/integrations/repositories/process-repository-interface.js +9 -5
  136. package/integrations/repositories/process-repository-mongo.js +7 -3
  137. package/integrations/repositories/process-repository-postgres.js +2 -2
  138. package/integrations/tests/doubles/config-capturing-integration.js +9 -8
  139. package/integrations/tests/doubles/dummy-integration-class.js +81 -8
  140. package/integrations/tests/doubles/test-integration-repository.js +51 -11
  141. package/integrations/use-cases/create-integration.js +36 -32
  142. package/integrations/use-cases/create-process.js +20 -9
  143. package/integrations/use-cases/delete-integration-for-user.js +5 -4
  144. package/integrations/use-cases/execute-proxy-request.js +564 -0
  145. package/integrations/use-cases/get-integration-for-user.js +25 -10
  146. package/integrations/use-cases/get-integration-instance-by-definition.js +13 -7
  147. package/integrations/use-cases/get-integrations-for-user.js +4 -1
  148. package/integrations/use-cases/get-possible-integrations.js +1 -1
  149. package/integrations/use-cases/get-process.js +5 -6
  150. package/integrations/use-cases/index.js +3 -1
  151. package/integrations/use-cases/load-integration-context.js +1 -5
  152. package/integrations/use-cases/update-process-state.js +10 -8
  153. package/integrations/utils/map-integration-dto.js +9 -3
  154. package/jest-setup.js +1 -1
  155. package/jest-teardown.js +1 -1
  156. package/lambda/TimeoutCatcher.js +32 -30
  157. package/lambda/index.js +1 -1
  158. package/logs/index.js +3 -3
  159. package/modules/domain/entities/AuthorizationSession.js +131 -0
  160. package/modules/domain/entities/index.js +10 -0
  161. package/modules/entity.js +46 -0
  162. package/modules/module.js +4 -9
  163. package/modules/repositories/authorization-session-repository-factory.js +55 -0
  164. package/modules/repositories/authorization-session-repository-interface.js +75 -0
  165. package/modules/repositories/authorization-session-repository-mongo.js +169 -0
  166. package/modules/repositories/authorization-session-repository-postgres.js +170 -0
  167. package/modules/repositories/module-repository-documentdb.js +89 -41
  168. package/modules/repositories/module-repository-interface.js +13 -0
  169. package/modules/repositories/module-repository-mongo.js +40 -5
  170. package/modules/repositories/module-repository-postgres.js +42 -5
  171. package/modules/repositories/module-repository.js +28 -0
  172. package/modules/requester/api-key.js +0 -2
  173. package/modules/requester/basic.js +0 -1
  174. package/modules/requester/oauth-2.js +3 -14
  175. package/modules/test/mock-api/definition.js +15 -10
  176. package/modules/test/mock-api/mocks/hubspot.js +36 -36
  177. package/modules/tests/doubles/test-module-factory.js +10 -4
  178. package/modules/tests/doubles/test-module-repository.js +1 -1
  179. package/modules/use-cases/delete-module-entity.js +23 -0
  180. package/modules/use-cases/get-authorization-requirements.js +110 -0
  181. package/modules/use-cases/get-entities-for-user.js +1 -1
  182. package/modules/use-cases/get-entity-options-by-id.js +8 -6
  183. package/modules/use-cases/get-module-entity-by-id.js +16 -0
  184. package/modules/use-cases/get-module.js +12 -9
  185. package/modules/use-cases/process-authorization-callback.js +12 -6
  186. package/modules/use-cases/process-authorization-step.js +160 -0
  187. package/modules/use-cases/refresh-entity-options.js +8 -6
  188. package/modules/use-cases/start-authorization-session.js +86 -0
  189. package/modules/use-cases/test-module-auth.js +8 -6
  190. package/modules/use-cases/update-module-entity.js +27 -0
  191. package/modules/utils/map-module-dto.js +2 -2
  192. package/openapi/openapi-spec-generator.js +370 -0
  193. package/openapi/openapi-v1.yaml +1360 -0
  194. package/openapi/openapi-v2.yaml +1535 -0
  195. package/package.json +8 -11
  196. package/prisma-mongodb/schema.prisma +87 -0
  197. package/prisma-postgresql/migrations/20260222000000_add_admin_process_and_script_schedule/migration.sql +55 -0
  198. package/prisma-postgresql/schema.prisma +85 -0
  199. package/providers/index.js +13 -0
  200. package/providers/resolve-provider.js +93 -0
  201. package/queues/index.js +19 -0
  202. package/queues/providers/index.js +7 -0
  203. package/queues/providers/netlify-background-provider.js +76 -0
  204. package/queues/providers/qstash-queue-provider.js +122 -0
  205. package/queues/queue-client-interface.js +55 -0
  206. package/queues/queue-provider-factory.js +93 -0
  207. package/queues/queue-provider.js +46 -0
  208. package/queues/queuer-util.js +33 -25
  209. package/syncs/manager.js +2 -2
  210. package/syncs/model.js +62 -0
  211. package/syncs/repositories/sync-repository-documentdb.js +39 -19
  212. package/syncs/repositories/sync-repository-interface.js +6 -2
  213. package/syncs/repositories/sync-repository-postgres.js +19 -13
  214. package/syncs/sync.js +104 -100
  215. package/token/repositories/token-repository-factory.js +1 -3
  216. package/types/assertions/index.d.ts +72 -72
  217. package/types/associations/index.d.ts +58 -56
  218. package/types/core/index.d.ts +98 -53
  219. package/types/database/index.d.ts +2 -4
  220. package/types/encrypt/index.d.ts +4 -6
  221. package/types/errors/index.d.ts +61 -54
  222. package/types/eslint-config/index.d.ts +40 -40
  223. package/types/integrations/index.d.ts +185 -182
  224. package/types/lambda/index.d.ts +26 -26
  225. package/types/logs/index.d.ts +4 -4
  226. package/types/module-plugin/index.d.ts +239 -236
  227. package/types/prettier-config/index.d.ts +5 -5
  228. package/types/syncs/index.d.ts +103 -107
  229. package/types/test-environment/index.d.ts +14 -14
  230. package/types/tsconfig.json +95 -93
  231. package/user/tests/doubles/test-user-repository.js +5 -2
  232. package/user/use-cases/authenticate-user.js +2 -4
  233. package/user/use-cases/authenticate-with-shared-secret.js +1 -1
  234. package/user/use-cases/create-individual-user.js +8 -7
  235. package/user/use-cases/create-organization-user.js +1 -1
  236. package/user/use-cases/create-token-for-user-id.js +1 -1
  237. package/user/use-cases/delete-user.js +47 -0
  238. package/user/use-cases/get-user-from-adopter-jwt.js +0 -2
  239. package/user/use-cases/get-user-from-bearer-token.js +7 -3
  240. package/user/use-cases/get-user-from-x-frigg-headers.js +14 -11
  241. package/user/use-cases/login-user.js +8 -8
  242. package/user/user.js +18 -4
  243. package/utils/backend-path.js +2 -2
  244. package/utils/index.js +4 -1
  245. package/websocket/repositories/websocket-connection-repository-documentdb.js +46 -21
  246. package/websocket/repositories/websocket-connection-repository-mongo.js +26 -16
  247. package/websocket/repositories/websocket-connection-repository-postgres.js +26 -15
  248. package/websocket/repositories/websocket-connection-repository.js +26 -20
  249. package/websocket/websocket-message-sender-interface.js +38 -0
  250. package/database/adapters/lambda-invoker.js +0 -97
  251. package/database/repositories/migration-status-repository-s3.js +0 -137
  252. package/infrastructure/scheduler/eventbridge-scheduler-adapter.js +0 -184
package/CHANGELOG.md CHANGED
@@ -2,12 +2,12 @@
2
2
 
3
3
  #### 🐛 Bug Fix
4
4
 
5
- - Add support for secrets loading from SECRET_ARN [#327](https://github.com/friggframework/frigg/pull/327) ([@seanspeaks](https://github.com/seanspeaks))
6
- - Adding support for secrets loading ([@seanspeaks](https://github.com/seanspeaks))
5
+ - Add support for secrets loading from SECRET_ARN [#327](https://github.com/friggframework/frigg/pull/327) ([@seanspeaks](https://github.com/seanspeaks))
6
+ - Adding support for secrets loading ([@seanspeaks](https://github.com/seanspeaks))
7
7
 
8
8
  #### Authors: 1
9
9
 
10
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
10
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
11
11
 
12
12
  ---
13
13
 
@@ -15,12 +15,12 @@
15
15
 
16
16
  #### 🐛 Bug Fix
17
17
 
18
- - Fix bug during local running [#326](https://github.com/friggframework/frigg/pull/326) ([@seanspeaks](https://github.com/seanspeaks))
19
- - Adding toJSON so that the descriminator decorator will be evaluated/added to the mongoose model (currently undefined on initialization and first invocation) ([@seanspeaks](https://github.com/seanspeaks))
18
+ - Fix bug during local running [#326](https://github.com/friggframework/frigg/pull/326) ([@seanspeaks](https://github.com/seanspeaks))
19
+ - Adding toJSON so that the descriminator decorator will be evaluated/added to the mongoose model (currently undefined on initialization and first invocation) ([@seanspeaks](https://github.com/seanspeaks))
20
20
 
21
21
  #### Authors: 1
22
22
 
23
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
23
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
24
24
 
25
25
  ---
26
26
 
@@ -32,22 +32,22 @@ Thank you, Daniel Klotz ([@d-klotz](https://github.com/d-klotz)), for all your w
32
32
 
33
33
  #### 🐛 Bug Fix
34
34
 
35
- - Add READMEs that will need updating, but for version releasing [#324](https://github.com/friggframework/frigg/pull/324) ([@seanspeaks](https://github.com/seanspeaks))
36
- - Add READMEs that will need updating, but for version releasing ([@seanspeaks](https://github.com/seanspeaks))
37
- - small update to integration testing / tooling [#304](https://github.com/friggframework/frigg/pull/304) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
38
- - chore: bump deprecated npm package versions [#323](https://github.com/friggframework/frigg/pull/323) ([@d-klotz](https://github.com/d-klotz) [@seanspeaks](https://github.com/seanspeaks))
39
- - chore: bump deprecated package versions ([@d-klotz](https://github.com/d-klotz))
40
- - Bump version to: v1.1.8 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
41
- - remove comment ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
42
- - use the factory methods for creating the mock integration so that everything is set up (mostly events and userActions) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
43
- - fix imports to not inadvertently call loadInstalledModules ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
44
- - Bump version to: v1.1.5 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
35
+ - Add READMEs that will need updating, but for version releasing [#324](https://github.com/friggframework/frigg/pull/324) ([@seanspeaks](https://github.com/seanspeaks))
36
+ - Add READMEs that will need updating, but for version releasing ([@seanspeaks](https://github.com/seanspeaks))
37
+ - small update to integration testing / tooling [#304](https://github.com/friggframework/frigg/pull/304) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
38
+ - chore: bump deprecated npm package versions [#323](https://github.com/friggframework/frigg/pull/323) ([@d-klotz](https://github.com/d-klotz) [@seanspeaks](https://github.com/seanspeaks))
39
+ - chore: bump deprecated package versions ([@d-klotz](https://github.com/d-klotz))
40
+ - Bump version to: v1.1.8 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
41
+ - remove comment ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
42
+ - use the factory methods for creating the mock integration so that everything is set up (mostly events and userActions) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
43
+ - fix imports to not inadvertently call loadInstalledModules ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
44
+ - Bump version to: v1.1.5 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
45
45
 
46
46
  #### Authors: 3
47
47
 
48
- - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
49
- - Daniel Klotz ([@d-klotz](https://github.com/d-klotz))
50
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
48
+ - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
49
+ - Daniel Klotz ([@d-klotz](https://github.com/d-klotz))
50
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
51
51
 
52
52
  ---
53
53
 
@@ -55,13 +55,13 @@ Thank you, Daniel Klotz ([@d-klotz](https://github.com/d-klotz)), for all your w
55
55
 
56
56
  #### 🐛 Bug Fix
57
57
 
58
- - Revert open to support commonjs [#319](https://github.com/friggframework/frigg/pull/319) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
59
- - Bump version to: v1.1.6 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
58
+ - Revert open to support commonjs [#319](https://github.com/friggframework/frigg/pull/319) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
59
+ - Bump version to: v1.1.6 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
60
60
 
61
61
  #### Authors: 2
62
62
 
63
- - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
64
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
63
+ - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
64
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
65
65
 
66
66
  ---
67
67
 
@@ -69,14 +69,14 @@ Thank you, Daniel Klotz ([@d-klotz](https://github.com/d-klotz)), for all your w
69
69
 
70
70
  #### 🐛 Bug Fix
71
71
 
72
- - getAuthorizationRequirements() async [#318](https://github.com/friggframework/frigg/pull/318) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
73
- - getAuthorizationRequirements should be async, though it will only occasionally need to make requests ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
74
- - Bump version to: v1.1.6 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
72
+ - getAuthorizationRequirements() async [#318](https://github.com/friggframework/frigg/pull/318) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
73
+ - getAuthorizationRequirements should be async, though it will only occasionally need to make requests ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
74
+ - Bump version to: v1.1.6 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
75
75
 
76
76
  #### Authors: 2
77
77
 
78
- - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
79
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
78
+ - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
79
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
80
80
 
81
81
  ---
82
82
 
@@ -84,14 +84,14 @@ Thank you, Daniel Klotz ([@d-klotz](https://github.com/d-klotz)), for all your w
84
84
 
85
85
  #### 🐛 Bug Fix
86
86
 
87
- - Small fix to validation errors and cleanup [#307](https://github.com/friggframework/frigg/pull/307) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
88
- - remove excess files to centralize jest config and cleanup ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
89
- - Bump version to: v1.1.5 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
87
+ - Small fix to validation errors and cleanup [#307](https://github.com/friggframework/frigg/pull/307) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
88
+ - remove excess files to centralize jest config and cleanup ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
89
+ - Bump version to: v1.1.5 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
90
90
 
91
91
  #### Authors: 2
92
92
 
93
- - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
94
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
93
+ - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
94
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
95
95
 
96
96
  ---
97
97
 
@@ -99,20 +99,20 @@ Thank you, Daniel Klotz ([@d-klotz](https://github.com/d-klotz)), for all your w
99
99
 
100
100
  #### 🐛 Bug Fix
101
101
 
102
- - update router to include options and refresh [#301](https://github.com/friggframework/frigg/pull/301) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
103
- - consistent spacing ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
104
- - add back the /api/entity POST of a credential with a tentative adjustment to implementation ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
105
- - be consistent about not using redundant variables for the response json ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
106
- - remove accidental newline ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
107
- - fixes to router and stubs ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
108
- - update router to include options and refresh for entities, integration config, and integration user actions ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
109
- - Bump version to: v1.1.4 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
110
- - Bump version to: v1.1.3 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
102
+ - update router to include options and refresh [#301](https://github.com/friggframework/frigg/pull/301) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
103
+ - consistent spacing ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
104
+ - add back the /api/entity POST of a credential with a tentative adjustment to implementation ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
105
+ - be consistent about not using redundant variables for the response json ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
106
+ - remove accidental newline ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
107
+ - fixes to router and stubs ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
108
+ - update router to include options and refresh for entities, integration config, and integration user actions ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
109
+ - Bump version to: v1.1.4 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
110
+ - Bump version to: v1.1.3 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
111
111
 
112
112
  #### Authors: 2
113
113
 
114
- - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
115
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
114
+ - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
115
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
116
116
 
117
117
  ---
118
118
 
@@ -120,12 +120,12 @@ Thank you, Daniel Klotz ([@d-klotz](https://github.com/d-klotz)), for all your w
120
120
 
121
121
  #### 🐛 Bug Fix
122
122
 
123
- - Socket hang up / ECONNRESET error retry for requester [#297](https://github.com/friggframework/frigg/pull/297) ([@seanspeaks](https://github.com/seanspeaks))
124
- - Check linear task description for offending error. Unclear if this is the best approach. ([@seanspeaks](https://github.com/seanspeaks))
123
+ - Socket hang up / ECONNRESET error retry for requester [#297](https://github.com/friggframework/frigg/pull/297) ([@seanspeaks](https://github.com/seanspeaks))
124
+ - Check linear task description for offending error. Unclear if this is the best approach. ([@seanspeaks](https://github.com/seanspeaks))
125
125
 
126
126
  #### Authors: 1
127
127
 
128
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
128
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
129
129
 
130
130
  ---
131
131
 
@@ -133,13 +133,13 @@ Thank you, Daniel Klotz ([@d-klotz](https://github.com/d-klotz)), for all your w
133
133
 
134
134
  #### 🐛 Bug Fix
135
135
 
136
- - test release [#296](https://github.com/friggframework/frigg/pull/296) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
137
- - add a commit to fix canary and workaround auto bug ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
138
- - bump to test release ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
136
+ - test release [#296](https://github.com/friggframework/frigg/pull/296) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
137
+ - add a commit to fix canary and workaround auto bug ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
138
+ - bump to test release ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
139
139
 
140
140
  #### Authors: 1
141
141
 
142
- - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
142
+ - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
143
143
 
144
144
  ---
145
145
 
@@ -147,21 +147,21 @@ Thank you, Daniel Klotz ([@d-klotz](https://github.com/d-klotz)), for all your w
147
147
 
148
148
  #### 🚀 Enhancement
149
149
 
150
- - Package redo [#294](https://github.com/friggframework/frigg/pull/294) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
150
+ - Package redo [#294](https://github.com/friggframework/frigg/pull/294) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
151
151
 
152
152
  #### 🐛 Bug Fix
153
153
 
154
- - update test related imports in core ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
155
- - missed one ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
156
- - create test, eslint-config and prettier-config packages as base shared dependencies ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
157
- - Publish ([@seanspeaks](https://github.com/seanspeaks))
158
- - Bump node and npm version for the whole repo (Fix CI) [#274](https://github.com/friggframework/frigg/pull/274) ([@seanspeaks](https://github.com/seanspeaks))
159
- - Bump independent versions \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
154
+ - update test related imports in core ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
155
+ - missed one ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
156
+ - create test, eslint-config and prettier-config packages as base shared dependencies ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
157
+ - Publish ([@seanspeaks](https://github.com/seanspeaks))
158
+ - Bump node and npm version for the whole repo (Fix CI) [#274](https://github.com/friggframework/frigg/pull/274) ([@seanspeaks](https://github.com/seanspeaks))
159
+ - Bump independent versions \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
160
160
 
161
161
  #### Authors: 2
162
162
 
163
- - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
164
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
163
+ - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
164
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
165
165
 
166
166
  ---
167
167
 
@@ -177,15 +177,14 @@ Thanks for all your work!
177
177
 
178
178
  #### 🚀 Enhancement
179
179
 
180
-
181
180
  #### 🐛 Bug Fix
182
181
 
183
- - correct some bad automated edits, though they are not in relevant files ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
184
- - Bump independent versions \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
182
+ - correct some bad automated edits, though they are not in relevant files ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
183
+ - Bump independent versions \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
185
184
 
186
185
  #### Authors: 4
187
186
 
188
- - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
189
- - Nicolas Leal ([@nicolasmelo1](https://github.com/nicolasmelo1))
190
- - nmilcoff ([@nmilcoff](https://github.com/nmilcoff))
191
- - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
187
+ - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
188
+ - Nicolas Leal ([@nicolasmelo1](https://github.com/nicolasmelo1))
189
+ - nmilcoff ([@nmilcoff](https://github.com/nmilcoff))
190
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))