@molda-org/core 0.1.0-next.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.
Files changed (2) hide show
  1. package/index.d.ts +20 -0
  2. package/package.json +21 -0
package/index.d.ts ADDED
@@ -0,0 +1,20 @@
1
+ import type { MoldaModuleDefinition, MoldaModuleShape } from '@molda-org/module-contracts';
2
+
3
+ export type CoreAction = 'updateProjectConfiguration' | 'setFeatureFlag';
4
+ export type CoreView = 'projectConfiguration' | 'featureFlags';
5
+ export type CoreHook = 'useProjectConfiguration' | 'useFeatureFlags';
6
+
7
+ export interface CoreModuleShape
8
+ extends MoldaModuleShape<
9
+ 'core',
10
+ CoreAction,
11
+ CoreView,
12
+ CoreHook
13
+ > {
14
+ readonly stage: 'initial';
15
+ readonly category: 'platform-core';
16
+ readonly purpose: 'Project identity, locale, time zone, currency, configuration, and feature flags.';
17
+ }
18
+
19
+ export type CoreModule = MoldaModuleDefinition<CoreModuleShape>;
20
+
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@molda-org/core",
3
+ "version": "0.1.0-next.0",
4
+ "type": "module",
5
+ "types": "./index.d.ts",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./index.d.ts"
9
+ }
10
+ },
11
+ "files": [
12
+ "index.d.ts"
13
+ ],
14
+ "dependencies": {
15
+ "@molda-org/module-contracts": "0.1.0-next.0"
16
+ },
17
+ "publishConfig": {
18
+ "access": "public",
19
+ "tag": "next"
20
+ }
21
+ }