@xoxno/sdk-js 1.0.73 → 1.0.74
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.d.ts +3 -1
- package/package.json +1 -1
package/dist/sdk/types.d.ts
CHANGED
|
@@ -77,5 +77,7 @@ type SDKUnion = {
|
|
|
77
77
|
[R in keyof typeof routes]: PathToTree<R, (typeof routes)[R]['input'], (typeof routes)[R]['output'], (typeof routes)[R]>;
|
|
78
78
|
}[keyof typeof routes];
|
|
79
79
|
export type SDK = SimplifyDeep<MergeRec<SDKUnion>>;
|
|
80
|
-
export type SDKTags =
|
|
80
|
+
export type SDKTags = {
|
|
81
|
+
[K in keyof typeof endpoints]: IsEmptyObj<(typeof endpoints)[K]['input']> extends true ? IsEmptyObj<(typeof endpoints)[K]['output']> extends true ? never : K : K;
|
|
82
|
+
}[keyof typeof endpoints];
|
|
81
83
|
export {};
|