@inai-dev/types 0.1.0 → 1.0.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/dist/index.d.cts CHANGED
@@ -150,7 +150,7 @@ interface PaginatedResult<T> {
150
150
  }
151
151
 
152
152
  interface InAIAuthConfig {
153
- apiUrl: string;
153
+ apiUrl?: string;
154
154
  publishableKey?: string;
155
155
  tenantId?: string;
156
156
  }
package/dist/index.d.ts CHANGED
@@ -150,7 +150,7 @@ interface PaginatedResult<T> {
150
150
  }
151
151
 
152
152
  interface InAIAuthConfig {
153
- apiUrl: string;
153
+ apiUrl?: string;
154
154
  publishableKey?: string;
155
155
  tenantId?: string;
156
156
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inai-dev/types",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "description": "TypeScript types for the InAI Auth SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -12,7 +12,9 @@
12
12
  "require": "./dist/index.cjs"
13
13
  }
14
14
  },
15
- "files": ["dist"],
15
+ "files": [
16
+ "dist"
17
+ ],
16
18
  "scripts": {
17
19
  "build": "tsup",
18
20
  "dev": "tsup --watch",
@@ -28,10 +30,16 @@
28
30
  "license": "MIT",
29
31
  "repository": {
30
32
  "type": "git",
31
- "url": "https://github.com/inai-dev/sdk.git",
33
+ "url": "https://github.com/InAI-Team/inai-auth-sdk.git",
32
34
  "directory": "packages/types"
33
35
  },
34
- "homepage": "https://github.com/inai-dev/sdk/tree/main/packages/types",
35
- "bugs": "https://github.com/inai-dev/sdk/issues",
36
- "keywords": ["inai", "auth", "types", "typescript", "multi-tenant"]
36
+ "homepage": "https://inai.dev/",
37
+ "bugs": "https://github.com/InAI-Team/inai-auth-sdk/issues",
38
+ "keywords": [
39
+ "inai",
40
+ "auth",
41
+ "types",
42
+ "typescript",
43
+ "multi-tenant"
44
+ ]
37
45
  }