gymmonk-schema 0.1.1 → 0.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.
- package/dist/index.d.ts +13 -13
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +14 -14
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export * from './audit/index.js';
|
|
2
|
-
export * from './auth/index.js';
|
|
3
|
-
export * from './common/index.js';
|
|
4
|
-
export * from './community/index.js';
|
|
5
|
-
export * from './feedback/index.js';
|
|
6
|
-
export * from './gym/index.js';
|
|
7
|
-
export * from './landing/index.js';
|
|
8
|
-
export * from './marketing/index.js';
|
|
9
|
-
export * from './notification/index.js';
|
|
10
|
-
export * from './nutrition/index.js';
|
|
11
|
-
export * from './subscription/index.js';
|
|
12
|
-
export * from './support/index.js';
|
|
13
|
-
export * from './workout/index.js';
|
|
1
|
+
export * as Audit from './audit/index.js';
|
|
2
|
+
export * as Auth from './auth/index.js';
|
|
3
|
+
export * as Common from './common/index.js';
|
|
4
|
+
export * as Community from './community/index.js';
|
|
5
|
+
export * as Feedback from './feedback/index.js';
|
|
6
|
+
export * as Gym from './gym/index.js';
|
|
7
|
+
export * as Landing from './landing/index.js';
|
|
8
|
+
export * as Marketing from './marketing/index.js';
|
|
9
|
+
export * as Notification from './notification/index.js';
|
|
10
|
+
export * as Nutrition from './nutrition/index.js';
|
|
11
|
+
export * as Subscription from './subscription/index.js';
|
|
12
|
+
export * as Support from './support/index.js';
|
|
13
|
+
export * as Workout from './workout/index.js';
|
|
14
14
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,KAAK,MAAM,kBAAkB,CAAC;AAC1C,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AAExC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,GAAG,MAAM,gBAAgB,CAAC;AACtC,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
// Root barrel for
|
|
1
|
+
// Root barrel for gymmonk-schema package
|
|
2
2
|
// Exposes all schema domains in a clean namespaced manner.
|
|
3
3
|
// Domains (alphabetical)
|
|
4
|
-
export * from './audit/index.js';
|
|
5
|
-
export * from './auth/index.js';
|
|
4
|
+
export * as Audit from './audit/index.js';
|
|
5
|
+
export * as Auth from './auth/index.js';
|
|
6
6
|
// Common primitives, enums, value-objects, pagination, etc.
|
|
7
|
-
export * from './common/index.js';
|
|
8
|
-
export * from './community/index.js';
|
|
9
|
-
export * from './feedback/index.js';
|
|
10
|
-
export * from './gym/index.js';
|
|
11
|
-
export * from './landing/index.js';
|
|
12
|
-
export * from './marketing/index.js';
|
|
13
|
-
export * from './notification/index.js';
|
|
14
|
-
export * from './nutrition/index.js';
|
|
15
|
-
export * from './subscription/index.js';
|
|
16
|
-
export * from './support/index.js';
|
|
17
|
-
export * from './workout/index.js';
|
|
7
|
+
export * as Common from './common/index.js';
|
|
8
|
+
export * as Community from './community/index.js';
|
|
9
|
+
export * as Feedback from './feedback/index.js';
|
|
10
|
+
export * as Gym from './gym/index.js';
|
|
11
|
+
export * as Landing from './landing/index.js';
|
|
12
|
+
export * as Marketing from './marketing/index.js';
|
|
13
|
+
export * as Notification from './notification/index.js';
|
|
14
|
+
export * as Nutrition from './nutrition/index.js';
|
|
15
|
+
export * as Subscription from './subscription/index.js';
|
|
16
|
+
export * as Support from './support/index.js';
|
|
17
|
+
export * as Workout from './workout/index.js';
|
|
18
18
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,yCAAyC;AACzC,2DAA2D;AAE3D,yBAAyB;AACzB,OAAO,KAAK,KAAK,MAAM,kBAAkB,CAAC;AAC1C,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AACxC,4DAA4D;AAC5D,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,GAAG,MAAM,gBAAgB,CAAC;AACtC,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC","sourcesContent":["// Root barrel for gymmonk-schema package\n// Exposes all schema domains in a clean namespaced manner.\n\n// Domains (alphabetical)\nexport * as Audit from './audit/index.js';\nexport * as Auth from './auth/index.js';\n// Common primitives, enums, value-objects, pagination, etc.\nexport * as Common from './common/index.js';\nexport * as Community from './community/index.js';\nexport * as Feedback from './feedback/index.js';\nexport * as Gym from './gym/index.js';\nexport * as Landing from './landing/index.js';\nexport * as Marketing from './marketing/index.js';\nexport * as Notification from './notification/index.js';\nexport * as Nutrition from './nutrition/index.js';\nexport * as Subscription from './subscription/index.js';\nexport * as Support from './support/index.js';\nexport * as Workout from './workout/index.js';\n"]}
|