@bpinternal/const 0.0.28 → 0.0.29

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/prefixes.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpinternal/const",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "Constant utilities for Botpress",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.mjs",
package/src/prefixes.ts CHANGED
@@ -131,6 +131,7 @@ export type UsageId = Ids['UsageId']
131
131
  export type UserId = Ids['UserId']
132
132
  export type WebhookId = Ids['WebhookId']
133
133
  export type WorkspaceId = Ids['WorkspaceId']
134
+ export type TaskId = Ids['TaskId']
134
135
 
135
136
  type Reverser<T extends Record<PropertyKey, PropertyKey>> = {
136
137
  [P in keyof T as T[P]]: P