@signalapp/mock-server
Advanced tools
Comparing version 3.2.1 to 3.2.2
{ | ||
"name": "@signalapp/mock-server", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"description": "Mock Signal Server for writing tests", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -0,1 +1,2 @@ | ||
/// <reference types="node" /> | ||
import z from 'zod'; | ||
@@ -68,7 +69,2 @@ declare const SignedPreKeySchema: z.ZodObject<{ | ||
}, "strip", z.ZodTypeAny, { | ||
identityKey: string; | ||
preKeys: { | ||
keyId: number; | ||
publicKey: string; | ||
}[]; | ||
pqPreKeys?: { | ||
@@ -89,3 +85,2 @@ keyId: number; | ||
} | undefined; | ||
}, { | ||
identityKey: string; | ||
@@ -96,2 +91,3 @@ preKeys: { | ||
}[]; | ||
}, { | ||
pqPreKeys?: { | ||
@@ -112,2 +108,7 @@ keyId: number; | ||
} | undefined; | ||
identityKey: string; | ||
preKeys: { | ||
keyId: number; | ||
publicKey: string; | ||
}[]; | ||
}>; | ||
@@ -227,9 +228,9 @@ export type DeviceKeys = z.infer<typeof DeviceKeysSchema>; | ||
}, "strip", z.ZodTypeAny, { | ||
encryptedUsername?: Buffer | undefined; | ||
usernameHash: Buffer; | ||
zkProof: Buffer; | ||
encryptedUsername?: Buffer | undefined; | ||
}, { | ||
encryptedUsername?: string | undefined; | ||
usernameHash: string; | ||
zkProof: string; | ||
encryptedUsername?: string | undefined; | ||
}>; | ||
@@ -236,0 +237,0 @@ export type UsernameConfirmation = z.infer<typeof UsernameConfirmationSchema>; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3635511
67389