@genfeedai/enums 2.2.2 → 2.2.3
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 +31 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# @genfeedai/enums
|
|
2
|
+
|
|
3
|
+
Canonical enum set for Genfeed domains (models, workflows, content, billing, and more).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm i @genfeedai/enums
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { ModelKey, WorkflowNodeStatus } from '@genfeedai/enums';
|
|
15
|
+
|
|
16
|
+
const selectedModel = ModelKey.NanoBananaPro;
|
|
17
|
+
const status = WorkflowNodeStatus.Running;
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Related Packages
|
|
21
|
+
|
|
22
|
+
- `@genfeedai/constants`
|
|
23
|
+
- `@genfeedai/interfaces`
|
|
24
|
+
|
|
25
|
+
## Build Faster with Genfeed
|
|
26
|
+
|
|
27
|
+
Use shared enums in your own integrations, or use Genfeed directly at [https://genfeed.ai](https://genfeed.ai).
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
MIT
|
package/package.json
CHANGED