@automate.ax/integration-contracts 0.88.7 → 0.88.8

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.
@@ -1081,24 +1081,22 @@ export type components = {
1081
1081
  */
1082
1082
  environment: string;
1083
1083
  /**
1084
- * Format: uri
1085
1084
  * @description The URL for accessing your environment.
1086
1085
  * @default
1087
1086
  * @example https://staging.example.com/
1088
1087
  */
1089
- environment_url: string;
1088
+ environment_url: string | "";
1090
1089
  /**
1091
1090
  * Format: int64
1092
1091
  * @example 1
1093
1092
  */
1094
1093
  id: number;
1095
1094
  /**
1096
- * Format: uri
1097
1095
  * @description The URL to associate with this status.
1098
1096
  * @default
1099
1097
  * @example https://example.com/deployment/42/output
1100
1098
  */
1101
- log_url: string;
1099
+ log_url: string | "";
1102
1100
  /** @example MDE2OkRlcGxveW1lbnRTdGF0dXMx */
1103
1101
  node_id: string;
1104
1102
  performed_via_github_app?: null | components["schemas"]["integration"];
@@ -1114,12 +1112,11 @@ export type components = {
1114
1112
  */
1115
1113
  state: "error" | "failure" | "inactive" | "pending" | "success" | "queued" | "in_progress";
1116
1114
  /**
1117
- * Format: uri
1118
1115
  * @description Closing down notice: the URL to associate with this status.
1119
1116
  * @default
1120
1117
  * @example https://example.com/deployment/42/output
1121
1118
  */
1122
- target_url: string;
1119
+ target_url: string | "";
1123
1120
  /**
1124
1121
  * Format: date-time
1125
1122
  * @example 2012-07-20T01:19:13Z
@@ -6905,9 +6905,9 @@ export declare const GITHUB_DEPLOYMENT_STATUS_SCHEMA: z.ZodType<{
6905
6905
  deployment_url: string;
6906
6906
  description: string;
6907
6907
  environment: string;
6908
- environment_url: string;
6908
+ environment_url: string | "";
6909
6909
  id: number;
6910
- log_url: string;
6910
+ log_url: string | "";
6911
6911
  node_id: string;
6912
6912
  performed_via_github_app?: {
6913
6913
  client_id?: string | undefined;
@@ -6968,7 +6968,7 @@ export declare const GITHUB_DEPLOYMENT_STATUS_SCHEMA: z.ZodType<{
6968
6968
  } | null | undefined;
6969
6969
  repository_url: string;
6970
6970
  state: "error" | "failure" | "inactive" | "pending" | "success" | "queued" | "in_progress";
6971
- target_url: string;
6971
+ target_url: string | "";
6972
6972
  updated_at: string;
6973
6973
  url: string;
6974
6974
  }, unknown, z.core.$ZodTypeInternals<{
@@ -7000,9 +7000,9 @@ export declare const GITHUB_DEPLOYMENT_STATUS_SCHEMA: z.ZodType<{
7000
7000
  deployment_url: string;
7001
7001
  description: string;
7002
7002
  environment: string;
7003
- environment_url: string;
7003
+ environment_url: string | "";
7004
7004
  id: number;
7005
- log_url: string;
7005
+ log_url: string | "";
7006
7006
  node_id: string;
7007
7007
  performed_via_github_app?: {
7008
7008
  client_id?: string | undefined;
@@ -7063,7 +7063,7 @@ export declare const GITHUB_DEPLOYMENT_STATUS_SCHEMA: z.ZodType<{
7063
7063
  } | null | undefined;
7064
7064
  repository_url: string;
7065
7065
  state: "error" | "failure" | "inactive" | "pending" | "success" | "queued" | "in_progress";
7066
- target_url: string;
7066
+ target_url: string | "";
7067
7067
  updated_at: string;
7068
7068
  url: string;
7069
7069
  }, unknown>>;