@be-logixpair/api 0.0.35 → 0.0.36

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/package.json +3 -2
package/dist/index.d.ts CHANGED
@@ -653621,6 +653621,7 @@ declare const appRouter: BuiltRouter<{
653621
653621
  is_active?: boolean | undefined;
653622
653622
  code?: string | null | undefined;
653623
653623
  name?: string | null | undefined;
653624
+ prefix?: number | null | undefined;
653624
653625
  };
653625
653626
  output: {
653626
653627
  data: {
@@ -653656,6 +653657,7 @@ declare const appRouter: BuiltRouter<{
653656
653657
  is_active?: boolean | undefined;
653657
653658
  code?: string | null | undefined;
653658
653659
  name?: string | null | undefined;
653660
+ prefix?: number | null | undefined;
653659
653661
  };
653660
653662
  output: {
653661
653663
  data: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-logixpair/api",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -23,7 +23,8 @@
23
23
  "dist"
24
24
  ],
25
25
  "scripts": {
26
- "build": "tsdown",
26
+ "typecheck": "bunx tsc --noEmit",
27
+ "build": "bunx tsc --noEmit && tsdown",
27
28
  "build:types": "tsdown --dts-only",
28
29
  "prepublish": "cp package-p.json package.json",
29
30
  "postpublish": "git checkout package.json"