@navservice/assinatura 1.48.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.
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { CheckoutStripe } from "./componentes/checkout/Stripe";
|
|
2
2
|
export { CheckoutAssinaturaStripe } from "./componentes/checkout/CheckoutAssinaturaStripe";
|
|
3
|
+
export { default as TypesAssinatura } from "../../shared/types";
|
|
3
4
|
export { contexto_assinatura } from "./contexto/contexto_assinatura";
|
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
|
});
|
|
@@ -19598,4 +19598,4 @@ function CheckoutAssinaturaStripe() {
|
|
|
19598
19598
|
]
|
|
19599
19599
|
});
|
|
19600
19600
|
}
|
|
19601
|
-
export { CheckoutAssinaturaStripe, CheckoutStripe, contexto_assinatura };
|
|
19601
|
+
export { CheckoutAssinaturaStripe, CheckoutStripe, shared_types as TypesAssinatura, contexto_assinatura };
|
|
@@ -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<{
|