@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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/integration-contracts",
|
|
3
|
-
"version": "0.88.
|
|
3
|
+
"version": "0.88.8",
|
|
4
4
|
"description": "Shared integration payload contracts and provider primitives for Automate.ax.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@automate.ax/codec": "0.88.
|
|
49
|
+
"@automate.ax/codec": "0.88.8",
|
|
50
50
|
"@cfworker/json-schema": "^4.1.1",
|
|
51
51
|
"@googleapis/calendar": "^15.0.0",
|
|
52
52
|
"@googleapis/forms": "^6.0.1",
|
|
@@ -1083,24 +1083,22 @@ export type components = {
|
|
|
1083
1083
|
*/
|
|
1084
1084
|
environment: string;
|
|
1085
1085
|
/**
|
|
1086
|
-
* Format: uri
|
|
1087
1086
|
* @description The URL for accessing your environment.
|
|
1088
1087
|
* @default
|
|
1089
1088
|
* @example https://staging.example.com/
|
|
1090
1089
|
*/
|
|
1091
|
-
environment_url: string;
|
|
1090
|
+
environment_url: string | "";
|
|
1092
1091
|
/**
|
|
1093
1092
|
* Format: int64
|
|
1094
1093
|
* @example 1
|
|
1095
1094
|
*/
|
|
1096
1095
|
id: number;
|
|
1097
1096
|
/**
|
|
1098
|
-
* Format: uri
|
|
1099
1097
|
* @description The URL to associate with this status.
|
|
1100
1098
|
* @default
|
|
1101
1099
|
* @example https://example.com/deployment/42/output
|
|
1102
1100
|
*/
|
|
1103
|
-
log_url: string;
|
|
1101
|
+
log_url: string | "";
|
|
1104
1102
|
/** @example MDE2OkRlcGxveW1lbnRTdGF0dXMx */
|
|
1105
1103
|
node_id: string;
|
|
1106
1104
|
performed_via_github_app?: null | components["schemas"]["integration"];
|
|
@@ -1116,12 +1114,11 @@ export type components = {
|
|
|
1116
1114
|
*/
|
|
1117
1115
|
state: "error" | "failure" | "inactive" | "pending" | "success" | "queued" | "in_progress";
|
|
1118
1116
|
/**
|
|
1119
|
-
* Format: uri
|
|
1120
1117
|
* @description Closing down notice: the URL to associate with this status.
|
|
1121
1118
|
* @default
|
|
1122
1119
|
* @example https://example.com/deployment/42/output
|
|
1123
1120
|
*/
|
|
1124
|
-
target_url: string;
|
|
1121
|
+
target_url: string | "";
|
|
1125
1122
|
/**
|
|
1126
1123
|
* Format: date-time
|
|
1127
1124
|
* @example 2012-07-20T01:19:13Z
|