This package contains the core logic of the CelCash project built with ts-rest. It is responsible for managing the business rules and the data access layer.
To install this package, you need to run the following command:
npm install @ts-rest/core @cel_cash/core
This package contains the contract with the cel_cash api and the validation schemas made with zod and typos.
This package contains the contracts with the cel_cash api.
import { initClient, initContract } from '@ts-rest/core'
import {
antecipation,
auth,
cards,
chargebacks,
charges,
companies,
customers,
plans,
subscriptions,
transactions,
pix,
transfer
} from '@cel_cash/contracts'
const c = initContract()
export const contract = c.router(
{
subscriptions,
antecipation,
chargebacks,
companies,
pix,
transfer,
customers,
plans,
transactions,
charges,
auth,
},
{
pathPrefix: '',
},
)
const client = initClient(contract, {
baseUrl: baseURL,
baseHeaders: {},
})
const plans = await client.getPlans({...})
This package contains the schemas used in the project.
import { createCardBodySchema } from '@cel_cash/core/schemas'
const body = {
myId: "123",
number: "4111111111111111",
holder: "John Doe",
expiresAt: "12/2023",
cvv: "123",
}
const data = createCardBodySchema.parse(body)
This package also contains the types used in the project.
import { Plan } from '@cel_cash/core/types'
const plan: Plan = {
galaxId: 1,
myId: "123",
name: "Plan gold",
periodicity: 'monthly',
quantity: 1,
additionalInfo: "test",
PlanPrices: [{
payment: 'boleto',
value: 10000,
}],
}
Thank you for being interested in making this package better. We encourage everyone to help improve this project with new features, bug fixes, or performance improvements. Please take a little bit of your time to read our guide to make this process faster and easier.
To understand how to submit an issue, commit and create pull requests, check our Contribution Guidelines.
We expect you to follow our Code of Conduct. You can read it to understand what kind of behavior will and will not be tolerated.
MIT License © Pyxlab