@ankhorage/templates 9.1.1 → 9.1.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 (19) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +5 -3
  3. package/dist/templates/starter/categories/finance-money/ebanking-mobile/routes.d.ts +11 -0
  4. package/dist/templates/starter/categories/finance-money/ebanking-mobile/routes.d.ts.map +1 -0
  5. package/dist/templates/starter/categories/finance-money/ebanking-mobile/routes.js +49 -0
  6. package/dist/templates/starter/categories/finance-money/ebanking-mobile/routes.js.map +1 -0
  7. package/dist/templates/starter/categories/finance-money/ebanking-mobile/screens.d.ts +4 -0
  8. package/dist/templates/starter/categories/finance-money/ebanking-mobile/screens.d.ts.map +1 -0
  9. package/dist/templates/starter/categories/finance-money/ebanking-mobile/screens.js +299 -0
  10. package/dist/templates/starter/categories/finance-money/ebanking-mobile/screens.js.map +1 -0
  11. package/dist/templates/starter/categories/finance-money/ebanking-mobile/template.d.ts +0 -1
  12. package/dist/templates/starter/categories/finance-money/ebanking-mobile/template.d.ts.map +1 -1
  13. package/dist/templates/starter/categories/finance-money/ebanking-mobile/template.js +28 -14
  14. package/dist/templates/starter/categories/finance-money/ebanking-mobile/template.js.map +1 -1
  15. package/package.json +1 -1
  16. package/dist/templates/starter/categories/finance-money/ebanking-mobile/manifest.d.ts +0 -524
  17. package/dist/templates/starter/categories/finance-money/ebanking-mobile/manifest.d.ts.map +0 -1
  18. package/dist/templates/starter/categories/finance-money/ebanking-mobile/manifest.js +0 -977
  19. package/dist/templates/starter/categories/finance-money/ebanking-mobile/manifest.js.map +0 -1
