@epilot/cli 0.1.132 → 0.1.133

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.132 — CLI for epilot APIs
32
+ epilot v0.1.133 — CLI for epilot APIs
33
33
 
34
34
  USAGE
35
35
  epilot <api> <operationId> [params...] [flags]
@@ -1432,6 +1432,11 @@
1432
1432
  "additionalProperties": true,
1433
1433
  "description": "The raw SES notification (or send error) kept verbatim for a detail view."
1434
1434
  },
1435
+ "email_unsubscribed_at": {
1436
+ "type": "string",
1437
+ "format": "date-time",
1438
+ "description": "When the contact unsubscribed from email marketing (opted out). Server-managed."
1439
+ },
1435
1440
  "updated_at": {
1436
1441
  "type": "string",
1437
1442
  "format": "date-time"
@@ -1941,7 +1946,8 @@
1941
1946
  "bounced_hard",
1942
1947
  "bounced_soft",
1943
1948
  "complained",
1944
- "failed"
1949
+ "failed",
1950
+ "unsubscribed"
1945
1951
  ],
1946
1952
  "properties": {
1947
1953
  "total_emailed": {
@@ -1971,6 +1977,10 @@
1971
1977
  },
1972
1978
  "failed": {
1973
1979
  "type": "integer"
1980
+ },
1981
+ "unsubscribed": {
1982
+ "type": "integer",
1983
+ "description": "Recipients who opted out of email marketing."
1974
1984
  }
1975
1985
  }
1976
1986
  }
@@ -11,7 +11,7 @@ import { defineCommand } from "citty";
11
11
  var main = defineCommand({
12
12
  meta: {
13
13
  name: "epilot",
14
- version: "0.1.132",
14
+ version: "0.1.133",
15
15
  description: "CLI for epilot APIs"
16
16
  },
17
17
  args: {
@@ -31,7 +31,7 @@ var main = defineCommand({
31
31
  profile: () => import("../profile-OZJL5ZPT.js").then((m) => m.default),
32
32
  config: () => import("../config-DGZIMLZK.js").then((m) => m.default),
33
33
  completion: () => import("../completion-MSAMXF3P.js").then((m) => m.default),
34
- upgrade: () => import("../upgrade-I3HYEYCU.js").then((m) => m.default),
34
+ upgrade: () => import("../upgrade-SOALILEI.js").then((m) => m.default),
35
35
  "access-token": () => import("../access-token-WWE6BDJH.js").then((m) => m.default),
36
36
  address: () => import("../address-EH3C4CVB.js").then((m) => m.default),
37
37
  "address-suggestions": () => import("../address-suggestions-RRSLOBFW.js").then((m) => m.default),
@@ -134,7 +134,7 @@ process.stderr.on("error", (err) => {
134
134
  if (err.code === "EPIPE") process.exit(0);
135
135
  throw err;
136
136
  });
137
- var VERSION = true ? "0.1.132" : (await null).default.version;
137
+ var VERSION = true ? "0.1.133" : (await null).default.version;
138
138
  var reorderedArgv = hoistFlagsAfterSubcommand(process.argv.slice(2));
139
139
  process.argv = [process.argv[0], process.argv[1], ...reorderedArgv];
140
140
  var args = process.argv.slice(2);
@@ -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.132";
75
+ if (true) return "0.1.133";
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.132",
3
+ "version": "0.1.133",
4
4
  "description": "CLI for epilot APIs",
5
5
  "type": "module",
6
6
  "bin": {