@cdot65/prisma-airs-sdk 0.17.0 → 0.19.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 +22 -0
- package/dist/index.cjs +764 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1610 -77
- package/dist/index.d.ts +1610 -77
- package/dist/index.js +747 -18
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
package/dist/index.d.cts
CHANGED
|
@@ -31414,6 +31414,78 @@ declare class AISecSDKException extends Error {
|
|
|
31414
31414
|
constructor(message: string, errorType?: ErrorType, metadata?: AISecSDKExceptionMetadata);
|
|
31415
31415
|
}
|
|
31416
31416
|
|
|
31417
|
+
/**
|
|
31418
|
+
* Pagination + search options shared by every list endpoint across the OAuth domains.
|
|
31419
|
+
* Sub-clients extend this with endpoint-specific filter fields and merge their additions
|
|
31420
|
+
* into the params record returned by the internal `serializeListing` helper.
|
|
31421
|
+
*/
|
|
31422
|
+
interface ListingOptions {
|
|
31423
|
+
/** Number of records to skip from the start. */
|
|
31424
|
+
skip?: number;
|
|
31425
|
+
/** Max records to return. */
|
|
31426
|
+
limit?: number;
|
|
31427
|
+
/** Free-text search filter. */
|
|
31428
|
+
search?: string;
|
|
31429
|
+
}
|
|
31430
|
+
/** A page returned to the generic pagination helper. */
|
|
31431
|
+
interface PaginationPage<T, Cursor> {
|
|
31432
|
+
/** Records in this page. */
|
|
31433
|
+
items: T[];
|
|
31434
|
+
/** Cursor for the next page. Omit when this is the last page. */
|
|
31435
|
+
next?: Cursor;
|
|
31436
|
+
}
|
|
31437
|
+
/** Options controlling collection of an async listing. */
|
|
31438
|
+
interface CollectAllOptions {
|
|
31439
|
+
/** Maximum records to collect. Defaults to 10,000. Use `0` for no limit. */
|
|
31440
|
+
max?: number;
|
|
31441
|
+
}
|
|
31442
|
+
/**
|
|
31443
|
+
* Yield records from a cursor-based page fetcher until it has no next cursor.
|
|
31444
|
+
*
|
|
31445
|
+
* @example
|
|
31446
|
+
* ```ts
|
|
31447
|
+
* import { collectAll, paginate } from '@cdot65/prisma-airs-sdk';
|
|
31448
|
+
* const records = await collectAll(paginate(async (offset: number) => {
|
|
31449
|
+
* const page = await api.list({ offset, limit: 100 });
|
|
31450
|
+
* return { items: page.items, next: page.next_offset };
|
|
31451
|
+
* }, 0));
|
|
31452
|
+
* ```
|
|
31453
|
+
*/
|
|
31454
|
+
declare function paginate<T, Cursor>(fetchPage: (cursor: Cursor) => Promise<PaginationPage<T, Cursor>>, initialCursor: Cursor): AsyncGenerator<T>;
|
|
31455
|
+
/**
|
|
31456
|
+
* Collect an async listing into an array with a runaway-walk safety cap.
|
|
31457
|
+
*
|
|
31458
|
+
* @example
|
|
31459
|
+
* ```ts
|
|
31460
|
+
* import { collectAll } from '@cdot65/prisma-airs-sdk';
|
|
31461
|
+
* const firstThousand = await collectAll(client.listAllIter(), { max: 1_000 });
|
|
31462
|
+
* ```
|
|
31463
|
+
*/
|
|
31464
|
+
declare function collectAll<T>(iterable: AsyncIterable<T>, opts?: CollectAllOptions): Promise<T[]>;
|
|
31465
|
+
/** @internal Options shared by all-page dialect adapters. */
|
|
31466
|
+
interface WalkAllOptions extends CollectAllOptions {
|
|
31467
|
+
limit?: number;
|
|
31468
|
+
}
|
|
31469
|
+
/** @internal Walk a skip/limit API using its normalized total when available. */
|
|
31470
|
+
declare function collectSkipPages<T>(fetchPage: (skip: number, limit: number) => Promise<{
|
|
31471
|
+
items: T[];
|
|
31472
|
+
total?: number | null;
|
|
31473
|
+
}>, opts?: WalkAllOptions): Promise<T[]>;
|
|
31474
|
+
/** @internal Walk a zero-indexed Spring page/size API until its `last` page. */
|
|
31475
|
+
declare function collectSpringPages<T>(fetchPage: (page: number, size: number) => Promise<{
|
|
31476
|
+
items: T[];
|
|
31477
|
+
last: boolean;
|
|
31478
|
+
}>, opts?: {
|
|
31479
|
+
size?: number;
|
|
31480
|
+
max?: number;
|
|
31481
|
+
}): Promise<T[]>;
|
|
31482
|
+
/**
|
|
31483
|
+
* @internal
|
|
31484
|
+
* Serialize the canonical listing fields into a string-keyed params record. Extra fields on
|
|
31485
|
+
* the input are ignored — callers add their own endpoint-specific filters to the result.
|
|
31486
|
+
*/
|
|
31487
|
+
declare function serializeListing(opts?: ListingOptions): Record<string, string>;
|
|
31488
|
+
|
|
31417
31489
|
/** Scan result verdict classification. */
|
|
31418
31490
|
declare const Verdict: {
|
|
31419
31491
|
readonly BENIGN: "benign";
|
|
@@ -103374,6 +103446,290 @@ declare const GatewayConfigDetailSchema: z.ZodObject<{
|
|
|
103374
103446
|
version_id: z.ZodString;
|
|
103375
103447
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103376
103448
|
type GatewayConfigDetail = z.infer<typeof GatewayConfigDetailSchema>;
|
|
103449
|
+
/** One config version from `GET /configs/{id}/versions`. Verified live 2026-08-29. */
|
|
103450
|
+
declare const GatewayConfigVersionSchema: z.ZodObject<{
|
|
103451
|
+
id: z.ZodString;
|
|
103452
|
+
name: z.ZodString;
|
|
103453
|
+
slug: z.ZodString;
|
|
103454
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103455
|
+
organisation_id: z.ZodString;
|
|
103456
|
+
is_default: z.ZodNumber;
|
|
103457
|
+
status: z.ZodString;
|
|
103458
|
+
owner_id: z.ZodString;
|
|
103459
|
+
updated_by: z.ZodString;
|
|
103460
|
+
created_at: z.ZodString;
|
|
103461
|
+
last_updated_at: z.ZodString;
|
|
103462
|
+
workspace_id: z.ZodString;
|
|
103463
|
+
object: z.ZodString;
|
|
103464
|
+
} & {
|
|
103465
|
+
config: z.ZodString;
|
|
103466
|
+
format: z.ZodString;
|
|
103467
|
+
type: z.ZodString;
|
|
103468
|
+
version_id: z.ZodString;
|
|
103469
|
+
} & {
|
|
103470
|
+
version_created_at: z.ZodString;
|
|
103471
|
+
version_owner_id: z.ZodString;
|
|
103472
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
103473
|
+
id: z.ZodString;
|
|
103474
|
+
name: z.ZodString;
|
|
103475
|
+
slug: z.ZodString;
|
|
103476
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103477
|
+
organisation_id: z.ZodString;
|
|
103478
|
+
is_default: z.ZodNumber;
|
|
103479
|
+
status: z.ZodString;
|
|
103480
|
+
owner_id: z.ZodString;
|
|
103481
|
+
updated_by: z.ZodString;
|
|
103482
|
+
created_at: z.ZodString;
|
|
103483
|
+
last_updated_at: z.ZodString;
|
|
103484
|
+
workspace_id: z.ZodString;
|
|
103485
|
+
object: z.ZodString;
|
|
103486
|
+
} & {
|
|
103487
|
+
config: z.ZodString;
|
|
103488
|
+
format: z.ZodString;
|
|
103489
|
+
type: z.ZodString;
|
|
103490
|
+
version_id: z.ZodString;
|
|
103491
|
+
} & {
|
|
103492
|
+
version_created_at: z.ZodString;
|
|
103493
|
+
version_owner_id: z.ZodString;
|
|
103494
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
103495
|
+
id: z.ZodString;
|
|
103496
|
+
name: z.ZodString;
|
|
103497
|
+
slug: z.ZodString;
|
|
103498
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103499
|
+
organisation_id: z.ZodString;
|
|
103500
|
+
is_default: z.ZodNumber;
|
|
103501
|
+
status: z.ZodString;
|
|
103502
|
+
owner_id: z.ZodString;
|
|
103503
|
+
updated_by: z.ZodString;
|
|
103504
|
+
created_at: z.ZodString;
|
|
103505
|
+
last_updated_at: z.ZodString;
|
|
103506
|
+
workspace_id: z.ZodString;
|
|
103507
|
+
object: z.ZodString;
|
|
103508
|
+
} & {
|
|
103509
|
+
config: z.ZodString;
|
|
103510
|
+
format: z.ZodString;
|
|
103511
|
+
type: z.ZodString;
|
|
103512
|
+
version_id: z.ZodString;
|
|
103513
|
+
} & {
|
|
103514
|
+
version_created_at: z.ZodString;
|
|
103515
|
+
version_owner_id: z.ZodString;
|
|
103516
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
103517
|
+
type GatewayConfigVersion = z.infer<typeof GatewayConfigVersionSchema>;
|
|
103518
|
+
declare const ListConfigVersionsResponseSchema: z.ZodObject<{
|
|
103519
|
+
object: z.ZodString;
|
|
103520
|
+
total: z.ZodNumber;
|
|
103521
|
+
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
103522
|
+
data: z.ZodArray<z.ZodObject<{
|
|
103523
|
+
id: z.ZodString;
|
|
103524
|
+
name: z.ZodString;
|
|
103525
|
+
slug: z.ZodString;
|
|
103526
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103527
|
+
organisation_id: z.ZodString;
|
|
103528
|
+
is_default: z.ZodNumber;
|
|
103529
|
+
status: z.ZodString;
|
|
103530
|
+
owner_id: z.ZodString;
|
|
103531
|
+
updated_by: z.ZodString;
|
|
103532
|
+
created_at: z.ZodString;
|
|
103533
|
+
last_updated_at: z.ZodString;
|
|
103534
|
+
workspace_id: z.ZodString;
|
|
103535
|
+
object: z.ZodString;
|
|
103536
|
+
} & {
|
|
103537
|
+
config: z.ZodString;
|
|
103538
|
+
format: z.ZodString;
|
|
103539
|
+
type: z.ZodString;
|
|
103540
|
+
version_id: z.ZodString;
|
|
103541
|
+
} & {
|
|
103542
|
+
version_created_at: z.ZodString;
|
|
103543
|
+
version_owner_id: z.ZodString;
|
|
103544
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
103545
|
+
id: z.ZodString;
|
|
103546
|
+
name: z.ZodString;
|
|
103547
|
+
slug: z.ZodString;
|
|
103548
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103549
|
+
organisation_id: z.ZodString;
|
|
103550
|
+
is_default: z.ZodNumber;
|
|
103551
|
+
status: z.ZodString;
|
|
103552
|
+
owner_id: z.ZodString;
|
|
103553
|
+
updated_by: z.ZodString;
|
|
103554
|
+
created_at: z.ZodString;
|
|
103555
|
+
last_updated_at: z.ZodString;
|
|
103556
|
+
workspace_id: z.ZodString;
|
|
103557
|
+
object: z.ZodString;
|
|
103558
|
+
} & {
|
|
103559
|
+
config: z.ZodString;
|
|
103560
|
+
format: z.ZodString;
|
|
103561
|
+
type: z.ZodString;
|
|
103562
|
+
version_id: z.ZodString;
|
|
103563
|
+
} & {
|
|
103564
|
+
version_created_at: z.ZodString;
|
|
103565
|
+
version_owner_id: z.ZodString;
|
|
103566
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
103567
|
+
id: z.ZodString;
|
|
103568
|
+
name: z.ZodString;
|
|
103569
|
+
slug: z.ZodString;
|
|
103570
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103571
|
+
organisation_id: z.ZodString;
|
|
103572
|
+
is_default: z.ZodNumber;
|
|
103573
|
+
status: z.ZodString;
|
|
103574
|
+
owner_id: z.ZodString;
|
|
103575
|
+
updated_by: z.ZodString;
|
|
103576
|
+
created_at: z.ZodString;
|
|
103577
|
+
last_updated_at: z.ZodString;
|
|
103578
|
+
workspace_id: z.ZodString;
|
|
103579
|
+
object: z.ZodString;
|
|
103580
|
+
} & {
|
|
103581
|
+
config: z.ZodString;
|
|
103582
|
+
format: z.ZodString;
|
|
103583
|
+
type: z.ZodString;
|
|
103584
|
+
version_id: z.ZodString;
|
|
103585
|
+
} & {
|
|
103586
|
+
version_created_at: z.ZodString;
|
|
103587
|
+
version_owner_id: z.ZodString;
|
|
103588
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
103589
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
103590
|
+
object: z.ZodString;
|
|
103591
|
+
total: z.ZodNumber;
|
|
103592
|
+
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
103593
|
+
data: z.ZodArray<z.ZodObject<{
|
|
103594
|
+
id: z.ZodString;
|
|
103595
|
+
name: z.ZodString;
|
|
103596
|
+
slug: z.ZodString;
|
|
103597
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103598
|
+
organisation_id: z.ZodString;
|
|
103599
|
+
is_default: z.ZodNumber;
|
|
103600
|
+
status: z.ZodString;
|
|
103601
|
+
owner_id: z.ZodString;
|
|
103602
|
+
updated_by: z.ZodString;
|
|
103603
|
+
created_at: z.ZodString;
|
|
103604
|
+
last_updated_at: z.ZodString;
|
|
103605
|
+
workspace_id: z.ZodString;
|
|
103606
|
+
object: z.ZodString;
|
|
103607
|
+
} & {
|
|
103608
|
+
config: z.ZodString;
|
|
103609
|
+
format: z.ZodString;
|
|
103610
|
+
type: z.ZodString;
|
|
103611
|
+
version_id: z.ZodString;
|
|
103612
|
+
} & {
|
|
103613
|
+
version_created_at: z.ZodString;
|
|
103614
|
+
version_owner_id: z.ZodString;
|
|
103615
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
103616
|
+
id: z.ZodString;
|
|
103617
|
+
name: z.ZodString;
|
|
103618
|
+
slug: z.ZodString;
|
|
103619
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103620
|
+
organisation_id: z.ZodString;
|
|
103621
|
+
is_default: z.ZodNumber;
|
|
103622
|
+
status: z.ZodString;
|
|
103623
|
+
owner_id: z.ZodString;
|
|
103624
|
+
updated_by: z.ZodString;
|
|
103625
|
+
created_at: z.ZodString;
|
|
103626
|
+
last_updated_at: z.ZodString;
|
|
103627
|
+
workspace_id: z.ZodString;
|
|
103628
|
+
object: z.ZodString;
|
|
103629
|
+
} & {
|
|
103630
|
+
config: z.ZodString;
|
|
103631
|
+
format: z.ZodString;
|
|
103632
|
+
type: z.ZodString;
|
|
103633
|
+
version_id: z.ZodString;
|
|
103634
|
+
} & {
|
|
103635
|
+
version_created_at: z.ZodString;
|
|
103636
|
+
version_owner_id: z.ZodString;
|
|
103637
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
103638
|
+
id: z.ZodString;
|
|
103639
|
+
name: z.ZodString;
|
|
103640
|
+
slug: z.ZodString;
|
|
103641
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103642
|
+
organisation_id: z.ZodString;
|
|
103643
|
+
is_default: z.ZodNumber;
|
|
103644
|
+
status: z.ZodString;
|
|
103645
|
+
owner_id: z.ZodString;
|
|
103646
|
+
updated_by: z.ZodString;
|
|
103647
|
+
created_at: z.ZodString;
|
|
103648
|
+
last_updated_at: z.ZodString;
|
|
103649
|
+
workspace_id: z.ZodString;
|
|
103650
|
+
object: z.ZodString;
|
|
103651
|
+
} & {
|
|
103652
|
+
config: z.ZodString;
|
|
103653
|
+
format: z.ZodString;
|
|
103654
|
+
type: z.ZodString;
|
|
103655
|
+
version_id: z.ZodString;
|
|
103656
|
+
} & {
|
|
103657
|
+
version_created_at: z.ZodString;
|
|
103658
|
+
version_owner_id: z.ZodString;
|
|
103659
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
103660
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
103661
|
+
object: z.ZodString;
|
|
103662
|
+
total: z.ZodNumber;
|
|
103663
|
+
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
103664
|
+
data: z.ZodArray<z.ZodObject<{
|
|
103665
|
+
id: z.ZodString;
|
|
103666
|
+
name: z.ZodString;
|
|
103667
|
+
slug: z.ZodString;
|
|
103668
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103669
|
+
organisation_id: z.ZodString;
|
|
103670
|
+
is_default: z.ZodNumber;
|
|
103671
|
+
status: z.ZodString;
|
|
103672
|
+
owner_id: z.ZodString;
|
|
103673
|
+
updated_by: z.ZodString;
|
|
103674
|
+
created_at: z.ZodString;
|
|
103675
|
+
last_updated_at: z.ZodString;
|
|
103676
|
+
workspace_id: z.ZodString;
|
|
103677
|
+
object: z.ZodString;
|
|
103678
|
+
} & {
|
|
103679
|
+
config: z.ZodString;
|
|
103680
|
+
format: z.ZodString;
|
|
103681
|
+
type: z.ZodString;
|
|
103682
|
+
version_id: z.ZodString;
|
|
103683
|
+
} & {
|
|
103684
|
+
version_created_at: z.ZodString;
|
|
103685
|
+
version_owner_id: z.ZodString;
|
|
103686
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
103687
|
+
id: z.ZodString;
|
|
103688
|
+
name: z.ZodString;
|
|
103689
|
+
slug: z.ZodString;
|
|
103690
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103691
|
+
organisation_id: z.ZodString;
|
|
103692
|
+
is_default: z.ZodNumber;
|
|
103693
|
+
status: z.ZodString;
|
|
103694
|
+
owner_id: z.ZodString;
|
|
103695
|
+
updated_by: z.ZodString;
|
|
103696
|
+
created_at: z.ZodString;
|
|
103697
|
+
last_updated_at: z.ZodString;
|
|
103698
|
+
workspace_id: z.ZodString;
|
|
103699
|
+
object: z.ZodString;
|
|
103700
|
+
} & {
|
|
103701
|
+
config: z.ZodString;
|
|
103702
|
+
format: z.ZodString;
|
|
103703
|
+
type: z.ZodString;
|
|
103704
|
+
version_id: z.ZodString;
|
|
103705
|
+
} & {
|
|
103706
|
+
version_created_at: z.ZodString;
|
|
103707
|
+
version_owner_id: z.ZodString;
|
|
103708
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
103709
|
+
id: z.ZodString;
|
|
103710
|
+
name: z.ZodString;
|
|
103711
|
+
slug: z.ZodString;
|
|
103712
|
+
/** Internal organisation UUID — NOT the TSG that write requests take. */
|
|
103713
|
+
organisation_id: z.ZodString;
|
|
103714
|
+
is_default: z.ZodNumber;
|
|
103715
|
+
status: z.ZodString;
|
|
103716
|
+
owner_id: z.ZodString;
|
|
103717
|
+
updated_by: z.ZodString;
|
|
103718
|
+
created_at: z.ZodString;
|
|
103719
|
+
last_updated_at: z.ZodString;
|
|
103720
|
+
workspace_id: z.ZodString;
|
|
103721
|
+
object: z.ZodString;
|
|
103722
|
+
} & {
|
|
103723
|
+
config: z.ZodString;
|
|
103724
|
+
format: z.ZodString;
|
|
103725
|
+
type: z.ZodString;
|
|
103726
|
+
version_id: z.ZodString;
|
|
103727
|
+
} & {
|
|
103728
|
+
version_created_at: z.ZodString;
|
|
103729
|
+
version_owner_id: z.ZodString;
|
|
103730
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
103731
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
103732
|
+
type ListConfigVersionsResponse = z.infer<typeof ListConfigVersionsResponseSchema>;
|
|
103377
103733
|
/**
|
|
103378
103734
|
* `POST /configs` response — a 4-field creation receipt, **not** a {@link GatewayConfig} or
|
|
103379
103735
|
* {@link GatewayConfigDetail}. Verified live 2026-07-28 (create -> read -> delete cycle).
|
|
@@ -103604,7 +103960,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103604
103960
|
async: z.ZodBoolean;
|
|
103605
103961
|
sequential: z.ZodBoolean;
|
|
103606
103962
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
103607
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
103963
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103608
103964
|
feedback: z.ZodObject<{
|
|
103609
103965
|
value: z.ZodNumber;
|
|
103610
103966
|
weight: z.ZodNumber;
|
|
@@ -103646,8 +104002,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103646
104002
|
weight: z.ZodNumber;
|
|
103647
104003
|
metadata: z.ZodString;
|
|
103648
104004
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103649
|
-
}, z.ZodTypeAny, "passthrough"
|
|
103650
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104005
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104006
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103651
104007
|
feedback: z.ZodObject<{
|
|
103652
104008
|
value: z.ZodNumber;
|
|
103653
104009
|
weight: z.ZodNumber;
|
|
@@ -103689,13 +104045,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103689
104045
|
weight: z.ZodNumber;
|
|
103690
104046
|
metadata: z.ZodString;
|
|
103691
104047
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103692
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104048
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
103693
104049
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
103694
104050
|
deny: z.ZodBoolean;
|
|
103695
104051
|
async: z.ZodBoolean;
|
|
103696
104052
|
sequential: z.ZodBoolean;
|
|
103697
104053
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
103698
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104054
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103699
104055
|
feedback: z.ZodObject<{
|
|
103700
104056
|
value: z.ZodNumber;
|
|
103701
104057
|
weight: z.ZodNumber;
|
|
@@ -103737,8 +104093,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103737
104093
|
weight: z.ZodNumber;
|
|
103738
104094
|
metadata: z.ZodString;
|
|
103739
104095
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103740
|
-
}, z.ZodTypeAny, "passthrough"
|
|
103741
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104096
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104097
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103742
104098
|
feedback: z.ZodObject<{
|
|
103743
104099
|
value: z.ZodNumber;
|
|
103744
104100
|
weight: z.ZodNumber;
|
|
@@ -103780,13 +104136,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103780
104136
|
weight: z.ZodNumber;
|
|
103781
104137
|
metadata: z.ZodString;
|
|
103782
104138
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103783
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104139
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
103784
104140
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
103785
104141
|
deny: z.ZodBoolean;
|
|
103786
104142
|
async: z.ZodBoolean;
|
|
103787
104143
|
sequential: z.ZodBoolean;
|
|
103788
104144
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
103789
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104145
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103790
104146
|
feedback: z.ZodObject<{
|
|
103791
104147
|
value: z.ZodNumber;
|
|
103792
104148
|
weight: z.ZodNumber;
|
|
@@ -103828,8 +104184,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103828
104184
|
weight: z.ZodNumber;
|
|
103829
104185
|
metadata: z.ZodString;
|
|
103830
104186
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103831
|
-
}, z.ZodTypeAny, "passthrough"
|
|
103832
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104187
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104188
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103833
104189
|
feedback: z.ZodObject<{
|
|
103834
104190
|
value: z.ZodNumber;
|
|
103835
104191
|
weight: z.ZodNumber;
|
|
@@ -103871,7 +104227,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103871
104227
|
weight: z.ZodNumber;
|
|
103872
104228
|
metadata: z.ZodString;
|
|
103873
104229
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103874
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104230
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
103875
104231
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103876
104232
|
version_id: z.ZodString;
|
|
103877
104233
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -103908,7 +104264,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103908
104264
|
async: z.ZodBoolean;
|
|
103909
104265
|
sequential: z.ZodBoolean;
|
|
103910
104266
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
103911
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104267
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103912
104268
|
feedback: z.ZodObject<{
|
|
103913
104269
|
value: z.ZodNumber;
|
|
103914
104270
|
weight: z.ZodNumber;
|
|
@@ -103950,8 +104306,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103950
104306
|
weight: z.ZodNumber;
|
|
103951
104307
|
metadata: z.ZodString;
|
|
103952
104308
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103953
|
-
}, z.ZodTypeAny, "passthrough"
|
|
103954
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104309
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104310
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103955
104311
|
feedback: z.ZodObject<{
|
|
103956
104312
|
value: z.ZodNumber;
|
|
103957
104313
|
weight: z.ZodNumber;
|
|
@@ -103993,13 +104349,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103993
104349
|
weight: z.ZodNumber;
|
|
103994
104350
|
metadata: z.ZodString;
|
|
103995
104351
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103996
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104352
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
103997
104353
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
103998
104354
|
deny: z.ZodBoolean;
|
|
103999
104355
|
async: z.ZodBoolean;
|
|
104000
104356
|
sequential: z.ZodBoolean;
|
|
104001
104357
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104002
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104358
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104003
104359
|
feedback: z.ZodObject<{
|
|
104004
104360
|
value: z.ZodNumber;
|
|
104005
104361
|
weight: z.ZodNumber;
|
|
@@ -104041,8 +104397,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104041
104397
|
weight: z.ZodNumber;
|
|
104042
104398
|
metadata: z.ZodString;
|
|
104043
104399
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104044
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104045
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104400
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104401
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104046
104402
|
feedback: z.ZodObject<{
|
|
104047
104403
|
value: z.ZodNumber;
|
|
104048
104404
|
weight: z.ZodNumber;
|
|
@@ -104084,13 +104440,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104084
104440
|
weight: z.ZodNumber;
|
|
104085
104441
|
metadata: z.ZodString;
|
|
104086
104442
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104087
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104443
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104088
104444
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
104089
104445
|
deny: z.ZodBoolean;
|
|
104090
104446
|
async: z.ZodBoolean;
|
|
104091
104447
|
sequential: z.ZodBoolean;
|
|
104092
104448
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104093
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104449
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104094
104450
|
feedback: z.ZodObject<{
|
|
104095
104451
|
value: z.ZodNumber;
|
|
104096
104452
|
weight: z.ZodNumber;
|
|
@@ -104132,8 +104488,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104132
104488
|
weight: z.ZodNumber;
|
|
104133
104489
|
metadata: z.ZodString;
|
|
104134
104490
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104135
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104136
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104491
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104492
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104137
104493
|
feedback: z.ZodObject<{
|
|
104138
104494
|
value: z.ZodNumber;
|
|
104139
104495
|
weight: z.ZodNumber;
|
|
@@ -104175,7 +104531,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104175
104531
|
weight: z.ZodNumber;
|
|
104176
104532
|
metadata: z.ZodString;
|
|
104177
104533
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104178
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104534
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104179
104535
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104180
104536
|
version_id: z.ZodString;
|
|
104181
104537
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
@@ -104212,7 +104568,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104212
104568
|
async: z.ZodBoolean;
|
|
104213
104569
|
sequential: z.ZodBoolean;
|
|
104214
104570
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104215
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104571
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104216
104572
|
feedback: z.ZodObject<{
|
|
104217
104573
|
value: z.ZodNumber;
|
|
104218
104574
|
weight: z.ZodNumber;
|
|
@@ -104254,8 +104610,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104254
104610
|
weight: z.ZodNumber;
|
|
104255
104611
|
metadata: z.ZodString;
|
|
104256
104612
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104257
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104258
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104613
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104614
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104259
104615
|
feedback: z.ZodObject<{
|
|
104260
104616
|
value: z.ZodNumber;
|
|
104261
104617
|
weight: z.ZodNumber;
|
|
@@ -104297,13 +104653,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104297
104653
|
weight: z.ZodNumber;
|
|
104298
104654
|
metadata: z.ZodString;
|
|
104299
104655
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104300
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104656
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104301
104657
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
104302
104658
|
deny: z.ZodBoolean;
|
|
104303
104659
|
async: z.ZodBoolean;
|
|
104304
104660
|
sequential: z.ZodBoolean;
|
|
104305
104661
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104306
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104662
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104307
104663
|
feedback: z.ZodObject<{
|
|
104308
104664
|
value: z.ZodNumber;
|
|
104309
104665
|
weight: z.ZodNumber;
|
|
@@ -104345,8 +104701,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104345
104701
|
weight: z.ZodNumber;
|
|
104346
104702
|
metadata: z.ZodString;
|
|
104347
104703
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104348
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104349
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104704
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104705
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104350
104706
|
feedback: z.ZodObject<{
|
|
104351
104707
|
value: z.ZodNumber;
|
|
104352
104708
|
weight: z.ZodNumber;
|
|
@@ -104388,13 +104744,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104388
104744
|
weight: z.ZodNumber;
|
|
104389
104745
|
metadata: z.ZodString;
|
|
104390
104746
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104391
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104747
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104392
104748
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
104393
104749
|
deny: z.ZodBoolean;
|
|
104394
104750
|
async: z.ZodBoolean;
|
|
104395
104751
|
sequential: z.ZodBoolean;
|
|
104396
104752
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104397
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104753
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104398
104754
|
feedback: z.ZodObject<{
|
|
104399
104755
|
value: z.ZodNumber;
|
|
104400
104756
|
weight: z.ZodNumber;
|
|
@@ -104436,8 +104792,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104436
104792
|
weight: z.ZodNumber;
|
|
104437
104793
|
metadata: z.ZodString;
|
|
104438
104794
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104439
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104440
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104795
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104796
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104441
104797
|
feedback: z.ZodObject<{
|
|
104442
104798
|
value: z.ZodNumber;
|
|
104443
104799
|
weight: z.ZodNumber;
|
|
@@ -104479,7 +104835,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104479
104835
|
weight: z.ZodNumber;
|
|
104480
104836
|
metadata: z.ZodString;
|
|
104481
104837
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104482
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104838
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104483
104839
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104484
104840
|
version_id: z.ZodString;
|
|
104485
104841
|
}, z.ZodTypeAny, "passthrough">>;
|
|
@@ -104586,6 +104942,69 @@ declare const ListProvidersResponseSchema: z.ZodObject<{
|
|
|
104586
104942
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
104587
104943
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104588
104944
|
type ListProvidersResponse = z.infer<typeof ListProvidersResponseSchema>;
|
|
104945
|
+
/** Provider detail from `GET /providers/{id}`. Verified live 2026-08-29. */
|
|
104946
|
+
declare const GatewayProviderDetailSchema: z.ZodObject<{
|
|
104947
|
+
id: z.ZodString;
|
|
104948
|
+
ai_provider_name: z.ZodString;
|
|
104949
|
+
model_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
104950
|
+
/** Potentially secret-bearing. Never log or persist this field. */
|
|
104951
|
+
key: z.ZodString;
|
|
104952
|
+
masked_api_key: z.ZodString;
|
|
104953
|
+
slug: z.ZodString;
|
|
104954
|
+
name: z.ZodString;
|
|
104955
|
+
usage_limits: z.ZodNullable<z.ZodUnknown>;
|
|
104956
|
+
status: z.ZodString;
|
|
104957
|
+
note: z.ZodNullable<z.ZodString>;
|
|
104958
|
+
created_at: z.ZodString;
|
|
104959
|
+
expires_at: z.ZodNullable<z.ZodString>;
|
|
104960
|
+
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
104961
|
+
rate_limits: z.ZodArray<z.ZodUnknown, "many">;
|
|
104962
|
+
integration_id: z.ZodString;
|
|
104963
|
+
tags: z.ZodNullable<z.ZodUnknown>;
|
|
104964
|
+
secret_mappings: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
104965
|
+
object: z.ZodString;
|
|
104966
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
104967
|
+
id: z.ZodString;
|
|
104968
|
+
ai_provider_name: z.ZodString;
|
|
104969
|
+
model_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
104970
|
+
/** Potentially secret-bearing. Never log or persist this field. */
|
|
104971
|
+
key: z.ZodString;
|
|
104972
|
+
masked_api_key: z.ZodString;
|
|
104973
|
+
slug: z.ZodString;
|
|
104974
|
+
name: z.ZodString;
|
|
104975
|
+
usage_limits: z.ZodNullable<z.ZodUnknown>;
|
|
104976
|
+
status: z.ZodString;
|
|
104977
|
+
note: z.ZodNullable<z.ZodString>;
|
|
104978
|
+
created_at: z.ZodString;
|
|
104979
|
+
expires_at: z.ZodNullable<z.ZodString>;
|
|
104980
|
+
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
104981
|
+
rate_limits: z.ZodArray<z.ZodUnknown, "many">;
|
|
104982
|
+
integration_id: z.ZodString;
|
|
104983
|
+
tags: z.ZodNullable<z.ZodUnknown>;
|
|
104984
|
+
secret_mappings: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
104985
|
+
object: z.ZodString;
|
|
104986
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
104987
|
+
id: z.ZodString;
|
|
104988
|
+
ai_provider_name: z.ZodString;
|
|
104989
|
+
model_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
104990
|
+
/** Potentially secret-bearing. Never log or persist this field. */
|
|
104991
|
+
key: z.ZodString;
|
|
104992
|
+
masked_api_key: z.ZodString;
|
|
104993
|
+
slug: z.ZodString;
|
|
104994
|
+
name: z.ZodString;
|
|
104995
|
+
usage_limits: z.ZodNullable<z.ZodUnknown>;
|
|
104996
|
+
status: z.ZodString;
|
|
104997
|
+
note: z.ZodNullable<z.ZodString>;
|
|
104998
|
+
created_at: z.ZodString;
|
|
104999
|
+
expires_at: z.ZodNullable<z.ZodString>;
|
|
105000
|
+
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105001
|
+
rate_limits: z.ZodArray<z.ZodUnknown, "many">;
|
|
105002
|
+
integration_id: z.ZodString;
|
|
105003
|
+
tags: z.ZodNullable<z.ZodUnknown>;
|
|
105004
|
+
secret_mappings: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
105005
|
+
object: z.ZodString;
|
|
105006
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
105007
|
+
type GatewayProviderDetail = z.infer<typeof GatewayProviderDetailSchema>;
|
|
104589
105008
|
/**
|
|
104590
105009
|
* `POST /providers` response — a 3-field creation receipt, **not** a {@link GatewayProvider}.
|
|
104591
105010
|
* Verified live 2026-07-28. **No `version_id`** — unlike its {@link
|
|
@@ -104674,6 +105093,21 @@ declare const ListApiKeysResponseSchema: z.ZodObject<{
|
|
|
104674
105093
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
104675
105094
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104676
105095
|
type ListApiKeysResponse = z.infer<typeof ListApiKeysResponseSchema>;
|
|
105096
|
+
/** One-time response from an explicit API-key rotation. Never log `key`. */
|
|
105097
|
+
declare const GatewayApiKeyRotateResponseSchema: z.ZodObject<{
|
|
105098
|
+
id: z.ZodString;
|
|
105099
|
+
key: z.ZodString;
|
|
105100
|
+
key_transition_expires_at: z.ZodString;
|
|
105101
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
105102
|
+
id: z.ZodString;
|
|
105103
|
+
key: z.ZodString;
|
|
105104
|
+
key_transition_expires_at: z.ZodString;
|
|
105105
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
105106
|
+
id: z.ZodString;
|
|
105107
|
+
key: z.ZodString;
|
|
105108
|
+
key_transition_expires_at: z.ZodString;
|
|
105109
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
105110
|
+
type GatewayApiKeyRotateResponse = z.infer<typeof GatewayApiKeyRotateResponseSchema>;
|
|
104677
105111
|
/** An organisation-level provider integration. */
|
|
104678
105112
|
declare const GatewayIntegrationSchema: z.ZodObject<{
|
|
104679
105113
|
id: z.ZodString;
|
|
@@ -104973,7 +105407,7 @@ declare const GatewayIntegrationWorkspaceSchema: z.ZodObject<{
|
|
|
104973
105407
|
enabled: z.ZodBoolean;
|
|
104974
105408
|
status: z.ZodString;
|
|
104975
105409
|
created_at: z.ZodString;
|
|
104976
|
-
last_updated_at: z.ZodString
|
|
105410
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
104977
105411
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
104978
105412
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
104979
105413
|
id: z.ZodString;
|
|
@@ -105015,7 +105449,7 @@ declare const GatewayIntegrationWorkspaceSchema: z.ZodObject<{
|
|
|
105015
105449
|
enabled: z.ZodBoolean;
|
|
105016
105450
|
status: z.ZodString;
|
|
105017
105451
|
created_at: z.ZodString;
|
|
105018
|
-
last_updated_at: z.ZodString
|
|
105452
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105019
105453
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105020
105454
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
105021
105455
|
id: z.ZodString;
|
|
@@ -105057,7 +105491,7 @@ declare const GatewayIntegrationWorkspaceSchema: z.ZodObject<{
|
|
|
105057
105491
|
enabled: z.ZodBoolean;
|
|
105058
105492
|
status: z.ZodString;
|
|
105059
105493
|
created_at: z.ZodString;
|
|
105060
|
-
last_updated_at: z.ZodString
|
|
105494
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105061
105495
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105062
105496
|
}, z.ZodTypeAny, "passthrough">>;
|
|
105063
105497
|
type GatewayIntegrationWorkspace = z.infer<typeof GatewayIntegrationWorkspaceSchema>;
|
|
@@ -105221,7 +105655,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105221
105655
|
enabled: z.ZodBoolean;
|
|
105222
105656
|
status: z.ZodString;
|
|
105223
105657
|
created_at: z.ZodString;
|
|
105224
|
-
last_updated_at: z.ZodString
|
|
105658
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105225
105659
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105226
105660
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
105227
105661
|
id: z.ZodString;
|
|
@@ -105263,7 +105697,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105263
105697
|
enabled: z.ZodBoolean;
|
|
105264
105698
|
status: z.ZodString;
|
|
105265
105699
|
created_at: z.ZodString;
|
|
105266
|
-
last_updated_at: z.ZodString
|
|
105700
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105267
105701
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105268
105702
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
105269
105703
|
id: z.ZodString;
|
|
@@ -105305,7 +105739,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105305
105739
|
enabled: z.ZodBoolean;
|
|
105306
105740
|
status: z.ZodString;
|
|
105307
105741
|
created_at: z.ZodString;
|
|
105308
|
-
last_updated_at: z.ZodString
|
|
105742
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105309
105743
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105310
105744
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
105311
105745
|
global_workspace_access: z.ZodObject<{
|
|
@@ -105462,7 +105896,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105462
105896
|
enabled: z.ZodBoolean;
|
|
105463
105897
|
status: z.ZodString;
|
|
105464
105898
|
created_at: z.ZodString;
|
|
105465
|
-
last_updated_at: z.ZodString
|
|
105899
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105466
105900
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105467
105901
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
105468
105902
|
id: z.ZodString;
|
|
@@ -105504,7 +105938,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105504
105938
|
enabled: z.ZodBoolean;
|
|
105505
105939
|
status: z.ZodString;
|
|
105506
105940
|
created_at: z.ZodString;
|
|
105507
|
-
last_updated_at: z.ZodString
|
|
105941
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105508
105942
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105509
105943
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
105510
105944
|
id: z.ZodString;
|
|
@@ -105546,7 +105980,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105546
105980
|
enabled: z.ZodBoolean;
|
|
105547
105981
|
status: z.ZodString;
|
|
105548
105982
|
created_at: z.ZodString;
|
|
105549
|
-
last_updated_at: z.ZodString
|
|
105983
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105550
105984
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105551
105985
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
105552
105986
|
global_workspace_access: z.ZodObject<{
|
|
@@ -105703,7 +106137,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105703
106137
|
enabled: z.ZodBoolean;
|
|
105704
106138
|
status: z.ZodString;
|
|
105705
106139
|
created_at: z.ZodString;
|
|
105706
|
-
last_updated_at: z.ZodString
|
|
106140
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105707
106141
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105708
106142
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
105709
106143
|
id: z.ZodString;
|
|
@@ -105745,7 +106179,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105745
106179
|
enabled: z.ZodBoolean;
|
|
105746
106180
|
status: z.ZodString;
|
|
105747
106181
|
created_at: z.ZodString;
|
|
105748
|
-
last_updated_at: z.ZodString
|
|
106182
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105749
106183
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105750
106184
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
105751
106185
|
id: z.ZodString;
|
|
@@ -105787,7 +106221,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105787
106221
|
enabled: z.ZodBoolean;
|
|
105788
106222
|
status: z.ZodString;
|
|
105789
106223
|
created_at: z.ZodString;
|
|
105790
|
-
last_updated_at: z.ZodString
|
|
106224
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105791
106225
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105792
106226
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
105793
106227
|
global_workspace_access: z.ZodObject<{
|
|
@@ -106141,6 +106575,698 @@ declare const ListMcpIntegrationsResponseSchema: z.ZodObject<{
|
|
|
106141
106575
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
106142
106576
|
}, z.ZodTypeAny, "passthrough">>;
|
|
106143
106577
|
type ListMcpIntegrationsResponse = z.infer<typeof ListMcpIntegrationsResponseSchema>;
|
|
106578
|
+
/** MCP integration detail. Its `configurations` field is an object, unlike list rows. */
|
|
106579
|
+
declare const McpIntegrationDetailSchema: z.ZodObject<{
|
|
106580
|
+
id: z.ZodString;
|
|
106581
|
+
name: z.ZodString;
|
|
106582
|
+
description: z.ZodNullable<z.ZodString>;
|
|
106583
|
+
owner_id: z.ZodString;
|
|
106584
|
+
status: z.ZodString;
|
|
106585
|
+
created_at: z.ZodString;
|
|
106586
|
+
last_updated_at: z.ZodString;
|
|
106587
|
+
configurations: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
106588
|
+
global_workspace_access: z.ZodNullable<z.ZodObject<{
|
|
106589
|
+
enabled: z.ZodBoolean;
|
|
106590
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106591
|
+
enabled: z.ZodBoolean;
|
|
106592
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106593
|
+
enabled: z.ZodBoolean;
|
|
106594
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106595
|
+
workspace_id: z.ZodNullable<z.ZodString>;
|
|
106596
|
+
slug: z.ZodString;
|
|
106597
|
+
url: z.ZodString;
|
|
106598
|
+
auth_type: z.ZodString;
|
|
106599
|
+
transport: z.ZodString;
|
|
106600
|
+
type: z.ZodString;
|
|
106601
|
+
secret_mappings: z.ZodNullable<z.ZodArray<z.ZodUnknown, "many">>;
|
|
106602
|
+
object: z.ZodString;
|
|
106603
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106604
|
+
id: z.ZodString;
|
|
106605
|
+
name: z.ZodString;
|
|
106606
|
+
description: z.ZodNullable<z.ZodString>;
|
|
106607
|
+
owner_id: z.ZodString;
|
|
106608
|
+
status: z.ZodString;
|
|
106609
|
+
created_at: z.ZodString;
|
|
106610
|
+
last_updated_at: z.ZodString;
|
|
106611
|
+
configurations: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
106612
|
+
global_workspace_access: z.ZodNullable<z.ZodObject<{
|
|
106613
|
+
enabled: z.ZodBoolean;
|
|
106614
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106615
|
+
enabled: z.ZodBoolean;
|
|
106616
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106617
|
+
enabled: z.ZodBoolean;
|
|
106618
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106619
|
+
workspace_id: z.ZodNullable<z.ZodString>;
|
|
106620
|
+
slug: z.ZodString;
|
|
106621
|
+
url: z.ZodString;
|
|
106622
|
+
auth_type: z.ZodString;
|
|
106623
|
+
transport: z.ZodString;
|
|
106624
|
+
type: z.ZodString;
|
|
106625
|
+
secret_mappings: z.ZodNullable<z.ZodArray<z.ZodUnknown, "many">>;
|
|
106626
|
+
object: z.ZodString;
|
|
106627
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106628
|
+
id: z.ZodString;
|
|
106629
|
+
name: z.ZodString;
|
|
106630
|
+
description: z.ZodNullable<z.ZodString>;
|
|
106631
|
+
owner_id: z.ZodString;
|
|
106632
|
+
status: z.ZodString;
|
|
106633
|
+
created_at: z.ZodString;
|
|
106634
|
+
last_updated_at: z.ZodString;
|
|
106635
|
+
configurations: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
106636
|
+
global_workspace_access: z.ZodNullable<z.ZodObject<{
|
|
106637
|
+
enabled: z.ZodBoolean;
|
|
106638
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106639
|
+
enabled: z.ZodBoolean;
|
|
106640
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106641
|
+
enabled: z.ZodBoolean;
|
|
106642
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106643
|
+
workspace_id: z.ZodNullable<z.ZodString>;
|
|
106644
|
+
slug: z.ZodString;
|
|
106645
|
+
url: z.ZodString;
|
|
106646
|
+
auth_type: z.ZodString;
|
|
106647
|
+
transport: z.ZodString;
|
|
106648
|
+
type: z.ZodString;
|
|
106649
|
+
secret_mappings: z.ZodNullable<z.ZodArray<z.ZodUnknown, "many">>;
|
|
106650
|
+
object: z.ZodString;
|
|
106651
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
106652
|
+
type McpIntegrationDetail = z.infer<typeof McpIntegrationDetailSchema>;
|
|
106653
|
+
/** One tool, prompt, resource, or resource-template exposed by an MCP integration. */
|
|
106654
|
+
declare const McpIntegrationCapabilitySchema: z.ZodObject<{
|
|
106655
|
+
name: z.ZodString;
|
|
106656
|
+
type: z.ZodString;
|
|
106657
|
+
title: z.ZodNullable<z.ZodString>;
|
|
106658
|
+
description: z.ZodNullable<z.ZodString>;
|
|
106659
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
106660
|
+
enabled: z.ZodBoolean;
|
|
106661
|
+
created_at: z.ZodString;
|
|
106662
|
+
last_updated_at: z.ZodString;
|
|
106663
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106664
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106665
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
106666
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106667
|
+
object: z.ZodString;
|
|
106668
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106669
|
+
name: z.ZodString;
|
|
106670
|
+
type: z.ZodString;
|
|
106671
|
+
title: z.ZodNullable<z.ZodString>;
|
|
106672
|
+
description: z.ZodNullable<z.ZodString>;
|
|
106673
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
106674
|
+
enabled: z.ZodBoolean;
|
|
106675
|
+
created_at: z.ZodString;
|
|
106676
|
+
last_updated_at: z.ZodString;
|
|
106677
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106678
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106679
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
106680
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106681
|
+
object: z.ZodString;
|
|
106682
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106683
|
+
name: z.ZodString;
|
|
106684
|
+
type: z.ZodString;
|
|
106685
|
+
title: z.ZodNullable<z.ZodString>;
|
|
106686
|
+
description: z.ZodNullable<z.ZodString>;
|
|
106687
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
106688
|
+
enabled: z.ZodBoolean;
|
|
106689
|
+
created_at: z.ZodString;
|
|
106690
|
+
last_updated_at: z.ZodString;
|
|
106691
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106692
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106693
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
106694
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106695
|
+
object: z.ZodString;
|
|
106696
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
106697
|
+
type McpIntegrationCapability = z.infer<typeof McpIntegrationCapabilitySchema>;
|
|
106698
|
+
/** Capabilities exposed by one MCP integration. Verified live 2026-08-29. */
|
|
106699
|
+
declare const McpIntegrationCapabilitiesResponseSchema: z.ZodObject<{
|
|
106700
|
+
object: z.ZodString;
|
|
106701
|
+
counts: z.ZodObject<{
|
|
106702
|
+
tools: z.ZodOptional<z.ZodObject<{
|
|
106703
|
+
total: z.ZodNumber;
|
|
106704
|
+
enabled: z.ZodNumber;
|
|
106705
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106706
|
+
total: z.ZodNumber;
|
|
106707
|
+
enabled: z.ZodNumber;
|
|
106708
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106709
|
+
total: z.ZodNumber;
|
|
106710
|
+
enabled: z.ZodNumber;
|
|
106711
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106712
|
+
prompts: z.ZodOptional<z.ZodObject<{
|
|
106713
|
+
total: z.ZodNumber;
|
|
106714
|
+
enabled: z.ZodNumber;
|
|
106715
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106716
|
+
total: z.ZodNumber;
|
|
106717
|
+
enabled: z.ZodNumber;
|
|
106718
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106719
|
+
total: z.ZodNumber;
|
|
106720
|
+
enabled: z.ZodNumber;
|
|
106721
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106722
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
106723
|
+
total: z.ZodNumber;
|
|
106724
|
+
enabled: z.ZodNumber;
|
|
106725
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106726
|
+
total: z.ZodNumber;
|
|
106727
|
+
enabled: z.ZodNumber;
|
|
106728
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106729
|
+
total: z.ZodNumber;
|
|
106730
|
+
enabled: z.ZodNumber;
|
|
106731
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106732
|
+
resource_templates: z.ZodOptional<z.ZodObject<{
|
|
106733
|
+
total: z.ZodNumber;
|
|
106734
|
+
enabled: z.ZodNumber;
|
|
106735
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106736
|
+
total: z.ZodNumber;
|
|
106737
|
+
enabled: z.ZodNumber;
|
|
106738
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106739
|
+
total: z.ZodNumber;
|
|
106740
|
+
enabled: z.ZodNumber;
|
|
106741
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106742
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106743
|
+
tools: z.ZodOptional<z.ZodObject<{
|
|
106744
|
+
total: z.ZodNumber;
|
|
106745
|
+
enabled: z.ZodNumber;
|
|
106746
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106747
|
+
total: z.ZodNumber;
|
|
106748
|
+
enabled: z.ZodNumber;
|
|
106749
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106750
|
+
total: z.ZodNumber;
|
|
106751
|
+
enabled: z.ZodNumber;
|
|
106752
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106753
|
+
prompts: z.ZodOptional<z.ZodObject<{
|
|
106754
|
+
total: z.ZodNumber;
|
|
106755
|
+
enabled: z.ZodNumber;
|
|
106756
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106757
|
+
total: z.ZodNumber;
|
|
106758
|
+
enabled: z.ZodNumber;
|
|
106759
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106760
|
+
total: z.ZodNumber;
|
|
106761
|
+
enabled: z.ZodNumber;
|
|
106762
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106763
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
106764
|
+
total: z.ZodNumber;
|
|
106765
|
+
enabled: z.ZodNumber;
|
|
106766
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106767
|
+
total: z.ZodNumber;
|
|
106768
|
+
enabled: z.ZodNumber;
|
|
106769
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106770
|
+
total: z.ZodNumber;
|
|
106771
|
+
enabled: z.ZodNumber;
|
|
106772
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106773
|
+
resource_templates: z.ZodOptional<z.ZodObject<{
|
|
106774
|
+
total: z.ZodNumber;
|
|
106775
|
+
enabled: z.ZodNumber;
|
|
106776
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106777
|
+
total: z.ZodNumber;
|
|
106778
|
+
enabled: z.ZodNumber;
|
|
106779
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106780
|
+
total: z.ZodNumber;
|
|
106781
|
+
enabled: z.ZodNumber;
|
|
106782
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106783
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106784
|
+
tools: z.ZodOptional<z.ZodObject<{
|
|
106785
|
+
total: z.ZodNumber;
|
|
106786
|
+
enabled: z.ZodNumber;
|
|
106787
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106788
|
+
total: z.ZodNumber;
|
|
106789
|
+
enabled: z.ZodNumber;
|
|
106790
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106791
|
+
total: z.ZodNumber;
|
|
106792
|
+
enabled: z.ZodNumber;
|
|
106793
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106794
|
+
prompts: z.ZodOptional<z.ZodObject<{
|
|
106795
|
+
total: z.ZodNumber;
|
|
106796
|
+
enabled: z.ZodNumber;
|
|
106797
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106798
|
+
total: z.ZodNumber;
|
|
106799
|
+
enabled: z.ZodNumber;
|
|
106800
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106801
|
+
total: z.ZodNumber;
|
|
106802
|
+
enabled: z.ZodNumber;
|
|
106803
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106804
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
106805
|
+
total: z.ZodNumber;
|
|
106806
|
+
enabled: z.ZodNumber;
|
|
106807
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106808
|
+
total: z.ZodNumber;
|
|
106809
|
+
enabled: z.ZodNumber;
|
|
106810
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106811
|
+
total: z.ZodNumber;
|
|
106812
|
+
enabled: z.ZodNumber;
|
|
106813
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106814
|
+
resource_templates: z.ZodOptional<z.ZodObject<{
|
|
106815
|
+
total: z.ZodNumber;
|
|
106816
|
+
enabled: z.ZodNumber;
|
|
106817
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106818
|
+
total: z.ZodNumber;
|
|
106819
|
+
enabled: z.ZodNumber;
|
|
106820
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106821
|
+
total: z.ZodNumber;
|
|
106822
|
+
enabled: z.ZodNumber;
|
|
106823
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106824
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
106825
|
+
total: z.ZodNumber;
|
|
106826
|
+
has_more: z.ZodBoolean;
|
|
106827
|
+
data: z.ZodArray<z.ZodObject<{
|
|
106828
|
+
name: z.ZodString;
|
|
106829
|
+
type: z.ZodString;
|
|
106830
|
+
title: z.ZodNullable<z.ZodString>;
|
|
106831
|
+
description: z.ZodNullable<z.ZodString>;
|
|
106832
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
106833
|
+
enabled: z.ZodBoolean;
|
|
106834
|
+
created_at: z.ZodString;
|
|
106835
|
+
last_updated_at: z.ZodString;
|
|
106836
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106837
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106838
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
106839
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106840
|
+
object: z.ZodString;
|
|
106841
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106842
|
+
name: z.ZodString;
|
|
106843
|
+
type: z.ZodString;
|
|
106844
|
+
title: z.ZodNullable<z.ZodString>;
|
|
106845
|
+
description: z.ZodNullable<z.ZodString>;
|
|
106846
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
106847
|
+
enabled: z.ZodBoolean;
|
|
106848
|
+
created_at: z.ZodString;
|
|
106849
|
+
last_updated_at: z.ZodString;
|
|
106850
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106851
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106852
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
106853
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106854
|
+
object: z.ZodString;
|
|
106855
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106856
|
+
name: z.ZodString;
|
|
106857
|
+
type: z.ZodString;
|
|
106858
|
+
title: z.ZodNullable<z.ZodString>;
|
|
106859
|
+
description: z.ZodNullable<z.ZodString>;
|
|
106860
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
106861
|
+
enabled: z.ZodBoolean;
|
|
106862
|
+
created_at: z.ZodString;
|
|
106863
|
+
last_updated_at: z.ZodString;
|
|
106864
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106865
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106866
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
106867
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106868
|
+
object: z.ZodString;
|
|
106869
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
106870
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106871
|
+
object: z.ZodString;
|
|
106872
|
+
counts: z.ZodObject<{
|
|
106873
|
+
tools: z.ZodOptional<z.ZodObject<{
|
|
106874
|
+
total: z.ZodNumber;
|
|
106875
|
+
enabled: z.ZodNumber;
|
|
106876
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106877
|
+
total: z.ZodNumber;
|
|
106878
|
+
enabled: z.ZodNumber;
|
|
106879
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106880
|
+
total: z.ZodNumber;
|
|
106881
|
+
enabled: z.ZodNumber;
|
|
106882
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106883
|
+
prompts: z.ZodOptional<z.ZodObject<{
|
|
106884
|
+
total: z.ZodNumber;
|
|
106885
|
+
enabled: z.ZodNumber;
|
|
106886
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106887
|
+
total: z.ZodNumber;
|
|
106888
|
+
enabled: z.ZodNumber;
|
|
106889
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106890
|
+
total: z.ZodNumber;
|
|
106891
|
+
enabled: z.ZodNumber;
|
|
106892
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106893
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
106894
|
+
total: z.ZodNumber;
|
|
106895
|
+
enabled: z.ZodNumber;
|
|
106896
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106897
|
+
total: z.ZodNumber;
|
|
106898
|
+
enabled: z.ZodNumber;
|
|
106899
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106900
|
+
total: z.ZodNumber;
|
|
106901
|
+
enabled: z.ZodNumber;
|
|
106902
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106903
|
+
resource_templates: z.ZodOptional<z.ZodObject<{
|
|
106904
|
+
total: z.ZodNumber;
|
|
106905
|
+
enabled: z.ZodNumber;
|
|
106906
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106907
|
+
total: z.ZodNumber;
|
|
106908
|
+
enabled: z.ZodNumber;
|
|
106909
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106910
|
+
total: z.ZodNumber;
|
|
106911
|
+
enabled: z.ZodNumber;
|
|
106912
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106913
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106914
|
+
tools: z.ZodOptional<z.ZodObject<{
|
|
106915
|
+
total: z.ZodNumber;
|
|
106916
|
+
enabled: z.ZodNumber;
|
|
106917
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106918
|
+
total: z.ZodNumber;
|
|
106919
|
+
enabled: z.ZodNumber;
|
|
106920
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106921
|
+
total: z.ZodNumber;
|
|
106922
|
+
enabled: z.ZodNumber;
|
|
106923
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106924
|
+
prompts: z.ZodOptional<z.ZodObject<{
|
|
106925
|
+
total: z.ZodNumber;
|
|
106926
|
+
enabled: z.ZodNumber;
|
|
106927
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106928
|
+
total: z.ZodNumber;
|
|
106929
|
+
enabled: z.ZodNumber;
|
|
106930
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106931
|
+
total: z.ZodNumber;
|
|
106932
|
+
enabled: z.ZodNumber;
|
|
106933
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106934
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
106935
|
+
total: z.ZodNumber;
|
|
106936
|
+
enabled: z.ZodNumber;
|
|
106937
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106938
|
+
total: z.ZodNumber;
|
|
106939
|
+
enabled: z.ZodNumber;
|
|
106940
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106941
|
+
total: z.ZodNumber;
|
|
106942
|
+
enabled: z.ZodNumber;
|
|
106943
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106944
|
+
resource_templates: z.ZodOptional<z.ZodObject<{
|
|
106945
|
+
total: z.ZodNumber;
|
|
106946
|
+
enabled: z.ZodNumber;
|
|
106947
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106948
|
+
total: z.ZodNumber;
|
|
106949
|
+
enabled: z.ZodNumber;
|
|
106950
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106951
|
+
total: z.ZodNumber;
|
|
106952
|
+
enabled: z.ZodNumber;
|
|
106953
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106954
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106955
|
+
tools: z.ZodOptional<z.ZodObject<{
|
|
106956
|
+
total: z.ZodNumber;
|
|
106957
|
+
enabled: z.ZodNumber;
|
|
106958
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106959
|
+
total: z.ZodNumber;
|
|
106960
|
+
enabled: z.ZodNumber;
|
|
106961
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106962
|
+
total: z.ZodNumber;
|
|
106963
|
+
enabled: z.ZodNumber;
|
|
106964
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106965
|
+
prompts: z.ZodOptional<z.ZodObject<{
|
|
106966
|
+
total: z.ZodNumber;
|
|
106967
|
+
enabled: z.ZodNumber;
|
|
106968
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106969
|
+
total: z.ZodNumber;
|
|
106970
|
+
enabled: z.ZodNumber;
|
|
106971
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106972
|
+
total: z.ZodNumber;
|
|
106973
|
+
enabled: z.ZodNumber;
|
|
106974
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106975
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
106976
|
+
total: z.ZodNumber;
|
|
106977
|
+
enabled: z.ZodNumber;
|
|
106978
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106979
|
+
total: z.ZodNumber;
|
|
106980
|
+
enabled: z.ZodNumber;
|
|
106981
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106982
|
+
total: z.ZodNumber;
|
|
106983
|
+
enabled: z.ZodNumber;
|
|
106984
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106985
|
+
resource_templates: z.ZodOptional<z.ZodObject<{
|
|
106986
|
+
total: z.ZodNumber;
|
|
106987
|
+
enabled: z.ZodNumber;
|
|
106988
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106989
|
+
total: z.ZodNumber;
|
|
106990
|
+
enabled: z.ZodNumber;
|
|
106991
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106992
|
+
total: z.ZodNumber;
|
|
106993
|
+
enabled: z.ZodNumber;
|
|
106994
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
106995
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
106996
|
+
total: z.ZodNumber;
|
|
106997
|
+
has_more: z.ZodBoolean;
|
|
106998
|
+
data: z.ZodArray<z.ZodObject<{
|
|
106999
|
+
name: z.ZodString;
|
|
107000
|
+
type: z.ZodString;
|
|
107001
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107002
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107003
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107004
|
+
enabled: z.ZodBoolean;
|
|
107005
|
+
created_at: z.ZodString;
|
|
107006
|
+
last_updated_at: z.ZodString;
|
|
107007
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107008
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107009
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
107010
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107011
|
+
object: z.ZodString;
|
|
107012
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107013
|
+
name: z.ZodString;
|
|
107014
|
+
type: z.ZodString;
|
|
107015
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107016
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107017
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107018
|
+
enabled: z.ZodBoolean;
|
|
107019
|
+
created_at: z.ZodString;
|
|
107020
|
+
last_updated_at: z.ZodString;
|
|
107021
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107022
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107023
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
107024
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107025
|
+
object: z.ZodString;
|
|
107026
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107027
|
+
name: z.ZodString;
|
|
107028
|
+
type: z.ZodString;
|
|
107029
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107030
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107031
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107032
|
+
enabled: z.ZodBoolean;
|
|
107033
|
+
created_at: z.ZodString;
|
|
107034
|
+
last_updated_at: z.ZodString;
|
|
107035
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107036
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107037
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
107038
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107039
|
+
object: z.ZodString;
|
|
107040
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
107041
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107042
|
+
object: z.ZodString;
|
|
107043
|
+
counts: z.ZodObject<{
|
|
107044
|
+
tools: z.ZodOptional<z.ZodObject<{
|
|
107045
|
+
total: z.ZodNumber;
|
|
107046
|
+
enabled: z.ZodNumber;
|
|
107047
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107048
|
+
total: z.ZodNumber;
|
|
107049
|
+
enabled: z.ZodNumber;
|
|
107050
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107051
|
+
total: z.ZodNumber;
|
|
107052
|
+
enabled: z.ZodNumber;
|
|
107053
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107054
|
+
prompts: z.ZodOptional<z.ZodObject<{
|
|
107055
|
+
total: z.ZodNumber;
|
|
107056
|
+
enabled: z.ZodNumber;
|
|
107057
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107058
|
+
total: z.ZodNumber;
|
|
107059
|
+
enabled: z.ZodNumber;
|
|
107060
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107061
|
+
total: z.ZodNumber;
|
|
107062
|
+
enabled: z.ZodNumber;
|
|
107063
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107064
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
107065
|
+
total: z.ZodNumber;
|
|
107066
|
+
enabled: z.ZodNumber;
|
|
107067
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107068
|
+
total: z.ZodNumber;
|
|
107069
|
+
enabled: z.ZodNumber;
|
|
107070
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107071
|
+
total: z.ZodNumber;
|
|
107072
|
+
enabled: z.ZodNumber;
|
|
107073
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107074
|
+
resource_templates: z.ZodOptional<z.ZodObject<{
|
|
107075
|
+
total: z.ZodNumber;
|
|
107076
|
+
enabled: z.ZodNumber;
|
|
107077
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107078
|
+
total: z.ZodNumber;
|
|
107079
|
+
enabled: z.ZodNumber;
|
|
107080
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107081
|
+
total: z.ZodNumber;
|
|
107082
|
+
enabled: z.ZodNumber;
|
|
107083
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107084
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107085
|
+
tools: z.ZodOptional<z.ZodObject<{
|
|
107086
|
+
total: z.ZodNumber;
|
|
107087
|
+
enabled: z.ZodNumber;
|
|
107088
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107089
|
+
total: z.ZodNumber;
|
|
107090
|
+
enabled: z.ZodNumber;
|
|
107091
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107092
|
+
total: z.ZodNumber;
|
|
107093
|
+
enabled: z.ZodNumber;
|
|
107094
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107095
|
+
prompts: z.ZodOptional<z.ZodObject<{
|
|
107096
|
+
total: z.ZodNumber;
|
|
107097
|
+
enabled: z.ZodNumber;
|
|
107098
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107099
|
+
total: z.ZodNumber;
|
|
107100
|
+
enabled: z.ZodNumber;
|
|
107101
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107102
|
+
total: z.ZodNumber;
|
|
107103
|
+
enabled: z.ZodNumber;
|
|
107104
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107105
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
107106
|
+
total: z.ZodNumber;
|
|
107107
|
+
enabled: z.ZodNumber;
|
|
107108
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107109
|
+
total: z.ZodNumber;
|
|
107110
|
+
enabled: z.ZodNumber;
|
|
107111
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107112
|
+
total: z.ZodNumber;
|
|
107113
|
+
enabled: z.ZodNumber;
|
|
107114
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107115
|
+
resource_templates: z.ZodOptional<z.ZodObject<{
|
|
107116
|
+
total: z.ZodNumber;
|
|
107117
|
+
enabled: z.ZodNumber;
|
|
107118
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107119
|
+
total: z.ZodNumber;
|
|
107120
|
+
enabled: z.ZodNumber;
|
|
107121
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107122
|
+
total: z.ZodNumber;
|
|
107123
|
+
enabled: z.ZodNumber;
|
|
107124
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107125
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107126
|
+
tools: z.ZodOptional<z.ZodObject<{
|
|
107127
|
+
total: z.ZodNumber;
|
|
107128
|
+
enabled: z.ZodNumber;
|
|
107129
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107130
|
+
total: z.ZodNumber;
|
|
107131
|
+
enabled: z.ZodNumber;
|
|
107132
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107133
|
+
total: z.ZodNumber;
|
|
107134
|
+
enabled: z.ZodNumber;
|
|
107135
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107136
|
+
prompts: z.ZodOptional<z.ZodObject<{
|
|
107137
|
+
total: z.ZodNumber;
|
|
107138
|
+
enabled: z.ZodNumber;
|
|
107139
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107140
|
+
total: z.ZodNumber;
|
|
107141
|
+
enabled: z.ZodNumber;
|
|
107142
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107143
|
+
total: z.ZodNumber;
|
|
107144
|
+
enabled: z.ZodNumber;
|
|
107145
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107146
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
107147
|
+
total: z.ZodNumber;
|
|
107148
|
+
enabled: z.ZodNumber;
|
|
107149
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107150
|
+
total: z.ZodNumber;
|
|
107151
|
+
enabled: z.ZodNumber;
|
|
107152
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107153
|
+
total: z.ZodNumber;
|
|
107154
|
+
enabled: z.ZodNumber;
|
|
107155
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107156
|
+
resource_templates: z.ZodOptional<z.ZodObject<{
|
|
107157
|
+
total: z.ZodNumber;
|
|
107158
|
+
enabled: z.ZodNumber;
|
|
107159
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107160
|
+
total: z.ZodNumber;
|
|
107161
|
+
enabled: z.ZodNumber;
|
|
107162
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107163
|
+
total: z.ZodNumber;
|
|
107164
|
+
enabled: z.ZodNumber;
|
|
107165
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
107166
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107167
|
+
total: z.ZodNumber;
|
|
107168
|
+
has_more: z.ZodBoolean;
|
|
107169
|
+
data: z.ZodArray<z.ZodObject<{
|
|
107170
|
+
name: z.ZodString;
|
|
107171
|
+
type: z.ZodString;
|
|
107172
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107173
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107174
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107175
|
+
enabled: z.ZodBoolean;
|
|
107176
|
+
created_at: z.ZodString;
|
|
107177
|
+
last_updated_at: z.ZodString;
|
|
107178
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107179
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107180
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
107181
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107182
|
+
object: z.ZodString;
|
|
107183
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107184
|
+
name: z.ZodString;
|
|
107185
|
+
type: z.ZodString;
|
|
107186
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107187
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107188
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107189
|
+
enabled: z.ZodBoolean;
|
|
107190
|
+
created_at: z.ZodString;
|
|
107191
|
+
last_updated_at: z.ZodString;
|
|
107192
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107193
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107194
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
107195
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107196
|
+
object: z.ZodString;
|
|
107197
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107198
|
+
name: z.ZodString;
|
|
107199
|
+
type: z.ZodString;
|
|
107200
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107201
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107202
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107203
|
+
enabled: z.ZodBoolean;
|
|
107204
|
+
created_at: z.ZodString;
|
|
107205
|
+
last_updated_at: z.ZodString;
|
|
107206
|
+
input_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107207
|
+
output_schema: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107208
|
+
execution: z.ZodNullable<z.ZodUnknown>;
|
|
107209
|
+
annotations: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107210
|
+
object: z.ZodString;
|
|
107211
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
107212
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107213
|
+
type McpIntegrationCapabilitiesResponse = z.infer<typeof McpIntegrationCapabilitiesResponseSchema>;
|
|
107214
|
+
declare const McpIntegrationCapabilitiesUpdateResponseSchema: z.ZodObject<{
|
|
107215
|
+
success: z.ZodBoolean;
|
|
107216
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107217
|
+
success: z.ZodBoolean;
|
|
107218
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107219
|
+
success: z.ZodBoolean;
|
|
107220
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107221
|
+
type McpIntegrationCapabilitiesUpdateResponse = z.infer<typeof McpIntegrationCapabilitiesUpdateResponseSchema>;
|
|
107222
|
+
/** Empty response from an MCP workspace-binding replacement. Verified live 2026-08-30. */
|
|
107223
|
+
declare const McpIntegrationWorkspacesUpdateResponseSchema: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
107224
|
+
type McpIntegrationWorkspacesUpdateResponse = z.infer<typeof McpIntegrationWorkspacesUpdateResponseSchema>;
|
|
107225
|
+
/** Metadata discovered from an MCP server. Verified live 2026-08-29. */
|
|
107226
|
+
declare const McpIntegrationMetadataSchema: z.ZodObject<{
|
|
107227
|
+
server_name: z.ZodString;
|
|
107228
|
+
server_version: z.ZodString;
|
|
107229
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107230
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107231
|
+
website_url: z.ZodNullable<z.ZodString>;
|
|
107232
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107233
|
+
protocol_version: z.ZodNullable<z.ZodString>;
|
|
107234
|
+
capability_flags: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
107235
|
+
instructions: z.ZodNullable<z.ZodString>;
|
|
107236
|
+
sync_status: z.ZodString;
|
|
107237
|
+
last_synced_at: z.ZodNullable<z.ZodString>;
|
|
107238
|
+
sync_error: z.ZodNullable<z.ZodString>;
|
|
107239
|
+
object: z.ZodString;
|
|
107240
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107241
|
+
server_name: z.ZodString;
|
|
107242
|
+
server_version: z.ZodString;
|
|
107243
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107244
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107245
|
+
website_url: z.ZodNullable<z.ZodString>;
|
|
107246
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107247
|
+
protocol_version: z.ZodNullable<z.ZodString>;
|
|
107248
|
+
capability_flags: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
107249
|
+
instructions: z.ZodNullable<z.ZodString>;
|
|
107250
|
+
sync_status: z.ZodString;
|
|
107251
|
+
last_synced_at: z.ZodNullable<z.ZodString>;
|
|
107252
|
+
sync_error: z.ZodNullable<z.ZodString>;
|
|
107253
|
+
object: z.ZodString;
|
|
107254
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107255
|
+
server_name: z.ZodString;
|
|
107256
|
+
server_version: z.ZodString;
|
|
107257
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107258
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107259
|
+
website_url: z.ZodNullable<z.ZodString>;
|
|
107260
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107261
|
+
protocol_version: z.ZodNullable<z.ZodString>;
|
|
107262
|
+
capability_flags: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
107263
|
+
instructions: z.ZodNullable<z.ZodString>;
|
|
107264
|
+
sync_status: z.ZodString;
|
|
107265
|
+
last_synced_at: z.ZodNullable<z.ZodString>;
|
|
107266
|
+
sync_error: z.ZodNullable<z.ZodString>;
|
|
107267
|
+
object: z.ZodString;
|
|
107268
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107269
|
+
type McpIntegrationMetadata = z.infer<typeof McpIntegrationMetadataSchema>;
|
|
106144
107270
|
/** A deployment list row. */
|
|
106145
107271
|
declare const GatewayDeploymentSchema: z.ZodObject<{
|
|
106146
107272
|
id: z.ZodString;
|
|
@@ -106405,6 +107531,99 @@ declare const GatewayDeploymentCreateResponseSchema: z.ZodObject<{
|
|
|
106405
107531
|
object: z.ZodString;
|
|
106406
107532
|
}, z.ZodTypeAny, "passthrough">>;
|
|
106407
107533
|
type GatewayDeploymentCreateResponse = z.infer<typeof GatewayDeploymentCreateResponseSchema>;
|
|
107534
|
+
/** Two-way connectivity result for a configured self-hosted deployment. */
|
|
107535
|
+
declare const GatewayDeploymentPingResponseSchema: z.ZodObject<{
|
|
107536
|
+
status: z.ZodString;
|
|
107537
|
+
gateway_base_url: z.ZodString;
|
|
107538
|
+
outbound: z.ZodObject<{
|
|
107539
|
+
status: z.ZodString;
|
|
107540
|
+
status_code: z.ZodOptional<z.ZodNumber>;
|
|
107541
|
+
version: z.ZodOptional<z.ZodString>;
|
|
107542
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107543
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107544
|
+
status: z.ZodString;
|
|
107545
|
+
status_code: z.ZodOptional<z.ZodNumber>;
|
|
107546
|
+
version: z.ZodOptional<z.ZodString>;
|
|
107547
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107548
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107549
|
+
status: z.ZodString;
|
|
107550
|
+
status_code: z.ZodOptional<z.ZodNumber>;
|
|
107551
|
+
version: z.ZodOptional<z.ZodString>;
|
|
107552
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107553
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107554
|
+
inbound: z.ZodObject<{
|
|
107555
|
+
status: z.ZodString;
|
|
107556
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107557
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107558
|
+
status: z.ZodString;
|
|
107559
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107560
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107561
|
+
status: z.ZodString;
|
|
107562
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107563
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107564
|
+
object: z.ZodString;
|
|
107565
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107566
|
+
status: z.ZodString;
|
|
107567
|
+
gateway_base_url: z.ZodString;
|
|
107568
|
+
outbound: z.ZodObject<{
|
|
107569
|
+
status: z.ZodString;
|
|
107570
|
+
status_code: z.ZodOptional<z.ZodNumber>;
|
|
107571
|
+
version: z.ZodOptional<z.ZodString>;
|
|
107572
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107573
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107574
|
+
status: z.ZodString;
|
|
107575
|
+
status_code: z.ZodOptional<z.ZodNumber>;
|
|
107576
|
+
version: z.ZodOptional<z.ZodString>;
|
|
107577
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107578
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107579
|
+
status: z.ZodString;
|
|
107580
|
+
status_code: z.ZodOptional<z.ZodNumber>;
|
|
107581
|
+
version: z.ZodOptional<z.ZodString>;
|
|
107582
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107583
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107584
|
+
inbound: z.ZodObject<{
|
|
107585
|
+
status: z.ZodString;
|
|
107586
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107587
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107588
|
+
status: z.ZodString;
|
|
107589
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107590
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107591
|
+
status: z.ZodString;
|
|
107592
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107593
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107594
|
+
object: z.ZodString;
|
|
107595
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107596
|
+
status: z.ZodString;
|
|
107597
|
+
gateway_base_url: z.ZodString;
|
|
107598
|
+
outbound: z.ZodObject<{
|
|
107599
|
+
status: z.ZodString;
|
|
107600
|
+
status_code: z.ZodOptional<z.ZodNumber>;
|
|
107601
|
+
version: z.ZodOptional<z.ZodString>;
|
|
107602
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107603
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107604
|
+
status: z.ZodString;
|
|
107605
|
+
status_code: z.ZodOptional<z.ZodNumber>;
|
|
107606
|
+
version: z.ZodOptional<z.ZodString>;
|
|
107607
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107608
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107609
|
+
status: z.ZodString;
|
|
107610
|
+
status_code: z.ZodOptional<z.ZodNumber>;
|
|
107611
|
+
version: z.ZodOptional<z.ZodString>;
|
|
107612
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107613
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107614
|
+
inbound: z.ZodObject<{
|
|
107615
|
+
status: z.ZodString;
|
|
107616
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107617
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107618
|
+
status: z.ZodString;
|
|
107619
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107620
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
107621
|
+
status: z.ZodString;
|
|
107622
|
+
error: z.ZodOptional<z.ZodString>;
|
|
107623
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107624
|
+
object: z.ZodString;
|
|
107625
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
107626
|
+
type GatewayDeploymentPingResponse = z.infer<typeof GatewayDeploymentPingResponseSchema>;
|
|
106408
107627
|
declare const ListDeploymentsResponseSchema: z.ZodObject<{
|
|
106409
107628
|
object: z.ZodString;
|
|
106410
107629
|
total: z.ZodNumber;
|
|
@@ -107150,6 +108369,11 @@ interface PaginationOptions {
|
|
|
107150
108369
|
offset?: number;
|
|
107151
108370
|
/** Max items to return. Defaults to 100. */
|
|
107152
108371
|
limit?: number;
|
|
108372
|
+
/** Return only the latest revision of each profile when supported by the endpoint. */
|
|
108373
|
+
latest?: boolean;
|
|
108374
|
+
}
|
|
108375
|
+
/** Options for walking all security profile pages. */
|
|
108376
|
+
interface ProfileListAllOptions extends Omit<PaginationOptions, 'offset'>, CollectAllOptions {
|
|
107153
108377
|
}
|
|
107154
108378
|
/** @internal */
|
|
107155
108379
|
interface ProfilesClientOptions {
|
|
@@ -107201,6 +108425,14 @@ declare class ProfilesClient {
|
|
|
107201
108425
|
* ```
|
|
107202
108426
|
*/
|
|
107203
108427
|
list(opts?: PaginationOptions): Promise<SecurityProfileListResponse>;
|
|
108428
|
+
/**
|
|
108429
|
+
* List security profiles across every response page.
|
|
108430
|
+
* @example
|
|
108431
|
+
* ```ts
|
|
108432
|
+
* const profiles = await mgmt.profiles.listAll({ latest: true });
|
|
108433
|
+
* ```
|
|
108434
|
+
*/
|
|
108435
|
+
listAll(opts?: ProfileListAllOptions): Promise<SecurityProfile[]>;
|
|
107204
108436
|
/**
|
|
107205
108437
|
* Get a security profile by UUID.
|
|
107206
108438
|
* Fetches all profiles and filters — no dedicated API endpoint exists.
|
|
@@ -107288,6 +108520,14 @@ declare class ProfilesClient {
|
|
|
107288
108520
|
forceDelete(profileId: string, updatedBy: string): Promise<DeleteProfileResponse>;
|
|
107289
108521
|
}
|
|
107290
108522
|
|
|
108523
|
+
/** Options for listing topics, including client-side latest-revision grouping. */
|
|
108524
|
+
interface TopicListOptions extends Omit<PaginationOptions, 'latest'> {
|
|
108525
|
+
/** Walk all pages and return the highest revision for each topic name. */
|
|
108526
|
+
latestOnly?: boolean;
|
|
108527
|
+
}
|
|
108528
|
+
/** Options for walking all custom-topic pages. */
|
|
108529
|
+
interface TopicListAllOptions extends Omit<TopicListOptions, 'offset' | 'latestOnly'>, CollectAllOptions {
|
|
108530
|
+
}
|
|
107291
108531
|
/** @internal */
|
|
107292
108532
|
interface TopicsClientOptions {
|
|
107293
108533
|
baseUrl: string;
|
|
@@ -107338,7 +108578,31 @@ declare class TopicsClient {
|
|
|
107338
108578
|
* // revision: 1, active: true } ], next_offset: 20 }
|
|
107339
108579
|
* ```
|
|
107340
108580
|
*/
|
|
107341
|
-
list(opts?:
|
|
108581
|
+
list(opts?: TopicListOptions): Promise<CustomTopicListResponse>;
|
|
108582
|
+
/**
|
|
108583
|
+
* List custom topics across every response page.
|
|
108584
|
+
* @example
|
|
108585
|
+
* ```ts
|
|
108586
|
+
* const topics = await mgmt.topics.listAll({ limit: 200 });
|
|
108587
|
+
* ```
|
|
108588
|
+
*/
|
|
108589
|
+
listAll(opts?: TopicListAllOptions): Promise<CustomTopic[]>;
|
|
108590
|
+
/**
|
|
108591
|
+
* Get an exact custom-topic revision by UUID.
|
|
108592
|
+
* @example
|
|
108593
|
+
* ```ts
|
|
108594
|
+
* const topic = await mgmt.topics.get('550e8400-e29b-41d4-a716-446655440000');
|
|
108595
|
+
* ```
|
|
108596
|
+
*/
|
|
108597
|
+
get(topicId: string): Promise<CustomTopic>;
|
|
108598
|
+
/**
|
|
108599
|
+
* Get the highest revision of a custom topic by name.
|
|
108600
|
+
* @example
|
|
108601
|
+
* ```ts
|
|
108602
|
+
* const topic = await mgmt.topics.getByName('credit-cards');
|
|
108603
|
+
* ```
|
|
108604
|
+
*/
|
|
108605
|
+
getByName(topicName: string): Promise<CustomTopic>;
|
|
107342
108606
|
/**
|
|
107343
108607
|
* Update an existing custom topic.
|
|
107344
108608
|
* @param topicId - UUID of the topic to update.
|
|
@@ -107393,6 +108657,9 @@ declare class TopicsClient {
|
|
|
107393
108657
|
forceDelete(topicId: string, updatedBy?: string): Promise<DeleteTopicResponse>;
|
|
107394
108658
|
}
|
|
107395
108659
|
|
|
108660
|
+
interface ApiKeyListAllOptions extends Omit<PaginationOptions, 'offset' | 'latest'>, CollectAllOptions {
|
|
108661
|
+
}
|
|
108662
|
+
|
|
107396
108663
|
/** @internal */
|
|
107397
108664
|
interface ApiKeysClientOptions {
|
|
107398
108665
|
baseUrl: string;
|
|
@@ -107447,6 +108714,8 @@ declare class ApiKeysClient {
|
|
|
107447
108714
|
* ```
|
|
107448
108715
|
*/
|
|
107449
108716
|
list(opts?: PaginationOptions): Promise<ApiKeyListResponse>;
|
|
108717
|
+
/** List all API keys. @example `const keys = await mgmt.apiKeys.listAll();` */
|
|
108718
|
+
listAll(opts?: ApiKeyListAllOptions): Promise<ApiKey[]>;
|
|
107450
108719
|
/**
|
|
107451
108720
|
* Delete an API key by name.
|
|
107452
108721
|
* @param apiKeyName - Name of the API key to delete.
|
|
@@ -107484,6 +108753,9 @@ declare class ApiKeysClient {
|
|
|
107484
108753
|
regenerate(apiKeyId: string, body: ApiKeyRegenerateRequest): Promise<ApiKey>;
|
|
107485
108754
|
}
|
|
107486
108755
|
|
|
108756
|
+
interface CustomerAppListAllOptions extends Omit<PaginationOptions, 'offset' | 'latest'>, CollectAllOptions {
|
|
108757
|
+
}
|
|
108758
|
+
|
|
107487
108759
|
/** @internal */
|
|
107488
108760
|
interface CustomerAppsClientOptions {
|
|
107489
108761
|
baseUrl: string;
|
|
@@ -107529,6 +108801,8 @@ declare class CustomerAppsClient {
|
|
|
107529
108801
|
* ```
|
|
107530
108802
|
*/
|
|
107531
108803
|
list(opts?: PaginationOptions): Promise<CustomerAppListResponse>;
|
|
108804
|
+
/** List all customer applications. @example `const apps = await mgmt.customerApps.listAll();` */
|
|
108805
|
+
listAll(opts?: CustomerAppListAllOptions): Promise<CustomerApp[]>;
|
|
107532
108806
|
/**
|
|
107533
108807
|
* Update a customer app.
|
|
107534
108808
|
* @param customerAppId - UUID of the customer app to update.
|
|
@@ -107756,8 +109030,8 @@ interface DashboardClientOptions {
|
|
|
107756
109030
|
*/
|
|
107757
109031
|
interface DashboardAppQuery {
|
|
107758
109032
|
/**
|
|
107759
|
-
* Customer application UUID. Source it from
|
|
107760
|
-
*
|
|
109033
|
+
* Customer application UUID. Source it from `CustomerAppsClient.list()`'s
|
|
109034
|
+
* `customer_appId` field.
|
|
107761
109035
|
*/
|
|
107762
109036
|
appId: string;
|
|
107763
109037
|
/**
|
|
@@ -107950,6 +109224,8 @@ interface DataFilteringProfileListParams {
|
|
|
107950
109224
|
/** Partial-match filter on profile name. */
|
|
107951
109225
|
name?: string;
|
|
107952
109226
|
}
|
|
109227
|
+
interface DataFilteringProfileListAllParams extends Omit<DataFilteringProfileListParams, 'page'>, CollectAllOptions {
|
|
109228
|
+
}
|
|
107953
109229
|
/** @internal */
|
|
107954
109230
|
interface DataFilteringProfilesClientOptions {
|
|
107955
109231
|
baseUrl: string;
|
|
@@ -107983,6 +109259,8 @@ declare class DataFilteringProfilesClient {
|
|
|
107983
109259
|
* ```
|
|
107984
109260
|
*/
|
|
107985
109261
|
list(params?: DataFilteringProfileListParams): Promise<PageDataFilteringProfileResponse>;
|
|
109262
|
+
/** List all filtering profiles. @example `const profiles = await mgmt.dlp.dataFilteringProfiles.listAll();` */
|
|
109263
|
+
listAll(params?: DataFilteringProfileListAllParams): Promise<PageDataFilteringProfileResponse['content']>;
|
|
107986
109264
|
/**
|
|
107987
109265
|
* Get a single data filtering profile by resource ID.
|
|
107988
109266
|
* @example
|
|
@@ -108028,6 +109306,8 @@ interface DataPatternListParams {
|
|
|
108028
109306
|
*/
|
|
108029
109307
|
sort?: string[];
|
|
108030
109308
|
}
|
|
109309
|
+
interface DataPatternListAllParams extends Omit<DataPatternListParams, 'page'>, CollectAllOptions {
|
|
109310
|
+
}
|
|
108031
109311
|
/** @internal */
|
|
108032
109312
|
interface DataPatternsClientOptions {
|
|
108033
109313
|
baseUrl: string;
|
|
@@ -108062,6 +109342,8 @@ declare class DataPatternsClient {
|
|
|
108062
109342
|
* ```
|
|
108063
109343
|
*/
|
|
108064
109344
|
list(params?: DataPatternListParams): Promise<PageDataPatternResponse>;
|
|
109345
|
+
/** List all data patterns. @example `const patterns = await mgmt.dlp.dataPatterns.listAll();` */
|
|
109346
|
+
listAll(params?: DataPatternListAllParams): Promise<PageDataPatternResponse['content']>;
|
|
108065
109347
|
/**
|
|
108066
109348
|
* Create a new custom data pattern.
|
|
108067
109349
|
* @example
|
|
@@ -108158,6 +109440,8 @@ interface DataProfileListParams {
|
|
|
108158
109440
|
*/
|
|
108159
109441
|
sort?: string[];
|
|
108160
109442
|
}
|
|
109443
|
+
interface DataProfileListAllParams extends Omit<DataProfileListParams, 'page'>, CollectAllOptions {
|
|
109444
|
+
}
|
|
108161
109445
|
/** @internal */
|
|
108162
109446
|
interface DataProfilesClientOptions {
|
|
108163
109447
|
baseUrl: string;
|
|
@@ -108193,6 +109477,8 @@ declare class DataProfilesClient {
|
|
|
108193
109477
|
* ```
|
|
108194
109478
|
*/
|
|
108195
109479
|
list(params?: DataProfileListParams): Promise<PageDataProfileResponse>;
|
|
109480
|
+
/** List all data profiles. @example `const profiles = await mgmt.dlp.dataProfiles.listAll();` */
|
|
109481
|
+
listAll(params?: DataProfileListAllParams): Promise<PageDataProfileResponse['content']>;
|
|
108196
109482
|
/**
|
|
108197
109483
|
* Create a new data profile.
|
|
108198
109484
|
* @example
|
|
@@ -108286,6 +109572,8 @@ interface DictionaryListParams {
|
|
|
108286
109572
|
/** When true, the API includes the `keywords` array in each response entry. */
|
|
108287
109573
|
keywords?: boolean;
|
|
108288
109574
|
}
|
|
109575
|
+
interface DictionaryListAllParams extends Omit<DictionaryListParams, 'page'>, CollectAllOptions {
|
|
109576
|
+
}
|
|
108289
109577
|
/** Parameters accepted by {@link DictionariesClient.get}. */
|
|
108290
109578
|
interface DictionaryGetParams {
|
|
108291
109579
|
/** When true, request that the response include the dictionary's keyword list. */
|
|
@@ -108333,6 +109621,8 @@ declare class DictionariesClient {
|
|
|
108333
109621
|
* ```
|
|
108334
109622
|
*/
|
|
108335
109623
|
list(params?: DictionaryListParams): Promise<PageDictionaryResponse>;
|
|
109624
|
+
/** List all dictionaries. @example `const dictionaries = await mgmt.dlp.dictionaries.listAll();` */
|
|
109625
|
+
listAll(params?: DictionaryListAllParams): Promise<PageDictionaryResponse['content']>;
|
|
108336
109626
|
/**
|
|
108337
109627
|
* Create a dictionary by uploading a keyword file. Sends a multipart body — the SDK does
|
|
108338
109628
|
* not set Content-Type so the runtime can write the correct boundary.
|
|
@@ -108654,20 +109944,6 @@ declare class OAuthClient {
|
|
|
108654
109944
|
private fetchToken;
|
|
108655
109945
|
}
|
|
108656
109946
|
|
|
108657
|
-
/**
|
|
108658
|
-
* Pagination + search options shared by every list endpoint across the OAuth domains.
|
|
108659
|
-
* Sub-clients extend this with endpoint-specific filter fields and merge their additions
|
|
108660
|
-
* into the params record returned by the internal `serializeListing` helper.
|
|
108661
|
-
*/
|
|
108662
|
-
interface ListingOptions {
|
|
108663
|
-
/** Number of records to skip from the start. */
|
|
108664
|
-
skip?: number;
|
|
108665
|
-
/** Max records to return. */
|
|
108666
|
-
limit?: number;
|
|
108667
|
-
/** Free-text search filter. */
|
|
108668
|
-
search?: string;
|
|
108669
|
-
}
|
|
108670
|
-
|
|
108671
109947
|
/** Pagination + filter options for model security scan listing. */
|
|
108672
109948
|
interface ModelSecurityScanListOptions extends ListingOptions {
|
|
108673
109949
|
/** Sort field: 'created_at' or 'updated_at'. */
|
|
@@ -108689,6 +109965,8 @@ interface ModelSecurityScanListOptions extends ListingOptions {
|
|
|
108689
109965
|
/** Labels query filter (max 4096 chars). */
|
|
108690
109966
|
labels_query?: string;
|
|
108691
109967
|
}
|
|
109968
|
+
interface ModelSecurityScanListAllOptions extends Omit<ModelSecurityScanListOptions, 'skip'>, CollectAllOptions {
|
|
109969
|
+
}
|
|
108692
109970
|
/** Options for listing rule evaluations within a scan. */
|
|
108693
109971
|
interface ModelSecurityEvaluationListOptions extends ListingOptions {
|
|
108694
109972
|
/** Sort field: 'created_at' or 'updated_at'. */
|
|
@@ -108763,6 +110041,8 @@ declare class ModelSecurityScansClient {
|
|
|
108763
110041
|
* ```
|
|
108764
110042
|
*/
|
|
108765
110043
|
list(opts?: ModelSecurityScanListOptions): Promise<ScanList>;
|
|
110044
|
+
/** List every model-security scan page. @example `const scans = await ms.scans.listAll();` */
|
|
110045
|
+
listAll(opts?: ModelSecurityScanListAllOptions): Promise<ScanList['scans']>;
|
|
108766
110046
|
/**
|
|
108767
110047
|
* Get a single scan by UUID.
|
|
108768
110048
|
* @param uuid - Scan UUID.
|
|
@@ -108955,6 +110235,8 @@ interface ModelSecurityGroupListOptions extends ListingOptions {
|
|
|
108955
110235
|
/** Filter by rule UUIDs with ALLOWING or BLOCKING state. */
|
|
108956
110236
|
enabled_rules?: string[];
|
|
108957
110237
|
}
|
|
110238
|
+
interface ModelSecurityGroupListAllOptions extends Omit<ModelSecurityGroupListOptions, 'skip'>, CollectAllOptions {
|
|
110239
|
+
}
|
|
108958
110240
|
/** Options for listing rule instances within a security group. */
|
|
108959
110241
|
interface ModelSecurityRuleInstanceListOptions extends ListingOptions {
|
|
108960
110242
|
/** Filter by security rule UUID. */
|
|
@@ -109013,6 +110295,8 @@ declare class ModelSecurityGroupsClient {
|
|
|
109013
110295
|
* ```
|
|
109014
110296
|
*/
|
|
109015
110297
|
list(opts?: ModelSecurityGroupListOptions): Promise<ListModelSecurityGroupsResponse>;
|
|
110298
|
+
/** List every security-group page. @example `const groups = await ms.securityGroups.listAll();` */
|
|
110299
|
+
listAll(opts?: ModelSecurityGroupListAllOptions): Promise<ListModelSecurityGroupsResponse['security_groups']>;
|
|
109016
110300
|
/**
|
|
109017
110301
|
* Get a single security group by UUID.
|
|
109018
110302
|
* @param uuid - Security group UUID.
|
|
@@ -109129,6 +110413,8 @@ interface ModelSecurityRuleListOptions extends ListingOptions {
|
|
|
109129
110413
|
/** Search term (matches UUID or Name, 3-1000 chars). */
|
|
109130
110414
|
search_query?: string;
|
|
109131
110415
|
}
|
|
110416
|
+
interface ModelSecurityRuleListAllOptions extends Omit<ModelSecurityRuleListOptions, 'skip'>, CollectAllOptions {
|
|
110417
|
+
}
|
|
109132
110418
|
/** @internal */
|
|
109133
110419
|
interface ModelSecurityRulesClientOptions {
|
|
109134
110420
|
baseUrl: string;
|
|
@@ -109160,6 +110446,8 @@ declare class ModelSecurityRulesClient {
|
|
|
109160
110446
|
* ```
|
|
109161
110447
|
*/
|
|
109162
110448
|
list(opts?: ModelSecurityRuleListOptions): Promise<ListModelSecurityRulesResponse>;
|
|
110449
|
+
/** List every security-rule page. @example `const rules = await ms.securityRules.listAll();` */
|
|
110450
|
+
listAll(opts?: ModelSecurityRuleListAllOptions): Promise<ListModelSecurityRulesResponse['rules']>;
|
|
109163
110451
|
/**
|
|
109164
110452
|
* Get a single security rule by UUID.
|
|
109165
110453
|
* @param uuid - Security rule UUID.
|
|
@@ -109205,6 +110493,12 @@ interface ModelSecurityModelVersionListOptions extends ListingOptions {
|
|
|
109205
110493
|
}
|
|
109206
110494
|
/** Pagination options for listing a model version's files. */
|
|
109207
110495
|
type ModelSecurityModelVersionFileListOptions = ListingOptions;
|
|
110496
|
+
interface ModelSecurityModelListAllOptions extends Omit<ModelSecurityModelListOptions, 'skip'>, CollectAllOptions {
|
|
110497
|
+
}
|
|
110498
|
+
interface ModelSecurityModelVersionListAllOptions extends Omit<ModelSecurityModelVersionListOptions, 'skip'>, CollectAllOptions {
|
|
110499
|
+
}
|
|
110500
|
+
interface ModelSecurityModelVersionFileListAllOptions extends Omit<ModelSecurityModelVersionFileListOptions, 'skip'>, CollectAllOptions {
|
|
110501
|
+
}
|
|
109208
110502
|
/** @internal */
|
|
109209
110503
|
interface ModelSecurityModelsClientOptions {
|
|
109210
110504
|
baseUrl: string;
|
|
@@ -109232,6 +110526,8 @@ declare class ModelSecurityModelsClient {
|
|
|
109232
110526
|
* ```
|
|
109233
110527
|
*/
|
|
109234
110528
|
listModels(opts?: ModelSecurityModelListOptions): Promise<ModelList>;
|
|
110529
|
+
/** List every model page. @example `const models = await ms.models.listAllModels();` */
|
|
110530
|
+
listAllModels(opts?: ModelSecurityModelListAllOptions): Promise<ModelList['models']>;
|
|
109235
110531
|
/**
|
|
109236
110532
|
* Get a single model by UUID.
|
|
109237
110533
|
* @param uuid - Model UUID.
|
|
@@ -109265,6 +110561,8 @@ declare class ModelSecurityModelsClient {
|
|
|
109265
110561
|
* ```
|
|
109266
110562
|
*/
|
|
109267
110563
|
listModelVersions(modelUuid: string, opts?: ModelSecurityModelVersionListOptions): Promise<ModelVersionList>;
|
|
110564
|
+
/** List every version of a model. @example `const versions = await ms.models.listAllModelVersions(modelUuid);` */
|
|
110565
|
+
listAllModelVersions(modelUuid: string, opts?: ModelSecurityModelVersionListAllOptions): Promise<ModelVersionList['model_versions']>;
|
|
109268
110566
|
/**
|
|
109269
110567
|
* Get a single model version by UUID.
|
|
109270
110568
|
* @param uuid - Model version UUID.
|
|
@@ -109298,6 +110596,8 @@ declare class ModelSecurityModelsClient {
|
|
|
109298
110596
|
* ```
|
|
109299
110597
|
*/
|
|
109300
110598
|
listModelVersionFiles(modelVersionUuid: string, opts?: ModelSecurityModelVersionFileListOptions): Promise<FileList>;
|
|
110599
|
+
/** List every file in a model version. @example `const files = await ms.models.listAllModelVersionFiles(versionUuid);` */
|
|
110600
|
+
listAllModelVersionFiles(modelVersionUuid: string, opts?: ModelSecurityModelVersionFileListAllOptions): Promise<FileList['files']>;
|
|
109301
110601
|
}
|
|
109302
110602
|
|
|
109303
110603
|
/** Options for constructing a {@link ModelSecurityClient}. */
|
|
@@ -109369,6 +110669,8 @@ interface RedTeamScanListOptions extends RedTeamListOptions {
|
|
|
109369
110669
|
job_type?: string;
|
|
109370
110670
|
target_id?: string;
|
|
109371
110671
|
}
|
|
110672
|
+
interface RedTeamScanListAllOptions extends Omit<RedTeamScanListOptions, 'skip'>, CollectAllOptions {
|
|
110673
|
+
}
|
|
109372
110674
|
/** @internal */
|
|
109373
110675
|
interface RedTeamScansClientOptions {
|
|
109374
110676
|
baseUrl: string;
|
|
@@ -109416,6 +110718,8 @@ declare class RedTeamScansClient {
|
|
|
109416
110718
|
* ```
|
|
109417
110719
|
*/
|
|
109418
110720
|
list(opts?: RedTeamScanListOptions): Promise<JobListResponse>;
|
|
110721
|
+
/** List every scan page. @example `const scans = await rt.scans.listAll({ status: 'COMPLETED' });` */
|
|
110722
|
+
listAll(opts?: RedTeamScanListAllOptions): Promise<JobListResponse['data']>;
|
|
109419
110723
|
/**
|
|
109420
110724
|
* Get a single scan job by ID.
|
|
109421
110725
|
* @param jobId - The job UUID.
|
|
@@ -109870,6 +111174,9 @@ interface TargetListOptions extends RedTeamListOptions {
|
|
|
109870
111174
|
target_type?: string;
|
|
109871
111175
|
status?: string;
|
|
109872
111176
|
}
|
|
111177
|
+
/** Options for walking every target page. */
|
|
111178
|
+
interface TargetListAllOptions extends Omit<TargetListOptions, 'skip'>, CollectAllOptions {
|
|
111179
|
+
}
|
|
109873
111180
|
/** Options for target create/update operations. */
|
|
109874
111181
|
interface TargetOperationOptions {
|
|
109875
111182
|
/** Validate the target connection before saving. */
|
|
@@ -109928,6 +111235,14 @@ declare class RedTeamTargetsClient {
|
|
|
109928
111235
|
* ```
|
|
109929
111236
|
*/
|
|
109930
111237
|
list(opts?: TargetListOptions): Promise<TargetList>;
|
|
111238
|
+
/**
|
|
111239
|
+
* List targets across every page while preserving the supplied filters.
|
|
111240
|
+
* @example
|
|
111241
|
+
* ```ts
|
|
111242
|
+
* const targets = await rt.targets.listAll({ limit: 100, status: 'READY' });
|
|
111243
|
+
* ```
|
|
111244
|
+
*/
|
|
111245
|
+
listAll(opts?: TargetListAllOptions): Promise<TargetListItem[]>;
|
|
109931
111246
|
/**
|
|
109932
111247
|
* Get a target by UUID.
|
|
109933
111248
|
* @param uuid - The target UUID.
|
|
@@ -110091,6 +111406,10 @@ interface PromptListOptions extends RedTeamListOptions {
|
|
|
110091
111406
|
status?: string;
|
|
110092
111407
|
active?: boolean;
|
|
110093
111408
|
}
|
|
111409
|
+
interface PromptSetListAllOptions extends Omit<PromptSetListOptions, 'skip'>, CollectAllOptions {
|
|
111410
|
+
}
|
|
111411
|
+
interface PromptListAllOptions extends Omit<PromptListOptions, 'skip'>, CollectAllOptions {
|
|
111412
|
+
}
|
|
110094
111413
|
/** @internal */
|
|
110095
111414
|
interface RedTeamCustomAttacksClientOptions {
|
|
110096
111415
|
baseUrl: string;
|
|
@@ -110136,6 +111455,8 @@ declare class RedTeamCustomAttacksClient {
|
|
|
110136
111455
|
* ```
|
|
110137
111456
|
*/
|
|
110138
111457
|
listPromptSets(opts?: PromptSetListOptions): Promise<CustomPromptSetList>;
|
|
111458
|
+
/** List every custom prompt-set page. @example `const sets = await rt.customAttacks.listAllPromptSets();` */
|
|
111459
|
+
listAllPromptSets(opts?: PromptSetListAllOptions): Promise<NonNullable<CustomPromptSetList['data']>>;
|
|
110139
111460
|
/**
|
|
110140
111461
|
* Get a prompt set by UUID.
|
|
110141
111462
|
* @param uuid - The prompt set UUID.
|
|
@@ -110309,6 +111630,8 @@ declare class RedTeamCustomAttacksClient {
|
|
|
110309
111630
|
* ```
|
|
110310
111631
|
*/
|
|
110311
111632
|
listPrompts(promptSetUuid: string, opts?: PromptListOptions): Promise<CustomPromptList>;
|
|
111633
|
+
/** List every prompt page for a set. @example `const prompts = await rt.customAttacks.listAllPrompts(promptSetUuid);` */
|
|
111634
|
+
listAllPrompts(promptSetUuid: string, opts?: PromptListAllOptions): Promise<NonNullable<CustomPromptList['data']>>;
|
|
110312
111635
|
/**
|
|
110313
111636
|
* Get a prompt by UUID.
|
|
110314
111637
|
* @param promptSetUuid - The prompt set UUID.
|
|
@@ -110762,6 +112085,8 @@ declare class RedTeamNetworkBrokerClient {
|
|
|
110762
112085
|
updateChannel(channelId: string, body: UpdateChannelRequest): Promise<Channel>;
|
|
110763
112086
|
}
|
|
110764
112087
|
|
|
112088
|
+
interface AdapterListAllOptions extends Omit<RedTeamListOptions, 'skip'>, CollectAllOptions {
|
|
112089
|
+
}
|
|
110765
112090
|
/** Options for adapter create/update operations. */
|
|
110766
112091
|
interface AdapterOperationOptions {
|
|
110767
112092
|
/**
|
|
@@ -110837,6 +112162,8 @@ declare class RedTeamAdaptersClient {
|
|
|
110837
112162
|
* ```
|
|
110838
112163
|
*/
|
|
110839
112164
|
list(opts?: RedTeamListOptions): Promise<AdapterList>;
|
|
112165
|
+
/** List every adapter page. @example `const adapters = await rt.adapters.listAll();` */
|
|
112166
|
+
listAll(opts?: AdapterListAllOptions): Promise<NonNullable<AdapterList['data']>>;
|
|
110840
112167
|
/**
|
|
110841
112168
|
* Get a single adapter by UUID.
|
|
110842
112169
|
* @param uuid - Adapter UUID.
|
|
@@ -111749,6 +113076,19 @@ declare class AIGatewayConfigsClient {
|
|
|
111749
113076
|
* ```
|
|
111750
113077
|
*/
|
|
111751
113078
|
get(configId: string): Promise<GatewayConfigDetail>;
|
|
113079
|
+
/**
|
|
113080
|
+
* List the immutable version history for one config. Verified live 2026-08-29.
|
|
113081
|
+
* @param configId - Config UUID.
|
|
113082
|
+
* @returns Config versions, including version ownership and creation timestamps.
|
|
113083
|
+
* @example
|
|
113084
|
+
* ```ts
|
|
113085
|
+
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
113086
|
+
* const gw = new AIGatewayClient();
|
|
113087
|
+
* const versions = await gw.configs.listVersions('764cf9cd-4ebf-449e-b669-08149b0fbbbc');
|
|
113088
|
+
* console.log(versions.data[0].version_id);
|
|
113089
|
+
* ```
|
|
113090
|
+
*/
|
|
113091
|
+
listVersions(configId: string): Promise<ListConfigVersionsResponse>;
|
|
111752
113092
|
/**
|
|
111753
113093
|
* Create a config.
|
|
111754
113094
|
*
|
|
@@ -111827,6 +113167,8 @@ interface GatewayGuardrailCreateRequest {
|
|
|
111827
113167
|
checks: GatewayGuardrailCheck[];
|
|
111828
113168
|
actions: Record<string, unknown>;
|
|
111829
113169
|
}
|
|
113170
|
+
/** Request body for updating a guardrail. Omitted fields remain unchanged. */
|
|
113171
|
+
type GatewayGuardrailUpdateRequest = Partial<Pick<GatewayGuardrailCreateRequest, 'name' | 'checks' | 'actions'>>;
|
|
111830
113172
|
/** Client for AI Gateway guardrail operations (data plane). */
|
|
111831
113173
|
declare class AIGatewayGuardrailsClient {
|
|
111832
113174
|
private readonly baseUrl;
|
|
@@ -111887,6 +113229,21 @@ declare class AIGatewayGuardrailsClient {
|
|
|
111887
113229
|
* ```
|
|
111888
113230
|
*/
|
|
111889
113231
|
create(body: GatewayGuardrailCreateRequest): Promise<GatewayGuardrailCreateResponse>;
|
|
113232
|
+
/**
|
|
113233
|
+
* Update a guardrail. Verified live 2026-08-29.
|
|
113234
|
+
* @param guardrailId - Guardrail UUID.
|
|
113235
|
+
* @param body - Fields to update.
|
|
113236
|
+
* @returns The gateway write response.
|
|
113237
|
+
* @example
|
|
113238
|
+
* ```ts
|
|
113239
|
+
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
113240
|
+
* const gw = new AIGatewayClient();
|
|
113241
|
+
* await gw.guardrails.update('9f6c2a8e-2b3d-4e5f-8a9b-0c1d2e3f4a5b', {
|
|
113242
|
+
* name: 'Updated guardrail',
|
|
113243
|
+
* });
|
|
113244
|
+
* ```
|
|
113245
|
+
*/
|
|
113246
|
+
update(guardrailId: string, body: GatewayGuardrailUpdateRequest): Promise<GatewayWriteResponse>;
|
|
111890
113247
|
/**
|
|
111891
113248
|
* Delete a guardrail.
|
|
111892
113249
|
*
|
|
@@ -111921,6 +113278,15 @@ interface GatewayProviderCreateRequest {
|
|
|
111921
113278
|
note?: string;
|
|
111922
113279
|
expires_at?: string | null;
|
|
111923
113280
|
}
|
|
113281
|
+
/** Request body for updating a provider binding. Omitted fields remain unchanged. */
|
|
113282
|
+
interface GatewayProviderUpdateRequest {
|
|
113283
|
+
name?: string;
|
|
113284
|
+
note?: string;
|
|
113285
|
+
usage_limits?: Record<string, unknown> | null;
|
|
113286
|
+
rate_limits?: Record<string, unknown> | null;
|
|
113287
|
+
expires_at?: string | null;
|
|
113288
|
+
reset_usage?: boolean;
|
|
113289
|
+
}
|
|
111924
113290
|
/** Client for AI Gateway provider operations (data plane). */
|
|
111925
113291
|
declare class AIGatewayProvidersClient {
|
|
111926
113292
|
private readonly baseUrl;
|
|
@@ -111941,6 +113307,22 @@ declare class AIGatewayProvidersClient {
|
|
|
111941
113307
|
* ```
|
|
111942
113308
|
*/
|
|
111943
113309
|
list(opts: AIGatewayWorkspaceScopedListOptions): Promise<ListProvidersResponse>;
|
|
113310
|
+
/**
|
|
113311
|
+
* Fetch one provider binding. Verified live 2026-08-29.
|
|
113312
|
+
*
|
|
113313
|
+
* @remarks The response can contain provider credential material. Do not log or persist it,
|
|
113314
|
+
* and do not enable SDK debug logging around this call in production.
|
|
113315
|
+
* @param providerId - Provider UUID.
|
|
113316
|
+
* @returns Provider configuration and lifecycle detail.
|
|
113317
|
+
* @example
|
|
113318
|
+
* ```ts
|
|
113319
|
+
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
113320
|
+
* const gw = new AIGatewayClient();
|
|
113321
|
+
* const provider = await gw.providers.get('f6692544-3265-49be-9711-bbdcebc079e4');
|
|
113322
|
+
* console.log(provider.name);
|
|
113323
|
+
* ```
|
|
113324
|
+
*/
|
|
113325
|
+
get(providerId: string): Promise<GatewayProviderDetail>;
|
|
111944
113326
|
/**
|
|
111945
113327
|
* Create a provider.
|
|
111946
113328
|
*
|
|
@@ -111968,6 +113350,22 @@ declare class AIGatewayProvidersClient {
|
|
|
111968
113350
|
* ```
|
|
111969
113351
|
*/
|
|
111970
113352
|
create(body: GatewayProviderCreateRequest): Promise<GatewayProviderCreateResponse>;
|
|
113353
|
+
/**
|
|
113354
|
+
* Update a provider binding. Verified live 2026-08-29.
|
|
113355
|
+
* @param providerId - Provider UUID.
|
|
113356
|
+
* @param body - Fields to update.
|
|
113357
|
+
* @returns The gateway write response.
|
|
113358
|
+
* @example
|
|
113359
|
+
* ```ts
|
|
113360
|
+
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
113361
|
+
* const gw = new AIGatewayClient();
|
|
113362
|
+
* await gw.providers.update('f6692544-3265-49be-9711-bbdcebc079e4', {
|
|
113363
|
+
* name: 'Vertex production',
|
|
113364
|
+
* note: 'Updated by automation',
|
|
113365
|
+
* });
|
|
113366
|
+
* ```
|
|
113367
|
+
*/
|
|
113368
|
+
update(providerId: string, body: GatewayProviderUpdateRequest): Promise<GatewayWriteResponse>;
|
|
111971
113369
|
/**
|
|
111972
113370
|
* Delete a provider.
|
|
111973
113371
|
*
|
|
@@ -112007,6 +113405,10 @@ interface GatewayApiKeyCreateRequest {
|
|
|
112007
113405
|
/** Required for user keys only. */
|
|
112008
113406
|
user_id?: string;
|
|
112009
113407
|
}
|
|
113408
|
+
interface GatewayApiKeyRotateRequest {
|
|
113409
|
+
/** Minimum 30 minutes when supplied. */
|
|
113410
|
+
key_transition_period_ms?: number;
|
|
113411
|
+
}
|
|
112010
113412
|
/**
|
|
112011
113413
|
* Client for AI Gateway API-key operations (data plane).
|
|
112012
113414
|
*
|
|
@@ -112050,6 +113452,21 @@ declare class AIGatewayApiKeysClient {
|
|
|
112050
113452
|
* ```
|
|
112051
113453
|
*/
|
|
112052
113454
|
listUser(opts: AIGatewayWorkspaceScopedListOptions): Promise<ListApiKeysResponse>;
|
|
113455
|
+
private getAt;
|
|
113456
|
+
private deleteAt;
|
|
113457
|
+
private rotateAt;
|
|
113458
|
+
/** Get a service key. @example `await gw.apiKeys.getService(keyId);` */
|
|
113459
|
+
getService(keyId: string): Promise<GatewayApiKey>;
|
|
113460
|
+
/** Get a user key. @example `await gw.apiKeys.getUser(keyId);` */
|
|
113461
|
+
getUser(keyId: string): Promise<GatewayApiKey>;
|
|
113462
|
+
/** Permanently delete a service key. @example `await gw.apiKeys.deleteService(keyId);` */
|
|
113463
|
+
deleteService(keyId: string): Promise<void>;
|
|
113464
|
+
/** Permanently delete a user key. @example `await gw.apiKeys.deleteUser(keyId);` */
|
|
113465
|
+
deleteUser(keyId: string): Promise<void>;
|
|
113466
|
+
/** Rotate a service key; capture the returned secret. @example `const rotated = await gw.apiKeys.rotateService(keyId);` */
|
|
113467
|
+
rotateService(keyId: string, body?: GatewayApiKeyRotateRequest): Promise<GatewayApiKeyRotateResponse>;
|
|
113468
|
+
/** Rotate a user key; capture the returned secret. @example `const rotated = await gw.apiKeys.rotateUser(keyId);` */
|
|
113469
|
+
rotateUser(keyId: string, body?: GatewayApiKeyRotateRequest): Promise<GatewayApiKeyRotateResponse>;
|
|
112053
113470
|
/**
|
|
112054
113471
|
* Create a service API key.
|
|
112055
113472
|
* @param body - Name, scopes, TSG, workspace UUID, and type.
|
|
@@ -112331,14 +113748,27 @@ interface McpIntegrationCreateRequest {
|
|
|
112331
113748
|
configurations?: Record<string, unknown>;
|
|
112332
113749
|
secret_mappings?: unknown[];
|
|
112333
113750
|
}
|
|
113751
|
+
type McpIntegrationUpdateRequest = Partial<Pick<McpIntegrationCreateRequest, 'name' | 'description' | 'configurations' | 'url' | 'auth_type' | 'transport' | 'secret_mappings'>>;
|
|
113752
|
+
interface McpIntegrationCapabilitiesUpdateRequest {
|
|
113753
|
+
capabilities: Array<{
|
|
113754
|
+
name: string;
|
|
113755
|
+
type: 'tool' | 'prompt' | 'resource';
|
|
113756
|
+
enabled: boolean;
|
|
113757
|
+
}>;
|
|
113758
|
+
}
|
|
112334
113759
|
/**
|
|
112335
113760
|
* Workspace-binding payload for `mcp-integrations/{id}/workspaces`.
|
|
112336
|
-
*
|
|
112337
|
-
* live MCP-integrations tenant.
|
|
113761
|
+
* Verified live against SCM on 2026-08-30.
|
|
112338
113762
|
*/
|
|
112339
113763
|
interface McpIntegrationWorkspacesRequest {
|
|
112340
|
-
workspaces?:
|
|
112341
|
-
|
|
113764
|
+
workspaces?: Array<{
|
|
113765
|
+
id: string;
|
|
113766
|
+
enabled: boolean;
|
|
113767
|
+
}>;
|
|
113768
|
+
global_workspace_access?: {
|
|
113769
|
+
enabled: boolean;
|
|
113770
|
+
} | null;
|
|
113771
|
+
override_existing_workspace_access?: boolean;
|
|
112342
113772
|
}
|
|
112343
113773
|
/** Client for AI Gateway MCP server integrations (admin plane). */
|
|
112344
113774
|
declare class AIGatewayMcpIntegrationsClient {
|
|
@@ -112359,6 +113789,45 @@ declare class AIGatewayMcpIntegrationsClient {
|
|
|
112359
113789
|
* ```
|
|
112360
113790
|
*/
|
|
112361
113791
|
list(): Promise<ListMcpIntegrationsResponse>;
|
|
113792
|
+
/**
|
|
113793
|
+
* Fetch one MCP integration. Verified live 2026-08-29.
|
|
113794
|
+
* @param mcpIntegrationId - MCP integration UUID.
|
|
113795
|
+
* @returns Integration detail; unlike list rows, `configurations` is an object.
|
|
113796
|
+
* @example
|
|
113797
|
+
* ```ts
|
|
113798
|
+
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
113799
|
+
* const gw = new AIGatewayClient();
|
|
113800
|
+
* const integration = await gw.mcpIntegrations.get('2a6f4e2e-6f5a-4a1f-9d0e-9b2b6f6c3a11');
|
|
113801
|
+
* console.log(integration.url);
|
|
113802
|
+
* ```
|
|
113803
|
+
*/
|
|
113804
|
+
get(mcpIntegrationId: string): Promise<McpIntegrationDetail>;
|
|
113805
|
+
/**
|
|
113806
|
+
* List capabilities discovered from an MCP integration. Verified live 2026-08-29.
|
|
113807
|
+
* @param mcpIntegrationId - MCP integration UUID.
|
|
113808
|
+
* @returns Tools, prompts, resources, and resource templates with enablement counts.
|
|
113809
|
+
* @example
|
|
113810
|
+
* ```ts
|
|
113811
|
+
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
113812
|
+
* const gw = new AIGatewayClient();
|
|
113813
|
+
* const capabilities = await gw.mcpIntegrations.getCapabilities('2a6f4e2e-6f5a-4a1f-9d0e-9b2b6f6c3a11');
|
|
113814
|
+
* console.log(capabilities.data.map((capability) => capability.name));
|
|
113815
|
+
* ```
|
|
113816
|
+
*/
|
|
113817
|
+
getCapabilities(mcpIntegrationId: string): Promise<McpIntegrationCapabilitiesResponse>;
|
|
113818
|
+
/**
|
|
113819
|
+
* Fetch metadata discovered from an MCP server. Verified live 2026-08-29.
|
|
113820
|
+
* @param mcpIntegrationId - MCP integration UUID.
|
|
113821
|
+
* @returns Server identity, protocol, capability flags, and sync state.
|
|
113822
|
+
* @example
|
|
113823
|
+
* ```ts
|
|
113824
|
+
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
113825
|
+
* const gw = new AIGatewayClient();
|
|
113826
|
+
* const metadata = await gw.mcpIntegrations.getMetadata('2a6f4e2e-6f5a-4a1f-9d0e-9b2b6f6c3a11');
|
|
113827
|
+
* console.log(metadata.sync_status);
|
|
113828
|
+
* ```
|
|
113829
|
+
*/
|
|
113830
|
+
getMetadata(mcpIntegrationId: string): Promise<McpIntegrationMetadata>;
|
|
112362
113831
|
/**
|
|
112363
113832
|
* Register an MCP server.
|
|
112364
113833
|
* @param body - Name, server URL, auth type, transport, and provider-specific configuration.
|
|
@@ -112379,24 +113848,46 @@ declare class AIGatewayMcpIntegrationsClient {
|
|
|
112379
113848
|
* ```
|
|
112380
113849
|
*/
|
|
112381
113850
|
create(body: McpIntegrationCreateRequest): Promise<GatewayWriteResponse>;
|
|
113851
|
+
/** Update an MCP integration. @example `await gw.mcpIntegrations.update(id, { name: 'Docs MCP' });` */
|
|
113852
|
+
update(mcpIntegrationId: string, body: McpIntegrationUpdateRequest): Promise<GatewayWriteResponse>;
|
|
113853
|
+
/** Permanently delete an MCP integration. @example `await gw.mcpIntegrations.delete(id);` */
|
|
113854
|
+
delete(mcpIntegrationId: string): Promise<void>;
|
|
113855
|
+
/** Replace capability enablement values. @example `await gw.mcpIntegrations.setCapabilities(id, { capabilities: [{ name: 'lookup', type: 'tool', enabled: true }] });` */
|
|
113856
|
+
setCapabilities(mcpIntegrationId: string, body: McpIntegrationCapabilitiesUpdateRequest): Promise<McpIntegrationCapabilitiesUpdateResponse>;
|
|
112382
113857
|
/**
|
|
112383
113858
|
* Replace which workspaces may use this MCP integration.
|
|
112384
113859
|
* @param mcpIntegrationId - MCP integration UUID.
|
|
112385
113860
|
* @param body - Workspace bindings or a global-access flag; this is a replace, not a merge.
|
|
112386
|
-
* @returns
|
|
113861
|
+
* @returns An empty object. Verified live 2026-08-30.
|
|
112387
113862
|
* @example
|
|
112388
113863
|
* ```ts
|
|
112389
113864
|
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
112390
113865
|
* const gw = new AIGatewayClient();
|
|
112391
113866
|
*
|
|
112392
113867
|
* await gw.mcpIntegrations.setWorkspaces('f6692544-3265-49be-9711-bbdcebc079e4', {
|
|
112393
|
-
*
|
|
113868
|
+
* workspaces: [{ id: 'ws-development', enabled: true }],
|
|
113869
|
+
* global_workspace_access: { enabled: false },
|
|
113870
|
+
* override_existing_workspace_access: true,
|
|
112394
113871
|
* });
|
|
112395
113872
|
* ```
|
|
112396
113873
|
*/
|
|
112397
|
-
setWorkspaces(mcpIntegrationId: string, body: McpIntegrationWorkspacesRequest): Promise<
|
|
113874
|
+
setWorkspaces(mcpIntegrationId: string, body: McpIntegrationWorkspacesRequest): Promise<McpIntegrationWorkspacesUpdateResponse>;
|
|
112398
113875
|
}
|
|
112399
113876
|
|
|
113877
|
+
/** SCM settings controlling a self-hosted gateway deployment. */
|
|
113878
|
+
interface GatewayDeploymentAuthSettingsInput {
|
|
113879
|
+
gateway_base_url?: string;
|
|
113880
|
+
mcp_gateway_base_url?: string;
|
|
113881
|
+
is_dataservice_hosted?: 0 | 1;
|
|
113882
|
+
is_playground_proxy_allowed?: 0 | 1;
|
|
113883
|
+
/** Workspace slugs this deployment may serve. */
|
|
113884
|
+
workspaces_allowed?: string[];
|
|
113885
|
+
jwt_subs_allowed?: string[];
|
|
113886
|
+
jwt_sub_workspace_mapping?: Record<string, string>;
|
|
113887
|
+
allow_all_workspaces?: boolean;
|
|
113888
|
+
remove_workspaces_allowed?: string[];
|
|
113889
|
+
remove_subs_allowed?: string[];
|
|
113890
|
+
}
|
|
112400
113891
|
/** Request body for creating a deployment. */
|
|
112401
113892
|
interface GatewayDeploymentCreateRequest {
|
|
112402
113893
|
name: string;
|
|
@@ -112405,10 +113896,21 @@ interface GatewayDeploymentCreateRequest {
|
|
|
112405
113896
|
/** The TSG as a numeric string — NOT the organisation UUID returned on reads. */
|
|
112406
113897
|
organisation_id: string;
|
|
112407
113898
|
/** Note `allow_all_workspaces` is a real boolean here; reads return it as 0/1. */
|
|
112408
|
-
auth_settings?:
|
|
112409
|
-
|
|
112410
|
-
|
|
112411
|
-
|
|
113899
|
+
auth_settings?: GatewayDeploymentAuthSettingsInput;
|
|
113900
|
+
deployment_config?: Record<string, unknown>;
|
|
113901
|
+
is_default?: boolean;
|
|
113902
|
+
slug?: string;
|
|
113903
|
+
}
|
|
113904
|
+
/** Request body for updating a deployment. Omitted fields remain unchanged. */
|
|
113905
|
+
interface GatewayDeploymentUpdateRequest {
|
|
113906
|
+
name?: string;
|
|
113907
|
+
type?: string;
|
|
113908
|
+
status?: string;
|
|
113909
|
+
deployment_config?: Record<string, unknown> | null;
|
|
113910
|
+
is_default?: boolean;
|
|
113911
|
+
rotate_auth?: boolean;
|
|
113912
|
+
override_existing?: boolean;
|
|
113913
|
+
auth_settings?: GatewayDeploymentAuthSettingsInput;
|
|
112412
113914
|
}
|
|
112413
113915
|
/** Client for AI Gateway deployment operations (admin plane). */
|
|
112414
113916
|
declare class AIGatewayDeploymentsClient {
|
|
@@ -112479,6 +113981,37 @@ declare class AIGatewayDeploymentsClient {
|
|
|
112479
113981
|
* ```
|
|
112480
113982
|
*/
|
|
112481
113983
|
create(body: GatewayDeploymentCreateRequest): Promise<GatewayDeploymentCreateResponse>;
|
|
113984
|
+
/**
|
|
113985
|
+
* Update deployment settings, including its externally deployed gateway URL and workspace scope.
|
|
113986
|
+
* @param deploymentId - Deployment UUID.
|
|
113987
|
+
* @param body - Fields to update.
|
|
113988
|
+
* @returns The gateway write response.
|
|
113989
|
+
* @example
|
|
113990
|
+
* ```ts
|
|
113991
|
+
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
113992
|
+
* const gw = new AIGatewayClient();
|
|
113993
|
+
* await gw.deployments.update('21414819-485e-4ba3-b3d3-3e1815580e43', {
|
|
113994
|
+
* auth_settings: {
|
|
113995
|
+
* gateway_base_url: 'https://gateway.example.com',
|
|
113996
|
+
* workspaces_allowed: ['ws-develo-71f8d8'],
|
|
113997
|
+
* },
|
|
113998
|
+
* });
|
|
113999
|
+
* ```
|
|
114000
|
+
*/
|
|
114001
|
+
update(deploymentId: string, body: GatewayDeploymentUpdateRequest): Promise<GatewayWriteResponse>;
|
|
114002
|
+
/**
|
|
114003
|
+
* Run SCM's outbound and inbound connectivity checks against a configured gateway.
|
|
114004
|
+
* @param deploymentId - Deployment UUID.
|
|
114005
|
+
* @returns Health of both connectivity directions.
|
|
114006
|
+
* @example
|
|
114007
|
+
* ```ts
|
|
114008
|
+
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
114009
|
+
* const gw = new AIGatewayClient();
|
|
114010
|
+
* const health = await gw.deployments.ping('21414819-485e-4ba3-b3d3-3e1815580e43');
|
|
114011
|
+
* console.log(health.status, health.outbound.status, health.inbound.status);
|
|
114012
|
+
* ```
|
|
114013
|
+
*/
|
|
114014
|
+
ping(deploymentId: string): Promise<GatewayDeploymentPingResponse>;
|
|
112482
114015
|
/**
|
|
112483
114016
|
* Archive a deployment.
|
|
112484
114017
|
*
|
|
@@ -112745,4 +114278,4 @@ declare class AIGatewayClient {
|
|
|
112745
114278
|
constructor(opts?: AIGatewayClientOptions);
|
|
112746
114279
|
}
|
|
112747
114280
|
|
|
112748
|
-
export { AIGatewayApiKeysClient, type AIGatewayAuditLogListOptions, AIGatewayAuditLogsClient, AIGatewayClient, type AIGatewayClientOptions, AIGatewayConfigsClient, AIGatewayDeploymentsClient, type AIGatewayGroupOptions, AIGatewayGuardrailsClient, AIGatewayIntegrationsClient, type AIGatewayLogsOptions, AIGatewayMcpIntegrationsClient, AIGatewayOrganisationsClient, type AIGatewayPlane, AIGatewayPluginsClient, AIGatewayProvidersClient, type AIGatewaySubClientOptions, AIGatewayTelemetryClient, type AIGatewayTelemetryClientOptions, type AIGatewayWindowOptions, type AIGatewayWorkspaceGetOptions, type AIGatewayWorkspaceListOptions, type AIGatewayWorkspaceScopedListOptions, AIGatewayWorkspacesClient, type AIGatewayWorkspacesClientOptions, AIRS_ENDPOINTS, AISecSDKException, type AISecSDKExceptionMetadata, AI_GW_ADMIN_ENDPOINT, AI_GW_API_KEYS_SERVICE_PATH, AI_GW_API_KEYS_USER_PATH, AI_GW_AUDIT_LOGS_PATH, AI_GW_CHARTS_PATH, AI_GW_CHART_METRICS, AI_GW_CONFIGS_PATH, AI_GW_DATA_ENDPOINT, AI_GW_DEPLOYMENTS_PATH, AI_GW_GROUPS_PATH, AI_GW_GROUP_COLUMNS, AI_GW_GROUP_DIMENSIONS, AI_GW_GUARDRAILS_PATH, AI_GW_INTEGRATIONS_PATH, AI_GW_LOGS_PATH, AI_GW_MCP_INTEGRATIONS_PATH, AI_GW_ORGANISATIONS_SELF_PATH, AI_GW_PLUGINS_PATH, AI_GW_PROVIDERS_PATH, AI_GW_WORKSPACES_PATH, AI_SEC_API_ENDPOINT, AI_SEC_API_KEY, AI_SEC_API_TOKEN, ASYNC_SCAN_PATH, Action, Action as ActionType, type AdapterCreateRequest, AdapterCreateRequestSchema, type AdapterList, type AdapterListItem, AdapterListItemSchema, AdapterListSchema, type AdapterOperationOptions, type AdapterResponse, AdapterResponseSchema, type AdapterUpdateRequest, AdapterUpdateRequestSchema, type AdapterValidateRequest, AdapterValidateRequestSchema, type AdapterValidateResponse, AdapterValidateResponseSchema, type AdapterVar, type AdapterVarResponse, AdapterVarResponseSchema, AdapterVarSchema, type AdapterVarType, AdapterVarTypeSchema, type AdvancedDataProfileRequest, AdvancedDataProfileRequestSchema, type AgentEntry, AgentEntrySchema, type AgentMeta, AgentMetaSchema, type AgentProtectionItem, AgentProtectionItemSchema, type AgentReport, AgentReportSchema, type AiProfile, AiProfileSchema, type AiSecurityProfile, AiSecurityProfileSchema, ApiEndpointType, type ApiKey, type ApiKeyCreateRequest, ApiKeyCreateRequestSchema, type ApiKeyDPInfo, ApiKeyDPInfoSchema, type ApiKeyDeleteResponse, ApiKeyDeleteResponseSchema, type ApiKeyListResponse, ApiKeyListResponseSchema, type ApiKeyRegenerateRequest, ApiKeyRegenerateRequestSchema, ApiKeySchema, ApiKeysClient, type ApiKeysClientOptions, type AppExclusion, AppExclusionSchema, type AsyncScanObject, AsyncScanObjectSchema, type AsyncScanResponse, AsyncScanResponseSchema, type AttackDetailResponse, AttackDetailResponseSchema, type AttackListItem, AttackListItemSchema, type AttackListOptions, type AttackListResponse, AttackListResponseSchema, type AttackMultiTurnDetailResponse, AttackMultiTurnDetailResponseSchema, type AttackMultiTurnOutput, AttackMultiTurnOutputSchema, type AttackOutput, AttackOutputSchema, AttackStatus, AttackType, type AuditResponse, AuditResponseSchema, type AuthConfig, AuthConfigSchema, type AuthSettingsResponse, AuthSettingsResponseSchema, AuthType, BEARER, type BaseResponse, BaseResponseSchema, type BasicAuthAuthConfig, BasicAuthAuthConfigSchema, BasicAuthLocation, type BedrockAccessConnectionParams, BedrockAccessConnectionParamsSchema, BrandSubCategory, type CacheHitTrendResponse, CacheHitTrendResponseSchema, type CacheSummaryResponse, CacheSummaryResponseSchema, Category, type CategoryModel, CategoryModelSchema, type CategoryReport, CategoryReportSchema, Category as CategoryType, type CgReport, CgReportSchema, type Channel, type ChannelListOptions, type ChannelListPagination, ChannelListPaginationSchema, type ChannelListResponse, ChannelListResponseSchema, ChannelSchema, type ChannelStats, ChannelStatsSchema, ChannelStatus, ChannelStatusSchema, type ChannelStatusType, type ClientIdAndCustomerApp, ClientIdAndCustomerAppSchema, type CmdEntry, CmdEntrySchema, type CmdInjectReport, CmdInjectReportSchema, type ComparisonOperatorType, ComparisonOperatorTypeSchema, type ComplianceReport, ComplianceReportSchema, ComplianceSubCategory, type ComplianceTechnique, ComplianceTechniqueSchema, type ConnectionParams, ConnectionParamsSchema, Content, type ContentError, ContentErrorSchema, ContentErrorType, ContentErrorType as ContentErrorTypeType, type ContentOptions, type CostChartResponse, CostChartResponseSchema, type CountByName, CountByNameSchema, type CountChartResponse, CountChartResponseSchema, CountedQuotaEnum, type CreateChannelRequest, CreateChannelRequestSchema, type CreateCustomTopicRequest, CreateCustomTopicRequestSchema, type CreateSecurityProfileRequest, CreateSecurityProfileRequestSchema, type CustomAttackOutput, CustomAttackOutputSchema, type CustomAttackReportResponse, CustomAttackReportResponseSchema, type CustomAttacksListResponse, CustomAttacksListResponseSchema, type CustomAttacksReportListOptions, type CustomJobMetadata, CustomJobMetadataSchema, type CustomPromptCreateRequest, CustomPromptCreateRequestSchema, type CustomPromptList, type CustomPromptListItem, CustomPromptListItemSchema, CustomPromptListSchema, type CustomPromptResponse, CustomPromptResponseSchema, type CustomPromptSetArchiveRequest, CustomPromptSetArchiveRequestSchema, type CustomPromptSetCreateRequest, CustomPromptSetCreateRequestSchema, type CustomPromptSetList, type CustomPromptSetListActive, CustomPromptSetListActiveSchema, type CustomPromptSetListItem, CustomPromptSetListItemSchema, CustomPromptSetListSchema, type CustomPromptSetReference, CustomPromptSetReferenceSchema, type CustomPromptSetResponse, CustomPromptSetResponseSchema, type CustomPromptSetUpdateRequest, CustomPromptSetUpdateRequestSchema, type CustomPromptSetVersionInfo, CustomPromptSetVersionInfoSchema, type CustomPromptUpdateRequest, CustomPromptUpdateRequestSchema, type CustomTopic, type CustomTopicListResponse, CustomTopicListResponseSchema, CustomTopicSchema, type CustomerApp, type CustomerAppDeleteResponse, CustomerAppDeleteResponseSchema, type CustomerAppListResponse, CustomerAppListResponseSchema, CustomerAppSchema, type CustomerAppWithKeys, CustomerAppWithKeysSchema, CustomerAppsClient, type CustomerAppsClientOptions, DEFAULT_AI_GW_ADMIN_ENDPOINT, DEFAULT_AI_GW_DATA_ENDPOINT, DEFAULT_DLP_ENDPOINT, DEFAULT_ENDPOINT, DEFAULT_MGMT_ENDPOINT, DEFAULT_MODEL_SEC_DATA_ENDPOINT, DEFAULT_MODEL_SEC_MGMT_ENDPOINT, DEFAULT_RED_TEAM_DATA_ENDPOINT, DEFAULT_RED_TEAM_MGMT_ENDPOINT, DEFAULT_RED_TEAM_NETWORK_BROKER_ENDPOINT, DEFAULT_TOKEN_ENDPOINT, DLP_DATA_FILTERING_PROFILES_PATH, DLP_DATA_PATTERNS_PATH, DLP_DATA_PROFILES_PATH, DLP_DICTIONARIES_PATH, type DSDetailResult, DSDetailResultSchema, type DSResultMetadata, DSResultMetadataSchema, type DashboardAppQuery, type DashboardApplication, DashboardApplicationSchema, type DashboardApplicationSessionsBucket, DashboardApplicationSessionsBucketSchema, type DashboardApplicationViolationBreakdown, DashboardApplicationViolationBreakdownSchema, type DashboardApplicationsOverview, type DashboardApplicationsOverviewItem, DashboardApplicationsOverviewItemSchema, type DashboardApplicationsOverviewQuery, DashboardApplicationsOverviewSchema, DashboardClient, type DashboardClientOptions, type DashboardOverviewResponse, DashboardOverviewResponseSchema, type DashboardPagination, DashboardPaginationSchema, type DashboardSessionStats, DashboardSessionStatsSchema, type DataFilteringDetails, DataFilteringDetailsSchema, type DataFilteringProfileListParams, type DataFilteringProfileRequest, DataFilteringProfileRequestSchema, type DataFilteringProfileResponse, DataFilteringProfileResponseSchema, DataFilteringProfilesClient, type DataFilteringProfilesClientOptions, type DataFilteringRuleDTO, DataFilteringRuleDTOSchema, type DataLeakDetectionMember, DataLeakDetectionMemberSchema, type DataPatternConfidenceLevel, DataPatternConfidenceLevelSchema, type DataPatternDetectionConfig, DataPatternDetectionConfigSchema, type DataPatternLicenseType, DataPatternLicenseTypeSchema, type DataPatternListParams, type DataPatternMatchingRules, DataPatternMatchingRulesSchema, type DataPatternPatchRequest, DataPatternPatchRequestSchema, type DataPatternRequest, DataPatternRequestSchema, type DataPatternResponse, DataPatternResponseSchema, type DataPatternStatus, DataPatternStatusSchema, type DataPatternTags, DataPatternTagsSchema, type DataPatternTechnique, DataPatternTechniqueSchema, type DataPatternType, DataPatternTypeSchema, DataPatternsClient, type DataPatternsClientOptions, type DataProfileListParams, type DataProfilePatchRequest, DataProfilePatchRequestSchema, type DataProfileResponse, DataProfileResponseSchema, type DataProfileStatus, DataProfileStatusSchema, type DataProfileSubtype, DataProfileSubtypeSchema, type DataProfileType, DataProfileTypeSchema, DataProfilesClient, type DataProfilesClientOptions, type DataProtection, DataProtectionSchema, type DatabaseSecurityItem, DatabaseSecurityItemSchema, type DatabricksConnectionParams, DatabricksConnectionParamsSchema, DateRangeFilter, type DbsEntry, DbsEntrySchema, type DbsReport, DbsReportSchema, type DefaultTreeDetectionRule, DefaultTreeDetectionRuleSchema, type DeleteProfileConflict, DeleteProfileConflictSchema, type DeleteProfileResponse, DeleteProfileResponseSchema, type DeleteTopicConflict, DeleteTopicConflictSchema, type DeleteTopicResponse, DeleteTopicResponseSchema, type DeploymentProfileAttribute, DeploymentProfileAttributeSchema, type DeploymentProfileEntry, DeploymentProfileEntrySchema, type DeploymentProfileListOptions, type DeploymentProfileRequest, DeploymentProfileRequestSchema, DeploymentProfilesClient, type DeploymentProfilesClientOptions, type DeploymentProfilesResponse, DeploymentProfilesResponseSchema, type DestinationAttributes, DestinationAttributesSchema, type DetectionRule, type DetectionRuleItem, DetectionRuleItemSchema, DetectionRuleSchema, DetectionServiceName, DetectionServiceName as DetectionServiceNameType, type DetectionServiceResult, DetectionServiceResultSchema, type DetectorViolationBreakdownEntry, DetectorViolationBreakdownEntrySchema, type Device, type DeviceInstance, DeviceInstanceSchema, type DeviceLicense, DeviceLicenseSchema, type DeviceRequest, DeviceRequestSchema, type DeviceResponse, DeviceResponseSchema, DeviceSchema, type DeviceStatus, DeviceStatusSchema, DictionariesClient, type DictionariesClientOptions, type DictionaryCategory, DictionaryCategorySchema, type DictionaryClassification, DictionaryClassificationSchema, type DictionaryDetectionSubTechnique, DictionaryDetectionSubTechniqueSchema, type DictionaryDetectionTechnique, DictionaryDetectionTechniqueSchema, type DictionaryFileInput, type DictionaryGetParams, type DictionaryListParams, type DictionaryMetaDataDTO, DictionaryMetaDataDTOSchema, type DictionaryPatchRequest, DictionaryPatchRequestSchema, type DictionaryRequest, DictionaryRequestSchema, type DictionaryResponse, DictionaryResponseSchema, type DictionaryTags, DictionaryTagsSchema, type DictionaryType, DictionaryTypeSchema, type DictionaryUploadParams, type DlpDataProfile, type DlpDataProfilePolicy, DlpDataProfilePolicySchema, DlpDataProfileSchema, DlpNamespace, type DlpNamespaceOptions, type DlpPatternDetection, DlpPatternDetectionSchema, type DlpProfileListResponse, DlpProfileListResponseSchema, DlpProfilesClient, type DlpProfilesClientOptions, type DlpReport, DlpReportSchema, type DlpRule, DlpRuleSchema, type DynamicJobMetadata, DynamicJobMetadataSchema, type DynamicJobReport, DynamicJobReportSchema, type DynamicJobReportStats, DynamicJobReportStatsSchema, ErrorCodes, type ErrorLog, type ErrorLogListResponse, ErrorLogListResponseSchema, ErrorLogSchema, type ErrorResponse, ErrorResponseSchema, ErrorSource, ErrorStatus, ErrorStatus as ErrorStatusType, type ErrorTrendsResponse, ErrorTrendsResponseSchema, ErrorType, type EulaAcceptRequest, EulaAcceptRequestSchema, type EulaContentResponse, EulaContentResponseSchema, type EulaResponse, EulaResponseSchema, EvalOutcome, type EvalSummary, EvalSummarySchema, type ExceptionRuleDTO, ExceptionRuleDTOSchema, type Exclusions, ExclusionsSchema, type ExpressionOperatorType, ExpressionOperatorTypeSchema, type ExpressionTreeNode, ExpressionTreeNodeSchema, type FeedbackModelsResponse, FeedbackModelsResponseSchema, type FeedbackScoreDistributionResponse, FeedbackScoreDistributionResponseSchema, FileFormat, type FileList, FileListSchema, type FileResponse, FileResponseSchema, type FileScanData, FileScanDataSchema, FileScanResult, FileType, type GatewayApiKey, type GatewayApiKeyCreateRequest, GatewayApiKeySchema, type GatewayAuditLogRecord, GatewayAuditLogRecordSchema, type GatewayAuditLogsResponse, GatewayAuditLogsResponseSchema, type GatewayChartRecord, GatewayChartRecordSchema, type GatewayConfig, type GatewayConfigCreateRequest, type GatewayConfigCreateResponse, GatewayConfigCreateResponseSchema, type GatewayConfigDetail, GatewayConfigDetailSchema, GatewayConfigSchema, type GatewayDeployment, type GatewayDeploymentCreateRequest, type GatewayDeploymentCreateResponse, GatewayDeploymentCreateResponseSchema, type GatewayDeploymentDetail, GatewayDeploymentDetailSchema, GatewayDeploymentSchema, type GatewayGlobalWorkspaceAccess, GatewayGlobalWorkspaceAccessSchema, type GatewayGroupRow, GatewayGroupRowSchema, type GatewayGuardrail, type GatewayGuardrailCheck, type GatewayGuardrailCreateRequest, type GatewayGuardrailCreateResponse, GatewayGuardrailCreateResponseSchema, type GatewayGuardrailDetail, GatewayGuardrailDetailSchema, GatewayGuardrailSchema, type GatewayIntegration, type GatewayIntegrationCreateRequest, type GatewayIntegrationModelsRequest, type GatewayIntegrationModelsResponse, GatewayIntegrationModelsResponseSchema, GatewayIntegrationSchema, type GatewayIntegrationWorkspace, GatewayIntegrationWorkspaceSchema, type GatewayIntegrationWorkspacesRequest, type GatewayIntegrationWorkspacesResponse, GatewayIntegrationWorkspacesResponseSchema, type GatewayLogRecord, GatewayLogRecordSchema, type GatewayLogsResponse, GatewayLogsResponseSchema, type GatewayPlugin, type GatewayPluginCreateRequest, GatewayPluginSchema, type GatewayProvider, type GatewayProviderCreateRequest, type GatewayProviderCreateResponse, GatewayProviderCreateResponseSchema, GatewayProviderSchema, type GatewayRateLimit, GatewayRateLimitSchema, type GatewayUsageLimit, GatewayUsageLimitSchema, type GatewayWorkspace, type GatewayWorkspaceCreateRequest, type GatewayWorkspaceCreateResponse, GatewayWorkspaceCreateResponseSchema, type GatewayWorkspaceDetail, GatewayWorkspaceDetailSchema, GatewayWorkspaceSchema, type GatewayWorkspaceUpdateRequest, type GatewayWriteResponse, GatewayWriteResponseSchema, type GetTokenOptions, type Goal, type GoalListOptions, type GoalListResponse, GoalListResponseSchema, GoalSchema, GoalType, GoalTypeQueryParam, type GroupListResponse, GroupListResponseSchema, GuardrailAction, HEADER_API_KEY, HEADER_AUTH_TOKEN, type HTTPValidationError, HTTPValidationErrorSchema, HTTP_FORCE_RETRY_STATUS_CODES, type HeadersAuthConfig, HeadersAuthConfigSchema, type HuggingfaceConnectionParams, HuggingfaceConnectionParamsSchema, type IODetected, IODetectedSchema, type InitOptions, type InstanceExtraDetails, InstanceExtraDetailsSchema, type InstanceGetResponse, InstanceGetResponseSchema, type InstanceRequest, InstanceRequestSchema, type InstanceResponse, InstanceResponseSchema, type JobAbortResponse, JobAbortResponseSchema, type JobCreateRequest, JobCreateRequestSchema, type JobListResponse, JobListResponseSchema, type JobResponse, JobResponseSchema, JobStatus, JobStatusFilter, type JobTimeRecord, JobTimeRecordSchema, JobType, type JsonNullable, type Label, type LabelKeyList, LabelKeyListSchema, LabelSchema, type LabelValueList, LabelValueListSchema, type LabelsCreateRequest, LabelsCreateRequestSchema, type LabelsResponse, LabelsResponseSchema, type LanguageOption, LanguageOptionSchema, type LatencyChartResponse, LatencyChartResponseSchema, type ListApiKeysResponse, ListApiKeysResponseSchema, type ListConfigsResponse, ListConfigsResponseSchema, type ListDeploymentsResponse, ListDeploymentsResponseSchema, type ListGuardrailsResponse, ListGuardrailsResponseSchema, type ListIntegrationsResponse, ListIntegrationsResponseSchema, type ListMcpIntegrationsResponse, ListMcpIntegrationsResponseSchema, type ListModelSecurityGroupsResponse, ListModelSecurityGroupsResponseSchema, type ListModelSecurityRuleInstancesResponse, ListModelSecurityRuleInstancesResponseSchema, type ListModelSecurityRulesResponse, ListModelSecurityRulesResponseSchema, type ListPluginsResponse, ListPluginsResponseSchema, type ListProvidersResponse, ListProvidersResponseSchema, type ListWorkspacesResponse, ListWorkspacesResponseSchema, type ListingOptions, MAX_AI_PROFILE_NAME_LENGTH, MAX_API_KEY_LENGTH, MAX_CONNECTION_POOL_SIZE, MAX_CONTENT_CONTEXT_LENGTH, MAX_CONTENT_PROMPT_LENGTH, MAX_CONTENT_RESPONSE_LENGTH, MAX_NUMBER_OF_BATCH_SCAN_OBJECTS, MAX_NUMBER_OF_REPORT_IDS, MAX_NUMBER_OF_RETRIES, MAX_NUMBER_OF_SCAN_IDS, MAX_REPORT_ID_STR_LENGTH, MAX_SCAN_ID_STR_LENGTH, MAX_SESSION_ID_STR_LENGTH, MAX_TOKEN_LENGTH, MAX_TRANSACTION_ID_STR_LENGTH, MGMT_API_KEYS_TSG_PATH, MGMT_API_KEY_PATH, MGMT_CLIENT_ID, MGMT_CLIENT_SECRET, MGMT_CUSTOMER_APPS_TSG_PATH, MGMT_CUSTOMER_APP_PATH, MGMT_DASHBOARD_APPLICATIONS_OVERVIEW_PATH, MGMT_DASHBOARD_APPLICATION_PATH, MGMT_DASHBOARD_APPLICATION_VIOLATION_BREAKDOWN_PATH, MGMT_DEPLOYMENT_PROFILES_PATH, MGMT_DLP_PROFILES_PATH, MGMT_ENDPOINT, MGMT_OAUTH_INVALIDATE_PATH, MGMT_OAUTH_TOKEN_PATH, MGMT_PROFILES_TSG_PATH, MGMT_PROFILE_PATH, MGMT_SCAN_LOGS_PATH, MGMT_TOKEN_ENDPOINT, MGMT_TOPICS_TSG_PATH, MGMT_TOPIC_FORCE_PATH, MGMT_TOPIC_PATH, MGMT_TSG_ID, MODEL_SEC_CLIENT_ID, MODEL_SEC_CLIENT_SECRET, MODEL_SEC_DATA_ENDPOINT, MODEL_SEC_EVALUATIONS_PATH, MODEL_SEC_MGMT_ENDPOINT, MODEL_SEC_MODELS_PATH, MODEL_SEC_MODEL_VERSIONS_PATH, MODEL_SEC_PYPI_AUTH_PATH, MODEL_SEC_SCANS_PATH, MODEL_SEC_SECURITY_GROUPS_PATH, MODEL_SEC_SECURITY_RULES_PATH, MODEL_SEC_TOKEN_ENDPOINT, MODEL_SEC_TSG_ID, MODEL_SEC_VIOLATIONS_PATH, type MaliciousCodeProtection, MaliciousCodeProtectionSchema, type MalwareReport, MalwareReportSchema, ManagementClient, type ManagementClientOptions, type MaskedData, MaskedDataSchema, type McEntry, McEntrySchema, type McReport, McReportSchema, type McpIntegration, type McpIntegrationCreateRequest, McpIntegrationSchema, type McpIntegrationWorkspacesRequest, type Metadata, type MetadataCriterion, MetadataCriterionSchema, MetadataSchema, type Model, type ModelConfiguration, ModelConfigurationSchema, type ModelList, ModelListSchema, type ModelProtectionItem, ModelProtectionItemSchema, ModelResponseSchema, type ModelScanIssue, ModelScanIssueSchema, ModelScanStatus, ModelSecurityClient, type ModelSecurityClientOptions, type ModelSecurityEvaluationListOptions, type ModelSecurityFileListOptions, type ModelSecurityGroupCreateRequest, ModelSecurityGroupCreateRequestSchema, type ModelSecurityGroupListOptions, type ModelSecurityGroupResponse, ModelSecurityGroupResponseSchema, ModelSecurityGroupState, type ModelSecurityGroupUpdateRequest, ModelSecurityGroupUpdateRequestSchema, ModelSecurityGroupsClient, type ModelSecurityGroupsClientOptions, type ModelSecurityLabelListOptions, type ModelSecurityModelListOptions, type ModelSecurityModelVersionFileListOptions, type ModelSecurityModelVersionListOptions, ModelSecurityModelsClient, type ModelSecurityModelsClientOptions, type ModelSecurityPagination, ModelSecurityPaginationSchema, type ModelSecurityRuleInstanceListOptions, type ModelSecurityRuleInstanceResponse, ModelSecurityRuleInstanceResponseSchema, type ModelSecurityRuleInstanceUpdateRequest, ModelSecurityRuleInstanceUpdateRequestSchema, type ModelSecurityRuleListOptions, type ModelSecurityRuleResponse, ModelSecurityRuleResponseSchema, ModelSecurityRulesClient, type ModelSecurityRulesClientOptions, type ModelSecurityScanListOptions, ModelSecurityScansClient, type ModelSecurityScansClientOptions, type ModelSecurityViolationListOptions, type ModelVersion, type ModelVersionList, ModelVersionListSchema, ModelVersionResponseSchema, type MultiProfileDataNode, MultiProfileDataNodeSchema, type MultiProfileDetectionRule, MultiProfileDetectionRuleSchema, type MultiTurnStatefulConfig, MultiTurnStatefulConfigSchema, type MultiTurnStatelessConfig, MultiTurnStatelessConfigSchema, type OAuth2AuthConfig, OAuth2AuthConfigSchema, OAuthClient, type OAuthClientOptions, OAuthManagementClient, type OAuthManagementClientOptions, type Oauth2Token, Oauth2TokenSchema, type Offset, OffsetSchema, type OpenAIConnectionParams, OpenAIConnectionParamsSchema, type OrganisationSelfResponse, OrganisationSelfResponseSchema, PAYLOAD_HASH, type Page, type PageDataFilteringProfileResponse, PageDataFilteringProfileResponseSchema, type PageDataPatternResponse, PageDataPatternResponseSchema, type PageDataProfileResponse, PageDataProfileResponseSchema, type PageDictionaryResponse, PageDictionaryResponseSchema, type PageableObject, PageableObjectSchema, type PaginatedScanResults, PaginatedScanResultsSchema, type PaginationOptions, type PatternDetection, PatternDetectionSchema, type Policy, type PolicyAppProtection, PolicyAppProtectionSchema, type PolicyLatency, PolicyLatencySchema, PolicySchema, PolicyType, type PrerequisiteModel, PrerequisiteModelSchema, ProfilesClient, type ProfilesClientOptions, ProfilingStatus, type PromptDetailResponse, PromptDetailResponseSchema, type PromptDetected, PromptDetectedSchema, type PromptDetectionDetails, PromptDetectionDetailsSchema, type PromptListOptions, type PromptSetListOptions, type PromptSetStats, PromptSetStatsSchema, type PromptSetSummary, PromptSetSummarySchema, type PromptSetsReportResponse, PromptSetsReportResponseSchema, type PromptsBySetListOptions, type PropertyAssignment, PropertyAssignmentSchema, type PropertyDefinition, PropertyDefinitionSchema, type PropertyNameCreateRequest, PropertyNameCreateRequestSchema, type PropertyNamesListResponse, PropertyNamesListResponseSchema, type PropertyStatistic, PropertyStatisticSchema, type PropertyValueCreateRequest, PropertyValueCreateRequestSchema, type PropertyValueStatistic, PropertyValueStatisticSchema, type PropertyValuesMultipleResponse, PropertyValuesMultipleResponseSchema, type PropertyValuesResponse, PropertyValuesResponseSchema, type PyPIAuthResponse, PyPIAuthResponseSchema, type QuotaDetails, QuotaDetailsSchema, type QuotaSummary, QuotaSummarySchema, RED_TEAM_ADAPTER_PATH, RED_TEAM_ADAPTER_VALIDATE_PATH, RED_TEAM_CATEGORIES_PATH, RED_TEAM_CHANNELS_PATH, RED_TEAM_CHANNELS_STATS_PATH, RED_TEAM_CLIENT_ID, RED_TEAM_CLIENT_SECRET, RED_TEAM_CUSTOM_ATTACKS_REPORT_PATH, RED_TEAM_CUSTOM_ATTACK_PATH, RED_TEAM_DASHBOARD_PATH, RED_TEAM_DATA_ENDPOINT, RED_TEAM_ERROR_LOG_PATH, RED_TEAM_ERROR_LOG_TARGET_PROFILE_PATH, RED_TEAM_EULA_PATH, RED_TEAM_INSTANCES_PATH, RED_TEAM_LANGUAGES_PATH, RED_TEAM_MGMT_DASHBOARD_PATH, RED_TEAM_MGMT_ENDPOINT, RED_TEAM_NETWORK_BROKER_ENDPOINT, RED_TEAM_QUOTA_PATH, RED_TEAM_REGISTRY_CREDENTIALS_PATH, RED_TEAM_REPORT_DYNAMIC_PATH, RED_TEAM_REPORT_PATH, RED_TEAM_REPORT_STATIC_PATH, RED_TEAM_SCAN_PATH, RED_TEAM_SENTIMENT_PATH, RED_TEAM_TARGET_PATH, RED_TEAM_TARGET_VALIDATE_AUTH_PATH, RED_TEAM_TEMPLATE_PATH, RED_TEAM_TOKEN_ENDPOINT, RED_TEAM_TSG_ID, RedTeamAdaptersClient, type RedTeamAdaptersClientOptions, RedTeamCategory, RedTeamClient, type RedTeamClientOptions, RedTeamCustomAttackReportsClient, type RedTeamCustomAttackReportsClientOptions, RedTeamCustomAttacksClient, type RedTeamCustomAttacksClientOptions, RedTeamErrorType, RedTeamEulaClient, type RedTeamEulaClientOptions, RedTeamInstancesClient, type RedTeamInstancesClientOptions, type RedTeamListOptions, RedTeamNetworkBrokerClient, type RedTeamNetworkBrokerClientOptions, type RedTeamPagination, RedTeamPaginationSchema, RedTeamReportsClient, type RedTeamReportsClientOptions, type RedTeamScanListOptions, RedTeamScansClient, type RedTeamScansClientOptions, RedTeamTargetsClient, type RedTeamTargetsClientOptions, type RegistryCredentials, RegistryCredentialsSchema, type RemediationDetail, RemediationDetailSchema, type RemediationResponse, RemediationResponseSchema, type RescuedRetriesResponse, RescuedRetriesResponseSchema, type ResourceModelExtension, ResourceModelExtensionSchema, type ResponseDetected, ResponseDetectedSchema, type ResponseDetectionDetails, ResponseDetectionDetailsSchema, ResponseMode, type RestConnectionParams, RestConnectionParamsSchema, type RiskLevel, RiskLevelSchema, RiskRating, type RuleConfiguration, RuleConfigurationSchema, type RuleEditableField, type RuleEditableFieldDropdown, RuleEditableFieldDropdownSchema, RuleEditableFieldSchema, RuleEditableFieldType, type RuleEvaluationList, RuleEvaluationListSchema, type RuleEvaluationResponse, RuleEvaluationResponseSchema, RuleEvaluationResult, RuleFieldValueKey, type RuleItemConfidenceLevel, RuleItemConfidenceLevelSchema, type RuleItemDetectionTechnique, RuleItemDetectionTechniqueSchema, type RuleItemEdmMatchCriteria, RuleItemEdmMatchCriteriaSchema, type RuleItemMatchType, RuleItemMatchTypeSchema, type RuleItemOccurrenceOperatorType, RuleItemOccurrenceOperatorTypeSchema, type RuleRemediation, RuleRemediationSchema, RuleState, RuleType, type RuntimeSecurityPolicy, RuntimeSecurityPolicySchema, type RuntimeSecurityProfileResponse, RuntimeSecurityProfileResponseSchema, SCAN_REPORTS_PATH, SCAN_RESULTS_PATH, SDK_VERSION, SYNC_SCAN_PATH, SafetySubCategory, type ScanBaseResponse, ScanBaseResponseSchema, type ScanCallOptions, type ScanCreateRequest, ScanCreateRequestSchema, type ScanDetails, ScanDetailsSchema, type ScanIdResult, ScanIdResultSchema, type ScanList, ScanListSchema, type ScanLogQueryOptions, ScanLogsClient, type ScanLogsClientOptions, ScanOrigin, type ScanRequest, type ScanRequestContentsInner, ScanRequestContentsInnerSchema, ScanRequestSchema, type ScanResponse, ScanResponseSchema, type ScanResultEntry, ScanResultEntrySchema, type ScanResultForDashboard, ScanResultForDashboardSchema, type ScanStatisticsResponse, ScanStatisticsResponseSchema, type ScanSummary, ScanSummarySchema, Scanner, type ScoreTrendResponse, ScoreTrendResponseSchema, type ScoreTrendSeries, ScoreTrendSeriesSchema, type SecurityProfile, type SecurityProfileListResponse, SecurityProfileListResponseSchema, SecurityProfileSchema, SecuritySubCategory, type SentimentRequest, SentimentRequestSchema, type SentimentResponse, SentimentResponseSchema, SeverityFilter, type SeverityReport, SeverityReportSchema, type SeverityStats, SeverityStatsSchema, SortByDateField, SortByFileField, SortDirection, type SortObject, SortObjectSchema, type SourceAttributes, SourceAttributesSchema, SourceType, type StaticJobMetadata, StaticJobMetadataSchema, type StaticJobRemediation, type StaticJobRemediationRecommendation, StaticJobRemediationRecommendationSchema, StaticJobRemediationSchema, type StaticJobReport, StaticJobReportSchema, type StaticJobReportStats, StaticJobReportStatsSchema, StatusQueryParam, type StreamDetailResponse, StreamDetailResponseSchema, type StreamIterationData, StreamIterationDataSchema, type StreamListResponse, StreamListResponseSchema, StreamType, type StreamingConnectionParams, StreamingConnectionParamsSchema, type SubCategoryModel, SubCategoryModelSchema, type SubCategoryStats, SubCategoryStatsSchema, type SyncScanOptions, TSG_ID_HEADER, type TargetAdditionalContext, TargetAdditionalContextSchema, TargetAuthType, type TargetAuthValidationRequest, TargetAuthValidationRequestSchema, type TargetAuthValidationResponse, TargetAuthValidationResponseSchema, type TargetBackground, TargetBackgroundSchema, TargetConnectionType, type TargetContextUpdate, TargetContextUpdateSchema, type TargetCreateRequest, TargetCreateRequestSchema, type TargetJobRequest, TargetJobRequestSchema, type TargetList, type TargetListItem, TargetListItemSchema, type TargetListOptions, TargetListSchema, type TargetMetadata, TargetMetadataSchema, type TargetOperationOptions, type TargetProbeRequest, TargetProbeRequestSchema, type TargetProfileResponse, TargetProfileResponseSchema, type TargetReference, TargetReferenceSchema, type TargetResponse, TargetResponseSchema, TargetStatus, type TargetTemplateCollection, TargetTemplateCollectionSchema, TargetType, type TargetUpdateRequest, TargetUpdateRequestSchema, type TcReport, TcReportSchema, type TenantLanguagesResponse, TenantLanguagesResponseSchema, type TgReport, TgReportSchema, ThreatCategory, type ThreatScanReport, ThreatScanReportSchema, type TokenInfo, type TokenStats, TokenStatsSchema, type TokensChartResponse, TokensChartResponseSchema, type ToolDetected, ToolDetectedSchema, type ToolDetectionDetails, ToolDetectionDetailsSchema, type ToolDetectionEntry, ToolDetectionEntrySchema, type ToolDetectionFlags, ToolDetectionFlagsSchema, type ToolEvent, type ToolEventMetadata, ToolEventMetadataSchema, ToolEventSchema, type TopicArray, TopicArraySchema, type TopicObject, TopicObjectSchema, TopicsClient, type TopicsClientOptions, type URLExclusion, URLExclusionSchema, USER_AGENT, type UpdateChannelRequest, UpdateChannelRequestSchema, type UrlCategory, UrlCategorySchema, type UrlfEntry, UrlfEntrySchema, type UserGroupResponse, UserGroupResponseSchema, type UserTrendsResponse, UserTrendsResponseSchema, type ValidationError, ValidationErrorSchema, Verdict, Verdict as VerdictType, type ViolationList, ViolationListSchema, type ViolationRemediation, ViolationRemediationSchema, type ViolationResponse, ViolationResponseSchema, type ViolationSeverityCounts, ViolationSeverityCountsSchema, type WebSocketConnectionParams, WebSocketConnectionParamsSchema, type WeightedRegex, WeightedRegexSchema, aiGwOrganisationsAuthSettingsPath, globalConfiguration, init, jsonNullable, pageSchema };
|
|
114281
|
+
export { AIGatewayApiKeysClient, type AIGatewayAuditLogListOptions, AIGatewayAuditLogsClient, AIGatewayClient, type AIGatewayClientOptions, AIGatewayConfigsClient, AIGatewayDeploymentsClient, type AIGatewayGroupOptions, AIGatewayGuardrailsClient, AIGatewayIntegrationsClient, type AIGatewayLogsOptions, AIGatewayMcpIntegrationsClient, AIGatewayOrganisationsClient, type AIGatewayPlane, AIGatewayPluginsClient, AIGatewayProvidersClient, type AIGatewaySubClientOptions, AIGatewayTelemetryClient, type AIGatewayTelemetryClientOptions, type AIGatewayWindowOptions, type AIGatewayWorkspaceGetOptions, type AIGatewayWorkspaceListOptions, type AIGatewayWorkspaceScopedListOptions, AIGatewayWorkspacesClient, type AIGatewayWorkspacesClientOptions, AIRS_ENDPOINTS, AISecSDKException, type AISecSDKExceptionMetadata, AI_GW_ADMIN_ENDPOINT, AI_GW_API_KEYS_SERVICE_PATH, AI_GW_API_KEYS_USER_PATH, AI_GW_AUDIT_LOGS_PATH, AI_GW_CHARTS_PATH, AI_GW_CHART_METRICS, AI_GW_CONFIGS_PATH, AI_GW_DATA_ENDPOINT, AI_GW_DEPLOYMENTS_PATH, AI_GW_GROUPS_PATH, AI_GW_GROUP_COLUMNS, AI_GW_GROUP_DIMENSIONS, AI_GW_GUARDRAILS_PATH, AI_GW_INTEGRATIONS_PATH, AI_GW_LOGS_PATH, AI_GW_MCP_INTEGRATIONS_PATH, AI_GW_ORGANISATIONS_SELF_PATH, AI_GW_PLUGINS_PATH, AI_GW_PROVIDERS_PATH, AI_GW_WORKSPACES_PATH, AI_SEC_API_ENDPOINT, AI_SEC_API_KEY, AI_SEC_API_TOKEN, ASYNC_SCAN_PATH, Action, Action as ActionType, type AdapterCreateRequest, AdapterCreateRequestSchema, type AdapterList, type AdapterListAllOptions, type AdapterListItem, AdapterListItemSchema, AdapterListSchema, type AdapterOperationOptions, type AdapterResponse, AdapterResponseSchema, type AdapterUpdateRequest, AdapterUpdateRequestSchema, type AdapterValidateRequest, AdapterValidateRequestSchema, type AdapterValidateResponse, AdapterValidateResponseSchema, type AdapterVar, type AdapterVarResponse, AdapterVarResponseSchema, AdapterVarSchema, type AdapterVarType, AdapterVarTypeSchema, type AdvancedDataProfileRequest, AdvancedDataProfileRequestSchema, type AgentEntry, AgentEntrySchema, type AgentMeta, AgentMetaSchema, type AgentProtectionItem, AgentProtectionItemSchema, type AgentReport, AgentReportSchema, type AiProfile, AiProfileSchema, type AiSecurityProfile, AiSecurityProfileSchema, ApiEndpointType, type ApiKey, type ApiKeyCreateRequest, ApiKeyCreateRequestSchema, type ApiKeyDPInfo, ApiKeyDPInfoSchema, type ApiKeyDeleteResponse, ApiKeyDeleteResponseSchema, type ApiKeyListAllOptions, type ApiKeyListResponse, ApiKeyListResponseSchema, type ApiKeyRegenerateRequest, ApiKeyRegenerateRequestSchema, ApiKeySchema, ApiKeysClient, type ApiKeysClientOptions, type AppExclusion, AppExclusionSchema, type AsyncScanObject, AsyncScanObjectSchema, type AsyncScanResponse, AsyncScanResponseSchema, type AttackDetailResponse, AttackDetailResponseSchema, type AttackListItem, AttackListItemSchema, type AttackListOptions, type AttackListResponse, AttackListResponseSchema, type AttackMultiTurnDetailResponse, AttackMultiTurnDetailResponseSchema, type AttackMultiTurnOutput, AttackMultiTurnOutputSchema, type AttackOutput, AttackOutputSchema, AttackStatus, AttackType, type AuditResponse, AuditResponseSchema, type AuthConfig, AuthConfigSchema, type AuthSettingsResponse, AuthSettingsResponseSchema, AuthType, BEARER, type BaseResponse, BaseResponseSchema, type BasicAuthAuthConfig, BasicAuthAuthConfigSchema, BasicAuthLocation, type BedrockAccessConnectionParams, BedrockAccessConnectionParamsSchema, BrandSubCategory, type CacheHitTrendResponse, CacheHitTrendResponseSchema, type CacheSummaryResponse, CacheSummaryResponseSchema, Category, type CategoryModel, CategoryModelSchema, type CategoryReport, CategoryReportSchema, Category as CategoryType, type CgReport, CgReportSchema, type Channel, type ChannelListOptions, type ChannelListPagination, ChannelListPaginationSchema, type ChannelListResponse, ChannelListResponseSchema, ChannelSchema, type ChannelStats, ChannelStatsSchema, ChannelStatus, ChannelStatusSchema, type ChannelStatusType, type ClientIdAndCustomerApp, ClientIdAndCustomerAppSchema, type CmdEntry, CmdEntrySchema, type CmdInjectReport, CmdInjectReportSchema, type CollectAllOptions, type ComparisonOperatorType, ComparisonOperatorTypeSchema, type ComplianceReport, ComplianceReportSchema, ComplianceSubCategory, type ComplianceTechnique, ComplianceTechniqueSchema, type ConnectionParams, ConnectionParamsSchema, Content, type ContentError, ContentErrorSchema, ContentErrorType, ContentErrorType as ContentErrorTypeType, type ContentOptions, type CostChartResponse, CostChartResponseSchema, type CountByName, CountByNameSchema, type CountChartResponse, CountChartResponseSchema, CountedQuotaEnum, type CreateChannelRequest, CreateChannelRequestSchema, type CreateCustomTopicRequest, CreateCustomTopicRequestSchema, type CreateSecurityProfileRequest, CreateSecurityProfileRequestSchema, type CustomAttackOutput, CustomAttackOutputSchema, type CustomAttackReportResponse, CustomAttackReportResponseSchema, type CustomAttacksListResponse, CustomAttacksListResponseSchema, type CustomAttacksReportListOptions, type CustomJobMetadata, CustomJobMetadataSchema, type CustomPromptCreateRequest, CustomPromptCreateRequestSchema, type CustomPromptList, type CustomPromptListItem, CustomPromptListItemSchema, CustomPromptListSchema, type CustomPromptResponse, CustomPromptResponseSchema, type CustomPromptSetArchiveRequest, CustomPromptSetArchiveRequestSchema, type CustomPromptSetCreateRequest, CustomPromptSetCreateRequestSchema, type CustomPromptSetList, type CustomPromptSetListActive, CustomPromptSetListActiveSchema, type CustomPromptSetListItem, CustomPromptSetListItemSchema, CustomPromptSetListSchema, type CustomPromptSetReference, CustomPromptSetReferenceSchema, type CustomPromptSetResponse, CustomPromptSetResponseSchema, type CustomPromptSetUpdateRequest, CustomPromptSetUpdateRequestSchema, type CustomPromptSetVersionInfo, CustomPromptSetVersionInfoSchema, type CustomPromptUpdateRequest, CustomPromptUpdateRequestSchema, type CustomTopic, type CustomTopicListResponse, CustomTopicListResponseSchema, CustomTopicSchema, type CustomerApp, type CustomerAppDeleteResponse, CustomerAppDeleteResponseSchema, type CustomerAppListAllOptions, type CustomerAppListResponse, CustomerAppListResponseSchema, CustomerAppSchema, type CustomerAppWithKeys, CustomerAppWithKeysSchema, CustomerAppsClient, type CustomerAppsClientOptions, DEFAULT_AI_GW_ADMIN_ENDPOINT, DEFAULT_AI_GW_DATA_ENDPOINT, DEFAULT_DLP_ENDPOINT, DEFAULT_ENDPOINT, DEFAULT_MGMT_ENDPOINT, DEFAULT_MODEL_SEC_DATA_ENDPOINT, DEFAULT_MODEL_SEC_MGMT_ENDPOINT, DEFAULT_RED_TEAM_DATA_ENDPOINT, DEFAULT_RED_TEAM_MGMT_ENDPOINT, DEFAULT_RED_TEAM_NETWORK_BROKER_ENDPOINT, DEFAULT_TOKEN_ENDPOINT, DLP_DATA_FILTERING_PROFILES_PATH, DLP_DATA_PATTERNS_PATH, DLP_DATA_PROFILES_PATH, DLP_DICTIONARIES_PATH, type DSDetailResult, DSDetailResultSchema, type DSResultMetadata, DSResultMetadataSchema, type DashboardAppQuery, type DashboardApplication, DashboardApplicationSchema, type DashboardApplicationSessionsBucket, DashboardApplicationSessionsBucketSchema, type DashboardApplicationViolationBreakdown, DashboardApplicationViolationBreakdownSchema, type DashboardApplicationsOverview, type DashboardApplicationsOverviewItem, DashboardApplicationsOverviewItemSchema, type DashboardApplicationsOverviewQuery, DashboardApplicationsOverviewSchema, DashboardClient, type DashboardClientOptions, type DashboardOverviewResponse, DashboardOverviewResponseSchema, type DashboardPagination, DashboardPaginationSchema, type DashboardSessionStats, DashboardSessionStatsSchema, type DataFilteringDetails, DataFilteringDetailsSchema, type DataFilteringProfileListAllParams, type DataFilteringProfileListParams, type DataFilteringProfileRequest, DataFilteringProfileRequestSchema, type DataFilteringProfileResponse, DataFilteringProfileResponseSchema, DataFilteringProfilesClient, type DataFilteringProfilesClientOptions, type DataFilteringRuleDTO, DataFilteringRuleDTOSchema, type DataLeakDetectionMember, DataLeakDetectionMemberSchema, type DataPatternConfidenceLevel, DataPatternConfidenceLevelSchema, type DataPatternDetectionConfig, DataPatternDetectionConfigSchema, type DataPatternLicenseType, DataPatternLicenseTypeSchema, type DataPatternListAllParams, type DataPatternListParams, type DataPatternMatchingRules, DataPatternMatchingRulesSchema, type DataPatternPatchRequest, DataPatternPatchRequestSchema, type DataPatternRequest, DataPatternRequestSchema, type DataPatternResponse, DataPatternResponseSchema, type DataPatternStatus, DataPatternStatusSchema, type DataPatternTags, DataPatternTagsSchema, type DataPatternTechnique, DataPatternTechniqueSchema, type DataPatternType, DataPatternTypeSchema, DataPatternsClient, type DataPatternsClientOptions, type DataProfileListAllParams, type DataProfileListParams, type DataProfilePatchRequest, DataProfilePatchRequestSchema, type DataProfileResponse, DataProfileResponseSchema, type DataProfileStatus, DataProfileStatusSchema, type DataProfileSubtype, DataProfileSubtypeSchema, type DataProfileType, DataProfileTypeSchema, DataProfilesClient, type DataProfilesClientOptions, type DataProtection, DataProtectionSchema, type DatabaseSecurityItem, DatabaseSecurityItemSchema, type DatabricksConnectionParams, DatabricksConnectionParamsSchema, DateRangeFilter, type DbsEntry, DbsEntrySchema, type DbsReport, DbsReportSchema, type DefaultTreeDetectionRule, DefaultTreeDetectionRuleSchema, type DeleteProfileConflict, DeleteProfileConflictSchema, type DeleteProfileResponse, DeleteProfileResponseSchema, type DeleteTopicConflict, DeleteTopicConflictSchema, type DeleteTopicResponse, DeleteTopicResponseSchema, type DeploymentProfileAttribute, DeploymentProfileAttributeSchema, type DeploymentProfileEntry, DeploymentProfileEntrySchema, type DeploymentProfileListOptions, type DeploymentProfileRequest, DeploymentProfileRequestSchema, DeploymentProfilesClient, type DeploymentProfilesClientOptions, type DeploymentProfilesResponse, DeploymentProfilesResponseSchema, type DestinationAttributes, DestinationAttributesSchema, type DetectionRule, type DetectionRuleItem, DetectionRuleItemSchema, DetectionRuleSchema, DetectionServiceName, DetectionServiceName as DetectionServiceNameType, type DetectionServiceResult, DetectionServiceResultSchema, type DetectorViolationBreakdownEntry, DetectorViolationBreakdownEntrySchema, type Device, type DeviceInstance, DeviceInstanceSchema, type DeviceLicense, DeviceLicenseSchema, type DeviceRequest, DeviceRequestSchema, type DeviceResponse, DeviceResponseSchema, DeviceSchema, type DeviceStatus, DeviceStatusSchema, DictionariesClient, type DictionariesClientOptions, type DictionaryCategory, DictionaryCategorySchema, type DictionaryClassification, DictionaryClassificationSchema, type DictionaryDetectionSubTechnique, DictionaryDetectionSubTechniqueSchema, type DictionaryDetectionTechnique, DictionaryDetectionTechniqueSchema, type DictionaryFileInput, type DictionaryGetParams, type DictionaryListAllParams, type DictionaryListParams, type DictionaryMetaDataDTO, DictionaryMetaDataDTOSchema, type DictionaryPatchRequest, DictionaryPatchRequestSchema, type DictionaryRequest, DictionaryRequestSchema, type DictionaryResponse, DictionaryResponseSchema, type DictionaryTags, DictionaryTagsSchema, type DictionaryType, DictionaryTypeSchema, type DictionaryUploadParams, type DlpDataProfile, type DlpDataProfilePolicy, DlpDataProfilePolicySchema, DlpDataProfileSchema, DlpNamespace, type DlpNamespaceOptions, type DlpPatternDetection, DlpPatternDetectionSchema, type DlpProfileListResponse, DlpProfileListResponseSchema, DlpProfilesClient, type DlpProfilesClientOptions, type DlpReport, DlpReportSchema, type DlpRule, DlpRuleSchema, type DynamicJobMetadata, DynamicJobMetadataSchema, type DynamicJobReport, DynamicJobReportSchema, type DynamicJobReportStats, DynamicJobReportStatsSchema, ErrorCodes, type ErrorLog, type ErrorLogListResponse, ErrorLogListResponseSchema, ErrorLogSchema, type ErrorResponse, ErrorResponseSchema, ErrorSource, ErrorStatus, ErrorStatus as ErrorStatusType, type ErrorTrendsResponse, ErrorTrendsResponseSchema, ErrorType, type EulaAcceptRequest, EulaAcceptRequestSchema, type EulaContentResponse, EulaContentResponseSchema, type EulaResponse, EulaResponseSchema, EvalOutcome, type EvalSummary, EvalSummarySchema, type ExceptionRuleDTO, ExceptionRuleDTOSchema, type Exclusions, ExclusionsSchema, type ExpressionOperatorType, ExpressionOperatorTypeSchema, type ExpressionTreeNode, ExpressionTreeNodeSchema, type FeedbackModelsResponse, FeedbackModelsResponseSchema, type FeedbackScoreDistributionResponse, FeedbackScoreDistributionResponseSchema, FileFormat, type FileList, FileListSchema, type FileResponse, FileResponseSchema, type FileScanData, FileScanDataSchema, FileScanResult, FileType, type GatewayApiKey, type GatewayApiKeyCreateRequest, type GatewayApiKeyRotateRequest, type GatewayApiKeyRotateResponse, GatewayApiKeyRotateResponseSchema, GatewayApiKeySchema, type GatewayAuditLogRecord, GatewayAuditLogRecordSchema, type GatewayAuditLogsResponse, GatewayAuditLogsResponseSchema, type GatewayChartRecord, GatewayChartRecordSchema, type GatewayConfig, type GatewayConfigCreateRequest, type GatewayConfigCreateResponse, GatewayConfigCreateResponseSchema, type GatewayConfigDetail, GatewayConfigDetailSchema, GatewayConfigSchema, type GatewayConfigVersion, GatewayConfigVersionSchema, type GatewayDeployment, type GatewayDeploymentAuthSettingsInput, type GatewayDeploymentCreateRequest, type GatewayDeploymentCreateResponse, GatewayDeploymentCreateResponseSchema, type GatewayDeploymentDetail, GatewayDeploymentDetailSchema, type GatewayDeploymentPingResponse, GatewayDeploymentPingResponseSchema, GatewayDeploymentSchema, type GatewayDeploymentUpdateRequest, type GatewayGlobalWorkspaceAccess, GatewayGlobalWorkspaceAccessSchema, type GatewayGroupRow, GatewayGroupRowSchema, type GatewayGuardrail, type GatewayGuardrailCheck, type GatewayGuardrailCreateRequest, type GatewayGuardrailCreateResponse, GatewayGuardrailCreateResponseSchema, type GatewayGuardrailDetail, GatewayGuardrailDetailSchema, GatewayGuardrailSchema, type GatewayGuardrailUpdateRequest, type GatewayIntegration, type GatewayIntegrationCreateRequest, type GatewayIntegrationModelsRequest, type GatewayIntegrationModelsResponse, GatewayIntegrationModelsResponseSchema, GatewayIntegrationSchema, type GatewayIntegrationWorkspace, GatewayIntegrationWorkspaceSchema, type GatewayIntegrationWorkspacesRequest, type GatewayIntegrationWorkspacesResponse, GatewayIntegrationWorkspacesResponseSchema, type GatewayLogRecord, GatewayLogRecordSchema, type GatewayLogsResponse, GatewayLogsResponseSchema, type GatewayPlugin, type GatewayPluginCreateRequest, GatewayPluginSchema, type GatewayProvider, type GatewayProviderCreateRequest, type GatewayProviderCreateResponse, GatewayProviderCreateResponseSchema, type GatewayProviderDetail, GatewayProviderDetailSchema, GatewayProviderSchema, type GatewayProviderUpdateRequest, type GatewayRateLimit, GatewayRateLimitSchema, type GatewayUsageLimit, GatewayUsageLimitSchema, type GatewayWorkspace, type GatewayWorkspaceCreateRequest, type GatewayWorkspaceCreateResponse, GatewayWorkspaceCreateResponseSchema, type GatewayWorkspaceDetail, GatewayWorkspaceDetailSchema, GatewayWorkspaceSchema, type GatewayWorkspaceUpdateRequest, type GatewayWriteResponse, GatewayWriteResponseSchema, type GetTokenOptions, type Goal, type GoalListOptions, type GoalListResponse, GoalListResponseSchema, GoalSchema, GoalType, GoalTypeQueryParam, type GroupListResponse, GroupListResponseSchema, GuardrailAction, HEADER_API_KEY, HEADER_AUTH_TOKEN, type HTTPValidationError, HTTPValidationErrorSchema, HTTP_FORCE_RETRY_STATUS_CODES, type HeadersAuthConfig, HeadersAuthConfigSchema, type HuggingfaceConnectionParams, HuggingfaceConnectionParamsSchema, type IODetected, IODetectedSchema, type InitOptions, type InstanceExtraDetails, InstanceExtraDetailsSchema, type InstanceGetResponse, InstanceGetResponseSchema, type InstanceRequest, InstanceRequestSchema, type InstanceResponse, InstanceResponseSchema, type JobAbortResponse, JobAbortResponseSchema, type JobCreateRequest, JobCreateRequestSchema, type JobListResponse, JobListResponseSchema, type JobResponse, JobResponseSchema, JobStatus, JobStatusFilter, type JobTimeRecord, JobTimeRecordSchema, JobType, type JsonNullable, type Label, type LabelKeyList, LabelKeyListSchema, LabelSchema, type LabelValueList, LabelValueListSchema, type LabelsCreateRequest, LabelsCreateRequestSchema, type LabelsResponse, LabelsResponseSchema, type LanguageOption, LanguageOptionSchema, type LatencyChartResponse, LatencyChartResponseSchema, type ListApiKeysResponse, ListApiKeysResponseSchema, type ListConfigVersionsResponse, ListConfigVersionsResponseSchema, type ListConfigsResponse, ListConfigsResponseSchema, type ListDeploymentsResponse, ListDeploymentsResponseSchema, type ListGuardrailsResponse, ListGuardrailsResponseSchema, type ListIntegrationsResponse, ListIntegrationsResponseSchema, type ListMcpIntegrationsResponse, ListMcpIntegrationsResponseSchema, type ListModelSecurityGroupsResponse, ListModelSecurityGroupsResponseSchema, type ListModelSecurityRuleInstancesResponse, ListModelSecurityRuleInstancesResponseSchema, type ListModelSecurityRulesResponse, ListModelSecurityRulesResponseSchema, type ListPluginsResponse, ListPluginsResponseSchema, type ListProvidersResponse, ListProvidersResponseSchema, type ListWorkspacesResponse, ListWorkspacesResponseSchema, type ListingOptions, MAX_AI_PROFILE_NAME_LENGTH, MAX_API_KEY_LENGTH, MAX_CONNECTION_POOL_SIZE, MAX_CONTENT_CONTEXT_LENGTH, MAX_CONTENT_PROMPT_LENGTH, MAX_CONTENT_RESPONSE_LENGTH, MAX_NUMBER_OF_BATCH_SCAN_OBJECTS, MAX_NUMBER_OF_REPORT_IDS, MAX_NUMBER_OF_RETRIES, MAX_NUMBER_OF_SCAN_IDS, MAX_REPORT_ID_STR_LENGTH, MAX_SCAN_ID_STR_LENGTH, MAX_SESSION_ID_STR_LENGTH, MAX_TOKEN_LENGTH, MAX_TRANSACTION_ID_STR_LENGTH, MGMT_API_KEYS_TSG_PATH, MGMT_API_KEY_PATH, MGMT_CLIENT_ID, MGMT_CLIENT_SECRET, MGMT_CUSTOMER_APPS_TSG_PATH, MGMT_CUSTOMER_APP_PATH, MGMT_DASHBOARD_APPLICATIONS_OVERVIEW_PATH, MGMT_DASHBOARD_APPLICATION_PATH, MGMT_DASHBOARD_APPLICATION_VIOLATION_BREAKDOWN_PATH, MGMT_DEPLOYMENT_PROFILES_PATH, MGMT_DLP_PROFILES_PATH, MGMT_ENDPOINT, MGMT_OAUTH_INVALIDATE_PATH, MGMT_OAUTH_TOKEN_PATH, MGMT_PROFILES_TSG_PATH, MGMT_PROFILE_PATH, MGMT_SCAN_LOGS_PATH, MGMT_TOKEN_ENDPOINT, MGMT_TOPICS_TSG_PATH, MGMT_TOPIC_FORCE_PATH, MGMT_TOPIC_PATH, MGMT_TSG_ID, MODEL_SEC_CLIENT_ID, MODEL_SEC_CLIENT_SECRET, MODEL_SEC_DATA_ENDPOINT, MODEL_SEC_EVALUATIONS_PATH, MODEL_SEC_MGMT_ENDPOINT, MODEL_SEC_MODELS_PATH, MODEL_SEC_MODEL_VERSIONS_PATH, MODEL_SEC_PYPI_AUTH_PATH, MODEL_SEC_SCANS_PATH, MODEL_SEC_SECURITY_GROUPS_PATH, MODEL_SEC_SECURITY_RULES_PATH, MODEL_SEC_TOKEN_ENDPOINT, MODEL_SEC_TSG_ID, MODEL_SEC_VIOLATIONS_PATH, type MaliciousCodeProtection, MaliciousCodeProtectionSchema, type MalwareReport, MalwareReportSchema, ManagementClient, type ManagementClientOptions, type MaskedData, MaskedDataSchema, type McEntry, McEntrySchema, type McReport, McReportSchema, type McpIntegration, type McpIntegrationCapabilitiesResponse, McpIntegrationCapabilitiesResponseSchema, type McpIntegrationCapabilitiesUpdateRequest, type McpIntegrationCapabilitiesUpdateResponse, McpIntegrationCapabilitiesUpdateResponseSchema, type McpIntegrationCapability, McpIntegrationCapabilitySchema, type McpIntegrationCreateRequest, type McpIntegrationDetail, McpIntegrationDetailSchema, type McpIntegrationMetadata, McpIntegrationMetadataSchema, McpIntegrationSchema, type McpIntegrationUpdateRequest, type McpIntegrationWorkspacesRequest, type McpIntegrationWorkspacesUpdateResponse, McpIntegrationWorkspacesUpdateResponseSchema, type Metadata, type MetadataCriterion, MetadataCriterionSchema, MetadataSchema, type Model, type ModelConfiguration, ModelConfigurationSchema, type ModelList, ModelListSchema, type ModelProtectionItem, ModelProtectionItemSchema, ModelResponseSchema, type ModelScanIssue, ModelScanIssueSchema, ModelScanStatus, ModelSecurityClient, type ModelSecurityClientOptions, type ModelSecurityEvaluationListOptions, type ModelSecurityFileListOptions, type ModelSecurityGroupCreateRequest, ModelSecurityGroupCreateRequestSchema, type ModelSecurityGroupListAllOptions, type ModelSecurityGroupListOptions, type ModelSecurityGroupResponse, ModelSecurityGroupResponseSchema, ModelSecurityGroupState, type ModelSecurityGroupUpdateRequest, ModelSecurityGroupUpdateRequestSchema, ModelSecurityGroupsClient, type ModelSecurityGroupsClientOptions, type ModelSecurityLabelListOptions, type ModelSecurityModelListAllOptions, type ModelSecurityModelListOptions, type ModelSecurityModelVersionFileListAllOptions, type ModelSecurityModelVersionFileListOptions, type ModelSecurityModelVersionListAllOptions, type ModelSecurityModelVersionListOptions, ModelSecurityModelsClient, type ModelSecurityModelsClientOptions, type ModelSecurityPagination, ModelSecurityPaginationSchema, type ModelSecurityRuleInstanceListOptions, type ModelSecurityRuleInstanceResponse, ModelSecurityRuleInstanceResponseSchema, type ModelSecurityRuleInstanceUpdateRequest, ModelSecurityRuleInstanceUpdateRequestSchema, type ModelSecurityRuleListAllOptions, type ModelSecurityRuleListOptions, type ModelSecurityRuleResponse, ModelSecurityRuleResponseSchema, ModelSecurityRulesClient, type ModelSecurityRulesClientOptions, type ModelSecurityScanListAllOptions, type ModelSecurityScanListOptions, ModelSecurityScansClient, type ModelSecurityScansClientOptions, type ModelSecurityViolationListOptions, type ModelVersion, type ModelVersionList, ModelVersionListSchema, ModelVersionResponseSchema, type MultiProfileDataNode, MultiProfileDataNodeSchema, type MultiProfileDetectionRule, MultiProfileDetectionRuleSchema, type MultiTurnStatefulConfig, MultiTurnStatefulConfigSchema, type MultiTurnStatelessConfig, MultiTurnStatelessConfigSchema, type OAuth2AuthConfig, OAuth2AuthConfigSchema, OAuthClient, type OAuthClientOptions, OAuthManagementClient, type OAuthManagementClientOptions, type Oauth2Token, Oauth2TokenSchema, type Offset, OffsetSchema, type OpenAIConnectionParams, OpenAIConnectionParamsSchema, type OrganisationSelfResponse, OrganisationSelfResponseSchema, PAYLOAD_HASH, type Page, type PageDataFilteringProfileResponse, PageDataFilteringProfileResponseSchema, type PageDataPatternResponse, PageDataPatternResponseSchema, type PageDataProfileResponse, PageDataProfileResponseSchema, type PageDictionaryResponse, PageDictionaryResponseSchema, type PageableObject, PageableObjectSchema, type PaginatedScanResults, PaginatedScanResultsSchema, type PaginationOptions, type PaginationPage, type PatternDetection, PatternDetectionSchema, type Policy, type PolicyAppProtection, PolicyAppProtectionSchema, type PolicyLatency, PolicyLatencySchema, PolicySchema, PolicyType, type PrerequisiteModel, PrerequisiteModelSchema, type ProfileListAllOptions, ProfilesClient, type ProfilesClientOptions, ProfilingStatus, type PromptDetailResponse, PromptDetailResponseSchema, type PromptDetected, PromptDetectedSchema, type PromptDetectionDetails, PromptDetectionDetailsSchema, type PromptListAllOptions, type PromptListOptions, type PromptSetListAllOptions, type PromptSetListOptions, type PromptSetStats, PromptSetStatsSchema, type PromptSetSummary, PromptSetSummarySchema, type PromptSetsReportResponse, PromptSetsReportResponseSchema, type PromptsBySetListOptions, type PropertyAssignment, PropertyAssignmentSchema, type PropertyDefinition, PropertyDefinitionSchema, type PropertyNameCreateRequest, PropertyNameCreateRequestSchema, type PropertyNamesListResponse, PropertyNamesListResponseSchema, type PropertyStatistic, PropertyStatisticSchema, type PropertyValueCreateRequest, PropertyValueCreateRequestSchema, type PropertyValueStatistic, PropertyValueStatisticSchema, type PropertyValuesMultipleResponse, PropertyValuesMultipleResponseSchema, type PropertyValuesResponse, PropertyValuesResponseSchema, type PyPIAuthResponse, PyPIAuthResponseSchema, type QuotaDetails, QuotaDetailsSchema, type QuotaSummary, QuotaSummarySchema, RED_TEAM_ADAPTER_PATH, RED_TEAM_ADAPTER_VALIDATE_PATH, RED_TEAM_CATEGORIES_PATH, RED_TEAM_CHANNELS_PATH, RED_TEAM_CHANNELS_STATS_PATH, RED_TEAM_CLIENT_ID, RED_TEAM_CLIENT_SECRET, RED_TEAM_CUSTOM_ATTACKS_REPORT_PATH, RED_TEAM_CUSTOM_ATTACK_PATH, RED_TEAM_DASHBOARD_PATH, RED_TEAM_DATA_ENDPOINT, RED_TEAM_ERROR_LOG_PATH, RED_TEAM_ERROR_LOG_TARGET_PROFILE_PATH, RED_TEAM_EULA_PATH, RED_TEAM_INSTANCES_PATH, RED_TEAM_LANGUAGES_PATH, RED_TEAM_MGMT_DASHBOARD_PATH, RED_TEAM_MGMT_ENDPOINT, RED_TEAM_NETWORK_BROKER_ENDPOINT, RED_TEAM_QUOTA_PATH, RED_TEAM_REGISTRY_CREDENTIALS_PATH, RED_TEAM_REPORT_DYNAMIC_PATH, RED_TEAM_REPORT_PATH, RED_TEAM_REPORT_STATIC_PATH, RED_TEAM_SCAN_PATH, RED_TEAM_SENTIMENT_PATH, RED_TEAM_TARGET_PATH, RED_TEAM_TARGET_VALIDATE_AUTH_PATH, RED_TEAM_TEMPLATE_PATH, RED_TEAM_TOKEN_ENDPOINT, RED_TEAM_TSG_ID, RedTeamAdaptersClient, type RedTeamAdaptersClientOptions, RedTeamCategory, RedTeamClient, type RedTeamClientOptions, RedTeamCustomAttackReportsClient, type RedTeamCustomAttackReportsClientOptions, RedTeamCustomAttacksClient, type RedTeamCustomAttacksClientOptions, RedTeamErrorType, RedTeamEulaClient, type RedTeamEulaClientOptions, RedTeamInstancesClient, type RedTeamInstancesClientOptions, type RedTeamListOptions, RedTeamNetworkBrokerClient, type RedTeamNetworkBrokerClientOptions, type RedTeamPagination, RedTeamPaginationSchema, RedTeamReportsClient, type RedTeamReportsClientOptions, type RedTeamScanListAllOptions, type RedTeamScanListOptions, RedTeamScansClient, type RedTeamScansClientOptions, RedTeamTargetsClient, type RedTeamTargetsClientOptions, type RegistryCredentials, RegistryCredentialsSchema, type RemediationDetail, RemediationDetailSchema, type RemediationResponse, RemediationResponseSchema, type RescuedRetriesResponse, RescuedRetriesResponseSchema, type ResourceModelExtension, ResourceModelExtensionSchema, type ResponseDetected, ResponseDetectedSchema, type ResponseDetectionDetails, ResponseDetectionDetailsSchema, ResponseMode, type RestConnectionParams, RestConnectionParamsSchema, type RiskLevel, RiskLevelSchema, RiskRating, type RuleConfiguration, RuleConfigurationSchema, type RuleEditableField, type RuleEditableFieldDropdown, RuleEditableFieldDropdownSchema, RuleEditableFieldSchema, RuleEditableFieldType, type RuleEvaluationList, RuleEvaluationListSchema, type RuleEvaluationResponse, RuleEvaluationResponseSchema, RuleEvaluationResult, RuleFieldValueKey, type RuleItemConfidenceLevel, RuleItemConfidenceLevelSchema, type RuleItemDetectionTechnique, RuleItemDetectionTechniqueSchema, type RuleItemEdmMatchCriteria, RuleItemEdmMatchCriteriaSchema, type RuleItemMatchType, RuleItemMatchTypeSchema, type RuleItemOccurrenceOperatorType, RuleItemOccurrenceOperatorTypeSchema, type RuleRemediation, RuleRemediationSchema, RuleState, RuleType, type RuntimeSecurityPolicy, RuntimeSecurityPolicySchema, type RuntimeSecurityProfileResponse, RuntimeSecurityProfileResponseSchema, SCAN_REPORTS_PATH, SCAN_RESULTS_PATH, SDK_VERSION, SYNC_SCAN_PATH, SafetySubCategory, type ScanBaseResponse, ScanBaseResponseSchema, type ScanCallOptions, type ScanCreateRequest, ScanCreateRequestSchema, type ScanDetails, ScanDetailsSchema, type ScanIdResult, ScanIdResultSchema, type ScanList, ScanListSchema, type ScanLogQueryOptions, ScanLogsClient, type ScanLogsClientOptions, ScanOrigin, type ScanRequest, type ScanRequestContentsInner, ScanRequestContentsInnerSchema, ScanRequestSchema, type ScanResponse, ScanResponseSchema, type ScanResultEntry, ScanResultEntrySchema, type ScanResultForDashboard, ScanResultForDashboardSchema, type ScanStatisticsResponse, ScanStatisticsResponseSchema, type ScanSummary, ScanSummarySchema, Scanner, type ScoreTrendResponse, ScoreTrendResponseSchema, type ScoreTrendSeries, ScoreTrendSeriesSchema, type SecurityProfile, type SecurityProfileListResponse, SecurityProfileListResponseSchema, SecurityProfileSchema, SecuritySubCategory, type SentimentRequest, SentimentRequestSchema, type SentimentResponse, SentimentResponseSchema, SeverityFilter, type SeverityReport, SeverityReportSchema, type SeverityStats, SeverityStatsSchema, SortByDateField, SortByFileField, SortDirection, type SortObject, SortObjectSchema, type SourceAttributes, SourceAttributesSchema, SourceType, type StaticJobMetadata, StaticJobMetadataSchema, type StaticJobRemediation, type StaticJobRemediationRecommendation, StaticJobRemediationRecommendationSchema, StaticJobRemediationSchema, type StaticJobReport, StaticJobReportSchema, type StaticJobReportStats, StaticJobReportStatsSchema, StatusQueryParam, type StreamDetailResponse, StreamDetailResponseSchema, type StreamIterationData, StreamIterationDataSchema, type StreamListResponse, StreamListResponseSchema, StreamType, type StreamingConnectionParams, StreamingConnectionParamsSchema, type SubCategoryModel, SubCategoryModelSchema, type SubCategoryStats, SubCategoryStatsSchema, type SyncScanOptions, TSG_ID_HEADER, type TargetAdditionalContext, TargetAdditionalContextSchema, TargetAuthType, type TargetAuthValidationRequest, TargetAuthValidationRequestSchema, type TargetAuthValidationResponse, TargetAuthValidationResponseSchema, type TargetBackground, TargetBackgroundSchema, TargetConnectionType, type TargetContextUpdate, TargetContextUpdateSchema, type TargetCreateRequest, TargetCreateRequestSchema, type TargetJobRequest, TargetJobRequestSchema, type TargetList, type TargetListAllOptions, type TargetListItem, TargetListItemSchema, type TargetListOptions, TargetListSchema, type TargetMetadata, TargetMetadataSchema, type TargetOperationOptions, type TargetProbeRequest, TargetProbeRequestSchema, type TargetProfileResponse, TargetProfileResponseSchema, type TargetReference, TargetReferenceSchema, type TargetResponse, TargetResponseSchema, TargetStatus, type TargetTemplateCollection, TargetTemplateCollectionSchema, TargetType, type TargetUpdateRequest, TargetUpdateRequestSchema, type TcReport, TcReportSchema, type TenantLanguagesResponse, TenantLanguagesResponseSchema, type TgReport, TgReportSchema, ThreatCategory, type ThreatScanReport, ThreatScanReportSchema, type TokenInfo, type TokenStats, TokenStatsSchema, type TokensChartResponse, TokensChartResponseSchema, type ToolDetected, ToolDetectedSchema, type ToolDetectionDetails, ToolDetectionDetailsSchema, type ToolDetectionEntry, ToolDetectionEntrySchema, type ToolDetectionFlags, ToolDetectionFlagsSchema, type ToolEvent, type ToolEventMetadata, ToolEventMetadataSchema, ToolEventSchema, type TopicArray, TopicArraySchema, type TopicListAllOptions, type TopicListOptions, type TopicObject, TopicObjectSchema, TopicsClient, type TopicsClientOptions, type URLExclusion, URLExclusionSchema, USER_AGENT, type UpdateChannelRequest, UpdateChannelRequestSchema, type UrlCategory, UrlCategorySchema, type UrlfEntry, UrlfEntrySchema, type UserGroupResponse, UserGroupResponseSchema, type UserTrendsResponse, UserTrendsResponseSchema, type ValidationError, ValidationErrorSchema, Verdict, Verdict as VerdictType, type ViolationList, ViolationListSchema, type ViolationRemediation, ViolationRemediationSchema, type ViolationResponse, ViolationResponseSchema, type ViolationSeverityCounts, ViolationSeverityCountsSchema, type WalkAllOptions, type WebSocketConnectionParams, WebSocketConnectionParamsSchema, type WeightedRegex, WeightedRegexSchema, aiGwOrganisationsAuthSettingsPath, collectAll, collectSkipPages, collectSpringPages, globalConfiguration, init, jsonNullable, pageSchema, paginate, serializeListing };
|