shoal-web-sdk 0.0.99 → 0.0.100
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/sdk/types.gen.d.ts +1 -1
- package/dist/sdk/zod.gen.d.ts +2 -0
- package/dist/sdk/zod.gen.js +2 -1
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export type ClientOptions = {
|
|
|
4
4
|
export type HealthResponse = {
|
|
5
5
|
status: string;
|
|
6
6
|
};
|
|
7
|
-
export type ErrorCode = 'UNKNOWN_ERROR' | 'AUTHORISATION_ERROR' | 'CONTENT_NOT_FOUND' | 'INVALID_PAGINATION' | 'INVALID_REQUEST_BODY' | 'INVALID_PATH_PARAM' | 'MISSING_CONTEXT_VALUE' | 'CONSTRAINT_ERROR' | 'PROJECT_CREATION_ERROR' | 'INVALID_QUERY_PARAM' | 'EXPIRED';
|
|
7
|
+
export type ErrorCode = 'UNKNOWN_ERROR' | 'AUTHORISATION_ERROR' | 'CONTENT_NOT_FOUND' | 'INVALID_PAGINATION' | 'INVALID_REQUEST_BODY' | 'INVALID_PATH_PARAM' | 'MISSING_CONTEXT_VALUE' | 'CONSTRAINT_ERROR' | 'PROJECT_CREATION_ERROR' | 'INVALID_QUERY_PARAM' | 'EXPIRED' | 'IDENTITY_NOT_FOUND';
|
|
8
8
|
export type ErrorResponse = {
|
|
9
9
|
message: string;
|
|
10
10
|
internalCode: ErrorCode;
|
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export declare const zErrorCode: z.ZodEnum<{
|
|
|
14
14
|
PROJECT_CREATION_ERROR: "PROJECT_CREATION_ERROR";
|
|
15
15
|
INVALID_QUERY_PARAM: "INVALID_QUERY_PARAM";
|
|
16
16
|
EXPIRED: "EXPIRED";
|
|
17
|
+
IDENTITY_NOT_FOUND: "IDENTITY_NOT_FOUND";
|
|
17
18
|
}>;
|
|
18
19
|
export declare const zErrorResponse: z.ZodObject<{
|
|
19
20
|
message: z.ZodString;
|
|
@@ -29,6 +30,7 @@ export declare const zErrorResponse: z.ZodObject<{
|
|
|
29
30
|
PROJECT_CREATION_ERROR: "PROJECT_CREATION_ERROR";
|
|
30
31
|
INVALID_QUERY_PARAM: "INVALID_QUERY_PARAM";
|
|
31
32
|
EXPIRED: "EXPIRED";
|
|
33
|
+
IDENTITY_NOT_FOUND: "IDENTITY_NOT_FOUND";
|
|
32
34
|
}>;
|
|
33
35
|
}, z.core.$strip>;
|
|
34
36
|
export declare const zCreateProject: z.ZodObject<{
|
package/dist/sdk/zod.gen.js
CHANGED