@suveren/gateway 0.7.6 → 0.8.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/content/integrations/mollie.json +103 -28
- package/dist/mcp-server/http.mjs +228 -118
- package/dist/ui/assets/{index-CsrM6RQr.js → index-BFnSVa9N.js} +22 -22
- package/dist/ui/index.html +1 -1
- package/node_modules/@hap/core/dist/index.d.mts +29 -6
- package/node_modules/@hap/core/dist/index.d.ts +29 -6
- package/node_modules/@hap/core/dist/index.js +54 -8
- package/node_modules/@hap/core/dist/index.mjs +53 -8
- package/node_modules/@hap/core/package.json +2 -1
- package/node_modules/@hap/core/src/frame.ts +115 -14
- package/node_modules/@hap/core/src/gatekeeper.ts +26 -0
- package/node_modules/@hap/core/src/types.ts +7 -1
- package/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/node/buffer.buffer.d.ts +5 -0
- package/node_modules/@types/node/crypto.d.ts +0 -2
- package/node_modules/@types/node/dgram.d.ts +119 -4
- package/node_modules/@types/node/ffi.d.ts +1 -1
- package/node_modules/@types/node/fs/promises.d.ts +61 -65
- package/node_modules/@types/node/fs.d.ts +86 -76
- package/node_modules/@types/node/http.d.ts +1 -1
- package/node_modules/@types/node/http2.d.ts +2 -2
- package/node_modules/@types/node/index.d.ts +1 -0
- package/node_modules/@types/node/inspector.d.ts +2 -1
- package/node_modules/@types/node/net.d.ts +108 -16
- package/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/node/quic.d.ts +37 -11
- package/node_modules/@types/node/stream/iter.d.ts +4 -4
- package/node_modules/@types/node/tls.d.ts +24 -0
- package/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +5 -0
- package/node_modules/@types/node/ts5.6/index.d.ts +1 -0
- package/node_modules/@types/node/ts5.7/index.d.ts +1 -0
- package/node_modules/@types/node/tty.d.ts +4 -3
- package/node_modules/@types/node/vfs.d.ts +210 -0
- package/node_modules/@types/node/vm.d.ts +1 -1
- package/node_modules/express-rate-limit/dist/index.cjs +6 -3
- package/node_modules/express-rate-limit/dist/index.d.cts +11 -0
- package/node_modules/express-rate-limit/dist/index.d.mts +11 -0
- package/node_modules/express-rate-limit/dist/index.d.ts +11 -0
- package/node_modules/express-rate-limit/dist/index.mjs +6 -3
- package/node_modules/express-rate-limit/{license.md → license} +7 -6
- package/node_modules/express-rate-limit/package.json +5 -5
- package/node_modules/express-rate-limit/readme.md +1 -0
- package/node_modules/fast-uri/index.js +20 -5
- package/node_modules/fast-uri/lib/utils.js +8 -1
- package/node_modules/fast-uri/package.json +1 -1
- package/node_modules/fast-uri/test/component-safe-serialization.test.js +58 -0
- package/node_modules/fast-uri/test/ipv6-validation.test.js +34 -0
- package/node_modules/ip-address/README.md +92 -82
- package/node_modules/ip-address/dist/common.d.ts +20 -0
- package/node_modules/ip-address/dist/common.js +36 -0
- package/node_modules/ip-address/dist/common.js.map +1 -1
- package/node_modules/ip-address/dist/ipv4.d.ts +50 -0
- package/node_modules/ip-address/dist/ipv4.js +75 -0
- package/node_modules/ip-address/dist/ipv4.js.map +1 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +79 -10
- package/node_modules/ip-address/dist/ipv6.js +120 -30
- package/node_modules/ip-address/dist/ipv6.js.map +1 -1
- package/node_modules/ip-address/dist/v4/constants.d.ts +12 -0
- package/node_modules/ip-address/dist/v4/constants.js +40 -1
- package/node_modules/ip-address/dist/v4/constants.js.map +1 -1
- package/node_modules/ip-address/dist/v6/constants.d.ts +14 -0
- package/node_modules/ip-address/dist/v6/constants.js +47 -1
- package/node_modules/ip-address/dist/v6/constants.js.map +1 -1
- package/node_modules/ip-address/package.json +1 -1
- package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +7 -16
- package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +6 -17
- package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +7 -16
- package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +11 -34
- package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +7 -16
- package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +15 -35
- package/node_modules/jose/dist/types/jwk/embedded.d.ts +3 -8
- package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +5 -5
- package/node_modules/jose/dist/types/jwks/local.d.ts +6 -10
- package/node_modules/jose/dist/types/jwks/remote.d.ts +13 -24
- package/node_modules/jose/dist/types/jws/compact/sign.d.ts +5 -10
- package/node_modules/jose/dist/types/jws/compact/verify.d.ts +9 -18
- package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +7 -16
- package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +9 -18
- package/node_modules/jose/dist/types/jws/general/sign.d.ts +11 -21
- package/node_modules/jose/dist/types/jws/general/verify.d.ts +9 -18
- package/node_modules/jose/dist/types/jwt/decrypt.d.ts +10 -20
- package/node_modules/jose/dist/types/jwt/encrypt.d.ts +6 -13
- package/node_modules/jose/dist/types/jwt/sign.d.ts +5 -6
- package/node_modules/jose/dist/types/jwt/unsecured.d.ts +9 -14
- package/node_modules/jose/dist/types/jwt/verify.d.ts +9 -19
- package/node_modules/jose/dist/types/key/export.d.ts +4 -4
- package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +6 -8
- package/node_modules/jose/dist/types/key/generate_secret.d.ts +4 -11
- package/node_modules/jose/dist/types/key/import.d.ts +10 -17
- package/node_modules/jose/dist/types/types.d.ts +44 -84
- package/node_modules/jose/dist/types/util/base64url.d.ts +2 -2
- package/node_modules/jose/dist/types/util/decode_jwt.d.ts +3 -10
- package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +4 -4
- package/node_modules/jose/dist/types/util/errors.d.ts +26 -53
- package/node_modules/jose/dist/webapi/index.js +70 -32
- package/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +7 -8
- package/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +42 -48
- package/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +14 -14
- package/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +53 -64
- package/node_modules/jose/dist/webapi/jwe/general/decrypt.js +38 -49
- package/node_modules/jose/dist/webapi/jwe/general/encrypt.js +121 -169
- package/node_modules/jose/dist/webapi/jwk/embedded.js +30 -32
- package/node_modules/jose/dist/webapi/jwk/thumbprint.js +54 -70
- package/node_modules/jose/dist/webapi/jwks/local.js +47 -64
- package/node_modules/jose/dist/webapi/jwks/remote.js +88 -136
- package/node_modules/jose/dist/webapi/jws/compact/sign.js +21 -21
- package/node_modules/jose/dist/webapi/jws/compact/verify.js +7 -8
- package/node_modules/jose/dist/webapi/jws/flattened/sign.js +29 -31
- package/node_modules/jose/dist/webapi/jws/flattened/verify.js +21 -24
- package/node_modules/jose/dist/webapi/jws/general/sign.js +61 -72
- package/node_modules/jose/dist/webapi/jws/general/verify.js +45 -69
- package/node_modules/jose/dist/webapi/jwt/decrypt.js +13 -20
- package/node_modules/jose/dist/webapi/jwt/encrypt.js +57 -70
- package/node_modules/jose/dist/webapi/jwt/sign.js +17 -16
- package/node_modules/jose/dist/webapi/jwt/unsecured.js +32 -40
- package/node_modules/jose/dist/webapi/jwt/verify.js +12 -14
- package/node_modules/jose/dist/webapi/key/export.js +32 -37
- package/node_modules/jose/dist/webapi/key/generate_key_pair.js +40 -48
- package/node_modules/jose/dist/webapi/key/generate_secret.js +35 -40
- package/node_modules/jose/dist/webapi/key/import.js +52 -56
- package/node_modules/jose/dist/webapi/lib/asn1.js +130 -169
- package/node_modules/jose/dist/webapi/lib/base64.js +18 -20
- package/node_modules/jose/dist/webapi/lib/buffer_utils.js +34 -38
- package/node_modules/jose/dist/webapi/lib/content_encryption.js +79 -115
- package/node_modules/jose/dist/webapi/lib/crypto_key.js +24 -25
- package/node_modules/jose/dist/webapi/lib/deflate.js +45 -47
- package/node_modules/jose/dist/webapi/lib/helpers.js +40 -37
- package/node_modules/jose/dist/webapi/lib/invalid_key_input.js +10 -24
- package/node_modules/jose/dist/webapi/lib/is_key_like.js +17 -15
- package/node_modules/jose/dist/webapi/lib/jwe_algorithms.js +106 -93
- package/node_modules/jose/dist/webapi/lib/jwe_decrypt.js +207 -230
- package/node_modules/jose/dist/webapi/lib/jwe_encrypt.js +104 -138
- package/node_modules/jose/dist/webapi/lib/jwk_metadata.js +17 -18
- package/node_modules/jose/dist/webapi/lib/jwk_to_key.js +9 -16
- package/node_modules/jose/dist/webapi/lib/jws_algorithms.js +62 -61
- package/node_modules/jose/dist/webapi/lib/jws_sign.js +50 -75
- package/node_modules/jose/dist/webapi/lib/jws_verify.js +80 -125
- package/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +123 -209
- package/node_modules/jose/dist/webapi/lib/key.js +84 -136
- package/node_modules/jose/dist/webapi/lib/key_algorithm.js +13 -8
- package/node_modules/jose/dist/webapi/lib/key_descriptor.js +8 -6
- package/node_modules/jose/dist/webapi/lib/key_management.js +200 -231
- package/node_modules/jose/dist/webapi/lib/key_options.js +7 -5
- package/node_modules/jose/dist/webapi/lib/options.js +55 -68
- package/node_modules/jose/dist/webapi/lib/signing.js +18 -22
- package/node_modules/jose/dist/webapi/lib/type_checks.js +26 -29
- package/node_modules/jose/dist/webapi/util/base64url.js +26 -35
- package/node_modules/jose/dist/webapi/util/decode_jwt.js +32 -31
- package/node_modules/jose/dist/webapi/util/decode_protected_header.js +18 -23
- package/node_modules/jose/dist/webapi/util/errors.js +94 -84
- package/node_modules/jose/package.json +17 -81
- package/package.json +2 -2
- package/profiles/calendar/0.5.profile.json +190 -0
- package/profiles/charge/0.5.profile.json +210 -0
- package/profiles/customers/0.7.profile.json +157 -0
- package/profiles/deploy/0.9.profile.json +176 -0
- package/profiles/email/0.6.profile.json +208 -0
- package/profiles/index.json +9 -1
- package/profiles/publish/0.5.profile.json +186 -0
- package/profiles/purchase/0.5.profile.json +231 -0
- package/profiles/records/0.5.profile.json +117 -0
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "github.com/humanagencyprotocol/hap-profiles/purchase@0.5",
|
|
3
|
+
"name": "Purchase",
|
|
4
|
+
"version": "0.5",
|
|
5
|
+
"description": "Purchase authority — governs spending company money: subscriptions, supplies, services, advertising",
|
|
6
|
+
"boundsSchema": {
|
|
7
|
+
"actionTypes": [
|
|
8
|
+
"purchase"
|
|
9
|
+
],
|
|
10
|
+
"keyOrder": [
|
|
11
|
+
"profile",
|
|
12
|
+
"spend_max",
|
|
13
|
+
"spend_daily_max",
|
|
14
|
+
"spend_monthly_max",
|
|
15
|
+
"transaction_count_daily_max"
|
|
16
|
+
],
|
|
17
|
+
"fields": {
|
|
18
|
+
"profile": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"required": true
|
|
21
|
+
},
|
|
22
|
+
"spend_max": {
|
|
23
|
+
"type": "number",
|
|
24
|
+
"required": true,
|
|
25
|
+
"displayName": "Max per transaction",
|
|
26
|
+
"description": "Maximum spend per transaction in currency units",
|
|
27
|
+
"unit": "currency:EUR",
|
|
28
|
+
"boundType": {
|
|
29
|
+
"kind": "per_transaction",
|
|
30
|
+
"of": "spend"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"spend_daily_max": {
|
|
34
|
+
"type": "number",
|
|
35
|
+
"required": true,
|
|
36
|
+
"displayName": "Daily spend limit",
|
|
37
|
+
"description": "Maximum cumulative spend per day in currency units",
|
|
38
|
+
"unit": "currency:EUR",
|
|
39
|
+
"boundType": {
|
|
40
|
+
"kind": "cumulative_sum",
|
|
41
|
+
"of": "spend",
|
|
42
|
+
"window": "daily"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"spend_monthly_max": {
|
|
46
|
+
"type": "number",
|
|
47
|
+
"required": true,
|
|
48
|
+
"displayName": "Monthly spend limit",
|
|
49
|
+
"description": "Maximum cumulative spend per month in currency units",
|
|
50
|
+
"unit": "currency:EUR",
|
|
51
|
+
"boundType": {
|
|
52
|
+
"kind": "cumulative_sum",
|
|
53
|
+
"of": "spend",
|
|
54
|
+
"window": "monthly"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"transaction_count_daily_max": {
|
|
58
|
+
"type": "number",
|
|
59
|
+
"required": true,
|
|
60
|
+
"displayName": "Daily transaction limit",
|
|
61
|
+
"description": "Maximum number of purchase transactions per day",
|
|
62
|
+
"unit": "count",
|
|
63
|
+
"boundType": {
|
|
64
|
+
"kind": "cumulative_count",
|
|
65
|
+
"window": "daily"
|
|
66
|
+
},
|
|
67
|
+
"appliesTo": [
|
|
68
|
+
"purchase"
|
|
69
|
+
]
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"contextSchema": {
|
|
74
|
+
"keyOrder": [
|
|
75
|
+
"currency",
|
|
76
|
+
"category",
|
|
77
|
+
"allowed_vendors"
|
|
78
|
+
],
|
|
79
|
+
"fields": {
|
|
80
|
+
"currency": {
|
|
81
|
+
"type": "string",
|
|
82
|
+
"required": true,
|
|
83
|
+
"displayName": "Currency",
|
|
84
|
+
"description": "Permitted currency code",
|
|
85
|
+
"constraint": {
|
|
86
|
+
"type": "string",
|
|
87
|
+
"enforceable": [
|
|
88
|
+
"enum"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
"enum": [
|
|
92
|
+
"USD",
|
|
93
|
+
"EUR",
|
|
94
|
+
"GBP",
|
|
95
|
+
"CHF",
|
|
96
|
+
"JPY",
|
|
97
|
+
"CAD",
|
|
98
|
+
"AUD"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
"category": {
|
|
102
|
+
"type": "string",
|
|
103
|
+
"required": true,
|
|
104
|
+
"displayName": "Purchase category",
|
|
105
|
+
"description": "Authorized purchase category",
|
|
106
|
+
"constraint": {
|
|
107
|
+
"type": "string",
|
|
108
|
+
"enforceable": [
|
|
109
|
+
"enum"
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
"enum": [
|
|
113
|
+
"subscription",
|
|
114
|
+
"supply",
|
|
115
|
+
"service",
|
|
116
|
+
"advertising"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
"allowed_vendors": {
|
|
120
|
+
"type": "string",
|
|
121
|
+
"required": false,
|
|
122
|
+
"displayName": "Allowed vendors",
|
|
123
|
+
"description": "Comma-separated list of approved vendor names",
|
|
124
|
+
"constraint": {
|
|
125
|
+
"type": "string",
|
|
126
|
+
"enforceable": [
|
|
127
|
+
"subset"
|
|
128
|
+
]
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"executionContextSchema": {
|
|
134
|
+
"fields": {
|
|
135
|
+
"spend": {
|
|
136
|
+
"source": "declared",
|
|
137
|
+
"description": "Purchase amount in currency units",
|
|
138
|
+
"required": true,
|
|
139
|
+
"constraint": {
|
|
140
|
+
"type": "number",
|
|
141
|
+
"enforceable": [
|
|
142
|
+
"max"
|
|
143
|
+
]
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"currency": {
|
|
147
|
+
"source": "declared",
|
|
148
|
+
"description": "Currency code",
|
|
149
|
+
"required": true,
|
|
150
|
+
"constraint": {
|
|
151
|
+
"type": "string",
|
|
152
|
+
"enforceable": [
|
|
153
|
+
"enum"
|
|
154
|
+
]
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"category": {
|
|
158
|
+
"source": "declared",
|
|
159
|
+
"description": "Purchase category",
|
|
160
|
+
"required": true,
|
|
161
|
+
"constraint": {
|
|
162
|
+
"type": "string",
|
|
163
|
+
"enforceable": [
|
|
164
|
+
"enum"
|
|
165
|
+
]
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"allowed_vendors": {
|
|
169
|
+
"source": "declared",
|
|
170
|
+
"description": "Vendor name for this purchase (checked against approved list)",
|
|
171
|
+
"required": false,
|
|
172
|
+
"constraint": {
|
|
173
|
+
"type": "string",
|
|
174
|
+
"enforceable": [
|
|
175
|
+
"subset"
|
|
176
|
+
]
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"spend_daily": {
|
|
180
|
+
"source": "cumulative",
|
|
181
|
+
"cumulativeField": "spend",
|
|
182
|
+
"window": "daily",
|
|
183
|
+
"description": "Running daily spend total (resolved from execution log)",
|
|
184
|
+
"required": true,
|
|
185
|
+
"constraint": {
|
|
186
|
+
"type": "number",
|
|
187
|
+
"enforceable": [
|
|
188
|
+
"max"
|
|
189
|
+
]
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"spend_monthly": {
|
|
193
|
+
"source": "cumulative",
|
|
194
|
+
"cumulativeField": "spend",
|
|
195
|
+
"window": "monthly",
|
|
196
|
+
"description": "Running monthly spend total (resolved from execution log)",
|
|
197
|
+
"required": true,
|
|
198
|
+
"constraint": {
|
|
199
|
+
"type": "number",
|
|
200
|
+
"enforceable": [
|
|
201
|
+
"max"
|
|
202
|
+
]
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"transaction_count_daily": {
|
|
206
|
+
"source": "cumulative",
|
|
207
|
+
"cumulativeField": "_count",
|
|
208
|
+
"window": "daily",
|
|
209
|
+
"description": "Running daily transaction count (resolved from execution log)",
|
|
210
|
+
"required": true,
|
|
211
|
+
"constraint": {
|
|
212
|
+
"type": "number",
|
|
213
|
+
"enforceable": [
|
|
214
|
+
"max"
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"requiredGates": [
|
|
221
|
+
"bounds",
|
|
222
|
+
"intent",
|
|
223
|
+
"commitment",
|
|
224
|
+
"decision_owner"
|
|
225
|
+
],
|
|
226
|
+
"ttl": {
|
|
227
|
+
"default": 86400,
|
|
228
|
+
"max": 2592000
|
|
229
|
+
},
|
|
230
|
+
"retention_minimum": 7776000
|
|
231
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "github.com/humanagencyprotocol/hap-profiles/records@0.5",
|
|
3
|
+
"name": "Records",
|
|
4
|
+
"version": "0.5",
|
|
5
|
+
"description": "Records authority — governs accessing and managing personal structured data",
|
|
6
|
+
"boundsSchema": {
|
|
7
|
+
"actionTypes": [
|
|
8
|
+
"archive",
|
|
9
|
+
"delete",
|
|
10
|
+
"write"
|
|
11
|
+
],
|
|
12
|
+
"keyOrder": [
|
|
13
|
+
"profile",
|
|
14
|
+
"read_access",
|
|
15
|
+
"write_daily_max",
|
|
16
|
+
"delete_access",
|
|
17
|
+
"archive_access"
|
|
18
|
+
],
|
|
19
|
+
"fields": {
|
|
20
|
+
"profile": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"required": true
|
|
23
|
+
},
|
|
24
|
+
"read_access": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"required": true,
|
|
27
|
+
"displayName": "Read access",
|
|
28
|
+
"description": "Allow the agent to list, view, and search your records",
|
|
29
|
+
"boundType": {
|
|
30
|
+
"kind": "enum",
|
|
31
|
+
"values": [
|
|
32
|
+
"unlimited",
|
|
33
|
+
"none"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"toolsDescription": "list_records, get_record, search_records",
|
|
37
|
+
"default": "unlimited"
|
|
38
|
+
},
|
|
39
|
+
"write_daily_max": {
|
|
40
|
+
"type": "number",
|
|
41
|
+
"required": true,
|
|
42
|
+
"displayName": "Daily create limit",
|
|
43
|
+
"description": "Maximum new records the agent can create per day",
|
|
44
|
+
"unit": "count",
|
|
45
|
+
"boundType": {
|
|
46
|
+
"kind": "cumulative_count",
|
|
47
|
+
"window": "daily"
|
|
48
|
+
},
|
|
49
|
+
"appliesTo": [
|
|
50
|
+
"write"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
"delete_access": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"required": true,
|
|
56
|
+
"displayName": "Delete access",
|
|
57
|
+
"description": "Allow the agent to permanently delete records",
|
|
58
|
+
"boundType": {
|
|
59
|
+
"kind": "enum",
|
|
60
|
+
"values": [
|
|
61
|
+
"allowed",
|
|
62
|
+
"none"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"toolsDescription": "delete_record",
|
|
66
|
+
"default": "none"
|
|
67
|
+
},
|
|
68
|
+
"archive_access": {
|
|
69
|
+
"type": "string",
|
|
70
|
+
"required": true,
|
|
71
|
+
"displayName": "Archive access",
|
|
72
|
+
"description": "Allow the agent to archive records (non-destructive, records remain accessible)",
|
|
73
|
+
"boundType": {
|
|
74
|
+
"kind": "enum",
|
|
75
|
+
"values": [
|
|
76
|
+
"allowed",
|
|
77
|
+
"none"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"toolsDescription": "archive_record",
|
|
81
|
+
"default": "none"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"executionContextSchema": {
|
|
86
|
+
"fields": {
|
|
87
|
+
"write_count_daily": {
|
|
88
|
+
"source": "cumulative",
|
|
89
|
+
"cumulativeField": "_count",
|
|
90
|
+
"window": "daily",
|
|
91
|
+
"description": "Running daily create operation count",
|
|
92
|
+
"required": true,
|
|
93
|
+
"constraint": {
|
|
94
|
+
"type": "number",
|
|
95
|
+
"enforceable": [
|
|
96
|
+
"max"
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"requiredGates": [
|
|
103
|
+
"bounds",
|
|
104
|
+
"intent",
|
|
105
|
+
"commitment",
|
|
106
|
+
"decision_owner"
|
|
107
|
+
],
|
|
108
|
+
"ttl": {
|
|
109
|
+
"default": 86400,
|
|
110
|
+
"max": 31536000
|
|
111
|
+
},
|
|
112
|
+
"retention_minimum": 7776000,
|
|
113
|
+
"content_binding": {
|
|
114
|
+
"version": "1",
|
|
115
|
+
"kind": "jcs"
|
|
116
|
+
}
|
|
117
|
+
}
|