@settlemint/sdk-utils 2.3.5-pra0b86359 → 2.3.5-pra1863462
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/validation.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/validation.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/validation.js
CHANGED
|
@@ -10451,7 +10451,8 @@ const DotEnvSchema = object({
|
|
|
10451
10451
|
"warn",
|
|
10452
10452
|
"error",
|
|
10453
10453
|
"none"
|
|
10454
|
-
]).default("warn")
|
|
10454
|
+
]).default("warn"),
|
|
10455
|
+
NODE_TLS_REJECT_UNAUTHORIZED: _enum(["0", "1"]).optional()
|
|
10455
10456
|
});
|
|
10456
10457
|
/**
|
|
10457
10458
|
* Partial version of the environment variables schema where all fields are optional.
|