@settlemint/sdk-utils 2.3.5-pr6a80e89c → 2.3.5-pr7af0a6ad
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/README.md +5 -5
- package/dist/environment.cjs +2 -1
- package/dist/environment.cjs.map +1 -1
- package/dist/environment.d.cts +8 -0
- package/dist/environment.d.ts +8 -0
- package/dist/environment.js +2 -1
- package/dist/environment.js.map +1 -1
- package/dist/validation.cjs +2 -1
- package/dist/validation.cjs.map +1 -1
- package/dist/validation.d.cts +8 -0
- package/dist/validation.d.ts +8 -0
- package/dist/validation.js +2 -1
- package/dist/validation.js.map +1 -1
- package/package.json +2 -2
package/dist/environment.d.cts
CHANGED
|
@@ -108,6 +108,10 @@ declare const DotEnvSchema: z.ZodObject<{
|
|
|
108
108
|
warn: "warn";
|
|
109
109
|
none: "none";
|
|
110
110
|
}>>;
|
|
111
|
+
NODE_TLS_REJECT_UNAUTHORIZED: z.ZodOptional<z.ZodEnum<{
|
|
112
|
+
1: "1";
|
|
113
|
+
0: "0";
|
|
114
|
+
}>>;
|
|
111
115
|
}, z.core.$strip>;
|
|
112
116
|
/**
|
|
113
117
|
* Type definition for the environment variables schema.
|
|
@@ -164,6 +168,10 @@ declare const DotEnvSchemaPartial: z.ZodObject<{
|
|
|
164
168
|
warn: "warn";
|
|
165
169
|
none: "none";
|
|
166
170
|
}>>>;
|
|
171
|
+
NODE_TLS_REJECT_UNAUTHORIZED: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
172
|
+
1: "1";
|
|
173
|
+
0: "0";
|
|
174
|
+
}>>>;
|
|
167
175
|
}, z.core.$strip>;
|
|
168
176
|
/**
|
|
169
177
|
* Type definition for the partial environment variables schema.
|
package/dist/environment.d.ts
CHANGED
|
@@ -108,6 +108,10 @@ declare const DotEnvSchema: z.ZodObject<{
|
|
|
108
108
|
warn: "warn";
|
|
109
109
|
none: "none";
|
|
110
110
|
}>>;
|
|
111
|
+
NODE_TLS_REJECT_UNAUTHORIZED: z.ZodOptional<z.ZodEnum<{
|
|
112
|
+
1: "1";
|
|
113
|
+
0: "0";
|
|
114
|
+
}>>;
|
|
111
115
|
}, z.core.$strip>;
|
|
112
116
|
/**
|
|
113
117
|
* Type definition for the environment variables schema.
|
|
@@ -164,6 +168,10 @@ declare const DotEnvSchemaPartial: z.ZodObject<{
|
|
|
164
168
|
warn: "warn";
|
|
165
169
|
none: "none";
|
|
166
170
|
}>>>;
|
|
171
|
+
NODE_TLS_REJECT_UNAUTHORIZED: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
172
|
+
1: "1";
|
|
173
|
+
0: "0";
|
|
174
|
+
}>>>;
|
|
167
175
|
}, z.core.$strip>;
|
|
168
176
|
/**
|
|
169
177
|
* Type definition for the partial environment variables schema.
|
package/dist/environment.js
CHANGED
|
@@ -10922,7 +10922,8 @@ const DotEnvSchema = object({
|
|
|
10922
10922
|
"warn",
|
|
10923
10923
|
"error",
|
|
10924
10924
|
"none"
|
|
10925
|
-
]).default("warn")
|
|
10925
|
+
]).default("warn"),
|
|
10926
|
+
NODE_TLS_REJECT_UNAUTHORIZED: _enum(["0", "1"]).optional()
|
|
10926
10927
|
});
|
|
10927
10928
|
/**
|
|
10928
10929
|
* Partial version of the environment variables schema where all fields are optional.
|