@bitwarden/sdk-internal 0.2.0-main.65 → 0.2.0-main.650
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/VERSION +1 -1
- package/bitwarden_wasm_internal.d.ts +4224 -258
- package/bitwarden_wasm_internal.js +6 -1
- package/bitwarden_wasm_internal_bg.js +6066 -1122
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +620 -29
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +4224 -258
- package/node/bitwarden_wasm_internal.js +6299 -1252
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +620 -29
- package/package.json +12 -2
|
@@ -1,4 +1,9 @@
|
|
|
1
|
+
/* @ts-self-types="./bitwarden_wasm_internal.d.ts" */
|
|
2
|
+
|
|
1
3
|
import * as wasm from "./bitwarden_wasm_internal_bg.wasm";
|
|
2
|
-
export * from "./bitwarden_wasm_internal_bg.js";
|
|
3
4
|
import { __wbg_set_wasm } from "./bitwarden_wasm_internal_bg.js";
|
|
4
5
|
__wbg_set_wasm(wasm);
|
|
6
|
+
|
|
7
|
+
export {
|
|
8
|
+
AttachmentsClient, AuthClient, CardLinkedIdType, CipherAdminClient, CipherRepromptType, CipherRiskClient, CipherType, CiphersClient, CollectionViewNodeItem, CollectionViewTree, CollectionsClient, CryptoClient, ExporterClient, FieldType, FoldersClient, GeneratorClient, IdentityLinkedIdType, IncomingMessage, IpcClient, IpcClientSubscription, IpcCommunicationBackend, LogLevel, LoginClient, LoginLinkedIdType, OutgoingMessage, PasswordManagerClient, PlatformClient, PureCrypto, RegistrationClient, RsaError, SecureNoteType, SendAccessClient, SendClient, ServerCommunicationConfigClient, StateClient, TotpClient, UriMatchType, UserCryptoManagementClient, VaultClient, generate_ssh_key, import_ssh_key, init_sdk, ipcRegisterDiscoverHandler, ipcRequestDiscover, isAccountCryptographyInitializationError, isAcquireCookieError, isAlreadyRunningError, isCallError, isChannelError, isCipherDeleteAttachmentError, isCipherError, isCipherRiskError, isCollectionDecryptError, isCreateCipherAdminError, isCreateCipherError, isCreateFolderError, isCreateSendError, isCryptoClientError, isCryptoError, isDatabaseError, isDecryptError, isDecryptFileError, isDeleteAttachmentAdminError, isDeleteCipherAdminError, isDeleteCipherError, isDeriveKeyConnectorError, isDeserializeError, isEditCipherAdminError, isEditCipherError, isEditFolderError, isEditSendError, isEncryptError, isEncryptFileError, isEncryptionSettingsError, isEnrollAdminPasswordResetError, isExportError, isGetCipherError, isGetFolderError, isGetOrganizationCiphersAdminError, isGetSendError, isKeyGenerationError, isMakeKeysError, isMasterPasswordError, isMigrateToKeyConnectorError, isPasswordError, isPasswordLoginError, isPasswordPreloginError, isReceiveError, isRegistrationError, isRequestError, isRestoreCipherAdminError, isRestoreCipherError, isRotateCryptographyStateError, isRotateUserKeysError, isServerCommunicationConfigRepositoryError, isSshKeyExportError, isSshKeyImportError, isStateRegistryError, isStatefulCryptoError, isSubscribeError, isSyncError, isTestError, isTotpError, isTypedReceiveError, isUsernameError
|
|
9
|
+
} from "./bitwarden_wasm_internal_bg.js";
|