@umituz/web-cloudflare 1.4.9 → 1.4.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/web-cloudflare",
3
- "version": "1.4.9",
3
+ "version": "1.4.10",
4
4
  "description": "Comprehensive Cloudflare Workers & Pages integration with config-based patterns, middleware, router, workflows, and AI (Patch-only versioning: only z in x.y.z increments)",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -1,21 +1,13 @@
1
1
  /**
2
- * @umituz/web-cloudflare - Pages Domain
2
+ * Pages Domain
3
3
  * Cloudflare Pages deployment and management
4
4
  */
5
5
 
6
- // Services
7
- export { PagesService, pagesService } from './services';
6
+ // Entities
7
+ export * from './entities';
8
8
 
9
9
  // Types
10
- export type {
11
- IPagesService,
12
- } from './types';
10
+ export * from './types';
13
11
 
14
- // Entities
15
- export type {
16
- PagesProject,
17
- PagesDeployment,
18
- PagesDeployOptions,
19
- PagesFunction,
20
- PagesDeploymentResult,
21
- } from './entities';
12
+ // Services
13
+ export * from './services';