@contractspec/module.lifecycle-advisor 2.3.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +1088 -20
- package/dist/ceremony/ceremony-designer.d.ts +5 -1
- package/dist/data/library-stage-map.d.ts +6 -0
- package/dist/data/stage-playbooks.d.ts +6 -0
- package/dist/i18n/catalogs/en.d.ts +6 -0
- package/dist/i18n/catalogs/es.d.ts +6 -0
- package/dist/i18n/catalogs/fr.d.ts +6 -0
- package/dist/i18n/catalogs/index.d.ts +8 -0
- package/dist/i18n/i18n.test.d.ts +1 -0
- package/dist/i18n/index.d.ts +14 -0
- package/dist/i18n/keys.d.ts +183 -0
- package/dist/i18n/locale.d.ts +8 -0
- package/dist/i18n/messages.d.ts +14 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1088 -20
- package/dist/node/index.js +1088 -20
- package/dist/recommendations/library-recommender.d.ts +5 -1
- package/dist/recommendations/recommendation-engine.d.ts +2 -0
- package/package.json +5 -4
- package/src/data/library-stage-map.ts +21 -1
- package/src/data/stage-playbooks.ts +34 -1
|
@@ -8,6 +8,10 @@ interface PlaybookCeremonyEntry {
|
|
|
8
8
|
export declare class LifecycleCeremonyDesigner {
|
|
9
9
|
private readonly ceremonies;
|
|
10
10
|
constructor(overrides?: PlaybookCeremonyEntry[]);
|
|
11
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Return ceremony config for a stage.
|
|
13
|
+
* When `locale` is provided, ceremony title and copy are translated.
|
|
14
|
+
*/
|
|
15
|
+
design(stage: LifecycleStage, locale?: string): CeremonyConfig | undefined;
|
|
12
16
|
}
|
|
13
17
|
export {};
|
|
@@ -4,5 +4,11 @@ export interface LibraryStageEntry {
|
|
|
4
4
|
stage: LifecycleStage;
|
|
5
5
|
items: LibraryRecommendation[];
|
|
6
6
|
}
|
|
7
|
+
/**
|
|
8
|
+
* Return the library-stage map with translated descriptions for the given locale.
|
|
9
|
+
* Falls back to English when locale is omitted or unsupported.
|
|
10
|
+
*/
|
|
11
|
+
export declare function getLocalizedLibraryStageMap(locale?: string): LibraryStageEntry[];
|
|
12
|
+
/** Backward-compatible static export (English defaults). */
|
|
7
13
|
declare const libraryStageMap: LibraryStageEntry[];
|
|
8
14
|
export default libraryStageMap;
|
|
@@ -6,5 +6,11 @@ export interface StagePlaybookData {
|
|
|
6
6
|
actions: LifecycleAction[];
|
|
7
7
|
ceremony?: LifecycleRecommendation['ceremony'];
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* Return stage playbooks with translated strings for the given locale.
|
|
11
|
+
* Falls back to English when locale is omitted or unsupported.
|
|
12
|
+
*/
|
|
13
|
+
export declare function getLocalizedStagePlaybooks(locale?: string): StagePlaybookData[];
|
|
14
|
+
/** Backward-compatible static export (English defaults). */
|
|
9
15
|
declare const stagePlaybooks: StagePlaybookData[];
|
|
10
16
|
export default stagePlaybooks;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Internationalization (i18n) module for @contractspec/module.lifecycle-advisor.
|
|
3
|
+
*
|
|
4
|
+
* @module i18n
|
|
5
|
+
*/
|
|
6
|
+
export { createLifecycleAdvisorI18n, getDefaultI18n, resetI18nRegistry, } from './messages';
|
|
7
|
+
export type { LifecycleAdvisorI18n } from './messages';
|
|
8
|
+
export { resolveLocale, isSupportedLocale, DEFAULT_LOCALE, SUPPORTED_LOCALES, } from './locale';
|
|
9
|
+
export type { SupportedLocale } from './locale';
|
|
10
|
+
export { I18N_KEYS, FOCUS_KEYS, ACTION_KEYS, CEREMONY_KEYS, LIBRARY_KEYS, ENGINE_KEYS, } from './keys';
|
|
11
|
+
export type { LifecycleAdvisorMessageKey } from './keys';
|
|
12
|
+
export { enMessages } from './catalogs/en';
|
|
13
|
+
export { frMessages } from './catalogs/fr';
|
|
14
|
+
export { esMessages } from './catalogs/es';
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Typed message keys for the lifecycle-advisor i18n system.
|
|
3
|
+
*
|
|
4
|
+
* Organized by domain: playbook (focus, actions, ceremony), library, engine.
|
|
5
|
+
*
|
|
6
|
+
* @module i18n/keys
|
|
7
|
+
*/
|
|
8
|
+
export declare const FOCUS_KEYS: {
|
|
9
|
+
readonly 'playbook.stage0.focus.0': "playbook.stage0.focus.0";
|
|
10
|
+
readonly 'playbook.stage0.focus.1': "playbook.stage0.focus.1";
|
|
11
|
+
readonly 'playbook.stage0.focus.2': "playbook.stage0.focus.2";
|
|
12
|
+
readonly 'playbook.stage1.focus.0': "playbook.stage1.focus.0";
|
|
13
|
+
readonly 'playbook.stage1.focus.1': "playbook.stage1.focus.1";
|
|
14
|
+
readonly 'playbook.stage1.focus.2': "playbook.stage1.focus.2";
|
|
15
|
+
readonly 'playbook.stage2.focus.0': "playbook.stage2.focus.0";
|
|
16
|
+
readonly 'playbook.stage2.focus.1': "playbook.stage2.focus.1";
|
|
17
|
+
readonly 'playbook.stage2.focus.2': "playbook.stage2.focus.2";
|
|
18
|
+
readonly 'playbook.stage3.focus.0': "playbook.stage3.focus.0";
|
|
19
|
+
readonly 'playbook.stage3.focus.1': "playbook.stage3.focus.1";
|
|
20
|
+
readonly 'playbook.stage3.focus.2': "playbook.stage3.focus.2";
|
|
21
|
+
readonly 'playbook.stage4.focus.0': "playbook.stage4.focus.0";
|
|
22
|
+
readonly 'playbook.stage4.focus.1': "playbook.stage4.focus.1";
|
|
23
|
+
readonly 'playbook.stage4.focus.2': "playbook.stage4.focus.2";
|
|
24
|
+
readonly 'playbook.stage5.focus.0': "playbook.stage5.focus.0";
|
|
25
|
+
readonly 'playbook.stage5.focus.1': "playbook.stage5.focus.1";
|
|
26
|
+
readonly 'playbook.stage5.focus.2': "playbook.stage5.focus.2";
|
|
27
|
+
readonly 'playbook.stage6.focus.0': "playbook.stage6.focus.0";
|
|
28
|
+
readonly 'playbook.stage6.focus.1': "playbook.stage6.focus.1";
|
|
29
|
+
readonly 'playbook.stage6.focus.2': "playbook.stage6.focus.2";
|
|
30
|
+
};
|
|
31
|
+
export declare const ACTION_KEYS: {
|
|
32
|
+
readonly 'playbook.stage0.action0.title': "playbook.stage0.action0.title";
|
|
33
|
+
readonly 'playbook.stage0.action0.description': "playbook.stage0.action0.description";
|
|
34
|
+
readonly 'playbook.stage0.action1.title': "playbook.stage0.action1.title";
|
|
35
|
+
readonly 'playbook.stage0.action1.description': "playbook.stage0.action1.description";
|
|
36
|
+
readonly 'playbook.stage1.action0.title': "playbook.stage1.action0.title";
|
|
37
|
+
readonly 'playbook.stage1.action0.description': "playbook.stage1.action0.description";
|
|
38
|
+
readonly 'playbook.stage1.action1.title': "playbook.stage1.action1.title";
|
|
39
|
+
readonly 'playbook.stage1.action1.description': "playbook.stage1.action1.description";
|
|
40
|
+
readonly 'playbook.stage2.action0.title': "playbook.stage2.action0.title";
|
|
41
|
+
readonly 'playbook.stage2.action0.description': "playbook.stage2.action0.description";
|
|
42
|
+
readonly 'playbook.stage2.action1.title': "playbook.stage2.action1.title";
|
|
43
|
+
readonly 'playbook.stage2.action1.description': "playbook.stage2.action1.description";
|
|
44
|
+
readonly 'playbook.stage3.action0.title': "playbook.stage3.action0.title";
|
|
45
|
+
readonly 'playbook.stage3.action0.description': "playbook.stage3.action0.description";
|
|
46
|
+
readonly 'playbook.stage3.action1.title': "playbook.stage3.action1.title";
|
|
47
|
+
readonly 'playbook.stage3.action1.description': "playbook.stage3.action1.description";
|
|
48
|
+
readonly 'playbook.stage4.action0.title': "playbook.stage4.action0.title";
|
|
49
|
+
readonly 'playbook.stage4.action0.description': "playbook.stage4.action0.description";
|
|
50
|
+
readonly 'playbook.stage4.action1.title': "playbook.stage4.action1.title";
|
|
51
|
+
readonly 'playbook.stage4.action1.description': "playbook.stage4.action1.description";
|
|
52
|
+
readonly 'playbook.stage5.action0.title': "playbook.stage5.action0.title";
|
|
53
|
+
readonly 'playbook.stage5.action0.description': "playbook.stage5.action0.description";
|
|
54
|
+
readonly 'playbook.stage5.action1.title': "playbook.stage5.action1.title";
|
|
55
|
+
readonly 'playbook.stage5.action1.description': "playbook.stage5.action1.description";
|
|
56
|
+
readonly 'playbook.stage6.action0.title': "playbook.stage6.action0.title";
|
|
57
|
+
readonly 'playbook.stage6.action0.description': "playbook.stage6.action0.description";
|
|
58
|
+
readonly 'playbook.stage6.action1.title': "playbook.stage6.action1.title";
|
|
59
|
+
readonly 'playbook.stage6.action1.description': "playbook.stage6.action1.description";
|
|
60
|
+
};
|
|
61
|
+
export declare const CEREMONY_KEYS: {
|
|
62
|
+
readonly 'ceremony.stage0.title': "ceremony.stage0.title";
|
|
63
|
+
readonly 'ceremony.stage0.copy': "ceremony.stage0.copy";
|
|
64
|
+
readonly 'ceremony.stage1.title': "ceremony.stage1.title";
|
|
65
|
+
readonly 'ceremony.stage1.copy': "ceremony.stage1.copy";
|
|
66
|
+
readonly 'ceremony.stage2.title': "ceremony.stage2.title";
|
|
67
|
+
readonly 'ceremony.stage2.copy': "ceremony.stage2.copy";
|
|
68
|
+
readonly 'ceremony.stage3.title': "ceremony.stage3.title";
|
|
69
|
+
readonly 'ceremony.stage3.copy': "ceremony.stage3.copy";
|
|
70
|
+
readonly 'ceremony.stage4.title': "ceremony.stage4.title";
|
|
71
|
+
readonly 'ceremony.stage4.copy': "ceremony.stage4.copy";
|
|
72
|
+
readonly 'ceremony.stage5.title': "ceremony.stage5.title";
|
|
73
|
+
readonly 'ceremony.stage5.copy': "ceremony.stage5.copy";
|
|
74
|
+
readonly 'ceremony.stage6.title': "ceremony.stage6.title";
|
|
75
|
+
readonly 'ceremony.stage6.copy': "ceremony.stage6.copy";
|
|
76
|
+
};
|
|
77
|
+
export declare const LIBRARY_KEYS: {
|
|
78
|
+
readonly 'library.stage0.item0': "library.stage0.item0";
|
|
79
|
+
readonly 'library.stage0.item1': "library.stage0.item1";
|
|
80
|
+
readonly 'library.stage1.item0': "library.stage1.item0";
|
|
81
|
+
readonly 'library.stage1.item1': "library.stage1.item1";
|
|
82
|
+
readonly 'library.stage2.item0': "library.stage2.item0";
|
|
83
|
+
readonly 'library.stage2.item1': "library.stage2.item1";
|
|
84
|
+
readonly 'library.stage3.item0': "library.stage3.item0";
|
|
85
|
+
readonly 'library.stage3.item1': "library.stage3.item1";
|
|
86
|
+
readonly 'library.stage4.item0': "library.stage4.item0";
|
|
87
|
+
readonly 'library.stage4.item1': "library.stage4.item1";
|
|
88
|
+
readonly 'library.stage5.item0': "library.stage5.item0";
|
|
89
|
+
readonly 'library.stage5.item1': "library.stage5.item1";
|
|
90
|
+
readonly 'library.stage6.item0': "library.stage6.item0";
|
|
91
|
+
readonly 'library.stage6.item1': "library.stage6.item1";
|
|
92
|
+
};
|
|
93
|
+
export declare const ENGINE_KEYS: {
|
|
94
|
+
/** "Advance {focus}" */
|
|
95
|
+
readonly 'engine.fallbackAction.title': "engine.fallbackAction.title";
|
|
96
|
+
/** 'Identify one task that will improve "{focus}" this week.' */
|
|
97
|
+
readonly 'engine.fallbackAction.description': "engine.fallbackAction.description";
|
|
98
|
+
};
|
|
99
|
+
export declare const I18N_KEYS: {
|
|
100
|
+
/** "Advance {focus}" */
|
|
101
|
+
readonly 'engine.fallbackAction.title': "engine.fallbackAction.title";
|
|
102
|
+
/** 'Identify one task that will improve "{focus}" this week.' */
|
|
103
|
+
readonly 'engine.fallbackAction.description': "engine.fallbackAction.description";
|
|
104
|
+
readonly 'library.stage0.item0': "library.stage0.item0";
|
|
105
|
+
readonly 'library.stage0.item1': "library.stage0.item1";
|
|
106
|
+
readonly 'library.stage1.item0': "library.stage1.item0";
|
|
107
|
+
readonly 'library.stage1.item1': "library.stage1.item1";
|
|
108
|
+
readonly 'library.stage2.item0': "library.stage2.item0";
|
|
109
|
+
readonly 'library.stage2.item1': "library.stage2.item1";
|
|
110
|
+
readonly 'library.stage3.item0': "library.stage3.item0";
|
|
111
|
+
readonly 'library.stage3.item1': "library.stage3.item1";
|
|
112
|
+
readonly 'library.stage4.item0': "library.stage4.item0";
|
|
113
|
+
readonly 'library.stage4.item1': "library.stage4.item1";
|
|
114
|
+
readonly 'library.stage5.item0': "library.stage5.item0";
|
|
115
|
+
readonly 'library.stage5.item1': "library.stage5.item1";
|
|
116
|
+
readonly 'library.stage6.item0': "library.stage6.item0";
|
|
117
|
+
readonly 'library.stage6.item1': "library.stage6.item1";
|
|
118
|
+
readonly 'ceremony.stage0.title': "ceremony.stage0.title";
|
|
119
|
+
readonly 'ceremony.stage0.copy': "ceremony.stage0.copy";
|
|
120
|
+
readonly 'ceremony.stage1.title': "ceremony.stage1.title";
|
|
121
|
+
readonly 'ceremony.stage1.copy': "ceremony.stage1.copy";
|
|
122
|
+
readonly 'ceremony.stage2.title': "ceremony.stage2.title";
|
|
123
|
+
readonly 'ceremony.stage2.copy': "ceremony.stage2.copy";
|
|
124
|
+
readonly 'ceremony.stage3.title': "ceremony.stage3.title";
|
|
125
|
+
readonly 'ceremony.stage3.copy': "ceremony.stage3.copy";
|
|
126
|
+
readonly 'ceremony.stage4.title': "ceremony.stage4.title";
|
|
127
|
+
readonly 'ceremony.stage4.copy': "ceremony.stage4.copy";
|
|
128
|
+
readonly 'ceremony.stage5.title': "ceremony.stage5.title";
|
|
129
|
+
readonly 'ceremony.stage5.copy': "ceremony.stage5.copy";
|
|
130
|
+
readonly 'ceremony.stage6.title': "ceremony.stage6.title";
|
|
131
|
+
readonly 'ceremony.stage6.copy': "ceremony.stage6.copy";
|
|
132
|
+
readonly 'playbook.stage0.action0.title': "playbook.stage0.action0.title";
|
|
133
|
+
readonly 'playbook.stage0.action0.description': "playbook.stage0.action0.description";
|
|
134
|
+
readonly 'playbook.stage0.action1.title': "playbook.stage0.action1.title";
|
|
135
|
+
readonly 'playbook.stage0.action1.description': "playbook.stage0.action1.description";
|
|
136
|
+
readonly 'playbook.stage1.action0.title': "playbook.stage1.action0.title";
|
|
137
|
+
readonly 'playbook.stage1.action0.description': "playbook.stage1.action0.description";
|
|
138
|
+
readonly 'playbook.stage1.action1.title': "playbook.stage1.action1.title";
|
|
139
|
+
readonly 'playbook.stage1.action1.description': "playbook.stage1.action1.description";
|
|
140
|
+
readonly 'playbook.stage2.action0.title': "playbook.stage2.action0.title";
|
|
141
|
+
readonly 'playbook.stage2.action0.description': "playbook.stage2.action0.description";
|
|
142
|
+
readonly 'playbook.stage2.action1.title': "playbook.stage2.action1.title";
|
|
143
|
+
readonly 'playbook.stage2.action1.description': "playbook.stage2.action1.description";
|
|
144
|
+
readonly 'playbook.stage3.action0.title': "playbook.stage3.action0.title";
|
|
145
|
+
readonly 'playbook.stage3.action0.description': "playbook.stage3.action0.description";
|
|
146
|
+
readonly 'playbook.stage3.action1.title': "playbook.stage3.action1.title";
|
|
147
|
+
readonly 'playbook.stage3.action1.description': "playbook.stage3.action1.description";
|
|
148
|
+
readonly 'playbook.stage4.action0.title': "playbook.stage4.action0.title";
|
|
149
|
+
readonly 'playbook.stage4.action0.description': "playbook.stage4.action0.description";
|
|
150
|
+
readonly 'playbook.stage4.action1.title': "playbook.stage4.action1.title";
|
|
151
|
+
readonly 'playbook.stage4.action1.description': "playbook.stage4.action1.description";
|
|
152
|
+
readonly 'playbook.stage5.action0.title': "playbook.stage5.action0.title";
|
|
153
|
+
readonly 'playbook.stage5.action0.description': "playbook.stage5.action0.description";
|
|
154
|
+
readonly 'playbook.stage5.action1.title': "playbook.stage5.action1.title";
|
|
155
|
+
readonly 'playbook.stage5.action1.description': "playbook.stage5.action1.description";
|
|
156
|
+
readonly 'playbook.stage6.action0.title': "playbook.stage6.action0.title";
|
|
157
|
+
readonly 'playbook.stage6.action0.description': "playbook.stage6.action0.description";
|
|
158
|
+
readonly 'playbook.stage6.action1.title': "playbook.stage6.action1.title";
|
|
159
|
+
readonly 'playbook.stage6.action1.description': "playbook.stage6.action1.description";
|
|
160
|
+
readonly 'playbook.stage0.focus.0': "playbook.stage0.focus.0";
|
|
161
|
+
readonly 'playbook.stage0.focus.1': "playbook.stage0.focus.1";
|
|
162
|
+
readonly 'playbook.stage0.focus.2': "playbook.stage0.focus.2";
|
|
163
|
+
readonly 'playbook.stage1.focus.0': "playbook.stage1.focus.0";
|
|
164
|
+
readonly 'playbook.stage1.focus.1': "playbook.stage1.focus.1";
|
|
165
|
+
readonly 'playbook.stage1.focus.2': "playbook.stage1.focus.2";
|
|
166
|
+
readonly 'playbook.stage2.focus.0': "playbook.stage2.focus.0";
|
|
167
|
+
readonly 'playbook.stage2.focus.1': "playbook.stage2.focus.1";
|
|
168
|
+
readonly 'playbook.stage2.focus.2': "playbook.stage2.focus.2";
|
|
169
|
+
readonly 'playbook.stage3.focus.0': "playbook.stage3.focus.0";
|
|
170
|
+
readonly 'playbook.stage3.focus.1': "playbook.stage3.focus.1";
|
|
171
|
+
readonly 'playbook.stage3.focus.2': "playbook.stage3.focus.2";
|
|
172
|
+
readonly 'playbook.stage4.focus.0': "playbook.stage4.focus.0";
|
|
173
|
+
readonly 'playbook.stage4.focus.1': "playbook.stage4.focus.1";
|
|
174
|
+
readonly 'playbook.stage4.focus.2': "playbook.stage4.focus.2";
|
|
175
|
+
readonly 'playbook.stage5.focus.0': "playbook.stage5.focus.0";
|
|
176
|
+
readonly 'playbook.stage5.focus.1': "playbook.stage5.focus.1";
|
|
177
|
+
readonly 'playbook.stage5.focus.2': "playbook.stage5.focus.2";
|
|
178
|
+
readonly 'playbook.stage6.focus.0': "playbook.stage6.focus.0";
|
|
179
|
+
readonly 'playbook.stage6.focus.1': "playbook.stage6.focus.1";
|
|
180
|
+
readonly 'playbook.stage6.focus.2': "playbook.stage6.focus.2";
|
|
181
|
+
};
|
|
182
|
+
/** Union type of all valid lifecycle-advisor i18n keys */
|
|
183
|
+
export type LifecycleAdvisorMessageKey = keyof typeof I18N_KEYS;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Locale utilities for the lifecycle-advisor package.
|
|
3
|
+
*
|
|
4
|
+
* Re-exported from the shared i18n factory in contracts-spec.
|
|
5
|
+
*
|
|
6
|
+
* @module i18n/locale
|
|
7
|
+
*/
|
|
8
|
+
export { DEFAULT_LOCALE, SUPPORTED_LOCALES, resolveLocale, isSupportedLocale, type SupportedLocale, } from '@contractspec/lib.contracts-spec/translations';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Translation helper for the lifecycle-advisor package.
|
|
3
|
+
* @module i18n/messages
|
|
4
|
+
*/
|
|
5
|
+
import { type I18nInstance } from '@contractspec/lib.contracts-spec/translations';
|
|
6
|
+
import type { LifecycleAdvisorMessageKey } from './keys';
|
|
7
|
+
/** I18n instance type for the lifecycle-advisor package. */
|
|
8
|
+
export type LifecycleAdvisorI18n = I18nInstance<LifecycleAdvisorMessageKey>;
|
|
9
|
+
/** Create an i18n instance for a given locale. */
|
|
10
|
+
export declare const createLifecycleAdvisorI18n: (optionsLocale?: string, runtimeLocale?: string) => I18nInstance<"playbook.stage0.focus.0" | "playbook.stage0.focus.1" | "playbook.stage0.focus.2" | "playbook.stage1.focus.0" | "playbook.stage1.focus.1" | "playbook.stage1.focus.2" | "playbook.stage2.focus.0" | "playbook.stage2.focus.1" | "playbook.stage2.focus.2" | "playbook.stage3.focus.0" | "playbook.stage3.focus.1" | "playbook.stage3.focus.2" | "playbook.stage4.focus.0" | "playbook.stage4.focus.1" | "playbook.stage4.focus.2" | "playbook.stage5.focus.0" | "playbook.stage5.focus.1" | "playbook.stage5.focus.2" | "playbook.stage6.focus.0" | "playbook.stage6.focus.1" | "playbook.stage6.focus.2" | "playbook.stage0.action0.title" | "playbook.stage0.action0.description" | "playbook.stage0.action1.title" | "playbook.stage0.action1.description" | "playbook.stage1.action0.title" | "playbook.stage1.action0.description" | "playbook.stage1.action1.title" | "playbook.stage1.action1.description" | "playbook.stage2.action0.title" | "playbook.stage2.action0.description" | "playbook.stage2.action1.title" | "playbook.stage2.action1.description" | "playbook.stage3.action0.title" | "playbook.stage3.action0.description" | "playbook.stage3.action1.title" | "playbook.stage3.action1.description" | "playbook.stage4.action0.title" | "playbook.stage4.action0.description" | "playbook.stage4.action1.title" | "playbook.stage4.action1.description" | "playbook.stage5.action0.title" | "playbook.stage5.action0.description" | "playbook.stage5.action1.title" | "playbook.stage5.action1.description" | "playbook.stage6.action0.title" | "playbook.stage6.action0.description" | "playbook.stage6.action1.title" | "playbook.stage6.action1.description" | "ceremony.stage0.title" | "ceremony.stage0.copy" | "ceremony.stage1.title" | "ceremony.stage1.copy" | "ceremony.stage2.title" | "ceremony.stage2.copy" | "ceremony.stage3.title" | "ceremony.stage3.copy" | "ceremony.stage4.title" | "ceremony.stage4.copy" | "ceremony.stage5.title" | "ceremony.stage5.copy" | "ceremony.stage6.title" | "ceremony.stage6.copy" | "library.stage0.item0" | "library.stage0.item1" | "library.stage1.item0" | "library.stage1.item1" | "library.stage2.item0" | "library.stage2.item1" | "library.stage3.item0" | "library.stage3.item1" | "library.stage4.item0" | "library.stage4.item1" | "library.stage5.item0" | "library.stage5.item1" | "library.stage6.item0" | "library.stage6.item1" | "engine.fallbackAction.title" | "engine.fallbackAction.description">;
|
|
11
|
+
/** Create a default (English) i18n instance. */
|
|
12
|
+
export declare const getDefaultI18n: () => I18nInstance<"playbook.stage0.focus.0" | "playbook.stage0.focus.1" | "playbook.stage0.focus.2" | "playbook.stage1.focus.0" | "playbook.stage1.focus.1" | "playbook.stage1.focus.2" | "playbook.stage2.focus.0" | "playbook.stage2.focus.1" | "playbook.stage2.focus.2" | "playbook.stage3.focus.0" | "playbook.stage3.focus.1" | "playbook.stage3.focus.2" | "playbook.stage4.focus.0" | "playbook.stage4.focus.1" | "playbook.stage4.focus.2" | "playbook.stage5.focus.0" | "playbook.stage5.focus.1" | "playbook.stage5.focus.2" | "playbook.stage6.focus.0" | "playbook.stage6.focus.1" | "playbook.stage6.focus.2" | "playbook.stage0.action0.title" | "playbook.stage0.action0.description" | "playbook.stage0.action1.title" | "playbook.stage0.action1.description" | "playbook.stage1.action0.title" | "playbook.stage1.action0.description" | "playbook.stage1.action1.title" | "playbook.stage1.action1.description" | "playbook.stage2.action0.title" | "playbook.stage2.action0.description" | "playbook.stage2.action1.title" | "playbook.stage2.action1.description" | "playbook.stage3.action0.title" | "playbook.stage3.action0.description" | "playbook.stage3.action1.title" | "playbook.stage3.action1.description" | "playbook.stage4.action0.title" | "playbook.stage4.action0.description" | "playbook.stage4.action1.title" | "playbook.stage4.action1.description" | "playbook.stage5.action0.title" | "playbook.stage5.action0.description" | "playbook.stage5.action1.title" | "playbook.stage5.action1.description" | "playbook.stage6.action0.title" | "playbook.stage6.action0.description" | "playbook.stage6.action1.title" | "playbook.stage6.action1.description" | "ceremony.stage0.title" | "ceremony.stage0.copy" | "ceremony.stage1.title" | "ceremony.stage1.copy" | "ceremony.stage2.title" | "ceremony.stage2.copy" | "ceremony.stage3.title" | "ceremony.stage3.copy" | "ceremony.stage4.title" | "ceremony.stage4.copy" | "ceremony.stage5.title" | "ceremony.stage5.copy" | "ceremony.stage6.title" | "ceremony.stage6.copy" | "library.stage0.item0" | "library.stage0.item1" | "library.stage1.item0" | "library.stage1.item1" | "library.stage2.item0" | "library.stage2.item1" | "library.stage3.item0" | "library.stage3.item1" | "library.stage4.item0" | "library.stage4.item1" | "library.stage5.item0" | "library.stage5.item1" | "library.stage6.item0" | "library.stage6.item1" | "engine.fallbackAction.title" | "engine.fallbackAction.description">;
|
|
13
|
+
/** Reset the shared registry (useful for testing). @internal */
|
|
14
|
+
export declare const resetI18nRegistry: () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
export * from './recommendations/recommendation-engine';
|
|
2
2
|
export * from './recommendations/library-recommender';
|
|
3
3
|
export * from './ceremony/ceremony-designer';
|
|
4
|
+
export { getLocalizedStagePlaybooks } from './data/stage-playbooks';
|
|
5
|
+
export type { StagePlaybookData } from './data/stage-playbooks';
|
|
6
|
+
export { getLocalizedLibraryStageMap } from './data/library-stage-map';
|
|
7
|
+
export type { LibraryStageEntry } from './data/library-stage-map';
|