@lssm/example.team-hub 0.0.0-canary-20251220041653 → 0.0.0-canary-20251221132705
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/announcement/announcement.contracts.d.ts +15 -15
- package/dist/announcement/announcement.contracts.d.ts.map +1 -1
- package/dist/announcement/announcement.contracts.js +1 -1
- package/dist/announcement/announcement.schema.d.ts +15 -15
- package/dist/entities/index.d.ts +137 -137
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/libs/contracts/dist/_virtual/rolldown_runtime.js +6 -0
- package/dist/libs/contracts/dist/_virtual/rolldown_runtime.js.map +1 -0
- package/dist/libs/contracts/dist/client/react/form-render.js +1 -0
- package/dist/libs/contracts/dist/data-views.js +1 -0
- package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +6 -6
- package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js.map +1 -1
- package/dist/libs/contracts/dist/features.js +1 -0
- package/dist/libs/contracts/dist/forms.js +1 -0
- package/dist/libs/contracts/dist/index.js +14 -1
- package/dist/libs/contracts/dist/index.js.map +1 -0
- package/dist/libs/contracts/dist/integrations/contracts.js +1 -1
- package/dist/libs/contracts/dist/integrations/contracts.js.map +1 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/accounts.js +1 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/accounts.js.map +1 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/balances.js +1 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/balances.js.map +1 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/transactions.js +1 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/transactions.js.map +1 -1
- package/dist/libs/contracts/dist/knowledge/contracts.js +1 -1
- package/dist/libs/contracts/dist/knowledge/contracts.js.map +1 -1
- package/dist/libs/contracts/dist/llm/exporters.js.map +1 -1
- package/dist/libs/contracts/dist/onboarding-base.js +1 -1
- package/dist/libs/contracts/dist/onboarding-base.js.map +1 -1
- package/dist/libs/contracts/dist/{spec.js → operation.js} +2 -2
- package/dist/libs/contracts/dist/operation.js.map +1 -0
- package/dist/libs/contracts/dist/presentations.js +1 -0
- package/dist/libs/contracts/dist/registry-utils.js +24 -0
- package/dist/libs/contracts/dist/registry-utils.js.map +1 -0
- package/dist/libs/contracts/dist/registry.js +1 -0
- package/dist/libs/contracts/dist/workflow/index.js +1 -0
- package/dist/libs/contracts/dist/workflow/spec.js +1 -0
- package/dist/libs/contracts/dist/workspace-config/contractsrc-schema.js +122 -0
- package/dist/libs/contracts/dist/workspace-config/contractsrc-schema.js.map +1 -0
- package/dist/libs/contracts/dist/workspace-config/index.js +1 -0
- package/dist/ritual/ritual.contracts.d.ts +27 -27
- package/dist/ritual/ritual.contracts.d.ts.map +1 -1
- package/dist/ritual/ritual.contracts.js +1 -1
- package/dist/ritual/ritual.schema.d.ts +20 -20
- package/dist/space/space.contracts.d.ts +12 -12
- package/dist/space/space.contracts.d.ts.map +1 -1
- package/dist/space/space.contracts.js +1 -1
- package/dist/space/space.schema.d.ts +12 -12
- package/dist/task/task.contracts.d.ts +3 -3
- package/dist/task/task.contracts.d.ts.map +1 -1
- package/dist/task/task.contracts.js +1 -1
- package/package.json +14 -14
- package/dist/libs/contracts/dist/spec.js.map +0 -1
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema229 from "@lssm/lib.schema";
|
|
2
2
|
import * as _lssm_lib_contracts11 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/announcement/announcement.contracts.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Post an announcement.
|
|
7
7
|
*/
|
|
8
|
-
declare const PostAnnouncementContract: _lssm_lib_contracts11.
|
|
8
|
+
declare const PostAnnouncementContract: _lssm_lib_contracts11.OperationSpec<_lssm_lib_schema229.SchemaModel<{
|
|
9
9
|
title: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
body: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
audience: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
audienceRole: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
23
23
|
isOptional: true;
|
|
24
24
|
};
|
|
25
25
|
spaceId: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
27
27
|
isOptional: true;
|
|
28
28
|
};
|
|
29
29
|
expiresAt: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema229.FieldType<Date, string>;
|
|
31
31
|
isOptional: true;
|
|
32
32
|
};
|
|
33
|
-
}>,
|
|
33
|
+
}>, _lssm_lib_schema229.SchemaModel<{
|
|
34
34
|
id: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
title: {
|
|
39
|
-
type:
|
|
39
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
body: {
|
|
43
|
-
type:
|
|
43
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
audience: {
|
|
47
|
-
type:
|
|
47
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
audienceRole: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
spaceId: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema229.FieldType<string, string>;
|
|
56
56
|
isOptional: true;
|
|
57
57
|
};
|
|
58
58
|
}>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"announcement.contracts.d.ts","names":[],"sources":["../../src/announcement/announcement.contracts.ts"],"sourcesContent":[],"mappings":";;;;;;;cAWa,gDAAwB,
|
|
1
|
+
{"version":3,"file":"announcement.contracts.d.ts","names":[],"sources":["../../src/announcement/announcement.contracts.ts"],"sourcesContent":[],"mappings":";;;;;;;cAWa,gDAAwB,kCAAA;EAAxB,KAAA,EAAA;IAgBX,IAAA,EAAA,mBAAA,CAAA,SAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;IAhBmC,IAAA,+BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;IAAA,IAAA,+BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;UAAA,mBAAA,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineCommand } from "../libs/contracts/dist/
|
|
1
|
+
import { defineCommand } from "../libs/contracts/dist/operation.js";
|
|
2
2
|
import "../libs/contracts/dist/index.js";
|
|
3
3
|
import { AnnouncementModel, PostAnnouncementInputModel } from "./announcement.schema.js";
|
|
4
4
|
|
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema243 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/announcement/announcement.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Announcement to spaces/org.
|
|
6
6
|
*/
|
|
7
|
-
declare const AnnouncementModel:
|
|
7
|
+
declare const AnnouncementModel: _lssm_lib_schema243.SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
title: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
body: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
audience: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
audienceRole: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
26
26
|
isOptional: true;
|
|
27
27
|
};
|
|
28
28
|
spaceId: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
30
30
|
isOptional: true;
|
|
31
31
|
};
|
|
32
32
|
}>;
|
|
33
33
|
/**
|
|
34
34
|
* Input for posting an announcement.
|
|
35
35
|
*/
|
|
36
|
-
declare const PostAnnouncementInputModel:
|
|
36
|
+
declare const PostAnnouncementInputModel: _lssm_lib_schema243.SchemaModel<{
|
|
37
37
|
title: {
|
|
38
|
-
type:
|
|
38
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
39
39
|
isOptional: false;
|
|
40
40
|
};
|
|
41
41
|
body: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
audience: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
47
47
|
isOptional: false;
|
|
48
48
|
};
|
|
49
49
|
audienceRole: {
|
|
50
|
-
type:
|
|
50
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
51
51
|
isOptional: true;
|
|
52
52
|
};
|
|
53
53
|
spaceId: {
|
|
54
|
-
type:
|
|
54
|
+
type: _lssm_lib_schema243.FieldType<string, string>;
|
|
55
55
|
isOptional: true;
|
|
56
56
|
};
|
|
57
57
|
expiresAt: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema243.FieldType<Date, string>;
|
|
59
59
|
isOptional: true;
|
|
60
60
|
};
|
|
61
61
|
}>;
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -1,148 +1,148 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema93 from "@lssm/lib.schema";
|
|
2
2
|
import { ModuleSchemaContribution } from "@lssm/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/entities/index.d.ts
|
|
5
|
-
declare const TaskStatusEnum:
|
|
6
|
-
declare const TaskPriorityEnum:
|
|
7
|
-
declare const RitualCadenceEnum:
|
|
8
|
-
declare const AnnouncementAudienceEnum:
|
|
9
|
-
declare const SpaceEntity:
|
|
10
|
-
id:
|
|
11
|
-
name:
|
|
12
|
-
description:
|
|
13
|
-
orgId:
|
|
14
|
-
ownerId:
|
|
15
|
-
members:
|
|
16
|
-
createdAt:
|
|
17
|
-
updatedAt:
|
|
18
|
-
tasks:
|
|
19
|
-
rituals:
|
|
20
|
-
announcements:
|
|
5
|
+
declare const TaskStatusEnum: _lssm_lib_schema93.EntityEnumDef;
|
|
6
|
+
declare const TaskPriorityEnum: _lssm_lib_schema93.EntityEnumDef;
|
|
7
|
+
declare const RitualCadenceEnum: _lssm_lib_schema93.EntityEnumDef;
|
|
8
|
+
declare const AnnouncementAudienceEnum: _lssm_lib_schema93.EntityEnumDef;
|
|
9
|
+
declare const SpaceEntity: _lssm_lib_schema93.EntitySpec<{
|
|
10
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
11
|
+
name: _lssm_lib_schema93.EntityScalarField;
|
|
12
|
+
description: _lssm_lib_schema93.EntityScalarField;
|
|
13
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
14
|
+
ownerId: _lssm_lib_schema93.EntityScalarField;
|
|
15
|
+
members: _lssm_lib_schema93.EntityScalarField;
|
|
16
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
17
|
+
updatedAt: _lssm_lib_schema93.EntityScalarField;
|
|
18
|
+
tasks: _lssm_lib_schema93.EntityRelationField;
|
|
19
|
+
rituals: _lssm_lib_schema93.EntityRelationField;
|
|
20
|
+
announcements: _lssm_lib_schema93.EntityRelationField;
|
|
21
21
|
}>;
|
|
22
|
-
declare const TaskEntity:
|
|
23
|
-
id:
|
|
24
|
-
spaceId:
|
|
25
|
-
title:
|
|
26
|
-
description:
|
|
27
|
-
status:
|
|
28
|
-
priority:
|
|
29
|
-
assigneeId:
|
|
30
|
-
dueDate:
|
|
31
|
-
tags:
|
|
32
|
-
orgId:
|
|
33
|
-
createdAt:
|
|
34
|
-
updatedAt:
|
|
35
|
-
space:
|
|
22
|
+
declare const TaskEntity: _lssm_lib_schema93.EntitySpec<{
|
|
23
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
24
|
+
spaceId: _lssm_lib_schema93.EntityScalarField;
|
|
25
|
+
title: _lssm_lib_schema93.EntityScalarField;
|
|
26
|
+
description: _lssm_lib_schema93.EntityScalarField;
|
|
27
|
+
status: _lssm_lib_schema93.EntityEnumField;
|
|
28
|
+
priority: _lssm_lib_schema93.EntityEnumField;
|
|
29
|
+
assigneeId: _lssm_lib_schema93.EntityScalarField;
|
|
30
|
+
dueDate: _lssm_lib_schema93.EntityScalarField;
|
|
31
|
+
tags: _lssm_lib_schema93.EntityScalarField;
|
|
32
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
33
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
34
|
+
updatedAt: _lssm_lib_schema93.EntityScalarField;
|
|
35
|
+
space: _lssm_lib_schema93.EntityRelationField;
|
|
36
36
|
}>;
|
|
37
|
-
declare const RitualEntity:
|
|
38
|
-
id:
|
|
39
|
-
spaceId:
|
|
40
|
-
title:
|
|
41
|
-
cadence:
|
|
42
|
-
dayOfWeek:
|
|
43
|
-
time:
|
|
44
|
-
facilitatorId:
|
|
45
|
-
participants:
|
|
46
|
-
location:
|
|
47
|
-
agendaTemplate:
|
|
48
|
-
orgId:
|
|
49
|
-
createdAt:
|
|
50
|
-
updatedAt:
|
|
51
|
-
occurrences:
|
|
52
|
-
space:
|
|
37
|
+
declare const RitualEntity: _lssm_lib_schema93.EntitySpec<{
|
|
38
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
39
|
+
spaceId: _lssm_lib_schema93.EntityScalarField;
|
|
40
|
+
title: _lssm_lib_schema93.EntityScalarField;
|
|
41
|
+
cadence: _lssm_lib_schema93.EntityEnumField;
|
|
42
|
+
dayOfWeek: _lssm_lib_schema93.EntityScalarField;
|
|
43
|
+
time: _lssm_lib_schema93.EntityScalarField;
|
|
44
|
+
facilitatorId: _lssm_lib_schema93.EntityScalarField;
|
|
45
|
+
participants: _lssm_lib_schema93.EntityScalarField;
|
|
46
|
+
location: _lssm_lib_schema93.EntityScalarField;
|
|
47
|
+
agendaTemplate: _lssm_lib_schema93.EntityScalarField;
|
|
48
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
49
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
50
|
+
updatedAt: _lssm_lib_schema93.EntityScalarField;
|
|
51
|
+
occurrences: _lssm_lib_schema93.EntityRelationField;
|
|
52
|
+
space: _lssm_lib_schema93.EntityRelationField;
|
|
53
53
|
}>;
|
|
54
|
-
declare const RitualOccurrenceEntity:
|
|
55
|
-
id:
|
|
56
|
-
ritualId:
|
|
57
|
-
scheduledFor:
|
|
58
|
-
status:
|
|
59
|
-
summary:
|
|
60
|
-
attendance:
|
|
61
|
-
recordingUrl:
|
|
62
|
-
orgId:
|
|
63
|
-
createdAt:
|
|
64
|
-
updatedAt:
|
|
65
|
-
ritual:
|
|
54
|
+
declare const RitualOccurrenceEntity: _lssm_lib_schema93.EntitySpec<{
|
|
55
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
56
|
+
ritualId: _lssm_lib_schema93.EntityScalarField;
|
|
57
|
+
scheduledFor: _lssm_lib_schema93.EntityScalarField;
|
|
58
|
+
status: _lssm_lib_schema93.EntityScalarField;
|
|
59
|
+
summary: _lssm_lib_schema93.EntityScalarField;
|
|
60
|
+
attendance: _lssm_lib_schema93.EntityScalarField;
|
|
61
|
+
recordingUrl: _lssm_lib_schema93.EntityScalarField;
|
|
62
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
63
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
64
|
+
updatedAt: _lssm_lib_schema93.EntityScalarField;
|
|
65
|
+
ritual: _lssm_lib_schema93.EntityRelationField;
|
|
66
66
|
}>;
|
|
67
|
-
declare const AnnouncementEntity:
|
|
68
|
-
id:
|
|
69
|
-
spaceId:
|
|
70
|
-
title:
|
|
71
|
-
body:
|
|
72
|
-
audience:
|
|
73
|
-
audienceRole:
|
|
74
|
-
pinnedUntil:
|
|
75
|
-
orgId:
|
|
76
|
-
createdBy:
|
|
77
|
-
createdAt:
|
|
78
|
-
expiresAt:
|
|
67
|
+
declare const AnnouncementEntity: _lssm_lib_schema93.EntitySpec<{
|
|
68
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
69
|
+
spaceId: _lssm_lib_schema93.EntityScalarField;
|
|
70
|
+
title: _lssm_lib_schema93.EntityScalarField;
|
|
71
|
+
body: _lssm_lib_schema93.EntityScalarField;
|
|
72
|
+
audience: _lssm_lib_schema93.EntityEnumField;
|
|
73
|
+
audienceRole: _lssm_lib_schema93.EntityScalarField;
|
|
74
|
+
pinnedUntil: _lssm_lib_schema93.EntityScalarField;
|
|
75
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
76
|
+
createdBy: _lssm_lib_schema93.EntityScalarField;
|
|
77
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
78
|
+
expiresAt: _lssm_lib_schema93.EntityScalarField;
|
|
79
79
|
}>;
|
|
80
|
-
declare const teamHubEntities: (
|
|
81
|
-
id:
|
|
82
|
-
name:
|
|
83
|
-
description:
|
|
84
|
-
orgId:
|
|
85
|
-
ownerId:
|
|
86
|
-
members:
|
|
87
|
-
createdAt:
|
|
88
|
-
updatedAt:
|
|
89
|
-
tasks:
|
|
90
|
-
rituals:
|
|
91
|
-
announcements:
|
|
92
|
-
}> |
|
|
93
|
-
id:
|
|
94
|
-
spaceId:
|
|
95
|
-
title:
|
|
96
|
-
description:
|
|
97
|
-
status:
|
|
98
|
-
priority:
|
|
99
|
-
assigneeId:
|
|
100
|
-
dueDate:
|
|
101
|
-
tags:
|
|
102
|
-
orgId:
|
|
103
|
-
createdAt:
|
|
104
|
-
updatedAt:
|
|
105
|
-
space:
|
|
106
|
-
}> |
|
|
107
|
-
id:
|
|
108
|
-
spaceId:
|
|
109
|
-
title:
|
|
110
|
-
cadence:
|
|
111
|
-
dayOfWeek:
|
|
112
|
-
time:
|
|
113
|
-
facilitatorId:
|
|
114
|
-
participants:
|
|
115
|
-
location:
|
|
116
|
-
agendaTemplate:
|
|
117
|
-
orgId:
|
|
118
|
-
createdAt:
|
|
119
|
-
updatedAt:
|
|
120
|
-
occurrences:
|
|
121
|
-
space:
|
|
122
|
-
}> |
|
|
123
|
-
id:
|
|
124
|
-
ritualId:
|
|
125
|
-
scheduledFor:
|
|
126
|
-
status:
|
|
127
|
-
summary:
|
|
128
|
-
attendance:
|
|
129
|
-
recordingUrl:
|
|
130
|
-
orgId:
|
|
131
|
-
createdAt:
|
|
132
|
-
updatedAt:
|
|
133
|
-
ritual:
|
|
134
|
-
}> |
|
|
135
|
-
id:
|
|
136
|
-
spaceId:
|
|
137
|
-
title:
|
|
138
|
-
body:
|
|
139
|
-
audience:
|
|
140
|
-
audienceRole:
|
|
141
|
-
pinnedUntil:
|
|
142
|
-
orgId:
|
|
143
|
-
createdBy:
|
|
144
|
-
createdAt:
|
|
145
|
-
expiresAt:
|
|
80
|
+
declare const teamHubEntities: (_lssm_lib_schema93.EntitySpec<{
|
|
81
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
82
|
+
name: _lssm_lib_schema93.EntityScalarField;
|
|
83
|
+
description: _lssm_lib_schema93.EntityScalarField;
|
|
84
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
85
|
+
ownerId: _lssm_lib_schema93.EntityScalarField;
|
|
86
|
+
members: _lssm_lib_schema93.EntityScalarField;
|
|
87
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
88
|
+
updatedAt: _lssm_lib_schema93.EntityScalarField;
|
|
89
|
+
tasks: _lssm_lib_schema93.EntityRelationField;
|
|
90
|
+
rituals: _lssm_lib_schema93.EntityRelationField;
|
|
91
|
+
announcements: _lssm_lib_schema93.EntityRelationField;
|
|
92
|
+
}> | _lssm_lib_schema93.EntitySpec<{
|
|
93
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
94
|
+
spaceId: _lssm_lib_schema93.EntityScalarField;
|
|
95
|
+
title: _lssm_lib_schema93.EntityScalarField;
|
|
96
|
+
description: _lssm_lib_schema93.EntityScalarField;
|
|
97
|
+
status: _lssm_lib_schema93.EntityEnumField;
|
|
98
|
+
priority: _lssm_lib_schema93.EntityEnumField;
|
|
99
|
+
assigneeId: _lssm_lib_schema93.EntityScalarField;
|
|
100
|
+
dueDate: _lssm_lib_schema93.EntityScalarField;
|
|
101
|
+
tags: _lssm_lib_schema93.EntityScalarField;
|
|
102
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
103
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
104
|
+
updatedAt: _lssm_lib_schema93.EntityScalarField;
|
|
105
|
+
space: _lssm_lib_schema93.EntityRelationField;
|
|
106
|
+
}> | _lssm_lib_schema93.EntitySpec<{
|
|
107
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
108
|
+
spaceId: _lssm_lib_schema93.EntityScalarField;
|
|
109
|
+
title: _lssm_lib_schema93.EntityScalarField;
|
|
110
|
+
cadence: _lssm_lib_schema93.EntityEnumField;
|
|
111
|
+
dayOfWeek: _lssm_lib_schema93.EntityScalarField;
|
|
112
|
+
time: _lssm_lib_schema93.EntityScalarField;
|
|
113
|
+
facilitatorId: _lssm_lib_schema93.EntityScalarField;
|
|
114
|
+
participants: _lssm_lib_schema93.EntityScalarField;
|
|
115
|
+
location: _lssm_lib_schema93.EntityScalarField;
|
|
116
|
+
agendaTemplate: _lssm_lib_schema93.EntityScalarField;
|
|
117
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
118
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
119
|
+
updatedAt: _lssm_lib_schema93.EntityScalarField;
|
|
120
|
+
occurrences: _lssm_lib_schema93.EntityRelationField;
|
|
121
|
+
space: _lssm_lib_schema93.EntityRelationField;
|
|
122
|
+
}> | _lssm_lib_schema93.EntitySpec<{
|
|
123
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
124
|
+
ritualId: _lssm_lib_schema93.EntityScalarField;
|
|
125
|
+
scheduledFor: _lssm_lib_schema93.EntityScalarField;
|
|
126
|
+
status: _lssm_lib_schema93.EntityScalarField;
|
|
127
|
+
summary: _lssm_lib_schema93.EntityScalarField;
|
|
128
|
+
attendance: _lssm_lib_schema93.EntityScalarField;
|
|
129
|
+
recordingUrl: _lssm_lib_schema93.EntityScalarField;
|
|
130
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
131
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
132
|
+
updatedAt: _lssm_lib_schema93.EntityScalarField;
|
|
133
|
+
ritual: _lssm_lib_schema93.EntityRelationField;
|
|
134
|
+
}> | _lssm_lib_schema93.EntitySpec<{
|
|
135
|
+
id: _lssm_lib_schema93.EntityScalarField;
|
|
136
|
+
spaceId: _lssm_lib_schema93.EntityScalarField;
|
|
137
|
+
title: _lssm_lib_schema93.EntityScalarField;
|
|
138
|
+
body: _lssm_lib_schema93.EntityScalarField;
|
|
139
|
+
audience: _lssm_lib_schema93.EntityEnumField;
|
|
140
|
+
audienceRole: _lssm_lib_schema93.EntityScalarField;
|
|
141
|
+
pinnedUntil: _lssm_lib_schema93.EntityScalarField;
|
|
142
|
+
orgId: _lssm_lib_schema93.EntityScalarField;
|
|
143
|
+
createdBy: _lssm_lib_schema93.EntityScalarField;
|
|
144
|
+
createdAt: _lssm_lib_schema93.EntityScalarField;
|
|
145
|
+
expiresAt: _lssm_lib_schema93.EntityScalarField;
|
|
146
146
|
}>)[];
|
|
147
147
|
declare const teamHubSchemaContribution: ModuleSchemaContribution;
|
|
148
148
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../../src/entities/index.ts"],"sourcesContent":[],"mappings":";;;;cAKa,gBAKX,
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../src/entities/index.ts"],"sourcesContent":[],"mappings":";;;;cAKa,gBAKX,kBAAA,CALyB;cAOd,kBAKX,kBAAA,CAL2B;cAOhB,mBAKX,kBAAA,CAL4B;AAdjB,cAqBA,wBAhBX,EAqBA,kBAAA,CALmC,aAhBnC;AAEW,cAqBA,WAhBX,qBAgBsB,UAhBtB,CAAA;EAEW,EAAA,EAoCX,kBAAA,CAAA,iBA/BA;EAEW,IAAA,sCAKX;EAEW,WAAA,sCAsBX;EAAA,KAAA,sCAAA;;;;;;;;;cAEW,+BAAU;MAyCrB,kBAAA,CAAA;+CAjEsB;EAAA,KAAA,sCAAA;EAwBX,WAAA,sCAyCX;EAAA,MAAA,oCAAA;;;;;;;;;;cAEW,iCAAY;MAmCvB,kBAAA,CAAA;;6CA9EqB;EAAA,OAAA,oCAAA;EA2CV,SAAA,sCAmCX;EAAA,IAAA,sCAAA;;;;;;;;;;;cAEW,2CAAsB;MAkCjC,kBAAA,CAAA;;;8CAvEuB;EAAA,OAAA,sCAAA;EAqCZ,UAAA,sCAkCX;EAAA,YAAA,sCAAA;;;;;;cAEW,uCAAkB;MAgC7B,kBAAA,CAAA;;;;8CApEiC;EAAA,YAAA,sCAAA;EAoCtB,WAAA,sCAgCX;EAAA,KAAA,sCAAA;;;;;cAEW,qCAAe;MAM3B,kBAAA,CAAA;;;;;+CAxC8B;EAAA,SAAA,sCAAA;EAkClB,SAAA,sCAMZ;EAAA,KAAA,wCAAA;;;;MAN2B,kBAAA,CAAA;;;;;;;+CAAA;EAAA,IAAA,sCAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQf,2BAA2B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rolldown_runtime.js","names":[],"sources":["../../../../../../../libs/contracts/dist/_virtual/rolldown_runtime.js"],"sourcesContent":["//#region rolldown:runtime\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __esmMin = (fn, res) => () => (fn && (res = fn(fn = 0)), res);\nvar __export = (all, symbols) => {\n\tlet target = {};\n\tfor (var name in all) {\n\t\t__defProp(target, name, {\n\t\t\tget: all[name],\n\t\t\tenumerable: true\n\t\t});\n\t}\n\tif (symbols) {\n\t\t__defProp(target, Symbol.toStringTag, { value: \"Module\" });\n\t}\n\treturn target;\n};\nvar __copyProps = (to, from, except, desc) => {\n\tif (from && typeof from === \"object\" || typeof from === \"function\") {\n\t\tfor (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {\n\t\t\tkey = keys[i];\n\t\t\tif (!__hasOwnProp.call(to, key) && key !== except) {\n\t\t\t\t__defProp(to, key, {\n\t\t\t\t\tget: ((k) => from[k]).bind(null, key),\n\t\t\t\t\tenumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t}\n\treturn to;\n};\nvar __toCommonJS = (mod) => __hasOwnProp.call(mod, \"module.exports\") ? mod[\"module.exports\"] : __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\n\n//#endregion\nexport { __esmMin, __export, __toCommonJS };"],"mappings":";AAKA,IAAI,YAAY,IAAI,eAAe,OAAO,MAAM,GAAG,KAAK,EAAE,GAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./registry-utils.js";
|
|
@@ -3,8 +3,8 @@ import { registerDocBlocks } from "../../registry.js";
|
|
|
3
3
|
//#region ../../libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js
|
|
4
4
|
const tech_contracts_openapi_export_DocBlocks = [{
|
|
5
5
|
id: "docs.tech.contracts.openapi-export",
|
|
6
|
-
title: "OpenAPI export (OpenAPI 3.1) from
|
|
7
|
-
summary: "Generate a deterministic OpenAPI document from a
|
|
6
|
+
title: "OpenAPI export (OpenAPI 3.1) from OperationSpecRegistry",
|
|
7
|
+
summary: "Generate a deterministic OpenAPI document from a OperationSpecRegistry using jsonSchemaForSpec + REST transport metadata.",
|
|
8
8
|
kind: "reference",
|
|
9
9
|
visibility: "public",
|
|
10
10
|
route: "/docs/tech/contracts/openapi-export",
|
|
@@ -13,7 +13,7 @@ const tech_contracts_openapi_export_DocBlocks = [{
|
|
|
13
13
|
"openapi",
|
|
14
14
|
"rest"
|
|
15
15
|
],
|
|
16
|
-
body: `## OpenAPI export (OpenAPI 3.1) from
|
|
16
|
+
body: `## OpenAPI export (OpenAPI 3.1) from OperationSpecRegistry
|
|
17
17
|
|
|
18
18
|
### Purpose
|
|
19
19
|
|
|
@@ -42,9 +42,9 @@ contractspec openapi --registry ./src/registry.ts --out ./openapi.json
|
|
|
42
42
|
|
|
43
43
|
The registry module must export one of:
|
|
44
44
|
|
|
45
|
-
- \`registry:
|
|
46
|
-
- \`default():
|
|
47
|
-
- \`createRegistry():
|
|
45
|
+
- \`registry: OperationSpecRegistry\`
|
|
46
|
+
- \`default(): OperationSpecRegistry | Promise<OperationSpecRegistry>\`
|
|
47
|
+
- \`createRegistry(): OperationSpecRegistry | Promise<OperationSpecRegistry>\`
|
|
48
48
|
|
|
49
49
|
### Notes / limitations (current)
|
|
50
50
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openapi-export.docblock.js","names":[],"sources":["../../../../../../../../../libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js"],"sourcesContent":["import { registerDocBlocks } from \"../../registry.js\";\n\n//#region src/docs/tech/contracts/openapi-export.docblock.ts\nconst tech_contracts_openapi_export_DocBlocks = [{\n\tid: \"docs.tech.contracts.openapi-export\",\n\ttitle: \"OpenAPI export (OpenAPI 3.1) from
|
|
1
|
+
{"version":3,"file":"openapi-export.docblock.js","names":[],"sources":["../../../../../../../../../libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js"],"sourcesContent":["import { registerDocBlocks } from \"../../registry.js\";\n\n//#region src/docs/tech/contracts/openapi-export.docblock.ts\nconst tech_contracts_openapi_export_DocBlocks = [{\n\tid: \"docs.tech.contracts.openapi-export\",\n\ttitle: \"OpenAPI export (OpenAPI 3.1) from OperationSpecRegistry\",\n\tsummary: \"Generate a deterministic OpenAPI document from a OperationSpecRegistry using jsonSchemaForSpec + REST transport metadata.\",\n\tkind: \"reference\",\n\tvisibility: \"public\",\n\troute: \"/docs/tech/contracts/openapi-export\",\n\ttags: [\n\t\t\"contracts\",\n\t\t\"openapi\",\n\t\t\"rest\"\n\t],\n\tbody: `## OpenAPI export (OpenAPI 3.1) from OperationSpecRegistry\n\n### Purpose\n\nContractSpec specs can be exported into an **OpenAPI 3.1** document for tooling (SDK generation, docs, gateways).\n\nThe export is **spec-first**:\n\n- Uses \\`jsonSchemaForSpec(spec)\\` for input/output JSON Schema (from SchemaModel → zod → JSON Schema)\n- Uses \\`spec.transport.rest.method/path\\` when present\n- Falls back to deterministic defaults:\n - Method: \\`POST\\` for commands, \\`GET\\` for queries\n - Path: \\`defaultRestPath(name, version)\\` → \\`/<dot/name>/v<version>\\`\n\n### Library API\n\n- Function: \\`openApiForRegistry(registry, options?)\\`\n- Location: \\`@lssm/lib.contracts/openapi\\`\n\n### CLI\n\nExport OpenAPI from a registry module:\n\n\\`\\`\\`bash\ncontractspec openapi --registry ./src/registry.ts --out ./openapi.json\n\\`\\`\\`\n\nThe registry module must export one of:\n\n- \\`registry: OperationSpecRegistry\\`\n- \\`default(): OperationSpecRegistry | Promise<OperationSpecRegistry>\\`\n- \\`createRegistry(): OperationSpecRegistry | Promise<OperationSpecRegistry>\\`\n\n### Notes / limitations (current)\n\n- Responses are generated as a basic \\`200\\` response (plus schemas when available).\n- Query (GET) inputs are currently represented as a JSON request body when an input schema exists.\n- Errors are not yet expanded into OpenAPI responses; that will be added when we standardize error envelopes.`\n}];\nregisterDocBlocks(tech_contracts_openapi_export_DocBlocks);\n\n//#endregion\nexport { tech_contracts_openapi_export_DocBlocks };"],"mappings":";;;AAGA,MAAM,0CAA0C,CAAC;CAChD,IAAI;CACJ,OAAO;CACP,SAAS;CACT,MAAM;CACN,YAAY;CACZ,OAAO;CACP,MAAM;EACL;EACA;EACA;EACA;CACD,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsCN,CAAC;AACF,kBAAkB,wCAAwC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./registry-utils.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./registry-utils.js";
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
import { GroupingStrategies, init_registry_utils } from "./registry-utils.js";
|
|
2
|
+
import "./data-views.js";
|
|
1
3
|
import "./schema/dist/index.js";
|
|
2
4
|
import { defineEvent } from "./events.js";
|
|
5
|
+
import "./features.js";
|
|
6
|
+
import "./forms.js";
|
|
3
7
|
import "./presentations.v2.js";
|
|
4
8
|
import "./client/react/feature-render.js";
|
|
5
9
|
import "./client/react/form-render.js";
|
|
@@ -14,7 +18,7 @@ import "./server/rest-express.js";
|
|
|
14
18
|
import "./server/rest-next-app.js";
|
|
15
19
|
import "./server/rest-next-pages.js";
|
|
16
20
|
import "./server/index.js";
|
|
17
|
-
import { defineCommand, defineQuery } from "./
|
|
21
|
+
import { defineCommand, defineQuery } from "./operation.js";
|
|
18
22
|
import { docBlockToPresentationSpec, docBlockToPresentationV2, docBlocksToPresentationRoutes } from "./docs/presentations.js";
|
|
19
23
|
import { DocRegistry, defaultDocRegistry, registerDocBlocks } from "./docs/registry.js";
|
|
20
24
|
import "./registry.js";
|
|
@@ -62,6 +66,9 @@ import "./integrations/contracts.js";
|
|
|
62
66
|
import "./knowledge/contracts.js";
|
|
63
67
|
import "./regenerator/service.js";
|
|
64
68
|
import "./regenerator/index.js";
|
|
69
|
+
import { FolderConventionsSchema, OpenApiConfigSchema, OpenApiExportConfigSchema, OpenApiSourceConfigSchema } from "./workspace-config/contractsrc-schema.js";
|
|
70
|
+
import "./workspace-config/index.js";
|
|
71
|
+
import "./workflow/spec.js";
|
|
65
72
|
import "./workflow/runner.js";
|
|
66
73
|
import "./workflow/index.js";
|
|
67
74
|
import { techContractsDocs } from "./docs/tech-contracts.docs.js";
|
|
@@ -70,3 +77,9 @@ import "./docs/index.js";
|
|
|
70
77
|
import "./llm/exporters.js";
|
|
71
78
|
import "./llm/prompts.js";
|
|
72
79
|
import "./llm/index.js";
|
|
80
|
+
|
|
81
|
+
//#region ../../libs/contracts/dist/index.js
|
|
82
|
+
init_registry_utils();
|
|
83
|
+
|
|
84
|
+
//#endregion
|
|
85
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../../../../../../libs/contracts/dist/index.js"],"sourcesContent":["import { CapabilityRegistry, capabilityKey, defineCapability } from \"./capabilities.js\";\nimport { GroupingStrategies, filterBy, getUniqueDomains, getUniqueOwners, getUniqueTags, groupBy, groupByMultiple, groupByToArray, init_registry_utils } from \"./registry-utils.js\";\nimport { DataViewRegistry, dataViewKey } from \"./data-views.js\";\nimport { K5 } from \"./schema/dist/index.js\";\nimport { defineEvent, eventKey } from \"./events.js\";\nimport { FeatureRegistry, installFeature, validateFeatureTargetsV2 } from \"./features.js\";\nimport { FormRegistry, buildZodWithRelations, defineFormSpec, evalPredicate } from \"./forms.js\";\nimport { schemaToMarkdown, schemaToMarkdownDetail, schemaToMarkdownList, schemaToMarkdownSummary, schemaToMarkdownTable } from \"./schema-to-markdown.js\";\nimport { TransformEngine, createDefaultTransformEngine, registerBasicValidation, registerDefaultReactRenderer, registerReactToMarkdownRenderer } from \"./presentations.v2.js\";\nimport { createEngineWithDefaults, createFeatureModule, registerFeature, renderFeaturePresentation } from \"./client/react/feature-render.js\";\nimport { createFormRenderer } from \"./client/react/form-render.js\";\nimport { shadcnDriver } from \"./client/react/drivers/shadcn.js\";\nimport { rnReusablesDriver } from \"./client/react/drivers/rn-reusables.js\";\nimport \"./client/index.js\";\nimport { defaultGqlField, defaultMcpTool, defaultRestPath, jsonSchemaForSpec } from \"./jsonschema.js\";\nimport { registerContractsOnBuilder } from \"./server/graphql-pothos.js\";\nimport { PresentationRegistry, jsonSchemaForPresentation } from \"./presentations.js\";\nimport { createMcpServer } from \"./server/mcp/createMcpServer.js\";\nimport { createFetchHandler } from \"./server/rest-generic.js\";\nimport { elysiaPlugin } from \"./server/rest-elysia.js\";\nimport { expressRouter } from \"./server/rest-express.js\";\nimport { makeNextAppHandler } from \"./server/rest-next-app.js\";\nimport { makeNextPagesHandler } from \"./server/rest-next-pages.js\";\nimport \"./server/index.js\";\nimport { defineCommand, defineQuery, isEmitDeclRef } from \"./operation.js\";\nimport { docBlockToPresentationSpec, docBlockToPresentationV2, docBlocksToPresentationRoutes, docBlocksToPresentationSpecs, mapDocRoutes } from \"./docs/presentations.js\";\nimport { DocRegistry, defaultDocRegistry, docId, listRegisteredDocBlocks, registerDocBlocks } from \"./docs/registry.js\";\nimport { OperationSpecRegistry, opKey } from \"./registry.js\";\nimport { Owners, OwnersEnum, StabilityEnum, Tags, TagsEnum } from \"./ownership.js\";\nimport { ContractRegistryFileSchema, ContractRegistryItemSchema, ContractRegistryItemTypeSchema, ContractRegistryManifestSchema } from \"./contract-registry/schemas.js\";\nimport \"./contract-registry/index.js\";\nimport { installOp, makeEmit, op } from \"./install.js\";\nimport { openApiForRegistry } from \"./openapi.js\";\nimport { definePrompt } from \"./prompt.js\";\nimport { PromptRegistry } from \"./promptRegistry.js\";\nimport { ResourceRegistry, defineResourceTemplate, isResourceRef, resourceRef } from \"./resources.js\";\nimport { CompleteOnboardingBaseInput, CompleteOnboardingBaseOutput, CompleteOnboardingBaseSpec, DeleteOnboardingDraftBaseSpec, DeleteOnboardingDraftOutput, GetOnboardingDraftBaseSpec, GetOnboardingDraftOutput, SaveOnboardingDraftBaseSpec, SaveOnboardingDraftInput, SaveOnboardingDraftOutput } from \"./onboarding-base.js\";\nimport { openBankingAccountsReadCapability, openBankingBalancesReadCapability, openBankingTransactionsReadCapability, registerOpenBankingCapabilities } from \"./capabilities/openbanking.js\";\nimport { PolicyRegistry, makePolicyKey } from \"./policy/spec.js\";\nimport { PolicyEngine } from \"./policy/engine.js\";\nimport { OPAPolicyAdapter, buildOPAInput } from \"./policy/opa-adapter.js\";\nimport { ThemeRegistry, makeThemeRef } from \"./themes.js\";\nimport { MigrationRegistry } from \"./migrations.js\";\nimport { TelemetryRegistry, makeTelemetryKey } from \"./telemetry/spec.js\";\nimport { TelemetryTracker } from \"./telemetry/tracker.js\";\nimport { TelemetryAnomalyMonitor } from \"./telemetry/anomaly.js\";\nimport \"./telemetry/index.js\";\nimport { TestRegistry, makeTestKey } from \"./tests/spec.js\";\nimport { TestRunner } from \"./tests/runner.js\";\nimport \"./tests/index.js\";\nimport { ExperimentRegistry, makeExperimentKey } from \"./experiments/spec.js\";\nimport { ExperimentEvaluator } from \"./experiments/evaluator.js\";\nimport { AppBlueprintRegistry, makeAppBlueprintKey } from \"./app-config/spec.js\";\nimport { composeAppConfig, resolveAppConfig } from \"./app-config/runtime.js\";\nimport { IntegrationSpecRegistry, makeIntegrationSpecKey } from \"./integrations/spec.js\";\nimport { registerStripeIntegration, stripeIntegrationSpec } from \"./integrations/providers/stripe.js\";\nimport { postmarkIntegrationSpec, registerPostmarkIntegration } from \"./integrations/providers/postmark.js\";\nimport { qdrantIntegrationSpec, registerQdrantIntegration } from \"./integrations/providers/qdrant.js\";\nimport { mistralIntegrationSpec, registerMistralIntegration } from \"./integrations/providers/mistral.js\";\nimport { elevenLabsIntegrationSpec, registerElevenLabsIntegration } from \"./integrations/providers/elevenlabs.js\";\nimport { gmailIntegrationSpec, registerGmailIntegration } from \"./integrations/providers/gmail.js\";\nimport { googleCalendarIntegrationSpec, registerGoogleCalendarIntegration } from \"./integrations/providers/google-calendar.js\";\nimport { registerTwilioSmsIntegration, twilioSmsIntegrationSpec } from \"./integrations/providers/twilio-sms.js\";\nimport { gcsStorageIntegrationSpec, registerGcsStorageIntegration } from \"./integrations/providers/gcs-storage.js\";\nimport { powensIntegrationSpec, registerPowensIntegration } from \"./integrations/providers/powens.js\";\nimport { createDefaultIntegrationSpecRegistry } from \"./integrations/providers/registry.js\";\nimport { AccountBalanceRecord, BankAccountRecord, BankTransactionRecord } from \"./integrations/openbanking/models.js\";\nimport { OPENBANKING_PII_FIELDS, OPENBANKING_TELEMETRY_EVENTS, redactOpenBankingTelemetryPayload } from \"./integrations/openbanking/telemetry.js\";\nimport { OpenBankingGetAccount, OpenBankingListAccounts, OpenBankingSyncAccounts } from \"./integrations/openbanking/contracts/accounts.js\";\nimport { OpenBankingListTransactions, OpenBankingSyncTransactions } from \"./integrations/openbanking/contracts/transactions.js\";\nimport { OpenBankingGetBalances, OpenBankingRefreshBalances } from \"./integrations/openbanking/contracts/balances.js\";\nimport { OpenBankingFeature } from \"./integrations/openbanking/openbanking.feature.js\";\nimport { registerOpenBankingContracts } from \"./integrations/openbanking/contracts/index.js\";\nimport { assertPrimaryOpenBankingReady, ensurePrimaryOpenBankingIntegration } from \"./integrations/openbanking/guards.js\";\nimport \"./integrations/index.js\";\nimport { KnowledgeSpaceRegistry, makeKnowledgeSpaceKey } from \"./knowledge/spec.js\";\nimport { productCanonKnowledgeSpace, registerProductCanonKnowledgeSpace } from \"./knowledge/spaces/product-canon.js\";\nimport { registerSupportFaqKnowledgeSpace, supportFaqKnowledgeSpace } from \"./knowledge/spaces/support-faq.js\";\nimport { emailThreadsKnowledgeSpace, registerEmailThreadsKnowledgeSpace } from \"./knowledge/spaces/email-threads.js\";\nimport { registerUploadedDocsKnowledgeSpace, uploadedDocsKnowledgeSpace } from \"./knowledge/spaces/uploaded-docs.js\";\nimport { financialDocsKnowledgeSpace, registerFinancialDocsKnowledgeSpace } from \"./knowledge/spaces/financial-docs.js\";\nimport { financialOverviewKnowledgeSpace, registerFinancialOverviewKnowledgeSpace } from \"./knowledge/spaces/financial-overview.js\";\nimport \"./knowledge/index.js\";\nimport { CreateIntegrationConnection, DeleteIntegrationConnection, ListIntegrationConnections, TestIntegrationConnection, UpdateIntegrationConnection, integrationContracts, registerIntegrationContracts } from \"./integrations/contracts.js\";\nimport { CreateKnowledgeSource, DeleteKnowledgeSource, ListKnowledgeSources, TriggerKnowledgeSourceSync, UpdateKnowledgeSource, knowledgeContracts, registerKnowledgeContracts } from \"./knowledge/contracts.js\";\nimport { behaviorToEnvelope, errorToEnvelope, telemetryToEnvelope } from \"./regenerator/utils.js\";\nimport { RegeneratorService } from \"./regenerator/service.js\";\nimport { ProposalExecutor } from \"./regenerator/executor.js\";\nimport { ExecutorProposalSink } from \"./regenerator/sinks.js\";\nimport \"./regenerator/index.js\";\nimport { ContractsrcSchema, DEFAULT_CONTRACTSRC, FolderConventionsSchema, OpenApiConfigSchema, OpenApiExportConfigSchema, OpenApiSourceConfigSchema } from \"./workspace-config/contractsrc-schema.js\";\nimport \"./workspace-config/index.js\";\nimport { WorkflowRegistry } from \"./workflow/spec.js\";\nimport { WorkflowValidationError, assertWorkflowSpecValid, validateWorkflowSpec } from \"./workflow/validation.js\";\nimport { evaluateExpression } from \"./workflow/expression.js\";\nimport { WorkflowPreFlightError, WorkflowRunner } from \"./workflow/runner.js\";\nimport { InMemoryStateStore } from \"./workflow/adapters/memory-store.js\";\nimport { PrismaStateStore } from \"./workflow/adapters/db-adapter.js\";\nimport { createFileStateStore } from \"./workflow/adapters/file-adapter.js\";\nimport \"./workflow/index.js\";\nimport { techContractsDocs } from \"./docs/tech-contracts.docs.js\";\nimport { metaDocs } from \"./docs/meta.docs.js\";\nimport \"./docs/index.js\";\nimport { docBlockToMarkdown, eventToMarkdown, exportFeature, exportSpec, featureToMarkdown, presentationToMarkdown, specToAgentPrompt, specToContextMarkdown, specToFullMarkdown } from \"./llm/exporters.js\";\nimport { AGENT_SYSTEM_PROMPTS, formatPlanForAgent, generateFixViolationsPrompt, generateImplementationPlan, generateImplementationPrompt, generateReviewPrompt, generateTestPrompt, generateVerificationPrompt } from \"./llm/prompts.js\";\nimport \"./llm/index.js\";\n\n//#region src/index.ts\ninit_registry_utils();\n\n//#endregion\nexport { AGENT_SYSTEM_PROMPTS, AccountBalanceRecord, AppBlueprintRegistry, BankAccountRecord, BankTransactionRecord, CapabilityRegistry, CompleteOnboardingBaseInput, CompleteOnboardingBaseOutput, CompleteOnboardingBaseSpec, ContractRegistryFileSchema, ContractRegistryItemSchema, ContractRegistryItemTypeSchema, ContractRegistryManifestSchema, ContractsrcSchema, CreateIntegrationConnection, CreateKnowledgeSource, DEFAULT_CONTRACTSRC, DataViewRegistry, DeleteIntegrationConnection, DeleteKnowledgeSource, DeleteOnboardingDraftBaseSpec, DeleteOnboardingDraftOutput, DocRegistry, ExecutorProposalSink, ExperimentEvaluator, ExperimentRegistry, FeatureRegistry, FolderConventionsSchema, FormRegistry, GetOnboardingDraftBaseSpec, GetOnboardingDraftOutput, GroupingStrategies, InMemoryStateStore, IntegrationSpecRegistry, KnowledgeSpaceRegistry, ListIntegrationConnections, ListKnowledgeSources, MigrationRegistry, OPAPolicyAdapter, OPENBANKING_PII_FIELDS, OPENBANKING_TELEMETRY_EVENTS, OpenApiConfigSchema, OpenApiExportConfigSchema, OpenApiSourceConfigSchema, OpenBankingFeature, OpenBankingGetAccount, OpenBankingGetBalances, OpenBankingListAccounts, OpenBankingListTransactions, OpenBankingRefreshBalances, OpenBankingSyncAccounts, OpenBankingSyncTransactions, OperationSpecRegistry, Owners, OwnersEnum, PolicyEngine, PolicyRegistry, PresentationRegistry, PrismaStateStore, PromptRegistry, ProposalExecutor, RegeneratorService, ResourceRegistry, SaveOnboardingDraftBaseSpec, SaveOnboardingDraftInput, SaveOnboardingDraftOutput, StabilityEnum, Tags, TagsEnum, TelemetryAnomalyMonitor, TelemetryRegistry, TelemetryTracker, TestIntegrationConnection, TestRegistry, TestRunner, ThemeRegistry, TransformEngine, TriggerKnowledgeSourceSync, UpdateIntegrationConnection, UpdateKnowledgeSource, WorkflowPreFlightError, WorkflowRegistry, WorkflowRunner, WorkflowValidationError, assertPrimaryOpenBankingReady, assertWorkflowSpecValid, behaviorToEnvelope, buildOPAInput, buildZodWithRelations, capabilityKey, composeAppConfig, createDefaultIntegrationSpecRegistry, createDefaultTransformEngine, createEngineWithDefaults, createFeatureModule, createFetchHandler, createFileStateStore, createFormRenderer, createMcpServer, dataViewKey, defaultDocRegistry, defaultGqlField, defaultMcpTool, defaultRestPath, defineCapability, defineCommand, defineEvent, defineFormSpec, definePrompt, defineQuery, defineResourceTemplate, K5 as defineSchemaModel, docBlockToMarkdown, docBlockToPresentationSpec, docBlockToPresentationV2, docBlocksToPresentationRoutes, docBlocksToPresentationSpecs, docId, elevenLabsIntegrationSpec, elysiaPlugin, emailThreadsKnowledgeSpace, ensurePrimaryOpenBankingIntegration, errorToEnvelope, evalPredicate, evaluateExpression, eventKey, eventToMarkdown, exportFeature, exportSpec, expressRouter, featureToMarkdown, filterBy, financialDocsKnowledgeSpace, financialOverviewKnowledgeSpace, formatPlanForAgent, gcsStorageIntegrationSpec, generateFixViolationsPrompt, generateImplementationPlan, generateImplementationPrompt, generateReviewPrompt, generateTestPrompt, generateVerificationPrompt, getUniqueDomains, getUniqueOwners, getUniqueTags, gmailIntegrationSpec, googleCalendarIntegrationSpec, groupBy, groupByMultiple, groupByToArray, installFeature, installOp, integrationContracts, isEmitDeclRef, isResourceRef, jsonSchemaForPresentation, jsonSchemaForSpec, knowledgeContracts, listRegisteredDocBlocks, makeAppBlueprintKey, makeEmit, makeExperimentKey, makeIntegrationSpecKey, makeKnowledgeSpaceKey, makeNextAppHandler, makeNextPagesHandler, makePolicyKey, makeTelemetryKey, makeTestKey, makeThemeRef, mapDocRoutes, metaDocs, mistralIntegrationSpec, op, opKey, openApiForRegistry, openBankingAccountsReadCapability, openBankingBalancesReadCapability, openBankingTransactionsReadCapability, postmarkIntegrationSpec, powensIntegrationSpec, presentationToMarkdown, productCanonKnowledgeSpace, qdrantIntegrationSpec, redactOpenBankingTelemetryPayload, registerBasicValidation, registerContractsOnBuilder, registerDefaultReactRenderer, registerDocBlocks, registerElevenLabsIntegration, registerEmailThreadsKnowledgeSpace, registerFeature, registerFinancialDocsKnowledgeSpace, registerFinancialOverviewKnowledgeSpace, registerGcsStorageIntegration, registerGmailIntegration, registerGoogleCalendarIntegration, registerIntegrationContracts, registerKnowledgeContracts, registerMistralIntegration, registerOpenBankingCapabilities, registerOpenBankingContracts, registerPostmarkIntegration, registerPowensIntegration, registerProductCanonKnowledgeSpace, registerQdrantIntegration, registerReactToMarkdownRenderer, registerStripeIntegration, registerSupportFaqKnowledgeSpace, registerTwilioSmsIntegration, registerUploadedDocsKnowledgeSpace, renderFeaturePresentation, resolveAppConfig, resourceRef, rnReusablesDriver, schemaToMarkdown, schemaToMarkdownDetail, schemaToMarkdownList, schemaToMarkdownSummary, schemaToMarkdownTable, shadcnDriver, specToAgentPrompt, specToContextMarkdown, specToFullMarkdown, stripeIntegrationSpec, supportFaqKnowledgeSpace, techContractsDocs, telemetryToEnvelope, twilioSmsIntegrationSpec, uploadedDocsKnowledgeSpace, validateFeatureTargetsV2, validateWorkflowSpec };"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4GA,qBAAqB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { E5, x8 } from "../schema/dist/index.js";
|
|
2
|
-
import { defineCommand, defineQuery } from "../
|
|
2
|
+
import { defineCommand, defineQuery } from "../operation.js";
|
|
3
3
|
|
|
4
4
|
//#region ../../libs/contracts/dist/integrations/contracts.js
|
|
5
5
|
const IntegrationConnectionRecord = new x8({
|