(feat): better connection management, utility functions & tests
This commit is contained in:
parent
b8889812c5
commit
822dfea577
14 changed files with 448 additions and 39 deletions
12
dist/schema.d.ts
vendored
12
dist/schema.d.ts
vendored
|
|
@ -16,8 +16,18 @@ export declare function createSchema(appData: ZodObject): {
|
|||
request: z.ZodObject<{
|
||||
challenge: z.ZodBase64;
|
||||
}, z.core.$strip>;
|
||||
response: z.ZodObject<{}, z.core.$strip>;
|
||||
};
|
||||
load_app_data: {
|
||||
request: z.ZodObject<{}, z.core.$strip>;
|
||||
response: z.ZodObject<{
|
||||
app_data: z.ZodObject<z.core.$ZodLooseShape, z.core.$strip>;
|
||||
app_data: z.ZodString;
|
||||
}, z.core.$strip>;
|
||||
};
|
||||
save_app_data: {
|
||||
request: z.ZodObject<{
|
||||
app_data: z.ZodString;
|
||||
}, z.core.$strip>;
|
||||
response: z.ZodObject<{}, z.core.$strip>;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue