@ankhorage/templates 8.0.0 → 9.0.1

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 (61) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/assets/templates/capability-proof/checker.svg +1 -0
  3. package/assets/templates/lifestyle/plant-journal/evidence/concepts/000-garden-plan-a2d8d3cd507c.png +0 -0
  4. package/assets/templates/lifestyle/plant-journal/evidence/concepts/001-plant-detail-985c72c412d0.png +0 -0
  5. package/assets/templates/lifestyle/plant-journal/evidence/concepts/002-care-log-a35946ee0127.png +0 -0
  6. package/assets/templates/lifestyle/plant-journal/runtime/mara-detail-28e8095ae2e5.png +0 -0
  7. package/assets/templates/lifestyle/plant-journal/runtime/mara-hero-f4bc5dae1e42.png +0 -0
  8. package/dist/catalog.d.ts +4 -3
  9. package/dist/catalog.d.ts.map +1 -1
  10. package/dist/catalog.js +1 -1
  11. package/dist/catalog.js.map +1 -1
  12. package/dist/commands.d.ts +4 -6
  13. package/dist/commands.d.ts.map +1 -1
  14. package/dist/commands.js +16 -14
  15. package/dist/commands.js.map +1 -1
  16. package/dist/generators/create-category-app.js +1 -1
  17. package/dist/generators/create-category-app.js.map +1 -1
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/index.js +1 -1
  21. package/dist/index.js.map +1 -1
  22. package/dist/projectSeed.d.ts +4 -0
  23. package/dist/projectSeed.d.ts.map +1 -1
  24. package/dist/projectSeed.js +75 -5
  25. package/dist/projectSeed.js.map +1 -1
  26. package/dist/templates/starter/categories/lifestyle/index.d.ts +16 -2
  27. package/dist/templates/starter/categories/lifestyle/index.d.ts.map +1 -1
  28. package/dist/templates/starter/categories/lifestyle/index.js +9 -0
  29. package/dist/templates/starter/categories/lifestyle/index.js.map +1 -1
  30. package/dist/templates/starter/categories/lifestyle/plant-journal/assets.d.ts +8 -0
  31. package/dist/templates/starter/categories/lifestyle/plant-journal/assets.d.ts.map +1 -0
  32. package/dist/templates/starter/categories/lifestyle/plant-journal/assets.js +17 -0
  33. package/dist/templates/starter/categories/lifestyle/plant-journal/assets.js.map +1 -0
  34. package/dist/templates/starter/categories/lifestyle/plant-journal/index.d.ts +2 -0
  35. package/dist/templates/starter/categories/lifestyle/plant-journal/index.d.ts.map +1 -0
  36. package/dist/templates/starter/categories/lifestyle/plant-journal/index.js +2 -0
  37. package/dist/templates/starter/categories/lifestyle/plant-journal/index.js.map +1 -0
  38. package/dist/templates/starter/categories/lifestyle/plant-journal/manifest.d.ts +399 -0
  39. package/dist/templates/starter/categories/lifestyle/plant-journal/manifest.d.ts.map +1 -0
  40. package/dist/templates/starter/categories/lifestyle/plant-journal/manifest.js +381 -0
  41. package/dist/templates/starter/categories/lifestyle/plant-journal/manifest.js.map +1 -0
  42. package/dist/templates/starter/categories/lifestyle/plant-journal/template.d.ts +5 -0
  43. package/dist/templates/starter/categories/lifestyle/plant-journal/template.d.ts.map +1 -0
  44. package/dist/templates/starter/categories/lifestyle/plant-journal/template.js +21 -0
  45. package/dist/templates/starter/categories/lifestyle/plant-journal/template.js.map +1 -0
  46. package/dist/templates/starter/index.d.ts +2 -1
  47. package/dist/templates/starter/index.d.ts.map +1 -1
  48. package/dist/templates/starter/index.js +1 -0
  49. package/dist/templates/starter/index.js.map +1 -1
  50. package/dist/templates/starter/starter.assets.d.ts +22 -0
  51. package/dist/templates/starter/starter.assets.d.ts.map +1 -0
  52. package/dist/templates/starter/starter.assets.js +124 -0
  53. package/dist/templates/starter/starter.assets.js.map +1 -0
  54. package/dist/templates/starter/starter.template.d.ts +3 -4
  55. package/dist/templates/starter/starter.template.d.ts.map +1 -1
  56. package/dist/templates/starter/starter.template.js +4 -2
  57. package/dist/templates/starter/starter.template.js.map +1 -1
  58. package/dist/templates/starter/starter.types.d.ts +3 -0
  59. package/dist/templates/starter/starter.types.d.ts.map +1 -1
  60. package/dist/templates/starter/starter.types.js.map +1 -1
  61. package/package.json +3 -2
