@distilled.cloud/cloudflare 0.16.0 → 0.16.2

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.
@@ -53993,7 +53993,7 @@ export const GetTunnelCloudflaredConfigurationResponse =
53993
53993
  Schema.Struct({
53994
53994
  ingress: Schema.optional(Schema.Union([
53995
53995
  Schema.Array(Schema.Struct({
53996
- hostname: Schema.String,
53996
+ hostname: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
53997
53997
  service: Schema.String,
53998
53998
  originRequest: Schema.optional(Schema.Union([
53999
53999
  Schema.Struct({
@@ -54081,7 +54081,7 @@ export const PutTunnelCloudflaredConfigurationRequest =
54081
54081
  accountId: Schema.String.pipe(T.HttpPath("account_id")),
54082
54082
  config: Schema.optional(Schema.Struct({
54083
54083
  ingress: Schema.optional(Schema.Array(Schema.Struct({
54084
- hostname: Schema.String,
54084
+ hostname: Schema.optional(Schema.String),
54085
54085
  service: Schema.String,
54086
54086
  originRequest: Schema.optional(Schema.Struct({
54087
54087
  access: Schema.optional(Schema.Struct({
@@ -54139,7 +54139,7 @@ export const PutTunnelCloudflaredConfigurationResponse =
54139
54139
  Schema.Struct({
54140
54140
  ingress: Schema.optional(Schema.Union([
54141
54141
  Schema.Array(Schema.Struct({
54142
- hostname: Schema.String,
54142
+ hostname: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
54143
54143
  service: Schema.String,
54144
54144
  originRequest: Schema.optional(Schema.Union([
54145
54145
  Schema.Struct({