@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.
@@ -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.
@@ -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.
@@ -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.