@constructive-sdk/cli 0.25.9 → 0.25.11
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/admin/cli/commands/app-admin-grant.js +3 -1
- package/admin/cli/commands/app-grant.js +3 -1
- package/admin/cli/commands/app-invite.js +44 -0
- package/admin/cli/commands/app-owner-grant.js +3 -1
- package/admin/cli/commands/app-permission-default-grant.d.ts +8 -0
- package/admin/cli/commands/app-permission-default-grant.js +286 -0
- package/admin/cli/commands/app-permission-default-permission.d.ts +8 -0
- package/admin/cli/commands/app-permission-default-permission.js +242 -0
- package/admin/cli/commands/org-admin-grant.js +3 -1
- package/admin/cli/commands/org-grant.js +3 -1
- package/admin/cli/commands/org-invite.js +44 -0
- package/admin/cli/commands/org-owner-grant.js +3 -1
- package/admin/cli/commands/org-permission-default-grant.d.ts +8 -0
- package/admin/cli/commands/org-permission-default-grant.js +306 -0
- package/admin/cli/commands/org-permission-default-permission.d.ts +8 -0
- package/admin/cli/commands/org-permission-default-permission.js +262 -0
- package/admin/cli/commands.js +11 -3
- package/admin/cli/executor.d.ts +5 -1
- package/admin/orm/index.d.ts +10 -2
- package/admin/orm/index.js +10 -2
- package/admin/orm/input-types.d.ts +1611 -230
- package/admin/orm/input-types.js +9 -1
- package/admin/orm/models/appPermissionDefaultGrant.d.ts +54 -0
- package/admin/orm/models/appPermissionDefaultGrant.js +104 -0
- package/admin/orm/models/appPermissionDefaultPermission.d.ts +54 -0
- package/admin/orm/models/appPermissionDefaultPermission.js +104 -0
- package/admin/orm/models/index.d.ts +5 -1
- package/admin/orm/models/index.js +11 -3
- package/admin/orm/models/orgPermissionDefaultGrant.d.ts +54 -0
- package/admin/orm/models/orgPermissionDefaultGrant.js +104 -0
- package/admin/orm/models/orgPermissionDefaultPermission.d.ts +54 -0
- package/admin/orm/models/orgPermissionDefaultPermission.js +104 -0
- package/agent/cli/commands/agent-message.js +34 -12
- package/agent/cli/commands/agent-task.js +12 -12
- package/agent/cli/embedder.d.ts +5 -0
- package/agent/cli/embedder.js +46 -9
- package/agent/orm/input-types.d.ts +289 -47
- package/agent/orm/input-types.js +1 -0
- package/api/cli/commands/check-constraint.js +0 -22
- package/api/cli/commands/composite-type.d.ts +8 -0
- package/api/cli/commands/composite-type.js +424 -0
- package/api/cli/commands/enum.js +0 -22
- package/api/cli/commands/field.js +0 -22
- package/api/cli/commands/foreign-key-constraint.js +0 -22
- package/api/cli/commands/index.js +0 -22
- package/api/cli/commands/policy.js +0 -22
- package/api/cli/commands/primary-key-constraint.js +0 -22
- package/api/cli/commands/schema.js +0 -22
- package/api/cli/commands/spatial-relation.js +0 -22
- package/api/cli/commands/table.js +6 -28
- package/api/cli/commands/trigger.js +0 -22
- package/api/cli/commands/unique-constraint.js +0 -22
- package/api/cli/commands/view-table.js +22 -0
- package/api/cli/commands/view.js +0 -22
- package/api/cli/commands.js +3 -1
- package/api/cli/executor.d.ts +1 -0
- package/api/orm/index.d.ts +2 -0
- package/api/orm/index.js +2 -0
- package/api/orm/input-types.d.ts +1064 -125
- package/api/orm/input-types.js +3 -0
- package/api/orm/models/compositeType.d.ts +54 -0
- package/api/orm/models/compositeType.js +104 -0
- package/api/orm/models/index.d.ts +1 -0
- package/api/orm/models/index.js +3 -1
- package/auth/cli/commands/link-identity.d.ts +8 -0
- package/auth/cli/commands/link-identity.js +36 -0
- package/auth/cli/commands/sign-in-sms-otp.d.ts +8 -0
- package/auth/cli/commands/sign-in-sms-otp.js +36 -0
- package/auth/cli/commands/sign-up-sms.d.ts +8 -0
- package/auth/cli/commands/sign-up-sms.js +36 -0
- package/auth/cli/commands.js +7 -1
- package/auth/cli/executor.d.ts +15 -0
- package/auth/orm/index.d.ts +15 -0
- package/auth/orm/input-types.d.ts +197 -1
- package/auth/orm/mutation/index.d.ts +25 -1
- package/auth/orm/mutation/index.js +36 -0
- package/esm/admin/cli/commands/app-admin-grant.js +3 -1
- package/esm/admin/cli/commands/app-grant.js +3 -1
- package/esm/admin/cli/commands/app-invite.js +44 -0
- package/esm/admin/cli/commands/app-owner-grant.js +3 -1
- package/esm/admin/cli/commands/app-permission-default-grant.d.ts +8 -0
- package/esm/admin/cli/commands/app-permission-default-grant.js +284 -0
- package/esm/admin/cli/commands/app-permission-default-permission.d.ts +8 -0
- package/esm/admin/cli/commands/app-permission-default-permission.js +240 -0
- package/esm/admin/cli/commands/org-admin-grant.js +3 -1
- package/esm/admin/cli/commands/org-grant.js +3 -1
- package/esm/admin/cli/commands/org-invite.js +44 -0
- package/esm/admin/cli/commands/org-owner-grant.js +3 -1
- package/esm/admin/cli/commands/org-permission-default-grant.d.ts +8 -0
- package/esm/admin/cli/commands/org-permission-default-grant.js +304 -0
- package/esm/admin/cli/commands/org-permission-default-permission.d.ts +8 -0
- package/esm/admin/cli/commands/org-permission-default-permission.js +260 -0
- package/esm/admin/cli/commands.js +11 -3
- package/esm/admin/cli/executor.d.ts +5 -1
- package/esm/admin/orm/index.d.ts +10 -2
- package/esm/admin/orm/index.js +10 -2
- package/esm/admin/orm/input-types.d.ts +1611 -230
- package/esm/admin/orm/input-types.js +9 -1
- package/esm/admin/orm/models/appPermissionDefaultGrant.d.ts +54 -0
- package/esm/admin/orm/models/appPermissionDefaultGrant.js +100 -0
- package/esm/admin/orm/models/appPermissionDefaultPermission.d.ts +54 -0
- package/esm/admin/orm/models/appPermissionDefaultPermission.js +100 -0
- package/esm/admin/orm/models/index.d.ts +5 -1
- package/esm/admin/orm/models/index.js +5 -1
- package/esm/admin/orm/models/orgPermissionDefaultGrant.d.ts +54 -0
- package/esm/admin/orm/models/orgPermissionDefaultGrant.js +100 -0
- package/esm/admin/orm/models/orgPermissionDefaultPermission.d.ts +54 -0
- package/esm/admin/orm/models/orgPermissionDefaultPermission.js +100 -0
- package/esm/agent/cli/commands/agent-message.js +34 -12
- package/esm/agent/cli/commands/agent-task.js +12 -12
- package/esm/agent/cli/embedder.d.ts +5 -0
- package/esm/agent/cli/embedder.js +10 -2
- package/esm/agent/orm/input-types.d.ts +289 -47
- package/esm/agent/orm/input-types.js +1 -0
- package/esm/api/cli/commands/check-constraint.js +0 -22
- package/esm/api/cli/commands/composite-type.d.ts +8 -0
- package/esm/api/cli/commands/composite-type.js +422 -0
- package/esm/api/cli/commands/enum.js +0 -22
- package/esm/api/cli/commands/field.js +0 -22
- package/esm/api/cli/commands/foreign-key-constraint.js +0 -22
- package/esm/api/cli/commands/index.js +0 -22
- package/esm/api/cli/commands/policy.js +0 -22
- package/esm/api/cli/commands/primary-key-constraint.js +0 -22
- package/esm/api/cli/commands/schema.js +0 -22
- package/esm/api/cli/commands/spatial-relation.js +0 -22
- package/esm/api/cli/commands/table.js +6 -28
- package/esm/api/cli/commands/trigger.js +0 -22
- package/esm/api/cli/commands/unique-constraint.js +0 -22
- package/esm/api/cli/commands/view-table.js +22 -0
- package/esm/api/cli/commands/view.js +0 -22
- package/esm/api/cli/commands.js +3 -1
- package/esm/api/cli/executor.d.ts +1 -0
- package/esm/api/orm/index.d.ts +2 -0
- package/esm/api/orm/index.js +2 -0
- package/esm/api/orm/input-types.d.ts +1064 -125
- package/esm/api/orm/input-types.js +3 -0
- package/esm/api/orm/models/compositeType.d.ts +54 -0
- package/esm/api/orm/models/compositeType.js +100 -0
- package/esm/api/orm/models/index.d.ts +1 -0
- package/esm/api/orm/models/index.js +1 -0
- package/esm/auth/cli/commands/link-identity.d.ts +8 -0
- package/esm/auth/cli/commands/link-identity.js +34 -0
- package/esm/auth/cli/commands/sign-in-sms-otp.d.ts +8 -0
- package/esm/auth/cli/commands/sign-in-sms-otp.js +34 -0
- package/esm/auth/cli/commands/sign-up-sms.d.ts +8 -0
- package/esm/auth/cli/commands/sign-up-sms.js +34 -0
- package/esm/auth/cli/commands.js +7 -1
- package/esm/auth/cli/executor.d.ts +15 -0
- package/esm/auth/orm/index.d.ts +15 -0
- package/esm/auth/orm/input-types.d.ts +197 -1
- package/esm/auth/orm/mutation/index.d.ts +25 -1
- package/esm/auth/orm/mutation/index.js +36 -0
- package/esm/modules/cli/commands/agent-module.js +88 -0
- package/esm/modules/cli/commands/billing-module.js +66 -0
- package/esm/modules/cli/commands/compute-log-module.js +44 -0
- package/esm/modules/cli/commands/config-secrets-module.js +44 -0
- package/esm/modules/cli/commands/db-usage-module.js +66 -0
- package/esm/modules/cli/commands/entity-type-provision.js +0 -44
- package/esm/modules/cli/commands/events-module.js +66 -0
- package/esm/modules/cli/commands/function-invocation-module.d.ts +8 -0
- package/esm/modules/cli/commands/function-invocation-module.js +580 -0
- package/esm/modules/cli/commands/function-module.js +22 -198
- package/esm/modules/cli/commands/graph-module.js +22 -0
- package/esm/modules/cli/commands/hierarchy-module.js +22 -0
- package/esm/modules/cli/commands/identity-providers-module.js +44 -0
- package/esm/modules/cli/commands/inference-log-module.js +44 -0
- package/esm/modules/cli/commands/invites-module.js +44 -0
- package/esm/modules/cli/commands/limits-module.js +44 -0
- package/esm/modules/cli/commands/memberships-module.js +88 -0
- package/esm/modules/cli/commands/merkle-store-module.js +22 -0
- package/esm/modules/cli/commands/namespace-module.js +22 -0
- package/esm/modules/cli/commands/notifications-module.js +88 -0
- package/esm/modules/cli/commands/permissions-module.js +44 -0
- package/esm/modules/cli/commands/plans-module.js +44 -0
- package/esm/modules/cli/commands/profiles-module.js +44 -0
- package/esm/modules/cli/commands/rate-limit-meters-module.js +66 -0
- package/esm/modules/cli/commands/storage-log-module.js +44 -0
- package/esm/modules/cli/commands/storage-module.js +66 -0
- package/esm/modules/cli/commands/transfer-log-module.js +44 -0
- package/esm/modules/cli/commands.js +29 -27
- package/esm/modules/cli/executor.d.ts +14 -13
- package/esm/modules/orm/index.d.ts +28 -26
- package/esm/modules/orm/index.js +28 -26
- package/esm/modules/orm/input-types.d.ts +4485 -2514
- package/esm/modules/orm/models/functionInvocationModule.d.ts +54 -0
- package/esm/modules/orm/models/functionInvocationModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +14 -13
- package/esm/modules/orm/models/index.js +14 -13
- package/esm/objects/orm/input-types.d.ts +62 -0
- package/esm/usage/orm/input-types.d.ts +314 -19
- package/modules/cli/commands/agent-module.js +88 -0
- package/modules/cli/commands/billing-module.js +66 -0
- package/modules/cli/commands/compute-log-module.js +44 -0
- package/modules/cli/commands/config-secrets-module.js +44 -0
- package/modules/cli/commands/db-usage-module.js +66 -0
- package/modules/cli/commands/entity-type-provision.js +0 -44
- package/modules/cli/commands/events-module.js +66 -0
- package/modules/cli/commands/function-invocation-module.d.ts +8 -0
- package/modules/cli/commands/function-invocation-module.js +582 -0
- package/modules/cli/commands/function-module.js +22 -198
- package/modules/cli/commands/graph-module.js +22 -0
- package/modules/cli/commands/hierarchy-module.js +22 -0
- package/modules/cli/commands/identity-providers-module.js +44 -0
- package/modules/cli/commands/inference-log-module.js +44 -0
- package/modules/cli/commands/invites-module.js +44 -0
- package/modules/cli/commands/limits-module.js +44 -0
- package/modules/cli/commands/memberships-module.js +88 -0
- package/modules/cli/commands/merkle-store-module.js +22 -0
- package/modules/cli/commands/namespace-module.js +22 -0
- package/modules/cli/commands/notifications-module.js +88 -0
- package/modules/cli/commands/permissions-module.js +44 -0
- package/modules/cli/commands/plans-module.js +44 -0
- package/modules/cli/commands/profiles-module.js +44 -0
- package/modules/cli/commands/rate-limit-meters-module.js +66 -0
- package/modules/cli/commands/storage-log-module.js +44 -0
- package/modules/cli/commands/storage-module.js +66 -0
- package/modules/cli/commands/transfer-log-module.js +44 -0
- package/modules/cli/commands.js +29 -27
- package/modules/cli/executor.d.ts +14 -13
- package/modules/orm/index.d.ts +28 -26
- package/modules/orm/index.js +28 -26
- package/modules/orm/input-types.d.ts +4485 -2514
- package/modules/orm/models/functionInvocationModule.d.ts +54 -0
- package/modules/orm/models/functionInvocationModule.js +104 -0
- package/modules/orm/models/index.d.ts +14 -13
- package/modules/orm/models/index.js +30 -28
- package/objects/orm/input-types.d.ts +62 -0
- package/package.json +4 -4
- package/usage/orm/input-types.d.ts +314 -19
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* FunctionInvocationModule model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { FunctionInvocationModuleWithRelations, FunctionInvocationModuleSelect, FunctionInvocationModuleFilter, FunctionInvocationModuleOrderBy, CreateFunctionInvocationModuleInput, FunctionInvocationModulePatch } from '../input-types';
|
|
10
|
+
export declare class FunctionInvocationModuleModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends FunctionInvocationModuleSelect>(args: FindManyArgs<S, FunctionInvocationModuleFilter, FunctionInvocationModuleOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, FunctionInvocationModuleSelect>): QueryBuilder<{
|
|
16
|
+
functionInvocationModules: ConnectionResult<InferSelectResult<FunctionInvocationModuleWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends FunctionInvocationModuleSelect>(args: FindFirstArgs<S, FunctionInvocationModuleFilter, FunctionInvocationModuleOrderBy> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, FunctionInvocationModuleSelect>): QueryBuilder<{
|
|
21
|
+
functionInvocationModule: InferSelectResult<FunctionInvocationModuleWithRelations, S> | null;
|
|
22
|
+
}>;
|
|
23
|
+
findOne<S extends FunctionInvocationModuleSelect>(args: {
|
|
24
|
+
id: string;
|
|
25
|
+
select: S;
|
|
26
|
+
} & StrictSelect<S, FunctionInvocationModuleSelect>): QueryBuilder<{
|
|
27
|
+
functionInvocationModule: InferSelectResult<FunctionInvocationModuleWithRelations, S> | null;
|
|
28
|
+
}>;
|
|
29
|
+
create<S extends FunctionInvocationModuleSelect>(args: CreateArgs<S, CreateFunctionInvocationModuleInput['functionInvocationModule']> & {
|
|
30
|
+
select: S;
|
|
31
|
+
} & StrictSelect<S, FunctionInvocationModuleSelect>): QueryBuilder<{
|
|
32
|
+
createFunctionInvocationModule: {
|
|
33
|
+
functionInvocationModule: InferSelectResult<FunctionInvocationModuleWithRelations, S>;
|
|
34
|
+
};
|
|
35
|
+
}>;
|
|
36
|
+
update<S extends FunctionInvocationModuleSelect>(args: UpdateArgs<S, {
|
|
37
|
+
id: string;
|
|
38
|
+
}, FunctionInvocationModulePatch> & {
|
|
39
|
+
select: S;
|
|
40
|
+
} & StrictSelect<S, FunctionInvocationModuleSelect>): QueryBuilder<{
|
|
41
|
+
updateFunctionInvocationModule: {
|
|
42
|
+
functionInvocationModule: InferSelectResult<FunctionInvocationModuleWithRelations, S>;
|
|
43
|
+
};
|
|
44
|
+
}>;
|
|
45
|
+
delete<S extends FunctionInvocationModuleSelect>(args: DeleteArgs<{
|
|
46
|
+
id: string;
|
|
47
|
+
}, S> & {
|
|
48
|
+
select: S;
|
|
49
|
+
} & StrictSelect<S, FunctionInvocationModuleSelect>): QueryBuilder<{
|
|
50
|
+
deleteFunctionInvocationModule: {
|
|
51
|
+
functionInvocationModule: InferSelectResult<FunctionInvocationModuleWithRelations, S>;
|
|
52
|
+
};
|
|
53
|
+
}>;
|
|
54
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FunctionInvocationModuleModel = void 0;
|
|
4
|
+
const query_builder_1 = require("../query-builder");
|
|
5
|
+
const input_types_1 = require("../input-types");
|
|
6
|
+
class FunctionInvocationModuleModel {
|
|
7
|
+
client;
|
|
8
|
+
constructor(client) {
|
|
9
|
+
this.client = client;
|
|
10
|
+
}
|
|
11
|
+
findMany(args) {
|
|
12
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('FunctionInvocationModule', 'functionInvocationModules', args.select, {
|
|
13
|
+
where: args?.where,
|
|
14
|
+
orderBy: args?.orderBy,
|
|
15
|
+
first: args?.first,
|
|
16
|
+
last: args?.last,
|
|
17
|
+
after: args?.after,
|
|
18
|
+
before: args?.before,
|
|
19
|
+
offset: args?.offset,
|
|
20
|
+
}, 'FunctionInvocationModuleFilter', 'FunctionInvocationModuleOrderBy', input_types_1.connectionFieldsMap);
|
|
21
|
+
return new query_builder_1.QueryBuilder({
|
|
22
|
+
client: this.client,
|
|
23
|
+
operation: 'query',
|
|
24
|
+
operationName: 'FunctionInvocationModule',
|
|
25
|
+
fieldName: 'functionInvocationModules',
|
|
26
|
+
document,
|
|
27
|
+
variables,
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
findFirst(args) {
|
|
31
|
+
const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('FunctionInvocationModule', 'functionInvocationModules', args.select, {
|
|
32
|
+
where: args?.where,
|
|
33
|
+
orderBy: args?.orderBy,
|
|
34
|
+
}, 'FunctionInvocationModuleFilter', 'FunctionInvocationModuleOrderBy', input_types_1.connectionFieldsMap);
|
|
35
|
+
return new query_builder_1.QueryBuilder({
|
|
36
|
+
client: this.client,
|
|
37
|
+
operation: 'query',
|
|
38
|
+
operationName: 'FunctionInvocationModule',
|
|
39
|
+
fieldName: 'functionInvocationModule',
|
|
40
|
+
document,
|
|
41
|
+
variables,
|
|
42
|
+
transform: (data) => ({
|
|
43
|
+
functionInvocationModule: data.functionInvocationModules?.nodes?.[0] ?? null,
|
|
44
|
+
}),
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
findOne(args) {
|
|
48
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('FunctionInvocationModule', 'functionInvocationModules', args.select, {
|
|
49
|
+
where: {
|
|
50
|
+
id: {
|
|
51
|
+
equalTo: args.id,
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
first: 1,
|
|
55
|
+
}, 'FunctionInvocationModuleFilter', 'FunctionInvocationModuleOrderBy', input_types_1.connectionFieldsMap);
|
|
56
|
+
return new query_builder_1.QueryBuilder({
|
|
57
|
+
client: this.client,
|
|
58
|
+
operation: 'query',
|
|
59
|
+
operationName: 'FunctionInvocationModule',
|
|
60
|
+
fieldName: 'functionInvocationModule',
|
|
61
|
+
document,
|
|
62
|
+
variables,
|
|
63
|
+
transform: (data) => ({
|
|
64
|
+
functionInvocationModule: data.functionInvocationModules?.nodes?.[0] ?? null,
|
|
65
|
+
}),
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
create(args) {
|
|
69
|
+
const { document, variables } = (0, query_builder_1.buildCreateDocument)('FunctionInvocationModule', 'createFunctionInvocationModule', 'functionInvocationModule', args.select, args.data, 'CreateFunctionInvocationModuleInput', input_types_1.connectionFieldsMap);
|
|
70
|
+
return new query_builder_1.QueryBuilder({
|
|
71
|
+
client: this.client,
|
|
72
|
+
operation: 'mutation',
|
|
73
|
+
operationName: 'FunctionInvocationModule',
|
|
74
|
+
fieldName: 'createFunctionInvocationModule',
|
|
75
|
+
document,
|
|
76
|
+
variables,
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
update(args) {
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('FunctionInvocationModule', 'updateFunctionInvocationModule', 'functionInvocationModule', args.select, args.where.id, args.data, 'UpdateFunctionInvocationModuleInput', 'id', 'functionInvocationModulePatch', input_types_1.connectionFieldsMap);
|
|
81
|
+
return new query_builder_1.QueryBuilder({
|
|
82
|
+
client: this.client,
|
|
83
|
+
operation: 'mutation',
|
|
84
|
+
operationName: 'FunctionInvocationModule',
|
|
85
|
+
fieldName: 'updateFunctionInvocationModule',
|
|
86
|
+
document,
|
|
87
|
+
variables,
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
delete(args) {
|
|
91
|
+
const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('FunctionInvocationModule', 'deleteFunctionInvocationModule', 'functionInvocationModule', {
|
|
92
|
+
id: args.where.id,
|
|
93
|
+
}, 'DeleteFunctionInvocationModuleInput', args.select, input_types_1.connectionFieldsMap);
|
|
94
|
+
return new query_builder_1.QueryBuilder({
|
|
95
|
+
client: this.client,
|
|
96
|
+
operation: 'mutation',
|
|
97
|
+
operationName: 'FunctionInvocationModule',
|
|
98
|
+
fieldName: 'deleteFunctionInvocationModule',
|
|
99
|
+
document,
|
|
100
|
+
variables,
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
exports.FunctionInvocationModuleModel = FunctionInvocationModuleModel;
|
|
@@ -20,42 +20,43 @@ export { RateLimitsModuleModel } from './rateLimitsModule';
|
|
|
20
20
|
export { UsersModuleModel } from './usersModule';
|
|
21
21
|
export { WebauthnCredentialsModuleModel } from './webauthnCredentialsModule';
|
|
22
22
|
export { CryptoAddressesModuleModel } from './cryptoAddressesModule';
|
|
23
|
-
export { IdentityProvidersModuleModel } from './identityProvidersModule';
|
|
24
23
|
export { DenormalizedTableFieldModel } from './denormalizedTableField';
|
|
24
|
+
export { IdentityProvidersModuleModel } from './identityProvidersModule';
|
|
25
25
|
export { RlsModuleModel } from './rlsModule';
|
|
26
26
|
export { BlueprintModel } from './blueprint';
|
|
27
27
|
export { BlueprintTemplateModel } from './blueprintTemplate';
|
|
28
28
|
export { BlueprintConstructionModel } from './blueprintConstruction';
|
|
29
29
|
export { CryptoAuthModuleModel } from './cryptoAuthModule';
|
|
30
|
-
export { RateLimitMetersModuleModel } from './rateLimitMetersModule';
|
|
31
30
|
export { SessionsModuleModel } from './sessionsModule';
|
|
32
|
-
export {
|
|
31
|
+
export { SecureTableProvisionModel } from './secureTableProvision';
|
|
33
32
|
export { MerkleStoreModuleModel } from './merkleStoreModule';
|
|
34
33
|
export { GraphModuleModel } from './graphModule';
|
|
35
|
-
export { SecureTableProvisionModel } from './secureTableProvision';
|
|
36
|
-
export { InvitesModuleModel } from './invitesModule';
|
|
37
34
|
export { DatabaseProvisionModuleModel } from './databaseProvisionModule';
|
|
38
|
-
export {
|
|
35
|
+
export { ConfigSecretsModuleModel } from './configSecretsModule';
|
|
36
|
+
export { RateLimitMetersModuleModel } from './rateLimitMetersModule';
|
|
39
37
|
export { RealtimeModuleModel } from './realtimeModule';
|
|
40
38
|
export { WebauthnAuthModuleModel } from './webauthnAuthModule';
|
|
39
|
+
export { FunctionInvocationModuleModel } from './functionInvocationModule';
|
|
40
|
+
export { FunctionModuleModel } from './functionModule';
|
|
41
|
+
export { InvitesModuleModel } from './invitesModule';
|
|
42
|
+
export { NamespaceModuleModel } from './namespaceModule';
|
|
41
43
|
export { ComputeLogModuleModel } from './computeLogModule';
|
|
42
44
|
export { InferenceLogModuleModel } from './inferenceLogModule';
|
|
43
45
|
export { StorageLogModuleModel } from './storageLogModule';
|
|
44
46
|
export { TransferLogModuleModel } from './transferLogModule';
|
|
45
|
-
export { DbUsageModuleModel } from './dbUsageModule';
|
|
46
|
-
export { NotificationsModuleModel } from './notificationsModule';
|
|
47
47
|
export { PlansModuleModel } from './plansModule';
|
|
48
|
-
export { HierarchyModuleModel } from './hierarchyModule';
|
|
49
|
-
export { BillingModuleModel } from './billingModule';
|
|
50
48
|
export { BillingProviderModuleModel } from './billingProviderModule';
|
|
51
|
-
export {
|
|
49
|
+
export { DbUsageModuleModel } from './dbUsageModule';
|
|
50
|
+
export { HierarchyModuleModel } from './hierarchyModule';
|
|
52
51
|
export { PermissionsModuleModel } from './permissionsModule';
|
|
52
|
+
export { NotificationsModuleModel } from './notificationsModule';
|
|
53
|
+
export { ProfilesModuleModel } from './profilesModule';
|
|
54
|
+
export { BillingModuleModel } from './billingModule';
|
|
53
55
|
export { RelationProvisionModel } from './relationProvision';
|
|
54
|
-
export { FunctionModuleModel } from './functionModule';
|
|
55
56
|
export { UserAuthModuleModel } from './userAuthModule';
|
|
56
57
|
export { AgentModuleModel } from './agentModule';
|
|
57
58
|
export { LimitsModuleModel } from './limitsModule';
|
|
58
59
|
export { MembershipsModuleModel } from './membershipsModule';
|
|
60
|
+
export { EntityTypeProvisionModel } from './entityTypeProvision';
|
|
59
61
|
export { StorageModuleModel } from './storageModule';
|
|
60
62
|
export { EventsModuleModel } from './eventsModule';
|
|
61
|
-
export { EntityTypeProvisionModel } from './entityTypeProvision';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
3
|
+
exports.RelationProvisionModel = exports.BillingModuleModel = exports.ProfilesModuleModel = exports.NotificationsModuleModel = exports.PermissionsModuleModel = exports.HierarchyModuleModel = exports.DbUsageModuleModel = exports.BillingProviderModuleModel = exports.PlansModuleModel = exports.TransferLogModuleModel = exports.StorageLogModuleModel = exports.InferenceLogModuleModel = exports.ComputeLogModuleModel = exports.NamespaceModuleModel = exports.InvitesModuleModel = exports.FunctionModuleModel = exports.FunctionInvocationModuleModel = exports.WebauthnAuthModuleModel = exports.RealtimeModuleModel = exports.RateLimitMetersModuleModel = exports.ConfigSecretsModuleModel = exports.DatabaseProvisionModuleModel = exports.GraphModuleModel = exports.MerkleStoreModuleModel = exports.SecureTableProvisionModel = exports.SessionsModuleModel = exports.CryptoAuthModuleModel = exports.BlueprintConstructionModel = exports.BlueprintTemplateModel = exports.BlueprintModel = exports.RlsModuleModel = exports.IdentityProvidersModuleModel = exports.DenormalizedTableFieldModel = exports.CryptoAddressesModuleModel = exports.WebauthnCredentialsModuleModel = exports.UsersModuleModel = exports.RateLimitsModuleModel = exports.PhoneNumbersModuleModel = exports.EmailsModuleModel = exports.ConnectedAccountsModuleModel = exports.ConfigSecretsUserModuleModel = exports.UserSettingsModuleModel = exports.UserCredentialsModuleModel = exports.I18NModuleModel = exports.DevicesModuleModel = exports.ConfigSecretsOrgModuleModel = exports.SessionSecretsModuleModel = exports.UserStateModuleModel = exports.MembershipTypesModuleModel = exports.DefaultIdsModuleModel = void 0;
|
|
4
|
+
exports.EventsModuleModel = exports.StorageModuleModel = exports.EntityTypeProvisionModel = exports.MembershipsModuleModel = exports.LimitsModuleModel = exports.AgentModuleModel = exports.UserAuthModuleModel = void 0;
|
|
5
5
|
/**
|
|
6
6
|
* Models barrel export
|
|
7
7
|
* @generated by @constructive-io/graphql-codegen
|
|
@@ -41,10 +41,10 @@ var webauthnCredentialsModule_1 = require("./webauthnCredentialsModule");
|
|
|
41
41
|
Object.defineProperty(exports, "WebauthnCredentialsModuleModel", { enumerable: true, get: function () { return webauthnCredentialsModule_1.WebauthnCredentialsModuleModel; } });
|
|
42
42
|
var cryptoAddressesModule_1 = require("./cryptoAddressesModule");
|
|
43
43
|
Object.defineProperty(exports, "CryptoAddressesModuleModel", { enumerable: true, get: function () { return cryptoAddressesModule_1.CryptoAddressesModuleModel; } });
|
|
44
|
-
var identityProvidersModule_1 = require("./identityProvidersModule");
|
|
45
|
-
Object.defineProperty(exports, "IdentityProvidersModuleModel", { enumerable: true, get: function () { return identityProvidersModule_1.IdentityProvidersModuleModel; } });
|
|
46
44
|
var denormalizedTableField_1 = require("./denormalizedTableField");
|
|
47
45
|
Object.defineProperty(exports, "DenormalizedTableFieldModel", { enumerable: true, get: function () { return denormalizedTableField_1.DenormalizedTableFieldModel; } });
|
|
46
|
+
var identityProvidersModule_1 = require("./identityProvidersModule");
|
|
47
|
+
Object.defineProperty(exports, "IdentityProvidersModuleModel", { enumerable: true, get: function () { return identityProvidersModule_1.IdentityProvidersModuleModel; } });
|
|
48
48
|
var rlsModule_1 = require("./rlsModule");
|
|
49
49
|
Object.defineProperty(exports, "RlsModuleModel", { enumerable: true, get: function () { return rlsModule_1.RlsModuleModel; } });
|
|
50
50
|
var blueprint_1 = require("./blueprint");
|
|
@@ -55,28 +55,32 @@ var blueprintConstruction_1 = require("./blueprintConstruction");
|
|
|
55
55
|
Object.defineProperty(exports, "BlueprintConstructionModel", { enumerable: true, get: function () { return blueprintConstruction_1.BlueprintConstructionModel; } });
|
|
56
56
|
var cryptoAuthModule_1 = require("./cryptoAuthModule");
|
|
57
57
|
Object.defineProperty(exports, "CryptoAuthModuleModel", { enumerable: true, get: function () { return cryptoAuthModule_1.CryptoAuthModuleModel; } });
|
|
58
|
-
var rateLimitMetersModule_1 = require("./rateLimitMetersModule");
|
|
59
|
-
Object.defineProperty(exports, "RateLimitMetersModuleModel", { enumerable: true, get: function () { return rateLimitMetersModule_1.RateLimitMetersModuleModel; } });
|
|
60
58
|
var sessionsModule_1 = require("./sessionsModule");
|
|
61
59
|
Object.defineProperty(exports, "SessionsModuleModel", { enumerable: true, get: function () { return sessionsModule_1.SessionsModuleModel; } });
|
|
62
|
-
var
|
|
63
|
-
Object.defineProperty(exports, "
|
|
60
|
+
var secureTableProvision_1 = require("./secureTableProvision");
|
|
61
|
+
Object.defineProperty(exports, "SecureTableProvisionModel", { enumerable: true, get: function () { return secureTableProvision_1.SecureTableProvisionModel; } });
|
|
64
62
|
var merkleStoreModule_1 = require("./merkleStoreModule");
|
|
65
63
|
Object.defineProperty(exports, "MerkleStoreModuleModel", { enumerable: true, get: function () { return merkleStoreModule_1.MerkleStoreModuleModel; } });
|
|
66
64
|
var graphModule_1 = require("./graphModule");
|
|
67
65
|
Object.defineProperty(exports, "GraphModuleModel", { enumerable: true, get: function () { return graphModule_1.GraphModuleModel; } });
|
|
68
|
-
var secureTableProvision_1 = require("./secureTableProvision");
|
|
69
|
-
Object.defineProperty(exports, "SecureTableProvisionModel", { enumerable: true, get: function () { return secureTableProvision_1.SecureTableProvisionModel; } });
|
|
70
|
-
var invitesModule_1 = require("./invitesModule");
|
|
71
|
-
Object.defineProperty(exports, "InvitesModuleModel", { enumerable: true, get: function () { return invitesModule_1.InvitesModuleModel; } });
|
|
72
66
|
var databaseProvisionModule_1 = require("./databaseProvisionModule");
|
|
73
67
|
Object.defineProperty(exports, "DatabaseProvisionModuleModel", { enumerable: true, get: function () { return databaseProvisionModule_1.DatabaseProvisionModuleModel; } });
|
|
74
|
-
var
|
|
75
|
-
Object.defineProperty(exports, "
|
|
68
|
+
var configSecretsModule_1 = require("./configSecretsModule");
|
|
69
|
+
Object.defineProperty(exports, "ConfigSecretsModuleModel", { enumerable: true, get: function () { return configSecretsModule_1.ConfigSecretsModuleModel; } });
|
|
70
|
+
var rateLimitMetersModule_1 = require("./rateLimitMetersModule");
|
|
71
|
+
Object.defineProperty(exports, "RateLimitMetersModuleModel", { enumerable: true, get: function () { return rateLimitMetersModule_1.RateLimitMetersModuleModel; } });
|
|
76
72
|
var realtimeModule_1 = require("./realtimeModule");
|
|
77
73
|
Object.defineProperty(exports, "RealtimeModuleModel", { enumerable: true, get: function () { return realtimeModule_1.RealtimeModuleModel; } });
|
|
78
74
|
var webauthnAuthModule_1 = require("./webauthnAuthModule");
|
|
79
75
|
Object.defineProperty(exports, "WebauthnAuthModuleModel", { enumerable: true, get: function () { return webauthnAuthModule_1.WebauthnAuthModuleModel; } });
|
|
76
|
+
var functionInvocationModule_1 = require("./functionInvocationModule");
|
|
77
|
+
Object.defineProperty(exports, "FunctionInvocationModuleModel", { enumerable: true, get: function () { return functionInvocationModule_1.FunctionInvocationModuleModel; } });
|
|
78
|
+
var functionModule_1 = require("./functionModule");
|
|
79
|
+
Object.defineProperty(exports, "FunctionModuleModel", { enumerable: true, get: function () { return functionModule_1.FunctionModuleModel; } });
|
|
80
|
+
var invitesModule_1 = require("./invitesModule");
|
|
81
|
+
Object.defineProperty(exports, "InvitesModuleModel", { enumerable: true, get: function () { return invitesModule_1.InvitesModuleModel; } });
|
|
82
|
+
var namespaceModule_1 = require("./namespaceModule");
|
|
83
|
+
Object.defineProperty(exports, "NamespaceModuleModel", { enumerable: true, get: function () { return namespaceModule_1.NamespaceModuleModel; } });
|
|
80
84
|
var computeLogModule_1 = require("./computeLogModule");
|
|
81
85
|
Object.defineProperty(exports, "ComputeLogModuleModel", { enumerable: true, get: function () { return computeLogModule_1.ComputeLogModuleModel; } });
|
|
82
86
|
var inferenceLogModule_1 = require("./inferenceLogModule");
|
|
@@ -85,26 +89,24 @@ var storageLogModule_1 = require("./storageLogModule");
|
|
|
85
89
|
Object.defineProperty(exports, "StorageLogModuleModel", { enumerable: true, get: function () { return storageLogModule_1.StorageLogModuleModel; } });
|
|
86
90
|
var transferLogModule_1 = require("./transferLogModule");
|
|
87
91
|
Object.defineProperty(exports, "TransferLogModuleModel", { enumerable: true, get: function () { return transferLogModule_1.TransferLogModuleModel; } });
|
|
88
|
-
var dbUsageModule_1 = require("./dbUsageModule");
|
|
89
|
-
Object.defineProperty(exports, "DbUsageModuleModel", { enumerable: true, get: function () { return dbUsageModule_1.DbUsageModuleModel; } });
|
|
90
|
-
var notificationsModule_1 = require("./notificationsModule");
|
|
91
|
-
Object.defineProperty(exports, "NotificationsModuleModel", { enumerable: true, get: function () { return notificationsModule_1.NotificationsModuleModel; } });
|
|
92
92
|
var plansModule_1 = require("./plansModule");
|
|
93
93
|
Object.defineProperty(exports, "PlansModuleModel", { enumerable: true, get: function () { return plansModule_1.PlansModuleModel; } });
|
|
94
|
-
var hierarchyModule_1 = require("./hierarchyModule");
|
|
95
|
-
Object.defineProperty(exports, "HierarchyModuleModel", { enumerable: true, get: function () { return hierarchyModule_1.HierarchyModuleModel; } });
|
|
96
|
-
var billingModule_1 = require("./billingModule");
|
|
97
|
-
Object.defineProperty(exports, "BillingModuleModel", { enumerable: true, get: function () { return billingModule_1.BillingModuleModel; } });
|
|
98
94
|
var billingProviderModule_1 = require("./billingProviderModule");
|
|
99
95
|
Object.defineProperty(exports, "BillingProviderModuleModel", { enumerable: true, get: function () { return billingProviderModule_1.BillingProviderModuleModel; } });
|
|
100
|
-
var
|
|
101
|
-
Object.defineProperty(exports, "
|
|
96
|
+
var dbUsageModule_1 = require("./dbUsageModule");
|
|
97
|
+
Object.defineProperty(exports, "DbUsageModuleModel", { enumerable: true, get: function () { return dbUsageModule_1.DbUsageModuleModel; } });
|
|
98
|
+
var hierarchyModule_1 = require("./hierarchyModule");
|
|
99
|
+
Object.defineProperty(exports, "HierarchyModuleModel", { enumerable: true, get: function () { return hierarchyModule_1.HierarchyModuleModel; } });
|
|
102
100
|
var permissionsModule_1 = require("./permissionsModule");
|
|
103
101
|
Object.defineProperty(exports, "PermissionsModuleModel", { enumerable: true, get: function () { return permissionsModule_1.PermissionsModuleModel; } });
|
|
102
|
+
var notificationsModule_1 = require("./notificationsModule");
|
|
103
|
+
Object.defineProperty(exports, "NotificationsModuleModel", { enumerable: true, get: function () { return notificationsModule_1.NotificationsModuleModel; } });
|
|
104
|
+
var profilesModule_1 = require("./profilesModule");
|
|
105
|
+
Object.defineProperty(exports, "ProfilesModuleModel", { enumerable: true, get: function () { return profilesModule_1.ProfilesModuleModel; } });
|
|
106
|
+
var billingModule_1 = require("./billingModule");
|
|
107
|
+
Object.defineProperty(exports, "BillingModuleModel", { enumerable: true, get: function () { return billingModule_1.BillingModuleModel; } });
|
|
104
108
|
var relationProvision_1 = require("./relationProvision");
|
|
105
109
|
Object.defineProperty(exports, "RelationProvisionModel", { enumerable: true, get: function () { return relationProvision_1.RelationProvisionModel; } });
|
|
106
|
-
var functionModule_1 = require("./functionModule");
|
|
107
|
-
Object.defineProperty(exports, "FunctionModuleModel", { enumerable: true, get: function () { return functionModule_1.FunctionModuleModel; } });
|
|
108
110
|
var userAuthModule_1 = require("./userAuthModule");
|
|
109
111
|
Object.defineProperty(exports, "UserAuthModuleModel", { enumerable: true, get: function () { return userAuthModule_1.UserAuthModuleModel; } });
|
|
110
112
|
var agentModule_1 = require("./agentModule");
|
|
@@ -113,9 +115,9 @@ var limitsModule_1 = require("./limitsModule");
|
|
|
113
115
|
Object.defineProperty(exports, "LimitsModuleModel", { enumerable: true, get: function () { return limitsModule_1.LimitsModuleModel; } });
|
|
114
116
|
var membershipsModule_1 = require("./membershipsModule");
|
|
115
117
|
Object.defineProperty(exports, "MembershipsModuleModel", { enumerable: true, get: function () { return membershipsModule_1.MembershipsModuleModel; } });
|
|
118
|
+
var entityTypeProvision_1 = require("./entityTypeProvision");
|
|
119
|
+
Object.defineProperty(exports, "EntityTypeProvisionModel", { enumerable: true, get: function () { return entityTypeProvision_1.EntityTypeProvisionModel; } });
|
|
116
120
|
var storageModule_1 = require("./storageModule");
|
|
117
121
|
Object.defineProperty(exports, "StorageModuleModel", { enumerable: true, get: function () { return storageModule_1.StorageModuleModel; } });
|
|
118
122
|
var eventsModule_1 = require("./eventsModule");
|
|
119
123
|
Object.defineProperty(exports, "EventsModuleModel", { enumerable: true, get: function () { return eventsModule_1.EventsModuleModel; } });
|
|
120
|
-
var entityTypeProvision_1 = require("./entityTypeProvision");
|
|
121
|
-
Object.defineProperty(exports, "EntityTypeProvisionModel", { enumerable: true, get: function () { return entityTypeProvision_1.EntityTypeProvisionModel; } });
|
|
@@ -605,6 +605,68 @@ export interface ProvisionBucketInput {
|
|
|
605
605
|
*/
|
|
606
606
|
ownerId?: string;
|
|
607
607
|
}
|
|
608
|
+
/** An input for mutations affecting `Ref` */
|
|
609
|
+
export interface RefInput {
|
|
610
|
+
/** Unique ref identifier */
|
|
611
|
+
id?: string;
|
|
612
|
+
/** Ref name (e.g. HEAD, main) */
|
|
613
|
+
name: string;
|
|
614
|
+
/** Database scope for multi-tenant isolation */
|
|
615
|
+
databaseId: string;
|
|
616
|
+
/** Store this ref belongs to */
|
|
617
|
+
storeId: string;
|
|
618
|
+
/** Commit this ref points to */
|
|
619
|
+
commitId?: string;
|
|
620
|
+
}
|
|
621
|
+
/** An input for mutations affecting `Store` */
|
|
622
|
+
export interface StoreInput {
|
|
623
|
+
/** Unique store identifier */
|
|
624
|
+
id?: string;
|
|
625
|
+
/** Human-readable store name */
|
|
626
|
+
name: string;
|
|
627
|
+
/** Database scope for multi-tenant isolation */
|
|
628
|
+
databaseId: string;
|
|
629
|
+
/** Current root object hash of this store */
|
|
630
|
+
hash?: string;
|
|
631
|
+
/** Timestamp of store creation */
|
|
632
|
+
createdAt?: string;
|
|
633
|
+
}
|
|
634
|
+
/** An input for mutations affecting `Object` */
|
|
635
|
+
export interface ObjectInput {
|
|
636
|
+
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
637
|
+
id: string;
|
|
638
|
+
/** Database scope for multi-tenant isolation */
|
|
639
|
+
databaseId: string;
|
|
640
|
+
/** Ordered array of child object IDs */
|
|
641
|
+
kids?: string[];
|
|
642
|
+
/** Ordered array of child path names (parallel to kids) */
|
|
643
|
+
ktree?: string[];
|
|
644
|
+
/** Payload data for this object node */
|
|
645
|
+
data?: Record<string, unknown>;
|
|
646
|
+
/** Timestamp of object creation */
|
|
647
|
+
createdAt?: string;
|
|
648
|
+
}
|
|
649
|
+
/** An input for mutations affecting `Commit` */
|
|
650
|
+
export interface CommitInput {
|
|
651
|
+
/** Unique commit identifier */
|
|
652
|
+
id?: string;
|
|
653
|
+
/** Optional commit message */
|
|
654
|
+
message?: string;
|
|
655
|
+
/** Database scope for multi-tenant isolation */
|
|
656
|
+
databaseId: string;
|
|
657
|
+
/** Store this commit belongs to */
|
|
658
|
+
storeId: string;
|
|
659
|
+
/** Parent commit IDs (supports merge commits) */
|
|
660
|
+
parentIds?: string[];
|
|
661
|
+
/** User who authored the changes */
|
|
662
|
+
authorId?: string;
|
|
663
|
+
/** User who committed (may differ from author) */
|
|
664
|
+
committerId?: string;
|
|
665
|
+
/** Root object ID of the tree snapshot at this commit */
|
|
666
|
+
treeId?: string;
|
|
667
|
+
/** Commit timestamp */
|
|
668
|
+
date?: string;
|
|
669
|
+
}
|
|
608
670
|
export interface InitEmptyRepoPayload {
|
|
609
671
|
clientMutationId?: string | null;
|
|
610
672
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructive-sdk/cli",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.11",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Constructive CLI SDK - Auto-generated GraphQL CLI with ORM client, context management, and interactive prompts",
|
|
6
6
|
"main": "index.js",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@0no-co/graphql.web": "^1.1.2",
|
|
48
48
|
"@agentic-kit/ollama": "^2.0.0",
|
|
49
|
-
"@constructive-io/graphql-query": "^3.27.
|
|
49
|
+
"@constructive-io/graphql-query": "^3.27.7",
|
|
50
50
|
"@constructive-io/graphql-types": "^3.12.0",
|
|
51
51
|
"appstash": "^0.7.0",
|
|
52
52
|
"gql-ast": "^3.11.0",
|
|
@@ -56,11 +56,11 @@
|
|
|
56
56
|
"yanse": "^0.2.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@constructive-io/graphql-codegen": "^4.47.
|
|
59
|
+
"@constructive-io/graphql-codegen": "^4.47.10",
|
|
60
60
|
"@types/node": "^22.19.11",
|
|
61
61
|
"makage": "^0.3.0",
|
|
62
62
|
"tsx": "^4.19.0",
|
|
63
63
|
"typescript": "^5.9.3"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "bca385f6d3d1311477e2c4ef36f9d49dec401c60"
|
|
66
66
|
}
|