@kya-os/contracts 1.6.19 → 1.7.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/dist/agentshield-api/schemas.d.ts +154 -154
- package/dist/audit/index.d.ts +24 -24
- package/dist/cli.d.ts +26 -26
- package/dist/consent/index.d.ts +8 -2
- package/dist/consent/index.js +73 -17
- package/dist/consent/schemas.d.ts +123 -123
- package/dist/consent/schemas.js +1 -1
- package/dist/consent/types.d.ts +1 -1
- package/dist/dashboard-config/schemas.d.ts +2241 -2241
- package/dist/delegation/schemas.d.ts +34 -34
- package/dist/deploy/schemas.d.ts +110 -110
- package/dist/handshake.d.ts +4 -4
- package/dist/handshake.js +2 -2
- package/dist/proof.d.ts +12 -12
- package/dist/registry.d.ts +8 -8
- package/dist/reputation/api.d.ts +146 -146
- package/dist/reputation/credentials.d.ts +60 -60
- package/dist/reputation/schemas.d.ts +24 -24
- package/dist/test.d.ts +12 -12
- package/dist/tool-protection/index.d.ts +18 -18
- package/dist/verifier.d.ts +8 -8
- package/dist/well-known/index.d.ts +716 -11
- package/dist/well-known/index.js +169 -1
- package/package.json +2 -1
package/dist/consent/schemas.js
CHANGED
|
@@ -65,7 +65,7 @@ exports.consentCustomFieldSchema = zod_1.z
|
|
|
65
65
|
.string()
|
|
66
66
|
.min(1, "Field label is required")
|
|
67
67
|
.max(100, "Field label must be 100 characters or less"),
|
|
68
|
-
type: zod_1.z.enum(["text", "textarea", "checkbox", "select"]),
|
|
68
|
+
type: zod_1.z.enum(["text", "textarea", "checkbox", "select", "email"]),
|
|
69
69
|
required: zod_1.z.boolean(),
|
|
70
70
|
placeholder: zod_1.z
|
|
71
71
|
.string()
|
package/dist/consent/types.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export interface ConsentCustomField {
|
|
|
47
47
|
/** Display label for the field */
|
|
48
48
|
label: string;
|
|
49
49
|
/** Field type */
|
|
50
|
-
type: 'text' | 'textarea' | 'checkbox' | 'select';
|
|
50
|
+
type: 'text' | 'textarea' | 'checkbox' | 'select' | 'email';
|
|
51
51
|
/** Whether field is required */
|
|
52
52
|
required: boolean;
|
|
53
53
|
/** Placeholder text */
|