@be-logixpair/api 0.0.12 → 0.0.13
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 +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8434,7 +8434,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
8434
8434
|
is_flammable?: boolean | undefined;
|
|
8435
8435
|
is_timber?: boolean | undefined;
|
|
8436
8436
|
is_vent_required?: boolean | undefined;
|
|
8437
|
-
expiration_date?:
|
|
8437
|
+
expiration_date?: string | null | undefined;
|
|
8438
8438
|
};
|
|
8439
8439
|
output: {
|
|
8440
8440
|
data: {
|
|
@@ -8491,7 +8491,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
8491
8491
|
is_flammable?: boolean | undefined;
|
|
8492
8492
|
is_timber?: boolean | undefined;
|
|
8493
8493
|
is_vent_required?: boolean | undefined;
|
|
8494
|
-
expiration_date?:
|
|
8494
|
+
expiration_date?: string | null | undefined;
|
|
8495
8495
|
};
|
|
8496
8496
|
output: {
|
|
8497
8497
|
data: {
|
|
@@ -9846,8 +9846,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
9846
9846
|
id_currency_to?: number | null | undefined;
|
|
9847
9847
|
id_exchange_rate_type?: number | null | undefined;
|
|
9848
9848
|
rate?: string | null | undefined;
|
|
9849
|
-
start_date?:
|
|
9850
|
-
end_date?:
|
|
9849
|
+
start_date?: string | null | undefined;
|
|
9850
|
+
end_date?: string | null | undefined;
|
|
9851
9851
|
};
|
|
9852
9852
|
output: {
|
|
9853
9853
|
data: {
|
|
@@ -9888,8 +9888,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
9888
9888
|
id_currency_to?: number | null | undefined;
|
|
9889
9889
|
id_exchange_rate_type?: number | null | undefined;
|
|
9890
9890
|
rate?: string | null | undefined;
|
|
9891
|
-
start_date?:
|
|
9892
|
-
end_date?:
|
|
9891
|
+
start_date?: string | null | undefined;
|
|
9892
|
+
end_date?: string | null | undefined;
|
|
9893
9893
|
};
|
|
9894
9894
|
output: {
|
|
9895
9895
|
data: {
|