@@ -1,524 +0,0 @@
1
- export declare const AUTHORED_EBANKING_MOBILE_MANIFEST: {
2
- metadata: {
3
- name: string;
4
- slug: string;
5
- version: string;
6
- category: "finance_money";
7
- themeId: string;
8
- };
9
- themes: {
10
- id: string;
11
- name: string;
12
- light: {
13
- primaryColor: string;
14
- harmony: "complementary";
15
- };
16
- dark: {
17
- primaryColor: string;
18
- harmony: "complementary";
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
- 'finance-money-ebanking-home': {
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
- scroll: boolean;
127
- };
128
- children: ({
129
- id: string;
130
- type: string;
131
- props: {
132
- eyebrow: string;
133
- title: string;
134
- description: string;
135
- };
136
- children?: never;
137
- } | {
138
- id: string;
139
- type: string;
140
- props: {
141
- title: string;
142
- description: string;
143
- eyebrow?: never;
144
- };
145
- children: {
146
- id: string;
147
- type: string;
148
- props: {
149
- title: string;
150
- description: string;
151
- tone: string;
152
- };
153
- children: {
154
- id: string;
155
- type: string;
156
- props: {
157
- eyebrow: string;
158
- title: string;
159
- description: string;
160
- tone: string;
161
- };
162
- }[];
163
- }[];
164
- } | {
165
- id: string;
166
- type: string;
167
- props: {
168
- title: string;
169
- description: string;
170
- eyebrow?: never;
171
- };
172
- children: {
173
- id: string;
174
- type: string;
175
- props: {
176
- title: string;
177
- description: string;
178
- tone: string;
179
- };
180
- children: {
181
- id: string;
182
- type: string;
183
- props: {
184
- children: string;
185
- color: string;
186
- variant: string;
187
- size: string;
188
- };
189
- }[];
190
- }[];
191
- })[];
192
- };
193
- };
194
- 'finance-money-ebanking-assets': {
195
- id: string;
196
- name: string;
197
- title: string;
198
- description: string;
199
- root: {
200
- id: string;
201
- type: string;
202
- props: {
203
- width: string;
204
- scroll: boolean;
205
- };
206
- children: ({
207
- id: string;
208
- type: string;
209
- props: {
210
- eyebrow: string;
211
- title: string;
212
- description: string;
213
- };
214
- children?: never;
215
- } | {
216
- id: string;
217
- type: string;
218
- props: {
219
- title: string;
220
- description: string;
221
- eyebrow?: never;
222
- };
223
- children: {
224
- id: string;
225
- type: string;
226
- props: {
227
- title: string;
228
- description: string;
229
- tone: string;
230
- };
231
- children: {
232
- id: string;
233
- type: string;
234
- props: {
235
- eyebrow: string;
236
- title: string;
237
- description: string;
238
- tone: string;
239
- };
240
- }[];
241
- }[];
242
- } | {
243
- id: string;
244
- type: string;
245
- props: {
246
- title: string;
247
- description: string;
248
- eyebrow?: never;
249
- };
250
- children: {
251
- id: string;
252
- type: string;
253
- props: {
254
- title: string;
255
- description: string;
256
- tone: string;
257
- };
258
- children: {
259
- id: string;
260
- type: string;
261
- props: {
262
- children: string;
263
- color: string;
264
- variant: string;
265
- size: string;
266
- };
267
- }[];
268
- }[];
269
- })[];
270
- };
271
- };
272
- 'finance-money-ebanking-payments': {
273
- id: string;
274
- name: string;
275
- title: string;
276
- description: string;
277
- root: {
278
- id: string;
279
- type: string;
280
- props: {
281
- width: string;
282
- scroll: boolean;
283
- };
284
- children: ({
285
- id: string;
286
- type: string;
287
- props: {
288
- eyebrow: string;
289
- title: string;
290
- description: string;
291
- };
292
- children?: never;
293
- } | {
294
- id: string;
295
- type: string;
296
- props: {
297
- title: string;
298
- description: string;
299
- eyebrow?: never;
300
- };
301
- children: {
302
- id: string;
303
- type: string;
304
- props: {
305
- title: string;
306
- description: string;
307
- tone: string;
308
- };
309
- children: {
310
- id: string;
311
- type: string;
312
- props: {
313
- children: string;
314
- color: string;
315
- variant: string;
316
- size: string;
317
- };
318
- }[];
319
- }[];
320
- } | {
321
- id: string;
322
- type: string;
323
- props: {
324
- title: string;
325
- description: string;
326
- eyebrow?: never;
327
- };
328
- children: {
329
- id: string;
330
- type: string;
331
- props: {
332
- title: string;
333
- description: string;
334
- tone: string;
335
- };
336
- children: {
337
- id: string;
338
- type: string;
339
- props: {
340
- eyebrow: string;
341
- title: string;
342
- description: string;
343
- tone: string;
344
- };
345
- }[];
346
- }[];
347
- })[];
348
- };
349
- };
350
- 'finance-money-ebanking-invest': {
351
- id: string;
352
- name: string;
353
- title: string;
354
- description: string;
355
- root: {
356
- id: string;
357
- type: string;
358
- props: {
359
- width: string;
360
- scroll: boolean;
361
- };
362
- children: ({
363
- id: string;
364
- type: string;
365
- props: {
366
- eyebrow: string;
367
- title: string;
368
- description: string;
369
- children?: never;
370
- color?: never;
371
- variant?: never;
372
- size?: never;
373
- };
374
- children?: never;
375
- } | {
376
- id: string;
377
- type: string;
378
- props: {
379
- title: string;
380
- description: string;
381
- eyebrow?: never;
382
- children?: never;
383
- color?: never;
384
- variant?: never;
385
- size?: never;
386
- };
387
- children: {
388
- id: string;
389
- type: string;
390
- props: {
391
- title: string;
392
- description: string;
393
- tone: string;
394
- };
395
- children: ({
396
- id: string;
397
- type: string;
398
- props: {
399
- eyebrow: string;
400
- title: string;
401
- description: string;
402
- tone: string;
403
- children?: never;
404
- color?: never;
405
- variant?: never;
406
- size?: never;
407
- };
408
- } | {
409
- id: string;
410
- type: string;
411
- props: {
412
- children: string;
413
- color: string;
414
- variant: string;
415
- size: string;
416
- eyebrow?: never;
417
- title?: never;
418
- description?: never;
419
- tone?: never;
420
- };
421
- })[];
422
- }[];
423
- } | {
424
- id: string;
425
- type: string;
426
- props: {
427
- children: string;
428
- color: string;
429
- variant: string;
430
- size: string;
431
- eyebrow?: never;
432
- title?: never;
433
- description?: never;
434
- };
435
- children?: never;
436
- })[];
437
- };
438
- };
439
- 'finance-money-ebanking-more': {
440
- id: string;
441
- name: string;
442
- title: string;
443
- description: string;
444
- root: {
445
- id: string;
446
- type: string;
447
- props: {
448
- width: string;
449
- scroll: boolean;
450
- };
451
- children: ({
452
- id: string;
453
- type: string;
454
- props: {
455
- eyebrow: string;
456
- title: string;
457
- description: string;
458
- children?: never;
459
- color?: never;
460
- variant?: never;
461
- size?: never;
462
- };
463
- children?: never;
464
- } | {
465
- id: string;
466
- type: string;
467
- props: {
468
- title: string;
469
- description: string;
470
- eyebrow?: never;
471
- children?: never;
472
- color?: never;
473
- variant?: never;
474
- size?: never;
475
- };
476
- children: {
477
- id: string;
478
- type: string;
479
- props: {
480
- title: string;
481
- description: string;
482
- tone: string;
483
- };
484
- children: ({
485
- id: string;
486
- type: string;
487
- props: {
488
- eyebrow: string;
489
- title: string;
490
- description: string;
491
- tone: string;
492
- color?: never;
493
- };
494
- } | {
495
- id: string;
496
- type: string;
497
- props: {
498
- title: string;
499
- description: string;
500
- color: string;
501
- eyebrow?: never;
502
- tone?: never;
503
- };
504
- })[];
505
- }[];
506
- } | {
507
- id: string;
508
- type: string;
509
- props: {
510
- children: string;
511
- color: string;
512
- variant: string;
513
- size: string;
514
- eyebrow?: never;
515
- title?: never;
516
- description?: never;
517
- };
518
- children?: never;
519
- })[];
520
- };
521
- };
522
- };
523
- };
524
- //# sourceMappingURL=manifest.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../../../../../src/templates/starter/categories/finance-money/ebanking-mobile/manifest.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAg9BvB,CAAC"}