@timeback/webhooks 0.1.2-beta.20260303064453 → 0.1.2-beta.20260305053803
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/dist/index.js +2 -1
- package/package.json +4 -2
package/dist/index.js
CHANGED
|
@@ -421,7 +421,8 @@ var init_util = __esm(() => {
|
|
|
421
421
|
});
|
|
422
422
|
|
|
423
423
|
// ../../internal/constants/src/endpoints.ts
|
|
424
|
-
var
|
|
424
|
+
var PLATFORM_BEYOND_AI = "BEYOND_AI";
|
|
425
|
+
var DEFAULT_PLATFORM = PLATFORM_BEYOND_AI;
|
|
425
426
|
var BEYONDAI_TOKEN_URLS = {
|
|
426
427
|
staging: "https://staging-beyond-timeback-api-2-idp.auth.us-east-1.amazoncognito.com/oauth2/token",
|
|
427
428
|
production: "https://prod-beyond-timeback-api-2-idp.auth.us-east-1.amazoncognito.com/oauth2/token"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timeback/webhooks",
|
|
3
|
-
"version": "0.1.2-beta.
|
|
3
|
+
"version": "0.1.2-beta.20260305053803",
|
|
4
4
|
"description": "Webhook management client SDK for Timeback",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -21,7 +21,9 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "bun build.ts",
|
|
23
23
|
"test": "bun test --no-env-file unit.test.ts",
|
|
24
|
-
"test:
|
|
24
|
+
"test:coverage": "bun test --coverage --coverage-reporter=lcov --no-env-file unit.test.ts",
|
|
25
|
+
"test:e2e": "bun test --no-env-file e2e.test.ts",
|
|
26
|
+
"test:e2e:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-dir=coverage-e2e --no-env-file e2e.test.ts"
|
|
25
27
|
},
|
|
26
28
|
"dependencies": {
|
|
27
29
|
"zod": "^4.2.1"
|