@squidcloud/client 1.0.242 → 1.0.243

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.
@@ -6,12 +6,8 @@ export declare class ValidationError extends Error {
6
6
  constructor(error: string, statusCode: StatusCode, details?: Record<string, any>);
7
7
  }
8
8
  export declare function isValidId(id: unknown): boolean;
9
- export declare function validateId(id: unknown, message: string): void;
10
9
  export declare function validateFieldSort(fieldSort: unknown): void;
11
- export declare function validateMutations(mutations: unknown): void;
12
10
  export declare function validateQueryLimit(limit: unknown): void;
13
- /** Returns true if the value is not an empty string (undefined/null are considered empty). */
14
- export declare function isNotEmpty(value: string | undefined | null): value is string;
15
11
  /**
16
12
  * All type names returned by 'typeof' supported by JavaScript:
17
13
  * {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof}.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/client",
3
- "version": "1.0.242",
3
+ "version": "1.0.243",
4
4
  "description": "A typescript implementation of the Squid client",
5
5
  "main": "dist/cjs/index.js",
6
6
  "types": "dist/typescript-client/src/index.d.ts",
@@ -1 +0,0 @@
1
- export {};