promptfoo 0.115.3 → 0.115.4
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/drizzle/0015_zippy_wallop.sql +29 -0
- package/dist/drizzle/meta/0015_snapshot.json +1003 -0
- package/dist/drizzle/meta/_journal.json +7 -0
- package/dist/package.json +1 -1
- package/dist/src/app/assets/{index-BXsrbFYA.js → index-DwIrymQd.js} +169 -169
- package/dist/src/app/assets/{source-map-support-CNXJ1-7r.js → source-map-support-UIopcc8W.js} +1 -1
- package/dist/src/app/assets/{sync-CYtWtmxM.js → sync-CqTZoCfS.js} +1 -1
- package/dist/src/app/index.html +1 -1
- package/dist/src/database/tables.d.ts +365 -0
- package/dist/src/database/tables.d.ts.map +1 -1
- package/dist/src/database/tables.js +48 -1
- package/dist/src/database/tables.js.map +1 -1
- package/dist/src/evaluator.d.ts.map +1 -1
- package/dist/src/evaluator.js +46 -4
- package/dist/src/evaluator.js.map +1 -1
- package/dist/src/redteam/commands/generate.d.ts.map +1 -1
- package/dist/src/redteam/commands/generate.js +0 -2
- package/dist/src/redteam/commands/generate.js.map +1 -1
- package/dist/src/server/routes/traces.d.ts +2 -0
- package/dist/src/server/routes/traces.d.ts.map +1 -0
- package/dist/src/server/routes/traces.js +45 -0
- package/dist/src/server/routes/traces.js.map +1 -0
- package/dist/src/server/server.d.ts.map +1 -1
- package/dist/src/server/server.js +2 -0
- package/dist/src/server/server.js.map +1 -1
- package/dist/src/tracing/evaluatorTracing.d.ts +39 -0
- package/dist/src/tracing/evaluatorTracing.d.ts.map +1 -0
- package/dist/src/tracing/evaluatorTracing.js +189 -0
- package/dist/src/tracing/evaluatorTracing.js.map +1 -0
- package/dist/src/tracing/otlpReceiver.d.ts +21 -0
- package/dist/src/tracing/otlpReceiver.d.ts.map +1 -0
- package/dist/src/tracing/otlpReceiver.js +278 -0
- package/dist/src/tracing/otlpReceiver.js.map +1 -0
- package/dist/src/tracing/store.d.ts +33 -0
- package/dist/src/tracing/store.d.ts.map +1 -0
- package/dist/src/tracing/store.js +170 -0
- package/dist/src/tracing/store.js.map +1 -0
- package/dist/src/types/index.d.ts +606 -0
- package/dist/src/types/index.d.ts.map +1 -1
- package/dist/src/types/index.js +77 -0
- package/dist/src/types/index.js.map +1 -1
- package/dist/src/types/providers.d.ts +4 -0
- package/dist/src/types/providers.d.ts.map +1 -1
- package/dist/src/types/providers.js.map +1 -1
- package/dist/src/util/config/load.d.ts.map +1 -1
- package/dist/src/util/config/load.js +3 -0
- package/dist/src/util/config/load.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -15694,6 +15694,128 @@ export declare const TestSuiteSchema: z.ZodObject<{
|
|
|
15694
15694
|
}>, "many">>;
|
|
15695
15695
|
extensions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, "many">>>;
|
|
15696
15696
|
redteam: z.ZodOptional<z.ZodType<RedteamFileConfig, z.ZodTypeDef, RedteamFileConfig>>;
|
|
15697
|
+
tracing: z.ZodOptional<z.ZodObject<{
|
|
15698
|
+
enabled: z.ZodBoolean;
|
|
15699
|
+
otlp: z.ZodOptional<z.ZodObject<{
|
|
15700
|
+
http: z.ZodOptional<z.ZodObject<{
|
|
15701
|
+
enabled: z.ZodBoolean;
|
|
15702
|
+
port: z.ZodNumber;
|
|
15703
|
+
host: z.ZodOptional<z.ZodString>;
|
|
15704
|
+
acceptFormats: z.ZodArray<z.ZodString, "many">;
|
|
15705
|
+
}, "strip", z.ZodTypeAny, {
|
|
15706
|
+
enabled: boolean;
|
|
15707
|
+
port: number;
|
|
15708
|
+
acceptFormats: string[];
|
|
15709
|
+
host?: string | undefined;
|
|
15710
|
+
}, {
|
|
15711
|
+
enabled: boolean;
|
|
15712
|
+
port: number;
|
|
15713
|
+
acceptFormats: string[];
|
|
15714
|
+
host?: string | undefined;
|
|
15715
|
+
}>>;
|
|
15716
|
+
grpc: z.ZodOptional<z.ZodObject<{
|
|
15717
|
+
enabled: z.ZodBoolean;
|
|
15718
|
+
port: z.ZodNumber;
|
|
15719
|
+
}, "strip", z.ZodTypeAny, {
|
|
15720
|
+
enabled: boolean;
|
|
15721
|
+
port: number;
|
|
15722
|
+
}, {
|
|
15723
|
+
enabled: boolean;
|
|
15724
|
+
port: number;
|
|
15725
|
+
}>>;
|
|
15726
|
+
}, "strip", z.ZodTypeAny, {
|
|
15727
|
+
http?: {
|
|
15728
|
+
enabled: boolean;
|
|
15729
|
+
port: number;
|
|
15730
|
+
acceptFormats: string[];
|
|
15731
|
+
host?: string | undefined;
|
|
15732
|
+
} | undefined;
|
|
15733
|
+
grpc?: {
|
|
15734
|
+
enabled: boolean;
|
|
15735
|
+
port: number;
|
|
15736
|
+
} | undefined;
|
|
15737
|
+
}, {
|
|
15738
|
+
http?: {
|
|
15739
|
+
enabled: boolean;
|
|
15740
|
+
port: number;
|
|
15741
|
+
acceptFormats: string[];
|
|
15742
|
+
host?: string | undefined;
|
|
15743
|
+
} | undefined;
|
|
15744
|
+
grpc?: {
|
|
15745
|
+
enabled: boolean;
|
|
15746
|
+
port: number;
|
|
15747
|
+
} | undefined;
|
|
15748
|
+
}>>;
|
|
15749
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
15750
|
+
type: z.ZodString;
|
|
15751
|
+
retentionDays: z.ZodNumber;
|
|
15752
|
+
}, "strip", z.ZodTypeAny, {
|
|
15753
|
+
type: string;
|
|
15754
|
+
retentionDays: number;
|
|
15755
|
+
}, {
|
|
15756
|
+
type: string;
|
|
15757
|
+
retentionDays: number;
|
|
15758
|
+
}>>;
|
|
15759
|
+
forwarding: z.ZodOptional<z.ZodObject<{
|
|
15760
|
+
enabled: z.ZodBoolean;
|
|
15761
|
+
endpoint: z.ZodString;
|
|
15762
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
15763
|
+
}, "strip", z.ZodTypeAny, {
|
|
15764
|
+
enabled: boolean;
|
|
15765
|
+
endpoint: string;
|
|
15766
|
+
headers?: Record<string, string> | undefined;
|
|
15767
|
+
}, {
|
|
15768
|
+
enabled: boolean;
|
|
15769
|
+
endpoint: string;
|
|
15770
|
+
headers?: Record<string, string> | undefined;
|
|
15771
|
+
}>>;
|
|
15772
|
+
}, "strip", z.ZodTypeAny, {
|
|
15773
|
+
enabled: boolean;
|
|
15774
|
+
otlp?: {
|
|
15775
|
+
http?: {
|
|
15776
|
+
enabled: boolean;
|
|
15777
|
+
port: number;
|
|
15778
|
+
acceptFormats: string[];
|
|
15779
|
+
host?: string | undefined;
|
|
15780
|
+
} | undefined;
|
|
15781
|
+
grpc?: {
|
|
15782
|
+
enabled: boolean;
|
|
15783
|
+
port: number;
|
|
15784
|
+
} | undefined;
|
|
15785
|
+
} | undefined;
|
|
15786
|
+
storage?: {
|
|
15787
|
+
type: string;
|
|
15788
|
+
retentionDays: number;
|
|
15789
|
+
} | undefined;
|
|
15790
|
+
forwarding?: {
|
|
15791
|
+
enabled: boolean;
|
|
15792
|
+
endpoint: string;
|
|
15793
|
+
headers?: Record<string, string> | undefined;
|
|
15794
|
+
} | undefined;
|
|
15795
|
+
}, {
|
|
15796
|
+
enabled: boolean;
|
|
15797
|
+
otlp?: {
|
|
15798
|
+
http?: {
|
|
15799
|
+
enabled: boolean;
|
|
15800
|
+
port: number;
|
|
15801
|
+
acceptFormats: string[];
|
|
15802
|
+
host?: string | undefined;
|
|
15803
|
+
} | undefined;
|
|
15804
|
+
grpc?: {
|
|
15805
|
+
enabled: boolean;
|
|
15806
|
+
port: number;
|
|
15807
|
+
} | undefined;
|
|
15808
|
+
} | undefined;
|
|
15809
|
+
storage?: {
|
|
15810
|
+
type: string;
|
|
15811
|
+
retentionDays: number;
|
|
15812
|
+
} | undefined;
|
|
15813
|
+
forwarding?: {
|
|
15814
|
+
enabled: boolean;
|
|
15815
|
+
endpoint: string;
|
|
15816
|
+
headers?: Record<string, string> | undefined;
|
|
15817
|
+
} | undefined;
|
|
15818
|
+
}>>;
|
|
15697
15819
|
}, "strip", z.ZodTypeAny, {
|
|
15698
15820
|
prompts: {
|
|
15699
15821
|
raw: string;
|
|
@@ -16520,6 +16642,30 @@ export declare const TestSuiteSchema: z.ZodObject<{
|
|
|
16520
16642
|
name: string;
|
|
16521
16643
|
}[] | undefined;
|
|
16522
16644
|
extensions?: string[] | null | undefined;
|
|
16645
|
+
tracing?: {
|
|
16646
|
+
enabled: boolean;
|
|
16647
|
+
otlp?: {
|
|
16648
|
+
http?: {
|
|
16649
|
+
enabled: boolean;
|
|
16650
|
+
port: number;
|
|
16651
|
+
acceptFormats: string[];
|
|
16652
|
+
host?: string | undefined;
|
|
16653
|
+
} | undefined;
|
|
16654
|
+
grpc?: {
|
|
16655
|
+
enabled: boolean;
|
|
16656
|
+
port: number;
|
|
16657
|
+
} | undefined;
|
|
16658
|
+
} | undefined;
|
|
16659
|
+
storage?: {
|
|
16660
|
+
type: string;
|
|
16661
|
+
retentionDays: number;
|
|
16662
|
+
} | undefined;
|
|
16663
|
+
forwarding?: {
|
|
16664
|
+
enabled: boolean;
|
|
16665
|
+
endpoint: string;
|
|
16666
|
+
headers?: Record<string, string> | undefined;
|
|
16667
|
+
} | undefined;
|
|
16668
|
+
} | undefined;
|
|
16523
16669
|
providerPromptMap?: Record<string, string[]> | undefined;
|
|
16524
16670
|
}, {
|
|
16525
16671
|
prompts: {
|
|
@@ -17347,6 +17493,30 @@ export declare const TestSuiteSchema: z.ZodObject<{
|
|
|
17347
17493
|
name: string;
|
|
17348
17494
|
}[] | undefined;
|
|
17349
17495
|
extensions?: string[] | null | undefined;
|
|
17496
|
+
tracing?: {
|
|
17497
|
+
enabled: boolean;
|
|
17498
|
+
otlp?: {
|
|
17499
|
+
http?: {
|
|
17500
|
+
enabled: boolean;
|
|
17501
|
+
port: number;
|
|
17502
|
+
acceptFormats: string[];
|
|
17503
|
+
host?: string | undefined;
|
|
17504
|
+
} | undefined;
|
|
17505
|
+
grpc?: {
|
|
17506
|
+
enabled: boolean;
|
|
17507
|
+
port: number;
|
|
17508
|
+
} | undefined;
|
|
17509
|
+
} | undefined;
|
|
17510
|
+
storage?: {
|
|
17511
|
+
type: string;
|
|
17512
|
+
retentionDays: number;
|
|
17513
|
+
} | undefined;
|
|
17514
|
+
forwarding?: {
|
|
17515
|
+
enabled: boolean;
|
|
17516
|
+
endpoint: string;
|
|
17517
|
+
headers?: Record<string, string> | undefined;
|
|
17518
|
+
} | undefined;
|
|
17519
|
+
} | undefined;
|
|
17350
17520
|
providerPromptMap?: Record<string, string | string[]> | undefined;
|
|
17351
17521
|
}>;
|
|
17352
17522
|
export type TestSuite = z.infer<typeof TestSuiteSchema>;
|
|
@@ -24778,6 +24948,128 @@ export declare const TestSuiteConfigSchema: z.ZodObject<{
|
|
|
24778
24948
|
excludeTargetOutputFromAgenticAttackGeneration?: boolean | undefined;
|
|
24779
24949
|
}>>;
|
|
24780
24950
|
writeLatestResults: z.ZodOptional<z.ZodBoolean>;
|
|
24951
|
+
tracing: z.ZodOptional<z.ZodObject<{
|
|
24952
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
24953
|
+
otlp: z.ZodOptional<z.ZodObject<{
|
|
24954
|
+
http: z.ZodOptional<z.ZodObject<{
|
|
24955
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
24956
|
+
port: z.ZodDefault<z.ZodNumber>;
|
|
24957
|
+
host: z.ZodDefault<z.ZodString>;
|
|
24958
|
+
acceptFormats: z.ZodDefault<z.ZodArray<z.ZodEnum<["protobuf", "json"]>, "many">>;
|
|
24959
|
+
}, "strip", z.ZodTypeAny, {
|
|
24960
|
+
enabled: boolean;
|
|
24961
|
+
port: number;
|
|
24962
|
+
host: string;
|
|
24963
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
24964
|
+
}, {
|
|
24965
|
+
enabled?: boolean | undefined;
|
|
24966
|
+
port?: number | undefined;
|
|
24967
|
+
host?: string | undefined;
|
|
24968
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
24969
|
+
}>>;
|
|
24970
|
+
grpc: z.ZodOptional<z.ZodObject<{
|
|
24971
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
24972
|
+
port: z.ZodDefault<z.ZodNumber>;
|
|
24973
|
+
}, "strip", z.ZodTypeAny, {
|
|
24974
|
+
enabled: boolean;
|
|
24975
|
+
port: number;
|
|
24976
|
+
}, {
|
|
24977
|
+
enabled?: boolean | undefined;
|
|
24978
|
+
port?: number | undefined;
|
|
24979
|
+
}>>;
|
|
24980
|
+
}, "strip", z.ZodTypeAny, {
|
|
24981
|
+
http?: {
|
|
24982
|
+
enabled: boolean;
|
|
24983
|
+
port: number;
|
|
24984
|
+
host: string;
|
|
24985
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
24986
|
+
} | undefined;
|
|
24987
|
+
grpc?: {
|
|
24988
|
+
enabled: boolean;
|
|
24989
|
+
port: number;
|
|
24990
|
+
} | undefined;
|
|
24991
|
+
}, {
|
|
24992
|
+
http?: {
|
|
24993
|
+
enabled?: boolean | undefined;
|
|
24994
|
+
port?: number | undefined;
|
|
24995
|
+
host?: string | undefined;
|
|
24996
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
24997
|
+
} | undefined;
|
|
24998
|
+
grpc?: {
|
|
24999
|
+
enabled?: boolean | undefined;
|
|
25000
|
+
port?: number | undefined;
|
|
25001
|
+
} | undefined;
|
|
25002
|
+
}>>;
|
|
25003
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
25004
|
+
type: z.ZodDefault<z.ZodEnum<["sqlite"]>>;
|
|
25005
|
+
retentionDays: z.ZodDefault<z.ZodNumber>;
|
|
25006
|
+
}, "strip", z.ZodTypeAny, {
|
|
25007
|
+
type: "sqlite";
|
|
25008
|
+
retentionDays: number;
|
|
25009
|
+
}, {
|
|
25010
|
+
type?: "sqlite" | undefined;
|
|
25011
|
+
retentionDays?: number | undefined;
|
|
25012
|
+
}>>;
|
|
25013
|
+
forwarding: z.ZodOptional<z.ZodObject<{
|
|
25014
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
25015
|
+
endpoint: z.ZodString;
|
|
25016
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
25017
|
+
}, "strip", z.ZodTypeAny, {
|
|
25018
|
+
enabled: boolean;
|
|
25019
|
+
endpoint: string;
|
|
25020
|
+
headers?: Record<string, string> | undefined;
|
|
25021
|
+
}, {
|
|
25022
|
+
endpoint: string;
|
|
25023
|
+
enabled?: boolean | undefined;
|
|
25024
|
+
headers?: Record<string, string> | undefined;
|
|
25025
|
+
}>>;
|
|
25026
|
+
}, "strip", z.ZodTypeAny, {
|
|
25027
|
+
enabled: boolean;
|
|
25028
|
+
otlp?: {
|
|
25029
|
+
http?: {
|
|
25030
|
+
enabled: boolean;
|
|
25031
|
+
port: number;
|
|
25032
|
+
host: string;
|
|
25033
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
25034
|
+
} | undefined;
|
|
25035
|
+
grpc?: {
|
|
25036
|
+
enabled: boolean;
|
|
25037
|
+
port: number;
|
|
25038
|
+
} | undefined;
|
|
25039
|
+
} | undefined;
|
|
25040
|
+
storage?: {
|
|
25041
|
+
type: "sqlite";
|
|
25042
|
+
retentionDays: number;
|
|
25043
|
+
} | undefined;
|
|
25044
|
+
forwarding?: {
|
|
25045
|
+
enabled: boolean;
|
|
25046
|
+
endpoint: string;
|
|
25047
|
+
headers?: Record<string, string> | undefined;
|
|
25048
|
+
} | undefined;
|
|
25049
|
+
}, {
|
|
25050
|
+
enabled?: boolean | undefined;
|
|
25051
|
+
otlp?: {
|
|
25052
|
+
http?: {
|
|
25053
|
+
enabled?: boolean | undefined;
|
|
25054
|
+
port?: number | undefined;
|
|
25055
|
+
host?: string | undefined;
|
|
25056
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
25057
|
+
} | undefined;
|
|
25058
|
+
grpc?: {
|
|
25059
|
+
enabled?: boolean | undefined;
|
|
25060
|
+
port?: number | undefined;
|
|
25061
|
+
} | undefined;
|
|
25062
|
+
} | undefined;
|
|
25063
|
+
storage?: {
|
|
25064
|
+
type?: "sqlite" | undefined;
|
|
25065
|
+
retentionDays?: number | undefined;
|
|
25066
|
+
} | undefined;
|
|
25067
|
+
forwarding?: {
|
|
25068
|
+
endpoint: string;
|
|
25069
|
+
enabled?: boolean | undefined;
|
|
25070
|
+
headers?: Record<string, string> | undefined;
|
|
25071
|
+
} | undefined;
|
|
25072
|
+
}>>;
|
|
24781
25073
|
}, "strip", z.ZodTypeAny, {
|
|
24782
25074
|
prompts: string | Record<string, string> | (string | {
|
|
24783
25075
|
raw: string;
|
|
@@ -25845,6 +26137,30 @@ export declare const TestSuiteConfigSchema: z.ZodObject<{
|
|
|
25845
26137
|
}[] | undefined;
|
|
25846
26138
|
extensions?: string[] | null | undefined;
|
|
25847
26139
|
writeLatestResults?: boolean | undefined;
|
|
26140
|
+
tracing?: {
|
|
26141
|
+
enabled: boolean;
|
|
26142
|
+
otlp?: {
|
|
26143
|
+
http?: {
|
|
26144
|
+
enabled: boolean;
|
|
26145
|
+
port: number;
|
|
26146
|
+
host: string;
|
|
26147
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
26148
|
+
} | undefined;
|
|
26149
|
+
grpc?: {
|
|
26150
|
+
enabled: boolean;
|
|
26151
|
+
port: number;
|
|
26152
|
+
} | undefined;
|
|
26153
|
+
} | undefined;
|
|
26154
|
+
storage?: {
|
|
26155
|
+
type: "sqlite";
|
|
26156
|
+
retentionDays: number;
|
|
26157
|
+
} | undefined;
|
|
26158
|
+
forwarding?: {
|
|
26159
|
+
enabled: boolean;
|
|
26160
|
+
endpoint: string;
|
|
26161
|
+
headers?: Record<string, string> | undefined;
|
|
26162
|
+
} | undefined;
|
|
26163
|
+
} | undefined;
|
|
25848
26164
|
}, {
|
|
25849
26165
|
prompts: string | Record<string, string> | (string | {
|
|
25850
26166
|
raw: string;
|
|
@@ -27037,6 +27353,30 @@ export declare const TestSuiteConfigSchema: z.ZodObject<{
|
|
|
27037
27353
|
}[] | undefined;
|
|
27038
27354
|
extensions?: string[] | null | undefined;
|
|
27039
27355
|
writeLatestResults?: boolean | undefined;
|
|
27356
|
+
tracing?: {
|
|
27357
|
+
enabled?: boolean | undefined;
|
|
27358
|
+
otlp?: {
|
|
27359
|
+
http?: {
|
|
27360
|
+
enabled?: boolean | undefined;
|
|
27361
|
+
port?: number | undefined;
|
|
27362
|
+
host?: string | undefined;
|
|
27363
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
27364
|
+
} | undefined;
|
|
27365
|
+
grpc?: {
|
|
27366
|
+
enabled?: boolean | undefined;
|
|
27367
|
+
port?: number | undefined;
|
|
27368
|
+
} | undefined;
|
|
27369
|
+
} | undefined;
|
|
27370
|
+
storage?: {
|
|
27371
|
+
type?: "sqlite" | undefined;
|
|
27372
|
+
retentionDays?: number | undefined;
|
|
27373
|
+
} | undefined;
|
|
27374
|
+
forwarding?: {
|
|
27375
|
+
endpoint: string;
|
|
27376
|
+
enabled?: boolean | undefined;
|
|
27377
|
+
headers?: Record<string, string> | undefined;
|
|
27378
|
+
} | undefined;
|
|
27379
|
+
} | undefined;
|
|
27040
27380
|
}>;
|
|
27041
27381
|
export type TestSuiteConfig = z.infer<typeof TestSuiteConfigSchema>;
|
|
27042
27382
|
export declare const UnifiedConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
@@ -33364,6 +33704,128 @@ export declare const UnifiedConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
33364
33704
|
excludeTargetOutputFromAgenticAttackGeneration?: boolean | undefined;
|
|
33365
33705
|
}>>;
|
|
33366
33706
|
writeLatestResults: z.ZodOptional<z.ZodBoolean>;
|
|
33707
|
+
tracing: z.ZodOptional<z.ZodObject<{
|
|
33708
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
33709
|
+
otlp: z.ZodOptional<z.ZodObject<{
|
|
33710
|
+
http: z.ZodOptional<z.ZodObject<{
|
|
33711
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
33712
|
+
port: z.ZodDefault<z.ZodNumber>;
|
|
33713
|
+
host: z.ZodDefault<z.ZodString>;
|
|
33714
|
+
acceptFormats: z.ZodDefault<z.ZodArray<z.ZodEnum<["protobuf", "json"]>, "many">>;
|
|
33715
|
+
}, "strip", z.ZodTypeAny, {
|
|
33716
|
+
enabled: boolean;
|
|
33717
|
+
port: number;
|
|
33718
|
+
host: string;
|
|
33719
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
33720
|
+
}, {
|
|
33721
|
+
enabled?: boolean | undefined;
|
|
33722
|
+
port?: number | undefined;
|
|
33723
|
+
host?: string | undefined;
|
|
33724
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
33725
|
+
}>>;
|
|
33726
|
+
grpc: z.ZodOptional<z.ZodObject<{
|
|
33727
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
33728
|
+
port: z.ZodDefault<z.ZodNumber>;
|
|
33729
|
+
}, "strip", z.ZodTypeAny, {
|
|
33730
|
+
enabled: boolean;
|
|
33731
|
+
port: number;
|
|
33732
|
+
}, {
|
|
33733
|
+
enabled?: boolean | undefined;
|
|
33734
|
+
port?: number | undefined;
|
|
33735
|
+
}>>;
|
|
33736
|
+
}, "strip", z.ZodTypeAny, {
|
|
33737
|
+
http?: {
|
|
33738
|
+
enabled: boolean;
|
|
33739
|
+
port: number;
|
|
33740
|
+
host: string;
|
|
33741
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
33742
|
+
} | undefined;
|
|
33743
|
+
grpc?: {
|
|
33744
|
+
enabled: boolean;
|
|
33745
|
+
port: number;
|
|
33746
|
+
} | undefined;
|
|
33747
|
+
}, {
|
|
33748
|
+
http?: {
|
|
33749
|
+
enabled?: boolean | undefined;
|
|
33750
|
+
port?: number | undefined;
|
|
33751
|
+
host?: string | undefined;
|
|
33752
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
33753
|
+
} | undefined;
|
|
33754
|
+
grpc?: {
|
|
33755
|
+
enabled?: boolean | undefined;
|
|
33756
|
+
port?: number | undefined;
|
|
33757
|
+
} | undefined;
|
|
33758
|
+
}>>;
|
|
33759
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
33760
|
+
type: z.ZodDefault<z.ZodEnum<["sqlite"]>>;
|
|
33761
|
+
retentionDays: z.ZodDefault<z.ZodNumber>;
|
|
33762
|
+
}, "strip", z.ZodTypeAny, {
|
|
33763
|
+
type: "sqlite";
|
|
33764
|
+
retentionDays: number;
|
|
33765
|
+
}, {
|
|
33766
|
+
type?: "sqlite" | undefined;
|
|
33767
|
+
retentionDays?: number | undefined;
|
|
33768
|
+
}>>;
|
|
33769
|
+
forwarding: z.ZodOptional<z.ZodObject<{
|
|
33770
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
33771
|
+
endpoint: z.ZodString;
|
|
33772
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
33773
|
+
}, "strip", z.ZodTypeAny, {
|
|
33774
|
+
enabled: boolean;
|
|
33775
|
+
endpoint: string;
|
|
33776
|
+
headers?: Record<string, string> | undefined;
|
|
33777
|
+
}, {
|
|
33778
|
+
endpoint: string;
|
|
33779
|
+
enabled?: boolean | undefined;
|
|
33780
|
+
headers?: Record<string, string> | undefined;
|
|
33781
|
+
}>>;
|
|
33782
|
+
}, "strip", z.ZodTypeAny, {
|
|
33783
|
+
enabled: boolean;
|
|
33784
|
+
otlp?: {
|
|
33785
|
+
http?: {
|
|
33786
|
+
enabled: boolean;
|
|
33787
|
+
port: number;
|
|
33788
|
+
host: string;
|
|
33789
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
33790
|
+
} | undefined;
|
|
33791
|
+
grpc?: {
|
|
33792
|
+
enabled: boolean;
|
|
33793
|
+
port: number;
|
|
33794
|
+
} | undefined;
|
|
33795
|
+
} | undefined;
|
|
33796
|
+
storage?: {
|
|
33797
|
+
type: "sqlite";
|
|
33798
|
+
retentionDays: number;
|
|
33799
|
+
} | undefined;
|
|
33800
|
+
forwarding?: {
|
|
33801
|
+
enabled: boolean;
|
|
33802
|
+
endpoint: string;
|
|
33803
|
+
headers?: Record<string, string> | undefined;
|
|
33804
|
+
} | undefined;
|
|
33805
|
+
}, {
|
|
33806
|
+
enabled?: boolean | undefined;
|
|
33807
|
+
otlp?: {
|
|
33808
|
+
http?: {
|
|
33809
|
+
enabled?: boolean | undefined;
|
|
33810
|
+
port?: number | undefined;
|
|
33811
|
+
host?: string | undefined;
|
|
33812
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
33813
|
+
} | undefined;
|
|
33814
|
+
grpc?: {
|
|
33815
|
+
enabled?: boolean | undefined;
|
|
33816
|
+
port?: number | undefined;
|
|
33817
|
+
} | undefined;
|
|
33818
|
+
} | undefined;
|
|
33819
|
+
storage?: {
|
|
33820
|
+
type?: "sqlite" | undefined;
|
|
33821
|
+
retentionDays?: number | undefined;
|
|
33822
|
+
} | undefined;
|
|
33823
|
+
forwarding?: {
|
|
33824
|
+
endpoint: string;
|
|
33825
|
+
enabled?: boolean | undefined;
|
|
33826
|
+
headers?: Record<string, string> | undefined;
|
|
33827
|
+
} | undefined;
|
|
33828
|
+
}>>;
|
|
33367
33829
|
} & {
|
|
33368
33830
|
evaluateOptions: z.ZodOptional<z.ZodObject<{
|
|
33369
33831
|
cache: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -36980,6 +37442,30 @@ export declare const UnifiedConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
36980
37442
|
}[] | undefined;
|
|
36981
37443
|
extensions?: string[] | null | undefined;
|
|
36982
37444
|
writeLatestResults?: boolean | undefined;
|
|
37445
|
+
tracing?: {
|
|
37446
|
+
enabled: boolean;
|
|
37447
|
+
otlp?: {
|
|
37448
|
+
http?: {
|
|
37449
|
+
enabled: boolean;
|
|
37450
|
+
port: number;
|
|
37451
|
+
host: string;
|
|
37452
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
37453
|
+
} | undefined;
|
|
37454
|
+
grpc?: {
|
|
37455
|
+
enabled: boolean;
|
|
37456
|
+
port: number;
|
|
37457
|
+
} | undefined;
|
|
37458
|
+
} | undefined;
|
|
37459
|
+
storage?: {
|
|
37460
|
+
type: "sqlite";
|
|
37461
|
+
retentionDays: number;
|
|
37462
|
+
} | undefined;
|
|
37463
|
+
forwarding?: {
|
|
37464
|
+
enabled: boolean;
|
|
37465
|
+
endpoint: string;
|
|
37466
|
+
headers?: Record<string, string> | undefined;
|
|
37467
|
+
} | undefined;
|
|
37468
|
+
} | undefined;
|
|
36983
37469
|
evaluateOptions?: {
|
|
36984
37470
|
cache?: boolean | undefined;
|
|
36985
37471
|
maxConcurrency?: number | undefined;
|
|
@@ -38503,6 +38989,30 @@ export declare const UnifiedConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
38503
38989
|
}[] | undefined;
|
|
38504
38990
|
extensions?: string[] | null | undefined;
|
|
38505
38991
|
writeLatestResults?: boolean | undefined;
|
|
38992
|
+
tracing?: {
|
|
38993
|
+
enabled?: boolean | undefined;
|
|
38994
|
+
otlp?: {
|
|
38995
|
+
http?: {
|
|
38996
|
+
enabled?: boolean | undefined;
|
|
38997
|
+
port?: number | undefined;
|
|
38998
|
+
host?: string | undefined;
|
|
38999
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
39000
|
+
} | undefined;
|
|
39001
|
+
grpc?: {
|
|
39002
|
+
enabled?: boolean | undefined;
|
|
39003
|
+
port?: number | undefined;
|
|
39004
|
+
} | undefined;
|
|
39005
|
+
} | undefined;
|
|
39006
|
+
storage?: {
|
|
39007
|
+
type?: "sqlite" | undefined;
|
|
39008
|
+
retentionDays?: number | undefined;
|
|
39009
|
+
} | undefined;
|
|
39010
|
+
forwarding?: {
|
|
39011
|
+
endpoint: string;
|
|
39012
|
+
enabled?: boolean | undefined;
|
|
39013
|
+
headers?: Record<string, string> | undefined;
|
|
39014
|
+
} | undefined;
|
|
39015
|
+
} | undefined;
|
|
38506
39016
|
evaluateOptions?: {
|
|
38507
39017
|
cache?: boolean | undefined;
|
|
38508
39018
|
maxConcurrency?: number | undefined;
|
|
@@ -39901,6 +40411,30 @@ export declare const UnifiedConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
39901
40411
|
}[] | undefined;
|
|
39902
40412
|
extensions?: string[] | null | undefined;
|
|
39903
40413
|
writeLatestResults?: boolean | undefined;
|
|
40414
|
+
tracing?: {
|
|
40415
|
+
enabled: boolean;
|
|
40416
|
+
otlp?: {
|
|
40417
|
+
http?: {
|
|
40418
|
+
enabled: boolean;
|
|
40419
|
+
port: number;
|
|
40420
|
+
host: string;
|
|
40421
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
40422
|
+
} | undefined;
|
|
40423
|
+
grpc?: {
|
|
40424
|
+
enabled: boolean;
|
|
40425
|
+
port: number;
|
|
40426
|
+
} | undefined;
|
|
40427
|
+
} | undefined;
|
|
40428
|
+
storage?: {
|
|
40429
|
+
type: "sqlite";
|
|
40430
|
+
retentionDays: number;
|
|
40431
|
+
} | undefined;
|
|
40432
|
+
forwarding?: {
|
|
40433
|
+
enabled: boolean;
|
|
40434
|
+
endpoint: string;
|
|
40435
|
+
headers?: Record<string, string> | undefined;
|
|
40436
|
+
} | undefined;
|
|
40437
|
+
} | undefined;
|
|
39904
40438
|
evaluateOptions?: {
|
|
39905
40439
|
cache?: boolean | undefined;
|
|
39906
40440
|
maxConcurrency?: number | undefined;
|
|
@@ -41424,6 +41958,30 @@ export declare const UnifiedConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
41424
41958
|
}[] | undefined;
|
|
41425
41959
|
extensions?: string[] | null | undefined;
|
|
41426
41960
|
writeLatestResults?: boolean | undefined;
|
|
41961
|
+
tracing?: {
|
|
41962
|
+
enabled?: boolean | undefined;
|
|
41963
|
+
otlp?: {
|
|
41964
|
+
http?: {
|
|
41965
|
+
enabled?: boolean | undefined;
|
|
41966
|
+
port?: number | undefined;
|
|
41967
|
+
host?: string | undefined;
|
|
41968
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
41969
|
+
} | undefined;
|
|
41970
|
+
grpc?: {
|
|
41971
|
+
enabled?: boolean | undefined;
|
|
41972
|
+
port?: number | undefined;
|
|
41973
|
+
} | undefined;
|
|
41974
|
+
} | undefined;
|
|
41975
|
+
storage?: {
|
|
41976
|
+
type?: "sqlite" | undefined;
|
|
41977
|
+
retentionDays?: number | undefined;
|
|
41978
|
+
} | undefined;
|
|
41979
|
+
forwarding?: {
|
|
41980
|
+
endpoint: string;
|
|
41981
|
+
enabled?: boolean | undefined;
|
|
41982
|
+
headers?: Record<string, string> | undefined;
|
|
41983
|
+
} | undefined;
|
|
41984
|
+
} | undefined;
|
|
41427
41985
|
evaluateOptions?: {
|
|
41428
41986
|
cache?: boolean | undefined;
|
|
41429
41987
|
maxConcurrency?: number | undefined;
|
|
@@ -42822,6 +43380,30 @@ export declare const UnifiedConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
42822
43380
|
}[] | undefined;
|
|
42823
43381
|
extensions?: string[] | null | undefined;
|
|
42824
43382
|
writeLatestResults?: boolean | undefined;
|
|
43383
|
+
tracing?: {
|
|
43384
|
+
enabled: boolean;
|
|
43385
|
+
otlp?: {
|
|
43386
|
+
http?: {
|
|
43387
|
+
enabled: boolean;
|
|
43388
|
+
port: number;
|
|
43389
|
+
host: string;
|
|
43390
|
+
acceptFormats: ("protobuf" | "json")[];
|
|
43391
|
+
} | undefined;
|
|
43392
|
+
grpc?: {
|
|
43393
|
+
enabled: boolean;
|
|
43394
|
+
port: number;
|
|
43395
|
+
} | undefined;
|
|
43396
|
+
} | undefined;
|
|
43397
|
+
storage?: {
|
|
43398
|
+
type: "sqlite";
|
|
43399
|
+
retentionDays: number;
|
|
43400
|
+
} | undefined;
|
|
43401
|
+
forwarding?: {
|
|
43402
|
+
enabled: boolean;
|
|
43403
|
+
endpoint: string;
|
|
43404
|
+
headers?: Record<string, string> | undefined;
|
|
43405
|
+
} | undefined;
|
|
43406
|
+
} | undefined;
|
|
42825
43407
|
evaluateOptions?: {
|
|
42826
43408
|
cache?: boolean | undefined;
|
|
42827
43409
|
maxConcurrency?: number | undefined;
|
|
@@ -44345,6 +44927,30 @@ export declare const UnifiedConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
44345
44927
|
}[] | undefined;
|
|
44346
44928
|
extensions?: string[] | null | undefined;
|
|
44347
44929
|
writeLatestResults?: boolean | undefined;
|
|
44930
|
+
tracing?: {
|
|
44931
|
+
enabled?: boolean | undefined;
|
|
44932
|
+
otlp?: {
|
|
44933
|
+
http?: {
|
|
44934
|
+
enabled?: boolean | undefined;
|
|
44935
|
+
port?: number | undefined;
|
|
44936
|
+
host?: string | undefined;
|
|
44937
|
+
acceptFormats?: ("protobuf" | "json")[] | undefined;
|
|
44938
|
+
} | undefined;
|
|
44939
|
+
grpc?: {
|
|
44940
|
+
enabled?: boolean | undefined;
|
|
44941
|
+
port?: number | undefined;
|
|
44942
|
+
} | undefined;
|
|
44943
|
+
} | undefined;
|
|
44944
|
+
storage?: {
|
|
44945
|
+
type?: "sqlite" | undefined;
|
|
44946
|
+
retentionDays?: number | undefined;
|
|
44947
|
+
} | undefined;
|
|
44948
|
+
forwarding?: {
|
|
44949
|
+
endpoint: string;
|
|
44950
|
+
enabled?: boolean | undefined;
|
|
44951
|
+
headers?: Record<string, string> | undefined;
|
|
44952
|
+
} | undefined;
|
|
44953
|
+
} | undefined;
|
|
44348
44954
|
evaluateOptions?: {
|
|
44349
44955
|
cache?: boolean | undefined;
|
|
44350
44956
|
maxConcurrency?: number | undefined;
|