@secrecy/trpc-api-types 1.33.0-feat-orgs.19 → 1.33.0-feat-orgs.21
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/index.d.cts +18 -6
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1484,13 +1484,17 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1484
1484
|
}>;
|
|
1485
1485
|
_meta: object;
|
|
1486
1486
|
_ctx_out: {};
|
|
1487
|
-
_input_in:
|
|
1488
|
-
|
|
1487
|
+
_input_in: {
|
|
1488
|
+
sessionId?: string | undefined;
|
|
1489
|
+
};
|
|
1490
|
+
_input_out: {
|
|
1491
|
+
sessionId?: string | undefined;
|
|
1492
|
+
};
|
|
1489
1493
|
_output_in: {
|
|
1490
|
-
|
|
1494
|
+
isDeleted: boolean;
|
|
1491
1495
|
};
|
|
1492
1496
|
_output_out: {
|
|
1493
|
-
|
|
1497
|
+
isDeleted: boolean;
|
|
1494
1498
|
};
|
|
1495
1499
|
}, unknown>;
|
|
1496
1500
|
jwt: _trpc_server.BuildProcedure<"query", {
|
|
@@ -1647,10 +1651,16 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1647
1651
|
sessionId: string | null;
|
|
1648
1652
|
};
|
|
1649
1653
|
_output_in: {
|
|
1650
|
-
isLoggedOut:
|
|
1654
|
+
isLoggedOut: true;
|
|
1655
|
+
isCurrentSession: boolean;
|
|
1656
|
+
} | {
|
|
1657
|
+
isLoggedOut: false;
|
|
1651
1658
|
};
|
|
1652
1659
|
_output_out: {
|
|
1653
|
-
isLoggedOut:
|
|
1660
|
+
isLoggedOut: true;
|
|
1661
|
+
isCurrentSession: boolean;
|
|
1662
|
+
} | {
|
|
1663
|
+
isLoggedOut: false;
|
|
1654
1664
|
};
|
|
1655
1665
|
}, unknown>;
|
|
1656
1666
|
masterSalt: _trpc_server.BuildProcedure<"mutation", {
|
|
@@ -16532,9 +16542,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
16532
16542
|
_ctx_out: {};
|
|
16533
16543
|
_input_in: {
|
|
16534
16544
|
isTemporary: boolean;
|
|
16545
|
+
sessionId?: string | undefined;
|
|
16535
16546
|
};
|
|
16536
16547
|
_input_out: {
|
|
16537
16548
|
isTemporary: boolean;
|
|
16549
|
+
sessionId?: string | undefined;
|
|
16538
16550
|
};
|
|
16539
16551
|
_output_in: {
|
|
16540
16552
|
isDeleted: boolean;
|