includio-cms 0.34.0 → 0.34.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.
package/API.md CHANGED
@@ -1,8 +1,8 @@
1
- # includio-cms — Public API v0.34.0
1
+ # includio-cms — Public API v0.34.1
2
2
 
3
3
  > Auto-generated by `scripts/generate-api-md.ts`. Do not edit by hand.
4
4
 
5
- Entry points: **19** · Stable: **487** · Experimental: **4**
5
+ Entry points: **19** · Stable: **488** · Experimental: **4**
6
6
 
7
7
  Tags:
8
8
  - `@public` — frozen for v1.0; semver-protected.
@@ -137,6 +137,7 @@ Tags:
137
137
  ### `includio-cms/admin/client`
138
138
 
139
139
  - `const AcceptInvitePage: LegacyComponentType`
140
+ - `const AccountPage: LegacyComponentType`
140
141
  - `const AdminAfterLoginLayout: LegacyComponentType`
141
142
  - `interface AdminConfig` — Optional admin UI configuration — extension points for the panel sidebar
142
143
  - `const AdminLayout: LegacyComponentType`
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to includio-cms are documented here.
4
4
  Generated from `src/lib/updates/` — do not edit manually.
5
5
 
6
+ ## 0.34.1 — 2026-06-03
7
+
8
+ Fix: `AccountPage` eksportowany z głównego barrela `includio-cms/admin/client` (wcześniej brakowało go w eksportach, a scaffold importował z nieistniejącego subpath `includio-cms/admin/client/account`). Generowany `+page.svelte` dla konta importuje teraz z `includio-cms/admin/client`. Additive only.
9
+
10
+ ### Fixed
11
+ - `AccountPage` dodany do eksportów `includio-cms/admin/client`.
12
+ - Scaffold (`admin/(afterLogin)/account/+page.svelte`) importuje `AccountPage` z `includio-cms/admin/client` zamiast nieistniejącego `includio-cms/admin/client/account`.
13
+
6
14
  ## 0.34.0 — 2026-06-03
7
15
 
8
16
  Soft-delete zamówień (admin-only) — administrator może ukryć zamówienie z listy bez utraty danych. Odwracalne (kosz + przywracanie), bezpieczne księgowo: nie kasuje wiersza, faktur ani historii. Dozwolone tylko dla „bezpiecznych" statusów bez płatności (`new`, `awaitingPayment`, `cancelled`, `paymentRejected`) i zablokowane dla zamówień z wystawioną fakturą. Cała funkcja widoczna wyłącznie dla roli `admin`. Additive only — bez breaking changes.
package/DOCS.md CHANGED
@@ -1,4 +1,4 @@
1
- # Includio CMS Documentation (v0.34.0)
1
+ # Includio CMS Documentation (v0.34.1)
2
2
 
3
3
  > This file is auto-generated from the docs site. For the latest version, update the package.
4
4
 
@@ -11,6 +11,7 @@ export { default as UsersPage } from './users/users-page.svelte';
11
11
  export { default as AcceptInvitePage } from './users/accept-invite-page.svelte';
12
12
  export { default as ResetPasswordPage } from './login/reset-password-page.svelte';
13
13
  export { default as MaintenancePage } from './maintenance/maintenance-page.svelte';
14
+ export { default as AccountPage } from './account/account-page.svelte';
14
15
  export { default as MediaSelector } from '../components/media/media-selector.svelte';
15
16
  export { default as ShopProductsListPage } from './shop/shop-products-list-page.svelte';
16
17
  export { default as ShippingMethodsListPage } from './shop/shipping-methods-list-page.svelte';
@@ -11,6 +11,7 @@ export { default as UsersPage } from './users/users-page.svelte';
11
11
  export { default as AcceptInvitePage } from './users/accept-invite-page.svelte';
12
12
  export { default as ResetPasswordPage } from './login/reset-password-page.svelte';
13
13
  export { default as MaintenancePage } from './maintenance/maintenance-page.svelte';
14
+ export { default as AccountPage } from './account/account-page.svelte';
14
15
  export { default as MediaSelector } from '../components/media/media-selector.svelte';
15
16
  export { default as ShopProductsListPage } from './shop/shop-products-list-page.svelte';
16
17
  export { default as ShippingMethodsListPage } from './shop/shipping-methods-list-page.svelte';
@@ -160,7 +160,7 @@ export async function load({ params }) {
160
160
  path: 'admin/(afterLogin)/account/+page.svelte',
161
161
  content: `${GENERATED_COMMENT}
162
162
  <script lang="ts">
163
- import { AccountPage } from 'includio-cms/admin/client/account';
163
+ import { AccountPage } from 'includio-cms/admin/client';
164
164
  </script>
165
165
 
166
166
  <AccountPage />
@@ -0,0 +1,2 @@
1
+ import type { CmsUpdate } from '../index.js';
2
+ export declare const update: CmsUpdate;
@@ -0,0 +1,11 @@
1
+ export const update = {
2
+ version: '0.34.1',
3
+ date: '2026-06-03',
4
+ description: 'Fix: `AccountPage` eksportowany z głównego barrela `includio-cms/admin/client` (wcześniej brakowało go w eksportach, a scaffold importował z nieistniejącego subpath `includio-cms/admin/client/account`). Generowany `+page.svelte` dla konta importuje teraz z `includio-cms/admin/client`. Additive only.',
5
+ features: [],
6
+ fixes: [
7
+ '`AccountPage` dodany do eksportów `includio-cms/admin/client`.',
8
+ 'Scaffold (`admin/(afterLogin)/account/+page.svelte`) importuje `AccountPage` z `includio-cms/admin/client` zamiast nieistniejącego `includio-cms/admin/client/account`.'
9
+ ],
10
+ breakingChanges: []
11
+ };
@@ -64,6 +64,7 @@ import { update as update0261 } from './0.26.1/index.js';
64
64
  import { update as update0270 } from './0.27.0/index.js';
65
65
  import { update as update0280 } from './0.28.0/index.js';
66
66
  import { update as update0340 } from './0.34.0/index.js';
67
+ import { update as update0341 } from './0.34.1/index.js';
67
68
  export const updates = [
68
69
  update0065,
69
70
  update0066,
@@ -130,7 +131,8 @@ export const updates = [
130
131
  update0261,
131
132
  update0270,
132
133
  update0280,
133
- update0340
134
+ update0340,
135
+ update0341
134
136
  ];
135
137
  export const getUpdatesFrom = (fromVersion) => {
136
138
  const fromParts = fromVersion.split('.').map(Number);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "includio-cms",
3
- "version": "0.34.0",
3
+ "version": "0.34.1",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",