@cubist-labs/cubesigner-sdk 0.2.21 → 0.2.28

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cubist-labs/cubesigner-sdk",
3
3
  "author": "Cubist, Inc.",
4
- "version": "0.2.21",
4
+ "version": "0.2.28",
5
5
  "description": "CubeSigner TypeScript SDK",
6
6
  "homepage": "https://github.com/cubist-labs/CubeSigner-TypeScript-SDK",
7
7
  "bugs": "https://github.com/cubist-labs/CubeSigner-TypeScript-SDK/issues",
@@ -36,10 +36,10 @@
36
36
  "@types/chai": "^4.3.11",
37
37
  "@types/chai-as-promised": "^7.1.8",
38
38
  "@types/jest": "^29.5.10",
39
- "@types/node": "^20.9.2",
39
+ "@types/node": "^20.10.4",
40
40
  "@types/node-fetch": "^2.6.9",
41
- "@types/tmp": "^0.2.3",
42
- "@typescript-eslint/eslint-plugin": "^6.13.1",
41
+ "@types/tmp": "^0.2.6",
42
+ "@typescript-eslint/eslint-plugin": "^6.13.2",
43
43
  "chai": "^4.3.10",
44
44
  "chai-as-promised": "^7.1.1",
45
45
  "dotenv": "^16.3.1",
@@ -49,14 +49,14 @@
49
49
  "jest": "^29.7.0",
50
50
  "openapi-typescript": "^6.7.1",
51
51
  "otplib": "^12.0.1",
52
- "prettier": "3.1.0",
52
+ "prettier": "3.1.1",
53
53
  "tmp": "^0.2.1",
54
54
  "ts-jest": "^29.1.0",
55
55
  "ts-node": "^10.9.1",
56
- "typescript": "^5.3.2"
56
+ "typescript": "^5.3.3"
57
57
  },
58
58
  "optionalDependencies": {
59
- "@aws-sdk/client-cognito-identity-provider": "^3.454.0",
59
+ "@aws-sdk/client-cognito-identity-provider": "^3.470.0",
60
60
  "@hpke/core": "^1.2.5"
61
61
  },
62
62
  "prettier": {
package/dist/src/api.d.ts CHANGED
@@ -38,23 +38,6 @@ export type FetchClient<Op extends keyof operations> = ReturnType<typeof createC
38
38
  * {@link FetchResponse<T>}) when that response is successful.
39
39
  */
40
40
  export type FetchResponseSuccessData<T> = Required<FetchResponse<T>>["data"];
41
- /**
42
- * Error response type, thrown on non-successful responses.
43
- */
44
- export declare class ErrResponse extends Error {
45
- /** Operation that produced this error */
46
- readonly operation?: keyof operations;
47
- /** HTTP status code text (derived from `this.status`) */
48
- readonly statusText?: string;
49
- /** HTTP status code */
50
- readonly status?: number;
51
- /** HTTP response url */
52
- readonly url?: string;
53
- /**
54
- * @param {Partial<ErrResponse>} init Initializer
55
- */
56
- constructor(init: Partial<ErrResponse>);
57
- }
58
41
  /**
59
42
  * Wrapper around an open-fetch client restricted to a single operation.
60
43
  * The restriction applies only when type checking, the actual