@timeback/powerpath 0.1.7-beta.20260227023028 → 0.1.7-beta.20260303064453
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/constants.d.ts +0 -10
- package/dist/constants.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/lib/index.d.ts +0 -2
- package/dist/lib/index.d.ts.map +1 -1
- package/package.json +1 -3
package/dist/constants.d.ts
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Configuration constants for the PowerPath client.
|
|
5
5
|
*/
|
|
6
|
-
import type { ClientUrlMaps, Platform } from '@timeback/internal-client-infra';
|
|
7
6
|
/**
|
|
8
7
|
* Environment variable names for PowerPath configuration fallback.
|
|
9
8
|
* Priority: TIMEBACK_API_* > TIMEBACK_* > POWERPATH_* (legacy)
|
|
@@ -14,13 +13,4 @@ export declare const POWERPATH_ENV_VARS: {
|
|
|
14
13
|
readonly clientSecret: readonly ["TIMEBACK_API_CLIENT_SECRET", "TIMEBACK_CLIENT_SECRET", "POWERPATH_CLIENT_SECRET"];
|
|
15
14
|
readonly authUrl: readonly ["TIMEBACK_API_AUTH_URL", "TIMEBACK_AUTH_URL", "POWERPATH_TOKEN_URL"];
|
|
16
15
|
};
|
|
17
|
-
/**
|
|
18
|
-
* Get URL maps for a specific platform.
|
|
19
|
-
* Defaults to 'BEYOND_AI' for backwards compatibility.
|
|
20
|
-
*
|
|
21
|
-
* Note: PowerPath uses the main API server.
|
|
22
|
-
* @param platform - Platform name
|
|
23
|
-
* @returns Client URL maps for the platform
|
|
24
|
-
*/
|
|
25
|
-
export declare function getUrlMapsForPlatform(platform?: Platform): ClientUrlMaps;
|
|
26
16
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;;GAIG;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAMH;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;;;;CASrB,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -5365,7 +5365,7 @@ function handleIntersectionResults(result, left, right) {
|
|
|
5365
5365
|
result.issues.push(iss);
|
|
5366
5366
|
}
|
|
5367
5367
|
}
|
|
5368
|
-
const bothKeys = [...unrecKeys].filter(([,
|
|
5368
|
+
const bothKeys = [...unrecKeys].filter(([, f]) => f.l && f.r).map(([k]) => k);
|
|
5369
5369
|
if (bothKeys.length && unrecIssue) {
|
|
5370
5370
|
result.issues.push({ ...unrecIssue, keys: bothKeys });
|
|
5371
5371
|
}
|
|
@@ -11754,8 +11754,8 @@ class $ZodRegistry {
|
|
|
11754
11754
|
if (p) {
|
|
11755
11755
|
const pm = { ...this.get(p) ?? {} };
|
|
11756
11756
|
delete pm.id;
|
|
11757
|
-
const
|
|
11758
|
-
return Object.keys(
|
|
11757
|
+
const f = { ...pm, ...this._map.get(schema) };
|
|
11758
|
+
return Object.keys(f).length ? f : undefined;
|
|
11759
11759
|
}
|
|
11760
11760
|
return this._map.get(schema);
|
|
11761
11761
|
}
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
|
-
export { resolveToProvider } from './resolve';
|
|
7
6
|
export { Paginator } from './pagination';
|
|
8
7
|
export { Transport } from './transport';
|
|
9
|
-
export type { ResolvedConfig } from '@timeback/internal-client-infra';
|
|
10
8
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timeback/powerpath",
|
|
3
|
-
"version": "0.1.7-beta.
|
|
3
|
+
"version": "0.1.7-beta.20260303064453",
|
|
4
4
|
"description": "PowerPath client SDK for Timeback",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -32,8 +32,6 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@timeback/internal-client-infra": "0.0.0",
|
|
35
|
-
"@timeback/internal-constants": "0.0.0",
|
|
36
|
-
"@timeback/internal-logger": "0.0.0",
|
|
37
35
|
"@timeback/internal-test": "0.0.0",
|
|
38
36
|
"@timeback/internal-utils": "0.0.0",
|
|
39
37
|
"@timeback/types": "0.0.0",
|