@be-pttmj/app-api 0.0.7 → 0.0.8
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.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -33160,6 +33160,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
33160
33160
|
signed_by: string | null;
|
|
33161
33161
|
}[] | undefined;
|
|
33162
33162
|
total: number | undefined;
|
|
33163
|
+
tenant_signature: string | undefined;
|
|
33163
33164
|
};
|
|
33164
33165
|
meta: object;
|
|
33165
33166
|
}>;
|
|
@@ -33170,6 +33171,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
33170
33171
|
for_public?: string | boolean | null | undefined;
|
|
33171
33172
|
};
|
|
33172
33173
|
output: {
|
|
33174
|
+
tenant_signature?: string | undefined;
|
|
33173
33175
|
data: {
|
|
33174
33176
|
fleet: {
|
|
33175
33177
|
is_active: boolean | null;
|
|
@@ -33283,6 +33285,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
33283
33285
|
for_public?: string | boolean | null | undefined;
|
|
33284
33286
|
};
|
|
33285
33287
|
output: {
|
|
33288
|
+
tenant_signature?: string | undefined;
|
|
33286
33289
|
data: {
|
|
33287
33290
|
fleet: {
|
|
33288
33291
|
is_active: boolean | null;
|
|
@@ -34002,6 +34005,7 @@ type Context = {
|
|
|
34002
34005
|
is_admin_hr?: boolean;
|
|
34003
34006
|
is_user?: boolean;
|
|
34004
34007
|
};
|
|
34008
|
+
tenant_signature?: string;
|
|
34005
34009
|
};
|
|
34006
34010
|
//#endregion
|
|
34007
34011
|
export { type AppRouter, type Context };
|