@oneuptime/common 9.0.5598 → 9.1.1
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.
- package/Models/DatabaseModels/BillingPaymentMethod.ts +45 -9
- package/Models/DatabaseModels/StatusPageDomain.ts +3 -2
- package/Models/DatabaseModels/User.ts +1 -1
- package/Server/API/BillingPaymentMethodAPI.ts +6 -7
- package/Server/API/StatusPageAPI.ts +1 -1
- package/Server/EnvironmentConfig.ts +11 -0
- package/Server/Services/StatusPageDomainService.ts +17 -10
- package/Server/Types/Workflow/Components/Email.ts +10 -1
- package/Server/Utils/Captcha.ts +98 -0
- package/Server/Utils/Greenlock/Greenlock.ts +10 -3
- package/Server/Utils/Workspace/MicrosoftTeams/MicrosoftTeams.ts +16 -7
- package/UI/Components/Captcha/Captcha.tsx +75 -0
- package/UI/Config.ts +3 -0
- package/build/dist/Models/DatabaseModels/BillingPaymentMethod.js +45 -9
- package/build/dist/Models/DatabaseModels/BillingPaymentMethod.js.map +1 -1
- package/build/dist/Models/DatabaseModels/StatusPageDomain.js +2 -2
- package/build/dist/Models/DatabaseModels/StatusPageDomain.js.map +1 -1
- package/build/dist/Models/DatabaseModels/User.js +1 -1
- package/build/dist/Models/DatabaseModels/User.js.map +1 -1
- package/build/dist/Server/API/BillingPaymentMethodAPI.js +6 -5
- package/build/dist/Server/API/BillingPaymentMethodAPI.js.map +1 -1
- package/build/dist/Server/API/StatusPageAPI.js +1 -1
- package/build/dist/Server/API/StatusPageAPI.js.map +1 -1
- package/build/dist/Server/EnvironmentConfig.js +6 -0
- package/build/dist/Server/EnvironmentConfig.js.map +1 -1
- package/build/dist/Server/Services/StatusPageDomainService.js +12 -9
- package/build/dist/Server/Services/StatusPageDomainService.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/Email.js +8 -1
- package/build/dist/Server/Types/Workflow/Components/Email.js.map +1 -1
- package/build/dist/Server/Utils/Captcha.js +58 -0
- package/build/dist/Server/Utils/Captcha.js.map +1 -0
- package/build/dist/Server/Utils/Greenlock/Greenlock.js +7 -2
- package/build/dist/Server/Utils/Greenlock/Greenlock.js.map +1 -1
- package/build/dist/Server/Utils/Workspace/MicrosoftTeams/MicrosoftTeams.js +13 -8
- package/build/dist/Server/Utils/Workspace/MicrosoftTeams/MicrosoftTeams.js.map +1 -1
- package/build/dist/UI/Components/Captcha/Captcha.js +37 -0
- package/build/dist/UI/Components/Captcha/Captcha.js.map +1 -0
- package/build/dist/UI/Config.js +2 -0
- package/build/dist/UI/Config.js.map +1 -1
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oneuptime/common",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"@asteasolutions/zod-to-openapi": "^7.3.2",
|
|
48
48
|
"@bull-board/express": "^5.21.4",
|
|
49
49
|
"@clickhouse/client": "^1.10.1",
|
|
50
|
+
"@hcaptcha/react-hcaptcha": "^1.14.0",
|
|
50
51
|
"@elastic/elasticsearch": "^8.12.1",
|
|
51
52
|
"@monaco-editor/react": "^4.4.6",
|
|
52
53
|
"@opentelemetry/api": "^1.9.0",
|