@be-logixpair/api 0.0.34 → 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.
- package/dist/index.d.ts +34 -0
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -650163,6 +650163,22 @@ declare const appRouter: BuiltRouter<{
|
|
|
650163
650163
|
decimal_unit: number | null;
|
|
650164
650164
|
iso_decimal: number | null;
|
|
650165
650165
|
} | null;
|
|
650166
|
+
awb_currency: {
|
|
650167
|
+
symbol: string | null;
|
|
650168
|
+
is_active: boolean | null;
|
|
650169
|
+
id: number;
|
|
650170
|
+
logic_code: string | null;
|
|
650171
|
+
created_at: Date | null;
|
|
650172
|
+
created_by: string | null;
|
|
650173
|
+
updated_at: Date | null;
|
|
650174
|
+
updated_by: string | null;
|
|
650175
|
+
currency_code: string | null;
|
|
650176
|
+
currency_name: string | null;
|
|
650177
|
+
major_unit: string | null;
|
|
650178
|
+
minor_unit: string | null;
|
|
650179
|
+
decimal_unit: number | null;
|
|
650180
|
+
iso_decimal: number | null;
|
|
650181
|
+
} | null;
|
|
650166
650182
|
} & {
|
|
650167
650183
|
is_active: boolean | null;
|
|
650168
650184
|
id: number;
|
|
@@ -650226,6 +650242,22 @@ declare const appRouter: BuiltRouter<{
|
|
|
650226
650242
|
decimal_unit: number | null;
|
|
650227
650243
|
iso_decimal: number | null;
|
|
650228
650244
|
} | null;
|
|
650245
|
+
awb_currency: {
|
|
650246
|
+
symbol: string | null;
|
|
650247
|
+
is_active: boolean | null;
|
|
650248
|
+
id: number;
|
|
650249
|
+
logic_code: string | null;
|
|
650250
|
+
created_at: Date | null;
|
|
650251
|
+
created_by: string | null;
|
|
650252
|
+
updated_at: Date | null;
|
|
650253
|
+
updated_by: string | null;
|
|
650254
|
+
currency_code: string | null;
|
|
650255
|
+
currency_name: string | null;
|
|
650256
|
+
major_unit: string | null;
|
|
650257
|
+
minor_unit: string | null;
|
|
650258
|
+
decimal_unit: number | null;
|
|
650259
|
+
iso_decimal: number | null;
|
|
650260
|
+
} | null;
|
|
650229
650261
|
} & {
|
|
650230
650262
|
is_active: boolean | null;
|
|
650231
650263
|
id: number;
|
|
@@ -653589,6 +653621,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
653589
653621
|
is_active?: boolean | undefined;
|
|
653590
653622
|
code?: string | null | undefined;
|
|
653591
653623
|
name?: string | null | undefined;
|
|
653624
|
+
prefix?: number | null | undefined;
|
|
653592
653625
|
};
|
|
653593
653626
|
output: {
|
|
653594
653627
|
data: {
|
|
@@ -653624,6 +653657,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
653624
653657
|
is_active?: boolean | undefined;
|
|
653625
653658
|
code?: string | null | undefined;
|
|
653626
653659
|
name?: string | null | undefined;
|
|
653660
|
+
prefix?: number | null | undefined;
|
|
653627
653661
|
};
|
|
653628
653662
|
output: {
|
|
653629
653663
|
data: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-logixpair/api",
|
|
3
|
-
"version": "0.0.
|
|
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
|
-
"
|
|
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"
|