een-api-toolkit 0.0.8 → 0.0.13

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.
@@ -0,0 +1,12 @@
1
+ import { defineConfig } from 'vite'
2
+ import vue from '@vitejs/plugin-vue'
3
+
4
+ export default defineConfig({
5
+ plugins: [vue()],
6
+ server: {
7
+ // IMPORTANT: Must use 127.0.0.1:3333 for EEN OAuth callback
8
+ // The EEN Identity Provider only permits this specific redirect URI
9
+ host: '127.0.0.1',
10
+ port: 3333
11
+ }
12
+ })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "een-api-toolkit",
3
- "version": "0.0.8",
3
+ "version": "0.0.13",
4
4
  "description": "EEN Video platform API v3.0 library for Vue 3",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -15,6 +15,8 @@
15
15
  },
16
16
  "files": [
17
17
  "dist",
18
+ "examples",
19
+ "docs/AI-CONTEXT.md",
18
20
  "CHANGELOG.md"
19
21
  ],
20
22
  "scripts": {