@rvoh/psychic 2.3.3 → 2.3.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.
|
@@ -252,10 +252,10 @@ export interface CustomCookieMaxAgeOptions {
|
|
|
252
252
|
days?: number;
|
|
253
253
|
}
|
|
254
254
|
export interface PsychicSslCredentials {
|
|
255
|
-
key
|
|
256
|
-
cert
|
|
257
|
-
ca
|
|
258
|
-
rejectUnauthorized
|
|
255
|
+
key?: string | undefined;
|
|
256
|
+
cert?: string | undefined;
|
|
257
|
+
ca?: string[] | undefined;
|
|
258
|
+
rejectUnauthorized?: boolean | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface DefaultPsychicOpenapiOptions extends PsychicOpenapiBaseOptions {
|
|
261
261
|
outputFilepath?: string;
|