@synap-core/api-types 1.0.50 → 1.1.0
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/generated.d.ts +2 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/generated.d.ts +2 -0
- package/src/index.ts +2 -2
package/dist/generated.d.ts
CHANGED
|
@@ -4201,6 +4201,7 @@ export declare const coreRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
4201
4201
|
inboxItemType?: string | undefined;
|
|
4202
4202
|
isDefault?: boolean | undefined;
|
|
4203
4203
|
isPublic?: boolean | undefined;
|
|
4204
|
+
schema?: Record<string, any> | undefined;
|
|
4204
4205
|
};
|
|
4205
4206
|
output: {
|
|
4206
4207
|
status: string;
|
|
@@ -4308,6 +4309,7 @@ export declare const coreRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
4308
4309
|
fontFamily?: string | undefined;
|
|
4309
4310
|
} | undefined;
|
|
4310
4311
|
} | undefined;
|
|
4312
|
+
schema?: Record<string, any> | undefined;
|
|
4311
4313
|
isDefault?: boolean | undefined;
|
|
4312
4314
|
isPublic?: boolean | undefined;
|
|
4313
4315
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* The AppRouter type is extracted from @synap/api during build
|
|
7
7
|
* and included in this package with no external dependencies.
|
|
8
8
|
*/
|
|
9
|
-
export type { AppRouter } from
|
|
9
|
+
export type { AppRouter } from "./generated.js";
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
package/src/generated.d.ts
CHANGED
|
@@ -4201,6 +4201,7 @@ export declare const coreRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
4201
4201
|
inboxItemType?: string | undefined;
|
|
4202
4202
|
isDefault?: boolean | undefined;
|
|
4203
4203
|
isPublic?: boolean | undefined;
|
|
4204
|
+
schema?: Record<string, any> | undefined;
|
|
4204
4205
|
};
|
|
4205
4206
|
output: {
|
|
4206
4207
|
status: string;
|
|
@@ -4308,6 +4309,7 @@ export declare const coreRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
4308
4309
|
fontFamily?: string | undefined;
|
|
4309
4310
|
} | undefined;
|
|
4310
4311
|
} | undefined;
|
|
4312
|
+
schema?: Record<string, any> | undefined;
|
|
4311
4313
|
isDefault?: boolean | undefined;
|
|
4312
4314
|
isPublic?: boolean | undefined;
|
|
4313
4315
|
};
|
package/src/index.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
* @synap-core/api-types
|
|
3
3
|
*
|
|
4
4
|
* Standalone type definitions for Synap tRPC API.
|
|
5
|
-
*
|
|
5
|
+
*
|
|
6
6
|
* The AppRouter type is extracted from @synap/api during build
|
|
7
7
|
* and included in this package with no external dependencies.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
// This will be generated during build from @synap/api
|
|
11
|
-
export type { AppRouter } from
|
|
11
|
+
export type { AppRouter } from "./generated.js";
|