@cdot65/prisma-airs-sdk 0.11.0 → 0.13.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.d.cts CHANGED
@@ -56871,6 +56871,403 @@ declare const DashboardApplicationViolationBreakdownSchema: z.ZodObject<{
56871
56871
  }, z.ZodTypeAny, "passthrough">>;
56872
56872
  /** Per-application detector violation breakdown. */
56873
56873
  type DashboardApplicationViolationBreakdown = z.infer<typeof DashboardApplicationViolationBreakdownSchema>;
56874
+ /**
56875
+ * One time bucket of session activity inside an `applicationsoverview` item.
56876
+ *
56877
+ * The dashboard returns a series of buckets covering the requested window, useful for spark-line
56878
+ * style rendering. The exact shape varies by `time_unit`/`time_interval` combination; fields
56879
+ * use forward-compatible parsing.
56880
+ */
56881
+ declare const DashboardApplicationSessionsBucketSchema: z.ZodObject<{
56882
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56883
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56884
+ total: z.ZodOptional<z.ZodNumber>;
56885
+ violated: z.ZodOptional<z.ZodNumber>;
56886
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
56887
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56888
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56889
+ total: z.ZodOptional<z.ZodNumber>;
56890
+ violated: z.ZodOptional<z.ZodNumber>;
56891
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
56892
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56893
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56894
+ total: z.ZodOptional<z.ZodNumber>;
56895
+ violated: z.ZodOptional<z.ZodNumber>;
56896
+ }, z.ZodTypeAny, "passthrough">>;
56897
+ /** One session-activity bucket in a dashboard applications-overview item. */
56898
+ type DashboardApplicationSessionsBucket = z.infer<typeof DashboardApplicationSessionsBucketSchema>;
56899
+ /**
56900
+ * One application entry in the `applicationsoverview` response.
56901
+ *
56902
+ * The dashboard buckets traffic by **the literal `metadata.app_name` value scan payloads
56903
+ * actually sent**. A single registered customer-app can therefore appear here as multiple items,
56904
+ * one per distinct scan-payload name. The `id` field is the registered `customer_appId` UUID
56905
+ * (matches `customer_apps.customer_appId`); the `name` field is the scan-payload value (which
56906
+ * may differ from `customer_apps.app_name` when the integration overrides it).
56907
+ */
56908
+ declare const DashboardApplicationsOverviewItemSchema: z.ZodObject<{
56909
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56910
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56911
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56912
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56913
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56914
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
56915
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56916
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56917
+ total: z.ZodOptional<z.ZodNumber>;
56918
+ violated: z.ZodOptional<z.ZodNumber>;
56919
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
56920
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56921
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56922
+ total: z.ZodOptional<z.ZodNumber>;
56923
+ violated: z.ZodOptional<z.ZodNumber>;
56924
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
56925
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56926
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56927
+ total: z.ZodOptional<z.ZodNumber>;
56928
+ violated: z.ZodOptional<z.ZodNumber>;
56929
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
56930
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
56931
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
56932
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
56933
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56934
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56935
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56936
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56937
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56938
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
56939
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56940
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56941
+ total: z.ZodOptional<z.ZodNumber>;
56942
+ violated: z.ZodOptional<z.ZodNumber>;
56943
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
56944
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56945
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56946
+ total: z.ZodOptional<z.ZodNumber>;
56947
+ violated: z.ZodOptional<z.ZodNumber>;
56948
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
56949
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56950
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56951
+ total: z.ZodOptional<z.ZodNumber>;
56952
+ violated: z.ZodOptional<z.ZodNumber>;
56953
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
56954
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
56955
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
56956
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
56957
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56958
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56959
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56960
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56961
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56962
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
56963
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56964
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56965
+ total: z.ZodOptional<z.ZodNumber>;
56966
+ violated: z.ZodOptional<z.ZodNumber>;
56967
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
56968
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56969
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56970
+ total: z.ZodOptional<z.ZodNumber>;
56971
+ violated: z.ZodOptional<z.ZodNumber>;
56972
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
56973
+ bucket_number: z.ZodOptional<z.ZodNumber>;
56974
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56975
+ total: z.ZodOptional<z.ZodNumber>;
56976
+ violated: z.ZodOptional<z.ZodNumber>;
56977
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
56978
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
56979
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
56980
+ }, z.ZodTypeAny, "passthrough">>;
56981
+ /** One application in the dashboard applications-overview response. */
56982
+ type DashboardApplicationsOverviewItem = z.infer<typeof DashboardApplicationsOverviewItemSchema>;
56983
+ /** Pagination metadata on the applications-overview response. */
56984
+ declare const DashboardPaginationSchema: z.ZodObject<{
56985
+ limit: z.ZodOptional<z.ZodNumber>;
56986
+ skip: z.ZodOptional<z.ZodNumber>;
56987
+ total_items: z.ZodOptional<z.ZodNumber>;
56988
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
56989
+ limit: z.ZodOptional<z.ZodNumber>;
56990
+ skip: z.ZodOptional<z.ZodNumber>;
56991
+ total_items: z.ZodOptional<z.ZodNumber>;
56992
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
56993
+ limit: z.ZodOptional<z.ZodNumber>;
56994
+ skip: z.ZodOptional<z.ZodNumber>;
56995
+ total_items: z.ZodOptional<z.ZodNumber>;
56996
+ }, z.ZodTypeAny, "passthrough">>;
56997
+ /** Pagination metadata returned by the applications-overview endpoint. */
56998
+ type DashboardPagination = z.infer<typeof DashboardPaginationSchema>;
56999
+ /**
57000
+ * Response from `dashboard/v2/apps/applicationsoverview`.
57001
+ *
57002
+ * Each item in `items[]` is one dashboard bucket (one per distinct scan-payload
57003
+ * `metadata.app_name` per registered customer-app). Use this to enumerate all buckets the
57004
+ * dashboard tracks, then call {@link DashboardClient.application} with each
57005
+ * `(item.id, item.name)` pair to retrieve `token_stats` for that bucket.
57006
+ */
57007
+ declare const DashboardApplicationsOverviewSchema: z.ZodObject<{
57008
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
57009
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57010
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57011
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57012
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57013
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57014
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
57015
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57016
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57017
+ total: z.ZodOptional<z.ZodNumber>;
57018
+ violated: z.ZodOptional<z.ZodNumber>;
57019
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57020
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57021
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57022
+ total: z.ZodOptional<z.ZodNumber>;
57023
+ violated: z.ZodOptional<z.ZodNumber>;
57024
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57025
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57026
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57027
+ total: z.ZodOptional<z.ZodNumber>;
57028
+ violated: z.ZodOptional<z.ZodNumber>;
57029
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
57030
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57031
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57032
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57033
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57034
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57035
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57036
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57037
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57038
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
57039
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57040
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57041
+ total: z.ZodOptional<z.ZodNumber>;
57042
+ violated: z.ZodOptional<z.ZodNumber>;
57043
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57044
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57045
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57046
+ total: z.ZodOptional<z.ZodNumber>;
57047
+ violated: z.ZodOptional<z.ZodNumber>;
57048
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57049
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57050
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57051
+ total: z.ZodOptional<z.ZodNumber>;
57052
+ violated: z.ZodOptional<z.ZodNumber>;
57053
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
57054
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57055
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57056
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57057
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57058
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57059
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57060
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57061
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57062
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
57063
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57064
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57065
+ total: z.ZodOptional<z.ZodNumber>;
57066
+ violated: z.ZodOptional<z.ZodNumber>;
57067
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57068
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57069
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57070
+ total: z.ZodOptional<z.ZodNumber>;
57071
+ violated: z.ZodOptional<z.ZodNumber>;
57072
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57073
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57074
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57075
+ total: z.ZodOptional<z.ZodNumber>;
57076
+ violated: z.ZodOptional<z.ZodNumber>;
57077
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
57078
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57079
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57080
+ }, z.ZodTypeAny, "passthrough">>, "many">>;
57081
+ pagination: z.ZodOptional<z.ZodObject<{
57082
+ limit: z.ZodOptional<z.ZodNumber>;
57083
+ skip: z.ZodOptional<z.ZodNumber>;
57084
+ total_items: z.ZodOptional<z.ZodNumber>;
57085
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57086
+ limit: z.ZodOptional<z.ZodNumber>;
57087
+ skip: z.ZodOptional<z.ZodNumber>;
57088
+ total_items: z.ZodOptional<z.ZodNumber>;
57089
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57090
+ limit: z.ZodOptional<z.ZodNumber>;
57091
+ skip: z.ZodOptional<z.ZodNumber>;
57092
+ total_items: z.ZodOptional<z.ZodNumber>;
57093
+ }, z.ZodTypeAny, "passthrough">>>;
57094
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57095
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
57096
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57097
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57098
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57099
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57100
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57101
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
57102
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57103
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57104
+ total: z.ZodOptional<z.ZodNumber>;
57105
+ violated: z.ZodOptional<z.ZodNumber>;
57106
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57107
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57108
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57109
+ total: z.ZodOptional<z.ZodNumber>;
57110
+ violated: z.ZodOptional<z.ZodNumber>;
57111
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57112
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57113
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57114
+ total: z.ZodOptional<z.ZodNumber>;
57115
+ violated: z.ZodOptional<z.ZodNumber>;
57116
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
57117
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57118
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57119
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57120
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57121
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57122
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57123
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57124
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57125
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
57126
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57127
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57128
+ total: z.ZodOptional<z.ZodNumber>;
57129
+ violated: z.ZodOptional<z.ZodNumber>;
57130
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57131
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57132
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57133
+ total: z.ZodOptional<z.ZodNumber>;
57134
+ violated: z.ZodOptional<z.ZodNumber>;
57135
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57136
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57137
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57138
+ total: z.ZodOptional<z.ZodNumber>;
57139
+ violated: z.ZodOptional<z.ZodNumber>;
57140
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
57141
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57142
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57143
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57144
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57145
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57146
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57147
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57148
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57149
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
57150
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57151
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57152
+ total: z.ZodOptional<z.ZodNumber>;
57153
+ violated: z.ZodOptional<z.ZodNumber>;
57154
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57155
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57156
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57157
+ total: z.ZodOptional<z.ZodNumber>;
57158
+ violated: z.ZodOptional<z.ZodNumber>;
57159
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57160
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57161
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57162
+ total: z.ZodOptional<z.ZodNumber>;
57163
+ violated: z.ZodOptional<z.ZodNumber>;
57164
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
57165
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57166
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57167
+ }, z.ZodTypeAny, "passthrough">>, "many">>;
57168
+ pagination: z.ZodOptional<z.ZodObject<{
57169
+ limit: z.ZodOptional<z.ZodNumber>;
57170
+ skip: z.ZodOptional<z.ZodNumber>;
57171
+ total_items: z.ZodOptional<z.ZodNumber>;
57172
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57173
+ limit: z.ZodOptional<z.ZodNumber>;
57174
+ skip: z.ZodOptional<z.ZodNumber>;
57175
+ total_items: z.ZodOptional<z.ZodNumber>;
57176
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57177
+ limit: z.ZodOptional<z.ZodNumber>;
57178
+ skip: z.ZodOptional<z.ZodNumber>;
57179
+ total_items: z.ZodOptional<z.ZodNumber>;
57180
+ }, z.ZodTypeAny, "passthrough">>>;
57181
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57182
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
57183
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57184
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57185
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57186
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57187
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57188
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
57189
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57190
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57191
+ total: z.ZodOptional<z.ZodNumber>;
57192
+ violated: z.ZodOptional<z.ZodNumber>;
57193
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57194
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57195
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57196
+ total: z.ZodOptional<z.ZodNumber>;
57197
+ violated: z.ZodOptional<z.ZodNumber>;
57198
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57199
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57200
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57201
+ total: z.ZodOptional<z.ZodNumber>;
57202
+ violated: z.ZodOptional<z.ZodNumber>;
57203
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
57204
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57205
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57206
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57207
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57208
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57209
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57210
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57211
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57212
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
57213
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57214
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57215
+ total: z.ZodOptional<z.ZodNumber>;
57216
+ violated: z.ZodOptional<z.ZodNumber>;
57217
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57218
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57219
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57220
+ total: z.ZodOptional<z.ZodNumber>;
57221
+ violated: z.ZodOptional<z.ZodNumber>;
57222
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57223
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57224
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57225
+ total: z.ZodOptional<z.ZodNumber>;
57226
+ violated: z.ZodOptional<z.ZodNumber>;
57227
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
57228
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57229
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57230
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57231
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57232
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57233
+ cloud: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57234
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57235
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57236
+ sessions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
57237
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57238
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57239
+ total: z.ZodOptional<z.ZodNumber>;
57240
+ violated: z.ZodOptional<z.ZodNumber>;
57241
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57242
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57243
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57244
+ total: z.ZodOptional<z.ZodNumber>;
57245
+ violated: z.ZodOptional<z.ZodNumber>;
57246
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57247
+ bucket_number: z.ZodOptional<z.ZodNumber>;
57248
+ date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57249
+ total: z.ZodOptional<z.ZodNumber>;
57250
+ violated: z.ZodOptional<z.ZodNumber>;
57251
+ }, z.ZodTypeAny, "passthrough">>, "many">>>;
57252
+ sessions_total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57253
+ sessions_violated: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57254
+ }, z.ZodTypeAny, "passthrough">>, "many">>;
57255
+ pagination: z.ZodOptional<z.ZodObject<{
57256
+ limit: z.ZodOptional<z.ZodNumber>;
57257
+ skip: z.ZodOptional<z.ZodNumber>;
57258
+ total_items: z.ZodOptional<z.ZodNumber>;
57259
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57260
+ limit: z.ZodOptional<z.ZodNumber>;
57261
+ skip: z.ZodOptional<z.ZodNumber>;
57262
+ total_items: z.ZodOptional<z.ZodNumber>;
57263
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
57264
+ limit: z.ZodOptional<z.ZodNumber>;
57265
+ skip: z.ZodOptional<z.ZodNumber>;
57266
+ total_items: z.ZodOptional<z.ZodNumber>;
57267
+ }, z.ZodTypeAny, "passthrough">>>;
57268
+ }, z.ZodTypeAny, "passthrough">>;
57269
+ /** Dashboard applications-overview response. */
57270
+ type DashboardApplicationsOverview = z.infer<typeof DashboardApplicationsOverviewSchema>;
56874
57271
 
56875
57272
  /** Zod schema for a deployment profile entry. */
