@timeback/powerpath 0.1.3 → 0.1.4
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/errors.d.ts +1 -9
- package/dist/index.d.ts +1002 -15
- package/dist/public-types.d.ts +660 -0
- package/dist/public-types.d.ts.map +1 -0
- package/package.json +3 -3
- /package/dist/{types.js → public-types.js} +0 -0
package/dist/errors.d.ts
CHANGED
|
@@ -1,9 +1 @@
|
|
|
1
|
-
|
|
2
|
-
* PowerPath Error Classes
|
|
3
|
-
*
|
|
4
|
-
* Re-exports common errors from `@timeback/internal-client-infra`.
|
|
5
|
-
* PowerPath uses the same error format as other Timeback clients.
|
|
6
|
-
*/
|
|
7
|
-
import { ApiError, ForbiddenError, InputValidationError, NotFoundError, UnauthorizedError, ValidationError } from '@timeback/internal-client-infra';
|
|
8
|
-
export { ApiError as PowerPathError, ForbiddenError, InputValidationError, NotFoundError, UnauthorizedError, ValidationError, };
|
|
9
|
-
//# sourceMappingURL=errors.d.ts.map
|
|
1
|
+
export { ForbiddenError, InputValidationError, NotFoundError, ApiError as PowerPathError, UnauthorizedError, ValidationError } from '@timeback/internal-client-infra';
|