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