@autohq/cli 0.1.113 → 0.1.115

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.
@@ -21343,7 +21343,11 @@ var GithubPullRequestMergeabilityWorkflowResultSchema = external_exports.union([
21343
21343
  external_exports.object({
21344
21344
  kind: external_exports.literal("not_conflict"),
21345
21345
  mergeable: external_exports.boolean().nullable(),
21346
- mergeableState: external_exports.string().optional()
21346
+ mergeableState: external_exports.string().optional(),
21347
+ // Present when the pull request was behind its base with auto-merge
21348
+ // enabled: "updated" if a branch update was requested, "skipped" if
21349
+ // GitHub rejected it (e.g. the head moved since lookup).
21350
+ branchUpdate: external_exports.enum(["updated", "skipped"]).optional()
21347
21351
  })
21348
21352
  ]);
21349
21353
  var EventRoutingTriggerResultSchema = external_exports.object({
@@ -26206,7 +26210,7 @@ Object.assign(lookup, {
26206
26210
  // package.json
26207
26211
  var package_default = {
26208
26212
  name: "@autohq/cli",
26209
- version: "0.1.113",
26213
+ version: "0.1.115",
26210
26214
  license: "SEE LICENSE IN README.md",
26211
26215
  publishConfig: {
26212
26216
  access: "public"
package/dist/index.js CHANGED
@@ -17974,7 +17974,11 @@ var init_trigger_router = __esm({
17974
17974
  external_exports.object({
17975
17975
  kind: external_exports.literal("not_conflict"),
17976
17976
  mergeable: external_exports.boolean().nullable(),
17977
- mergeableState: external_exports.string().optional()
17977
+ mergeableState: external_exports.string().optional(),
17978
+ // Present when the pull request was behind its base with auto-merge
17979
+ // enabled: "updated" if a branch update was requested, "skipped" if
17980
+ // GitHub rejected it (e.g. the head moved since lookup).
17981
+ branchUpdate: external_exports.enum(["updated", "skipped"]).optional()
17978
17982
  })
17979
17983
  ]);
17980
17984
  EventRoutingTriggerResultSchema = external_exports.object({
@@ -21172,7 +21176,7 @@ var init_package = __esm({
21172
21176
  "package.json"() {
21173
21177
  package_default = {
21174
21178
  name: "@autohq/cli",
21175
- version: "0.1.113",
21179
+ version: "0.1.115",
21176
21180
  license: "SEE LICENSE IN README.md",
21177
21181
  publishConfig: {
21178
21182
  access: "public"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autohq/cli",
3
- "version": "0.1.113",
3
+ "version": "0.1.115",
4
4
  "license": "SEE LICENSE IN README.md",
5
5
  "publishConfig": {
6
6
  "access": "public"