@agntcms/next 0.2.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.
- package/dist/assets-Cyt9upqW.d.cts +290 -0
- package/dist/assets-P8OCigDG.d.ts +290 -0
- package/dist/client.cjs +13244 -0
- package/dist/client.d.cts +806 -0
- package/dist/client.d.ts +806 -0
- package/dist/client.mjs +13234 -0
- package/dist/config.cjs +240 -0
- package/dist/config.d.cts +112 -0
- package/dist/config.d.ts +112 -0
- package/dist/config.mjs +194 -0
- package/dist/defineForm-Bp9vzW56.d.ts +71 -0
- package/dist/defineForm-CJ8KZC93.d.cts +71 -0
- package/dist/defineSection-9qQ5ulAH.d.cts +243 -0
- package/dist/defineSection-Kr0pWqMY.d.ts +243 -0
- package/dist/form-BqY0H1V5.d.cts +753 -0
- package/dist/form-BqY0H1V5.d.ts +753 -0
- package/dist/global-CV23g5Bn.d.cts +15 -0
- package/dist/global-CV23g5Bn.d.ts +15 -0
- package/dist/handlers.cjs +2525 -0
- package/dist/handlers.d.cts +330 -0
- package/dist/handlers.d.ts +330 -0
- package/dist/handlers.mjs +2473 -0
- package/dist/index.cjs +372 -0
- package/dist/index.d.cts +133 -0
- package/dist/index.d.ts +133 -0
- package/dist/index.mjs +319 -0
- package/dist/rateLimit-CXptRM_K.d.ts +391 -0
- package/dist/rateLimit-CiROGTLE.d.cts +391 -0
- package/dist/registry-CraTTwT7.d.cts +29 -0
- package/dist/registry-DMujGqt0.d.ts +29 -0
- package/dist/server.cjs +1970 -0
- package/dist/server.d.cts +153 -0
- package/dist/server.d.ts +153 -0
- package/dist/server.mjs +1889 -0
- package/package.json +62 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A global content block — a named, standalone section instance
|
|
3
|
+
* that lives outside any page. Used for shared elements like
|
|
4
|
+
* headers, footers, CTAs that appear across multiple pages.
|
|
5
|
+
*
|
|
6
|
+
* Unlike pages, globals have no draft/publish cycle in v1 —
|
|
7
|
+
* saves are direct.
|
|
8
|
+
*/
|
|
9
|
+
interface Global {
|
|
10
|
+
readonly name: string;
|
|
11
|
+
readonly type: string;
|
|
12
|
+
readonly data: Readonly<Record<string, unknown>>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export type { Global as G };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A global content block — a named, standalone section instance
|
|
3
|
+
* that lives outside any page. Used for shared elements like
|
|
4
|
+
* headers, footers, CTAs that appear across multiple pages.
|
|
5
|
+
*
|
|
6
|
+
* Unlike pages, globals have no draft/publish cycle in v1 —
|
|
7
|
+
* saves are direct.
|
|
8
|
+
*/
|
|
9
|
+
interface Global {
|
|
10
|
+
readonly name: string;
|
|
11
|
+
readonly type: string;
|
|
12
|
+
readonly data: Readonly<Record<string, unknown>>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export type { Global as G };
|