@bitwarden/sdk-internal 0.2.0-main.9 → 0.2.0-main.900
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 -0
- package/bitwarden_wasm_internal.d.ts +6364 -187
- package/bitwarden_wasm_internal.js +6 -1
- package/bitwarden_wasm_internal_bg.js +8513 -956
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +856 -35
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +6364 -187
- package/node/bitwarden_wasm_internal.js +8796 -1082
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +856 -35
- package/package.json +16 -5
|
@@ -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
|
+
AttachmentAdminClient, AttachmentsClient, AuthClient, AuthType, BiometricsStatus, CardLinkedIdType, CipherAdminClient, CipherRepromptType, CipherRiskClient, CipherType, CiphersClient, CollectionType, CollectionViewNodeItem, CollectionViewTree, CollectionsClient, CryptoCipherSuiteClient, CryptoClient, ExporterClient, FieldType, FileUploadType, FlagsClient, FlightRecorderClient, FoldersClient, GeneratorClient, IdentityLinkedIdType, ImporterClient, IncomingMessage, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, InviteLinkClient, IpcClient, IpcClientSubscription, IpcCommunicationBackend, LogLevel, LoginClient, LoginLinkedIdType, MemberDecryptionType, OrganizationUserStatusType, OrganizationUserType, OutgoingMessage, PasswordManagerClient, PinSettingsClient, PlatformClient, PolicyClient, PolicyType, ProductTierType, ProviderType, PureCrypto, RegistrationClient, RsaError, SdkRandomNumberClient, SecureNoteType, SendAccessClient, SendClient, SendType, ServerCommunicationConfigClient, SharedUnlockFollower, SharedUnlockLeader, StateBridgeClient, StateClient, TotpClient, UriMatchType, UserCryptoManagementClient, VaultClient, generate_ssh_key, import_ssh_key, init_sdk, ipcRegisterBiometricsHandlers, ipcRegisterDiscoverHandler, ipcRequestAuthenticateBiometrics, ipcRequestDiscover, ipcRequestGetBiometricsStatus, ipcRequestUnlockBiometrics, isAccessSendError, isAccountCryptographyInitializationError, isAcquireCookieError, isAlreadyRunningError, isBulkUpdateCollectionsCipherError, isCallError, isChannelError, isCipherAdminGetAttachmentDownloadUrlError, isCipherCreateAttachmentError, isCipherDeleteAttachmentError, isCipherError, isCipherGetAttachmentDownloadUrlError, isCipherRenewFileUploadUrlError, isCipherRiskError, isCipherUpgradeAttachmentError, isCollectionDecryptError, isCreateCipherAdminError, isCreateCipherError, isCreateFileSendError, isCreateFolderError, isCreateSendError, isCryptoClientError, isCryptoError, isDatabaseError, isDecryptError, isDecryptFileError, isDeleteAttachmentAdminError, isDeleteCipherAdminError, isDeleteCipherError, isDeleteSendError, isDeriveKeyConnectorError, isDeserializeError, isEditCipherAdminError, isEditCipherError, isEditFolderError, isEditSendError, isEncryptError, isEncryptFileError, isEncryptionSettingsError, isEnrollAdminPasswordResetError, isExportError, isFollowerStartError, isGenBytesError, isGenRangeError, isGetAssignedOrgCiphersAdminError, isGetCipherError, isGetFileDownloadDataError, isGetFolderError, isGetOrganizationCiphersAdminError, isGetSendError, isImportError, isKeyGenerationError, isKeyPairRegenerationError, isLeaderStartError, isMakeKeysError, isMasterPasswordError, isMigrateToKeyConnectorError, isMoveCipherError, isOrganizationInviteCryptoBundleError, isPasswordError, isPasswordLoginError, isPasswordPreloginError, isPasswordRulesError, isPinSettingsError, isReceiveError, isRegistrationError, isRemoveSendPasswordError, isRenewFileUploadUrlError, isRequestError, isRestoreCipherAdminError, isRestoreCipherError, isRotateCryptographyStateError, isRotateUserKeysError, isServerCommunicationConfigRepositoryError, isSshKeyExportError, isSshKeyImportError, isStateRegistryError, isStatefulCryptoError, isSubscribeError, isSyncError, isTestError, isTotpError, isTypedReceiveError, isUploadSendFileError, isUsernameError
|
|
9
|
+
} from "./bitwarden_wasm_internal_bg.js";
|