@kinotic-ai/os-api 1.5.1 → 1.6.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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -349,8 +349,9 @@ class NamedQueriesDefinition {
|
|
|
349
349
|
projectId;
|
|
350
350
|
entityDefinitionName;
|
|
351
351
|
namedQueries;
|
|
352
|
-
constructor(id, applicationId, projectId, entityDefinitionName, namedQueries) {
|
|
352
|
+
constructor(organizationId, id, applicationId, projectId, entityDefinitionName, namedQueries) {
|
|
353
353
|
this.id = id;
|
|
354
|
+
this.organizationId = organizationId;
|
|
354
355
|
this.applicationId = applicationId;
|
|
355
356
|
this.projectId = projectId;
|
|
356
357
|
this.entityDefinitionName = entityDefinitionName;
|
package/dist/index.d.cts
CHANGED
|
@@ -256,12 +256,12 @@ import { FunctionDefinition } from "@kinotic-ai/idl";
|
|
|
256
256
|
*/
|
|
257
257
|
declare class NamedQueriesDefinition implements Identifiable5<string> {
|
|
258
258
|
id: string;
|
|
259
|
-
organizationId
|
|
259
|
+
organizationId: string;
|
|
260
260
|
applicationId: string;
|
|
261
261
|
projectId: string;
|
|
262
262
|
entityDefinitionName: string;
|
|
263
263
|
namedQueries: FunctionDefinition[];
|
|
264
|
-
constructor(id: string, applicationId: string, projectId: string, entityDefinitionName: string, namedQueries: FunctionDefinition[]);
|
|
264
|
+
constructor(organizationId: string, id: string, applicationId: string, projectId: string, entityDefinitionName: string, namedQueries: FunctionDefinition[]);
|
|
265
265
|
}
|
|
266
266
|
/**
|
|
267
267
|
* Represents a migration definition that can be sent via the API.
|
package/dist/index.d.ts
CHANGED
|
@@ -256,12 +256,12 @@ import { FunctionDefinition } from "@kinotic-ai/idl";
|
|
|
256
256
|
*/
|
|
257
257
|
declare class NamedQueriesDefinition implements Identifiable5<string> {
|
|
258
258
|
id: string;
|
|
259
|
-
organizationId
|
|
259
|
+
organizationId: string;
|
|
260
260
|
applicationId: string;
|
|
261
261
|
projectId: string;
|
|
262
262
|
entityDefinitionName: string;
|
|
263
263
|
namedQueries: FunctionDefinition[];
|
|
264
|
-
constructor(id: string, applicationId: string, projectId: string, entityDefinitionName: string, namedQueries: FunctionDefinition[]);
|
|
264
|
+
constructor(organizationId: string, id: string, applicationId: string, projectId: string, entityDefinitionName: string, namedQueries: FunctionDefinition[]);
|
|
265
265
|
}
|
|
266
266
|
/**
|
|
267
267
|
* Represents a migration definition that can be sent via the API.
|
package/dist/index.js
CHANGED
|
@@ -249,8 +249,9 @@ class NamedQueriesDefinition {
|
|
|
249
249
|
projectId;
|
|
250
250
|
entityDefinitionName;
|
|
251
251
|
namedQueries;
|
|
252
|
-
constructor(id, applicationId, projectId, entityDefinitionName, namedQueries) {
|
|
252
|
+
constructor(organizationId, id, applicationId, projectId, entityDefinitionName, namedQueries) {
|
|
253
253
|
this.id = id;
|
|
254
|
+
this.organizationId = organizationId;
|
|
254
255
|
this.applicationId = applicationId;
|
|
255
256
|
this.projectId = projectId;
|
|
256
257
|
this.entityDefinitionName = entityDefinitionName;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kinotic-ai/os-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"rxjs": "^7.8.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@kinotic-ai/core": "1.
|
|
44
|
+
"@kinotic-ai/core": "1.4.0",
|
|
45
45
|
"@types/node": "^25.3.2",
|
|
46
46
|
"@vitest/coverage-v8": "^4.0.18",
|
|
47
47
|
"@vitest/runner": "^4.0.18",
|