@epilot/cli 0.1.16 → 0.1.17

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/README.md CHANGED
@@ -29,7 +29,7 @@ npm install -g @epilot/cli
29
29
 
30
30
  <!-- usage-help -->
31
31
  ```
32
- epilot v0.1.16 — CLI for epilot APIs
32
+ epilot v0.1.17 — CLI for epilot APIs
33
33
 
34
34
  USAGE
35
35
  epilot <api> <operationId> [params...] [flags]
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.0.2",
3
3
  "info": {
4
4
  "title": "Message API",
5
- "version": "1.4.0",
5
+ "version": "1.5.0",
6
6
  "description": "Send and receive email messages via your epilot organization\n"
7
7
  },
8
8
  "security": [
@@ -1680,6 +1680,16 @@
1680
1680
  "schema": {
1681
1681
  "type": "string"
1682
1682
  }
1683
+ },
1684
+ {
1685
+ "name": "unlink_mapped_entities",
1686
+ "description": "When true, also removes unassigned entities from mapped_entities on related source entities",
1687
+ "in": "query",
1688
+ "required": false,
1689
+ "schema": {
1690
+ "type": "boolean",
1691
+ "default": false
1692
+ }
1683
1693
  }
1684
1694
  ],
1685
1695
  "requestBody": {
@@ -2775,7 +2785,7 @@
2775
2785
  "timestamp": {
2776
2786
  "type": "string",
2777
2787
  "description": "Timestamp of the event",
2778
- "example": "2024-01-01T00:00:00.000Z"
2788
+ "example": "2024-01-01T00:00:00Z"
2779
2789
  }
2780
2790
  }
2781
2791
  },
@@ -11,7 +11,7 @@ import { defineCommand } from "citty";
11
11
  var main = defineCommand({
12
12
  meta: {
13
13
  name: "epilot",
14
- version: "0.1.16",
14
+ version: "0.1.17",
15
15
  description: "CLI for epilot APIs"
16
16
  },
17
17
  args: {
@@ -28,7 +28,7 @@ var main = defineCommand({
28
28
  auth: () => import("../auth-AAF6Z5WZ.js").then((m) => m.default),
29
29
  profile: () => import("../profile-EK4HSQ57.js").then((m) => m.default),
30
30
  completion: () => import("../completion-KA3HJ6PR.js").then((m) => m.default),
31
- upgrade: () => import("../upgrade-Z7XJXIDK.js").then((m) => m.default),
31
+ upgrade: () => import("../upgrade-RQP5SN7U.js").then((m) => m.default),
32
32
  "access-token": () => import("../access-token-CIM4RLBP.js").then((m) => m.default),
33
33
  address: () => import("../address-EDRTUWTP.js").then((m) => m.default),
34
34
  "address-suggestions": () => import("../address-suggestions-S5WEST2N.js").then((m) => m.default),
@@ -90,7 +90,7 @@ process.stderr.on("error", (err) => {
90
90
  if (err.code === "EPIPE") process.exit(0);
91
91
  throw err;
92
92
  });
93
- var VERSION = true ? "0.1.16" : (await null).default.version;
93
+ var VERSION = true ? "0.1.17" : (await null).default.version;
94
94
  var args = process.argv.slice(2);
95
95
  var completionsIdx = args.indexOf("--_completions");
96
96
  if (completionsIdx >= 0) {
@@ -72,7 +72,7 @@ ${GREEN}${BOLD}Upgraded to @epilot/cli@${latest}${RESET}
72
72
  }
73
73
  });
74
74
  var getCurrentVersion = () => {
75
- if (true) return "0.1.16";
75
+ if (true) return "0.1.17";
76
76
  try {
77
77
  const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
78
78
  encoding: "utf-8",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/cli",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "CLI for epilot APIs",
5
5
  "type": "module",
6
6
  "bin": {