dxcomplete 0.2.0 → 0.2.2

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.
Files changed (47) hide show
  1. package/.env.example +0 -7
  2. package/README.md +18 -54
  3. package/dist/cli.js +0 -22
  4. package/dist/validate.js +10 -26
  5. package/docs/model.md +3 -3
  6. package/docs/taxonomy.md +1 -1
  7. package/package.json +23 -23
  8. package/templates/process/README.md +1 -1
  9. package/dist/http/service.d.ts +0 -7
  10. package/dist/http/service.js +0 -725
  11. package/dist/mcp/docs.d.ts +0 -114
  12. package/dist/mcp/docs.js +0 -626
  13. package/dist/mcp/server.d.ts +0 -20
  14. package/dist/mcp/server.js +0 -3059
  15. package/dist/runtime/auth.d.ts +0 -162
  16. package/dist/runtime/auth.js +0 -394
  17. package/dist/runtime/check.d.ts +0 -7
  18. package/dist/runtime/check.js +0 -16
  19. package/dist/runtime/config.d.ts +0 -17
  20. package/dist/runtime/config.js +0 -93
  21. package/dist/runtime/mongo.d.ts +0 -9
  22. package/dist/runtime/mongo.js +0 -56
  23. package/dist/runtime/records.d.ts +0 -427
  24. package/dist/runtime/records.js +0 -2092
  25. package/scripts/check-env-surface.mjs +0 -136
  26. package/scripts/check-public-copy.mjs +0 -263
  27. package/scripts/check-service-boundary.mjs +0 -63
  28. package/scripts/dogfood-work-order.mjs +0 -506
  29. package/scripts/smoke-mcp-http.mjs +0 -4026
  30. package/src/cli.ts +0 -268
  31. package/src/http/server.ts +0 -314
  32. package/src/http/service.ts +0 -934
  33. package/src/init.ts +0 -262
  34. package/src/install-manifest.ts +0 -144
  35. package/src/mcp/docs.ts +0 -777
  36. package/src/mcp/server.ts +0 -4580
  37. package/src/package-root.ts +0 -31
  38. package/src/runtime/actor.ts +0 -61
  39. package/src/runtime/auth.ts +0 -673
  40. package/src/runtime/check.ts +0 -18
  41. package/src/runtime/config.ts +0 -128
  42. package/src/runtime/mongo.ts +0 -89
  43. package/src/runtime/records.ts +0 -3205
  44. package/src/runtime/workspace.ts +0 -155
  45. package/src/upgrade.ts +0 -356
  46. package/src/validate.ts +0 -141
  47. package/src/version.ts +0 -16
@@ -1,114 +0,0 @@
1
- export declare const DOC_SOURCE_BASE_URL = "https://dxcomplete.directeddomains.com";
2
- export declare const DOC_PAGE_IDS: readonly ["start_here", "outcomes", "flow", "records", "roles", "operating_guide", "glossary"];
3
- export type DocPageId = (typeof DOC_PAGE_IDS)[number];
4
- type BaseDocPage = {
5
- page: DocPageId;
6
- title: string;
7
- sourceUrl: string;
8
- summary: string;
9
- };
10
- type StartHereDoc = BaseDocPage & {
11
- page: "start_here";
12
- phases: Array<{
13
- number: string;
14
- name: string;
15
- description: string;
16
- }>;
17
- };
18
- type OutcomesDoc = BaseDocPage & {
19
- page: "outcomes";
20
- outcomes: Array<{
21
- name: string;
22
- description: string;
23
- }>;
24
- transformationValue: Array<{
25
- state: string;
26
- focus: string;
27
- description: string;
28
- }>;
29
- goodLooksLike: Array<{
30
- statement: string;
31
- description: string;
32
- }>;
33
- };
34
- type FlowDoc = BaseDocPage & {
35
- page: "flow";
36
- phases: Array<{
37
- number: string;
38
- name: string;
39
- description: string;
40
- sourceUrl: string;
41
- }>;
42
- };
43
- type RecordsDoc = BaseDocPage & {
44
- page: "records";
45
- routingGuidance: {
46
- principle: string;
47
- sharpTest: string;
48
- axes: Array<{
49
- name: string;
50
- test: string;
51
- }>;
52
- routingOrder: Array<{
53
- signal: string;
54
- record: string;
55
- }>;
56
- edgeCases: string[];
57
- promotion: string;
58
- futureContainers: Array<{
59
- name: string;
60
- status: string;
61
- use: string;
62
- }>;
63
- };
64
- groups: Array<{
65
- group: string;
66
- purpose: string;
67
- records: Array<{
68
- name: string;
69
- summary: string;
70
- }>;
71
- }>;
72
- concepts: Array<{
73
- name: string;
74
- summary: string;
75
- }>;
76
- };
77
- type RolesDoc = BaseDocPage & {
78
- page: "roles";
79
- roles: Array<{
80
- name: string;
81
- responsibility: string;
82
- }>;
83
- };
84
- type OperatingGuideDoc = BaseDocPage & {
85
- page: "operating_guide";
86
- roles: Array<{
87
- name: string;
88
- use: string;
89
- defaultRecords: string[];
90
- avoid: string[];
91
- }>;
92
- recordRouting: Array<{
93
- situation: string;
94
- use: string;
95
- why: string;
96
- }>;
97
- itsmBoundaries: string[];
98
- freshAgentGuidance: string[];
99
- };
100
- export type GlossaryTerm = {
101
- term: string;
102
- category: string;
103
- definition: string;
104
- };
105
- type GlossaryDoc = BaseDocPage & {
106
- page: "glossary";
107
- terms: GlossaryTerm[];
108
- };
109
- export type DocPage = StartHereDoc | OutcomesDoc | FlowDoc | RecordsDoc | RolesDoc | OperatingGuideDoc | GlossaryDoc;
110
- export declare const DOC_REFERENCE: Record<DocPageId, DocPage>;
111
- export declare function getDocReference(page: DocPageId, term?: string): DocPage | (BaseDocPage & {
112
- term: GlossaryTerm;
113
- });
114
- export {};