@navservice/assinatura 1.49.0 → 1.50.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/build/es/index.js
CHANGED
|
@@ -18813,12 +18813,12 @@ sqliteTable('assinatura', {
|
|
|
18813
18813
|
});
|
|
18814
18814
|
})(TypeControllerAssinatura.BuscarPeloId || (TypeControllerAssinatura.BuscarPeloId = {}));
|
|
18815
18815
|
(function(BuscarPeloUsuarioId) {
|
|
18816
|
-
BuscarPeloUsuarioId.route = "/api/assinatura/usuario/:id";
|
|
18816
|
+
BuscarPeloUsuarioId.route = "/api/assinatura/:app/usuario/:id";
|
|
18817
18817
|
BuscarPeloUsuarioId.InputSchema = v4.object({
|
|
18818
18818
|
data: v4.object({
|
|
18819
18819
|
assinatura: v4.object({
|
|
18820
18820
|
usuario_id: v4.uuidv4(),
|
|
18821
|
-
app:
|
|
18821
|
+
app: AppEnumZod
|
|
18822
18822
|
})
|
|
18823
18823
|
})
|
|
18824
18824
|
});
|
|
@@ -127,7 +127,7 @@ declare namespace TypeControllerAssinatura {
|
|
|
127
127
|
type Response = AxiosResponse<t.Geral.Response.C.Output<Output>>;
|
|
128
128
|
}
|
|
129
129
|
export namespace BuscarPeloUsuarioId {
|
|
130
|
-
const route: "/api/assinatura/usuario/:id";
|
|
130
|
+
const route: "/api/assinatura/:app/usuario/:id";
|
|
131
131
|
const InputSchema: z4.ZodObject<{
|
|
132
132
|
data: z4.ZodObject<{
|
|
133
133
|
assinatura: z4.ZodObject<{
|