@danypops/tickets 0.15.0 → 0.16.0

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": "@danypops/tickets",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "description": "Unified CLI, daemon, and TypeScript library for issue tracking across GitHub, GitLab, and Jira.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -11,8 +11,19 @@
11
11
  "main": "./src/index.ts",
12
12
  "types": "./src/index.ts",
13
13
  "exports": {
14
- ".": "./src/index.ts"
14
+ ".": "./src/index.ts",
15
+ "./auth": "./src/auth/index.ts",
16
+ "./cli": "./src/cli/client-exports.ts",
17
+ "./config": "./src/config/index.ts",
18
+ "./github": "./src/github/index.ts",
19
+ "./gitlab": "./src/gitlab/index.ts",
20
+ "./issue": "./src/issue/index.ts",
21
+ "./jira": "./src/jira/index.ts",
22
+ "./rpc": "./src/rpc/index.ts",
23
+ "./sqlite": "./src/sqlite/index.ts",
24
+ "./package.json": "./package.json"
15
25
  },
26
+ "sideEffects": false,
16
27
  "files": [
17
28
  "src",
18
29
  "README.md",
@@ -0,0 +1,6 @@
1
+ export { openUrl } from "./browser.js";
2
+ export * from "./device-flow.js";
3
+ export * from "./github-oauth.js";
4
+ export * from "./gitlab-oauth.js";
5
+ export * from "./jira-oauth.js";
6
+ export * from "./token-store.js";
@@ -0,0 +1,9 @@
1
+ export {
2
+ createTicketsClient,
3
+ type EnsureDaemonOptions,
4
+ ensureDaemonRunning,
5
+ resolveVehicleClientTarget,
6
+ type TicketsRpcClient,
7
+ ticketsPaths,
8
+ type VehicleClientTarget,
9
+ } from "./tickets-client.js";
@@ -0,0 +1,8 @@
1
+ export {
2
+ type BackendConfig,
3
+ buildRepositories,
4
+ type Config,
5
+ configDir,
6
+ defaultConfigPath,
7
+ loadConfig,
8
+ } from "./config.js";
@@ -0,0 +1 @@
1
+ export { type GitHubOptions, GitHubRepository } from "./github.js";
@@ -0,0 +1 @@
1
+ export { type GitLabOptions, GitLabRepository } from "./gitlab.js";
@@ -0,0 +1,4 @@
1
+ export * from "./errors.js";
2
+ export * from "./issue.js";
3
+ export * from "./repository.js";
4
+ export { type BackendCapabilities, NotSupportedError, TicketService, UnknownBackendError } from "./service.js";
@@ -0,0 +1 @@
1
+ export { type JiraOptions, JiraRepository } from "./jira.js";
@@ -0,0 +1,2 @@
1
+ export type { TicketOperation, TicketOpInputs, TicketOpOutputs } from "./ops.js";
2
+ export { TICKETS_VEHICLE_NAME } from "./ops.js";
@@ -0,0 +1 @@
1
+ export type { FocusStatus, TicketFocusState } from "./focus.js";