56876
57273
  declare const DeploymentProfileEntrySchema: z.ZodObject<{
@@ -71837,7 +72234,7 @@ type ScanDetails = z.infer<typeof ScanDetailsSchema>;
71837
72234
  declare const ScanCreateRequestSchema: z.ZodObject<{
71838
72235
  model_uri: z.ZodString;
71839
72236
  security_group_uuid: z.ZodString;
71840
- scan_origin: z.ZodString;
72237
+ scan_origin: z.ZodOptional<z.ZodString>;
71841
72238
  allow_patterns: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
71842
72239
  ignore_patterns: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
71843
72240
  labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -72115,7 +72512,7 @@ declare const ScanCreateRequestSchema: z.ZodObject<{
72115
72512
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
72116
72513
  model_uri: z.ZodString;
72117
72514
  security_group_uuid: z.ZodString;
72118
- scan_origin: z.ZodString;
72515
+ scan_origin: z.ZodOptional<z.ZodString>;
72119
72516
  allow_patterns: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
72120
72517
  ignore_patterns: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
72121
72518
  labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -72393,7 +72790,7 @@ declare const ScanCreateRequestSchema: z.ZodObject<{
72393
72790
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
72394
72791
  model_uri: z.ZodString;
72395
72792
  security_group_uuid: z.ZodString;
72396
- scan_origin: z.ZodString;
72793
+ scan_origin: z.ZodOptional<z.ZodString>;
72397
72794
  allow_patterns: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
72398
72795
  ignore_patterns: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
72399
72796
  labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -72682,7 +73079,7 @@ declare const ScanBaseResponseSchema: z.ZodObject<{
72682
73079
  scan_origin: z.ZodString;
72683
73080
  security_group_uuid: z.ZodString;
72684
73081
  security_group_name: z.ZodString;
72685
- model_version_uuid: z.ZodString;
73082
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
72686
73083
  eval_outcome: z.ZodString;
72687
73084
  source_type: z.ZodString;
72688
73085
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -72727,7 +73124,7 @@ declare const ScanBaseResponseSchema: z.ZodObject<{
72727
73124
  scan_origin: z.ZodString;
72728
73125
  security_group_uuid: z.ZodString;
72729
73126
  security_group_name: z.ZodString;
72730
- model_version_uuid: z.ZodString;
73127
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
72731
73128
  eval_outcome: z.ZodString;
72732
73129
  source_type: z.ZodString;
72733
73130
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -72772,7 +73169,7 @@ declare const ScanBaseResponseSchema: z.ZodObject<{
72772
73169
  scan_origin: z.ZodString;
72773
73170
  security_group_uuid: z.ZodString;
72774
73171
  security_group_name: z.ZodString;
72775
- model_version_uuid: z.ZodString;
73172
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
72776
73173
  eval_outcome: z.ZodString;
72777
73174
  source_type: z.ZodString;
72778
73175
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -72829,7 +73226,7 @@ declare const ScanListSchema: z.ZodObject<{
72829
73226
  scan_origin: z.ZodString;
72830
73227
  security_group_uuid: z.ZodString;
72831
73228
  security_group_name: z.ZodString;
72832
- model_version_uuid: z.ZodString;
73229
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
72833
73230
  eval_outcome: z.ZodString;
72834
73231
  source_type: z.ZodString;
72835
73232
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -72874,7 +73271,7 @@ declare const ScanListSchema: z.ZodObject<{
72874
73271
  scan_origin: z.ZodString;
72875
73272
  security_group_uuid: z.ZodString;
72876
73273
  security_group_name: z.ZodString;
72877
- model_version_uuid: z.ZodString;
73274
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
72878
73275
  eval_outcome: z.ZodString;
72879
73276
  source_type: z.ZodString;
72880
73277
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -72919,7 +73316,7 @@ declare const ScanListSchema: z.ZodObject<{
72919
73316
  scan_origin: z.ZodString;
72920
73317
  security_group_uuid: z.ZodString;
72921
73318
  security_group_name: z.ZodString;
72922
- model_version_uuid: z.ZodString;
73319
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
72923
73320
  eval_outcome: z.ZodString;
72924
73321
  source_type: z.ZodString;
72925
73322
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -72973,7 +73370,7 @@ declare const ScanListSchema: z.ZodObject<{
72973
73370
  scan_origin: z.ZodString;
72974
73371
  security_group_uuid: z.ZodString;
72975
73372
  security_group_name: z.ZodString;
72976
- model_version_uuid: z.ZodString;
73373
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
72977
73374
  eval_outcome: z.ZodString;
72978
73375
  source_type: z.ZodString;
72979
73376
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73018,7 +73415,7 @@ declare const ScanListSchema: z.ZodObject<{
73018
73415
  scan_origin: z.ZodString;
73019
73416
  security_group_uuid: z.ZodString;
73020
73417
  security_group_name: z.ZodString;
73021
- model_version_uuid: z.ZodString;
73418
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73022
73419
  eval_outcome: z.ZodString;
73023
73420
  source_type: z.ZodString;
73024
73421
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73063,7 +73460,7 @@ declare const ScanListSchema: z.ZodObject<{
73063
73460
  scan_origin: z.ZodString;
73064
73461
  security_group_uuid: z.ZodString;
73065
73462
  security_group_name: z.ZodString;
73066
- model_version_uuid: z.ZodString;
73463
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73067
73464
  eval_outcome: z.ZodString;
73068
73465
  source_type: z.ZodString;
73069
73466
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73117,7 +73514,7 @@ declare const ScanListSchema: z.ZodObject<{
73117
73514
  scan_origin: z.ZodString;
73118
73515
  security_group_uuid: z.ZodString;
73119
73516
  security_group_name: z.ZodString;
73120
- model_version_uuid: z.ZodString;
73517
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73121
73518
  eval_outcome: z.ZodString;
73122
73519
  source_type: z.ZodString;
73123
73520
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73162,7 +73559,7 @@ declare const ScanListSchema: z.ZodObject<{
73162
73559
  scan_origin: z.ZodString;
73163
73560
  security_group_uuid: z.ZodString;
73164
73561
  security_group_name: z.ZodString;
73165
- model_version_uuid: z.ZodString;
73562
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73166
73563
  eval_outcome: z.ZodString;
73167
73564
  source_type: z.ZodString;
73168
73565
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73207,7 +73604,7 @@ declare const ScanListSchema: z.ZodObject<{
73207
73604
  scan_origin: z.ZodString;
73208
73605
  security_group_uuid: z.ZodString;
73209
73606
  security_group_name: z.ZodString;
73210
- model_version_uuid: z.ZodString;
73607
+ model_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73211
73608
  eval_outcome: z.ZodString;
73212
73609
  source_type: z.ZodString;
73213
73610
  created_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73437,6 +73834,627 @@ declare const FileListSchema: z.ZodObject<{
73437
73834
  }, z.ZodTypeAny, "passthrough">>;
73438
73835
  /** Paginated list of scanned model files. */
73439
73836
  type FileList = z.infer<typeof FileListSchema>;
73837
+ /**
73838
+ * A model resource (aggregate over its versions). Enum-typed fields are modeled as strings
73839
+ * to tolerate new backend values, consistent with the rest of the Model Security schemas.
73840
+ */
73841
+ declare const ModelResponseSchema: z.ZodObject<{
73842
+ uuid: z.ZodString;
73843
+ tsg_id: z.ZodString;
73844
+ created_at: z.ZodString;
73845
+ updated_at: z.ZodString;
73846
+ name: z.ZodString;
73847
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73848
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73849
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73850
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73851
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73852
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73853
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73854
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73855
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
73856
+ uuid: z.ZodString;
73857
+ tsg_id: z.ZodString;
73858
+ created_at: z.ZodString;
73859
+ updated_at: z.ZodString;
73860
+ name: z.ZodString;
73861
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73862
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73863
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73864
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73865
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73866
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73867
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73868
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73869
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
73870
+ uuid: z.ZodString;
73871
+ tsg_id: z.ZodString;
73872
+ created_at: z.ZodString;
73873
+ updated_at: z.ZodString;
73874
+ name: z.ZodString;
73875
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73876
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73877
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73878
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73879
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73880
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73881
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73882
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73883
+ }, z.ZodTypeAny, "passthrough">>;
73884
+ type Model = z.infer<typeof ModelResponseSchema>;
73885
+ /** Paginated list of models. */
73886
+ declare const ModelListSchema: z.ZodObject<{
73887
+ pagination: z.ZodObject<{
73888
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73889
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
73890
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73891
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
73892
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73893
+ }, z.ZodTypeAny, "passthrough">>;
73894
+ models: z.ZodArray<z.ZodObject<{
73895
+ uuid: z.ZodString;
73896
+ tsg_id: z.ZodString;
73897
+ created_at: z.ZodString;
73898
+ updated_at: z.ZodString;
73899
+ name: z.ZodString;
73900
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73901
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73902
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73903
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73904
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73905
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73906
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73907
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73908
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
73909
+ uuid: z.ZodString;
73910
+ tsg_id: z.ZodString;
73911
+ created_at: z.ZodString;
73912
+ updated_at: z.ZodString;
73913
+ name: z.ZodString;
73914
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73915
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73916
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73917
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73918
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73919
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73920
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73921
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73922
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
73923
+ uuid: z.ZodString;
73924
+ tsg_id: z.ZodString;
73925
+ created_at: z.ZodString;
73926
+ updated_at: z.ZodString;
73927
+ name: z.ZodString;
73928
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73929
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73930
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73931
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73932
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73933
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73934
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73935
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73936
+ }, z.ZodTypeAny, "passthrough">>, "many">;
73937
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
73938
+ pagination: z.ZodObject<{
73939
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73940
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
73941
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73942
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
73943
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73944
+ }, z.ZodTypeAny, "passthrough">>;
73945
+ models: z.ZodArray<z.ZodObject<{
73946
+ uuid: z.ZodString;
73947
+ tsg_id: z.ZodString;
73948
+ created_at: z.ZodString;
73949
+ updated_at: z.ZodString;
73950
+ name: z.ZodString;
73951
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73952
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73953
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73954
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73955
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73956
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73957
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73958
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73959
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
73960
+ uuid: z.ZodString;
73961
+ tsg_id: z.ZodString;
73962
+ created_at: z.ZodString;
73963
+ updated_at: z.ZodString;
73964
+ name: z.ZodString;
73965
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73966
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73967
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73968
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73969
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73970
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73971
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73972
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73973
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
73974
+ uuid: z.ZodString;
73975
+ tsg_id: z.ZodString;
73976
+ created_at: z.ZodString;
73977
+ updated_at: z.ZodString;
73978
+ name: z.ZodString;
73979
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73980
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73981
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73982
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73983
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73984
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73985
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
73986
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73987
+ }, z.ZodTypeAny, "passthrough">>, "many">;
73988
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
73989
+ pagination: z.ZodObject<{
73990
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73991
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
73992
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73993
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
73994
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73995
+ }, z.ZodTypeAny, "passthrough">>;
73996
+ models: z.ZodArray<z.ZodObject<{
73997
+ uuid: z.ZodString;
73998
+ tsg_id: z.ZodString;
73999
+ created_at: z.ZodString;
74000
+ updated_at: z.ZodString;
74001
+ name: z.ZodString;
74002
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74003
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74004
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74005
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74006
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74007
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74008
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74009
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74010
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74011
+ uuid: z.ZodString;
74012
+ tsg_id: z.ZodString;
74013
+ created_at: z.ZodString;
74014
+ updated_at: z.ZodString;
74015
+ name: z.ZodString;
74016
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74017
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74018
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74019
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74020
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74021
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74022
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74023
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74024
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74025
+ uuid: z.ZodString;
74026
+ tsg_id: z.ZodString;
74027
+ created_at: z.ZodString;
74028
+ updated_at: z.ZodString;
74029
+ name: z.ZodString;
74030
+ latest_version_uuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74031
+ latest_version_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74032
+ latest_version_revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74033
+ latest_version_hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74034
+ latest_version_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74035
+ latest_version_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74036
+ latest_version_source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74037
+ latest_version_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74038
+ }, z.ZodTypeAny, "passthrough">>, "many">;
74039
+ }, z.ZodTypeAny, "passthrough">>;
74040
+ type ModelList = z.infer<typeof ModelListSchema>;
74041
+ /** A specific version (revision) of a model. */
74042
+ declare const ModelVersionResponseSchema: z.ZodObject<{
74043
+ uuid: z.ZodString;
74044
+ tsg_id: z.ZodString;
74045
+ created_at: z.ZodString;
74046
+ updated_at: z.ZodString;
74047
+ revision: z.ZodString;
74048
+ model_uuid: z.ZodString;
74049
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74050
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74051
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74052
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74053
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74054
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74055
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74056
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74057
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74058
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74059
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74060
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74061
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74062
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74063
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74064
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74065
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74066
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74067
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74068
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74069
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74070
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74071
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74072
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74073
+ }, z.ZodTypeAny, "passthrough">>>>;
74074
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74075
+ uuid: z.ZodString;
74076
+ tsg_id: z.ZodString;
74077
+ created_at: z.ZodString;
74078
+ updated_at: z.ZodString;
74079
+ revision: z.ZodString;
74080
+ model_uuid: z.ZodString;
74081
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74082
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74083
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74084
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74085
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74086
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74087
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74088
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74089
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74090
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74091
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74092
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74093
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74094
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74095
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74096
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74097
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74098
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74099
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74100
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74101
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74102
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74103
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74104
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74105
+ }, z.ZodTypeAny, "passthrough">>>>;
74106
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74107
+ uuid: z.ZodString;
74108
+ tsg_id: z.ZodString;
74109
+ created_at: z.ZodString;
74110
+ updated_at: z.ZodString;
74111
+ revision: z.ZodString;
74112
+ model_uuid: z.ZodString;
74113
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74114
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74115
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74116
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74117
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74118
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74119
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74120
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74121
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74122
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74123
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74124
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74125
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74126
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74127
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74128
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74129
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74130
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74131
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74132
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74133
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74134
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74135
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74136
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74137
+ }, z.ZodTypeAny, "passthrough">>>>;
74138
+ }, z.ZodTypeAny, "passthrough">>;
74139
+ type ModelVersion = z.infer<typeof ModelVersionResponseSchema>;
74140
+ /** Paginated list of model versions. */
74141
+ declare const ModelVersionListSchema: z.ZodObject<{
74142
+ pagination: z.ZodObject<{
74143
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74144
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74145
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74146
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74147
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74148
+ }, z.ZodTypeAny, "passthrough">>;
74149
+ model_versions: z.ZodArray<z.ZodObject<{
74150
+ uuid: z.ZodString;
74151
+ tsg_id: z.ZodString;
74152
+ created_at: z.ZodString;
74153
+ updated_at: z.ZodString;
74154
+ revision: z.ZodString;
74155
+ model_uuid: z.ZodString;
74156
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74157
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74158
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74159
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74160
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74161
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74162
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74163
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74164
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74165
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74166
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74167
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74168
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74169
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74170
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74171
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74172
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74173
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74174
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74175
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74176
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74177
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74178
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74179
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74180
+ }, z.ZodTypeAny, "passthrough">>>>;
74181
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74182
+ uuid: z.ZodString;
74183
+ tsg_id: z.ZodString;
74184
+ created_at: z.ZodString;
74185
+ updated_at: z.ZodString;
74186
+ revision: z.ZodString;
74187
+ model_uuid: z.ZodString;
74188
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74189
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74190
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74191
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74192
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74193
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74194
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74195
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74196
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74197
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74198
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74199
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74200
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74201
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74202
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74203
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74204
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74205
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74206
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74207
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74208
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74209
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74210
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74211
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74212
+ }, z.ZodTypeAny, "passthrough">>>>;
74213
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74214
+ uuid: z.ZodString;
74215
+ tsg_id: z.ZodString;
74216
+ created_at: z.ZodString;
74217
+ updated_at: z.ZodString;
74218
+ revision: z.ZodString;
74219
+ model_uuid: z.ZodString;
74220
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74221
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74222
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74223
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74224
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74225
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74226
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74227
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74228
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74229
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74230
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74231
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74232
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74233
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74234
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74235
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74236
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74237
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74238
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74239
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74240
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74241
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74242
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74243
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74244
+ }, z.ZodTypeAny, "passthrough">>>>;
74245
+ }, z.ZodTypeAny, "passthrough">>, "many">;
74246
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74247
+ pagination: z.ZodObject<{
74248
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74249
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74250
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74251
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74252
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74253
+ }, z.ZodTypeAny, "passthrough">>;
74254
+ model_versions: z.ZodArray<z.ZodObject<{
74255
+ uuid: z.ZodString;
74256
+ tsg_id: z.ZodString;
74257
+ created_at: z.ZodString;
74258
+ updated_at: z.ZodString;
74259
+ revision: z.ZodString;
74260
+ model_uuid: z.ZodString;
74261
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74262
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74263
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74264
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74265
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74266
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74267
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74268
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74269
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74270
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74271
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74272
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74273
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74274
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74275
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74276
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74277
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74278
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74279
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74280
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74281
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74282
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74283
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74284
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74285
+ }, z.ZodTypeAny, "passthrough">>>>;
74286
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74287
+ uuid: z.ZodString;
74288
+ tsg_id: z.ZodString;
74289
+ created_at: z.ZodString;
74290
+ updated_at: z.ZodString;
74291
+ revision: z.ZodString;
74292
+ model_uuid: z.ZodString;
74293
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74294
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74295
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74296
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74297
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74298
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74299
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74300
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74301
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74302
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74303
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74304
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74305
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74306
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74307
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74308
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74309
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74310
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74311
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74312
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74313
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74314
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74315
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74316
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74317
+ }, z.ZodTypeAny, "passthrough">>>>;
74318
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74319
+ uuid: z.ZodString;
74320
+ tsg_id: z.ZodString;
74321
+ created_at: z.ZodString;
74322
+ updated_at: z.ZodString;
74323
+ revision: z.ZodString;
74324
+ model_uuid: z.ZodString;
74325
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74326
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74327
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74328
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74329
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74330
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74331
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74332
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74333
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74334
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74335
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74336
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74337
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74338
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74339
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74340
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74341
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74342
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74343
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74344
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74345
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74346
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74347
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74348
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74349
+ }, z.ZodTypeAny, "passthrough">>>>;
74350
+ }, z.ZodTypeAny, "passthrough">>, "many">;
74351
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74352
+ pagination: z.ZodObject<{
74353
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74354
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74355
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74356
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74357
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74358
+ }, z.ZodTypeAny, "passthrough">>;
74359
+ model_versions: z.ZodArray<z.ZodObject<{
74360
+ uuid: z.ZodString;
74361
+ tsg_id: z.ZodString;
74362
+ created_at: z.ZodString;
74363
+ updated_at: z.ZodString;
74364
+ revision: z.ZodString;
74365
+ model_uuid: z.ZodString;
74366
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74367
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74368
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74369
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74370
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74371
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74372
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74373
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74374
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74375
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74376
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74377
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74378
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74379
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74380
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74381
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74382
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74383
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74384
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74385
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74386
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74387
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74388
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74389
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74390
+ }, z.ZodTypeAny, "passthrough">>>>;
74391
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74392
+ uuid: z.ZodString;
74393
+ tsg_id: z.ZodString;
74394
+ created_at: z.ZodString;
74395
+ updated_at: z.ZodString;
74396
+ revision: z.ZodString;
74397
+ model_uuid: z.ZodString;
74398
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74399
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74400
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74401
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74402
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74403
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74404
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74405
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74406
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74407
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74408
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74409
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74410
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74411
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74412
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74413
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74414
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74415
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74416
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74417
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74418
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74419
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74420
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74421
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74422
+ }, z.ZodTypeAny, "passthrough">>>>;
74423
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74424
+ uuid: z.ZodString;
74425
+ tsg_id: z.ZodString;
74426
+ created_at: z.ZodString;
74427
+ updated_at: z.ZodString;
74428
+ revision: z.ZodString;
74429
+ model_uuid: z.ZodString;
74430
+ fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74431
+ file_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
74432
+ license: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74433
+ latest_scan_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74434
+ hf_commit_sha: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74435
+ hf_commit_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74436
+ hf_commit_authors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74437
+ hf_model_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74438
+ hf_organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74439
+ model_formats: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74440
+ source_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74441
+ last_eval_outcome: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74442
+ last_eval_summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74443
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74444
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74445
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74446
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74447
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74448
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74449
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74450
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74451
+ rules_failed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74452
+ rules_passed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74453
+ total_rules: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
74454
+ }, z.ZodTypeAny, "passthrough">>>>;
74455
+ }, z.ZodTypeAny, "passthrough">>, "many">;
74456
+ }, z.ZodTypeAny, "passthrough">>;
74457
+ type ModelVersionList = z.infer<typeof ModelVersionListSchema>;
73440
74458
  /** Zod schema for a single rule evaluation result. */
73441
74459
  declare const RuleEvaluationResponseSchema: z.ZodObject<{
73442
74460
  uuid: z.ZodString;
@@ -73616,6 +74634,18 @@ declare const RuleEvaluationListSchema: z.ZodObject<{
73616
74634
  }, z.ZodTypeAny, "passthrough">>;
73617
74635
  /** Paginated list of rule evaluations. */
73618
74636
  type RuleEvaluationList = z.infer<typeof RuleEvaluationListSchema>;
74637
+ /** Remediation returned on a violation — steps and a reference URL. */
74638
+ declare const ViolationRemediationSchema: z.ZodObject<{
74639
+ steps: z.ZodArray<z.ZodString, "many">;
74640
+ url: z.ZodString;
74641
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74642
+ steps: z.ZodArray<z.ZodString, "many">;
74643
+ url: z.ZodString;
74644
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74645
+ steps: z.ZodArray<z.ZodString, "many">;
74646
+ url: z.ZodString;
74647
+ }, z.ZodTypeAny, "passthrough">>;
74648
+ type ViolationRemediation = z.infer<typeof ViolationRemediationSchema>;
73619
74649
  /** Zod schema for a single violation response. */
73620
74650
  declare const ViolationResponseSchema: z.ZodObject<{
73621
74651
  uuid: z.ZodString;
@@ -73627,6 +74657,16 @@ declare const ViolationResponseSchema: z.ZodObject<{
73627
74657
  rule_name: z.ZodString;
73628
74658
  rule_description: z.ZodString;
73629
74659
  rule_instance_state: z.ZodString;
74660
+ remediation: z.ZodObject<{
74661
+ steps: z.ZodArray<z.ZodString, "many">;
74662
+ url: z.ZodString;
74663
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74664
+ steps: z.ZodArray<z.ZodString, "many">;
74665
+ url: z.ZodString;
74666
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74667
+ steps: z.ZodArray<z.ZodString, "many">;
74668
+ url: z.ZodString;
74669
+ }, z.ZodTypeAny, "passthrough">>;
73630
74670
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73631
74671
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73632
74672
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73643,6 +74683,16 @@ declare const ViolationResponseSchema: z.ZodObject<{
73643
74683
  rule_name: z.ZodString;
73644
74684
  rule_description: z.ZodString;
73645
74685
  rule_instance_state: z.ZodString;
74686
+ remediation: z.ZodObject<{
74687
+ steps: z.ZodArray<z.ZodString, "many">;
74688
+ url: z.ZodString;
74689
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74690
+ steps: z.ZodArray<z.ZodString, "many">;
74691
+ url: z.ZodString;
74692
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74693
+ steps: z.ZodArray<z.ZodString, "many">;
74694
+ url: z.ZodString;
74695
+ }, z.ZodTypeAny, "passthrough">>;
73646
74696
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73647
74697
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73648
74698
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73659,6 +74709,16 @@ declare const ViolationResponseSchema: z.ZodObject<{
73659
74709
  rule_name: z.ZodString;
73660
74710
  rule_description: z.ZodString;
73661
74711
  rule_instance_state: z.ZodString;
74712
+ remediation: z.ZodObject<{
74713
+ steps: z.ZodArray<z.ZodString, "many">;
74714
+ url: z.ZodString;
74715
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74716
+ steps: z.ZodArray<z.ZodString, "many">;
74717
+ url: z.ZodString;
74718
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74719
+ steps: z.ZodArray<z.ZodString, "many">;
74720
+ url: z.ZodString;
74721
+ }, z.ZodTypeAny, "passthrough">>;
73662
74722
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73663
74723
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73664
74724
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73687,6 +74747,16 @@ declare const ViolationListSchema: z.ZodObject<{
73687
74747
  rule_name: z.ZodString;
73688
74748
  rule_description: z.ZodString;
73689
74749
  rule_instance_state: z.ZodString;
74750
+ remediation: z.ZodObject<{
74751
+ steps: z.ZodArray<z.ZodString, "many">;
74752
+ url: z.ZodString;
74753
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74754
+ steps: z.ZodArray<z.ZodString, "many">;
74755
+ url: z.ZodString;
74756
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74757
+ steps: z.ZodArray<z.ZodString, "many">;
74758
+ url: z.ZodString;
74759
+ }, z.ZodTypeAny, "passthrough">>;
73690
74760
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73691
74761
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73692
74762
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73703,6 +74773,16 @@ declare const ViolationListSchema: z.ZodObject<{
73703
74773
  rule_name: z.ZodString;
73704
74774
  rule_description: z.ZodString;
73705
74775
  rule_instance_state: z.ZodString;
74776
+ remediation: z.ZodObject<{
74777
+ steps: z.ZodArray<z.ZodString, "many">;
74778
+ url: z.ZodString;
74779
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74780
+ steps: z.ZodArray<z.ZodString, "many">;
74781
+ url: z.ZodString;
74782
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74783
+ steps: z.ZodArray<z.ZodString, "many">;
74784
+ url: z.ZodString;
74785
+ }, z.ZodTypeAny, "passthrough">>;
73706
74786
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73707
74787
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73708
74788
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73719,6 +74799,16 @@ declare const ViolationListSchema: z.ZodObject<{
73719
74799
  rule_name: z.ZodString;
73720
74800
  rule_description: z.ZodString;
73721
74801
  rule_instance_state: z.ZodString;
74802
+ remediation: z.ZodObject<{
74803
+ steps: z.ZodArray<z.ZodString, "many">;
74804
+ url: z.ZodString;
74805
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74806
+ steps: z.ZodArray<z.ZodString, "many">;
74807
+ url: z.ZodString;
74808
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74809
+ steps: z.ZodArray<z.ZodString, "many">;
74810
+ url: z.ZodString;
74811
+ }, z.ZodTypeAny, "passthrough">>;
73722
74812
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73723
74813
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73724
74814
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73744,6 +74834,16 @@ declare const ViolationListSchema: z.ZodObject<{
73744
74834
  rule_name: z.ZodString;
73745
74835
  rule_description: z.ZodString;
73746
74836
  rule_instance_state: z.ZodString;
74837
+ remediation: z.ZodObject<{
74838
+ steps: z.ZodArray<z.ZodString, "many">;
74839
+ url: z.ZodString;
74840
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74841
+ steps: z.ZodArray<z.ZodString, "many">;
74842
+ url: z.ZodString;
74843
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74844
+ steps: z.ZodArray<z.ZodString, "many">;
74845
+ url: z.ZodString;
74846
+ }, z.ZodTypeAny, "passthrough">>;
73747
74847
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73748
74848
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73749
74849
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73760,6 +74860,16 @@ declare const ViolationListSchema: z.ZodObject<{
73760
74860
  rule_name: z.ZodString;
73761
74861
  rule_description: z.ZodString;
73762
74862
  rule_instance_state: z.ZodString;
74863
+ remediation: z.ZodObject<{
74864
+ steps: z.ZodArray<z.ZodString, "many">;
74865
+ url: z.ZodString;
74866
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74867
+ steps: z.ZodArray<z.ZodString, "many">;
74868
+ url: z.ZodString;
74869
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74870
+ steps: z.ZodArray<z.ZodString, "many">;
74871
+ url: z.ZodString;
74872
+ }, z.ZodTypeAny, "passthrough">>;
73763
74873
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73764
74874
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73765
74875
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73776,6 +74886,16 @@ declare const ViolationListSchema: z.ZodObject<{
73776
74886
  rule_name: z.ZodString;
73777
74887
  rule_description: z.ZodString;
73778
74888
  rule_instance_state: z.ZodString;
74889
+ remediation: z.ZodObject<{
74890
+ steps: z.ZodArray<z.ZodString, "many">;
74891
+ url: z.ZodString;
74892
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74893
+ steps: z.ZodArray<z.ZodString, "many">;
74894
+ url: z.ZodString;
74895
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74896
+ steps: z.ZodArray<z.ZodString, "many">;
74897
+ url: z.ZodString;
74898
+ }, z.ZodTypeAny, "passthrough">>;
73779
74899
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73780
74900
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73781
74901
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73801,6 +74921,16 @@ declare const ViolationListSchema: z.ZodObject<{
73801
74921
  rule_name: z.ZodString;
73802
74922
  rule_description: z.ZodString;
73803
74923
  rule_instance_state: z.ZodString;
74924
+ remediation: z.ZodObject<{
74925
+ steps: z.ZodArray<z.ZodString, "many">;
74926
+ url: z.ZodString;
74927
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74928
+ steps: z.ZodArray<z.ZodString, "many">;
74929
+ url: z.ZodString;
74930
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74931
+ steps: z.ZodArray<z.ZodString, "many">;
74932
+ url: z.ZodString;
74933
+ }, z.ZodTypeAny, "passthrough">>;
73804
74934
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73805
74935
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73806
74936
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73817,6 +74947,16 @@ declare const ViolationListSchema: z.ZodObject<{
73817
74947
  rule_name: z.ZodString;
73818
74948
  rule_description: z.ZodString;
73819
74949
  rule_instance_state: z.ZodString;
74950
+ remediation: z.ZodObject<{
74951
+ steps: z.ZodArray<z.ZodString, "many">;
74952
+ url: z.ZodString;
74953
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74954
+ steps: z.ZodArray<z.ZodString, "many">;
74955
+ url: z.ZodString;
74956
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74957
+ steps: z.ZodArray<z.ZodString, "many">;
74958
+ url: z.ZodString;
74959
+ }, z.ZodTypeAny, "passthrough">>;
73820
74960
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73821
74961
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73822
74962
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -73833,6 +74973,16 @@ declare const ViolationListSchema: z.ZodObject<{
73833
74973
  rule_name: z.ZodString;
73834
74974
  rule_description: z.ZodString;
73835
74975
  rule_instance_state: z.ZodString;
74976
+ remediation: z.ZodObject<{
74977
+ steps: z.ZodArray<z.ZodString, "many">;
74978
+ url: z.ZodString;
74979
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
74980
+ steps: z.ZodArray<z.ZodString, "many">;
74981
+ url: z.ZodString;
74982
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
74983
+ steps: z.ZodArray<z.ZodString, "many">;
74984
+ url: z.ZodString;
74985
+ }, z.ZodTypeAny, "passthrough">>;
73836
74986
  file: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73837
74987
  hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73838
74988
  module: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -77829,6 +78979,13 @@ declare const BrandSubCategory: {
77829
78979
  readonly POLITICAL_ENDORSEMENTS: "POLITICAL_ENDORSEMENTS";
77830
78980
  };
77831
78981
  type BrandSubCategory = (typeof BrandSubCategory)[keyof typeof BrandSubCategory];
78982
+ /** Network broker channel lifecycle status. */
78983
+ declare const ChannelStatus: {
78984
+ readonly ONLINE: "ONLINE";
78985
+ readonly OFFLINE: "OFFLINE";
78986
+ readonly DRAFT: "DRAFT";
78987
+ };
78988
+ type ChannelStatus = (typeof ChannelStatus)[keyof typeof ChannelStatus];
77832
78989
  /** Compliance framework subcategories. */
77833
78990
  declare const ComplianceSubCategory: {
77834
78991
  readonly OWASP: "OWASP";
@@ -92901,6 +94058,60 @@ declare const ErrorLogListResponseSchema: z.ZodObject<{
92901
94058
  }, z.ZodTypeAny, "passthrough">>, "many">;
92902
94059
  }, z.ZodTypeAny, "passthrough">>;
92903
94060
  type ErrorLogListResponse = z.infer<typeof ErrorLogListResponseSchema>;
94061
+ /** A single language option (code + display name). */
94062
+ declare const LanguageOptionSchema: z.ZodObject<{
94063
+ code: z.ZodString;
94064
+ name: z.ZodString;
94065
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
94066
+ code: z.ZodString;
94067
+ name: z.ZodString;
94068
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
94069
+ code: z.ZodString;
94070
+ name: z.ZodString;
94071
+ }, z.ZodTypeAny, "passthrough">>;
94072
+ type LanguageOption = z.infer<typeof LanguageOptionSchema>;
94073
+ /** Tenant's allowed languages for Red Team scans. */
94074
+ declare const TenantLanguagesResponseSchema: z.ZodObject<{
94075
+ multilingual_enabled: z.ZodBoolean;
94076
+ supported_job_types: z.ZodArray<z.ZodString, "many">;
94077
+ languages: z.ZodArray<z.ZodObject<{
94078
+ code: z.ZodString;
94079
+ name: z.ZodString;
94080
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
94081
+ code: z.ZodString;
94082
+ name: z.ZodString;
94083
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
94084
+ code: z.ZodString;
94085
+ name: z.ZodString;
94086
+ }, z.ZodTypeAny, "passthrough">>, "many">;
94087
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
94088
+ multilingual_enabled: z.ZodBoolean;
94089
+ supported_job_types: z.ZodArray<z.ZodString, "many">;
94090
+ languages: z.ZodArray<z.ZodObject<{
94091
+ code: z.ZodString;
94092
+ name: z.ZodString;
94093
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
94094
+ code: z.ZodString;
94095
+ name: z.ZodString;
94096
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
94097
+ code: z.ZodString;
94098
+ name: z.ZodString;
94099
+ }, z.ZodTypeAny, "passthrough">>, "many">;
94100
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
94101
+ multilingual_enabled: z.ZodBoolean;
94102
+ supported_job_types: z.ZodArray<z.ZodString, "many">;
94103
+ languages: z.ZodArray<z.ZodObject<{
94104
+ code: z.ZodString;
94105
+ name: z.ZodString;
94106
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
94107
+ code: z.ZodString;
94108
+ name: z.ZodString;
94109
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
94110
+ code: z.ZodString;
94111
+ name: z.ZodString;
94112
+ }, z.ZodTypeAny, "passthrough">>, "many">;
94113
+ }, z.ZodTypeAny, "passthrough">>;
94114
+ type TenantLanguagesResponse = z.infer<typeof TenantLanguagesResponseSchema>;
92904
94115
  declare const TargetCreateRequestSchema: z.ZodObject<{
92905
94116
  readonly name: z.ZodString;
92906
94117
  readonly description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -96794,6 +98005,251 @@ declare const RegistryCredentialsSchema: z.ZodObject<{
96794
98005
  }, z.ZodTypeAny, "passthrough">>;
96795
98006
  type RegistryCredentials = z.infer<typeof RegistryCredentialsSchema>;
96796
98007
 
98008
+ /** Channel lifecycle status. Accepts the upstream values `ONLINE`, `OFFLINE`, `DRAFT`. */
98009
+ declare const ChannelStatusSchema: z.ZodNativeEnum<{
98010
+ readonly ONLINE: "ONLINE";
98011
+ readonly OFFLINE: "OFFLINE";
98012
+ readonly DRAFT: "DRAFT";
98013
+ }>;
98014
+ type ChannelStatusType = z.infer<typeof ChannelStatusSchema>;
98015
+ /** Request body for creating a network broker channel. */
98016
+ declare const CreateChannelRequestSchema: z.ZodObject<{
98017
+ name: z.ZodString;
98018
+ description: z.ZodOptional<z.ZodString>;
98019
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98020
+ name: z.ZodString;
98021
+ description: z.ZodOptional<z.ZodString>;
98022
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98023
+ name: z.ZodString;
98024
+ description: z.ZodOptional<z.ZodString>;
98025
+ }, z.ZodTypeAny, "passthrough">>;
98026
+ type CreateChannelRequest = z.infer<typeof CreateChannelRequestSchema>;
98027
+ /** Request body for updating a network broker channel. */
98028
+ declare const UpdateChannelRequestSchema: z.ZodObject<{
98029
+ name: z.ZodOptional<z.ZodString>;
98030
+ description: z.ZodOptional<z.ZodString>;
98031
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98032
+ name: z.ZodOptional<z.ZodString>;
98033
+ description: z.ZodOptional<z.ZodString>;
98034
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98035
+ name: z.ZodOptional<z.ZodString>;
98036
+ description: z.ZodOptional<z.ZodString>;
98037
+ }, z.ZodTypeAny, "passthrough">>;
98038
+ type UpdateChannelRequest = z.infer<typeof UpdateChannelRequestSchema>;
98039
+ /** A network broker channel. */
98040
+ declare const ChannelSchema: z.ZodObject<{
98041
+ uuid: z.ZodOptional<z.ZodString>;
98042
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98043
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98044
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98045
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98046
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98047
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98048
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98049
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98050
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98051
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98052
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98053
+ uuid: z.ZodOptional<z.ZodString>;
98054
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98055
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98056
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98057
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98058
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98059
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98060
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98061
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98062
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98063
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98064
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98065
+ uuid: z.ZodOptional<z.ZodString>;
98066
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98067
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98068
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98069
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98070
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98071
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98072
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98073
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98074
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98075
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98076
+ }, z.ZodTypeAny, "passthrough">>;
98077
+ type Channel = z.infer<typeof ChannelSchema>;
98078
+ /** Pagination metadata for a channel list response. */
98079
+ declare const ChannelListPaginationSchema: z.ZodObject<{
98080
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98081
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98082
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98083
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98084
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98085
+ }, z.ZodTypeAny, "passthrough">>;
98086
+ type ChannelListPagination = z.infer<typeof ChannelListPaginationSchema>;
98087
+ /** Paginated list of network broker channels. */
98088
+ declare const ChannelListResponseSchema: z.ZodObject<{
98089
+ pagination: z.ZodOptional<z.ZodObject<{
98090
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98091
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98092
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98093
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98094
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98095
+ }, z.ZodTypeAny, "passthrough">>>;
98096
+ data: z.ZodDefault<z.ZodArray<z.ZodObject<{
98097
+ uuid: z.ZodOptional<z.ZodString>;
98098
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98099
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98100
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98101
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98102
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98103
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98104
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98105
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98106
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98107
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98108
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98109
+ uuid: z.ZodOptional<z.ZodString>;
98110
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98111
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98112
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98113
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98114
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98115
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98116
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98117
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98118
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98119
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98120
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98121
+ uuid: z.ZodOptional<z.ZodString>;
98122
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98123
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98124
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98125
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98126
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98127
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98128
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98129
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98130
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98131
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98132
+ }, z.ZodTypeAny, "passthrough">>, "many">>;
98133
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98134
+ pagination: z.ZodOptional<z.ZodObject<{
98135
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98136
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98137
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98138
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98139
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98140
+ }, z.ZodTypeAny, "passthrough">>>;
98141
+ data: z.ZodDefault<z.ZodArray<z.ZodObject<{
98142
+ uuid: z.ZodOptional<z.ZodString>;
98143
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98144
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98145
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98146
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98147
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98148
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98149
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98150
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98151
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98152
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98153
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98154
+ uuid: z.ZodOptional<z.ZodString>;
98155
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98156
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98157
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98158
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98159
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98160
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98161
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98162
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98163
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98164
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98165
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98166
+ uuid: z.ZodOptional<z.ZodString>;
98167
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98168
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98169
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98170
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98171
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98172
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98173
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98174
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98175
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98176
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98177
+ }, z.ZodTypeAny, "passthrough">>, "many">>;
98178
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98179
+ pagination: z.ZodOptional<z.ZodObject<{
98180
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98181
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98182
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98183
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98184
+ total_items: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98185
+ }, z.ZodTypeAny, "passthrough">>>;
98186
+ data: z.ZodDefault<z.ZodArray<z.ZodObject<{
98187
+ uuid: z.ZodOptional<z.ZodString>;
98188
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98189
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98190
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98191
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98192
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98193
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98194
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98195
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98196
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98197
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98198
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98199
+ uuid: z.ZodOptional<z.ZodString>;
98200
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98201
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98202
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98203
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98204
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98205
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98206
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98207
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98208
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98209
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98210
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98211
+ uuid: z.ZodOptional<z.ZodString>;
98212
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98213
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98214
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98215
+ added_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98216
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98217
+ updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98218
+ last_online_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98219
+ connected_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98220
+ outdated_clients_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98221
+ features: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
98222
+ }, z.ZodTypeAny, "passthrough">>, "many">>;
98223
+ }, z.ZodTypeAny, "passthrough">>;
98224
+ type ChannelListResponse = z.infer<typeof ChannelListResponseSchema>;
98225
+ /** Network broker infrastructure and channel-count stats. */
98226
+ declare const ChannelStatsSchema: z.ZodObject<{
98227
+ network_channels_server_domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98228
+ docker_registry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98229
+ helm_chart: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98230
+ docker_image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98231
+ online_channels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98232
+ total_channels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98233
+ client_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98234
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
98235
+ network_channels_server_domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98236
+ docker_registry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98237
+ helm_chart: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98238
+ docker_image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98239
+ online_channels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98240
+ total_channels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98241
+ client_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98242
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
98243
+ network_channels_server_domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98244
+ docker_registry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98245
+ helm_chart: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98246
+ docker_image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98247
+ online_channels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98248
+ total_channels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98249
+ client_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98250
+ }, z.ZodTypeAny, "passthrough">>;
98251
+ type ChannelStats = z.infer<typeof ChannelStatsSchema>;
98252
+
96797
98253
  declare const HEADER_API_KEY = "x-pan-token";
96798
98254
  declare const HEADER_AUTH_TOKEN = "Authorization";
96799
98255
  declare const PAYLOAD_HASH = "x-payload-hash";
@@ -96825,8 +98281,8 @@ declare const MAX_NUMBER_OF_BATCH_SCAN_OBJECTS = 5;
96825
98281
  declare const MAX_CONNECTION_POOL_SIZE = 100;
96826
98282
  declare const MAX_NUMBER_OF_RETRIES = 5;
96827
98283
  declare const HTTP_FORCE_RETRY_STATUS_CODES: number[];
96828
- declare const SDK_VERSION = "0.11.0";
96829
- declare const USER_AGENT = "PAN-AIRS/0.11.0-typescript-sdk";
98284
+ declare const SDK_VERSION = "0.13.0";
98285
+ declare const USER_AGENT = "PAN-AIRS/0.13.0-typescript-sdk";
96830
98286
  declare const DEFAULT_MGMT_ENDPOINT = "https://api.sase.paloaltonetworks.com/aisec";
96831
98287
  declare const DEFAULT_TOKEN_ENDPOINT = "https://auth.apps.paloaltonetworks.com/oauth2/access_token";
96832
98288
  declare const MGMT_CLIENT_ID = "PANW_MGMT_CLIENT_ID";
@@ -96854,6 +98310,7 @@ declare const MGMT_OAUTH_INVALIDATE_PATH = "/v1/mgmt/oauth/invalidateToken";
96854
98310
  declare const MGMT_OAUTH_TOKEN_PATH = "/v1/mgmt/oauth/client_credential/accesstoken";
96855
98311
  declare const MGMT_DASHBOARD_APPLICATION_PATH = "/v1/mgmt/dashboard/v2/apps/application";
96856
98312
  declare const MGMT_DASHBOARD_APPLICATION_VIOLATION_BREAKDOWN_PATH = "/v1/mgmt/dashboard/v2/apps/applicationviolationbreakdown";
98313
+ declare const MGMT_DASHBOARD_APPLICATIONS_OVERVIEW_PATH = "/v1/mgmt/dashboard/v2/apps/applicationsoverview";
96857
98314
  declare const DEFAULT_DLP_ENDPOINT = "https://api.dlp.paloaltonetworks.com";
96858
98315
  declare const DLP_DATA_FILTERING_PROFILES_PATH = "/v2/api/data-filtering-profiles";
96859
98316
  declare const DLP_DATA_PATTERNS_PATH = "/v2/api/data-patterns";
@@ -96870,17 +98327,21 @@ declare const MODEL_SEC_TOKEN_ENDPOINT = "PANW_MODEL_SEC_TOKEN_ENDPOINT";
96870
98327
  declare const MODEL_SEC_SCANS_PATH = "/v1/scans";
96871
98328
  declare const MODEL_SEC_EVALUATIONS_PATH = "/v1/evaluations";
96872
98329
  declare const MODEL_SEC_VIOLATIONS_PATH = "/v1/violations";
98330
+ declare const MODEL_SEC_MODELS_PATH = "/v1/models";
98331
+ declare const MODEL_SEC_MODEL_VERSIONS_PATH = "/v1/model-versions";
96873
98332
  declare const MODEL_SEC_SECURITY_GROUPS_PATH = "/v1/security-groups";
96874
98333
  declare const MODEL_SEC_SECURITY_RULES_PATH = "/v1/security-rules";
96875
98334
  declare const MODEL_SEC_PYPI_AUTH_PATH = "/v1/pypi/authenticate";
96876
98335
  declare const DEFAULT_RED_TEAM_DATA_ENDPOINT = "https://api.sase.paloaltonetworks.com/ai-red-teaming/data-plane";
96877
98336
  declare const DEFAULT_RED_TEAM_MGMT_ENDPOINT = "https://api.sase.paloaltonetworks.com/ai-red-teaming/mgmt-plane";
98337
+ declare const DEFAULT_RED_TEAM_NETWORK_BROKER_ENDPOINT = "https://api.sase.paloaltonetworks.com/ai-red-teaming/data-plane/network-broker";
96878
98338
  declare const RED_TEAM_CLIENT_ID = "PANW_RED_TEAM_CLIENT_ID";
96879
98339
  declare const RED_TEAM_CLIENT_SECRET = "PANW_RED_TEAM_CLIENT_SECRET";
96880
98340
  declare const RED_TEAM_TSG_ID = "PANW_RED_TEAM_TSG_ID";
96881
98341
  declare const RED_TEAM_DATA_ENDPOINT = "PANW_RED_TEAM_DATA_ENDPOINT";
96882
98342
  declare const RED_TEAM_MGMT_ENDPOINT = "PANW_RED_TEAM_MGMT_ENDPOINT";
96883
98343
  declare const RED_TEAM_TOKEN_ENDPOINT = "PANW_RED_TEAM_TOKEN_ENDPOINT";
98344
+ declare const RED_TEAM_NETWORK_BROKER_ENDPOINT = "PANW_RED_TEAM_NETWORK_BROKER_ENDPOINT";
96884
98345
  declare const RED_TEAM_SCAN_PATH = "/v1/scan";
96885
98346
  declare const RED_TEAM_CATEGORIES_PATH = "/v1/categories";
96886
98347
  declare const RED_TEAM_REPORT_STATIC_PATH = "/v1/report/static";
@@ -96891,6 +98352,8 @@ declare const RED_TEAM_DASHBOARD_PATH = "/v1/dashboard";
96891
98352
  declare const RED_TEAM_QUOTA_PATH = "/v1/metering/quota";
96892
98353
  declare const RED_TEAM_ERROR_LOG_PATH = "/v1/error-log/job";
96893
98354
  declare const RED_TEAM_SENTIMENT_PATH = "/v1/sentiment";
98355
+ declare const RED_TEAM_LANGUAGES_PATH = "/v1/languages";
98356
+ declare const RED_TEAM_ERROR_LOG_TARGET_PROFILE_PATH = "/v1/error-log/target-profile";
96894
98357
  declare const RED_TEAM_TARGET_PATH = "/v1/target";
96895
98358
  declare const RED_TEAM_TARGET_VALIDATE_AUTH_PATH = "/v1/target/validate-auth";
96896
98359
  declare const RED_TEAM_TEMPLATE_PATH = "/v1/template";
@@ -96899,6 +98362,8 @@ declare const RED_TEAM_INSTANCES_PATH = "/v1/instances";
96899
98362
  declare const RED_TEAM_REGISTRY_CREDENTIALS_PATH = "/v1/registry-credentials";
96900
98363
  declare const RED_TEAM_CUSTOM_ATTACK_PATH = "/v1/custom-attack";
96901
98364
  declare const RED_TEAM_MGMT_DASHBOARD_PATH = "/v1/dashboard/overview";
98365
+ declare const RED_TEAM_CHANNELS_PATH = "/v1/channels";
98366
+ declare const RED_TEAM_CHANNELS_STATS_PATH = "/v1/channels/stats";
96902
98367
 
96903
98368
  /** @internal HTTP methods supported by the request pipeline. */
96904
98369
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
@@ -97540,7 +99005,15 @@ interface DashboardAppQuery {
97540
99005
  * {@link import('./customer-apps.js').CustomerAppsClient.list}'s `customer_appId` field.
97541
99006
  */
97542
99007
  appId: string;
97543
- /** Application display name. Required, non-empty. URL encoding is handled internally. */
99008
+ /**
99009
+ * Application display name as the dashboard tracks it - the literal `metadata.app_name`
99010
+ * value scan payloads sent. This may differ from the `customer_apps.app_name` field when
99011
+ * the integration overrides it (LiteLLM's `panw_prisma_airs` guardrail does this by default,
99012
+ * for example). Required, non-empty. URL encoding is handled internally.
99013
+ *
99014
+ * To enumerate all valid `(appId, appName)` pairs the dashboard tracks, use
99015
+ * {@link DashboardClient.applicationsOverview} - one item per dashboard bucket.
99016
+ */
97544
99017
  appName: string;
97545
99018
  /**
97546
99019
  * Look-back window length, in days. Defaults to 30 (matches the SCM UI's "30 days" claim).
@@ -97555,13 +99028,42 @@ interface DashboardAppQuery {
97555
99028
  */
97556
99029
  timeUnit?: 'days';
97557
99030
  }
99031
+ /**
99032
+ * Query parameters for {@link DashboardClient.applicationsOverview}.
99033
+ *
99034
+ * Distinct from {@link DashboardAppQuery} - this endpoint takes no `appId`/`appName` (it is the
99035
+ * enumeration source for those) and accepts a wider set of time windows.
99036
+ */
99037
+ interface DashboardApplicationsOverviewQuery {
99038
+ /**
99039
+ * Look-back window length. Accepted values vary by `timeUnit`:
99040
+ * - `timeUnit: 'days'` accepts `7`, `30`, or `60`.
99041
+ * - `timeUnit: 'day'` accepts `1`.
99042
+ * - `timeUnit: 'hour'` accepts `1`.
99043
+ *
99044
+ * Defaults to `30`. Other combinations return HTTP 400.
99045
+ */
99046
+ timeInterval?: 1 | 7 | 30 | 60;
99047
+ /**
99048
+ * Look-back window unit. The dashboard apps-overview endpoint accepts `'days'`, `'day'`,
99049
+ * and `'hour'` (note the singular forms - unlike the per-app `application` endpoint, which
99050
+ * only accepts `'days'`). Defaults to `'days'`.
99051
+ */
99052
+ timeUnit?: 'days' | 'day' | 'hour';
99053
+ /** Maximum items to return. Defaults to 25 (matches the SCM UI). */
99054
+ limit?: number;
99055
+ /** Number of items to skip (offset-based pagination). Defaults to 0. */
99056
+ offset?: number;
99057
+ }
97558
99058
  /**
97559
99059
  * Client for AIRS SCM dashboard endpoints that power the
97560
- * "AI Security > Runtime > API Applications" detail panel.
99060
+ * "AI Security > Runtime > API Applications" panel.
97561
99061
  *
97562
- * Together, {@link application} (overview + token consumption + session activity) and
97563
- * {@link applicationViolationBreakdown} (per-detector violations) reproduce the full panel and
97564
- * unlock per-app token chargeback reporting.
99062
+ * The dashboard buckets traffic by the **literal `metadata.app_name` value scan payloads
99063
+ * actually sent**. A single registered customer-app (`customer_apps.customer_appId`) can therefore
99064
+ * map to multiple dashboard buckets, one per distinct scan-payload name. Use
99065
+ * {@link applicationsOverview} to enumerate all dashboard buckets, then {@link application} and
99066
+ * {@link applicationViolationBreakdown} to drill into any specific `(id, name)` pair.
97565
99067
  *
97566
99068
  * @example
97567
99069
  * ```ts
@@ -97643,6 +99145,38 @@ declare class DashboardClient {
97643
99145
  * ```
97644
99146
  */
97645
99147
  applicationViolationBreakdown(query: DashboardAppQuery): Promise<DashboardApplicationViolationBreakdown>;
99148
+ /**
99149
+ * Enumerate all dashboard application buckets the tenant has data for.
99150
+ *
99151
+ * This is the canonical apps-list source for the dashboard. The customer-apps endpoint
99152
+ * (`mgmt.customerApps.list`) lists registered customer applications, but each registered
99153
+ * customer-app can have **multiple dashboard buckets** when its API key is used to send scan
99154
+ * requests carrying different `metadata.app_name` values - one bucket per distinct
99155
+ * scan-payload name. This endpoint returns every bucket, so it is what you want for
99156
+ * per-app token-consumption reporting and dashboard inventory.
99157
+ *
99158
+ * The `id` field on each item is the registered `customer_appId` UUID; the `name` field is
99159
+ * the scan-payload value. Pass that `(id, name)` pair to {@link application} or
99160
+ * {@link applicationViolationBreakdown} to retrieve drill-down data for a specific bucket.
99161
+ *
99162
+ * @param query - Time window and pagination.
99163
+ * @returns Paginated bucket list plus pagination metadata.
99164
+ * @example
99165
+ * ```ts
99166
+ * import { ManagementClient } from '@cdot65/prisma-airs-sdk';
99167
+ * const mgmt = new ManagementClient();
99168
+ *
99169
+ * const { items } = await mgmt.dashboard.applicationsOverview();
99170
+ * for (const item of items ?? []) {
99171
+ * const overview = await mgmt.dashboard.application({
99172
+ * appId: item.id ?? '',
99173
+ * appName: item.name ?? '',
99174
+ * });
99175
+ * console.log(item.name, overview.token_stats?.monthly_total_tokens);
99176
+ * }
99177
+ * ```
99178
+ */
99179
+ applicationsOverview(query?: DashboardApplicationsOverviewQuery): Promise<DashboardApplicationsOverview>;
97646
99180
  }
97647
99181
 
97648
99182
  /** Query parameters accepted by {@link DataFilteringProfilesClient.list}. */
@@ -98888,6 +100422,129 @@ declare class ModelSecurityRulesClient {
98888
100422
  get(uuid: string): Promise<ModelSecurityRuleResponse>;
98889
100423
  }
98890
100424
 
100425
+ /** Pagination + filter options for listing models. */
100426
+ interface ModelSecurityModelListOptions extends ListingOptions {
100427
+ /** Search query (matches model UUID or name). */
100428
+ search_query?: string;
100429
+ /** Sort field: 'created_at' or 'updated_at'. */
100430
+ sort_field?: string;
100431
+ /** Sort order: 'asc' or 'desc'. */
100432
+ sort_order?: string;
100433
+ /** Filter by the latest version's evaluation outcomes (array). */
100434
+ latest_version_outcomes?: string[];
100435
+ /** Filter by the latest version's model formats (array). */
100436
+ latest_version_formats?: string[];
100437
+ /** Filter by the latest version's source types (array). */
100438
+ latest_version_source_types?: string[];
100439
+ /** Only models whose latest version was scanned before this ISO datetime. */
100440
+ latest_version_scan_time_before?: string;
100441
+ /** Filter by created start time (ISO datetime). */
100442
+ start_time?: string;
100443
+ /** Filter by created end time (ISO datetime). */
100444
+ end_time?: string;
100445
+ }
100446
+ /** Pagination + sort options for listing a model's versions. */
100447
+ interface ModelSecurityModelVersionListOptions extends ListingOptions {
100448
+ /** Sort order: 'asc' or 'desc'. */
100449
+ sort_order?: string;
100450
+ }
100451
+ /** Pagination options for listing a model version's files. */
100452
+ type ModelSecurityModelVersionFileListOptions = ListingOptions;
100453
+ /** @internal */
100454
+ interface ModelSecurityModelsClientOptions {
100455
+ baseUrl: string;
100456
+ auth: AuthAdapter;
100457
+ numRetries: number;
100458
+ }
100459
+ /** Client for Model Security data plane model and model-version operations (read-only). */
100460
+ declare class ModelSecurityModelsClient {
100461
+ private readonly baseUrl;
100462
+ private readonly auth;
100463
+ private readonly numRetries;
100464
+ constructor(opts: ModelSecurityModelsClientOptions);
100465
+ /**
100466
+ * List models with optional search, sort, and latest-version filters.
100467
+ * @param opts - Pagination and filter options.
100468
+ * @returns Paginated list of models.
100469
+ * @example
100470
+ * ```ts
100471
+ * import { ModelSecurityClient } from '@cdot65/prisma-airs-sdk';
100472
+ * const ms = new ModelSecurityClient();
100473
+ *
100474
+ * const models = await ms.models.listModels({ limit: 10, search_query: 'llama' });
100475
+ * // models =>
100476
+ * // { pagination: { total_items: 3 }, models: [{ uuid: '550e8400-...', name: 'org/llama', latest_version_outcome: 'PASSED' }] }
100477
+ * ```
100478
+ */
100479
+ listModels(opts?: ModelSecurityModelListOptions): Promise<ModelList>;
100480
+ /**
100481
+ * Get a single model by UUID.
100482
+ * @param uuid - Model UUID.
100483
+ * @returns The model.
100484
+ * @example
100485
+ * ```ts
100486
+ * import { ModelSecurityClient } from '@cdot65/prisma-airs-sdk';
100487
+ * const ms = new ModelSecurityClient();
100488
+ *
100489
+ * const model = await ms.models.getModel('550e8400-e29b-41d4-a716-446655440000');
100490
+ * // model =>
100491
+ * // { uuid: '550e8400-...', name: 'org/model', latest_version_uuid: '660e8400-...', latest_version_outcome: 'PASSED' }
100492
+ * ```
100493
+ */
100494
+ getModel(uuid: string): Promise<Model>;
100495
+ /**
100496
+ * List the versions of a model.
100497
+ * @param modelUuid - Model UUID.
100498
+ * @param opts - Pagination and sort options.
100499
+ * @returns Paginated list of model versions.
100500
+ * @example
100501
+ * ```ts
100502
+ * import { ModelSecurityClient } from '@cdot65/prisma-airs-sdk';
100503
+ * const ms = new ModelSecurityClient();
100504
+ *
100505
+ * const versions = await ms.models.listModelVersions('550e8400-e29b-41d4-a716-446655440000', {
100506
+ * sort_order: 'desc',
100507
+ * });
100508
+ * // versions =>
100509
+ * // { pagination: { total_items: 2 }, model_versions: [{ uuid: '660e8400-...', revision: 'main', file_count: 12 }] }
100510
+ * ```
100511
+ */
100512
+ listModelVersions(modelUuid: string, opts?: ModelSecurityModelVersionListOptions): Promise<ModelVersionList>;
100513
+ /**
100514
+ * Get a single model version by UUID.
100515
+ * @param uuid - Model version UUID.
100516
+ * @returns The model version.
100517
+ * @example
100518
+ * ```ts
100519
+ * import { ModelSecurityClient } from '@cdot65/prisma-airs-sdk';
100520
+ * const ms = new ModelSecurityClient();
100521
+ *
100522
+ * const version = await ms.models.getModelVersion('660e8400-e29b-41d4-a716-446655440000');
100523
+ * // version =>
100524
+ * // { uuid: '660e8400-...', revision: 'main', model_uuid: '550e8400-...', last_eval_outcome: 'PASSED' }
100525
+ * ```
100526
+ */
100527
+ getModelVersion(uuid: string): Promise<ModelVersion>;
100528
+ /**
100529
+ * List the files of a model version.
100530
+ * @param modelVersionUuid - Model version UUID.
100531
+ * @param opts - Pagination options.
100532
+ * @returns Paginated list of files (same shape as scan files).
100533
+ * @example
100534
+ * ```ts
100535
+ * import { ModelSecurityClient } from '@cdot65/prisma-airs-sdk';
100536
+ * const ms = new ModelSecurityClient();
100537
+ *
100538
+ * const files = await ms.models.listModelVersionFiles('660e8400-e29b-41d4-a716-446655440000', {
100539
+ * limit: 50,
100540
+ * });
100541
+ * // files =>
100542
+ * // { pagination: { total_items: 12 }, files: [{ uuid: '770e8400-...', path: '/model.safetensors', type: 'FILE', result: 'SUCCESS' }] }
100543
+ * ```
100544
+ */
100545
+ listModelVersionFiles(modelVersionUuid: string, opts?: ModelSecurityModelVersionFileListOptions): Promise<FileList>;
100546
+ }
100547
+
98891
100548
  /** Options for constructing a {@link ModelSecurityClient}. */
98892
100549
  interface ModelSecurityClientOptions {
98893
100550
  /** OAuth2 client ID. Falls back to `PANW_MODEL_SEC_CLIENT_ID`, then `PANW_MGMT_CLIENT_ID`. */
@@ -98927,6 +100584,8 @@ declare class ModelSecurityClient {
98927
100584
  readonly securityGroups: ModelSecurityGroupsClient;
98928
100585
  /** Management plane security rule operations (read-only). */
98929
100586
  readonly securityRules: ModelSecurityRulesClient;
100587
+ /** Data plane model and model-version operations (read-only). */
100588
+ readonly models: ModelSecurityModelsClient;
98930
100589
  private readonly mgmtEndpoint;
98931
100590
  private readonly auth;
98932
100591
  private readonly numRetries;
@@ -100244,6 +101903,110 @@ declare class RedTeamInstancesClient {
100244
101903
  getRegistryCredentials(): Promise<RegistryCredentials>;
100245
101904
  }
100246
101905
 
101906
+ /** Filter options for {@link RedTeamNetworkBrokerClient.listChannels}. */
101907
+ interface ChannelListOptions extends RedTeamListOptions {
101908
+ /** Filter by channel status. Pass an array to filter by several statuses at once. */
101909
+ status?: string | string[];
101910
+ /** Include all channels when the other filters match nothing. */
101911
+ include_all_if_empty?: boolean;
101912
+ }
101913
+ /** @internal */
101914
+ interface RedTeamNetworkBrokerClientOptions {
101915
+ baseUrl: string;
101916
+ auth: AuthAdapter;
101917
+ numRetries: number;
101918
+ }
101919
+ /**
101920
+ * Client for Red Team Network Broker channel operations.
101921
+ * Uses a distinct network broker base URL (data plane), sharing the Red Team OAuth adapter.
101922
+ */
101923
+ declare class RedTeamNetworkBrokerClient {
101924
+ private readonly baseUrl;
101925
+ private readonly auth;
101926
+ private readonly numRetries;
101927
+ constructor(opts: RedTeamNetworkBrokerClientOptions);
101928
+ /**
101929
+ * List network broker channels with optional filters.
101930
+ * @param opts - Optional pagination, search, and status filter options.
101931
+ * @returns The paginated list of channels.
101932
+ * @example
101933
+ * ```ts
101934
+ * import { RedTeamClient } from '@cdot65/prisma-airs-sdk';
101935
+ * const rt = new RedTeamClient();
101936
+ *
101937
+ * const channels = await rt.networkBroker.listChannels({ status: ['ONLINE', 'DRAFT'], limit: 10 });
101938
+ * // channels =>
101939
+ * // { pagination: { total_items: 2 }, data: [{ uuid: '550e8400-...', name: 'prod-broker', status: 'ONLINE' }] }
101940
+ * ```
101941
+ */
101942
+ listChannels(opts?: ChannelListOptions): Promise<ChannelListResponse>;
101943
+ /**
101944
+ * Create a network broker channel.
101945
+ * @param body - Channel creation request body (requires `name`).
101946
+ * @returns The created channel.
101947
+ * @example
101948
+ * ```ts
101949
+ * import { RedTeamClient } from '@cdot65/prisma-airs-sdk';
101950
+ * const rt = new RedTeamClient();
101951
+ *
101952
+ * const channel = await rt.networkBroker.createChannel({
101953
+ * name: 'prod-broker',
101954
+ * description: 'Production network broker channel',
101955
+ * });
101956
+ * // channel =>
101957
+ * // { uuid: '550e8400-...', name: 'prod-broker', status: 'DRAFT' }
101958
+ * ```
101959
+ */
101960
+ createChannel(body: CreateChannelRequest): Promise<Channel>;
101961
+ /**
101962
+ * Get network broker channel stats.
101963
+ * @returns The channel stats (broker server, registry, chart, image, channel counts).
101964
+ * @example
101965
+ * ```ts
101966
+ * import { RedTeamClient } from '@cdot65/prisma-airs-sdk';
101967
+ * const rt = new RedTeamClient();
101968
+ *
101969
+ * const stats = await rt.networkBroker.getChannelStats();
101970
+ * // stats =>
101971
+ * // { network_channels_server_domain: 'broker.example.com', online_channels: 3, total_channels: 5, client_version: '1.4.0' }
101972
+ * ```
101973
+ */
101974
+ getChannelStats(): Promise<ChannelStats>;
101975
+ /**
101976
+ * Get a network broker channel by UUID.
101977
+ * @param channelId - The channel UUID.
101978
+ * @returns The channel.
101979
+ * @example
101980
+ * ```ts
101981
+ * import { RedTeamClient } from '@cdot65/prisma-airs-sdk';
101982
+ * const rt = new RedTeamClient();
101983
+ *
101984
+ * const channel = await rt.networkBroker.getChannel('550e8400-e29b-41d4-a716-446655440000');
101985
+ * // channel =>
101986
+ * // { uuid: '550e8400-...', name: 'prod-broker', status: 'ONLINE' }
101987
+ * ```
101988
+ */
101989
+ getChannel(channelId: string): Promise<Channel>;
101990
+ /**
101991
+ * Update a network broker channel's name or description.
101992
+ * @param channelId - The channel UUID.
101993
+ * @param body - Channel update request body.
101994
+ * @returns The updated channel.
101995
+ * @example
101996
+ * ```ts
101997
+ * import { RedTeamClient } from '@cdot65/prisma-airs-sdk';
101998
+ * const rt = new RedTeamClient();
101999
+ *
102000
+ * const channel = await rt.networkBroker.updateChannel('550e8400-e29b-41d4-a716-446655440000', {
102001
+ * description: 'Updated description',
102002
+ * });
102003
+ * // channel =>
102004
+ * // { uuid: '550e8400-...', name: 'prod-broker', description: 'Updated description', status: 'ONLINE' }
102005
+ * ```
102006
+ */
102007
+ updateChannel(channelId: string, body: UpdateChannelRequest): Promise<Channel>;
102008
+ }
102009
+
100247
102010
  /** Options for constructing a {@link RedTeamClient}. */
100248
102011
  interface RedTeamClientOptions {
100249
102012
  /** OAuth2 client ID. Falls back to `PANW_RED_TEAM_CLIENT_ID`, then `PANW_MGMT_CLIENT_ID`. */
@@ -100256,6 +102019,8 @@ interface RedTeamClientOptions {
100256
102019
  dataEndpoint?: string;
100257
102020
  /** Management plane endpoint URL. Falls back to `PANW_RED_TEAM_MGMT_ENDPOINT`. */
100258
102021
  mgmtEndpoint?: string;
102022
+ /** Network broker endpoint URL. Falls back to `PANW_RED_TEAM_NETWORK_BROKER_ENDPOINT`. */
102023
+ networkBrokerEndpoint?: string;
100259
102024
  /** OAuth2 token endpoint URL. Falls back to `PANW_RED_TEAM_TOKEN_ENDPOINT`, then `PANW_MGMT_TOKEN_ENDPOINT`. */
100260
102025
  tokenEndpoint?: string;
100261
102026
  /** Max retry attempts (0-5). Defaults to 5. */
@@ -100290,6 +102055,8 @@ declare class RedTeamClient {
100290
102055
  readonly eula: RedTeamEulaClient;
100291
102056
  /** Management plane instance/licensing operations. */
100292
102057
  readonly instances: RedTeamInstancesClient;
102058
+ /** Network broker channel operations (distinct network broker base URL). */
102059
+ readonly networkBroker: RedTeamNetworkBrokerClient;
100293
102060
  private readonly dataEndpoint;
100294
102061
  private readonly mgmtEndpoint;
100295
102062
  private readonly auth;
@@ -100358,6 +102125,53 @@ declare class RedTeamClient {
100358
102125
  * ```
100359
102126
  */
100360
102127
  getErrorLogs(jobId: string, opts?: RedTeamListOptions): Promise<ErrorLogListResponse>;
102128
+ /**
102129
+ * List profiling error logs for a target (data plane).
102130
+ * @param targetId - The target UUID.
102131
+ * @param opts - Optional pagination/search options (the endpoint honors `limit`).
102132
+ * @returns The paginated list of target-profile error logs.
102133
+ * @example
102134
+ * ```ts
102135
+ * import { RedTeamClient } from '@cdot65/prisma-airs-sdk';
102136
+ * const rt = new RedTeamClient();
102137
+ *
102138
+ * const logs = await rt.getTargetProfileErrorLogs('550e8400-e29b-41d4-a716-446655440000', { limit: 10 });
102139
+ * // logs =>
102140
+ * // { pagination: { total_items: 1 }, data: [{ target_id: '550e8400-...', error_type: 'PROBE', error_message: '...', created_at: '2025-01-01T00:00:00Z' }] }
102141
+ * ```
102142
+ */
102143
+ getTargetProfileErrorLogs(targetId: string, opts?: RedTeamListOptions): Promise<ErrorLogListResponse>;
102144
+ /**
102145
+ * Get the tenant's allowed languages for Red Team scans (data plane).
102146
+ * @returns The supported-languages response.
102147
+ * @example
102148
+ * ```ts
102149
+ * import { RedTeamClient } from '@cdot65/prisma-airs-sdk';
102150
+ * const rt = new RedTeamClient();
102151
+ *
102152
+ * const langs = await rt.getLanguages();
102153
+ * // langs =>
102154
+ * // { multilingual_enabled: true, supported_job_types: ['STATIC', 'DYNAMIC'],
102155
+ * // languages: [{ code: 'en', name: 'English' }, { code: 'es', name: 'Spanish' }] }
102156
+ * ```
102157
+ */
102158
+ getLanguages(): Promise<TenantLanguagesResponse>;
102159
+ /**
102160
+ * Get the tenant's allowed languages from the management plane.
102161
+ * Same response shape as {@link RedTeamClient.getLanguages}, served from the management endpoint.
102162
+ * @returns The supported-languages response.
102163
+ * @example
102164
+ * ```ts
102165
+ * import { RedTeamClient } from '@cdot65/prisma-airs-sdk';
102166
+ * const rt = new RedTeamClient();
102167
+ *
102168
+ * const langs = await rt.getManagementLanguages();
102169
+ * // langs =>
102170
+ * // { multilingual_enabled: true, supported_job_types: ['STATIC', 'DYNAMIC'],
102171
+ * // languages: [{ code: 'en', name: 'English' }] }
102172
+ * ```
102173
+ */
102174
+ getManagementLanguages(): Promise<TenantLanguagesResponse>;
100361
102175
  /**
100362
102176
  * Update sentiment for a scan report.
100363
102177
  * @param body - The sentiment request body.
@@ -100407,4 +102221,4 @@ declare class RedTeamClient {
100407
102221
  getDashboardOverview(): Promise<DashboardOverviewResponse>;
100408
102222
  }
100409
102223
 
100410
- export { AIRS_ENDPOINTS, AISecSDKException, AI_SEC_API_ENDPOINT, AI_SEC_API_KEY, AI_SEC_API_TOKEN, ASYNC_SCAN_PATH, Action, Action as ActionType, type AdvancedDataProfileRequest, AdvancedDataProfileRequestSchema, type AgentEntry, AgentEntrySchema, type AgentMeta, AgentMetaSchema, type AgentProtectionItem, AgentProtectionItemSchema, type AgentReport, AgentReportSchema, type AiProfile, AiProfileSchema, type AiSecurityProfile, AiSecurityProfileSchema, ApiEndpointType, type ApiKey, type ApiKeyCreateRequest, ApiKeyCreateRequestSchema, type ApiKeyDPInfo, ApiKeyDPInfoSchema, type ApiKeyDeleteResponse, ApiKeyDeleteResponseSchema, type ApiKeyListResponse, ApiKeyListResponseSchema, type ApiKeyRegenerateRequest, ApiKeyRegenerateRequestSchema, ApiKeySchema, ApiKeysClient, type ApiKeysClientOptions, type AppExclusion, AppExclusionSchema, type AsyncScanObject, AsyncScanObjectSchema, type AsyncScanResponse, AsyncScanResponseSchema, type AttackDetailResponse, AttackDetailResponseSchema, type AttackListItem, AttackListItemSchema, type AttackListOptions, type AttackListResponse, AttackListResponseSchema, type AttackMultiTurnDetailResponse, AttackMultiTurnDetailResponseSchema, type AttackMultiTurnOutput, AttackMultiTurnOutputSchema, type AttackOutput, AttackOutputSchema, AttackStatus, AttackType, type AuditResponse, AuditResponseSchema, type AuthConfig, AuthConfigSchema, AuthType, BEARER, type BaseResponse, BaseResponseSchema, type BasicAuthAuthConfig, BasicAuthAuthConfigSchema, BasicAuthLocation, type BedrockAccessConnectionParams, BedrockAccessConnectionParamsSchema, BrandSubCategory, Category, type CategoryModel, CategoryModelSchema, type CategoryReport, CategoryReportSchema, Category as CategoryType, type CgReport, CgReportSchema, type ClientIdAndCustomerApp, ClientIdAndCustomerAppSchema, type CmdEntry, CmdEntrySchema, type CmdInjectReport, CmdInjectReportSchema, type ComparisonOperatorType, ComparisonOperatorTypeSchema, type ComplianceReport, ComplianceReportSchema, ComplianceSubCategory, type ComplianceTechnique, ComplianceTechniqueSchema, type ConnectionParams, ConnectionParamsSchema, Content, type ContentError, ContentErrorSchema, ContentErrorType, ContentErrorType as ContentErrorTypeType, type ContentOptions, type CountByName, CountByNameSchema, CountedQuotaEnum, type CreateCustomTopicRequest, CreateCustomTopicRequestSchema, type CreateSecurityProfileRequest, CreateSecurityProfileRequestSchema, type CustomAttackOutput, CustomAttackOutputSchema, type CustomAttackReportResponse, CustomAttackReportResponseSchema, type CustomAttacksListResponse, CustomAttacksListResponseSchema, type CustomAttacksReportListOptions, type CustomJobMetadata, CustomJobMetadataSchema, type CustomPromptCreateRequest, CustomPromptCreateRequestSchema, type CustomPromptList, type CustomPromptListItem, CustomPromptListItemSchema, CustomPromptListSchema, type CustomPromptResponse, CustomPromptResponseSchema, type CustomPromptSetArchiveRequest, CustomPromptSetArchiveRequestSchema, type CustomPromptSetCreateRequest, CustomPromptSetCreateRequestSchema, type CustomPromptSetList, type CustomPromptSetListActive, CustomPromptSetListActiveSchema, type CustomPromptSetListItem, CustomPromptSetListItemSchema, CustomPromptSetListSchema, type CustomPromptSetReference, CustomPromptSetReferenceSchema, type CustomPromptSetResponse, CustomPromptSetResponseSchema, type CustomPromptSetUpdateRequest, CustomPromptSetUpdateRequestSchema, type CustomPromptSetVersionInfo, CustomPromptSetVersionInfoSchema, type CustomPromptUpdateRequest, CustomPromptUpdateRequestSchema, type CustomTopic, type CustomTopicListResponse, CustomTopicListResponseSchema, CustomTopicSchema, type CustomerApp, type CustomerAppDeleteResponse, CustomerAppDeleteResponseSchema, type CustomerAppListResponse, CustomerAppListResponseSchema, CustomerAppSchema, type CustomerAppWithKeys, CustomerAppWithKeysSchema, CustomerAppsClient, type CustomerAppsClientOptions, DEFAULT_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_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 DashboardApplicationViolationBreakdown, DashboardApplicationViolationBreakdownSchema, DashboardClient, type DashboardClientOptions, type DashboardOverviewResponse, DashboardOverviewResponseSchema, type DashboardSessionStats, DashboardSessionStatsSchema, type DataFilteringDetails, DataFilteringDetailsSchema, type DataFilteringProfileListParams, type DataFilteringProfileRequest, DataFilteringProfileRequestSchema, type DataFilteringProfileResponse, DataFilteringProfileResponseSchema, DataFilteringProfilesClient, type DataFilteringProfilesClientOptions, type DataFilteringRuleDTO, DataFilteringRuleDTOSchema, type DataLeakDetectionMember, DataLeakDetectionMemberSchema, type DataPatternConfidenceLevel, DataPatternConfidenceLevelSchema, type DataPatternDetectionConfig, DataPatternDetectionConfigSchema, type DataPatternLicenseType, DataPatternLicenseTypeSchema, type DataPatternListParams, type DataPatternMatchingRules, DataPatternMatchingRulesSchema, type DataPatternPatchRequest, DataPatternPatchRequestSchema, type DataPatternRequest, DataPatternRequestSchema, type DataPatternResponse, DataPatternResponseSchema, type DataPatternStatus, DataPatternStatusSchema, type DataPatternTags, DataPatternTagsSchema, type DataPatternTechnique, DataPatternTechniqueSchema, type DataPatternType, DataPatternTypeSchema, DataPatternsClient, type DataPatternsClientOptions, type DataProfileListParams, type DataProfilePatchRequest, DataProfilePatchRequestSchema, type DataProfileResponse, DataProfileResponseSchema, type DataProfileStatus, DataProfileStatusSchema, type DataProfileSubtype, DataProfileSubtypeSchema, type DataProfileType, DataProfileTypeSchema, DataProfilesClient, type DataProfilesClientOptions, type DataProtection, DataProtectionSchema, type DatabaseSecurityItem, DatabaseSecurityItemSchema, type DatabricksConnectionParams, DatabricksConnectionParamsSchema, DateRangeFilter, type DbsEntry, DbsEntrySchema, type DbsReport, DbsReportSchema, type DefaultTreeDetectionRule, DefaultTreeDetectionRuleSchema, type DeleteProfileConflict, DeleteProfileConflictSchema, type DeleteProfileResponse, DeleteProfileResponseSchema, type DeleteTopicConflict, DeleteTopicConflictSchema, type DeleteTopicResponse, DeleteTopicResponseSchema, type DeploymentProfileAttribute, DeploymentProfileAttributeSchema, type DeploymentProfileEntry, DeploymentProfileEntrySchema, type DeploymentProfileListOptions, type DeploymentProfileRequest, DeploymentProfileRequestSchema, DeploymentProfilesClient, type DeploymentProfilesClientOptions, type DeploymentProfilesResponse, DeploymentProfilesResponseSchema, type DestinationAttributes, DestinationAttributesSchema, type DetectionRule, type DetectionRuleItem, DetectionRuleItemSchema, DetectionRuleSchema, DetectionServiceName, DetectionServiceName as DetectionServiceNameType, type DetectionServiceResult, DetectionServiceResultSchema, type DetectorViolationBreakdownEntry, DetectorViolationBreakdownEntrySchema, type Device, type DeviceInstance, DeviceInstanceSchema, type DeviceLicense, DeviceLicenseSchema, type DeviceRequest, DeviceRequestSchema, type DeviceResponse, DeviceResponseSchema, DeviceSchema, type DeviceStatus, DeviceStatusSchema, DictionariesClient, type DictionariesClientOptions, type DictionaryCategory, DictionaryCategorySchema, type DictionaryClassification, DictionaryClassificationSchema, type DictionaryDetectionSubTechnique, DictionaryDetectionSubTechniqueSchema, type DictionaryDetectionTechnique, DictionaryDetectionTechniqueSchema, type DictionaryFileInput, type DictionaryGetParams, type DictionaryListParams, type DictionaryMetaDataDTO, DictionaryMetaDataDTOSchema, type DictionaryPatchRequest, DictionaryPatchRequestSchema, type DictionaryRequest, DictionaryRequestSchema, type DictionaryResponse, DictionaryResponseSchema, type DictionaryTags, DictionaryTagsSchema, type DictionaryType, DictionaryTypeSchema, type DictionaryUploadParams, type DlpDataProfile, type DlpDataProfilePolicy, DlpDataProfilePolicySchema, DlpDataProfileSchema, DlpNamespace, type DlpNamespaceOptions, type DlpPatternDetection, DlpPatternDetectionSchema, type DlpProfileListResponse, DlpProfileListResponseSchema, DlpProfilesClient, type DlpProfilesClientOptions, type DlpReport, DlpReportSchema, type DlpRule, DlpRuleSchema, type DynamicJobMetadata, DynamicJobMetadataSchema, type DynamicJobReport, DynamicJobReportSchema, type DynamicJobReportStats, DynamicJobReportStatsSchema, ErrorCodes, type ErrorLog, type ErrorLogListResponse, ErrorLogListResponseSchema, ErrorLogSchema, type ErrorResponse, ErrorResponseSchema, ErrorSource, ErrorStatus, ErrorStatus as ErrorStatusType, 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, FileFormat, type FileList, FileListSchema, type FileResponse, FileResponseSchema, type FileScanData, FileScanDataSchema, FileScanResult, FileType, type GetTokenOptions, type Goal, type GoalListOptions, type GoalListResponse, GoalListResponseSchema, GoalSchema, GoalType, GoalTypeQueryParam, 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 ListModelSecurityGroupsResponse, ListModelSecurityGroupsResponseSchema, type ListModelSecurityRuleInstancesResponse, ListModelSecurityRuleInstancesResponseSchema, type ListModelSecurityRulesResponse, ListModelSecurityRulesResponseSchema, 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_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_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 Metadata, type MetadataCriterion, MetadataCriterionSchema, MetadataSchema, type ModelConfiguration, ModelConfigurationSchema, type ModelProtectionItem, ModelProtectionItemSchema, type ModelScanIssue, ModelScanIssueSchema, ModelScanStatus, ModelSecurityClient, type ModelSecurityClientOptions, type ModelSecurityEvaluationListOptions, type ModelSecurityFileListOptions, type ModelSecurityGroupCreateRequest, ModelSecurityGroupCreateRequestSchema, type ModelSecurityGroupListOptions, type ModelSecurityGroupResponse, ModelSecurityGroupResponseSchema, ModelSecurityGroupState, type ModelSecurityGroupUpdateRequest, ModelSecurityGroupUpdateRequestSchema, ModelSecurityGroupsClient, type ModelSecurityGroupsClientOptions, type ModelSecurityLabelListOptions, type ModelSecurityPagination, ModelSecurityPaginationSchema, type ModelSecurityRuleInstanceListOptions, type ModelSecurityRuleInstanceResponse, ModelSecurityRuleInstanceResponseSchema, type ModelSecurityRuleInstanceUpdateRequest, ModelSecurityRuleInstanceUpdateRequestSchema, type ModelSecurityRuleListOptions, type ModelSecurityRuleResponse, ModelSecurityRuleResponseSchema, ModelSecurityRulesClient, type ModelSecurityRulesClientOptions, type ModelSecurityScanListOptions, ModelSecurityScansClient, type ModelSecurityScansClientOptions, type ModelSecurityViolationListOptions, type 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, PAYLOAD_HASH, type Page, type PageDataFilteringProfileResponse, PageDataFilteringProfileResponseSchema, type PageDataPatternResponse, PageDataPatternResponseSchema, type PageDataProfileResponse, PageDataProfileResponseSchema, type PageDictionaryResponse, PageDictionaryResponseSchema, type PageableObject, PageableObjectSchema, type PaginatedScanResults, PaginatedScanResultsSchema, type PaginationOptions, type PatternDetection, PatternDetectionSchema, type Policy, type PolicyAppProtection, PolicyAppProtectionSchema, type PolicyLatency, PolicyLatencySchema, PolicySchema, PolicyType, type PrerequisiteModel, PrerequisiteModelSchema, ProfilesClient, type ProfilesClientOptions, ProfilingStatus, type PromptDetailResponse, PromptDetailResponseSchema, type PromptDetected, PromptDetectedSchema, type PromptDetectionDetails, PromptDetectionDetailsSchema, type PromptListOptions, type PromptSetListOptions, type PromptSetStats, PromptSetStatsSchema, type PromptSetSummary, PromptSetSummarySchema, type PromptSetsReportResponse, PromptSetsReportResponseSchema, type PromptsBySetListOptions, type PropertyAssignment, PropertyAssignmentSchema, type PropertyDefinition, PropertyDefinitionSchema, type PropertyNameCreateRequest, PropertyNameCreateRequestSchema, type PropertyNamesListResponse, PropertyNamesListResponseSchema, type PropertyStatistic, PropertyStatisticSchema, type PropertyValueCreateRequest, PropertyValueCreateRequestSchema, type PropertyValueStatistic, PropertyValueStatisticSchema, type PropertyValuesMultipleResponse, PropertyValuesMultipleResponseSchema, type PropertyValuesResponse, PropertyValuesResponseSchema, type PyPIAuthResponse, PyPIAuthResponseSchema, type QuotaDetails, QuotaDetailsSchema, type QuotaSummary, QuotaSummarySchema, RED_TEAM_CATEGORIES_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_EULA_PATH, RED_TEAM_INSTANCES_PATH, RED_TEAM_MGMT_DASHBOARD_PATH, RED_TEAM_MGMT_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, RedTeamCategory, RedTeamClient, type RedTeamClientOptions, RedTeamCustomAttackReportsClient, type RedTeamCustomAttackReportsClientOptions, RedTeamCustomAttacksClient, type RedTeamCustomAttacksClientOptions, RedTeamErrorType, RedTeamEulaClient, type RedTeamEulaClientOptions, RedTeamInstancesClient, type RedTeamInstancesClientOptions, type RedTeamListOptions, type RedTeamPagination, RedTeamPaginationSchema, RedTeamReportsClient, type RedTeamReportsClientOptions, type RedTeamScanListOptions, RedTeamScansClient, type RedTeamScansClientOptions, RedTeamTargetsClient, type RedTeamTargetsClientOptions, type RegistryCredentials, RegistryCredentialsSchema, type RemediationDetail, RemediationDetailSchema, type RemediationResponse, RemediationResponseSchema, 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 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, type TargetAdditionalContext, TargetAdditionalContextSchema, TargetAuthType, type TargetAuthValidationRequest, TargetAuthValidationRequestSchema, type TargetAuthValidationResponse, TargetAuthValidationResponseSchema, type TargetBackground, TargetBackgroundSchema, TargetConnectionType, type TargetContextUpdate, TargetContextUpdateSchema, type TargetCreateRequest, TargetCreateRequestSchema, type TargetJobRequest, TargetJobRequestSchema, type TargetList, type TargetListItem, TargetListItemSchema, type TargetListOptions, TargetListSchema, type TargetMetadata, TargetMetadataSchema, type TargetOperationOptions, type TargetProbeRequest, TargetProbeRequestSchema, type TargetProfileResponse, TargetProfileResponseSchema, type TargetReference, TargetReferenceSchema, type TargetResponse, TargetResponseSchema, TargetStatus, type TargetTemplateCollection, TargetTemplateCollectionSchema, TargetType, type TargetUpdateRequest, TargetUpdateRequestSchema, type TcReport, TcReportSchema, type TgReport, TgReportSchema, ThreatCategory, type ThreatScanReport, ThreatScanReportSchema, type TokenInfo, type TokenStats, TokenStatsSchema, type ToolDetected, ToolDetectedSchema, type ToolDetectionDetails, ToolDetectionDetailsSchema, type ToolDetectionEntry, ToolDetectionEntrySchema, type ToolDetectionFlags, ToolDetectionFlagsSchema, type ToolEvent, type ToolEventMetadata, ToolEventMetadataSchema, ToolEventSchema, type TopicArray, TopicArraySchema, type TopicObject, TopicObjectSchema, TopicsClient, type TopicsClientOptions, type URLExclusion, URLExclusionSchema, USER_AGENT, type UrlCategory, UrlCategorySchema, type UrlfEntry, UrlfEntrySchema, type ValidationError, ValidationErrorSchema, Verdict, Verdict as VerdictType, type ViolationList, ViolationListSchema, type ViolationResponse, ViolationResponseSchema, type ViolationSeverityCounts, ViolationSeverityCountsSchema, type WebSocketConnectionParams, WebSocketConnectionParamsSchema, type WeightedRegex, WeightedRegexSchema, globalConfiguration, init, jsonNullable, pageSchema };
102224
+ export { AIRS_ENDPOINTS, AISecSDKException, AI_SEC_API_ENDPOINT, AI_SEC_API_KEY, AI_SEC_API_TOKEN, ASYNC_SCAN_PATH, Action, Action as ActionType, type AdvancedDataProfileRequest, AdvancedDataProfileRequestSchema, type AgentEntry, AgentEntrySchema, type AgentMeta, AgentMetaSchema, type AgentProtectionItem, AgentProtectionItemSchema, type AgentReport, AgentReportSchema, type AiProfile, AiProfileSchema, type AiSecurityProfile, AiSecurityProfileSchema, ApiEndpointType, type ApiKey, type ApiKeyCreateRequest, ApiKeyCreateRequestSchema, type ApiKeyDPInfo, ApiKeyDPInfoSchema, type ApiKeyDeleteResponse, ApiKeyDeleteResponseSchema, type ApiKeyListResponse, ApiKeyListResponseSchema, type ApiKeyRegenerateRequest, ApiKeyRegenerateRequestSchema, ApiKeySchema, ApiKeysClient, type ApiKeysClientOptions, type AppExclusion, AppExclusionSchema, type AsyncScanObject, AsyncScanObjectSchema, type AsyncScanResponse, AsyncScanResponseSchema, type AttackDetailResponse, AttackDetailResponseSchema, type AttackListItem, AttackListItemSchema, type AttackListOptions, type AttackListResponse, AttackListResponseSchema, type AttackMultiTurnDetailResponse, AttackMultiTurnDetailResponseSchema, type AttackMultiTurnOutput, AttackMultiTurnOutputSchema, type AttackOutput, AttackOutputSchema, AttackStatus, AttackType, type AuditResponse, AuditResponseSchema, type AuthConfig, AuthConfigSchema, AuthType, BEARER, type BaseResponse, BaseResponseSchema, type BasicAuthAuthConfig, BasicAuthAuthConfigSchema, BasicAuthLocation, type BedrockAccessConnectionParams, BedrockAccessConnectionParamsSchema, BrandSubCategory, Category, type CategoryModel, CategoryModelSchema, type CategoryReport, CategoryReportSchema, Category as CategoryType, type CgReport, CgReportSchema, type Channel, type ChannelListOptions, type ChannelListPagination, ChannelListPaginationSchema, type ChannelListResponse, ChannelListResponseSchema, ChannelSchema, type ChannelStats, ChannelStatsSchema, ChannelStatus, ChannelStatusSchema, type ChannelStatusType, type ClientIdAndCustomerApp, ClientIdAndCustomerAppSchema, type CmdEntry, CmdEntrySchema, type CmdInjectReport, CmdInjectReportSchema, type ComparisonOperatorType, ComparisonOperatorTypeSchema, type ComplianceReport, ComplianceReportSchema, ComplianceSubCategory, type ComplianceTechnique, ComplianceTechniqueSchema, type ConnectionParams, ConnectionParamsSchema, Content, type ContentError, ContentErrorSchema, ContentErrorType, ContentErrorType as ContentErrorTypeType, type ContentOptions, type CountByName, CountByNameSchema, CountedQuotaEnum, type CreateChannelRequest, CreateChannelRequestSchema, type CreateCustomTopicRequest, CreateCustomTopicRequestSchema, type CreateSecurityProfileRequest, CreateSecurityProfileRequestSchema, type CustomAttackOutput, CustomAttackOutputSchema, type CustomAttackReportResponse, CustomAttackReportResponseSchema, type CustomAttacksListResponse, CustomAttacksListResponseSchema, type CustomAttacksReportListOptions, type CustomJobMetadata, CustomJobMetadataSchema, type CustomPromptCreateRequest, CustomPromptCreateRequestSchema, type CustomPromptList, type CustomPromptListItem, CustomPromptListItemSchema, CustomPromptListSchema, type CustomPromptResponse, CustomPromptResponseSchema, type CustomPromptSetArchiveRequest, CustomPromptSetArchiveRequestSchema, type CustomPromptSetCreateRequest, CustomPromptSetCreateRequestSchema, type CustomPromptSetList, type CustomPromptSetListActive, CustomPromptSetListActiveSchema, type CustomPromptSetListItem, CustomPromptSetListItemSchema, CustomPromptSetListSchema, type CustomPromptSetReference, CustomPromptSetReferenceSchema, type CustomPromptSetResponse, CustomPromptSetResponseSchema, type CustomPromptSetUpdateRequest, CustomPromptSetUpdateRequestSchema, type CustomPromptSetVersionInfo, CustomPromptSetVersionInfoSchema, type CustomPromptUpdateRequest, CustomPromptUpdateRequestSchema, type CustomTopic, type CustomTopicListResponse, CustomTopicListResponseSchema, CustomTopicSchema, type CustomerApp, type CustomerAppDeleteResponse, CustomerAppDeleteResponseSchema, type CustomerAppListResponse, CustomerAppListResponseSchema, CustomerAppSchema, type CustomerAppWithKeys, CustomerAppWithKeysSchema, CustomerAppsClient, type CustomerAppsClientOptions, DEFAULT_DLP_ENDPOINT, DEFAULT_ENDPOINT, DEFAULT_MGMT_ENDPOINT, DEFAULT_MODEL_SEC_DATA_ENDPOINT, DEFAULT_MODEL_SEC_MGMT_ENDPOINT, DEFAULT_RED_TEAM_DATA_ENDPOINT, DEFAULT_RED_TEAM_MGMT_ENDPOINT, DEFAULT_RED_TEAM_NETWORK_BROKER_ENDPOINT, DEFAULT_TOKEN_ENDPOINT, DLP_DATA_FILTERING_PROFILES_PATH, DLP_DATA_PATTERNS_PATH, DLP_DATA_PROFILES_PATH, DLP_DICTIONARIES_PATH, type DSDetailResult, DSDetailResultSchema, type DSResultMetadata, DSResultMetadataSchema, type DashboardAppQuery, type DashboardApplication, DashboardApplicationSchema, type DashboardApplicationSessionsBucket, DashboardApplicationSessionsBucketSchema, type DashboardApplicationViolationBreakdown, DashboardApplicationViolationBreakdownSchema, type DashboardApplicationsOverview, type DashboardApplicationsOverviewItem, DashboardApplicationsOverviewItemSchema, type DashboardApplicationsOverviewQuery, DashboardApplicationsOverviewSchema, DashboardClient, type DashboardClientOptions, type DashboardOverviewResponse, DashboardOverviewResponseSchema, type DashboardPagination, DashboardPaginationSchema, type DashboardSessionStats, DashboardSessionStatsSchema, type DataFilteringDetails, DataFilteringDetailsSchema, type DataFilteringProfileListParams, type DataFilteringProfileRequest, DataFilteringProfileRequestSchema, type DataFilteringProfileResponse, DataFilteringProfileResponseSchema, DataFilteringProfilesClient, type DataFilteringProfilesClientOptions, type DataFilteringRuleDTO, DataFilteringRuleDTOSchema, type DataLeakDetectionMember, DataLeakDetectionMemberSchema, type DataPatternConfidenceLevel, DataPatternConfidenceLevelSchema, type DataPatternDetectionConfig, DataPatternDetectionConfigSchema, type DataPatternLicenseType, DataPatternLicenseTypeSchema, type DataPatternListParams, type DataPatternMatchingRules, DataPatternMatchingRulesSchema, type DataPatternPatchRequest, DataPatternPatchRequestSchema, type DataPatternRequest, DataPatternRequestSchema, type DataPatternResponse, DataPatternResponseSchema, type DataPatternStatus, DataPatternStatusSchema, type DataPatternTags, DataPatternTagsSchema, type DataPatternTechnique, DataPatternTechniqueSchema, type DataPatternType, DataPatternTypeSchema, DataPatternsClient, type DataPatternsClientOptions, type DataProfileListParams, type DataProfilePatchRequest, DataProfilePatchRequestSchema, type DataProfileResponse, DataProfileResponseSchema, type DataProfileStatus, DataProfileStatusSchema, type DataProfileSubtype, DataProfileSubtypeSchema, type DataProfileType, DataProfileTypeSchema, DataProfilesClient, type DataProfilesClientOptions, type DataProtection, DataProtectionSchema, type DatabaseSecurityItem, DatabaseSecurityItemSchema, type DatabricksConnectionParams, DatabricksConnectionParamsSchema, DateRangeFilter, type DbsEntry, DbsEntrySchema, type DbsReport, DbsReportSchema, type DefaultTreeDetectionRule, DefaultTreeDetectionRuleSchema, type DeleteProfileConflict, DeleteProfileConflictSchema, type DeleteProfileResponse, DeleteProfileResponseSchema, type DeleteTopicConflict, DeleteTopicConflictSchema, type DeleteTopicResponse, DeleteTopicResponseSchema, type DeploymentProfileAttribute, DeploymentProfileAttributeSchema, type DeploymentProfileEntry, DeploymentProfileEntrySchema, type DeploymentProfileListOptions, type DeploymentProfileRequest, DeploymentProfileRequestSchema, DeploymentProfilesClient, type DeploymentProfilesClientOptions, type DeploymentProfilesResponse, DeploymentProfilesResponseSchema, type DestinationAttributes, DestinationAttributesSchema, type DetectionRule, type DetectionRuleItem, DetectionRuleItemSchema, DetectionRuleSchema, DetectionServiceName, DetectionServiceName as DetectionServiceNameType, type DetectionServiceResult, DetectionServiceResultSchema, type DetectorViolationBreakdownEntry, DetectorViolationBreakdownEntrySchema, type Device, type DeviceInstance, DeviceInstanceSchema, type DeviceLicense, DeviceLicenseSchema, type DeviceRequest, DeviceRequestSchema, type DeviceResponse, DeviceResponseSchema, DeviceSchema, type DeviceStatus, DeviceStatusSchema, DictionariesClient, type DictionariesClientOptions, type DictionaryCategory, DictionaryCategorySchema, type DictionaryClassification, DictionaryClassificationSchema, type DictionaryDetectionSubTechnique, DictionaryDetectionSubTechniqueSchema, type DictionaryDetectionTechnique, DictionaryDetectionTechniqueSchema, type DictionaryFileInput, type DictionaryGetParams, type DictionaryListParams, type DictionaryMetaDataDTO, DictionaryMetaDataDTOSchema, type DictionaryPatchRequest, DictionaryPatchRequestSchema, type DictionaryRequest, DictionaryRequestSchema, type DictionaryResponse, DictionaryResponseSchema, type DictionaryTags, DictionaryTagsSchema, type DictionaryType, DictionaryTypeSchema, type DictionaryUploadParams, type DlpDataProfile, type DlpDataProfilePolicy, DlpDataProfilePolicySchema, DlpDataProfileSchema, DlpNamespace, type DlpNamespaceOptions, type DlpPatternDetection, DlpPatternDetectionSchema, type DlpProfileListResponse, DlpProfileListResponseSchema, DlpProfilesClient, type DlpProfilesClientOptions, type DlpReport, DlpReportSchema, type DlpRule, DlpRuleSchema, type DynamicJobMetadata, DynamicJobMetadataSchema, type DynamicJobReport, DynamicJobReportSchema, type DynamicJobReportStats, DynamicJobReportStatsSchema, ErrorCodes, type ErrorLog, type ErrorLogListResponse, ErrorLogListResponseSchema, ErrorLogSchema, type ErrorResponse, ErrorResponseSchema, ErrorSource, ErrorStatus, ErrorStatus as ErrorStatusType, 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, FileFormat, type FileList, FileListSchema, type FileResponse, FileResponseSchema, type FileScanData, FileScanDataSchema, FileScanResult, FileType, type GetTokenOptions, type Goal, type GoalListOptions, type GoalListResponse, GoalListResponseSchema, GoalSchema, GoalType, GoalTypeQueryParam, 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 ListModelSecurityGroupsResponse, ListModelSecurityGroupsResponseSchema, type ListModelSecurityRuleInstancesResponse, ListModelSecurityRuleInstancesResponseSchema, type ListModelSecurityRulesResponse, ListModelSecurityRulesResponseSchema, 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 Metadata, type MetadataCriterion, MetadataCriterionSchema, MetadataSchema, type Model, type ModelConfiguration, ModelConfigurationSchema, type ModelList, ModelListSchema, type ModelProtectionItem, ModelProtectionItemSchema, ModelResponseSchema, type ModelScanIssue, ModelScanIssueSchema, ModelScanStatus, ModelSecurityClient, type ModelSecurityClientOptions, type ModelSecurityEvaluationListOptions, type ModelSecurityFileListOptions, type ModelSecurityGroupCreateRequest, ModelSecurityGroupCreateRequestSchema, type ModelSecurityGroupListOptions, type ModelSecurityGroupResponse, ModelSecurityGroupResponseSchema, ModelSecurityGroupState, type ModelSecurityGroupUpdateRequest, ModelSecurityGroupUpdateRequestSchema, ModelSecurityGroupsClient, type ModelSecurityGroupsClientOptions, type ModelSecurityLabelListOptions, type ModelSecurityModelListOptions, type ModelSecurityModelVersionFileListOptions, type ModelSecurityModelVersionListOptions, ModelSecurityModelsClient, type ModelSecurityModelsClientOptions, type ModelSecurityPagination, ModelSecurityPaginationSchema, type ModelSecurityRuleInstanceListOptions, type ModelSecurityRuleInstanceResponse, ModelSecurityRuleInstanceResponseSchema, type ModelSecurityRuleInstanceUpdateRequest, ModelSecurityRuleInstanceUpdateRequestSchema, type ModelSecurityRuleListOptions, type ModelSecurityRuleResponse, ModelSecurityRuleResponseSchema, ModelSecurityRulesClient, type ModelSecurityRulesClientOptions, type ModelSecurityScanListOptions, ModelSecurityScansClient, type ModelSecurityScansClientOptions, type ModelSecurityViolationListOptions, type ModelVersion, type ModelVersionList, ModelVersionListSchema, ModelVersionResponseSchema, type MultiProfileDataNode, MultiProfileDataNodeSchema, type MultiProfileDetectionRule, MultiProfileDetectionRuleSchema, type MultiTurnStatefulConfig, MultiTurnStatefulConfigSchema, type MultiTurnStatelessConfig, MultiTurnStatelessConfigSchema, type OAuth2AuthConfig, OAuth2AuthConfigSchema, OAuthClient, type OAuthClientOptions, OAuthManagementClient, type OAuthManagementClientOptions, type Oauth2Token, Oauth2TokenSchema, type Offset, OffsetSchema, type OpenAIConnectionParams, OpenAIConnectionParamsSchema, PAYLOAD_HASH, type Page, type PageDataFilteringProfileResponse, PageDataFilteringProfileResponseSchema, type PageDataPatternResponse, PageDataPatternResponseSchema, type PageDataProfileResponse, PageDataProfileResponseSchema, type PageDictionaryResponse, PageDictionaryResponseSchema, type PageableObject, PageableObjectSchema, type PaginatedScanResults, PaginatedScanResultsSchema, type PaginationOptions, type PatternDetection, PatternDetectionSchema, type Policy, type PolicyAppProtection, PolicyAppProtectionSchema, type PolicyLatency, PolicyLatencySchema, PolicySchema, PolicyType, type PrerequisiteModel, PrerequisiteModelSchema, ProfilesClient, type ProfilesClientOptions, ProfilingStatus, type PromptDetailResponse, PromptDetailResponseSchema, type PromptDetected, PromptDetectedSchema, type PromptDetectionDetails, PromptDetectionDetailsSchema, type PromptListOptions, type PromptSetListOptions, type PromptSetStats, PromptSetStatsSchema, type PromptSetSummary, PromptSetSummarySchema, type PromptSetsReportResponse, PromptSetsReportResponseSchema, type PromptsBySetListOptions, type PropertyAssignment, PropertyAssignmentSchema, type PropertyDefinition, PropertyDefinitionSchema, type PropertyNameCreateRequest, PropertyNameCreateRequestSchema, type PropertyNamesListResponse, PropertyNamesListResponseSchema, type PropertyStatistic, PropertyStatisticSchema, type PropertyValueCreateRequest, PropertyValueCreateRequestSchema, type PropertyValueStatistic, PropertyValueStatisticSchema, type PropertyValuesMultipleResponse, PropertyValuesMultipleResponseSchema, type PropertyValuesResponse, PropertyValuesResponseSchema, type PyPIAuthResponse, PyPIAuthResponseSchema, type QuotaDetails, QuotaDetailsSchema, type QuotaSummary, QuotaSummarySchema, RED_TEAM_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, RedTeamCategory, RedTeamClient, type RedTeamClientOptions, RedTeamCustomAttackReportsClient, type RedTeamCustomAttackReportsClientOptions, RedTeamCustomAttacksClient, type RedTeamCustomAttacksClientOptions, RedTeamErrorType, RedTeamEulaClient, type RedTeamEulaClientOptions, RedTeamInstancesClient, type RedTeamInstancesClientOptions, type RedTeamListOptions, RedTeamNetworkBrokerClient, type RedTeamNetworkBrokerClientOptions, type RedTeamPagination, RedTeamPaginationSchema, RedTeamReportsClient, type RedTeamReportsClientOptions, type RedTeamScanListOptions, RedTeamScansClient, type RedTeamScansClientOptions, RedTeamTargetsClient, type RedTeamTargetsClientOptions, type RegistryCredentials, RegistryCredentialsSchema, type RemediationDetail, RemediationDetailSchema, type RemediationResponse, RemediationResponseSchema, type 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 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, type TargetAdditionalContext, TargetAdditionalContextSchema, TargetAuthType, type TargetAuthValidationRequest, TargetAuthValidationRequestSchema, type TargetAuthValidationResponse, TargetAuthValidationResponseSchema, type TargetBackground, TargetBackgroundSchema, TargetConnectionType, type TargetContextUpdate, TargetContextUpdateSchema, type TargetCreateRequest, TargetCreateRequestSchema, type TargetJobRequest, TargetJobRequestSchema, type TargetList, type TargetListItem, TargetListItemSchema, type TargetListOptions, TargetListSchema, type TargetMetadata, TargetMetadataSchema, type TargetOperationOptions, type TargetProbeRequest, TargetProbeRequestSchema, type TargetProfileResponse, TargetProfileResponseSchema, type TargetReference, TargetReferenceSchema, type TargetResponse, TargetResponseSchema, TargetStatus, type TargetTemplateCollection, TargetTemplateCollectionSchema, TargetType, type TargetUpdateRequest, TargetUpdateRequestSchema, type TcReport, TcReportSchema, type TenantLanguagesResponse, TenantLanguagesResponseSchema, type TgReport, TgReportSchema, ThreatCategory, type ThreatScanReport, ThreatScanReportSchema, type TokenInfo, type TokenStats, TokenStatsSchema, type ToolDetected, ToolDetectedSchema, type ToolDetectionDetails, ToolDetectionDetailsSchema, type ToolDetectionEntry, ToolDetectionEntrySchema, type ToolDetectionFlags, ToolDetectionFlagsSchema, type ToolEvent, type ToolEventMetadata, ToolEventMetadataSchema, ToolEventSchema, type TopicArray, TopicArraySchema, type TopicObject, TopicObjectSchema, TopicsClient, type TopicsClientOptions, type URLExclusion, URLExclusionSchema, USER_AGENT, type UpdateChannelRequest, UpdateChannelRequestSchema, type UrlCategory, UrlCategorySchema, type UrlfEntry, UrlfEntrySchema, type ValidationError, ValidationErrorSchema, Verdict, Verdict as VerdictType, type ViolationList, ViolationListSchema, type ViolationRemediation, ViolationRemediationSchema, type ViolationResponse, ViolationResponseSchema, type ViolationSeverityCounts, ViolationSeverityCountsSchema, type WebSocketConnectionParams, WebSocketConnectionParamsSchema, type WeightedRegex, WeightedRegexSchema, globalConfiguration, init, jsonNullable, pageSchema };