@odla-ai/chapter 0.31.3 → 0.32.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/README.md +100 -2
- package/dist/{chunk-QWMP6TSM.js → chunk-BBCT7U3D.js} +282 -2
- package/dist/chunk-BBCT7U3D.js.map +1 -0
- package/dist/{copy-context-HAhNTZdl.d.ts → copy-context-BXBEdp4p.d.ts} +3 -3
- package/dist/index.cjs +363 -142
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +79 -5
- package/dist/index.d.ts +79 -5
- package/dist/index.js +363 -142
- package/dist/index.js.map +1 -1
- package/dist/ui/admin/index.d.ts +2 -2
- package/dist/ui/index.d.ts +2 -2
- package/dist/ui/index.js +5 -1
- package/dist/ui/member/index.d.ts +74 -3
- package/dist/ui/member/index.js +5 -1
- package/dist/worker/index.cjs.map +1 -1
- package/dist/worker/index.d.cts +3 -3
- package/dist/worker/index.d.ts +3 -3
- package/dist/worker/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-QWMP6TSM.js.map +0 -1
package/dist/worker/index.d.cts
CHANGED
|
@@ -370,9 +370,9 @@ interface ResolvedPipeline {
|
|
|
370
370
|
}
|
|
371
371
|
/** The application (join form) validation surface — which string fields are
|
|
372
372
|
* required vs accepted, their max lengths, and the request body cap. Drives
|
|
373
|
-
* submit validation
|
|
374
|
-
*
|
|
375
|
-
*
|
|
373
|
+
* submit validation, the generated `applications` schema, and the CRM slot
|
|
374
|
+
* projection; defaults to the reference form. Built-in fields retain their
|
|
375
|
+
* declared schema types/indexes, and site-defined fields become string attrs. */
|
|
376
376
|
interface ChapterApplication {
|
|
377
377
|
required?: readonly string[];
|
|
378
378
|
optional?: readonly string[];
|
package/dist/worker/index.d.ts
CHANGED
|
@@ -370,9 +370,9 @@ interface ResolvedPipeline {
|
|
|
370
370
|
}
|
|
371
371
|
/** The application (join form) validation surface — which string fields are
|
|
372
372
|
* required vs accepted, their max lengths, and the request body cap. Drives
|
|
373
|
-
* submit validation
|
|
374
|
-
*
|
|
375
|
-
*
|
|
373
|
+
* submit validation, the generated `applications` schema, and the CRM slot
|
|
374
|
+
* projection; defaults to the reference form. Built-in fields retain their
|
|
375
|
+
* declared schema types/indexes, and site-defined fields become string attrs. */
|
|
376
376
|
interface ChapterApplication {
|
|
377
377
|
required?: readonly string[];
|
|
378
378
|
optional?: readonly string[];
|