@xapps-platform/xapp-manifest 0.1.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/README.md +73 -0
- package/dist/hookContracts.d.ts +22 -0
- package/dist/hookContracts.d.ts.map +1 -0
- package/dist/hookRegistry.d.ts +14 -0
- package/dist/hookRegistry.d.ts.map +1 -0
- package/dist/hookResolution.d.ts +23 -0
- package/dist/hookResolution.d.ts.map +1 -0
- package/dist/index.d.ts +1531 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8291 -0
- package/dist/index.js.map +7 -0
- package/dist/invoices.d.ts +60 -0
- package/dist/invoices.d.ts.map +1 -0
- package/dist/notifications.d.ts +66 -0
- package/dist/notifications.d.ts.map +1 -0
- package/dist/subjectProfileGuardDefinitions.d.ts +33 -0
- package/dist/subjectProfileGuardDefinitions.d.ts.map +1 -0
- package/dist/subjectProfileRequirement.d.ts +42 -0
- package/dist/subjectProfileRequirement.d.ts.map +1 -0
- package/package.json +37 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,1531 @@
|
|
|
1
|
+
import { type KnownGuardTrigger, type HookEffectKind, type HookExecutionMode, type HookFailurePolicy, type HookIdempotencyScope, type HookProviderScope } from "./hookContracts.js";
|
|
2
|
+
export type XappManifestTool = {
|
|
3
|
+
tool_name: string;
|
|
4
|
+
title: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
input_schema: Record<string, unknown>;
|
|
7
|
+
input_ui_schema?: Record<string, unknown>;
|
|
8
|
+
output_ui_schema?: Record<string, unknown>;
|
|
9
|
+
output_schema: Record<string, unknown>;
|
|
10
|
+
dispatch_policy?: {
|
|
11
|
+
endpoint_ref?: string;
|
|
12
|
+
auth_lane?: string;
|
|
13
|
+
credential_profile?: string;
|
|
14
|
+
allow_on_behalf_of?: boolean;
|
|
15
|
+
required_policy_fields?: string[];
|
|
16
|
+
disclosure_mode_default?: "final_answer_only" | "scoped_fields";
|
|
17
|
+
};
|
|
18
|
+
signature_policy?: "none" | "ed25519" | "signature_not_required";
|
|
19
|
+
async?: boolean;
|
|
20
|
+
adapter?: {
|
|
21
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
22
|
+
path: string;
|
|
23
|
+
query?: Record<string, unknown>;
|
|
24
|
+
headers?: Record<string, unknown>;
|
|
25
|
+
body?: unknown;
|
|
26
|
+
response_mapping?: Record<string, unknown>;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
export type XappManifestWidget = {
|
|
30
|
+
widget_name: string;
|
|
31
|
+
type: "read" | "write";
|
|
32
|
+
renderer: "platform" | "publisher" | "json-forms" | "ui-kit" | "app-shell";
|
|
33
|
+
bind_tool_name?: string;
|
|
34
|
+
entry?: {
|
|
35
|
+
kind?: "platform_template" | "iframe_url";
|
|
36
|
+
template?: string;
|
|
37
|
+
url?: string;
|
|
38
|
+
};
|
|
39
|
+
capabilities?: string[];
|
|
40
|
+
title?: string;
|
|
41
|
+
accessibility?: {
|
|
42
|
+
label?: string;
|
|
43
|
+
role?: string;
|
|
44
|
+
};
|
|
45
|
+
theme?: {
|
|
46
|
+
mode?: "light" | "dark" | string;
|
|
47
|
+
tokens?: Record<string, string>;
|
|
48
|
+
};
|
|
49
|
+
requires_linking?: boolean;
|
|
50
|
+
required_context?: Record<string, unknown>;
|
|
51
|
+
ui_override?: Record<string, unknown>;
|
|
52
|
+
config?: Record<string, unknown> & {
|
|
53
|
+
result_presentation?: "runtime_default" | "inline" | "publisher_managed";
|
|
54
|
+
resultPresentation?: "runtime_default" | "inline" | "publisher_managed";
|
|
55
|
+
xapps?: Record<string, unknown> & {
|
|
56
|
+
result_presentation?: "runtime_default" | "inline" | "publisher_managed";
|
|
57
|
+
resultPresentation?: "runtime_default" | "inline" | "publisher_managed";
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
export type XappManifestEndpointConfig = {
|
|
62
|
+
base_url: string;
|
|
63
|
+
timeout_ms?: number;
|
|
64
|
+
health_check?: {
|
|
65
|
+
path?: string;
|
|
66
|
+
interval_s?: number;
|
|
67
|
+
};
|
|
68
|
+
retry_policy?: {
|
|
69
|
+
max_retries?: number;
|
|
70
|
+
backoff?: "none" | "linear" | "exponential";
|
|
71
|
+
};
|
|
72
|
+
region?: string;
|
|
73
|
+
labels?: Record<string, string>;
|
|
74
|
+
};
|
|
75
|
+
export type XappManifestEndpointGroup = {
|
|
76
|
+
strategy: "failover" | "round_robin" | "region_affinity";
|
|
77
|
+
members: string[];
|
|
78
|
+
};
|
|
79
|
+
export type XappManifestEventSubscription = {
|
|
80
|
+
event_type: string;
|
|
81
|
+
webhook_url: string;
|
|
82
|
+
};
|
|
83
|
+
export type XappManifestConnectivity = {
|
|
84
|
+
executor_mode?: "PUBLIC_EXECUTOR" | "PRIVATE_EXECUTOR" | "AGENT_TUNNEL";
|
|
85
|
+
auth_mode?: "PUBLISHER_APP" | "USER_DELEGATED" | "HYBRID";
|
|
86
|
+
signing_policy?: "none" | "subject_proof" | "publisher_proof";
|
|
87
|
+
webhooks?: Record<string, unknown>;
|
|
88
|
+
proxy_policy?: Record<string, unknown>;
|
|
89
|
+
};
|
|
90
|
+
export type XappManifestGuard = {
|
|
91
|
+
slug: string;
|
|
92
|
+
trigger: KnownGuardTrigger;
|
|
93
|
+
headless?: boolean;
|
|
94
|
+
blocking?: boolean;
|
|
95
|
+
order?: number;
|
|
96
|
+
implements?: string;
|
|
97
|
+
config?: Record<string, unknown> & {
|
|
98
|
+
effect_kind?: HookEffectKind;
|
|
99
|
+
effectKind?: HookEffectKind;
|
|
100
|
+
execution_mode?: HookExecutionMode;
|
|
101
|
+
executionMode?: HookExecutionMode;
|
|
102
|
+
provider_scope?: HookProviderScope;
|
|
103
|
+
providerScope?: HookProviderScope;
|
|
104
|
+
provider_execution?: "inline" | "queued";
|
|
105
|
+
providerExecution?: "inline" | "queued";
|
|
106
|
+
failure_policy?: HookFailurePolicy;
|
|
107
|
+
failurePolicy?: HookFailurePolicy;
|
|
108
|
+
idempotency_scope?: HookIdempotencyScope;
|
|
109
|
+
idempotencyScope?: HookIdempotencyScope;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
export type XappManifest = {
|
|
113
|
+
title?: string;
|
|
114
|
+
name: string;
|
|
115
|
+
slug: string;
|
|
116
|
+
description?: string;
|
|
117
|
+
image?: string;
|
|
118
|
+
tags?: string[];
|
|
119
|
+
terms?: {
|
|
120
|
+
title?: string;
|
|
121
|
+
text?: string;
|
|
122
|
+
url?: string;
|
|
123
|
+
version?: string;
|
|
124
|
+
};
|
|
125
|
+
visibility?: string;
|
|
126
|
+
metadata?: Record<string, unknown>;
|
|
127
|
+
target_client_id?: string;
|
|
128
|
+
scopes?: string[];
|
|
129
|
+
version: string;
|
|
130
|
+
guards?: XappManifestGuard[];
|
|
131
|
+
guards_policy?: Partial<Record<KnownGuardTrigger, "all" | "any" | {
|
|
132
|
+
mode?: "all" | "any";
|
|
133
|
+
on_fail?: "stop_on_fail" | "continue_on_fail";
|
|
134
|
+
}>>;
|
|
135
|
+
linking?: {
|
|
136
|
+
strategy: "platform_v1" | "custom";
|
|
137
|
+
setup_url: string;
|
|
138
|
+
guard_slug?: string;
|
|
139
|
+
};
|
|
140
|
+
tools: XappManifestTool[];
|
|
141
|
+
widgets: XappManifestWidget[];
|
|
142
|
+
endpoints?: Record<string, XappManifestEndpointConfig>;
|
|
143
|
+
endpoint_groups?: Record<string, XappManifestEndpointGroup>;
|
|
144
|
+
event_subscriptions?: XappManifestEventSubscription[];
|
|
145
|
+
connectivity?: XappManifestConnectivity;
|
|
146
|
+
payment_guard_definitions?: Array<{
|
|
147
|
+
name: string;
|
|
148
|
+
payment_type?: string;
|
|
149
|
+
payment_issuer_mode?: string;
|
|
150
|
+
payment_scheme?: string;
|
|
151
|
+
payment_network?: string;
|
|
152
|
+
payment_allowed_issuers?: string[];
|
|
153
|
+
payment_return_contract?: string;
|
|
154
|
+
payment_return_required?: boolean;
|
|
155
|
+
payment_return_max_age_s?: number;
|
|
156
|
+
payment_return_hmac_secret_refs?: Record<string, string>;
|
|
157
|
+
payment_return_hmac_secrets?: Record<string, string>;
|
|
158
|
+
payment_return_hmac_delegated_secret_refs?: Record<string, Record<string, string>>;
|
|
159
|
+
payment_return_hmac_delegated_secrets?: Record<string, Record<string, string>>;
|
|
160
|
+
payment_provider_credentials?: Record<string, unknown>;
|
|
161
|
+
payment_provider_credentials_refs?: Record<string, {
|
|
162
|
+
[key: string]: string | Record<string, string> | undefined;
|
|
163
|
+
bundle_ref?: string;
|
|
164
|
+
bundleRef?: string;
|
|
165
|
+
secret_bundle_ref?: string;
|
|
166
|
+
secretBundleRef?: string;
|
|
167
|
+
refs?: Record<string, string>;
|
|
168
|
+
secret_refs?: Record<string, string>;
|
|
169
|
+
}>;
|
|
170
|
+
payment_provider_secret_refs?: Record<string, {
|
|
171
|
+
[key: string]: string | Record<string, string> | undefined;
|
|
172
|
+
bundle_ref?: string;
|
|
173
|
+
bundleRef?: string;
|
|
174
|
+
secret_bundle_ref?: string;
|
|
175
|
+
secretBundleRef?: string;
|
|
176
|
+
refs?: Record<string, string>;
|
|
177
|
+
secret_refs?: Record<string, string>;
|
|
178
|
+
}>;
|
|
179
|
+
pricing_model?: string;
|
|
180
|
+
pricing?: Record<string, unknown>;
|
|
181
|
+
receipt_field?: string;
|
|
182
|
+
payment_url?: string;
|
|
183
|
+
accepts?: Array<Record<string, unknown>>;
|
|
184
|
+
payment_ui?: Record<string, unknown>;
|
|
185
|
+
policy?: Record<string, unknown>;
|
|
186
|
+
action?: Record<string, unknown>;
|
|
187
|
+
owner_override_allowlist?: string[];
|
|
188
|
+
owner_pricing_floor?: {
|
|
189
|
+
default_amount?: number;
|
|
190
|
+
xapp_prices?: Record<string, number>;
|
|
191
|
+
tool_overrides?: Record<string, number>;
|
|
192
|
+
};
|
|
193
|
+
}>;
|
|
194
|
+
subject_profile_guard_definitions?: Array<{
|
|
195
|
+
name: string;
|
|
196
|
+
policy?: Record<string, unknown>;
|
|
197
|
+
action?: Record<string, unknown>;
|
|
198
|
+
tools?: string[];
|
|
199
|
+
subject_profile_requirement?: Record<string, unknown>;
|
|
200
|
+
subject_profile_remediation?: Record<string, unknown>;
|
|
201
|
+
subject_profile_sources?: Record<string, unknown>;
|
|
202
|
+
owner_override_allowlist?: string[];
|
|
203
|
+
}>;
|
|
204
|
+
notification_definitions?: Array<{
|
|
205
|
+
name: string;
|
|
206
|
+
channel?: string;
|
|
207
|
+
effect_kind?: HookEffectKind;
|
|
208
|
+
effectKind?: HookEffectKind;
|
|
209
|
+
provider_key?: string;
|
|
210
|
+
providerKey?: string;
|
|
211
|
+
execution_mode?: HookExecutionMode;
|
|
212
|
+
executionMode?: HookExecutionMode;
|
|
213
|
+
provider_scope?: HookProviderScope;
|
|
214
|
+
providerScope?: HookProviderScope;
|
|
215
|
+
provider_execution?: "inline" | "queued";
|
|
216
|
+
providerExecution?: "inline" | "queued";
|
|
217
|
+
failure_policy?: HookFailurePolicy;
|
|
218
|
+
failurePolicy?: HookFailurePolicy;
|
|
219
|
+
idempotency_scope?: HookIdempotencyScope;
|
|
220
|
+
idempotencyScope?: HookIdempotencyScope;
|
|
221
|
+
template_ref?: string;
|
|
222
|
+
templateRef?: string;
|
|
223
|
+
target?: Record<string, unknown>;
|
|
224
|
+
template?: Record<string, unknown>;
|
|
225
|
+
}>;
|
|
226
|
+
notification_templates?: Array<{
|
|
227
|
+
name: string;
|
|
228
|
+
channel?: string;
|
|
229
|
+
subject?: string;
|
|
230
|
+
text?: string;
|
|
231
|
+
html?: string;
|
|
232
|
+
}>;
|
|
233
|
+
invoice_definitions?: Array<{
|
|
234
|
+
name: string;
|
|
235
|
+
provider_key?: string;
|
|
236
|
+
providerKey?: string;
|
|
237
|
+
effect_kind?: HookEffectKind;
|
|
238
|
+
effectKind?: HookEffectKind;
|
|
239
|
+
execution_mode?: HookExecutionMode;
|
|
240
|
+
executionMode?: HookExecutionMode;
|
|
241
|
+
provider_scope?: HookProviderScope;
|
|
242
|
+
providerScope?: HookProviderScope;
|
|
243
|
+
failure_policy?: HookFailurePolicy;
|
|
244
|
+
failurePolicy?: HookFailurePolicy;
|
|
245
|
+
idempotency_scope?: HookIdempotencyScope;
|
|
246
|
+
idempotencyScope?: HookIdempotencyScope;
|
|
247
|
+
invoice_template_ref?: string;
|
|
248
|
+
invoiceTemplateRef?: string;
|
|
249
|
+
invoice?: Record<string, unknown>;
|
|
250
|
+
template?: Record<string, unknown>;
|
|
251
|
+
}>;
|
|
252
|
+
invoice_templates?: Array<{
|
|
253
|
+
name: string;
|
|
254
|
+
title?: string;
|
|
255
|
+
text?: string;
|
|
256
|
+
html?: string;
|
|
257
|
+
[key: string]: unknown;
|
|
258
|
+
}>;
|
|
259
|
+
};
|
|
260
|
+
export type ManifestWarning = {
|
|
261
|
+
kind: "unreferenced_payment_guard_definitions" | "unreferenced_subject_profile_guard_definitions" | "unreferenced_notification_definitions" | "unreferenced_notification_templates" | "unreferenced_invoice_definitions" | "unreferenced_invoice_templates";
|
|
262
|
+
details: Record<string, unknown>;
|
|
263
|
+
};
|
|
264
|
+
export type ParseXappManifestOptions = {
|
|
265
|
+
warn?: (warning: ManifestWarning) => void;
|
|
266
|
+
};
|
|
267
|
+
export declare const xappManifestJsonSchema: {
|
|
268
|
+
readonly type: "object";
|
|
269
|
+
readonly required: readonly ["name", "slug", "version", "tools", "widgets"];
|
|
270
|
+
readonly additionalProperties: false;
|
|
271
|
+
readonly properties: {
|
|
272
|
+
readonly title: {
|
|
273
|
+
readonly type: "string";
|
|
274
|
+
readonly maxLength: 200;
|
|
275
|
+
};
|
|
276
|
+
readonly name: {
|
|
277
|
+
readonly type: "string";
|
|
278
|
+
readonly minLength: 1;
|
|
279
|
+
readonly maxLength: 200;
|
|
280
|
+
};
|
|
281
|
+
readonly slug: {
|
|
282
|
+
readonly type: "string";
|
|
283
|
+
readonly minLength: 1;
|
|
284
|
+
readonly maxLength: 100;
|
|
285
|
+
};
|
|
286
|
+
readonly description: {
|
|
287
|
+
readonly type: "string";
|
|
288
|
+
readonly maxLength: 2000;
|
|
289
|
+
};
|
|
290
|
+
readonly image: {
|
|
291
|
+
readonly type: "string";
|
|
292
|
+
readonly maxLength: 2048;
|
|
293
|
+
};
|
|
294
|
+
readonly tags: {
|
|
295
|
+
readonly type: "array";
|
|
296
|
+
readonly maxItems: 50;
|
|
297
|
+
readonly items: {
|
|
298
|
+
readonly type: "string";
|
|
299
|
+
readonly maxLength: 64;
|
|
300
|
+
};
|
|
301
|
+
};
|
|
302
|
+
readonly terms: {
|
|
303
|
+
readonly type: "object";
|
|
304
|
+
readonly additionalProperties: false;
|
|
305
|
+
readonly properties: {
|
|
306
|
+
readonly title: {
|
|
307
|
+
readonly type: "string";
|
|
308
|
+
readonly maxLength: 200;
|
|
309
|
+
};
|
|
310
|
+
readonly text: {
|
|
311
|
+
readonly type: "string";
|
|
312
|
+
readonly maxLength: 20000;
|
|
313
|
+
};
|
|
314
|
+
readonly url: {
|
|
315
|
+
readonly type: "string";
|
|
316
|
+
readonly maxLength: 2048;
|
|
317
|
+
};
|
|
318
|
+
readonly version: {
|
|
319
|
+
readonly type: "string";
|
|
320
|
+
readonly maxLength: 64;
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
readonly visibility: {
|
|
325
|
+
readonly type: "string";
|
|
326
|
+
readonly maxLength: 32;
|
|
327
|
+
};
|
|
328
|
+
readonly target_client_id: {
|
|
329
|
+
readonly type: readonly ["string", "null"];
|
|
330
|
+
readonly maxLength: 26;
|
|
331
|
+
};
|
|
332
|
+
readonly metadata: {
|
|
333
|
+
readonly type: "object";
|
|
334
|
+
};
|
|
335
|
+
readonly scopes: {
|
|
336
|
+
readonly type: "array";
|
|
337
|
+
readonly maxItems: 100;
|
|
338
|
+
readonly items: {
|
|
339
|
+
readonly type: "string";
|
|
340
|
+
readonly maxLength: 200;
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
readonly version: {
|
|
344
|
+
readonly type: "string";
|
|
345
|
+
readonly minLength: 1;
|
|
346
|
+
readonly maxLength: 64;
|
|
347
|
+
};
|
|
348
|
+
readonly guards: {
|
|
349
|
+
readonly type: "array";
|
|
350
|
+
readonly maxItems: 50;
|
|
351
|
+
readonly items: {
|
|
352
|
+
readonly type: "object";
|
|
353
|
+
readonly required: readonly ["slug", "trigger"];
|
|
354
|
+
readonly additionalProperties: false;
|
|
355
|
+
readonly properties: {
|
|
356
|
+
readonly slug: {
|
|
357
|
+
readonly type: "string";
|
|
358
|
+
readonly minLength: 1;
|
|
359
|
+
readonly maxLength: 100;
|
|
360
|
+
};
|
|
361
|
+
readonly trigger: {
|
|
362
|
+
readonly type: "string";
|
|
363
|
+
readonly enum: readonly ["before:installation_create", "before:widget_load", "before:session_open", "before:thread_create", "before:tool_run", "after:install", "after:link_complete", "before:link_revoke", "before:uninstall", "after:tool_complete", "after:uninstall", "after:payment_completed", "after:payment_failed", "after:request_created", "after:response_ready", "after:response_finalized"];
|
|
364
|
+
};
|
|
365
|
+
readonly headless: {
|
|
366
|
+
readonly type: "boolean";
|
|
367
|
+
};
|
|
368
|
+
readonly blocking: {
|
|
369
|
+
readonly type: "boolean";
|
|
370
|
+
};
|
|
371
|
+
readonly order: {
|
|
372
|
+
readonly type: "integer";
|
|
373
|
+
readonly minimum: 0;
|
|
374
|
+
readonly maximum: 1000000;
|
|
375
|
+
};
|
|
376
|
+
readonly implements: {
|
|
377
|
+
readonly type: "string";
|
|
378
|
+
readonly minLength: 1;
|
|
379
|
+
readonly maxLength: 100;
|
|
380
|
+
};
|
|
381
|
+
readonly config: {
|
|
382
|
+
readonly type: "object";
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
};
|
|
387
|
+
readonly guards_policy: {
|
|
388
|
+
readonly type: "object";
|
|
389
|
+
readonly additionalProperties: false;
|
|
390
|
+
readonly properties: {
|
|
391
|
+
readonly "before:installation_create": {
|
|
392
|
+
readonly anyOf: readonly [{
|
|
393
|
+
readonly type: "string";
|
|
394
|
+
readonly enum: readonly ["all", "any"];
|
|
395
|
+
}, {
|
|
396
|
+
readonly type: "object";
|
|
397
|
+
readonly additionalProperties: false;
|
|
398
|
+
readonly properties: {
|
|
399
|
+
readonly mode: {
|
|
400
|
+
readonly type: "string";
|
|
401
|
+
readonly enum: readonly ["all", "any"];
|
|
402
|
+
};
|
|
403
|
+
readonly on_fail: {
|
|
404
|
+
readonly type: "string";
|
|
405
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
406
|
+
};
|
|
407
|
+
};
|
|
408
|
+
}];
|
|
409
|
+
};
|
|
410
|
+
readonly "before:widget_load": {
|
|
411
|
+
readonly anyOf: readonly [{
|
|
412
|
+
readonly type: "string";
|
|
413
|
+
readonly enum: readonly ["all", "any"];
|
|
414
|
+
}, {
|
|
415
|
+
readonly type: "object";
|
|
416
|
+
readonly additionalProperties: false;
|
|
417
|
+
readonly properties: {
|
|
418
|
+
readonly mode: {
|
|
419
|
+
readonly type: "string";
|
|
420
|
+
readonly enum: readonly ["all", "any"];
|
|
421
|
+
};
|
|
422
|
+
readonly on_fail: {
|
|
423
|
+
readonly type: "string";
|
|
424
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
425
|
+
};
|
|
426
|
+
};
|
|
427
|
+
}];
|
|
428
|
+
};
|
|
429
|
+
readonly "before:session_open": {
|
|
430
|
+
readonly anyOf: readonly [{
|
|
431
|
+
readonly type: "string";
|
|
432
|
+
readonly enum: readonly ["all", "any"];
|
|
433
|
+
}, {
|
|
434
|
+
readonly type: "object";
|
|
435
|
+
readonly additionalProperties: false;
|
|
436
|
+
readonly properties: {
|
|
437
|
+
readonly mode: {
|
|
438
|
+
readonly type: "string";
|
|
439
|
+
readonly enum: readonly ["all", "any"];
|
|
440
|
+
};
|
|
441
|
+
readonly on_fail: {
|
|
442
|
+
readonly type: "string";
|
|
443
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
}];
|
|
447
|
+
};
|
|
448
|
+
readonly "before:thread_create": {
|
|
449
|
+
readonly anyOf: readonly [{
|
|
450
|
+
readonly type: "string";
|
|
451
|
+
readonly enum: readonly ["all", "any"];
|
|
452
|
+
}, {
|
|
453
|
+
readonly type: "object";
|
|
454
|
+
readonly additionalProperties: false;
|
|
455
|
+
readonly properties: {
|
|
456
|
+
readonly mode: {
|
|
457
|
+
readonly type: "string";
|
|
458
|
+
readonly enum: readonly ["all", "any"];
|
|
459
|
+
};
|
|
460
|
+
readonly on_fail: {
|
|
461
|
+
readonly type: "string";
|
|
462
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
463
|
+
};
|
|
464
|
+
};
|
|
465
|
+
}];
|
|
466
|
+
};
|
|
467
|
+
readonly "before:tool_run": {
|
|
468
|
+
readonly anyOf: readonly [{
|
|
469
|
+
readonly type: "string";
|
|
470
|
+
readonly enum: readonly ["all", "any"];
|
|
471
|
+
}, {
|
|
472
|
+
readonly type: "object";
|
|
473
|
+
readonly additionalProperties: false;
|
|
474
|
+
readonly properties: {
|
|
475
|
+
readonly mode: {
|
|
476
|
+
readonly type: "string";
|
|
477
|
+
readonly enum: readonly ["all", "any"];
|
|
478
|
+
};
|
|
479
|
+
readonly on_fail: {
|
|
480
|
+
readonly type: "string";
|
|
481
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
482
|
+
};
|
|
483
|
+
};
|
|
484
|
+
}];
|
|
485
|
+
};
|
|
486
|
+
readonly "after:install": {
|
|
487
|
+
readonly anyOf: readonly [{
|
|
488
|
+
readonly type: "string";
|
|
489
|
+
readonly enum: readonly ["all", "any"];
|
|
490
|
+
}, {
|
|
491
|
+
readonly type: "object";
|
|
492
|
+
readonly additionalProperties: false;
|
|
493
|
+
readonly properties: {
|
|
494
|
+
readonly mode: {
|
|
495
|
+
readonly type: "string";
|
|
496
|
+
readonly enum: readonly ["all", "any"];
|
|
497
|
+
};
|
|
498
|
+
readonly on_fail: {
|
|
499
|
+
readonly type: "string";
|
|
500
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
501
|
+
};
|
|
502
|
+
};
|
|
503
|
+
}];
|
|
504
|
+
};
|
|
505
|
+
readonly "after:link_complete": {
|
|
506
|
+
readonly anyOf: readonly [{
|
|
507
|
+
readonly type: "string";
|
|
508
|
+
readonly enum: readonly ["all", "any"];
|
|
509
|
+
}, {
|
|
510
|
+
readonly type: "object";
|
|
511
|
+
readonly additionalProperties: false;
|
|
512
|
+
readonly properties: {
|
|
513
|
+
readonly mode: {
|
|
514
|
+
readonly type: "string";
|
|
515
|
+
readonly enum: readonly ["all", "any"];
|
|
516
|
+
};
|
|
517
|
+
readonly on_fail: {
|
|
518
|
+
readonly type: "string";
|
|
519
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
}];
|
|
523
|
+
};
|
|
524
|
+
readonly "before:link_revoke": {
|
|
525
|
+
readonly anyOf: readonly [{
|
|
526
|
+
readonly type: "string";
|
|
527
|
+
readonly enum: readonly ["all", "any"];
|
|
528
|
+
}, {
|
|
529
|
+
readonly type: "object";
|
|
530
|
+
readonly additionalProperties: false;
|
|
531
|
+
readonly properties: {
|
|
532
|
+
readonly mode: {
|
|
533
|
+
readonly type: "string";
|
|
534
|
+
readonly enum: readonly ["all", "any"];
|
|
535
|
+
};
|
|
536
|
+
readonly on_fail: {
|
|
537
|
+
readonly type: "string";
|
|
538
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
539
|
+
};
|
|
540
|
+
};
|
|
541
|
+
}];
|
|
542
|
+
};
|
|
543
|
+
readonly "before:uninstall": {
|
|
544
|
+
readonly anyOf: readonly [{
|
|
545
|
+
readonly type: "string";
|
|
546
|
+
readonly enum: readonly ["all", "any"];
|
|
547
|
+
}, {
|
|
548
|
+
readonly type: "object";
|
|
549
|
+
readonly additionalProperties: false;
|
|
550
|
+
readonly properties: {
|
|
551
|
+
readonly mode: {
|
|
552
|
+
readonly type: "string";
|
|
553
|
+
readonly enum: readonly ["all", "any"];
|
|
554
|
+
};
|
|
555
|
+
readonly on_fail: {
|
|
556
|
+
readonly type: "string";
|
|
557
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
558
|
+
};
|
|
559
|
+
};
|
|
560
|
+
}];
|
|
561
|
+
};
|
|
562
|
+
readonly "after:tool_complete": {
|
|
563
|
+
readonly anyOf: readonly [{
|
|
564
|
+
readonly type: "string";
|
|
565
|
+
readonly enum: readonly ["all", "any"];
|
|
566
|
+
}, {
|
|
567
|
+
readonly type: "object";
|
|
568
|
+
readonly additionalProperties: false;
|
|
569
|
+
readonly properties: {
|
|
570
|
+
readonly mode: {
|
|
571
|
+
readonly type: "string";
|
|
572
|
+
readonly enum: readonly ["all", "any"];
|
|
573
|
+
};
|
|
574
|
+
readonly on_fail: {
|
|
575
|
+
readonly type: "string";
|
|
576
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
}];
|
|
580
|
+
};
|
|
581
|
+
readonly "after:uninstall": {
|
|
582
|
+
readonly anyOf: readonly [{
|
|
583
|
+
readonly type: "string";
|
|
584
|
+
readonly enum: readonly ["all", "any"];
|
|
585
|
+
}, {
|
|
586
|
+
readonly type: "object";
|
|
587
|
+
readonly additionalProperties: false;
|
|
588
|
+
readonly properties: {
|
|
589
|
+
readonly mode: {
|
|
590
|
+
readonly type: "string";
|
|
591
|
+
readonly enum: readonly ["all", "any"];
|
|
592
|
+
};
|
|
593
|
+
readonly on_fail: {
|
|
594
|
+
readonly type: "string";
|
|
595
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
}];
|
|
599
|
+
};
|
|
600
|
+
readonly "after:payment_completed": {
|
|
601
|
+
readonly anyOf: readonly [{
|
|
602
|
+
readonly type: "string";
|
|
603
|
+
readonly enum: readonly ["all", "any"];
|
|
604
|
+
}, {
|
|
605
|
+
readonly type: "object";
|
|
606
|
+
readonly additionalProperties: false;
|
|
607
|
+
readonly properties: {
|
|
608
|
+
readonly mode: {
|
|
609
|
+
readonly type: "string";
|
|
610
|
+
readonly enum: readonly ["all", "any"];
|
|
611
|
+
};
|
|
612
|
+
readonly on_fail: {
|
|
613
|
+
readonly type: "string";
|
|
614
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
615
|
+
};
|
|
616
|
+
};
|
|
617
|
+
}];
|
|
618
|
+
};
|
|
619
|
+
readonly "after:payment_failed": {
|
|
620
|
+
readonly anyOf: readonly [{
|
|
621
|
+
readonly type: "string";
|
|
622
|
+
readonly enum: readonly ["all", "any"];
|
|
623
|
+
}, {
|
|
624
|
+
readonly type: "object";
|
|
625
|
+
readonly additionalProperties: false;
|
|
626
|
+
readonly properties: {
|
|
627
|
+
readonly mode: {
|
|
628
|
+
readonly type: "string";
|
|
629
|
+
readonly enum: readonly ["all", "any"];
|
|
630
|
+
};
|
|
631
|
+
readonly on_fail: {
|
|
632
|
+
readonly type: "string";
|
|
633
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
634
|
+
};
|
|
635
|
+
};
|
|
636
|
+
}];
|
|
637
|
+
};
|
|
638
|
+
readonly "after:request_created": {
|
|
639
|
+
readonly anyOf: readonly [{
|
|
640
|
+
readonly type: "string";
|
|
641
|
+
readonly enum: readonly ["all", "any"];
|
|
642
|
+
}, {
|
|
643
|
+
readonly type: "object";
|
|
644
|
+
readonly additionalProperties: false;
|
|
645
|
+
readonly properties: {
|
|
646
|
+
readonly mode: {
|
|
647
|
+
readonly type: "string";
|
|
648
|
+
readonly enum: readonly ["all", "any"];
|
|
649
|
+
};
|
|
650
|
+
readonly on_fail: {
|
|
651
|
+
readonly type: "string";
|
|
652
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
653
|
+
};
|
|
654
|
+
};
|
|
655
|
+
}];
|
|
656
|
+
};
|
|
657
|
+
readonly "after:response_ready": {
|
|
658
|
+
readonly anyOf: readonly [{
|
|
659
|
+
readonly type: "string";
|
|
660
|
+
readonly enum: readonly ["all", "any"];
|
|
661
|
+
}, {
|
|
662
|
+
readonly type: "object";
|
|
663
|
+
readonly additionalProperties: false;
|
|
664
|
+
readonly properties: {
|
|
665
|
+
readonly mode: {
|
|
666
|
+
readonly type: "string";
|
|
667
|
+
readonly enum: readonly ["all", "any"];
|
|
668
|
+
};
|
|
669
|
+
readonly on_fail: {
|
|
670
|
+
readonly type: "string";
|
|
671
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
672
|
+
};
|
|
673
|
+
};
|
|
674
|
+
}];
|
|
675
|
+
};
|
|
676
|
+
readonly "after:response_finalized": {
|
|
677
|
+
readonly anyOf: readonly [{
|
|
678
|
+
readonly type: "string";
|
|
679
|
+
readonly enum: readonly ["all", "any"];
|
|
680
|
+
}, {
|
|
681
|
+
readonly type: "object";
|
|
682
|
+
readonly additionalProperties: false;
|
|
683
|
+
readonly properties: {
|
|
684
|
+
readonly mode: {
|
|
685
|
+
readonly type: "string";
|
|
686
|
+
readonly enum: readonly ["all", "any"];
|
|
687
|
+
};
|
|
688
|
+
readonly on_fail: {
|
|
689
|
+
readonly type: "string";
|
|
690
|
+
readonly enum: readonly ["stop_on_fail", "continue_on_fail"];
|
|
691
|
+
};
|
|
692
|
+
};
|
|
693
|
+
}];
|
|
694
|
+
};
|
|
695
|
+
};
|
|
696
|
+
};
|
|
697
|
+
readonly linking: {
|
|
698
|
+
readonly type: "object";
|
|
699
|
+
readonly required: readonly ["strategy", "setup_url"];
|
|
700
|
+
readonly additionalProperties: false;
|
|
701
|
+
readonly properties: {
|
|
702
|
+
readonly strategy: {
|
|
703
|
+
readonly type: "string";
|
|
704
|
+
readonly enum: readonly ["platform_v1", "custom"];
|
|
705
|
+
};
|
|
706
|
+
readonly setup_url: {
|
|
707
|
+
readonly type: "string";
|
|
708
|
+
readonly minLength: 1;
|
|
709
|
+
readonly maxLength: 2048;
|
|
710
|
+
};
|
|
711
|
+
readonly guard_slug: {
|
|
712
|
+
readonly type: "string";
|
|
713
|
+
readonly minLength: 1;
|
|
714
|
+
readonly maxLength: 100;
|
|
715
|
+
};
|
|
716
|
+
};
|
|
717
|
+
};
|
|
718
|
+
readonly tools: {
|
|
719
|
+
readonly type: "array";
|
|
720
|
+
readonly maxItems: 50;
|
|
721
|
+
readonly items: {
|
|
722
|
+
readonly type: "object";
|
|
723
|
+
readonly required: readonly ["tool_name", "title", "input_schema", "output_schema"];
|
|
724
|
+
readonly additionalProperties: false;
|
|
725
|
+
readonly properties: {
|
|
726
|
+
readonly tool_name: {
|
|
727
|
+
readonly type: "string";
|
|
728
|
+
readonly minLength: 1;
|
|
729
|
+
readonly maxLength: 100;
|
|
730
|
+
};
|
|
731
|
+
readonly title: {
|
|
732
|
+
readonly type: "string";
|
|
733
|
+
readonly minLength: 1;
|
|
734
|
+
readonly maxLength: 200;
|
|
735
|
+
};
|
|
736
|
+
readonly description: {
|
|
737
|
+
readonly type: "string";
|
|
738
|
+
readonly maxLength: 2000;
|
|
739
|
+
};
|
|
740
|
+
readonly input_schema: {
|
|
741
|
+
readonly type: "object";
|
|
742
|
+
};
|
|
743
|
+
readonly input_ui_schema: {
|
|
744
|
+
readonly type: "object";
|
|
745
|
+
};
|
|
746
|
+
readonly output_ui_schema: {
|
|
747
|
+
readonly type: "object";
|
|
748
|
+
};
|
|
749
|
+
readonly output_schema: {
|
|
750
|
+
readonly type: "object";
|
|
751
|
+
};
|
|
752
|
+
readonly dispatch_policy: {
|
|
753
|
+
readonly type: "object";
|
|
754
|
+
readonly additionalProperties: false;
|
|
755
|
+
readonly properties: {
|
|
756
|
+
readonly endpoint_ref: {
|
|
757
|
+
readonly type: "string";
|
|
758
|
+
readonly minLength: 1;
|
|
759
|
+
readonly maxLength: 100;
|
|
760
|
+
};
|
|
761
|
+
readonly auth_lane: {
|
|
762
|
+
readonly type: "string";
|
|
763
|
+
readonly minLength: 1;
|
|
764
|
+
readonly maxLength: 100;
|
|
765
|
+
};
|
|
766
|
+
readonly credential_profile: {
|
|
767
|
+
readonly type: "string";
|
|
768
|
+
readonly minLength: 1;
|
|
769
|
+
readonly maxLength: 100;
|
|
770
|
+
};
|
|
771
|
+
readonly allow_on_behalf_of: {
|
|
772
|
+
readonly type: "boolean";
|
|
773
|
+
};
|
|
774
|
+
readonly required_policy_fields: {
|
|
775
|
+
readonly type: "array";
|
|
776
|
+
readonly maxItems: 50;
|
|
777
|
+
readonly items: {
|
|
778
|
+
readonly type: "string";
|
|
779
|
+
readonly minLength: 1;
|
|
780
|
+
readonly maxLength: 100;
|
|
781
|
+
};
|
|
782
|
+
};
|
|
783
|
+
readonly disclosure_mode_default: {
|
|
784
|
+
readonly type: "string";
|
|
785
|
+
readonly enum: readonly ["final_answer_only", "scoped_fields"];
|
|
786
|
+
};
|
|
787
|
+
};
|
|
788
|
+
};
|
|
789
|
+
readonly signature_policy: {
|
|
790
|
+
readonly type: "string";
|
|
791
|
+
readonly enum: readonly ["none", "ed25519", "signature_not_required"];
|
|
792
|
+
};
|
|
793
|
+
readonly async: {
|
|
794
|
+
readonly type: "boolean";
|
|
795
|
+
};
|
|
796
|
+
readonly adapter: {
|
|
797
|
+
readonly type: "object";
|
|
798
|
+
readonly required: readonly ["method", "path"];
|
|
799
|
+
readonly additionalProperties: false;
|
|
800
|
+
readonly properties: {
|
|
801
|
+
readonly method: {
|
|
802
|
+
readonly type: "string";
|
|
803
|
+
readonly enum: readonly ["GET", "POST", "PUT", "DELETE", "PATCH"];
|
|
804
|
+
};
|
|
805
|
+
readonly path: {
|
|
806
|
+
readonly type: "string";
|
|
807
|
+
readonly minLength: 1;
|
|
808
|
+
readonly maxLength: 2048;
|
|
809
|
+
};
|
|
810
|
+
readonly query: {
|
|
811
|
+
readonly type: "object";
|
|
812
|
+
};
|
|
813
|
+
readonly headers: {
|
|
814
|
+
readonly type: "object";
|
|
815
|
+
};
|
|
816
|
+
readonly body: {};
|
|
817
|
+
readonly response_mapping: {
|
|
818
|
+
readonly type: "object";
|
|
819
|
+
};
|
|
820
|
+
};
|
|
821
|
+
};
|
|
822
|
+
};
|
|
823
|
+
};
|
|
824
|
+
};
|
|
825
|
+
readonly widgets: {
|
|
826
|
+
readonly type: "array";
|
|
827
|
+
readonly maxItems: 50;
|
|
828
|
+
readonly items: {
|
|
829
|
+
readonly type: "object";
|
|
830
|
+
readonly required: readonly ["widget_name", "type", "renderer"];
|
|
831
|
+
readonly additionalProperties: false;
|
|
832
|
+
readonly properties: {
|
|
833
|
+
readonly widget_name: {
|
|
834
|
+
readonly type: "string";
|
|
835
|
+
readonly minLength: 1;
|
|
836
|
+
readonly maxLength: 100;
|
|
837
|
+
};
|
|
838
|
+
readonly type: {
|
|
839
|
+
readonly type: "string";
|
|
840
|
+
readonly enum: readonly ["read", "write"];
|
|
841
|
+
};
|
|
842
|
+
readonly renderer: {
|
|
843
|
+
readonly type: "string";
|
|
844
|
+
readonly enum: readonly ["platform", "publisher", "json-forms", "ui-kit", "app-shell"];
|
|
845
|
+
};
|
|
846
|
+
readonly bind_tool_name: {
|
|
847
|
+
readonly type: "string";
|
|
848
|
+
readonly maxLength: 100;
|
|
849
|
+
};
|
|
850
|
+
readonly title: {
|
|
851
|
+
readonly type: "string";
|
|
852
|
+
readonly minLength: 1;
|
|
853
|
+
readonly maxLength: 200;
|
|
854
|
+
};
|
|
855
|
+
readonly accessibility: {
|
|
856
|
+
readonly type: "object";
|
|
857
|
+
readonly additionalProperties: false;
|
|
858
|
+
readonly properties: {
|
|
859
|
+
readonly label: {
|
|
860
|
+
readonly type: "string";
|
|
861
|
+
readonly minLength: 1;
|
|
862
|
+
readonly maxLength: 300;
|
|
863
|
+
};
|
|
864
|
+
readonly role: {
|
|
865
|
+
readonly type: "string";
|
|
866
|
+
readonly minLength: 1;
|
|
867
|
+
readonly maxLength: 50;
|
|
868
|
+
};
|
|
869
|
+
};
|
|
870
|
+
};
|
|
871
|
+
readonly theme: {
|
|
872
|
+
readonly type: "object";
|
|
873
|
+
readonly additionalProperties: false;
|
|
874
|
+
readonly properties: {
|
|
875
|
+
readonly mode: {
|
|
876
|
+
readonly type: "string";
|
|
877
|
+
readonly minLength: 1;
|
|
878
|
+
readonly maxLength: 50;
|
|
879
|
+
};
|
|
880
|
+
readonly tokens: {
|
|
881
|
+
readonly type: "object";
|
|
882
|
+
readonly additionalProperties: {
|
|
883
|
+
readonly type: "string";
|
|
884
|
+
readonly maxLength: 2000;
|
|
885
|
+
};
|
|
886
|
+
};
|
|
887
|
+
};
|
|
888
|
+
};
|
|
889
|
+
readonly entry: {
|
|
890
|
+
readonly type: "object";
|
|
891
|
+
readonly additionalProperties: false;
|
|
892
|
+
readonly properties: {
|
|
893
|
+
readonly kind: {
|
|
894
|
+
readonly type: "string";
|
|
895
|
+
readonly enum: readonly ["platform_template", "iframe_url"];
|
|
896
|
+
};
|
|
897
|
+
readonly template: {
|
|
898
|
+
readonly type: "string";
|
|
899
|
+
readonly maxLength: 100000;
|
|
900
|
+
};
|
|
901
|
+
readonly url: {
|
|
902
|
+
readonly type: "string";
|
|
903
|
+
readonly maxLength: 2048;
|
|
904
|
+
};
|
|
905
|
+
};
|
|
906
|
+
};
|
|
907
|
+
readonly capabilities: {
|
|
908
|
+
readonly type: "array";
|
|
909
|
+
readonly maxItems: 50;
|
|
910
|
+
readonly items: {
|
|
911
|
+
readonly type: "string";
|
|
912
|
+
readonly maxLength: 64;
|
|
913
|
+
};
|
|
914
|
+
};
|
|
915
|
+
readonly requires_linking: {
|
|
916
|
+
readonly type: "boolean";
|
|
917
|
+
};
|
|
918
|
+
readonly required_context: {
|
|
919
|
+
readonly type: "object";
|
|
920
|
+
};
|
|
921
|
+
readonly ui_override: {
|
|
922
|
+
readonly type: "object";
|
|
923
|
+
};
|
|
924
|
+
readonly config: {
|
|
925
|
+
readonly type: "object";
|
|
926
|
+
};
|
|
927
|
+
};
|
|
928
|
+
};
|
|
929
|
+
};
|
|
930
|
+
readonly endpoints: {
|
|
931
|
+
readonly type: "object";
|
|
932
|
+
readonly additionalProperties: {
|
|
933
|
+
readonly type: "object";
|
|
934
|
+
readonly required: readonly ["base_url"];
|
|
935
|
+
readonly additionalProperties: false;
|
|
936
|
+
readonly properties: {
|
|
937
|
+
readonly base_url: {
|
|
938
|
+
readonly type: "string";
|
|
939
|
+
readonly minLength: 1;
|
|
940
|
+
readonly maxLength: 2048;
|
|
941
|
+
};
|
|
942
|
+
readonly timeout_ms: {
|
|
943
|
+
readonly type: "number";
|
|
944
|
+
readonly minimum: 100;
|
|
945
|
+
readonly maximum: 120000;
|
|
946
|
+
};
|
|
947
|
+
readonly health_check: {
|
|
948
|
+
readonly type: "object";
|
|
949
|
+
readonly additionalProperties: false;
|
|
950
|
+
readonly properties: {
|
|
951
|
+
readonly path: {
|
|
952
|
+
readonly type: "string";
|
|
953
|
+
readonly minLength: 1;
|
|
954
|
+
readonly maxLength: 512;
|
|
955
|
+
};
|
|
956
|
+
readonly interval_s: {
|
|
957
|
+
readonly type: "number";
|
|
958
|
+
readonly minimum: 1;
|
|
959
|
+
readonly maximum: 86400;
|
|
960
|
+
};
|
|
961
|
+
};
|
|
962
|
+
};
|
|
963
|
+
readonly retry_policy: {
|
|
964
|
+
readonly type: "object";
|
|
965
|
+
readonly additionalProperties: false;
|
|
966
|
+
readonly properties: {
|
|
967
|
+
readonly max_retries: {
|
|
968
|
+
readonly type: "number";
|
|
969
|
+
readonly minimum: 0;
|
|
970
|
+
readonly maximum: 10;
|
|
971
|
+
};
|
|
972
|
+
readonly backoff: {
|
|
973
|
+
readonly type: "string";
|
|
974
|
+
readonly enum: readonly ["none", "linear", "exponential"];
|
|
975
|
+
};
|
|
976
|
+
};
|
|
977
|
+
};
|
|
978
|
+
readonly region: {
|
|
979
|
+
readonly type: "string";
|
|
980
|
+
readonly minLength: 1;
|
|
981
|
+
readonly maxLength: 100;
|
|
982
|
+
};
|
|
983
|
+
readonly labels: {
|
|
984
|
+
readonly type: "object";
|
|
985
|
+
readonly additionalProperties: {
|
|
986
|
+
readonly type: "string";
|
|
987
|
+
readonly maxLength: 200;
|
|
988
|
+
};
|
|
989
|
+
};
|
|
990
|
+
};
|
|
991
|
+
};
|
|
992
|
+
};
|
|
993
|
+
readonly endpoint_groups: {
|
|
994
|
+
readonly type: "object";
|
|
995
|
+
readonly additionalProperties: {
|
|
996
|
+
readonly type: "object";
|
|
997
|
+
readonly required: readonly ["strategy", "members"];
|
|
998
|
+
readonly additionalProperties: false;
|
|
999
|
+
readonly properties: {
|
|
1000
|
+
readonly strategy: {
|
|
1001
|
+
readonly type: "string";
|
|
1002
|
+
readonly enum: readonly ["failover", "round_robin", "region_affinity"];
|
|
1003
|
+
};
|
|
1004
|
+
readonly members: {
|
|
1005
|
+
readonly type: "array";
|
|
1006
|
+
readonly minItems: 1;
|
|
1007
|
+
readonly maxItems: 20;
|
|
1008
|
+
readonly items: {
|
|
1009
|
+
readonly type: "string";
|
|
1010
|
+
readonly minLength: 1;
|
|
1011
|
+
readonly maxLength: 100;
|
|
1012
|
+
};
|
|
1013
|
+
};
|
|
1014
|
+
};
|
|
1015
|
+
};
|
|
1016
|
+
};
|
|
1017
|
+
readonly event_subscriptions: {
|
|
1018
|
+
readonly type: "array";
|
|
1019
|
+
readonly maxItems: 50;
|
|
1020
|
+
readonly items: {
|
|
1021
|
+
readonly type: "object";
|
|
1022
|
+
readonly required: readonly ["event_type", "webhook_url"];
|
|
1023
|
+
readonly additionalProperties: false;
|
|
1024
|
+
readonly properties: {
|
|
1025
|
+
readonly event_type: {
|
|
1026
|
+
readonly type: "string";
|
|
1027
|
+
readonly minLength: 1;
|
|
1028
|
+
readonly maxLength: 200;
|
|
1029
|
+
};
|
|
1030
|
+
readonly webhook_url: {
|
|
1031
|
+
readonly type: "string";
|
|
1032
|
+
readonly minLength: 1;
|
|
1033
|
+
readonly maxLength: 2048;
|
|
1034
|
+
};
|
|
1035
|
+
};
|
|
1036
|
+
};
|
|
1037
|
+
};
|
|
1038
|
+
readonly connectivity: {
|
|
1039
|
+
readonly type: "object";
|
|
1040
|
+
readonly additionalProperties: false;
|
|
1041
|
+
readonly properties: {
|
|
1042
|
+
readonly executor_mode: {
|
|
1043
|
+
readonly type: "string";
|
|
1044
|
+
readonly enum: readonly ["PUBLIC_EXECUTOR", "PRIVATE_EXECUTOR", "AGENT_TUNNEL"];
|
|
1045
|
+
};
|
|
1046
|
+
readonly auth_mode: {
|
|
1047
|
+
readonly type: "string";
|
|
1048
|
+
readonly enum: readonly ["PUBLISHER_APP", "USER_DELEGATED", "HYBRID"];
|
|
1049
|
+
};
|
|
1050
|
+
readonly signing_policy: {
|
|
1051
|
+
readonly type: "string";
|
|
1052
|
+
readonly enum: readonly ["none", "subject_proof", "publisher_proof"];
|
|
1053
|
+
};
|
|
1054
|
+
readonly webhooks: {
|
|
1055
|
+
readonly type: "object";
|
|
1056
|
+
};
|
|
1057
|
+
readonly proxy_policy: {
|
|
1058
|
+
readonly type: "object";
|
|
1059
|
+
};
|
|
1060
|
+
};
|
|
1061
|
+
};
|
|
1062
|
+
readonly payment_guard_definitions: {
|
|
1063
|
+
readonly type: "array";
|
|
1064
|
+
readonly maxItems: 50;
|
|
1065
|
+
readonly items: {
|
|
1066
|
+
readonly type: "object";
|
|
1067
|
+
readonly required: readonly ["name"];
|
|
1068
|
+
readonly additionalProperties: false;
|
|
1069
|
+
readonly properties: {
|
|
1070
|
+
readonly name: {
|
|
1071
|
+
readonly type: "string";
|
|
1072
|
+
readonly minLength: 1;
|
|
1073
|
+
readonly maxLength: 200;
|
|
1074
|
+
};
|
|
1075
|
+
readonly payment_type: {
|
|
1076
|
+
readonly type: "string";
|
|
1077
|
+
readonly maxLength: 100;
|
|
1078
|
+
};
|
|
1079
|
+
readonly payment_issuer_mode: {
|
|
1080
|
+
readonly type: "string";
|
|
1081
|
+
readonly maxLength: 100;
|
|
1082
|
+
readonly enum: readonly ["owner_managed", "gateway_managed", "tenant_delegated", "publisher_delegated", "any"];
|
|
1083
|
+
};
|
|
1084
|
+
readonly payment_scheme: {
|
|
1085
|
+
readonly type: "string";
|
|
1086
|
+
readonly maxLength: 100;
|
|
1087
|
+
};
|
|
1088
|
+
readonly payment_network: {
|
|
1089
|
+
readonly type: "string";
|
|
1090
|
+
readonly maxLength: 100;
|
|
1091
|
+
};
|
|
1092
|
+
readonly payment_allowed_issuers: {
|
|
1093
|
+
readonly type: "array";
|
|
1094
|
+
readonly maxItems: 20;
|
|
1095
|
+
readonly items: {
|
|
1096
|
+
readonly type: "string";
|
|
1097
|
+
readonly maxLength: 100;
|
|
1098
|
+
readonly enum: readonly ["tenant", "publisher", "gateway", "tenant_delegated", "publisher_delegated"];
|
|
1099
|
+
};
|
|
1100
|
+
};
|
|
1101
|
+
readonly payment_return_contract: {
|
|
1102
|
+
readonly type: "string";
|
|
1103
|
+
readonly maxLength: 200;
|
|
1104
|
+
};
|
|
1105
|
+
readonly payment_return_required: {
|
|
1106
|
+
readonly type: "boolean";
|
|
1107
|
+
};
|
|
1108
|
+
readonly payment_return_max_age_s: {
|
|
1109
|
+
readonly type: "number";
|
|
1110
|
+
readonly minimum: 0;
|
|
1111
|
+
readonly maximum: 86400;
|
|
1112
|
+
};
|
|
1113
|
+
readonly payment_return_hmac_secret_refs: {
|
|
1114
|
+
readonly type: "object";
|
|
1115
|
+
};
|
|
1116
|
+
readonly payment_return_hmac_secrets: {
|
|
1117
|
+
readonly type: "object";
|
|
1118
|
+
};
|
|
1119
|
+
readonly payment_return_hmac_delegated_secret_refs: {
|
|
1120
|
+
readonly type: "object";
|
|
1121
|
+
};
|
|
1122
|
+
readonly payment_return_hmac_delegated_secrets: {
|
|
1123
|
+
readonly type: "object";
|
|
1124
|
+
};
|
|
1125
|
+
readonly payment_provider_credentials: {
|
|
1126
|
+
readonly type: "object";
|
|
1127
|
+
};
|
|
1128
|
+
readonly payment_provider_credentials_refs: {
|
|
1129
|
+
readonly type: "object";
|
|
1130
|
+
};
|
|
1131
|
+
readonly payment_provider_secret_refs: {
|
|
1132
|
+
readonly type: "object";
|
|
1133
|
+
};
|
|
1134
|
+
readonly pricing_model: {
|
|
1135
|
+
readonly type: "string";
|
|
1136
|
+
readonly maxLength: 100;
|
|
1137
|
+
};
|
|
1138
|
+
readonly pricing: {
|
|
1139
|
+
readonly type: "object";
|
|
1140
|
+
readonly additionalProperties: false;
|
|
1141
|
+
readonly properties: {
|
|
1142
|
+
readonly currency: {
|
|
1143
|
+
readonly type: "string";
|
|
1144
|
+
readonly maxLength: 32;
|
|
1145
|
+
};
|
|
1146
|
+
readonly default_amount: {
|
|
1147
|
+
readonly type: "number";
|
|
1148
|
+
};
|
|
1149
|
+
readonly xapp_prices: {
|
|
1150
|
+
readonly type: "object";
|
|
1151
|
+
readonly additionalProperties: {
|
|
1152
|
+
readonly type: "number";
|
|
1153
|
+
};
|
|
1154
|
+
};
|
|
1155
|
+
readonly tool_overrides: {
|
|
1156
|
+
readonly type: "object";
|
|
1157
|
+
readonly additionalProperties: {
|
|
1158
|
+
readonly type: "number";
|
|
1159
|
+
};
|
|
1160
|
+
};
|
|
1161
|
+
readonly description: {
|
|
1162
|
+
readonly type: "string";
|
|
1163
|
+
readonly maxLength: 500;
|
|
1164
|
+
};
|
|
1165
|
+
readonly asset: {
|
|
1166
|
+
readonly type: "string";
|
|
1167
|
+
readonly maxLength: 256;
|
|
1168
|
+
};
|
|
1169
|
+
readonly pay_to: {
|
|
1170
|
+
readonly type: "string";
|
|
1171
|
+
readonly maxLength: 256;
|
|
1172
|
+
};
|
|
1173
|
+
readonly payTo: {
|
|
1174
|
+
readonly type: "string";
|
|
1175
|
+
readonly maxLength: 256;
|
|
1176
|
+
};
|
|
1177
|
+
};
|
|
1178
|
+
};
|
|
1179
|
+
readonly receipt_field: {
|
|
1180
|
+
readonly type: "string";
|
|
1181
|
+
readonly maxLength: 200;
|
|
1182
|
+
};
|
|
1183
|
+
readonly payment_url: {
|
|
1184
|
+
readonly type: "string";
|
|
1185
|
+
readonly maxLength: 2048;
|
|
1186
|
+
};
|
|
1187
|
+
readonly accepts: {
|
|
1188
|
+
readonly type: "array";
|
|
1189
|
+
readonly maxItems: 20;
|
|
1190
|
+
readonly items: {
|
|
1191
|
+
readonly type: "object";
|
|
1192
|
+
readonly additionalProperties: true;
|
|
1193
|
+
};
|
|
1194
|
+
};
|
|
1195
|
+
readonly payment_ui: {
|
|
1196
|
+
readonly type: "object";
|
|
1197
|
+
};
|
|
1198
|
+
readonly policy: {
|
|
1199
|
+
readonly type: "object";
|
|
1200
|
+
};
|
|
1201
|
+
readonly action: {
|
|
1202
|
+
readonly type: "object";
|
|
1203
|
+
};
|
|
1204
|
+
readonly owner_override_allowlist: {
|
|
1205
|
+
readonly type: "array";
|
|
1206
|
+
readonly maxItems: 100;
|
|
1207
|
+
readonly items: {
|
|
1208
|
+
readonly type: "string";
|
|
1209
|
+
readonly minLength: 1;
|
|
1210
|
+
readonly maxLength: 200;
|
|
1211
|
+
};
|
|
1212
|
+
};
|
|
1213
|
+
readonly owner_pricing_floor: {
|
|
1214
|
+
readonly type: "object";
|
|
1215
|
+
readonly additionalProperties: false;
|
|
1216
|
+
readonly properties: {
|
|
1217
|
+
readonly default_amount: {
|
|
1218
|
+
readonly type: "number";
|
|
1219
|
+
};
|
|
1220
|
+
readonly xapp_prices: {
|
|
1221
|
+
readonly type: "object";
|
|
1222
|
+
readonly additionalProperties: {
|
|
1223
|
+
readonly type: "number";
|
|
1224
|
+
};
|
|
1225
|
+
};
|
|
1226
|
+
readonly tool_overrides: {
|
|
1227
|
+
readonly type: "object";
|
|
1228
|
+
readonly additionalProperties: {
|
|
1229
|
+
readonly type: "number";
|
|
1230
|
+
};
|
|
1231
|
+
};
|
|
1232
|
+
};
|
|
1233
|
+
};
|
|
1234
|
+
};
|
|
1235
|
+
};
|
|
1236
|
+
};
|
|
1237
|
+
readonly subject_profile_guard_definitions: {
|
|
1238
|
+
readonly type: "array";
|
|
1239
|
+
readonly maxItems: 50;
|
|
1240
|
+
readonly items: {
|
|
1241
|
+
readonly type: "object";
|
|
1242
|
+
readonly required: readonly ["name"];
|
|
1243
|
+
readonly additionalProperties: false;
|
|
1244
|
+
readonly properties: {
|
|
1245
|
+
readonly name: {
|
|
1246
|
+
readonly type: "string";
|
|
1247
|
+
readonly minLength: 1;
|
|
1248
|
+
readonly maxLength: 200;
|
|
1249
|
+
};
|
|
1250
|
+
readonly policy: {
|
|
1251
|
+
readonly type: "object";
|
|
1252
|
+
};
|
|
1253
|
+
readonly action: {
|
|
1254
|
+
readonly type: "object";
|
|
1255
|
+
};
|
|
1256
|
+
readonly tools: {
|
|
1257
|
+
readonly type: "array";
|
|
1258
|
+
readonly maxItems: 100;
|
|
1259
|
+
readonly items: {
|
|
1260
|
+
readonly type: "string";
|
|
1261
|
+
readonly minLength: 1;
|
|
1262
|
+
readonly maxLength: 200;
|
|
1263
|
+
};
|
|
1264
|
+
};
|
|
1265
|
+
readonly subject_profile_requirement: {
|
|
1266
|
+
readonly type: "object";
|
|
1267
|
+
};
|
|
1268
|
+
readonly subject_profile_remediation: {
|
|
1269
|
+
readonly type: "object";
|
|
1270
|
+
};
|
|
1271
|
+
readonly subject_profile_sources: {
|
|
1272
|
+
readonly type: "object";
|
|
1273
|
+
};
|
|
1274
|
+
readonly owner_override_allowlist: {
|
|
1275
|
+
readonly type: "array";
|
|
1276
|
+
readonly maxItems: 100;
|
|
1277
|
+
readonly items: {
|
|
1278
|
+
readonly type: "string";
|
|
1279
|
+
readonly minLength: 1;
|
|
1280
|
+
readonly maxLength: 200;
|
|
1281
|
+
};
|
|
1282
|
+
};
|
|
1283
|
+
};
|
|
1284
|
+
};
|
|
1285
|
+
};
|
|
1286
|
+
readonly notification_definitions: {
|
|
1287
|
+
readonly type: "array";
|
|
1288
|
+
readonly maxItems: 50;
|
|
1289
|
+
readonly items: {
|
|
1290
|
+
readonly type: "object";
|
|
1291
|
+
readonly required: readonly ["name"];
|
|
1292
|
+
readonly additionalProperties: false;
|
|
1293
|
+
readonly properties: {
|
|
1294
|
+
readonly name: {
|
|
1295
|
+
readonly type: "string";
|
|
1296
|
+
readonly minLength: 1;
|
|
1297
|
+
readonly maxLength: 200;
|
|
1298
|
+
};
|
|
1299
|
+
readonly channel: {
|
|
1300
|
+
readonly type: "string";
|
|
1301
|
+
readonly enum: readonly ["email"];
|
|
1302
|
+
};
|
|
1303
|
+
readonly effect_kind: {
|
|
1304
|
+
readonly type: "string";
|
|
1305
|
+
readonly enum: readonly ["policy", "invoice", "notification", "integration_call"];
|
|
1306
|
+
};
|
|
1307
|
+
readonly effectKind: {
|
|
1308
|
+
readonly type: "string";
|
|
1309
|
+
readonly enum: readonly ["policy", "invoice", "notification", "integration_call"];
|
|
1310
|
+
};
|
|
1311
|
+
readonly provider_key: {
|
|
1312
|
+
readonly type: "string";
|
|
1313
|
+
readonly maxLength: 100;
|
|
1314
|
+
};
|
|
1315
|
+
readonly providerKey: {
|
|
1316
|
+
readonly type: "string";
|
|
1317
|
+
readonly maxLength: 100;
|
|
1318
|
+
};
|
|
1319
|
+
readonly execution_mode: {
|
|
1320
|
+
readonly type: "string";
|
|
1321
|
+
readonly maxLength: 100;
|
|
1322
|
+
};
|
|
1323
|
+
readonly executionMode: {
|
|
1324
|
+
readonly type: "string";
|
|
1325
|
+
readonly maxLength: 100;
|
|
1326
|
+
};
|
|
1327
|
+
readonly provider_scope: {
|
|
1328
|
+
readonly type: "string";
|
|
1329
|
+
readonly maxLength: 100;
|
|
1330
|
+
};
|
|
1331
|
+
readonly providerScope: {
|
|
1332
|
+
readonly type: "string";
|
|
1333
|
+
readonly maxLength: 100;
|
|
1334
|
+
};
|
|
1335
|
+
readonly provider_execution: {
|
|
1336
|
+
readonly type: "string";
|
|
1337
|
+
readonly maxLength: 100;
|
|
1338
|
+
};
|
|
1339
|
+
readonly providerExecution: {
|
|
1340
|
+
readonly type: "string";
|
|
1341
|
+
readonly maxLength: 100;
|
|
1342
|
+
};
|
|
1343
|
+
readonly failure_policy: {
|
|
1344
|
+
readonly type: "string";
|
|
1345
|
+
readonly maxLength: 100;
|
|
1346
|
+
};
|
|
1347
|
+
readonly failurePolicy: {
|
|
1348
|
+
readonly type: "string";
|
|
1349
|
+
readonly maxLength: 100;
|
|
1350
|
+
};
|
|
1351
|
+
readonly retry_policy: {
|
|
1352
|
+
readonly type: "object";
|
|
1353
|
+
};
|
|
1354
|
+
readonly retryPolicy: {
|
|
1355
|
+
readonly type: "object";
|
|
1356
|
+
};
|
|
1357
|
+
readonly idempotency_scope: {
|
|
1358
|
+
readonly type: "string";
|
|
1359
|
+
readonly maxLength: 100;
|
|
1360
|
+
};
|
|
1361
|
+
readonly idempotencyScope: {
|
|
1362
|
+
readonly type: "string";
|
|
1363
|
+
readonly maxLength: 100;
|
|
1364
|
+
};
|
|
1365
|
+
readonly template_ref: {
|
|
1366
|
+
readonly type: "string";
|
|
1367
|
+
readonly maxLength: 200;
|
|
1368
|
+
};
|
|
1369
|
+
readonly templateRef: {
|
|
1370
|
+
readonly type: "string";
|
|
1371
|
+
readonly maxLength: 200;
|
|
1372
|
+
};
|
|
1373
|
+
readonly target: {
|
|
1374
|
+
readonly type: "object";
|
|
1375
|
+
};
|
|
1376
|
+
readonly template: {
|
|
1377
|
+
readonly type: "object";
|
|
1378
|
+
};
|
|
1379
|
+
};
|
|
1380
|
+
};
|
|
1381
|
+
};
|
|
1382
|
+
readonly notification_templates: {
|
|
1383
|
+
readonly type: "array";
|
|
1384
|
+
readonly maxItems: 50;
|
|
1385
|
+
readonly items: {
|
|
1386
|
+
readonly type: "object";
|
|
1387
|
+
readonly required: readonly ["name"];
|
|
1388
|
+
readonly additionalProperties: false;
|
|
1389
|
+
readonly properties: {
|
|
1390
|
+
readonly name: {
|
|
1391
|
+
readonly type: "string";
|
|
1392
|
+
readonly minLength: 1;
|
|
1393
|
+
readonly maxLength: 200;
|
|
1394
|
+
};
|
|
1395
|
+
readonly channel: {
|
|
1396
|
+
readonly type: "string";
|
|
1397
|
+
readonly enum: readonly ["email"];
|
|
1398
|
+
};
|
|
1399
|
+
readonly subject: {
|
|
1400
|
+
readonly type: "string";
|
|
1401
|
+
readonly maxLength: 500;
|
|
1402
|
+
};
|
|
1403
|
+
readonly text: {
|
|
1404
|
+
readonly type: "string";
|
|
1405
|
+
readonly maxLength: 20000;
|
|
1406
|
+
};
|
|
1407
|
+
readonly html: {
|
|
1408
|
+
readonly type: "string";
|
|
1409
|
+
readonly maxLength: 100000;
|
|
1410
|
+
};
|
|
1411
|
+
};
|
|
1412
|
+
};
|
|
1413
|
+
};
|
|
1414
|
+
readonly invoice_definitions: {
|
|
1415
|
+
readonly type: "array";
|
|
1416
|
+
readonly maxItems: 50;
|
|
1417
|
+
readonly items: {
|
|
1418
|
+
readonly type: "object";
|
|
1419
|
+
readonly required: readonly ["name"];
|
|
1420
|
+
readonly additionalProperties: false;
|
|
1421
|
+
readonly properties: {
|
|
1422
|
+
readonly name: {
|
|
1423
|
+
readonly type: "string";
|
|
1424
|
+
readonly minLength: 1;
|
|
1425
|
+
readonly maxLength: 200;
|
|
1426
|
+
};
|
|
1427
|
+
readonly provider_key: {
|
|
1428
|
+
readonly type: "string";
|
|
1429
|
+
readonly maxLength: 100;
|
|
1430
|
+
};
|
|
1431
|
+
readonly providerKey: {
|
|
1432
|
+
readonly type: "string";
|
|
1433
|
+
readonly maxLength: 100;
|
|
1434
|
+
};
|
|
1435
|
+
readonly effect_kind: {
|
|
1436
|
+
readonly type: "string";
|
|
1437
|
+
readonly enum: readonly ["policy", "invoice", "notification", "integration_call"];
|
|
1438
|
+
};
|
|
1439
|
+
readonly effectKind: {
|
|
1440
|
+
readonly type: "string";
|
|
1441
|
+
readonly enum: readonly ["policy", "invoice", "notification", "integration_call"];
|
|
1442
|
+
};
|
|
1443
|
+
readonly execution_mode: {
|
|
1444
|
+
readonly type: "string";
|
|
1445
|
+
readonly maxLength: 100;
|
|
1446
|
+
};
|
|
1447
|
+
readonly executionMode: {
|
|
1448
|
+
readonly type: "string";
|
|
1449
|
+
readonly maxLength: 100;
|
|
1450
|
+
};
|
|
1451
|
+
readonly provider_scope: {
|
|
1452
|
+
readonly type: "string";
|
|
1453
|
+
readonly maxLength: 100;
|
|
1454
|
+
};
|
|
1455
|
+
readonly providerScope: {
|
|
1456
|
+
readonly type: "string";
|
|
1457
|
+
readonly maxLength: 100;
|
|
1458
|
+
};
|
|
1459
|
+
readonly provider_execution: {
|
|
1460
|
+
readonly type: "string";
|
|
1461
|
+
readonly maxLength: 100;
|
|
1462
|
+
};
|
|
1463
|
+
readonly providerExecution: {
|
|
1464
|
+
readonly type: "string";
|
|
1465
|
+
readonly maxLength: 100;
|
|
1466
|
+
};
|
|
1467
|
+
readonly failure_policy: {
|
|
1468
|
+
readonly type: "string";
|
|
1469
|
+
readonly maxLength: 100;
|
|
1470
|
+
};
|
|
1471
|
+
readonly failurePolicy: {
|
|
1472
|
+
readonly type: "string";
|
|
1473
|
+
readonly maxLength: 100;
|
|
1474
|
+
};
|
|
1475
|
+
readonly idempotency_scope: {
|
|
1476
|
+
readonly type: "string";
|
|
1477
|
+
readonly maxLength: 100;
|
|
1478
|
+
};
|
|
1479
|
+
readonly idempotencyScope: {
|
|
1480
|
+
readonly type: "string";
|
|
1481
|
+
readonly maxLength: 100;
|
|
1482
|
+
};
|
|
1483
|
+
readonly invoice_template_ref: {
|
|
1484
|
+
readonly type: "string";
|
|
1485
|
+
readonly maxLength: 200;
|
|
1486
|
+
};
|
|
1487
|
+
readonly invoiceTemplateRef: {
|
|
1488
|
+
readonly type: "string";
|
|
1489
|
+
readonly maxLength: 200;
|
|
1490
|
+
};
|
|
1491
|
+
readonly invoice: {
|
|
1492
|
+
readonly type: "object";
|
|
1493
|
+
};
|
|
1494
|
+
readonly template: {
|
|
1495
|
+
readonly type: "object";
|
|
1496
|
+
};
|
|
1497
|
+
};
|
|
1498
|
+
};
|
|
1499
|
+
};
|
|
1500
|
+
readonly invoice_templates: {
|
|
1501
|
+
readonly type: "array";
|
|
1502
|
+
readonly maxItems: 50;
|
|
1503
|
+
readonly items: {
|
|
1504
|
+
readonly type: "object";
|
|
1505
|
+
readonly required: readonly ["name"];
|
|
1506
|
+
readonly additionalProperties: true;
|
|
1507
|
+
readonly properties: {
|
|
1508
|
+
readonly name: {
|
|
1509
|
+
readonly type: "string";
|
|
1510
|
+
readonly minLength: 1;
|
|
1511
|
+
readonly maxLength: 200;
|
|
1512
|
+
};
|
|
1513
|
+
readonly title: {
|
|
1514
|
+
readonly type: "string";
|
|
1515
|
+
readonly maxLength: 500;
|
|
1516
|
+
};
|
|
1517
|
+
readonly text: {
|
|
1518
|
+
readonly type: "string";
|
|
1519
|
+
readonly maxLength: 20000;
|
|
1520
|
+
};
|
|
1521
|
+
readonly html: {
|
|
1522
|
+
readonly type: "string";
|
|
1523
|
+
readonly maxLength: 100000;
|
|
1524
|
+
};
|
|
1525
|
+
};
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
};
|
|
1529
|
+
};
|
|
1530
|
+
export declare function parseXappManifest(input: unknown, options?: ParseXappManifestOptions): XappManifest;
|
|
1531
|
+
//# sourceMappingURL=index.d.ts.map
|