@cdot65/prisma-airs-sdk 0.18.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/dist/index.cjs +454 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1454 -101
- package/dist/index.d.ts +1454 -101
- package/dist/index.js +443 -6
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
package/dist/index.d.cts
CHANGED
|
@@ -103446,6 +103446,290 @@ declare const GatewayConfigDetailSchema: z.ZodObject<{
|
|
|
103446
103446
|
version_id: z.ZodString;
|
|
103447
103447
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103448
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>;
|
|
103449
103733
|
/**
|
|
103450
103734
|
* `POST /configs` response — a 4-field creation receipt, **not** a {@link GatewayConfig} or
|
|
103451
103735
|
* {@link GatewayConfigDetail}. Verified live 2026-07-28 (create -> read -> delete cycle).
|
|
@@ -103676,7 +103960,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103676
103960
|
async: z.ZodBoolean;
|
|
103677
103961
|
sequential: z.ZodBoolean;
|
|
103678
103962
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
103679
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
103963
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103680
103964
|
feedback: z.ZodObject<{
|
|
103681
103965
|
value: z.ZodNumber;
|
|
103682
103966
|
weight: z.ZodNumber;
|
|
@@ -103718,8 +104002,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103718
104002
|
weight: z.ZodNumber;
|
|
103719
104003
|
metadata: z.ZodString;
|
|
103720
104004
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103721
|
-
}, z.ZodTypeAny, "passthrough"
|
|
103722
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104005
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104006
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103723
104007
|
feedback: z.ZodObject<{
|
|
103724
104008
|
value: z.ZodNumber;
|
|
103725
104009
|
weight: z.ZodNumber;
|
|
@@ -103761,13 +104045,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103761
104045
|
weight: z.ZodNumber;
|
|
103762
104046
|
metadata: z.ZodString;
|
|
103763
104047
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103764
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104048
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
103765
104049
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
103766
104050
|
deny: z.ZodBoolean;
|
|
103767
104051
|
async: z.ZodBoolean;
|
|
103768
104052
|
sequential: z.ZodBoolean;
|
|
103769
104053
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
103770
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104054
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103771
104055
|
feedback: z.ZodObject<{
|
|
103772
104056
|
value: z.ZodNumber;
|
|
103773
104057
|
weight: z.ZodNumber;
|
|
@@ -103809,8 +104093,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103809
104093
|
weight: z.ZodNumber;
|
|
103810
104094
|
metadata: z.ZodString;
|
|
103811
104095
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103812
|
-
}, z.ZodTypeAny, "passthrough"
|
|
103813
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104096
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104097
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103814
104098
|
feedback: z.ZodObject<{
|
|
103815
104099
|
value: z.ZodNumber;
|
|
103816
104100
|
weight: z.ZodNumber;
|
|
@@ -103852,13 +104136,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103852
104136
|
weight: z.ZodNumber;
|
|
103853
104137
|
metadata: z.ZodString;
|
|
103854
104138
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103855
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104139
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
103856
104140
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
103857
104141
|
deny: z.ZodBoolean;
|
|
103858
104142
|
async: z.ZodBoolean;
|
|
103859
104143
|
sequential: z.ZodBoolean;
|
|
103860
104144
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
103861
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104145
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103862
104146
|
feedback: z.ZodObject<{
|
|
103863
104147
|
value: z.ZodNumber;
|
|
103864
104148
|
weight: z.ZodNumber;
|
|
@@ -103900,8 +104184,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103900
104184
|
weight: z.ZodNumber;
|
|
103901
104185
|
metadata: z.ZodString;
|
|
103902
104186
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103903
|
-
}, z.ZodTypeAny, "passthrough"
|
|
103904
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104187
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104188
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103905
104189
|
feedback: z.ZodObject<{
|
|
103906
104190
|
value: z.ZodNumber;
|
|
103907
104191
|
weight: z.ZodNumber;
|
|
@@ -103943,7 +104227,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103943
104227
|
weight: z.ZodNumber;
|
|
103944
104228
|
metadata: z.ZodString;
|
|
103945
104229
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103946
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104230
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
103947
104231
|
}, z.ZodTypeAny, "passthrough">>;
|
|
103948
104232
|
version_id: z.ZodString;
|
|
103949
104233
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -103980,7 +104264,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
103980
104264
|
async: z.ZodBoolean;
|
|
103981
104265
|
sequential: z.ZodBoolean;
|
|
103982
104266
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
103983
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104267
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103984
104268
|
feedback: z.ZodObject<{
|
|
103985
104269
|
value: z.ZodNumber;
|
|
103986
104270
|
weight: z.ZodNumber;
|
|
@@ -104022,8 +104306,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104022
104306
|
weight: z.ZodNumber;
|
|
104023
104307
|
metadata: z.ZodString;
|
|
104024
104308
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104025
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104026
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104309
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104310
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104027
104311
|
feedback: z.ZodObject<{
|
|
104028
104312
|
value: z.ZodNumber;
|
|
104029
104313
|
weight: z.ZodNumber;
|
|
@@ -104065,13 +104349,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104065
104349
|
weight: z.ZodNumber;
|
|
104066
104350
|
metadata: z.ZodString;
|
|
104067
104351
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104068
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104352
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104069
104353
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
104070
104354
|
deny: z.ZodBoolean;
|
|
104071
104355
|
async: z.ZodBoolean;
|
|
104072
104356
|
sequential: z.ZodBoolean;
|
|
104073
104357
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104074
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104358
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104075
104359
|
feedback: z.ZodObject<{
|
|
104076
104360
|
value: z.ZodNumber;
|
|
104077
104361
|
weight: z.ZodNumber;
|
|
@@ -104113,8 +104397,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104113
104397
|
weight: z.ZodNumber;
|
|
104114
104398
|
metadata: z.ZodString;
|
|
104115
104399
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104116
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104117
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104400
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104401
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104118
104402
|
feedback: z.ZodObject<{
|
|
104119
104403
|
value: z.ZodNumber;
|
|
104120
104404
|
weight: z.ZodNumber;
|
|
@@ -104156,13 +104440,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104156
104440
|
weight: z.ZodNumber;
|
|
104157
104441
|
metadata: z.ZodString;
|
|
104158
104442
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104159
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104443
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104160
104444
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
104161
104445
|
deny: z.ZodBoolean;
|
|
104162
104446
|
async: z.ZodBoolean;
|
|
104163
104447
|
sequential: z.ZodBoolean;
|
|
104164
104448
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104165
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104449
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104166
104450
|
feedback: z.ZodObject<{
|
|
104167
104451
|
value: z.ZodNumber;
|
|
104168
104452
|
weight: z.ZodNumber;
|
|
@@ -104204,8 +104488,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104204
104488
|
weight: z.ZodNumber;
|
|
104205
104489
|
metadata: z.ZodString;
|
|
104206
104490
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104207
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104208
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104491
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104492
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104209
104493
|
feedback: z.ZodObject<{
|
|
104210
104494
|
value: z.ZodNumber;
|
|
104211
104495
|
weight: z.ZodNumber;
|
|
@@ -104247,7 +104531,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104247
104531
|
weight: z.ZodNumber;
|
|
104248
104532
|
metadata: z.ZodString;
|
|
104249
104533
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104250
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104534
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104251
104535
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104252
104536
|
version_id: z.ZodString;
|
|
104253
104537
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
@@ -104284,7 +104568,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104284
104568
|
async: z.ZodBoolean;
|
|
104285
104569
|
sequential: z.ZodBoolean;
|
|
104286
104570
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104287
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104571
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104288
104572
|
feedback: z.ZodObject<{
|
|
104289
104573
|
value: z.ZodNumber;
|
|
104290
104574
|
weight: z.ZodNumber;
|
|
@@ -104326,8 +104610,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104326
104610
|
weight: z.ZodNumber;
|
|
104327
104611
|
metadata: z.ZodString;
|
|
104328
104612
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104329
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104330
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104613
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104614
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104331
104615
|
feedback: z.ZodObject<{
|
|
104332
104616
|
value: z.ZodNumber;
|
|
104333
104617
|
weight: z.ZodNumber;
|
|
@@ -104369,13 +104653,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104369
104653
|
weight: z.ZodNumber;
|
|
104370
104654
|
metadata: z.ZodString;
|
|
104371
104655
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104372
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104656
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104373
104657
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
104374
104658
|
deny: z.ZodBoolean;
|
|
104375
104659
|
async: z.ZodBoolean;
|
|
104376
104660
|
sequential: z.ZodBoolean;
|
|
104377
104661
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104378
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104662
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104379
104663
|
feedback: z.ZodObject<{
|
|
104380
104664
|
value: z.ZodNumber;
|
|
104381
104665
|
weight: z.ZodNumber;
|
|
@@ -104417,8 +104701,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104417
104701
|
weight: z.ZodNumber;
|
|
104418
104702
|
metadata: z.ZodString;
|
|
104419
104703
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104420
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104421
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104704
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104705
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104422
104706
|
feedback: z.ZodObject<{
|
|
104423
104707
|
value: z.ZodNumber;
|
|
104424
104708
|
weight: z.ZodNumber;
|
|
@@ -104460,13 +104744,13 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104460
104744
|
weight: z.ZodNumber;
|
|
104461
104745
|
metadata: z.ZodString;
|
|
104462
104746
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104463
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104747
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104464
104748
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
104465
104749
|
deny: z.ZodBoolean;
|
|
104466
104750
|
async: z.ZodBoolean;
|
|
104467
104751
|
sequential: z.ZodBoolean;
|
|
104468
104752
|
/** Absent when the guardrail was created without a pass/fail feedback action. */
|
|
104469
|
-
on_success: z.ZodOptional<z.ZodObject<{
|
|
104753
|
+
on_success: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104470
104754
|
feedback: z.ZodObject<{
|
|
104471
104755
|
value: z.ZodNumber;
|
|
104472
104756
|
weight: z.ZodNumber;
|
|
@@ -104508,8 +104792,8 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104508
104792
|
weight: z.ZodNumber;
|
|
104509
104793
|
metadata: z.ZodString;
|
|
104510
104794
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104511
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104512
|
-
on_fail: z.ZodOptional<z.ZodObject<{
|
|
104795
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104796
|
+
on_fail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104513
104797
|
feedback: z.ZodObject<{
|
|
104514
104798
|
value: z.ZodNumber;
|
|
104515
104799
|
weight: z.ZodNumber;
|
|
@@ -104551,7 +104835,7 @@ declare const GatewayGuardrailDetailSchema: z.ZodObject<{
|
|
|
104551
104835
|
weight: z.ZodNumber;
|
|
104552
104836
|
metadata: z.ZodString;
|
|
104553
104837
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104554
|
-
}, z.ZodTypeAny, "passthrough"
|
|
104838
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
104555
104839
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104556
104840
|
version_id: z.ZodString;
|
|
104557
104841
|
}, z.ZodTypeAny, "passthrough">>;
|
|
@@ -104658,6 +104942,69 @@ declare const ListProvidersResponseSchema: z.ZodObject<{
|
|
|
104658
104942
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
104659
104943
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104660
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>;
|
|
104661
105008
|
/**
|
|
104662
105009
|
* `POST /providers` response — a 3-field creation receipt, **not** a {@link GatewayProvider}.
|
|
104663
105010
|
* Verified live 2026-07-28. **No `version_id`** — unlike its {@link
|
|
@@ -104746,6 +105093,21 @@ declare const ListApiKeysResponseSchema: z.ZodObject<{
|
|
|
104746
105093
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
104747
105094
|
}, z.ZodTypeAny, "passthrough">>;
|
|
104748
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>;
|
|
104749
105111
|
/** An organisation-level provider integration. */
|
|
104750
105112
|
declare const GatewayIntegrationSchema: z.ZodObject<{
|
|
104751
105113
|
id: z.ZodString;
|
|
@@ -105045,7 +105407,7 @@ declare const GatewayIntegrationWorkspaceSchema: z.ZodObject<{
|
|
|
105045
105407
|
enabled: z.ZodBoolean;
|
|
105046
105408
|
status: z.ZodString;
|
|
105047
105409
|
created_at: z.ZodString;
|
|
105048
|
-
last_updated_at: z.ZodString
|
|
105410
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105049
105411
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105050
105412
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
105051
105413
|
id: z.ZodString;
|
|
@@ -105087,7 +105449,7 @@ declare const GatewayIntegrationWorkspaceSchema: z.ZodObject<{
|
|
|
105087
105449
|
enabled: z.ZodBoolean;
|
|
105088
105450
|
status: z.ZodString;
|
|
105089
105451
|
created_at: z.ZodString;
|
|
105090
|
-
last_updated_at: z.ZodString
|
|
105452
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105091
105453
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105092
105454
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
105093
105455
|
id: z.ZodString;
|
|
@@ -105129,7 +105491,7 @@ declare const GatewayIntegrationWorkspaceSchema: z.ZodObject<{
|
|
|
105129
105491
|
enabled: z.ZodBoolean;
|
|
105130
105492
|
status: z.ZodString;
|
|
105131
105493
|
created_at: z.ZodString;
|
|
105132
|
-
last_updated_at: z.ZodString
|
|
105494
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105133
105495
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105134
105496
|
}, z.ZodTypeAny, "passthrough">>;
|
|
105135
105497
|
type GatewayIntegrationWorkspace = z.infer<typeof GatewayIntegrationWorkspaceSchema>;
|
|
@@ -105293,7 +105655,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105293
105655
|
enabled: z.ZodBoolean;
|
|
105294
105656
|
status: z.ZodString;
|
|
105295
105657
|
created_at: z.ZodString;
|
|
105296
|
-
last_updated_at: z.ZodString
|
|
105658
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105297
105659
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105298
105660
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
105299
105661
|
id: z.ZodString;
|
|
@@ -105335,7 +105697,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105335
105697
|
enabled: z.ZodBoolean;
|
|
105336
105698
|
status: z.ZodString;
|
|
105337
105699
|
created_at: z.ZodString;
|
|
105338
|
-
last_updated_at: z.ZodString
|
|
105700
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105339
105701
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105340
105702
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
105341
105703
|
id: z.ZodString;
|
|
@@ -105377,7 +105739,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105377
105739
|
enabled: z.ZodBoolean;
|
|
105378
105740
|
status: z.ZodString;
|
|
105379
105741
|
created_at: z.ZodString;
|
|
105380
|
-
last_updated_at: z.ZodString
|
|
105742
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105381
105743
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105382
105744
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
105383
105745
|
global_workspace_access: z.ZodObject<{
|
|
@@ -105534,7 +105896,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105534
105896
|
enabled: z.ZodBoolean;
|
|
105535
105897
|
status: z.ZodString;
|
|
105536
105898
|
created_at: z.ZodString;
|
|
105537
|
-
last_updated_at: z.ZodString
|
|
105899
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105538
105900
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105539
105901
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
105540
105902
|
id: z.ZodString;
|
|
@@ -105576,7 +105938,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105576
105938
|
enabled: z.ZodBoolean;
|
|
105577
105939
|
status: z.ZodString;
|
|
105578
105940
|
created_at: z.ZodString;
|
|
105579
|
-
last_updated_at: z.ZodString
|
|
105941
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105580
105942
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105581
105943
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
105582
105944
|
id: z.ZodString;
|
|
@@ -105618,7 +105980,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105618
105980
|
enabled: z.ZodBoolean;
|
|
105619
105981
|
status: z.ZodString;
|
|
105620
105982
|
created_at: z.ZodString;
|
|
105621
|
-
last_updated_at: z.ZodString
|
|
105983
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105622
105984
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105623
105985
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
105624
105986
|
global_workspace_access: z.ZodObject<{
|
|
@@ -105775,7 +106137,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105775
106137
|
enabled: z.ZodBoolean;
|
|
105776
106138
|
status: z.ZodString;
|
|
105777
106139
|
created_at: z.ZodString;
|
|
105778
|
-
last_updated_at: z.ZodString
|
|
106140
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105779
106141
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105780
106142
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
105781
106143
|
id: z.ZodString;
|
|
@@ -105817,7 +106179,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105817
106179
|
enabled: z.ZodBoolean;
|
|
105818
106180
|
status: z.ZodString;
|
|
105819
106181
|
created_at: z.ZodString;
|
|
105820
|
-
last_updated_at: z.ZodString
|
|
106182
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105821
106183
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105822
106184
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
105823
106185
|
id: z.ZodString;
|
|
@@ -105859,7 +106221,7 @@ declare const GatewayIntegrationWorkspacesResponseSchema: z.ZodObject<{
|
|
|
105859
106221
|
enabled: z.ZodBoolean;
|
|
105860
106222
|
status: z.ZodString;
|
|
105861
106223
|
created_at: z.ZodString;
|
|
105862
|
-
last_updated_at: z.ZodString
|
|
106224
|
+
last_updated_at: z.ZodNullable<z.ZodString>;
|
|
105863
106225
|
last_reset_at: z.ZodNullable<z.ZodString>;
|
|
105864
106226
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
105865
106227
|
global_workspace_access: z.ZodObject<{
|
|
@@ -106155,64 +106517,756 @@ declare const ListMcpIntegrationsResponseSchema: z.ZodObject<{
|
|
|
106155
106517
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106156
106518
|
object: z.ZodString;
|
|
106157
106519
|
total: z.ZodNumber;
|
|
106158
|
-
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
106520
|
+
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
106521
|
+
data: z.ZodArray<z.ZodObject<{
|
|
106522
|
+
id: z.ZodString;
|
|
106523
|
+
organisation_id: z.ZodString;
|
|
106524
|
+
name: z.ZodString;
|
|
106525
|
+
owner_id: z.ZodString;
|
|
106526
|
+
status: z.ZodString;
|
|
106527
|
+
type: z.ZodString;
|
|
106528
|
+
url: z.ZodString;
|
|
106529
|
+
auth_type: z.ZodString;
|
|
106530
|
+
transport: z.ZodString;
|
|
106531
|
+
/**
|
|
106532
|
+
* JSON-encoded STRING on reads — the same request/response asymmetry as
|
|
106533
|
+
* `configs.config` (see {@link GatewayConfigDetailSchema}). The CREATE request
|
|
106534
|
+
* (`McpIntegrationCreateRequest.configurations`) sends an object; this is the read shape.
|
|
106535
|
+
*/
|
|
106536
|
+
configurations: z.ZodString;
|
|
106537
|
+
created_at: z.ZodString;
|
|
106538
|
+
last_updated_at: z.ZodString;
|
|
106539
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106540
|
+
id: z.ZodString;
|
|
106541
|
+
organisation_id: z.ZodString;
|
|
106542
|
+
name: z.ZodString;
|
|
106543
|
+
owner_id: z.ZodString;
|
|
106544
|
+
status: z.ZodString;
|
|
106545
|
+
type: z.ZodString;
|
|
106546
|
+
url: z.ZodString;
|
|
106547
|
+
auth_type: z.ZodString;
|
|
106548
|
+
transport: z.ZodString;
|
|
106549
|
+
/**
|
|
106550
|
+
* JSON-encoded STRING on reads — the same request/response asymmetry as
|
|
106551
|
+
* `configs.config` (see {@link GatewayConfigDetailSchema}). The CREATE request
|
|
106552
|
+
* (`McpIntegrationCreateRequest.configurations`) sends an object; this is the read shape.
|
|
106553
|
+
*/
|
|
106554
|
+
configurations: z.ZodString;
|
|
106555
|
+
created_at: z.ZodString;
|
|
106556
|
+
last_updated_at: z.ZodString;
|
|
106557
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106558
|
+
id: z.ZodString;
|
|
106559
|
+
organisation_id: z.ZodString;
|
|
106560
|
+
name: z.ZodString;
|
|
106561
|
+
owner_id: z.ZodString;
|
|
106562
|
+
status: z.ZodString;
|
|
106563
|
+
type: z.ZodString;
|
|
106564
|
+
url: z.ZodString;
|
|
106565
|
+
auth_type: z.ZodString;
|
|
106566
|
+
transport: z.ZodString;
|
|
106567
|
+
/**
|
|
106568
|
+
* JSON-encoded STRING on reads — the same request/response asymmetry as
|
|
106569
|
+
* `configs.config` (see {@link GatewayConfigDetailSchema}). The CREATE request
|
|
106570
|
+
* (`McpIntegrationCreateRequest.configurations`) sends an object; this is the read shape.
|
|
106571
|
+
*/
|
|
106572
|
+
configurations: z.ZodString;
|
|
106573
|
+
created_at: z.ZodString;
|
|
106574
|
+
last_updated_at: z.ZodString;
|
|
106575
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
106576
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
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;
|
|
106159
107169
|
data: z.ZodArray<z.ZodObject<{
|
|
106160
|
-
id: z.ZodString;
|
|
106161
|
-
organisation_id: z.ZodString;
|
|
106162
107170
|
name: z.ZodString;
|
|
106163
|
-
owner_id: z.ZodString;
|
|
106164
|
-
status: z.ZodString;
|
|
106165
107171
|
type: z.ZodString;
|
|
106166
|
-
|
|
106167
|
-
|
|
106168
|
-
|
|
106169
|
-
|
|
106170
|
-
* JSON-encoded STRING on reads — the same request/response asymmetry as
|
|
106171
|
-
* `configs.config` (see {@link GatewayConfigDetailSchema}). The CREATE request
|
|
106172
|
-
* (`McpIntegrationCreateRequest.configurations`) sends an object; this is the read shape.
|
|
106173
|
-
*/
|
|
106174
|
-
configurations: z.ZodString;
|
|
107172
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107173
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107174
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107175
|
+
enabled: z.ZodBoolean;
|
|
106175
107176
|
created_at: z.ZodString;
|
|
106176
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;
|
|
106177
107183
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
106178
|
-
id: z.ZodString;
|
|
106179
|
-
organisation_id: z.ZodString;
|
|
106180
107184
|
name: z.ZodString;
|
|
106181
|
-
owner_id: z.ZodString;
|
|
106182
|
-
status: z.ZodString;
|
|
106183
107185
|
type: z.ZodString;
|
|
106184
|
-
|
|
106185
|
-
|
|
106186
|
-
|
|
106187
|
-
|
|
106188
|
-
* JSON-encoded STRING on reads — the same request/response asymmetry as
|
|
106189
|
-
* `configs.config` (see {@link GatewayConfigDetailSchema}). The CREATE request
|
|
106190
|
-
* (`McpIntegrationCreateRequest.configurations`) sends an object; this is the read shape.
|
|
106191
|
-
*/
|
|
106192
|
-
configurations: z.ZodString;
|
|
107186
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107187
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107188
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107189
|
+
enabled: z.ZodBoolean;
|
|
106193
107190
|
created_at: z.ZodString;
|
|
106194
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;
|
|
106195
107197
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106196
|
-
id: z.ZodString;
|
|
106197
|
-
organisation_id: z.ZodString;
|
|
106198
107198
|
name: z.ZodString;
|
|
106199
|
-
owner_id: z.ZodString;
|
|
106200
|
-
status: z.ZodString;
|
|
106201
107199
|
type: z.ZodString;
|
|
106202
|
-
|
|
106203
|
-
|
|
106204
|
-
|
|
106205
|
-
|
|
106206
|
-
* JSON-encoded STRING on reads — the same request/response asymmetry as
|
|
106207
|
-
* `configs.config` (see {@link GatewayConfigDetailSchema}). The CREATE request
|
|
106208
|
-
* (`McpIntegrationCreateRequest.configurations`) sends an object; this is the read shape.
|
|
106209
|
-
*/
|
|
106210
|
-
configurations: z.ZodString;
|
|
107200
|
+
title: z.ZodNullable<z.ZodString>;
|
|
107201
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107202
|
+
icons: z.ZodNullable<z.ZodUnknown>;
|
|
107203
|
+
enabled: z.ZodBoolean;
|
|
106211
107204
|
created_at: z.ZodString;
|
|
106212
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;
|
|
106213
107211
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
106214
107212
|
}, z.ZodTypeAny, "passthrough">>;
|
|
106215
|
-
type
|
|
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>;
|
|
106216
107270
|
/** A deployment list row. */
|
|
106217
107271
|
declare const GatewayDeploymentSchema: z.ZodObject<{
|
|
106218
107272
|
id: z.ZodString;
|
|
@@ -106477,6 +107531,99 @@ declare const GatewayDeploymentCreateResponseSchema: z.ZodObject<{
|
|
|
106477
107531
|
object: z.ZodString;
|
|
106478
107532
|
}, z.ZodTypeAny, "passthrough">>;
|
|
106479
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>;
|
|
106480
107627
|
declare const ListDeploymentsResponseSchema: z.ZodObject<{
|
|
106481
107628
|
object: z.ZodString;
|
|
106482
107629
|
total: z.ZodNumber;
|
|
@@ -111929,6 +113076,19 @@ declare class AIGatewayConfigsClient {
|
|
|
111929
113076
|
* ```
|
|
111930
113077
|
*/
|
|
111931
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>;
|
|
111932
113092
|
/**
|
|
111933
113093
|
* Create a config.
|
|
111934
113094
|
*
|
|
@@ -112007,6 +113167,8 @@ interface GatewayGuardrailCreateRequest {
|
|
|
112007
113167
|
checks: GatewayGuardrailCheck[];
|
|
112008
113168
|
actions: Record<string, unknown>;
|
|
112009
113169
|
}
|
|
113170
|
+
/** Request body for updating a guardrail. Omitted fields remain unchanged. */
|
|
113171
|
+
type GatewayGuardrailUpdateRequest = Partial<Pick<GatewayGuardrailCreateRequest, 'name' | 'checks' | 'actions'>>;
|
|
112010
113172
|
/** Client for AI Gateway guardrail operations (data plane). */
|
|
112011
113173
|
declare class AIGatewayGuardrailsClient {
|
|
112012
113174
|
private readonly baseUrl;
|
|
@@ -112067,6 +113229,21 @@ declare class AIGatewayGuardrailsClient {
|
|
|
112067
113229
|
* ```
|
|
112068
113230
|
*/
|
|
112069
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>;
|
|
112070
113247
|
/**
|
|
112071
113248
|
* Delete a guardrail.
|
|
112072
113249
|
*
|
|
@@ -112101,6 +113278,15 @@ interface GatewayProviderCreateRequest {
|
|
|
112101
113278
|
note?: string;
|
|
112102
113279
|
expires_at?: string | null;
|
|
112103
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
|
+
}
|
|
112104
113290
|
/** Client for AI Gateway provider operations (data plane). */
|
|
112105
113291
|
declare class AIGatewayProvidersClient {
|
|
112106
113292
|
private readonly baseUrl;
|
|
@@ -112121,6 +113307,22 @@ declare class AIGatewayProvidersClient {
|
|
|
112121
113307
|
* ```
|
|
112122
113308
|
*/
|
|
112123
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>;
|
|
112124
113326
|
/**
|
|
112125
113327
|
* Create a provider.
|
|
112126
113328
|
*
|
|
@@ -112148,6 +113350,22 @@ declare class AIGatewayProvidersClient {
|
|
|
112148
113350
|
* ```
|
|
112149
113351
|
*/
|
|
112150
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>;
|
|
112151
113369
|
/**
|
|
112152
113370
|
* Delete a provider.
|
|
112153
113371
|
*
|
|
@@ -112187,6 +113405,10 @@ interface GatewayApiKeyCreateRequest {
|
|
|
112187
113405
|
/** Required for user keys only. */
|
|
112188
113406
|
user_id?: string;
|
|
112189
113407
|
}
|
|
113408
|
+
interface GatewayApiKeyRotateRequest {
|
|
113409
|
+
/** Minimum 30 minutes when supplied. */
|
|
113410
|
+
key_transition_period_ms?: number;
|
|
113411
|
+
}
|
|
112190
113412
|
/**
|
|
112191
113413
|
* Client for AI Gateway API-key operations (data plane).
|
|
112192
113414
|
*
|
|
@@ -112230,6 +113452,21 @@ declare class AIGatewayApiKeysClient {
|
|
|
112230
113452
|
* ```
|
|
112231
113453
|
*/
|
|
112232
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>;
|
|
112233
113470
|
/**
|
|
112234
113471
|
* Create a service API key.
|
|
112235
113472
|
* @param body - Name, scopes, TSG, workspace UUID, and type.
|
|
@@ -112511,14 +113748,27 @@ interface McpIntegrationCreateRequest {
|
|
|
112511
113748
|
configurations?: Record<string, unknown>;
|
|
112512
113749
|
secret_mappings?: unknown[];
|
|
112513
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
|
+
}
|
|
112514
113759
|
/**
|
|
112515
113760
|
* Workspace-binding payload for `mcp-integrations/{id}/workspaces`.
|
|
112516
|
-
*
|
|
112517
|
-
* live MCP-integrations tenant.
|
|
113761
|
+
* Verified live against SCM on 2026-08-30.
|
|
112518
113762
|
*/
|
|
112519
113763
|
interface McpIntegrationWorkspacesRequest {
|
|
112520
|
-
workspaces?:
|
|
112521
|
-
|
|
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;
|
|
112522
113772
|
}
|
|
112523
113773
|
/** Client for AI Gateway MCP server integrations (admin plane). */
|
|
112524
113774
|
declare class AIGatewayMcpIntegrationsClient {
|
|
@@ -112539,6 +113789,45 @@ declare class AIGatewayMcpIntegrationsClient {
|
|
|
112539
113789
|
* ```
|
|
112540
113790
|
*/
|
|
112541
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>;
|
|
112542
113831
|
/**
|
|
112543
113832
|
* Register an MCP server.
|
|
112544
113833
|
* @param body - Name, server URL, auth type, transport, and provider-specific configuration.
|
|
@@ -112559,24 +113848,46 @@ declare class AIGatewayMcpIntegrationsClient {
|
|
|
112559
113848
|
* ```
|
|
112560
113849
|
*/
|
|
112561
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>;
|
|
112562
113857
|
/**
|
|
112563
113858
|
* Replace which workspaces may use this MCP integration.
|
|
112564
113859
|
* @param mcpIntegrationId - MCP integration UUID.
|
|
112565
113860
|
* @param body - Workspace bindings or a global-access flag; this is a replace, not a merge.
|
|
112566
|
-
* @returns
|
|
113861
|
+
* @returns An empty object. Verified live 2026-08-30.
|
|
112567
113862
|
* @example
|
|
112568
113863
|
* ```ts
|
|
112569
113864
|
* import { AIGatewayClient } from '@cdot65/prisma-airs-sdk';
|
|
112570
113865
|
* const gw = new AIGatewayClient();
|
|
112571
113866
|
*
|
|
112572
113867
|
* await gw.mcpIntegrations.setWorkspaces('f6692544-3265-49be-9711-bbdcebc079e4', {
|
|
112573
|
-
*
|
|
113868
|
+
* workspaces: [{ id: 'ws-development', enabled: true }],
|
|
113869
|
+
* global_workspace_access: { enabled: false },
|
|
113870
|
+
* override_existing_workspace_access: true,
|
|
112574
113871
|
* });
|
|
112575
113872
|
* ```
|
|
112576
113873
|
*/
|
|
112577
|
-
setWorkspaces(mcpIntegrationId: string, body: McpIntegrationWorkspacesRequest): Promise<
|
|
113874
|
+
setWorkspaces(mcpIntegrationId: string, body: McpIntegrationWorkspacesRequest): Promise<McpIntegrationWorkspacesUpdateResponse>;
|
|
112578
113875
|
}
|
|
112579
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
|
+
}
|
|
112580
113891
|
/** Request body for creating a deployment. */
|
|
112581
113892
|
interface GatewayDeploymentCreateRequest {
|
|
112582
113893
|
name: string;
|
|
@@ -112585,10 +113896,21 @@ interface GatewayDeploymentCreateRequest {
|
|
|
112585
113896
|
/** The TSG as a numeric string — NOT the organisation UUID returned on reads. */
|
|
112586
113897
|
organisation_id: string;
|
|
112587
113898
|
/** Note `allow_all_workspaces` is a real boolean here; reads return it as 0/1. */
|
|
112588
|
-
auth_settings?:
|
|
112589
|
-
|
|
112590
|
-
|
|
112591
|
-
|
|
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;
|
|
112592
113914
|
}
|
|
112593
113915
|
/** Client for AI Gateway deployment operations (admin plane). */
|
|
112594
113916
|
declare class AIGatewayDeploymentsClient {
|
|
@@ -112659,6 +113981,37 @@ declare class AIGatewayDeploymentsClient {
|
|
|
112659
113981
|
* ```
|
|
112660
113982
|
*/
|
|
112661
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>;
|
|
112662
114015
|
/**
|
|
112663
114016
|
* Archive a deployment.
|
|
112664
114017
|
*
|
|
@@ -112925,4 +114278,4 @@ declare class AIGatewayClient {
|
|
|
112925
114278
|
constructor(opts?: AIGatewayClientOptions);
|
|
112926
114279
|
}
|
|
112927
114280
|
|
|
112928
|
-
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, 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 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 };
|
|
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 };
|