@navservice/core 1.89.0 → 1.90.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.
- package/build/es/types/index.d.ts +1 -1
- package/build/es/utils/_environment.d.ts +3 -3
- package/build/es/utils/index.d.ts +2 -2
- package/build/lib/index.cjs +1 -0
- package/build/lib/types/index.d.ts +1 -1
- package/build/lib/utils/_environment.d.ts +3 -3
- package/build/lib/utils/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ declare namespace t {
|
|
|
7
7
|
}
|
|
8
8
|
namespace Geral {
|
|
9
9
|
export import Response = TypeControllerResponse;
|
|
10
|
-
type BaseUrl = "PUBLIC_BASE_URL_BACKEND_FINANCEIRO" | "PUBLIC_BASE_URL_BACKEND_USUARIO" | "PUBLIC_BASE_URL_BACKEND_BUCKET";
|
|
10
|
+
type BaseUrl = "PUBLIC_BASE_URL_BACKEND_FINANCEIRO" | "PUBLIC_BASE_URL_BACKEND_USUARIO" | "PUBLIC_BASE_URL_BACKEND_BUCKET" | "PUBLIC_BASE_URL_CLOUDFLARE_BUCKET_PUBLIC";
|
|
11
11
|
}
|
|
12
12
|
interface Context extends HonoContext {
|
|
13
13
|
env: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import t from "../types";
|
|
2
2
|
declare const _environment: {
|
|
3
3
|
new (): {};
|
|
4
|
-
set(key: BaseUrl, props: string): void;
|
|
5
|
-
get(key: BaseUrl): BaseUrl;
|
|
4
|
+
set(key: t.Geral.BaseUrl, props: string): void;
|
|
5
|
+
get(key: t.Geral.BaseUrl): t.Geral.BaseUrl;
|
|
6
6
|
};
|
|
7
7
|
export default _environment;
|
|
@@ -176,8 +176,8 @@ declare const utils: {
|
|
|
176
176
|
};
|
|
177
177
|
environment: {
|
|
178
178
|
new (): {};
|
|
179
|
-
set(key: import("
|
|
180
|
-
get(key: import("
|
|
179
|
+
set(key: import("..").TypesCore.Geral.BaseUrl, props: string): void;
|
|
180
|
+
get(key: import("..").TypesCore.Geral.BaseUrl): import("..").TypesCore.Geral.BaseUrl;
|
|
181
181
|
};
|
|
182
182
|
};
|
|
183
183
|
export default utils;
|
package/build/lib/index.cjs
CHANGED
|
@@ -7,7 +7,7 @@ declare namespace t {
|
|
|
7
7
|
}
|
|
8
8
|
namespace Geral {
|
|
9
9
|
export import Response = TypeControllerResponse;
|
|
10
|
-
type BaseUrl = "PUBLIC_BASE_URL_BACKEND_FINANCEIRO" | "PUBLIC_BASE_URL_BACKEND_USUARIO" | "PUBLIC_BASE_URL_BACKEND_BUCKET";
|
|
10
|
+
type BaseUrl = "PUBLIC_BASE_URL_BACKEND_FINANCEIRO" | "PUBLIC_BASE_URL_BACKEND_USUARIO" | "PUBLIC_BASE_URL_BACKEND_BUCKET" | "PUBLIC_BASE_URL_CLOUDFLARE_BUCKET_PUBLIC";
|
|
11
11
|
}
|
|
12
12
|
interface Context extends HonoContext {
|
|
13
13
|
env: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import t from "../types";
|
|
2
2
|
declare const _environment: {
|
|
3
3
|
new (): {};
|
|
4
|
-
set(key: BaseUrl, props: string): void;
|
|
5
|
-
get(key: BaseUrl): BaseUrl;
|
|
4
|
+
set(key: t.Geral.BaseUrl, props: string): void;
|
|
5
|
+
get(key: t.Geral.BaseUrl): t.Geral.BaseUrl;
|
|
6
6
|
};
|
|
7
7
|
export default _environment;
|
|
@@ -176,8 +176,8 @@ declare const utils: {
|
|
|
176
176
|
};
|
|
177
177
|
environment: {
|
|
178
178
|
new (): {};
|
|
179
|
-
set(key: import("
|
|
180
|
-
get(key: import("
|
|
179
|
+
set(key: import("..").TypesCore.Geral.BaseUrl, props: string): void;
|
|
180
|
+
get(key: import("..").TypesCore.Geral.BaseUrl): import("..").TypesCore.Geral.BaseUrl;
|
|
181
181
|
};
|
|
182
182
|
};
|
|
183
183
|
export default utils;
|