@kinotic-ai/os-api 1.0.16 → 1.1.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.cjs +2 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -308,7 +308,8 @@ class EntityDefinition {
|
|
|
308
308
|
updated;
|
|
309
309
|
published;
|
|
310
310
|
publishedTimestamp;
|
|
311
|
-
constructor(applicationId, projectId, name, schema, description) {
|
|
311
|
+
constructor(organizationId, applicationId, projectId, name, schema, description) {
|
|
312
|
+
this.organizationId = organizationId;
|
|
312
313
|
this.applicationId = applicationId;
|
|
313
314
|
this.projectId = projectId;
|
|
314
315
|
this.name = name;
|
package/dist/index.d.cts
CHANGED
|
@@ -201,7 +201,7 @@ declare class EntityDefinition implements Identifiable3<string> {
|
|
|
201
201
|
updated: number;
|
|
202
202
|
published: boolean;
|
|
203
203
|
publishedTimestamp: number;
|
|
204
|
-
constructor(applicationId: string, projectId: string, name: string, schema: ObjectC3Type3, description?: string | null);
|
|
204
|
+
constructor(organizationId: string, applicationId: string, projectId: string, name: string, schema: ObjectC3Type3, description?: string | null);
|
|
205
205
|
}
|
|
206
206
|
import { Identifiable as Identifiable4 } from "@kinotic-ai/core";
|
|
207
207
|
import { FunctionDefinition } from "@kinotic-ai/idl";
|
package/dist/index.d.ts
CHANGED
|
@@ -201,7 +201,7 @@ declare class EntityDefinition implements Identifiable3<string> {
|
|
|
201
201
|
updated: number;
|
|
202
202
|
published: boolean;
|
|
203
203
|
publishedTimestamp: number;
|
|
204
|
-
constructor(applicationId: string, projectId: string, name: string, schema: ObjectC3Type3, description?: string | null);
|
|
204
|
+
constructor(organizationId: string, applicationId: string, projectId: string, name: string, schema: ObjectC3Type3, description?: string | null);
|
|
205
205
|
}
|
|
206
206
|
import { Identifiable as Identifiable4 } from "@kinotic-ai/core";
|
|
207
207
|
import { FunctionDefinition } from "@kinotic-ai/idl";
|
package/dist/index.js
CHANGED
|
@@ -216,7 +216,8 @@ class EntityDefinition {
|
|
|
216
216
|
updated;
|
|
217
217
|
published;
|
|
218
218
|
publishedTimestamp;
|
|
219
|
-
constructor(applicationId, projectId, name, schema, description) {
|
|
219
|
+
constructor(organizationId, applicationId, projectId, name, schema, description) {
|
|
220
|
+
this.organizationId = organizationId;
|
|
220
221
|
this.applicationId = applicationId;
|
|
221
222
|
this.projectId = projectId;
|
|
222
223
|
this.name = name;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kinotic-ai/os-api",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@kinotic-ai/idl": "1.0.9",
|
|
40
|
-
"@kinotic-ai/persistence": "1.
|
|
40
|
+
"@kinotic-ai/persistence": "1.2.0",
|
|
41
41
|
"rxjs": "^7.8.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|