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