@@ -0,0 +1,399 @@
1
+ export declare const AUTHORED_PLANT_JOURNAL_MANIFEST: {
2
+ metadata: {
3
+ name: string;
4
+ slug: string;
5
+ version: string;
6
+ category: "lifestyle";
7
+ themeId: string;
8
+ };
9
+ themes: {
10
+ id: string;
11
+ name: string;
12
+ light: {
13
+ primaryColor: string;
14
+ harmony: "analogous";
15
+ };
16
+ dark: {
17
+ primaryColor: string;
18
+ harmony: "analogous";
19
+ };
20
+ tokens: {
21
+ spacing: {
22
+ none: number;
23
+ xs: number;
24
+ s: number;
25
+ m: number;
26
+ l: number;
27
+ xl: number;
28
+ xxl: number;
29
+ };
30
+ radii: {
31
+ none: number;
32
+ s: number;
33
+ m: number;
34
+ l: number;
35
+ full: number;
36
+ };
37
+ };
38
+ }[];
39
+ activeThemeId: string;
40
+ splashScreen: {
41
+ backgroundColor: string;
42
+ image: string;
43
+ imageWidth: number;
44
+ resizeMode: "contain";
45
+ dark: {
46
+ backgroundColor: string;
47
+ image: string;
48
+ imageWidth: number;
49
+ resizeMode: "contain";
50
+ };
51
+ };
52
+ infra: {
53
+ database: {
54
+ provider: "supabase";
55
+ tier: "dev";
56
+ };
57
+ storage: {
58
+ provider: "auto";
59
+ buckets: string[];
60
+ };
61
+ secretStore: {
62
+ provider: "supabase-vault";
63
+ };
64
+ deployment: {
65
+ target: "minikube";
66
+ monitoring: false;
67
+ };
68
+ auth: {
69
+ provider: "supabase";
70
+ scope: "global";
71
+ flow: {
72
+ signInRoute: string;
73
+ signUpRoute: string;
74
+ signOutRoute: string;
75
+ forgotPasswordRoute: string;
76
+ postSignInRoute: string;
77
+ unauthorizedRoute: string;
78
+ };
79
+ signIn: {
80
+ identifiers: "email"[];
81
+ };
82
+ signUp: {
83
+ requiredFields: ("email" | "password")[];
84
+ optionalFields: ("firstName" | "lastName")[];
85
+ signUpPolicy: "autoSignIn";
86
+ };
87
+ profile: {
88
+ fields: ("email" | "firstName" | "lastName")[];
89
+ };
90
+ };
91
+ networking: {
92
+ cdn: false;
93
+ };
94
+ modules: never[];
95
+ };
96
+ settings: {
97
+ localization: {
98
+ defaultLocale: string;
99
+ locales: string[];
100
+ };
101
+ };
102
+ navigator: {
103
+ type: "tabs";
104
+ initialRouteName: string;
105
+ routes: {
106
+ name: string;
107
+ screenId: string;
108
+ label: string;
109
+ icon: {
110
+ provider: string;
111
+ name: string;
112
+ };
113
+ }[];
114
+ };
115
+ screens: {
116
+ 'plant-journal-garden': {
117
+ id: string;
118
+ name: string;
119
+ title: string;
120
+ description: string;
121
+ root: {
122
+ id: string;
123
+ type: string;
124
+ props: {
125
+ width: string;
126
+ };
127
+ children: ({
128
+ id: string;
129
+ type: string;
130
+ props: {
131
+ eyebrow: string;
132
+ title: string;
133
+ description: string;
134
+ itemSize?: never;
135
+ gap?: never;
136
+ padding?: never;
137
+ peek?: never;
138
+ showControls?: never;
139
+ direction?: never;
140
+ motion?: never;
141
+ accessibilityLabel?: never;
142
+ previousLabel?: never;
143
+ nextLabel?: never;
144
+ };
145
+ children?: never;
146
+ } | {
147
+ id: string;
148
+ type: string;
149
+ props: {
150
+ title: string;
151
+ description: string;
152
+ eyebrow?: never;
153
+ itemSize?: never;
154
+ gap?: never;
155
+ padding?: never;
156
+ peek?: never;
157
+ showControls?: never;
158
+ direction?: never;
159
+ motion?: never;
160
+ accessibilityLabel?: never;
161
+ previousLabel?: never;
162
+ nextLabel?: never;
163
+ };
164
+ children: ({
165
+ id: string;
166
+ type: string;
167
+ props: {
168
+ eyebrow: string;
169
+ title: string;
170
+ description: string;
171
+ tone: string;
172
+ children?: never;
173
+ color?: never;
174
+ variant?: never;
175
+ size?: never;
176
+ };
177
+ } | {
178
+ id: string;
179
+ type: string;
180
+ props: {
181
+ children: string;
182
+ color: string;
183
+ variant: string;
184
+ size: string;
185
+ eyebrow?: never;
186
+ title?: never;
187
+ description?: never;
188
+ tone?: never;
189
+ };
190
+ })[];
191
+ } | {
192
+ id: string;
193
+ type: string;
194
+ props: {
195
+ itemSize: string;
196
+ gap: string;
197
+ padding: string;
198
+ peek: number;
199
+ showControls: boolean;
200
+ direction: string;
201
+ motion: string;
202
+ accessibilityLabel: string;
203
+ previousLabel: string;
204
+ nextLabel: string;
205
+ eyebrow?: never;
206
+ title?: never;
207
+ description?: never;
208
+ };
209
+ children: {
210
+ id: string;
211
+ type: string;
212
+ props: {
213
+ source: {
214
+ mediaId: string;
215
+ };
216
+ alt: string;
217
+ };
218
+ }[];
219
+ })[];
220
+ };
221
+ };
222
+ 'plant-journal-detail': {
223
+ id: string;
224
+ name: string;
225
+ title: string;
226
+ description: string;
227
+ root: {
228
+ id: string;
229
+ type: string;
230
+ props: {
231
+ width: string;
232
+ };
233
+ children: ({
234
+ id: string;
235
+ type: string;
236
+ props: {
237
+ eyebrow: string;
238
+ title: string;
239
+ description: string;
240
+ itemSize?: never;
241
+ gap?: never;
242
+ padding?: never;
243
+ peek?: never;
244
+ showControls?: never;
245
+ direction?: never;
246
+ motion?: never;
247
+ accessibilityLabel?: never;
248
+ previousLabel?: never;
249
+ nextLabel?: never;
250
+ };
251
+ children?: never;
252
+ } | {
253
+ id: string;
254
+ type: string;
255
+ props: {
256
+ itemSize: string;
257
+ gap: string;
258
+ padding: string;
259
+ peek: number;
260
+ showControls: boolean;
261
+ direction: string;
262
+ motion: string;
263
+ accessibilityLabel: string;
264
+ previousLabel: string;
265
+ nextLabel: string;
266
+ eyebrow?: never;
267
+ title?: never;
268
+ description?: never;
269
+ };
270
+ children: {
271
+ id: string;
272
+ type: string;
273
+ props: {
274
+ source: {
275
+ mediaId: string;
276
+ };
277
+ alt: string;
278
+ };
279
+ }[];
280
+ } | {
281
+ id: string;
282
+ type: string;
283
+ props: {
284
+ title: string;
285
+ description: string;
286
+ eyebrow?: never;
287
+ itemSize?: never;
288
+ gap?: never;
289
+ padding?: never;
290
+ peek?: never;
291
+ showControls?: never;
292
+ direction?: never;
293
+ motion?: never;
294
+ accessibilityLabel?: never;
295
+ previousLabel?: never;
296
+ nextLabel?: never;
297
+ };
298
+ children: {
299
+ id: string;
300
+ type: string;
301
+ props: {
302
+ eyebrow: string;
303
+ title: string;
304
+ description: string;
305
+ tone: string;
306
+ };
307
+ }[];
308
+ })[];
309
+ };
310
+ };
311
+ 'plant-journal-care-log': {
312
+ id: string;
313
+ name: string;
314
+ title: string;
315
+ description: string;
316
+ root: {
317
+ id: string;
318
+ type: string;
319
+ props: {
320
+ width: string;
321
+ };
322
+ children: ({
323
+ id: string;
324
+ type: string;
325
+ props: {
326
+ eyebrow: string;
327
+ title: string;
328
+ description: string;
329
+ };
330
+ children?: never;
331
+ } | {
332
+ id: string;
333
+ type: string;
334
+ props: {
335
+ title: string;
336
+ description: string;
337
+ eyebrow?: never;
338
+ };
339
+ children: ({
340
+ id: string;
341
+ type: string;
342
+ props: {
343
+ eyebrow: string;
344
+ title: string;
345
+ description: string;
346
+ tone: string;
347
+ color?: never;
348
+ };
349
+ } | {
350
+ id: string;
351
+ type: string;
352
+ props: {
353
+ title: string;
354
+ description: string;
355
+ color: string;
356
+ eyebrow?: never;
357
+ tone?: never;
358
+ };
359
+ })[];
360
+ })[];
361
+ };
362
+ };
363
+ };
364
+ media: {
365
+ assets: {
366
+ 'mara-detail': {
367
+ id: string;
368
+ name: string;
369
+ kind: "image";
370
+ source: {
371
+ kind: "bundled";
372
+ path: string;
373
+ };
374
+ contentType: string;
375
+ metadata: {
376
+ sizeBytes: number;
377
+ width: number;
378
+ height: number;
379
+ };
380
+ };
381
+ 'mara-hero': {
382
+ id: string;
383
+ name: string;
384
+ kind: "image";
385
+ source: {
386
+ kind: "bundled";
387
+ path: string;
388
+ };
389
+ contentType: string;
390
+ metadata: {
391
+ sizeBytes: number;
392
+ width: number;
393
+ height: number;
394
+ };
395
+ };
396
+ };
397
+ };
398
+ };
399
+ //# sourceMappingURL=manifest.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../../../../../src/templates/starter/categories/lifestyle/plant-journal/manifest.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2XrB,CAAC"}