lancer-shared 1.2.335 → 1.2.336

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.
@@ -6677,6 +6677,7 @@ const proxyProviderSchema = z.enum([
6677
6677
  'mars',
6678
6678
  ]);
6679
6679
  const proxyTypeSchema = z.enum(['rotating', 'static']);
6680
+ const proxyProtocolSchema = z.enum(['socks5', 'http']);
6680
6681
  const proxySchema = z.object({
6681
6682
  id: z.string(),
6682
6683
  externalId: z.string(),
@@ -6694,6 +6695,7 @@ const proxySchema = z.object({
6694
6695
  region: z.string().nullable(),
6695
6696
  accountId: z.string().nullable(),
6696
6697
  type: proxyTypeSchema,
6698
+ protocol: proxyProtocolSchema.nullable().optional(),
6697
6699
  });
6698
6700
  const externalProxySchema = proxySchema.omit({
6699
6701
  id: true,
@@ -25019,6 +25021,7 @@ exports.proxyAvailableReplacementsSchema = proxyAvailableReplacementsSchema;
25019
25021
  exports.proxyCountryCodeToName = proxyCountryCodeToName;
25020
25022
  exports.proxyCountryEnum = proxyCountryEnum;
25021
25023
  exports.proxyNotReachableException = proxyNotReachableException;
25024
+ exports.proxyProtocolSchema = proxyProtocolSchema;
25022
25025
  exports.proxyProviderSchema = proxyProviderSchema;
25023
25026
  exports.proxySchema = proxySchema;
25024
25027
  exports.proxyStatusSchema = proxyStatusSchema;