@credo-ts/askar-to-drizzle-storage-migration 0.6.0-alpha-20251009163552 → 0.6.0-pr-2444-20251009192721
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/build/AskarToDrizzleStorageMigrator.d.mts +62 -0
- package/build/AskarToDrizzleStorageMigrator.d.mts.map +1 -0
- package/build/AskarToDrizzleStorageMigrator.d.ts +49 -36
- package/build/AskarToDrizzleStorageMigrator.d.ts.map +1 -0
- package/build/AskarToDrizzleStorageMigrator.js +168 -202
- package/build/AskarToDrizzleStorageMigrator.mjs +165 -0
- package/build/AskarToDrizzleStorageMigrator.mjs.map +1 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/assertClassBrand.js +9 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/assertClassBrand.mjs +8 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/checkPrivateRedeclaration.js +8 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/checkPrivateRedeclaration.mjs +7 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldGet2.js +9 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldGet2.mjs +9 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldInitSpec.js +9 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldInitSpec.mjs +9 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldSet2.js +9 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldSet2.mjs +9 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorate.js +11 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorate.mjs +10 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateMetadata.js +8 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateMetadata.mjs +7 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateParam.js +10 -0
- package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateParam.mjs +9 -0
- package/build/_virtual/rolldown_runtime.js +29 -0
- package/build/_virtual/rolldown_runtime.mjs +27 -0
- package/build/errors/AskarToDrizzleStorageMigrationError.js +11 -10
- package/build/errors/AskarToDrizzleStorageMigrationError.mjs +11 -0
- package/build/errors/AskarToDrizzleStorageMigrationError.mjs.map +1 -0
- package/build/index.d.mts +2 -0
- package/build/index.d.ts +2 -1
- package/build/index.js +3 -6
- package/build/index.mjs +3 -0
- package/build/node_modules/.pnpm/async-mutex@0.5.0/node_modules/async-mutex/index.js +303 -0
- package/build/node_modules/.pnpm/async-mutex@0.5.0/node_modules/async-mutex/index.mjs +302 -0
- package/build/node_modules/.pnpm/async-mutex@0.5.0/node_modules/async-mutex/index.mjs.map +1 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/ClassTransformer.js +76 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/MetadataStorage.js +157 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/TransformOperationExecutor.js +279 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/constants/default-options.constant.js +30 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/exclude.decorator.js +39 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/expose.decorator.js +39 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/index.js +43 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/transform-instance-to-instance.decorator.js +32 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/transform-instance-to-plain.decorator.js +32 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/transform-plain-to-instance.decorator.js +32 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/transform.decorator.js +32 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/type.decorator.js +35 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/enums/index.js +31 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/enums/transformation-type.enum.js +20 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/index.js +107 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/class-constructor.type.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/class-transformer-options.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/exclude-options.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/expose-options.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/transform-options.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/type-discriminator-descriptor.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/type-options.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/index.js +57 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/exclude-metadata.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/expose-metadata.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/transform-fn-params.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/transform-metadata.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/type-metadata.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/target-map.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/type-help-options.interface.js +14 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/storage.js +20 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/utils/get-global.util.js +27 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/utils/index.js +33 -0
- package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/utils/is-promise.util.js +18 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/container.js +58 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/ValidationOptions.js +19 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayContains.js +42 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayMaxSize.js +41 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayMinSize.js +41 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayNotContains.js +42 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayNotEmpty.js +40 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayUnique.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/Allow.js +35 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/Equals.js +39 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsDefined.js +40 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsEmpty.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsIn.js +39 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsLatLong.js +43 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsLatitude.js +40 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsLongitude.js +40 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsNotEmpty.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsNotIn.js +39 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsOptional.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/NotEquals.js +39 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/Validate.js +52 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/ValidateBy.js +35 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/ValidateIf.js +36 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/ValidateNested.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/ValidatePromise.js +35 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/date/MaxDate.js +39 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/date/MinDate.js +39 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/decorators.js +253 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/IsDivisibleBy.js +44 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/IsNegative.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/IsPositive.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/Max.js +39 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/Min.js +39 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/object/IsInstance.js +42 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/object/IsNotEmptyObject.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/Contains.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsAlpha.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsAlphanumeric.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsAscii.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBIC.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBase32.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBase58.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBase64.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBooleanString.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBtcAddress.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsByteLength.js +49 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsCreditCard.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsCurrency.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsDataURI.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsDateString.js +41 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsDecimal.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsEAN.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsEmail.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsEthereumAddress.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsFQDN.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsFirebasePushId.js +40 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsFullWidth.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHSL.js +47 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHalfWidth.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHash.js +48 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHexColor.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHexadecimal.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsIBAN.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsIP.js +47 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISBN.js +47 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISIN.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISO31661Alpha2.js +43 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISO31661Alpha3.js +43 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISO8601.js +48 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISRC.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISSN.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsIdentityCard.js +50 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsJSON.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsJWT.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsLocale.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsLowercase.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMacAddress.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMagnetURI.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMilitaryTime.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMimeType.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMobilePhone.js +62 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMongoId.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMultibyte.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsNumberString.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsOctal.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsPassportNumber.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsPhoneNumber.js +61 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsPort.js +43 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsPostalCode.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsRFC3339.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsRgbColor.js +48 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsSemVer.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsStrongPassword.js +74 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsSurrogatePair.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsTimeZone.js +47 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsUUID.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsUppercase.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsUrl.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsVariableWidth.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/Length.js +55 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/Matches.js +41 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/MaxLength.js +49 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/MinLength.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/NotContains.js +46 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/is-iso4217-currency-code.js +43 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/is-tax-id.js +54 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsArray.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsBoolean.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsDate.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsEnum.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsInt.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsNumber.js +47 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsObject.js +40 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsString.js +38 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/index.js +92 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/metadata/ConstraintMetadata.js +33 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/metadata/MetadataStorage.js +121 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/metadata/ValidationMetadata.js +45 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/register-decorator.js +57 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/utils/convert-to-array.util.js +22 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/utils/get-global.util.js +27 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/utils/index.js +37 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/utils/is-promise.util.js +18 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationArguments.js +14 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationError.js +42 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationExecutor.js +228 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationTypes.js +32 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationUtils.js +42 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/Validator.js +63 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidatorConstraintInterface.js +14 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidatorOptions.js +14 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation-schema/ValidationSchema.js +14 -0
- package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation-schema/ValidationSchemaToMetadataTransformer.js +46 -0
- package/build/node_modules/.pnpm/decode-uri-component@0.2.2/node_modules/decode-uri-component/index.js +70 -0
- package/build/node_modules/.pnpm/decode-uri-component@0.2.2/node_modules/decode-uri-component/index.mjs +68 -0
- package/build/node_modules/.pnpm/decode-uri-component@0.2.2/node_modules/decode-uri-component/index.mjs.map +1 -0
- package/build/node_modules/.pnpm/filter-obj@1.1.0/node_modules/filter-obj/index.js +24 -0
- package/build/node_modules/.pnpm/filter-obj@1.1.0/node_modules/filter-obj/index.mjs +22 -0
- package/build/node_modules/.pnpm/filter-obj@1.1.0/node_modules/filter-obj/index.mjs.map +1 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouType.js +396 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.PatternMatcher.js +179 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.PatternParser.js +164 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.complete.js +73 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.js +393 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.util.js +107 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeParser.js +332 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeState.js +132 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/ParseError.js +144 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/PhoneNumber.js +195 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/PhoneNumberMatcher.js +326 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/constants.js +31 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/LRUCache.js +109 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/Leniency.js +121 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/RegExpCache.js +56 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/isValidCandidate.js +61 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/isValidPreCandidate.js +26 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/matchPhoneNumberStringAgainstPhoneNumber.js +46 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/parsePreCandidate.js +21 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/utf-8.js +62 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/util.js +38 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findPhoneNumbersInText.js +60 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/format.js +204 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/formatIncompletePhoneNumber.js +35 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/getCountries.js +23 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/getCountryCallingCode.js +22 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/getExampleNumber.js +23 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/RFC3966.js +120 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/applyInternationalSeparatorStyle.js +20 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/checkNumberLength.js +41 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extension/createExtensionPattern.js +72 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extension/extractExtension.js +35 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractCountryCallingCode.js +81 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +52 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js +80 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractNationalNumber.js +57 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +59 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractPhoneContext.js +69 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/formatNationalNumberUsingFormat.js +30 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getCountryByCallingCode.js +36 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getCountryByNationalNumber.js +70 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getIddPrefix.js +36 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getNumberType.js +88 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getPossibleCountriesForNumber.js +40 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/isObject.js +19 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/isViablePhoneNumber.js +36 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/matchesEntirely.js +24 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/mergeArrays.js +60 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/parseDigits.js +113 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/stripIddPrefix.js +36 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/isPossible.js +63 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/isPossiblePhoneNumber.js +59 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/isValid.js +66 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/isValidPhoneNumber.js +59 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/legacy/findNumbers.js +29 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/legacy/searchNumbers.js +48 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/metadata.js +559 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/normalizeArguments.js +124 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parse.js +241 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parseIncompletePhoneNumber.js +91 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parsePhoneNumber.js +26 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parsePhoneNumberWithError.js +26 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parsePhoneNumberWithError_.js +54 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parsePhoneNumber_.js +64 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/searchPhoneNumbersInText.js +66 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/tools/semver-compare.js +31 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/validatePhoneNumberLength.js +74 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/core/index.js +63 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/max/index.js +89 -0
- package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/metadata.max.js +10466 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/datetime.js +1974 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/datetime.mjs +1974 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/datetime.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/duration.js +792 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/duration.mjs +793 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/duration.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/errors.js +63 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/errors.mjs +57 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/errors.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/conversions.js +176 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/conversions.mjs +167 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/conversions.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/diff.js +62 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/diff.mjs +63 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/diff.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/digits.js +77 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/digits.mjs +75 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/digits.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/english.js +197 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/english.mjs +186 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/english.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formats.js +177 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formats.mjs +156 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formats.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formatter.js +240 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formatter.mjs +241 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formatter.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/invalid.js +15 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/invalid.mjs +15 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/invalid.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/locale.js +379 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/locale.mjs +380 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/locale.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/regexParser.js +203 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/regexParser.mjs +199 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/regexParser.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/tokenParser.js +329 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/tokenParser.mjs +326 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/tokenParser.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/util.js +238 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/util.mjs +211 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/util.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/zoneUtil.js +24 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/zoneUtil.mjs +25 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/zoneUtil.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/info.js +188 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/info.mjs +189 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/info.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/interval.js +529 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/interval.mjs +530 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/interval.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/settings.js +158 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/settings.mjs +159 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/settings.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zone.js +93 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zone.mjs +94 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zone.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/IANAZone.js +203 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/IANAZone.mjs +204 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/IANAZone.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/fixedOffsetZone.js +134 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/fixedOffsetZone.mjs +135 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/fixedOffsetZone.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/invalidZone.js +49 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/invalidZone.mjs +50 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/invalidZone.mjs.map +1 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/systemZone.js +54 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/systemZone.mjs +55 -0
- package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/systemZone.mjs.map +1 -0
- package/build/node_modules/.pnpm/query-string@7.1.3/node_modules/query-string/index.js +299 -0
- package/build/node_modules/.pnpm/query-string@7.1.3/node_modules/query-string/index.mjs +297 -0
- package/build/node_modules/.pnpm/query-string@7.1.3/node_modules/query-string/index.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/index.js +1404 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/AsyncSubject.js +67 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/BehaviorSubject.js +64 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Notification.js +74 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/NotificationFactories.js +33 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Observable.js +115 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/ReplaySubject.js +86 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Scheduler.js +30 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Subject.js +193 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Subscriber.js +192 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Subscription.js +160 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/config.js +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/firstValueFrom.js +36 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/lastValueFrom.js +36 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/ConnectableObservable.js +96 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/bindCallback.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/bindCallbackInternals.js +93 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/bindNodeCallback.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/combineLatest.js +78 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/concat.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/connectable.js +48 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/defer.js +24 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/dom/animationFrames.js +47 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/empty.js +31 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/forkJoin.js +64 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/from.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/fromEvent.js +92 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/fromEventPattern.js +35 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/fromSubscribable.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/generate.js +143 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/iif.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/innerFrom.js +309 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/interval.js +25 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/merge.js +33 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/never.js +24 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/of.js +25 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/onErrorResumeNext.js +48 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/pairs.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/partition.js +24 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/race.js +45 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/range.js +40 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/throwError.js +30 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/timer.js +42 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/using.js +31 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/zip.js +88 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/OperatorSubscriber.js +82 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/audit.js +52 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/auditTime.js +27 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/buffer.js +42 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/bufferCount.js +98 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/bufferTime.js +105 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/bufferToggle.js +72 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/bufferWhen.js +45 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/catchError.js +41 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/combineAll.js +17 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/combineLatest.js +56 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/combineLatestAll.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/combineLatestWith.js +43 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concat.js +52 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concatAll.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concatMap.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concatMapTo.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concatWith.js +43 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/connect.js +35 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/count.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/debounce.js +52 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/debounceTime.js +61 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/defaultIfEmpty.js +31 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/delay.js +28 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/delayWhen.js +35 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/dematerialize.js +28 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/distinct.js +38 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilChanged.js +40 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilKeyChanged.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/elementAt.js +36 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/endWith.js +47 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/every.js +33 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/exhaust.js +17 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/exhaustAll.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/exhaustMap.js +49 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/expand.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/filter.js +27 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/finalize.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/find.js +39 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/findIndex.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/first.js +37 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/flatMap.js +17 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/groupBy.js +89 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/ignoreElements.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/isEmpty.js +30 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/joinAllInternals.js +30 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/last.js +37 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/map.js +27 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mapTo.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/materialize.js +34 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/max.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/merge.js +53 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeAll.js +23 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeInternals.js +67 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeMap.js +37 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeMapTo.js +29 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeScan.js +32 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeWith.js +43 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/min.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/multicast.js +30 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/observeOn.js +39 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/onErrorResumeNextWith.js +49 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/pairwise.js +31 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/partition.js +24 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/pluck.js +32 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/publish.js +28 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/publishBehavior.js +27 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/publishLast.js +27 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/publishReplay.js +28 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/race.js +45 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/raceWith.js +49 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/reduce.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/refCount.js +38 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/repeat.js +60 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/repeatWhen.js +62 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/retry.js +69 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/retryWhen.js +48 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/sample.js +41 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/sampleTime.js +25 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/scan.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/scanInternals.js +32 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/sequenceEqual.js +55 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/share.js +116 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/shareReplay.js +34 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/single.js +46 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/skip.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/skipLast.js +40 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/skipUntil.js +36 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/skipWhile.js +28 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/startWith.js +29 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/subscribeOn.js +25 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/switchAll.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/switchMap.js +45 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/switchMapTo.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/switchScan.js +32 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/take.js +34 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/takeLast.js +63 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/takeUntil.js +31 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/takeWhile.js +30 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/tap.js +54 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/throttle.js +62 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/throttleTime.js +28 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/throwIfEmpty.js +36 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/timeInterval.js +41 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/timeout.js +76 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/timeoutWith.js +40 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/timestamp.js +28 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/toArray.js +27 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/window.js +49 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/windowCount.js +71 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/windowTime.js +98 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/windowToggle.js +89 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/windowWhen.js +57 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/withLatestFrom.js +77 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/zip.js +47 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/zipAll.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/zipWith.js +43 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleArray.js +29 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleAsyncIterable.js +33 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleIterable.js +47 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleObservable.js +24 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/schedulePromise.js +24 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleReadableStreamLike.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduled.js +52 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/Action.js +45 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameAction.js +65 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameScheduler.js +61 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AsapAction.js +63 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AsapScheduler.js +57 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncAction.js +105 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncScheduler.js +63 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/QueueAction.js +61 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/QueueScheduler.js +41 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/VirtualTimeScheduler.js +114 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrame.js +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrameProvider.js +69 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/asap.js +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/async.js +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/dateTimestampProvider.js +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/immediateProvider.js +52 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/intervalProvider.js +50 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/performanceTimestampProvider.js +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/queue.js +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/timeoutProvider.js +50 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/symbol/iterator.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/symbol/observable.js +17 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/types.js +14 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/ArgumentOutOfRangeError.js +23 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/EmptyError.js +23 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/Immediate.js +41 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/NotFoundError.js +23 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/ObjectUnsubscribedError.js +23 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/SequenceError.js +23 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/UnsubscriptionError.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/args.js +33 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/argsArgArrayOrObject.js +42 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/argsOrArgArray.js +19 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/arrRemove.js +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/createErrorClass.js +25 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/createObject.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/errorContext.js +40 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/executeSchedule.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/identity.js +18 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isArrayLike.js +17 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isAsyncIterable.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isDate.js +18 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isFunction.js +18 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isInteropObservable.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isIterable.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isObservable.js +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isPromise.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isReadableStreamLike.js +182 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isScheduler.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/lift.js +33 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/mapOneOrManyArgs.js +47 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/noop.js +16 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/not.js +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/pipe.js +32 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/reportUnhandledError.js +26 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/throwUnobservableError.js +18 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/operators/index.js +921 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/NotificationFactories.mjs +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/NotificationFactories.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Observable.mjs +99 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Observable.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/ReplaySubject.mjs +58 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/ReplaySubject.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Scheduler.mjs +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Scheduler.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subject.mjs +149 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subject.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subscriber.mjs +156 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subscriber.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subscription.mjs +115 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subscription.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/config.mjs +12 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/config.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/firstValueFrom.mjs +25 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/firstValueFrom.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/concat.mjs +14 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/concat.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/empty.mjs +10 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/empty.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/from.mjs +11 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/from.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/innerFrom.mjs +139 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/innerFrom.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/interval.mjs +14 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/interval.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/merge.mjs +19 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/merge.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/of.mjs +13 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/of.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/timer.mjs +29 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/timer.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/OperatorSubscriber.mjs +54 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/OperatorSubscriber.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/catchError.mjs +29 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/catchError.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/concatAll.mjs +10 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/concatAll.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/defaultIfEmpty.mjs +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/defaultIfEmpty.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/delayWhen.mjs +20 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/delayWhen.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/filter.mjs +16 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/filter.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/first.mjs +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/first.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/ignoreElements.mjs +14 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/ignoreElements.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/map.mjs +16 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/map.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mapTo.mjs +12 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mapTo.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.mjs +12 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeInternals.mjs +55 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeInternals.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeMap.mjs +23 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeMap.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/observeOn.mjs +27 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/observeOn.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/subscribeOn.mjs +15 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/subscribeOn.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/take.mjs +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/take.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/takeUntil.mjs +18 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/takeUntil.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/tap.mjs +41 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/tap.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throttle.mjs +50 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throttle.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throttleTime.mjs +16 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throttleTime.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throwIfEmpty.mjs +24 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throwIfEmpty.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/timeout.mjs +59 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/timeout.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleArray.mjs +19 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleArray.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleAsyncIterable.mjs +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleAsyncIterable.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleIterable.mjs +34 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleIterable.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleObservable.mjs +12 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleObservable.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/schedulePromise.mjs +12 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/schedulePromise.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleReadableStreamLike.mjs +11 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleReadableStreamLike.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduled.mjs +30 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduled.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/Action.mjs +19 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/Action.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.mjs +76 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.mjs +36 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/async.mjs +10 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/async.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/dateTimestampProvider.mjs +11 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/dateTimestampProvider.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/intervalProvider.mjs +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/intervalProvider.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.mjs +21 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/symbol/iterator.mjs +10 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/symbol/iterator.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/symbol/observable.mjs +8 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/symbol/observable.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/EmptyError.mjs +14 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/EmptyError.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.mjs +14 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.mjs +17 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/args.mjs +16 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/args.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/arrRemove.mjs +11 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/arrRemove.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.mjs +15 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/errorContext.mjs +29 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/errorContext.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/executeSchedule.mjs +16 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/executeSchedule.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/identity.mjs +8 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/identity.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isArrayLike.mjs +8 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isArrayLike.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isAsyncIterable.mjs +10 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isAsyncIterable.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isDate.mjs +8 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isDate.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isFunction.mjs +8 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isFunction.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isInteropObservable.mjs +11 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isInteropObservable.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isIterable.mjs +11 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isIterable.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isPromise.mjs +10 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isPromise.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isReadableStreamLike.mjs +47 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isReadableStreamLike.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isScheduler.mjs +10 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isScheduler.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/lift.mjs +22 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/lift.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/noop.mjs +6 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/noop.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/pipe.mjs +16 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/pipe.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.mjs +15 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.mjs.map +1 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/throwUnobservableError.mjs +8 -0
- package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/throwUnobservableError.mjs.map +1 -0
- package/build/node_modules/.pnpm/split-on-first@1.1.0/node_modules/split-on-first/index.js +20 -0
- package/build/node_modules/.pnpm/split-on-first@1.1.0/node_modules/split-on-first/index.mjs +18 -0
- package/build/node_modules/.pnpm/split-on-first@1.1.0/node_modules/split-on-first/index.mjs.map +1 -0
- package/build/node_modules/.pnpm/strict-uri-encode@2.0.0/node_modules/strict-uri-encode/index.js +14 -0
- package/build/node_modules/.pnpm/strict-uri-encode@2.0.0/node_modules/strict-uri-encode/index.mjs +12 -0
- package/build/node_modules/.pnpm/strict-uri-encode@2.0.0/node_modules/strict-uri-encode/index.mjs.map +1 -0
- package/build/node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs +251 -0
- package/build/node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs.map +1 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/index.js +356 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/alpha.js +200 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/blacklist.js +26 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/contains.js +36 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/equals.js +26 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/escape.js +26 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAbaRouting.js +32 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAfter.js +28 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAlpha.js +35 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAlphanumeric.js +35 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAscii.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBIC.js +31 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBase32.js +34 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBase58.js +28 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBase64.js +36 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBefore.js +31 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBoolean.js +36 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBtcAddress.js +28 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isByteLength.js +44 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isCreditCard.js +53 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isCurrency.js +74 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isDataURI.js +38 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isDate.js +166 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isDecimal.js +47 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isDivisibleBy.js +28 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isEAN.js +83 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isEmail.js +115 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isEmpty.js +30 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isEthereumAddress.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isFQDN.js +54 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isFloat.js +31 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isFullWidth.js +25 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHSL.js +30 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHalfWidth.js +25 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHash.js +41 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHexColor.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHexadecimal.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIBAN.js +172 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIMEI.js +43 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIP.js +65 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIPRange.js +47 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISBN.js +44 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISIN.js +49 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO31661Alpha2.js +276 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO31661Alpha3.js +277 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO4217.js +207 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO6346.js +43 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO6391.js +213 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO8601.js +49 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISRC.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISSN.js +38 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIdentityCard.js +581 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIn.js +45 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isInt.js +34 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isJSON.js +48 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isJWT.js +32 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLatLong.js +38 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLength.js +46 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLicensePlate.js +72 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLocale.js +36 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLowercase.js +26 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLuhnNumber.js +41 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMACAddress.js +43 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMD5.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMagnetURI.js +28 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMailtoURI.js +160 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMimeType.js +29 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMobilePhone.js +209 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMongoId.js +28 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMultibyte.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isNumeric.js +30 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isOctal.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isPassportNumber.js +104 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isPort.js +29 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isPostalCode.js +106 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isRFC3339.js +39 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isRgbColor.js +32 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isSemVer.js +39 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isSlug.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isStrongPassword.js +87 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isSurrogatePair.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isTaxID.js +1041 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isTime.js +41 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isURL.js +159 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isUUID.js +36 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isUppercase.js +26 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isVAT.js +306 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isVariableWidth.js +30 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isWhitelisted.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/ltrim.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/matches.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/normalizeEmail.js +177 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/rtrim.js +32 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/stripLow.js +29 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/toBoolean.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/toDate.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/toFloat.js +26 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/toInt.js +26 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/trim.js +27 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/unescape.js +26 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/algorithms.js +276 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/assertString.js +33 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/includes.js +23 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/merge.js +23 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/multilineRegex.js +29 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/toString.js +31 -0
- package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/whitelist.js +26 -0
- package/build/packages/didcomm/src/BaseDidCommMessage.js +33 -0
- package/build/packages/didcomm/src/BaseDidCommMessage.mjs +28 -0
- package/build/packages/didcomm/src/BaseDidCommMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommApi.js +104 -0
- package/build/packages/didcomm/src/DidCommApi.mjs +98 -0
- package/build/packages/didcomm/src/DidCommApi.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommDispatcher.js +106 -0
- package/build/packages/didcomm/src/DidCommDispatcher.mjs +100 -0
- package/build/packages/didcomm/src/DidCommDispatcher.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommEnvelopeService.js +237 -0
- package/build/packages/didcomm/src/DidCommEnvelopeService.mjs +231 -0
- package/build/packages/didcomm/src/DidCommEnvelopeService.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommEvents.js +11 -0
- package/build/packages/didcomm/src/DidCommEvents.mjs +11 -0
- package/build/packages/didcomm/src/DidCommEvents.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommFeatureRegistry.js +53 -0
- package/build/packages/didcomm/src/DidCommFeatureRegistry.mjs +47 -0
- package/build/packages/didcomm/src/DidCommFeatureRegistry.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommMessage.js +39 -0
- package/build/packages/didcomm/src/DidCommMessage.mjs +37 -0
- package/build/packages/didcomm/src/DidCommMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommMessageHandlerRegistry.js +71 -0
- package/build/packages/didcomm/src/DidCommMessageHandlerRegistry.mjs +65 -0
- package/build/packages/didcomm/src/DidCommMessageHandlerRegistry.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommMessageReceiver.js +208 -0
- package/build/packages/didcomm/src/DidCommMessageReceiver.mjs +202 -0
- package/build/packages/didcomm/src/DidCommMessageReceiver.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommMessageSender.js +355 -0
- package/build/packages/didcomm/src/DidCommMessageSender.mjs +349 -0
- package/build/packages/didcomm/src/DidCommMessageSender.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommModule.js +20 -0
- package/build/packages/didcomm/src/DidCommModule.mjs +18 -0
- package/build/packages/didcomm/src/DidCommModuleConfig.js +59 -0
- package/build/packages/didcomm/src/DidCommModuleConfig.mjs +60 -0
- package/build/packages/didcomm/src/DidCommModuleConfig.mjs.map +1 -0
- package/build/packages/didcomm/src/DidCommTransportService.js +63 -0
- package/build/packages/didcomm/src/DidCommTransportService.mjs +57 -0
- package/build/packages/didcomm/src/DidCommTransportService.mjs.map +1 -0
- package/build/packages/didcomm/src/constants.js +6 -0
- package/build/packages/didcomm/src/constants.mjs +6 -0
- package/build/packages/didcomm/src/constants.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/ack/AckDecorator.js +30 -0
- package/build/packages/didcomm/src/decorators/ack/AckDecorator.mjs +28 -0
- package/build/packages/didcomm/src/decorators/ack/AckDecorator.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/ack/AckDecoratorExtension.js +36 -0
- package/build/packages/didcomm/src/decorators/ack/AckDecoratorExtension.mjs +34 -0
- package/build/packages/didcomm/src/decorators/ack/AckDecoratorExtension.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/attachment/AttachmentExtension.js +33 -0
- package/build/packages/didcomm/src/decorators/attachment/AttachmentExtension.mjs +31 -0
- package/build/packages/didcomm/src/decorators/attachment/AttachmentExtension.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/attachment/DidCommAttachment.js +111 -0
- package/build/packages/didcomm/src/decorators/attachment/DidCommAttachment.mjs +107 -0
- package/build/packages/didcomm/src/decorators/attachment/DidCommAttachment.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/l10n/L10nDecorator.js +13 -0
- package/build/packages/didcomm/src/decorators/l10n/L10nDecorator.mjs +13 -0
- package/build/packages/didcomm/src/decorators/l10n/L10nDecorator.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/l10n/L10nDecoratorExtension.js +33 -0
- package/build/packages/didcomm/src/decorators/l10n/L10nDecoratorExtension.mjs +31 -0
- package/build/packages/didcomm/src/decorators/l10n/L10nDecoratorExtension.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/service/ServiceDecorator.js +54 -0
- package/build/packages/didcomm/src/decorators/service/ServiceDecorator.mjs +52 -0
- package/build/packages/didcomm/src/decorators/service/ServiceDecorator.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/service/ServiceDecoratorExtension.js +29 -0
- package/build/packages/didcomm/src/decorators/service/ServiceDecoratorExtension.mjs +27 -0
- package/build/packages/didcomm/src/decorators/service/ServiceDecoratorExtension.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/signature/SignatureDecorator.js +49 -0
- package/build/packages/didcomm/src/decorators/signature/SignatureDecorator.mjs +47 -0
- package/build/packages/didcomm/src/decorators/signature/SignatureDecorator.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/signature/SignatureDecoratorUtils.js +60 -0
- package/build/packages/didcomm/src/decorators/signature/SignatureDecoratorUtils.mjs +58 -0
- package/build/packages/didcomm/src/decorators/signature/SignatureDecoratorUtils.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/thread/ThreadDecorator.js +48 -0
- package/build/packages/didcomm/src/decorators/thread/ThreadDecorator.mjs +46 -0
- package/build/packages/didcomm/src/decorators/thread/ThreadDecorator.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/thread/ThreadDecoratorExtension.js +33 -0
- package/build/packages/didcomm/src/decorators/thread/ThreadDecoratorExtension.mjs +31 -0
- package/build/packages/didcomm/src/decorators/thread/ThreadDecoratorExtension.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/timing/TimingDecorator.js +68 -0
- package/build/packages/didcomm/src/decorators/timing/TimingDecorator.mjs +66 -0
- package/build/packages/didcomm/src/decorators/timing/TimingDecorator.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/timing/TimingDecoratorExtension.js +30 -0
- package/build/packages/didcomm/src/decorators/timing/TimingDecoratorExtension.mjs +28 -0
- package/build/packages/didcomm/src/decorators/timing/TimingDecoratorExtension.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/transport/TransportDecorator.js +49 -0
- package/build/packages/didcomm/src/decorators/transport/TransportDecorator.mjs +46 -0
- package/build/packages/didcomm/src/decorators/transport/TransportDecorator.mjs.map +1 -0
- package/build/packages/didcomm/src/decorators/transport/TransportDecoratorExtension.js +43 -0
- package/build/packages/didcomm/src/decorators/transport/TransportDecoratorExtension.mjs +41 -0
- package/build/packages/didcomm/src/decorators/transport/TransportDecoratorExtension.mjs.map +1 -0
- package/build/packages/didcomm/src/errors/MessageSendingError.js +14 -0
- package/build/packages/didcomm/src/errors/MessageSendingError.mjs +13 -0
- package/build/packages/didcomm/src/errors/MessageSendingError.mjs.map +1 -0
- package/build/packages/didcomm/src/errors/index.js +3 -0
- package/build/packages/didcomm/src/errors/index.mjs +3 -0
- package/build/packages/didcomm/src/errors/problem-reports/DidCommProblemReportError.js +19 -0
- package/build/packages/didcomm/src/errors/problem-reports/DidCommProblemReportError.mjs +18 -0
- package/build/packages/didcomm/src/errors/problem-reports/DidCommProblemReportError.mjs.map +1 -0
- package/build/packages/didcomm/src/errors/problem-reports/index.js +1 -0
- package/build/packages/didcomm/src/errors/problem-reports/index.mjs +1 -0
- package/build/packages/didcomm/src/getDidCommOutboundMessageContext.js +175 -0
- package/build/packages/didcomm/src/getDidCommOutboundMessageContext.mjs +174 -0
- package/build/packages/didcomm/src/getDidCommOutboundMessageContext.mjs.map +1 -0
- package/build/packages/didcomm/src/handlers/DidCommMessageHandlerMiddleware.js +23 -0
- package/build/packages/didcomm/src/handlers/DidCommMessageHandlerMiddleware.mjs +23 -0
- package/build/packages/didcomm/src/handlers/DidCommMessageHandlerMiddleware.mjs.map +1 -0
- package/build/packages/didcomm/src/index.js +188 -0
- package/build/packages/didcomm/src/index.mjs +188 -0
- package/build/packages/didcomm/src/messages/common/DidCommAckMessage.js +43 -0
- package/build/packages/didcomm/src/messages/common/DidCommAckMessage.mjs +41 -0
- package/build/packages/didcomm/src/messages/common/DidCommAckMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/messages/common/index.js +1 -0
- package/build/packages/didcomm/src/messages/common/index.mjs +1 -0
- package/build/packages/didcomm/src/messages/index.js +4 -0
- package/build/packages/didcomm/src/messages/index.mjs +4 -0
- package/build/packages/didcomm/src/messages/problem-reports/DidCommProblemReportMessage.js +109 -0
- package/build/packages/didcomm/src/messages/problem-reports/DidCommProblemReportMessage.mjs +104 -0
- package/build/packages/didcomm/src/messages/problem-reports/DidCommProblemReportMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/messages/problem-reports/index.js +1 -0
- package/build/packages/didcomm/src/messages/problem-reports/index.mjs +1 -0
- package/build/packages/didcomm/src/models/DidCommInboundMessageContext.js +45 -0
- package/build/packages/didcomm/src/models/DidCommInboundMessageContext.mjs +44 -0
- package/build/packages/didcomm/src/models/DidCommInboundMessageContext.mjs.map +1 -0
- package/build/packages/didcomm/src/models/DidCommOutboundMessageContext.js +44 -0
- package/build/packages/didcomm/src/models/DidCommOutboundMessageContext.mjs +43 -0
- package/build/packages/didcomm/src/models/DidCommOutboundMessageContext.mjs.map +1 -0
- package/build/packages/didcomm/src/models/DidCommOutboundMessageSendStatus.js +12 -0
- package/build/packages/didcomm/src/models/DidCommOutboundMessageSendStatus.mjs +12 -0
- package/build/packages/didcomm/src/models/DidCommOutboundMessageSendStatus.mjs.map +1 -0
- package/build/packages/didcomm/src/models/features/DidCommFeature.js +49 -0
- package/build/packages/didcomm/src/models/features/DidCommFeature.mjs +46 -0
- package/build/packages/didcomm/src/models/features/DidCommFeature.mjs.map +1 -0
- package/build/packages/didcomm/src/models/features/DidCommFeatureQuery.js +26 -0
- package/build/packages/didcomm/src/models/features/DidCommFeatureQuery.mjs +24 -0
- package/build/packages/didcomm/src/models/features/DidCommFeatureQuery.mjs.map +1 -0
- package/build/packages/didcomm/src/models/features/DidCommGoalCode.js +15 -0
- package/build/packages/didcomm/src/models/features/DidCommGoalCode.mjs +16 -0
- package/build/packages/didcomm/src/models/features/DidCommGoalCode.mjs.map +1 -0
- package/build/packages/didcomm/src/models/features/DidCommGovernanceFramework.js +15 -0
- package/build/packages/didcomm/src/models/features/DidCommGovernanceFramework.mjs +16 -0
- package/build/packages/didcomm/src/models/features/DidCommGovernanceFramework.mjs.map +1 -0
- package/build/packages/didcomm/src/models/features/DidCommProtocol.js +26 -0
- package/build/packages/didcomm/src/models/features/DidCommProtocol.mjs +25 -0
- package/build/packages/didcomm/src/models/features/DidCommProtocol.mjs.map +1 -0
- package/build/packages/didcomm/src/models/features/index.js +5 -0
- package/build/packages/didcomm/src/models/features/index.mjs +5 -0
- package/build/packages/didcomm/src/models/index.js +10 -0
- package/build/packages/didcomm/src/models/index.mjs +10 -0
- package/build/packages/didcomm/src/models/problem-reports/DidCommProblemReportReason.js +9 -0
- package/build/packages/didcomm/src/models/problem-reports/DidCommProblemReportReason.mjs +9 -0
- package/build/packages/didcomm/src/models/problem-reports/DidCommProblemReportReason.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageEvents.js +9 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageEvents.mjs +9 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageEvents.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageRole.js +10 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageRole.mjs +10 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageRole.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesApi.js +98 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesApi.mjs +92 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesApi.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesModule.js +7 -0
- package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesModule.mjs +7 -0
- package/build/packages/didcomm/src/modules/basic-messages/handlers/BasicMessageHandler.js +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/handlers/BasicMessageHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/handlers/index.js +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/handlers/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/index.js +11 -0
- package/build/packages/didcomm/src/modules/basic-messages/index.mjs +11 -0
- package/build/packages/didcomm/src/modules/basic-messages/messages/DidCommBasicMessage.js +47 -0
- package/build/packages/didcomm/src/modules/basic-messages/messages/DidCommBasicMessage.mjs +45 -0
- package/build/packages/didcomm/src/modules/basic-messages/messages/DidCommBasicMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/messages/index.js +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/messages/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRecord.js +35 -0
- package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRecord.mjs +34 -0
- package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRepository.js +28 -0
- package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRepository.mjs +22 -0
- package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRepository.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/repository/index.js +2 -0
- package/build/packages/didcomm/src/modules/basic-messages/repository/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/basic-messages/services/DidCommBasicMessageService.js +89 -0
- package/build/packages/didcomm/src/modules/basic-messages/services/DidCommBasicMessageService.mjs +83 -0
- package/build/packages/didcomm/src/modules/basic-messages/services/DidCommBasicMessageService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/services/index.js +1 -0
- package/build/packages/didcomm/src/modules/basic-messages/services/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionEvents.js +10 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionEvents.mjs +10 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionEvents.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionsApi.js +362 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionsApi.mjs +356 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionsApi.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModule.js +17 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModule.mjs +15 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModuleConfig.js +49 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModuleConfig.mjs +48 -0
- package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModuleConfig.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/DidCommTrustPingEvents.js +10 -0
- package/build/packages/didcomm/src/modules/connections/DidCommTrustPingEvents.mjs +10 -0
- package/build/packages/didcomm/src/modules/connections/DidCommTrustPingEvents.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/DidExchangeProtocol.js +381 -0
- package/build/packages/didcomm/src/modules/connections/DidExchangeProtocol.mjs +375 -0
- package/build/packages/didcomm/src/modules/connections/DidExchangeProtocol.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/DidExchangeStateMachine.js +73 -0
- package/build/packages/didcomm/src/modules/connections/DidExchangeStateMachine.mjs +72 -0
- package/build/packages/didcomm/src/modules/connections/DidExchangeStateMachine.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportError.js +19 -0
- package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportError.mjs +20 -0
- package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportError.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportReason.js +17 -0
- package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportReason.mjs +17 -0
- package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportReason.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportError.js +19 -0
- package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportError.mjs +20 -0
- package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportError.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportReason.js +18 -0
- package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportReason.mjs +18 -0
- package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportReason.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/errors/index.js +4 -0
- package/build/packages/didcomm/src/modules/connections/errors/index.mjs +4 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommAckMessageHandler.js +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommAckMessageHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionProblemReportHandler.js +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionProblemReportHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionRequestHandler.js +7 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionRequestHandler.mjs +5 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionResponseHandler.js +7 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionResponseHandler.mjs +5 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeCompleteHandler.js +5 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeCompleteHandler.mjs +3 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeRequestHandler.js +7 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeRequestHandler.mjs +5 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeResponseHandler.js +7 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeResponseHandler.mjs +5 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateAckHandler.js +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateAckHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateHandler.js +4 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateHandler.mjs +2 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateProblemReportHandler.js +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateProblemReportHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommHangupHandler.js +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommHangupHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommTrustPingMessageHandler.js +5 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommTrustPingMessageHandler.mjs +3 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommTrustPingResponseMessageHandler.js +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/DidCommTrustPingResponseMessageHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/connections/handlers/index.js +13 -0
- package/build/packages/didcomm/src/modules/connections/handlers/index.mjs +13 -0
- package/build/packages/didcomm/src/modules/connections/index.js +51 -0
- package/build/packages/didcomm/src/modules/connections/index.mjs +51 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionInvitationMessage.js +116 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionInvitationMessage.mjs +114 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionInvitationMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionProblemReportMessage.js +22 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionProblemReportMessage.mjs +23 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionProblemReportMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionRequestMessage.js +56 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionRequestMessage.mjs +54 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionRequestMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionResponseMessage.js +46 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionResponseMessage.mjs +44 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionResponseMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeCompleteMessage.js +27 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeCompleteMessage.mjs +28 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeCompleteMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeProblemReportMessage.js +21 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeProblemReportMessage.mjs +22 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeProblemReportMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeRequestMessage.js +59 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeRequestMessage.mjs +57 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeRequestMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeResponseMessage.js +53 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeResponseMessage.mjs +51 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeResponseMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateAckMessage.js +18 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateAckMessage.mjs +19 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateAckMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateMessage.js +40 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateMessage.mjs +38 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateProblemReportMessage.js +21 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateProblemReportMessage.mjs +22 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateProblemReportMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommHangupMessage.js +28 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommHangupMessage.mjs +29 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommHangupMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingMessage.js +54 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingMessage.mjs +52 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingResponseMessage.js +45 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingResponseMessage.mjs +44 -0
- package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingResponseMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/messages/index.js +14 -0
- package/build/packages/didcomm/src/modules/connections/messages/index.mjs +14 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommConnection.js +35 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommConnection.mjs +33 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommConnection.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionState.js +33 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionState.mjs +33 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionState.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionType.js +9 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionType.mjs +9 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionType.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeRole.js +10 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeRole.mjs +10 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeRole.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeState.js +22 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeState.mjs +22 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeState.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommHandshakeProtocol.js +14 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommHandshakeProtocol.mjs +14 -0
- package/build/packages/didcomm/src/modules/connections/models/DidCommHandshakeProtocol.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/DidDoc.js +86 -0
- package/build/packages/didcomm/src/modules/connections/models/did/DidDoc.mjs +83 -0
- package/build/packages/didcomm/src/modules/connections/models/did/DidDoc.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/Authentication.js +6 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/Authentication.mjs +6 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/Authentication.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/EmbeddedAuthentication.js +25 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/EmbeddedAuthentication.mjs +24 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/EmbeddedAuthentication.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/ReferencedAuthentication.js +24 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/ReferencedAuthentication.mjs +22 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/ReferencedAuthentication.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/index.js +43 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/index.mjs +40 -0
- package/build/packages/didcomm/src/modules/connections/models/did/authentication/index.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/index.js +10 -0
- package/build/packages/didcomm/src/modules/connections/models/did/index.mjs +10 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/Ed25119Sig2018.js +29 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/Ed25119Sig2018.mjs +27 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/Ed25119Sig2018.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.js +29 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.mjs +27 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/PublicKey.js +28 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/PublicKey.mjs +27 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/PublicKey.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/RsaSig2018.js +29 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/RsaSig2018.mjs +27 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/RsaSig2018.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/index.js +34 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/index.mjs +32 -0
- package/build/packages/didcomm/src/modules/connections/models/did/publicKey/index.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/models/index.js +17 -0
- package/build/packages/didcomm/src/modules/connections/models/index.mjs +17 -0
- package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionMetadataTypes.js +10 -0
- package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionMetadataTypes.mjs +10 -0
- package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionMetadataTypes.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRecord.js +91 -0
- package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRecord.mjs +89 -0
- package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRepository.js +54 -0
- package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRepository.mjs +48 -0
- package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRepository.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/repository/index.js +2 -0
- package/build/packages/didcomm/src/modules/connections/repository/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/connections/services/DidCommConnectionService.js +587 -0
- package/build/packages/didcomm/src/modules/connections/services/DidCommConnectionService.mjs +582 -0
- package/build/packages/didcomm/src/modules/connections/services/DidCommConnectionService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/services/DidCommDidRotateService.js +208 -0
- package/build/packages/didcomm/src/modules/connections/services/DidCommDidRotateService.mjs +202 -0
- package/build/packages/didcomm/src/modules/connections/services/DidCommDidRotateService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/services/DidCommTrustPingService.js +51 -0
- package/build/packages/didcomm/src/modules/connections/services/DidCommTrustPingService.mjs +45 -0
- package/build/packages/didcomm/src/modules/connections/services/DidCommTrustPingService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/services/helpers.js +129 -0
- package/build/packages/didcomm/src/modules/connections/services/helpers.mjs +124 -0
- package/build/packages/didcomm/src/modules/connections/services/helpers.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/connections/services/index.js +3 -0
- package/build/packages/didcomm/src/modules/connections/services/index.mjs +3 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialEvents.js +10 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialEvents.mjs +10 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialEvents.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsApi.js +444 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsApi.mjs +438 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsApi.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModule.js +9 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModule.mjs +9 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModuleConfig.js +20 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModuleConfig.mjs +21 -0
- package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModuleConfig.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.js +107 -0
- package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.mjs +101 -0
- package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/index.js +1 -0
- package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/credentials/formats/index.js +5 -0
- package/build/packages/didcomm/src/modules/credentials/formats/index.mjs +5 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetail.js +32 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetail.mjs +30 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetail.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetailOptions.js +52 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetailOptions.mjs +50 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetailOptions.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialFormatService.js +6 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialFormatService.mjs +4 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/index.js +3 -0
- package/build/packages/didcomm/src/modules/credentials/formats/jsonld/index.mjs +3 -0
- package/build/packages/didcomm/src/modules/credentials/index.js +27 -0
- package/build/packages/didcomm/src/modules/credentials/index.mjs +27 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialAutoAcceptType.js +17 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialAutoAcceptType.mjs +17 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialAutoAcceptType.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialFormatSpec.js +28 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialFormatSpec.mjs +25 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialFormatSpec.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialPreviewAttribute.js +35 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialPreviewAttribute.mjs +32 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialPreviewAttribute.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialState.js +24 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialState.mjs +24 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialState.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommRevocationNotification.js +18 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommRevocationNotification.mjs +17 -0
- package/build/packages/didcomm/src/modules/credentials/models/DidCommRevocationNotification.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/models/index.js +5 -0
- package/build/packages/didcomm/src/modules/credentials/models/index.mjs +5 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/DidCommBaseCredentialProtocol.js +6 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/DidCommBaseCredentialProtocol.mjs +4 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/index.js +12 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/index.mjs +12 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/DidCommRevocationNotificationV1Handler.js +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/DidCommRevocationNotificationV1Handler.mjs +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/DidCommRevocationNotificationV2Handler.js +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/DidCommRevocationNotificationV2Handler.mjs +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/index.js +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/index.js +3 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/index.mjs +3 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV1Message.js +39 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV1Message.mjs +37 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV1Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV2Message.js +45 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV2Message.mjs +43 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/index.js +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/DidCommRevocationNotificationService.js +120 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/DidCommRevocationNotificationService.mjs +114 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/DidCommRevocationNotificationService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/index.js +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.js +14 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.mjs +10 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/DidCommCredentialFormatCoordinator.js +5 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/DidCommCredentialFormatCoordinator.mjs +3 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/DidCommCredentialV2Protocol.js +15 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/DidCommCredentialV2Protocol.mjs +13 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/errors/DidCommCredentialV2ProblemReportError.js +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/errors/DidCommCredentialV2ProblemReportError.mjs +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/errors/index.js +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/errors/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommCredentialV2AckHandler.js +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommCredentialV2AckHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommCredentialV2ProblemReportHandler.js +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommCredentialV2ProblemReportHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommIssueCredentialV2Handler.js +5 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommIssueCredentialV2Handler.mjs +3 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommOfferCredentialV2Handler.js +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommOfferCredentialV2Handler.mjs +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommProposeCredentialV2Handler.js +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommProposeCredentialV2Handler.mjs +2 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommRequestCredentialV2Handler.js +5 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommRequestCredentialV2Handler.mjs +3 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/index.js +6 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/index.mjs +6 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/index.js +10 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/index.mjs +10 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2AckMessage.js +21 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2AckMessage.mjs +22 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2AckMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2Preview.js +61 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2Preview.mjs +58 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2Preview.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2ProblemReportMessage.js +20 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2ProblemReportMessage.mjs +21 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2ProblemReportMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommIssueCredentialV2Message.js +67 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommIssueCredentialV2Message.mjs +65 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommIssueCredentialV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommOfferCredentialV2Message.js +84 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommOfferCredentialV2Message.mjs +82 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommOfferCredentialV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommProposeCredentialV2Message.js +79 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommProposeCredentialV2Message.mjs +77 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommProposeCredentialV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommRequestCredentialV2Message.js +68 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommRequestCredentialV2Message.mjs +66 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommRequestCredentialV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/index.js +7 -0
- package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/index.mjs +7 -0
- package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRecord.js +67 -0
- package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRecord.mjs +65 -0
- package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRepository.js +28 -0
- package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRepository.mjs +22 -0
- package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRepository.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/credentials/repository/index.js +2 -0
- package/build/packages/didcomm/src/modules/credentials/repository/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesApi.js +117 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesApi.mjs +117 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesApi.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesEvents.js +10 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesEvents.mjs +10 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesEvents.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModule.js +6 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModule.mjs +6 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModuleConfig.js +14 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModuleConfig.mjs +14 -0
- package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModuleConfig.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/index.js +10 -0
- package/build/packages/didcomm/src/modules/discover-features/index.mjs +10 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/index.js +8 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/index.mjs +8 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/DidCommDiscoverFeaturesV1Service.js +111 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/DidCommDiscoverFeaturesV1Service.mjs +105 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/DidCommDiscoverFeaturesV1Service.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesDiscloseMessageHandler.js +16 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesDiscloseMessageHandler.mjs +17 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesDiscloseMessageHandler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesQueryMessageHandler.js +23 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesQueryMessageHandler.mjs +24 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesQueryMessageHandler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/index.js +2 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/index.js +4 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/index.mjs +4 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesDiscloseMessage.js +51 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesDiscloseMessage.mjs +48 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesDiscloseMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesQueryMessage.js +31 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesQueryMessage.mjs +30 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesQueryMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/index.js +2 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/DidCommDiscoverFeaturesV2Service.js +90 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/DidCommDiscoverFeaturesV2Service.mjs +84 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/DidCommDiscoverFeaturesV2Service.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesDisclosuresMessageHandler.js +16 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesDisclosuresMessageHandler.mjs +17 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesDisclosuresMessageHandler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesQueriesMessageHandler.js +23 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesQueriesMessageHandler.mjs +24 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesQueriesMessageHandler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/index.js +2 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/index.js +4 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/index.mjs +4 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesDisclosuresMessage.js +34 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesDisclosuresMessage.mjs +32 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesDisclosuresMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesQueriesMessage.js +34 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesQueriesMessage.mjs +32 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesQueriesMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/index.js +2 -0
- package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/discover-features/services/DidCommDiscoverFeaturesService.js +13 -0
- package/build/packages/didcomm/src/modules/discover-features/services/DidCommDiscoverFeaturesService.mjs +13 -0
- package/build/packages/didcomm/src/modules/discover-features/services/DidCommDiscoverFeaturesService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/index.js +146 -0
- package/build/packages/didcomm/src/modules/index.mjs +146 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupApi.js +183 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupApi.mjs +182 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupApi.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupEvents.js +11 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupEvents.mjs +11 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupEvents.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModule.js +5 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModule.mjs +5 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModuleConfig.js +18 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModuleConfig.mjs +18 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModuleConfig.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupSession.js +10 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupSession.mjs +10 -0
- package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupSession.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/index.js +17 -0
- package/build/packages/didcomm/src/modules/message-pickup/index.mjs +17 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/DidCommBaseMessagePickupProtocol.js +10 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/DidCommBaseMessagePickupProtocol.mjs +10 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/DidCommBaseMessagePickupProtocol.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/index.js +12 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/index.mjs +12 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/DidCommMessagePickupV1Protocol.js +116 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/DidCommMessagePickupV1Protocol.mjs +110 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/DidCommMessagePickupV1Protocol.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchHandler.js +23 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchHandler.mjs +24 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchHandler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchPickupHandler.js +17 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchPickupHandler.mjs +18 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchPickupHandler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/index.js +2 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/index.js +4 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/index.mjs +4 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchMessage.js +55 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchMessage.mjs +51 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchPickupMessage.js +42 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchPickupMessage.mjs +40 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchPickupMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/index.js +2 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/DidCommMessagePickupV2Protocol.js +215 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/DidCommMessagePickupV2Protocol.mjs +209 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/DidCommMessagePickupV2Protocol.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommDeliveryRequestV2Handler.js +17 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommDeliveryRequestV2Handler.mjs +18 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommDeliveryRequestV2Handler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommLiveDeliveryChangeV2Handler.js +17 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommLiveDeliveryChangeV2Handler.mjs +18 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommLiveDeliveryChangeV2Handler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessageDeliveryV2Handler.js +22 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessageDeliveryV2Handler.mjs +23 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessageDeliveryV2Handler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessagesReceivedV2Handler.js +17 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessagesReceivedV2Handler.mjs +18 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessagesReceivedV2Handler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusRequestV2Handler.js +17 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusRequestV2Handler.mjs +18 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusRequestV2Handler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusV2Handler.js +23 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusV2Handler.mjs +24 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusV2Handler.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/index.js +6 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/index.mjs +6 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/index.js +8 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/index.mjs +8 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommDeliveryRequestV2Message.js +37 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommDeliveryRequestV2Message.mjs +35 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommDeliveryRequestV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommLiveDeliveryChangeV2Message.js +34 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommLiveDeliveryChangeV2Message.mjs +32 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommLiveDeliveryChangeV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessageDeliveryV2Message.js +37 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessageDeliveryV2Message.mjs +35 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessageDeliveryV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessagesReceivedV2Message.js +34 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessagesReceivedV2Message.mjs +32 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessagesReceivedV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusRequestV2Message.js +33 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusRequestV2Message.mjs +31 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusRequestV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusV2Message.js +81 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusV2Message.mjs +79 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/index.js +6 -0
- package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/index.mjs +6 -0
- package/build/packages/didcomm/src/modules/message-pickup/services/DidCommMessagePickupSessionService.js +68 -0
- package/build/packages/didcomm/src/modules/message-pickup/services/DidCommMessagePickupSessionService.mjs +61 -0
- package/build/packages/didcomm/src/modules/message-pickup/services/DidCommMessagePickupSessionService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/services/index.js +1 -0
- package/build/packages/didcomm/src/modules/message-pickup/services/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandApi.js +594 -0
- package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandApi.mjs +593 -0
- package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandApi.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandModule.js +8 -0
- package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandModule.mjs +8 -0
- package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandService.js +183 -0
- package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandService.mjs +177 -0
- package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/converters.js +55 -0
- package/build/packages/didcomm/src/modules/oob/converters.mjs +53 -0
- package/build/packages/didcomm/src/modules/oob/converters.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandEvents.js +10 -0
- package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandEvents.mjs +10 -0
- package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandEvents.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandRole.js +10 -0
- package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandRole.mjs +10 -0
- package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandRole.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandState.js +12 -0
- package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandState.mjs +12 -0
- package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandState.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/domain/OutOfBandDidCommService.js +82 -0
- package/build/packages/didcomm/src/modules/oob/domain/OutOfBandDidCommService.mjs +80 -0
- package/build/packages/didcomm/src/modules/oob/domain/OutOfBandDidCommService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/domain/index.js +4 -0
- package/build/packages/didcomm/src/modules/oob/domain/index.mjs +4 -0
- package/build/packages/didcomm/src/modules/oob/handlers/DidCommHandshakeReuseAcceptedHandler.js +1 -0
- package/build/packages/didcomm/src/modules/oob/handlers/DidCommHandshakeReuseAcceptedHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/oob/handlers/DidCommHandshakeReuseHandler.js +2 -0
- package/build/packages/didcomm/src/modules/oob/handlers/DidCommHandshakeReuseHandler.mjs +2 -0
- package/build/packages/didcomm/src/modules/oob/handlers/index.js +1 -0
- package/build/packages/didcomm/src/modules/oob/handlers/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/oob/helpers.js +33 -0
- package/build/packages/didcomm/src/modules/oob/helpers.mjs +31 -0
- package/build/packages/didcomm/src/modules/oob/helpers.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/index.js +15 -0
- package/build/packages/didcomm/src/modules/oob/index.mjs +15 -0
- package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseAcceptedMessage.js +24 -0
- package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseAcceptedMessage.mjs +25 -0
- package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseAcceptedMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseMessage.js +21 -0
- package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseMessage.mjs +22 -0
- package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/messages/DidCommOutOfBandInvitation.js +142 -0
- package/build/packages/didcomm/src/modules/oob/messages/DidCommOutOfBandInvitation.mjs +139 -0
- package/build/packages/didcomm/src/modules/oob/messages/DidCommOutOfBandInvitation.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/messages/index.js +3 -0
- package/build/packages/didcomm/src/modules/oob/messages/index.mjs +3 -0
- package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRecord.js +55 -0
- package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRecord.mjs +53 -0
- package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRepository.js +28 -0
- package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRepository.mjs +22 -0
- package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRepository.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/oob/repository/index.js +2 -0
- package/build/packages/didcomm/src/modules/oob/repository/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/oob/repository/outOfBandRecordMetadataTypes.js +10 -0
- package/build/packages/didcomm/src/modules/oob/repository/outOfBandRecordMetadataTypes.mjs +10 -0
- package/build/packages/didcomm/src/modules/oob/repository/outOfBandRecordMetadataTypes.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/DidCommProofsApi.js +430 -0
- package/build/packages/didcomm/src/modules/proofs/DidCommProofsApi.mjs +424 -0
- package/build/packages/didcomm/src/modules/proofs/DidCommProofsApi.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/DidCommProofsModule.js +5 -0
- package/build/packages/didcomm/src/modules/proofs/DidCommProofsModule.mjs +5 -0
- package/build/packages/didcomm/src/modules/proofs/DidCommProofsModuleConfig.js +19 -0
- package/build/packages/didcomm/src/modules/proofs/DidCommProofsModuleConfig.mjs +20 -0
- package/build/packages/didcomm/src/modules/proofs/DidCommProofsModuleConfig.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/formats/dif-presentation-exchange/DidCommDifPresentationExchangeProofFormatService.js +5 -0
- package/build/packages/didcomm/src/modules/proofs/formats/dif-presentation-exchange/DidCommDifPresentationExchangeProofFormatService.mjs +3 -0
- package/build/packages/didcomm/src/modules/proofs/formats/dif-presentation-exchange/index.js +1 -0
- package/build/packages/didcomm/src/modules/proofs/formats/dif-presentation-exchange/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/proofs/formats/index.js +1 -0
- package/build/packages/didcomm/src/modules/proofs/formats/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/proofs/index.js +17 -0
- package/build/packages/didcomm/src/modules/proofs/index.mjs +17 -0
- package/build/packages/didcomm/src/modules/proofs/models/DidCommProofAutoAcceptType.js +14 -0
- package/build/packages/didcomm/src/modules/proofs/models/DidCommProofAutoAcceptType.mjs +14 -0
- package/build/packages/didcomm/src/modules/proofs/models/DidCommProofAutoAcceptType.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/models/DidCommProofFormatSpec.js +28 -0
- package/build/packages/didcomm/src/modules/proofs/models/DidCommProofFormatSpec.mjs +25 -0
- package/build/packages/didcomm/src/modules/proofs/models/DidCommProofFormatSpec.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/models/DidCommProofState.js +22 -0
- package/build/packages/didcomm/src/modules/proofs/models/DidCommProofState.mjs +22 -0
- package/build/packages/didcomm/src/modules/proofs/models/DidCommProofState.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/models/index.js +3 -0
- package/build/packages/didcomm/src/modules/proofs/models/index.mjs +3 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/DidCommBaseProofProtocol.js +6 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/DidCommBaseProofProtocol.mjs +4 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/index.js +7 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/index.mjs +7 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/DidCommProofFormatCoordinator.js +5 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/DidCommProofFormatCoordinator.mjs +3 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/DidCommProofV2Protocol.js +22 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/DidCommProofV2Protocol.mjs +20 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.js +2 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.mjs +2 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/errors/index.js +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/errors/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2AckHandler.js +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2AckHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2Handler.js +3 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2Handler.mjs +3 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2ProblemReportHandler.js +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2ProblemReportHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommProposePresentationV2Handler.js +2 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommProposePresentationV2Handler.mjs +2 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommRequestPresentationV2Handler.js +2 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommRequestPresentationV2Handler.mjs +2 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/index.js +8 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/index.mjs +8 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2AckMessage.js +18 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2AckMessage.mjs +19 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2AckMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2Message.js +78 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2Message.mjs +75 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2ProblemReportMessage.js +21 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2ProblemReportMessage.mjs +22 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2ProblemReportMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommProposePresentationV2Message.js +70 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommProposePresentationV2Message.mjs +67 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommProposePresentationV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommRequestPresentationV2Message.js +85 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommRequestPresentationV2Message.mjs +82 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommRequestPresentationV2Message.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/index.js +5 -0
- package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/index.mjs +5 -0
- package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRecord.js +50 -0
- package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRecord.mjs +49 -0
- package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRepository.js +56 -0
- package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRepository.mjs +50 -0
- package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRepository.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/proofs/repository/index.js +2 -0
- package/build/packages/didcomm/src/modules/proofs/repository/index.mjs +2 -0
- package/build/packages/didcomm/src/modules/proofs/utils/composeAutoAccept.js +1 -0
- package/build/packages/didcomm/src/modules/proofs/utils/composeAutoAccept.mjs +1 -0
- package/build/packages/didcomm/src/modules/proofs/utils/index.js +1 -0
- package/build/packages/didcomm/src/modules/proofs/utils/index.mjs +1 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientApi.js +318 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientApi.mjs +321 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientApi.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModule.js +12 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModule.mjs +10 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModuleConfig.js +34 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModuleConfig.mjs +34 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModuleConfig.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorApi.js +51 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorApi.mjs +45 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorApi.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorModule.js +9 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorModule.mjs +9 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorModuleConfig.js +19 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorModuleConfig.mjs +20 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorModuleConfig.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorPickupStrategy.js +13 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorPickupStrategy.mjs +13 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMediatorPickupStrategy.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMessageForwardingStrategy.js +11 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMessageForwardingStrategy.mjs +11 -0
- package/build/packages/didcomm/src/modules/routing/DidCommMessageForwardingStrategy.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/DidCommRoutingEvents.js +11 -0
- package/build/packages/didcomm/src/modules/routing/DidCommRoutingEvents.mjs +11 -0
- package/build/packages/didcomm/src/modules/routing/DidCommRoutingEvents.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/error/DidCommRoutingProblemReportReason.js +9 -0
- package/build/packages/didcomm/src/modules/routing/error/DidCommRoutingProblemReportReason.mjs +9 -0
- package/build/packages/didcomm/src/modules/routing/error/DidCommRoutingProblemReportReason.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommForwardHandler.js +1 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommForwardHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommKeylistUpdateHandler.js +2 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommKeylistUpdateHandler.mjs +2 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommKeylistUpdateResponseHandler.js +1 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommKeylistUpdateResponseHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationDenyHandler.js +1 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationDenyHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationGrantHandler.js +1 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationGrantHandler.mjs +1 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationRequestHandler.js +2 -0
- package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationRequestHandler.mjs +2 -0
- package/build/packages/didcomm/src/modules/routing/handlers/index.js +6 -0
- package/build/packages/didcomm/src/modules/routing/handlers/index.mjs +6 -0
- package/build/packages/didcomm/src/modules/routing/index.js +25 -0
- package/build/packages/didcomm/src/modules/routing/index.mjs +25 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommForwardMessage.js +42 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommForwardMessage.mjs +40 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommForwardMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateMessage.js +60 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateMessage.mjs +56 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateResponseMessage.js +66 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateResponseMessage.mjs +62 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateResponseMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationDenyMessage.js +23 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationDenyMessage.mjs +24 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationDenyMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationGrantMessage.js +45 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationGrantMessage.mjs +43 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationGrantMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationRequestMessage.js +32 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationRequestMessage.mjs +33 -0
- package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationRequestMessage.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/messages/index.js +6 -0
- package/build/packages/didcomm/src/modules/routing/messages/index.mjs +6 -0
- package/build/packages/didcomm/src/modules/routing/models/DidCommMediationRole.js +15 -0
- package/build/packages/didcomm/src/modules/routing/models/DidCommMediationRole.mjs +15 -0
- package/build/packages/didcomm/src/modules/routing/models/DidCommMediationRole.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/models/DidCommMediationState.js +16 -0
- package/build/packages/didcomm/src/modules/routing/models/DidCommMediationState.mjs +16 -0
- package/build/packages/didcomm/src/modules/routing/models/DidCommMediationState.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRecord.js +75 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRecord.mjs +73 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRepository.js +34 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRepository.mjs +28 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRepository.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRecord.js +49 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRecord.mjs +48 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRepository.js +29 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRepository.mjs +23 -0
- package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRepository.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/repository/index.js +4 -0
- package/build/packages/didcomm/src/modules/routing/repository/index.mjs +4 -0
- package/build/packages/didcomm/src/modules/routing/services/DidCommMediationRecipientService.js +232 -0
- package/build/packages/didcomm/src/modules/routing/services/DidCommMediationRecipientService.mjs +227 -0
- package/build/packages/didcomm/src/modules/routing/services/DidCommMediationRecipientService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/services/DidCommMediatorService.js +234 -0
- package/build/packages/didcomm/src/modules/routing/services/DidCommMediatorService.mjs +228 -0
- package/build/packages/didcomm/src/modules/routing/services/DidCommMediatorService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/services/DidCommRoutingService.js +51 -0
- package/build/packages/didcomm/src/modules/routing/services/DidCommRoutingService.mjs +45 -0
- package/build/packages/didcomm/src/modules/routing/services/DidCommRoutingService.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/services/helpers.js +13 -0
- package/build/packages/didcomm/src/modules/routing/services/helpers.mjs +12 -0
- package/build/packages/didcomm/src/modules/routing/services/helpers.mjs.map +1 -0
- package/build/packages/didcomm/src/modules/routing/services/index.js +3 -0
- package/build/packages/didcomm/src/modules/routing/services/index.mjs +3 -0
- package/build/packages/didcomm/src/repository/DidCommMessageRecord.js +47 -0
- package/build/packages/didcomm/src/repository/DidCommMessageRecord.mjs +46 -0
- package/build/packages/didcomm/src/repository/DidCommMessageRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/repository/DidCommMessageRepository.js +71 -0
- package/build/packages/didcomm/src/repository/DidCommMessageRepository.mjs +65 -0
- package/build/packages/didcomm/src/repository/DidCommMessageRepository.mjs.map +1 -0
- package/build/packages/didcomm/src/repository/DidCommMessageRole.js +10 -0
- package/build/packages/didcomm/src/repository/DidCommMessageRole.mjs +10 -0
- package/build/packages/didcomm/src/repository/DidCommMessageRole.mjs.map +1 -0
- package/build/packages/didcomm/src/repository/index.js +3 -0
- package/build/packages/didcomm/src/repository/index.mjs +3 -0
- package/build/packages/didcomm/src/services/DidCommDocumentService.js +71 -0
- package/build/packages/didcomm/src/services/DidCommDocumentService.mjs +65 -0
- package/build/packages/didcomm/src/services/DidCommDocumentService.mjs.map +1 -0
- package/build/packages/didcomm/src/services/index.js +1 -0
- package/build/packages/didcomm/src/services/index.mjs +1 -0
- package/build/packages/didcomm/src/transport/DidCommHttpOutboundTransport.js +4 -0
- package/build/packages/didcomm/src/transport/DidCommHttpOutboundTransport.mjs +2 -0
- package/build/packages/didcomm/src/transport/DidCommTransportEventTypes.js +12 -0
- package/build/packages/didcomm/src/transport/DidCommTransportEventTypes.mjs +12 -0
- package/build/packages/didcomm/src/transport/DidCommTransportEventTypes.mjs.map +1 -0
- package/build/packages/didcomm/src/transport/DidCommWsOutboundTransport.js +3 -0
- package/build/packages/didcomm/src/transport/DidCommWsOutboundTransport.mjs +1 -0
- package/build/packages/didcomm/src/transport/index.js +5 -0
- package/build/packages/didcomm/src/transport/index.mjs +5 -0
- package/build/packages/didcomm/src/transport/queue/DidCommQueueTransportRepository.js +3 -0
- package/build/packages/didcomm/src/transport/queue/DidCommQueueTransportRepository.mjs +1 -0
- package/build/packages/didcomm/src/transport/queue/InMemoryQueueTransportRepository.js +61 -0
- package/build/packages/didcomm/src/transport/queue/InMemoryQueueTransportRepository.mjs +55 -0
- package/build/packages/didcomm/src/transport/queue/InMemoryQueueTransportRepository.mjs.map +1 -0
- package/build/packages/didcomm/src/transport/queue/index.js +2 -0
- package/build/packages/didcomm/src/transport/queue/index.mjs +2 -0
- package/build/packages/didcomm/src/types.js +10 -0
- package/build/packages/didcomm/src/types.mjs +10 -0
- package/build/packages/didcomm/src/types.mjs.map +1 -0
- package/build/packages/didcomm/src/updates/0.1-0.2/connection.js +8 -0
- package/build/packages/didcomm/src/updates/0.1-0.2/connection.mjs +6 -0
- package/build/packages/didcomm/src/updates/0.1-0.2/credential.js +37 -0
- package/build/packages/didcomm/src/updates/0.1-0.2/credential.mjs +36 -0
- package/build/packages/didcomm/src/updates/0.1-0.2/credential.mjs.map +1 -0
- package/build/packages/didcomm/src/updates/0.1-0.2/index.js +3 -0
- package/build/packages/didcomm/src/updates/0.1-0.2/index.mjs +3 -0
- package/build/packages/didcomm/src/updates/0.1-0.2/mediation.js +1 -0
- package/build/packages/didcomm/src/updates/0.1-0.2/mediation.mjs +1 -0
- package/build/packages/didcomm/src/updates/0.2-0.3/connection.js +2 -0
- package/build/packages/didcomm/src/updates/0.2-0.3/connection.mjs +2 -0
- package/build/packages/didcomm/src/updates/0.2-0.3/index.js +2 -0
- package/build/packages/didcomm/src/updates/0.2-0.3/index.mjs +2 -0
- package/build/packages/didcomm/src/updates/0.2-0.3/proof.js +32 -0
- package/build/packages/didcomm/src/updates/0.2-0.3/proof.mjs +33 -0
- package/build/packages/didcomm/src/updates/0.2-0.3/proof.mjs.map +1 -0
- package/build/packages/didcomm/src/updates/0.4-0.5/credentialExchangeRecord.js +23 -0
- package/build/packages/didcomm/src/updates/0.4-0.5/credentialExchangeRecord.mjs +23 -0
- package/build/packages/didcomm/src/updates/0.4-0.5/credentialExchangeRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/updates/0.4-0.5/index.js +2 -0
- package/build/packages/didcomm/src/updates/0.4-0.5/index.mjs +2 -0
- package/build/packages/didcomm/src/updates/0.4-0.5/proofExchangeRecord.js +21 -0
- package/build/packages/didcomm/src/updates/0.4-0.5/proofExchangeRecord.mjs +21 -0
- package/build/packages/didcomm/src/updates/0.4-0.5/proofExchangeRecord.mjs.map +1 -0
- package/build/packages/didcomm/src/util/DidCommLinkedAttachment.js +33 -0
- package/build/packages/didcomm/src/util/DidCommLinkedAttachment.mjs +31 -0
- package/build/packages/didcomm/src/util/DidCommLinkedAttachment.mjs.map +1 -0
- package/build/packages/didcomm/src/util/JWE.js +8 -0
- package/build/packages/didcomm/src/util/JWE.mjs +8 -0
- package/build/packages/didcomm/src/util/JWE.mjs.map +1 -0
- package/build/packages/didcomm/src/util/attachment.js +22 -0
- package/build/packages/didcomm/src/util/attachment.mjs +21 -0
- package/build/packages/didcomm/src/util/attachment.mjs.map +1 -0
- package/build/packages/didcomm/src/util/messageType.js +161 -0
- package/build/packages/didcomm/src/util/messageType.mjs +152 -0
- package/build/packages/didcomm/src/util/messageType.mjs.map +1 -0
- package/build/packages/didcomm/src/util/parseInvitation.js +121 -0
- package/build/packages/didcomm/src/util/parseInvitation.mjs +119 -0
- package/build/packages/didcomm/src/util/parseInvitation.mjs.map +1 -0
- package/build/packages/didcomm/src/util/thread.js +8 -0
- package/build/packages/didcomm/src/util/thread.mjs +8 -0
- package/build/packages/didcomm/src/util/thread.mjs.map +1 -0
- package/build/packages/didcomm/src/util/transformers.js +13 -0
- package/build/packages/didcomm/src/util/transformers.mjs +14 -0
- package/build/packages/didcomm/src/util/transformers.mjs.map +1 -0
- package/build/packages/tenants/src/TenantAgent.js +24 -0
- package/build/packages/tenants/src/TenantAgent.mjs +23 -0
- package/build/packages/tenants/src/TenantAgent.mjs.map +1 -0
- package/build/packages/tenants/src/TenantsApi.js +113 -0
- package/build/packages/tenants/src/TenantsApi.mjs +107 -0
- package/build/packages/tenants/src/TenantsApi.mjs.map +1 -0
- package/build/packages/tenants/src/TenantsModule.js +9 -0
- package/build/packages/tenants/src/TenantsModule.mjs +7 -0
- package/build/packages/tenants/src/TenantsModuleConfig.js +18 -0
- package/build/packages/tenants/src/TenantsModuleConfig.mjs +18 -0
- package/build/packages/tenants/src/TenantsModuleConfig.mjs.map +1 -0
- package/build/packages/tenants/src/context/TenantAgentContextProvider.js +157 -0
- package/build/packages/tenants/src/context/TenantAgentContextProvider.mjs +151 -0
- package/build/packages/tenants/src/context/TenantAgentContextProvider.mjs.map +1 -0
- package/build/packages/tenants/src/context/TenantSessionCoordinator.js +192 -0
- package/build/packages/tenants/src/context/TenantSessionCoordinator.mjs +186 -0
- package/build/packages/tenants/src/context/TenantSessionCoordinator.mjs.map +1 -0
- package/build/packages/tenants/src/context/TenantSessionMutex.js +67 -0
- package/build/packages/tenants/src/context/TenantSessionMutex.mjs +66 -0
- package/build/packages/tenants/src/context/TenantSessionMutex.mjs.map +1 -0
- package/build/packages/tenants/src/index.js +6 -0
- package/build/packages/tenants/src/index.mjs +6 -0
- package/build/packages/tenants/src/repository/TenantRecord.js +30 -0
- package/build/packages/tenants/src/repository/TenantRecord.mjs +29 -0
- package/build/packages/tenants/src/repository/TenantRecord.mjs.map +1 -0
- package/build/packages/tenants/src/repository/TenantRepository.js +31 -0
- package/build/packages/tenants/src/repository/TenantRepository.mjs +25 -0
- package/build/packages/tenants/src/repository/TenantRepository.mjs.map +1 -0
- package/build/packages/tenants/src/repository/TenantRoutingRecord.js +29 -0
- package/build/packages/tenants/src/repository/TenantRoutingRecord.mjs +28 -0
- package/build/packages/tenants/src/repository/TenantRoutingRecord.mjs.map +1 -0
- package/build/packages/tenants/src/repository/TenantRoutingRepository.js +31 -0
- package/build/packages/tenants/src/repository/TenantRoutingRepository.mjs +25 -0
- package/build/packages/tenants/src/repository/TenantRoutingRepository.mjs.map +1 -0
- package/build/packages/tenants/src/repository/index.js +4 -0
- package/build/packages/tenants/src/repository/index.mjs +4 -0
- package/build/packages/tenants/src/services/TenantRecordService.js +69 -0
- package/build/packages/tenants/src/services/TenantRecordService.mjs +63 -0
- package/build/packages/tenants/src/services/TenantRecordService.mjs.map +1 -0
- package/build/packages/tenants/src/services/index.js +1 -0
- package/build/packages/tenants/src/services/index.mjs +1 -0
- package/build/packages/tenants/src/updates/0.4-0.5/index.js +1 -0
- package/build/packages/tenants/src/updates/0.4-0.5/index.mjs +1 -0
- package/build/packages/tenants/src/updates/0.4-0.5/tenantRecord.js +1 -0
- package/build/packages/tenants/src/updates/0.4-0.5/tenantRecord.mjs +1 -0
- package/package.json +17 -12
- package/LICENSE +0 -202
- package/build/AskarToDrizzleStorageMigrator.js.map +0 -1
- package/build/errors/AskarToDrizzleStorageMigrationError.d.ts +0 -6
- package/build/errors/AskarToDrizzleStorageMigrationError.js.map +0 -1
- package/build/index.js.map +0 -1
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
import { __decorateMetadata } from "../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateMetadata.mjs";
|
|
2
|
+
import { __decorate } from "../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorate.mjs";
|
|
3
|
+
import { ReturnRouteTypes } from "../../decorators/transport/TransportDecorator.mjs";
|
|
4
|
+
import { DidCommOutboundMessageContext } from "../../models/DidCommOutboundMessageContext.mjs";
|
|
5
|
+
import "../../models/index.mjs";
|
|
6
|
+
import { DidCommHandshakeProtocol } from "./models/DidCommHandshakeProtocol.mjs";
|
|
7
|
+
import "./models/index.mjs";
|
|
8
|
+
import "./messages/index.mjs";
|
|
9
|
+
import { DidCommOutOfBandService } from "../oob/DidCommOutOfBandService.mjs";
|
|
10
|
+
import { DidCommConnectionService } from "./services/DidCommConnectionService.mjs";
|
|
11
|
+
import { DidCommMessageSender } from "../../DidCommMessageSender.mjs";
|
|
12
|
+
import { getMediationRecordForDidDocument } from "../routing/services/helpers.mjs";
|
|
13
|
+
import { DidCommConnectionsModuleConfig } from "./DidCommConnectionsModuleConfig.mjs";
|
|
14
|
+
import { DidCommDidRotateService } from "./services/DidCommDidRotateService.mjs";
|
|
15
|
+
import "./services/index.mjs";
|
|
16
|
+
import { DidCommRoutingService } from "../routing/services/DidCommRoutingService.mjs";
|
|
17
|
+
import { DidExchangeProtocol } from "./DidExchangeProtocol.mjs";
|
|
18
|
+
import { AgentContext, CredoError, DidResolverService, injectable } from "@credo-ts/core";
|
|
19
|
+
|
|
20
|
+
//#region ../didcomm/src/modules/connections/DidCommConnectionsApi.ts
|
|
21
|
+
var _ref, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9;
|
|
22
|
+
let DidCommConnectionsApi = class DidCommConnectionsApi$1 {
|
|
23
|
+
constructor(didExchangeProtocol, connectionService, didRotateService, outOfBandService, routingService, didResolverService, messageSender, agentContext, connectionsModuleConfig) {
|
|
24
|
+
this.didExchangeProtocol = didExchangeProtocol;
|
|
25
|
+
this.connectionService = connectionService;
|
|
26
|
+
this.didRotateService = didRotateService;
|
|
27
|
+
this.outOfBandService = outOfBandService;
|
|
28
|
+
this.routingService = routingService;
|
|
29
|
+
this.messageSender = messageSender;
|
|
30
|
+
this.didResolverService = didResolverService;
|
|
31
|
+
this.agentContext = agentContext;
|
|
32
|
+
this.config = connectionsModuleConfig;
|
|
33
|
+
}
|
|
34
|
+
async acceptOutOfBandInvitation(outOfBandRecord, config) {
|
|
35
|
+
const { protocol, label, alias, imageUrl, autoAcceptConnection, ourDid } = config;
|
|
36
|
+
if (ourDid && config.routing) throw new CredoError(`'routing' is disallowed when defining 'ourDid'`);
|
|
37
|
+
let routing = config.routing;
|
|
38
|
+
if (!routing && !ourDid) routing = await this.routingService.getRouting(this.agentContext, { mediatorId: outOfBandRecord.mediatorId });
|
|
39
|
+
let result;
|
|
40
|
+
if (protocol === DidCommHandshakeProtocol.DidExchange) result = await this.didExchangeProtocol.createRequest(this.agentContext, outOfBandRecord, {
|
|
41
|
+
label,
|
|
42
|
+
alias,
|
|
43
|
+
routing,
|
|
44
|
+
autoAcceptConnection,
|
|
45
|
+
ourDid
|
|
46
|
+
});
|
|
47
|
+
else if (protocol === DidCommHandshakeProtocol.Connections) {
|
|
48
|
+
if (ourDid) throw new CredoError("Using an externally defined did for connections protocol is unsupported");
|
|
49
|
+
if (!routing) throw new CredoError("Routing is required for connections protocol");
|
|
50
|
+
result = await this.connectionService.createRequest(this.agentContext, outOfBandRecord, {
|
|
51
|
+
label,
|
|
52
|
+
alias,
|
|
53
|
+
imageUrl,
|
|
54
|
+
routing,
|
|
55
|
+
autoAcceptConnection
|
|
56
|
+
});
|
|
57
|
+
} else throw new CredoError(`Unsupported handshake protocol ${protocol}.`);
|
|
58
|
+
const { message, connectionRecord } = result;
|
|
59
|
+
const outboundMessageContext = new DidCommOutboundMessageContext(message, {
|
|
60
|
+
agentContext: this.agentContext,
|
|
61
|
+
connection: connectionRecord,
|
|
62
|
+
outOfBand: outOfBandRecord
|
|
63
|
+
});
|
|
64
|
+
await this.messageSender.sendMessage(outboundMessageContext);
|
|
65
|
+
return connectionRecord;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Accept a connection request as inviter (by sending a connection response message) for the connection with the specified connection id.
|
|
69
|
+
* This is not needed when auto accepting of connection is enabled.
|
|
70
|
+
*
|
|
71
|
+
* @param connectionId the id of the connection for which to accept the request
|
|
72
|
+
* @returns connection record
|
|
73
|
+
*/
|
|
74
|
+
async acceptRequest(connectionId) {
|
|
75
|
+
const connectionRecord = await this.connectionService.findById(this.agentContext, connectionId);
|
|
76
|
+
if (!connectionRecord) throw new CredoError(`Connection record ${connectionId} not found.`);
|
|
77
|
+
if (!connectionRecord.outOfBandId) throw new CredoError(`Connection record ${connectionId} does not have out-of-band record.`);
|
|
78
|
+
const outOfBandRecord = await this.outOfBandService.findById(this.agentContext, connectionRecord.outOfBandId);
|
|
79
|
+
if (!outOfBandRecord) throw new CredoError(`Out-of-band record ${connectionRecord.outOfBandId} not found.`);
|
|
80
|
+
const routing = outOfBandRecord.reusable || outOfBandRecord.outOfBandInvitation.getInlineServices().length === 0 ? await this.routingService.getRouting(this.agentContext) : void 0;
|
|
81
|
+
let outboundMessageContext;
|
|
82
|
+
if (connectionRecord.protocol === DidCommHandshakeProtocol.DidExchange) outboundMessageContext = new DidCommOutboundMessageContext(await this.didExchangeProtocol.createResponse(this.agentContext, connectionRecord, outOfBandRecord, routing), {
|
|
83
|
+
agentContext: this.agentContext,
|
|
84
|
+
connection: connectionRecord
|
|
85
|
+
});
|
|
86
|
+
else {
|
|
87
|
+
const routing$1 = outOfBandRecord.reusable || outOfBandRecord.outOfBandInvitation.getInlineServices().length === 0 ? await this.routingService.getRouting(this.agentContext) : void 0;
|
|
88
|
+
const { message } = await this.connectionService.createResponse(this.agentContext, connectionRecord, outOfBandRecord, routing$1);
|
|
89
|
+
outboundMessageContext = new DidCommOutboundMessageContext(message, {
|
|
90
|
+
agentContext: this.agentContext,
|
|
91
|
+
connection: connectionRecord
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
await this.messageSender.sendMessage(outboundMessageContext);
|
|
95
|
+
return connectionRecord;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Accept a connection response as invitee (by sending a trust ping message) for the connection with the specified connection id.
|
|
99
|
+
* This is not needed when auto accepting of connection is enabled.
|
|
100
|
+
*
|
|
101
|
+
* @param connectionId the id of the connection for which to accept the response
|
|
102
|
+
* @returns connection record
|
|
103
|
+
*/
|
|
104
|
+
async acceptResponse(connectionId) {
|
|
105
|
+
const connectionRecord = await this.connectionService.getById(this.agentContext, connectionId);
|
|
106
|
+
let outboundMessageContext;
|
|
107
|
+
if (connectionRecord.protocol === DidCommHandshakeProtocol.DidExchange) {
|
|
108
|
+
if (!connectionRecord.outOfBandId) throw new CredoError(`Connection ${connectionRecord.id} does not have outOfBandId!`);
|
|
109
|
+
const outOfBandRecord = await this.outOfBandService.findById(this.agentContext, connectionRecord.outOfBandId);
|
|
110
|
+
if (!outOfBandRecord) throw new CredoError(`OutOfBand record for connection ${connectionRecord.id} with outOfBandId ${connectionRecord.outOfBandId} not found!`);
|
|
111
|
+
const message = await this.didExchangeProtocol.createComplete(this.agentContext, connectionRecord, outOfBandRecord);
|
|
112
|
+
message.setReturnRouting(ReturnRouteTypes.none);
|
|
113
|
+
outboundMessageContext = new DidCommOutboundMessageContext(message, {
|
|
114
|
+
agentContext: this.agentContext,
|
|
115
|
+
connection: connectionRecord
|
|
116
|
+
});
|
|
117
|
+
} else {
|
|
118
|
+
const { message } = await this.connectionService.createTrustPing(this.agentContext, connectionRecord, { responseRequested: false });
|
|
119
|
+
message.setReturnRouting(ReturnRouteTypes.none);
|
|
120
|
+
outboundMessageContext = new DidCommOutboundMessageContext(message, {
|
|
121
|
+
agentContext: this.agentContext,
|
|
122
|
+
connection: connectionRecord
|
|
123
|
+
});
|
|
124
|
+
}
|
|
125
|
+
await this.messageSender.sendMessage(outboundMessageContext);
|
|
126
|
+
return connectionRecord;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* Send a trust ping to an established connection
|
|
130
|
+
*
|
|
131
|
+
* @param connectionId the id of the connection for which to accept the response
|
|
132
|
+
* @param responseRequested do we want a response to our ping
|
|
133
|
+
* @param withReturnRouting do we want a response at the time of posting
|
|
134
|
+
* @returns TrustPingMessage
|
|
135
|
+
*/
|
|
136
|
+
async sendPing(connectionId, { responseRequested = true, withReturnRouting = void 0 } = {}) {
|
|
137
|
+
const connection = await this.getById(connectionId);
|
|
138
|
+
const { message } = await this.connectionService.createTrustPing(this.agentContext, connection, { responseRequested });
|
|
139
|
+
if (withReturnRouting === true) message.setReturnRouting(ReturnRouteTypes.all);
|
|
140
|
+
if (withReturnRouting === false) message.setReturnRouting(ReturnRouteTypes.none);
|
|
141
|
+
await this.messageSender.sendMessage(new DidCommOutboundMessageContext(message, {
|
|
142
|
+
agentContext: this.agentContext,
|
|
143
|
+
connection
|
|
144
|
+
}));
|
|
145
|
+
return message;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Rotate the DID used for a given connection, notifying the other party immediately.
|
|
149
|
+
*
|
|
150
|
+
* If `toDid` is not specified, a new peer did will be created. Optionally, routing
|
|
151
|
+
* configuration can be set.
|
|
152
|
+
*
|
|
153
|
+
* Note: any did created or imported in agent wallet can be used as `toDid`, as long as
|
|
154
|
+
* there are valid DIDComm services in its DID Document.
|
|
155
|
+
*
|
|
156
|
+
* @param options connectionId and optional target did and routing configuration
|
|
157
|
+
* @returns object containing the new did
|
|
158
|
+
*/
|
|
159
|
+
async rotate(options) {
|
|
160
|
+
const { connectionId, toDid } = options;
|
|
161
|
+
const connection = await this.connectionService.getById(this.agentContext, connectionId);
|
|
162
|
+
if (toDid && options.routing) throw new CredoError(`'routing' is disallowed when defining 'toDid'`);
|
|
163
|
+
let routing = options.routing;
|
|
164
|
+
if (!toDid && !routing) routing = await this.routingService.getRouting(this.agentContext, {});
|
|
165
|
+
const message = await this.didRotateService.createRotate(this.agentContext, {
|
|
166
|
+
connection,
|
|
167
|
+
toDid,
|
|
168
|
+
routing
|
|
169
|
+
});
|
|
170
|
+
const outboundMessageContext = new DidCommOutboundMessageContext(message, {
|
|
171
|
+
agentContext: this.agentContext,
|
|
172
|
+
connection
|
|
173
|
+
});
|
|
174
|
+
await this.messageSender.sendMessage(outboundMessageContext);
|
|
175
|
+
return { newDid: message.toDid };
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* Terminate a connection by sending a hang-up message to the other party. The connection record itself and any
|
|
179
|
+
* keys used for mediation will only be deleted if `deleteAfterHangup` flag is set.
|
|
180
|
+
*
|
|
181
|
+
* @param options connectionId
|
|
182
|
+
*/
|
|
183
|
+
async hangup(options) {
|
|
184
|
+
const connection = await this.connectionService.getById(this.agentContext, options.connectionId);
|
|
185
|
+
const connectionBeforeHangup = connection.clone();
|
|
186
|
+
const outboundMessageContext = new DidCommOutboundMessageContext(await this.didRotateService.createHangup(this.agentContext, { connection }), {
|
|
187
|
+
agentContext: this.agentContext,
|
|
188
|
+
connection: connectionBeforeHangup
|
|
189
|
+
});
|
|
190
|
+
await this.messageSender.sendMessage(outboundMessageContext);
|
|
191
|
+
if (options.deleteAfterHangup) {
|
|
192
|
+
await this.removeRouting(connectionBeforeHangup);
|
|
193
|
+
await this.deleteById(connection.id);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
async returnWhenIsConnected(connectionId, options) {
|
|
197
|
+
return this.connectionService.returnWhenIsConnected(this.agentContext, connectionId, options?.timeoutMs);
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Retrieve all connections records
|
|
201
|
+
*
|
|
202
|
+
* @returns List containing all connection records
|
|
203
|
+
*/
|
|
204
|
+
getAll() {
|
|
205
|
+
return this.connectionService.getAll(this.agentContext);
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* Retrieve all connections records by specified query params
|
|
209
|
+
*
|
|
210
|
+
* @returns List containing all connection records matching specified query paramaters
|
|
211
|
+
*/
|
|
212
|
+
findAllByQuery(query, queryOptions) {
|
|
213
|
+
return this.connectionService.findAllByQuery(this.agentContext, query, queryOptions);
|
|
214
|
+
}
|
|
215
|
+
/**
|
|
216
|
+
* Allows for the addition of connectionType to the record.
|
|
217
|
+
* Either updates or creates an array of string connection types
|
|
218
|
+
* @param connectionId
|
|
219
|
+
* @param type
|
|
220
|
+
* @throws {RecordNotFoundError} If no record is found
|
|
221
|
+
*/
|
|
222
|
+
async addConnectionType(connectionId, type) {
|
|
223
|
+
const record = await this.getById(connectionId);
|
|
224
|
+
await this.connectionService.addConnectionType(this.agentContext, record, type);
|
|
225
|
+
return record;
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* Removes the given tag from the given record found by connectionId, if the tag exists otherwise does nothing
|
|
229
|
+
* @param connectionId
|
|
230
|
+
* @param type
|
|
231
|
+
* @throws {RecordNotFoundError} If no record is found
|
|
232
|
+
*/
|
|
233
|
+
async removeConnectionType(connectionId, type) {
|
|
234
|
+
const record = await this.getById(connectionId);
|
|
235
|
+
await this.connectionService.removeConnectionType(this.agentContext, record, type);
|
|
236
|
+
return record;
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* Gets the known connection types for the record matching the given connectionId
|
|
240
|
+
* @param connectionId
|
|
241
|
+
* @returns An array of known connection types or null if none exist
|
|
242
|
+
* @throws {RecordNotFoundError} If no record is found
|
|
243
|
+
*/
|
|
244
|
+
async getConnectionTypes(connectionId) {
|
|
245
|
+
const record = await this.getById(connectionId);
|
|
246
|
+
return this.connectionService.getConnectionTypes(record);
|
|
247
|
+
}
|
|
248
|
+
/**
|
|
249
|
+
*
|
|
250
|
+
* @param connectionTypes An array of connection types to query for a match for
|
|
251
|
+
* @returns a promise of ab array of connection records
|
|
252
|
+
*/
|
|
253
|
+
async findAllByConnectionTypes(connectionTypes) {
|
|
254
|
+
return this.connectionService.findAllByConnectionTypes(this.agentContext, connectionTypes);
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* Retrieve a connection record by id
|
|
258
|
+
*
|
|
259
|
+
* @param connectionId The connection record id
|
|
260
|
+
* @throws {RecordNotFoundError} If no record is found
|
|
261
|
+
* @return The connection record
|
|
262
|
+
*
|
|
263
|
+
*/
|
|
264
|
+
getById(connectionId) {
|
|
265
|
+
return this.connectionService.getById(this.agentContext, connectionId);
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* Find a connection record by id
|
|
269
|
+
*
|
|
270
|
+
* @param connectionId the connection record id
|
|
271
|
+
* @returns The connection record or null if not found
|
|
272
|
+
*/
|
|
273
|
+
findById(connectionId) {
|
|
274
|
+
return this.connectionService.findById(this.agentContext, connectionId);
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* Delete a connection record by id
|
|
278
|
+
*
|
|
279
|
+
* @param connectionId the connection record id
|
|
280
|
+
*/
|
|
281
|
+
async deleteById(connectionId) {
|
|
282
|
+
const connection = await this.connectionService.getById(this.agentContext, connectionId);
|
|
283
|
+
await this.removeRouting(connection);
|
|
284
|
+
return this.connectionService.deleteById(this.agentContext, connectionId);
|
|
285
|
+
}
|
|
286
|
+
async removeRouting(connection) {
|
|
287
|
+
if (connection.mediatorId && connection.did) {
|
|
288
|
+
const { didDocument } = await this.didResolverService.resolve(this.agentContext, connection.did);
|
|
289
|
+
if (didDocument) await this.routingService.removeRouting(this.agentContext, {
|
|
290
|
+
recipientKeys: didDocument.getRecipientKeysWithVerificationMethod({ mapX25519ToEd25519: true }).map(({ publicJwk }) => publicJwk),
|
|
291
|
+
mediatorId: connection.mediatorId
|
|
292
|
+
});
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* Remove relationship of a connection with any previous did (either ours or theirs), preventing it from accepting
|
|
297
|
+
* messages from them. This is usually called when a DID Rotation flow has been succesful and we are sure that no
|
|
298
|
+
* more messages with older keys will arrive.
|
|
299
|
+
*
|
|
300
|
+
* It will remove routing keys from mediator if applicable.
|
|
301
|
+
*
|
|
302
|
+
* Note: this will not actually delete any DID from the wallet.
|
|
303
|
+
*
|
|
304
|
+
* @param connectionId
|
|
305
|
+
*/
|
|
306
|
+
async removePreviousDids(options) {
|
|
307
|
+
const connection = await this.connectionService.getById(this.agentContext, options.connectionId);
|
|
308
|
+
for (const previousDid of connection.previousDids) {
|
|
309
|
+
const did = await this.didResolverService.resolve(this.agentContext, previousDid);
|
|
310
|
+
if (!did.didDocument) continue;
|
|
311
|
+
const mediatorRecord = await getMediationRecordForDidDocument(this.agentContext, did.didDocument);
|
|
312
|
+
if (mediatorRecord) await this.routingService.removeRouting(this.agentContext, {
|
|
313
|
+
recipientKeys: did.didDocument.getRecipientKeysWithVerificationMethod({ mapX25519ToEd25519: true }).map(({ publicJwk }) => publicJwk),
|
|
314
|
+
mediatorId: mediatorRecord.id
|
|
315
|
+
});
|
|
316
|
+
}
|
|
317
|
+
connection.previousDids = [];
|
|
318
|
+
connection.previousTheirDids = [];
|
|
319
|
+
await this.connectionService.update(this.agentContext, connection);
|
|
320
|
+
}
|
|
321
|
+
async findAllByOutOfBandId(outOfBandId) {
|
|
322
|
+
return this.connectionService.findAllByOutOfBandId(this.agentContext, outOfBandId);
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* Retrieve a connection record by thread id
|
|
326
|
+
*
|
|
327
|
+
* @param threadId The thread id
|
|
328
|
+
* @throws {RecordNotFoundError} If no record is found
|
|
329
|
+
* @throws {RecordDuplicateError} If multiple records are found
|
|
330
|
+
* @returns The connection record
|
|
331
|
+
*/
|
|
332
|
+
getByThreadId(threadId) {
|
|
333
|
+
return this.connectionService.getByThreadId(this.agentContext, threadId);
|
|
334
|
+
}
|
|
335
|
+
async findByDid(did) {
|
|
336
|
+
return this.connectionService.findByTheirDid(this.agentContext, did);
|
|
337
|
+
}
|
|
338
|
+
async findByInvitationDid(invitationDid) {
|
|
339
|
+
return this.connectionService.findByInvitationDid(this.agentContext, invitationDid);
|
|
340
|
+
}
|
|
341
|
+
};
|
|
342
|
+
DidCommConnectionsApi = __decorate([injectable(), __decorateMetadata("design:paramtypes", [
|
|
343
|
+
typeof (_ref = typeof DidExchangeProtocol !== "undefined" && DidExchangeProtocol) === "function" ? _ref : Object,
|
|
344
|
+
typeof (_ref2 = typeof DidCommConnectionService !== "undefined" && DidCommConnectionService) === "function" ? _ref2 : Object,
|
|
345
|
+
typeof (_ref3 = typeof DidCommDidRotateService !== "undefined" && DidCommDidRotateService) === "function" ? _ref3 : Object,
|
|
346
|
+
typeof (_ref4 = typeof DidCommOutOfBandService !== "undefined" && DidCommOutOfBandService) === "function" ? _ref4 : Object,
|
|
347
|
+
typeof (_ref5 = typeof DidCommRoutingService !== "undefined" && DidCommRoutingService) === "function" ? _ref5 : Object,
|
|
348
|
+
typeof (_ref6 = typeof DidResolverService !== "undefined" && DidResolverService) === "function" ? _ref6 : Object,
|
|
349
|
+
typeof (_ref7 = typeof DidCommMessageSender !== "undefined" && DidCommMessageSender) === "function" ? _ref7 : Object,
|
|
350
|
+
typeof (_ref8 = typeof AgentContext !== "undefined" && AgentContext) === "function" ? _ref8 : Object,
|
|
351
|
+
typeof (_ref9 = typeof DidCommConnectionsModuleConfig !== "undefined" && DidCommConnectionsModuleConfig) === "function" ? _ref9 : Object
|
|
352
|
+
])], DidCommConnectionsApi);
|
|
353
|
+
|
|
354
|
+
//#endregion
|
|
355
|
+
export { DidCommConnectionsApi };
|
|
356
|
+
//# sourceMappingURL=DidCommConnectionsApi.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DidCommConnectionsApi.mjs","names":["DidCommConnectionsApi","result: {\n message: DidCommDidExchangeRequestMessage | DidCommConnectionRequestMessage\n connectionRecord: DidCommConnectionRecord\n }","outboundMessageContext: DidCommOutboundMessageContext","routing"],"sources":["../../../../../../../didcomm/src/modules/connections/DidCommConnectionsApi.ts"],"sourcesContent":["import type { Query, QueryOptions } from '@credo-ts/core'\nimport type { DidCommRouting } from '../../models'\nimport type { DidCommOutOfBandRecord } from '../oob/repository'\nimport type { DidCommConnectionType } from './models'\nimport type { DidCommConnectionRecord } from './repository'\n\nimport { AgentContext, CredoError, DidResolverService, injectable } from '@credo-ts/core'\nimport { DidCommMessageSender } from '../../DidCommMessageSender'\nimport { ReturnRouteTypes } from '../../decorators/transport/TransportDecorator'\nimport { DidCommOutboundMessageContext } from '../../models'\nimport { DidCommOutOfBandService } from '../oob/DidCommOutOfBandService'\nimport { DidCommRoutingService } from '../routing/services/DidCommRoutingService'\nimport { getMediationRecordForDidDocument } from '../routing/services/helpers'\n\nimport { DidCommConnectionsModuleConfig } from './DidCommConnectionsModuleConfig'\nimport { DidExchangeProtocol } from './DidExchangeProtocol'\nimport { DidCommConnectionRequestMessage, DidCommDidExchangeRequestMessage } from './messages'\nimport { DidCommHandshakeProtocol } from './models'\nimport { DidCommConnectionService, DidCommDidRotateService } from './services'\n\nexport interface SendPingOptions {\n responseRequested?: boolean\n withReturnRouting?: boolean\n}\n\n@injectable()\nexport class DidCommConnectionsApi {\n /**\n * Configuration for the connections module\n */\n public readonly config: DidCommConnectionsModuleConfig\n\n private didExchangeProtocol: DidExchangeProtocol\n private connectionService: DidCommConnectionService\n private didRotateService: DidCommDidRotateService\n private outOfBandService: DidCommOutOfBandService\n private messageSender: DidCommMessageSender\n private routingService: DidCommRoutingService\n private didResolverService: DidResolverService\n private agentContext: AgentContext\n\n public constructor(\n didExchangeProtocol: DidExchangeProtocol,\n connectionService: DidCommConnectionService,\n didRotateService: DidCommDidRotateService,\n outOfBandService: DidCommOutOfBandService,\n routingService: DidCommRoutingService,\n didResolverService: DidResolverService,\n messageSender: DidCommMessageSender,\n agentContext: AgentContext,\n connectionsModuleConfig: DidCommConnectionsModuleConfig\n ) {\n this.didExchangeProtocol = didExchangeProtocol\n this.connectionService = connectionService\n this.didRotateService = didRotateService\n this.outOfBandService = outOfBandService\n this.routingService = routingService\n this.messageSender = messageSender\n this.didResolverService = didResolverService\n this.agentContext = agentContext\n this.config = connectionsModuleConfig\n }\n\n public async acceptOutOfBandInvitation(\n outOfBandRecord: DidCommOutOfBandRecord,\n config: {\n autoAcceptConnection?: boolean\n label: string\n alias?: string\n imageUrl?: string\n protocol: DidCommHandshakeProtocol\n routing?: DidCommRouting\n ourDid?: string\n }\n ) {\n const { protocol, label, alias, imageUrl, autoAcceptConnection, ourDid } = config\n\n if (ourDid && config.routing) {\n throw new CredoError(`'routing' is disallowed when defining 'ourDid'`)\n }\n\n // Only generate routing if ourDid hasn't been provided\n let routing = config.routing\n if (!routing && !ourDid) {\n routing = await this.routingService.getRouting(this.agentContext, { mediatorId: outOfBandRecord.mediatorId })\n }\n\n let result: {\n message: DidCommDidExchangeRequestMessage | DidCommConnectionRequestMessage\n connectionRecord: DidCommConnectionRecord\n }\n if (protocol === DidCommHandshakeProtocol.DidExchange) {\n result = await this.didExchangeProtocol.createRequest(this.agentContext, outOfBandRecord, {\n label,\n alias,\n routing,\n autoAcceptConnection,\n ourDid,\n })\n } else if (protocol === DidCommHandshakeProtocol.Connections) {\n if (ourDid) {\n throw new CredoError('Using an externally defined did for connections protocol is unsupported')\n }\n // This is just to make TS happy, as we always generate routing if ourDid is not provided\n // and ourDid is not supported for connection (see check above)\n if (!routing) {\n throw new CredoError('Routing is required for connections protocol')\n }\n\n result = await this.connectionService.createRequest(this.agentContext, outOfBandRecord, {\n label,\n alias,\n imageUrl,\n routing,\n autoAcceptConnection,\n })\n } else {\n throw new CredoError(`Unsupported handshake protocol ${protocol}.`)\n }\n\n const { message, connectionRecord } = result\n const outboundMessageContext = new DidCommOutboundMessageContext(message, {\n agentContext: this.agentContext,\n connection: connectionRecord,\n outOfBand: outOfBandRecord,\n })\n await this.messageSender.sendMessage(outboundMessageContext)\n return connectionRecord\n }\n\n /**\n * Accept a connection request as inviter (by sending a connection response message) for the connection with the specified connection id.\n * This is not needed when auto accepting of connection is enabled.\n *\n * @param connectionId the id of the connection for which to accept the request\n * @returns connection record\n */\n public async acceptRequest(connectionId: string): Promise<DidCommConnectionRecord> {\n const connectionRecord = await this.connectionService.findById(this.agentContext, connectionId)\n if (!connectionRecord) {\n throw new CredoError(`Connection record ${connectionId} not found.`)\n }\n if (!connectionRecord.outOfBandId) {\n throw new CredoError(`Connection record ${connectionId} does not have out-of-band record.`)\n }\n\n const outOfBandRecord = await this.outOfBandService.findById(this.agentContext, connectionRecord.outOfBandId)\n if (!outOfBandRecord) {\n throw new CredoError(`Out-of-band record ${connectionRecord.outOfBandId} not found.`)\n }\n\n // We generate routing in two scenarios:\n // 1. When the out-of-band invitation is reusable, as otherwise all connections use the same keys\n // 2. When the out-of-band invitation has no inline services, as we don't want to generate a legacy did doc from a service did\n const routing =\n outOfBandRecord.reusable || outOfBandRecord.outOfBandInvitation.getInlineServices().length === 0\n ? await this.routingService.getRouting(this.agentContext)\n : undefined\n\n let outboundMessageContext: DidCommOutboundMessageContext\n if (connectionRecord.protocol === DidCommHandshakeProtocol.DidExchange) {\n const message = await this.didExchangeProtocol.createResponse(\n this.agentContext,\n connectionRecord,\n outOfBandRecord,\n routing\n )\n outboundMessageContext = new DidCommOutboundMessageContext(message, {\n agentContext: this.agentContext,\n connection: connectionRecord,\n })\n } else {\n // We generate routing in two scenarios:\n // 1. When the out-of-band invitation is reusable, as otherwise all connections use the same keys\n // 2. When the out-of-band invitation has no inline services, as we don't want to generate a legacy did doc from a service did\n const routing =\n outOfBandRecord.reusable || outOfBandRecord.outOfBandInvitation.getInlineServices().length === 0\n ? await this.routingService.getRouting(this.agentContext)\n : undefined\n\n const { message } = await this.connectionService.createResponse(\n this.agentContext,\n connectionRecord,\n outOfBandRecord,\n routing\n )\n outboundMessageContext = new DidCommOutboundMessageContext(message, {\n agentContext: this.agentContext,\n connection: connectionRecord,\n })\n }\n\n await this.messageSender.sendMessage(outboundMessageContext)\n return connectionRecord\n }\n\n /**\n * Accept a connection response as invitee (by sending a trust ping message) for the connection with the specified connection id.\n * This is not needed when auto accepting of connection is enabled.\n *\n * @param connectionId the id of the connection for which to accept the response\n * @returns connection record\n */\n public async acceptResponse(connectionId: string): Promise<DidCommConnectionRecord> {\n const connectionRecord = await this.connectionService.getById(this.agentContext, connectionId)\n\n let outboundMessageContext: DidCommOutboundMessageContext\n if (connectionRecord.protocol === DidCommHandshakeProtocol.DidExchange) {\n if (!connectionRecord.outOfBandId) {\n throw new CredoError(`Connection ${connectionRecord.id} does not have outOfBandId!`)\n }\n const outOfBandRecord = await this.outOfBandService.findById(this.agentContext, connectionRecord.outOfBandId)\n if (!outOfBandRecord) {\n throw new CredoError(\n `OutOfBand record for connection ${connectionRecord.id} with outOfBandId ${connectionRecord.outOfBandId} not found!`\n )\n }\n const message = await this.didExchangeProtocol.createComplete(\n this.agentContext,\n connectionRecord,\n outOfBandRecord\n )\n // Disable return routing as we don't want to receive a response for this message over the same channel\n // This has led to long timeouts as not all clients actually close an http socket if there is no response message\n message.setReturnRouting(ReturnRouteTypes.none)\n outboundMessageContext = new DidCommOutboundMessageContext(message, {\n agentContext: this.agentContext,\n connection: connectionRecord,\n })\n } else {\n const { message } = await this.connectionService.createTrustPing(this.agentContext, connectionRecord, {\n responseRequested: false,\n })\n // Disable return routing as we don't want to receive a response for this message over the same channel\n // This has led to long timeouts as not all clients actually close an http socket if there is no response message\n message.setReturnRouting(ReturnRouteTypes.none)\n outboundMessageContext = new DidCommOutboundMessageContext(message, {\n agentContext: this.agentContext,\n connection: connectionRecord,\n })\n }\n\n await this.messageSender.sendMessage(outboundMessageContext)\n return connectionRecord\n }\n\n /**\n * Send a trust ping to an established connection\n *\n * @param connectionId the id of the connection for which to accept the response\n * @param responseRequested do we want a response to our ping\n * @param withReturnRouting do we want a response at the time of posting\n * @returns TrustPingMessage\n */\n public async sendPing(\n connectionId: string,\n { responseRequested = true, withReturnRouting = undefined }: SendPingOptions = {}\n ) {\n const connection = await this.getById(connectionId)\n\n const { message } = await this.connectionService.createTrustPing(this.agentContext, connection, {\n responseRequested: responseRequested,\n })\n\n if (withReturnRouting === true) {\n message.setReturnRouting(ReturnRouteTypes.all)\n }\n\n // Disable return routing as we don't want to receive a response for this message over the same channel\n // This has led to long timeouts as not all clients actually close an http socket if there is no response message\n if (withReturnRouting === false) {\n message.setReturnRouting(ReturnRouteTypes.none)\n }\n\n await this.messageSender.sendMessage(\n new DidCommOutboundMessageContext(message, { agentContext: this.agentContext, connection })\n )\n\n return message\n }\n\n /**\n * Rotate the DID used for a given connection, notifying the other party immediately.\n *\n * If `toDid` is not specified, a new peer did will be created. Optionally, routing\n * configuration can be set.\n *\n * Note: any did created or imported in agent wallet can be used as `toDid`, as long as\n * there are valid DIDComm services in its DID Document.\n *\n * @param options connectionId and optional target did and routing configuration\n * @returns object containing the new did\n */\n public async rotate(options: { connectionId: string; toDid?: string; routing?: DidCommRouting }) {\n const { connectionId, toDid } = options\n const connection = await this.connectionService.getById(this.agentContext, connectionId)\n\n if (toDid && options.routing) {\n throw new CredoError(`'routing' is disallowed when defining 'toDid'`)\n }\n\n let routing = options.routing\n if (!toDid && !routing) {\n routing = await this.routingService.getRouting(this.agentContext, {})\n }\n\n const message = await this.didRotateService.createRotate(this.agentContext, {\n connection,\n toDid,\n routing,\n })\n\n const outboundMessageContext = new DidCommOutboundMessageContext(message, {\n agentContext: this.agentContext,\n connection,\n })\n\n await this.messageSender.sendMessage(outboundMessageContext)\n\n return { newDid: message.toDid }\n }\n\n /**\n * Terminate a connection by sending a hang-up message to the other party. The connection record itself and any\n * keys used for mediation will only be deleted if `deleteAfterHangup` flag is set.\n *\n * @param options connectionId\n */\n public async hangup(options: { connectionId: string; deleteAfterHangup?: boolean }) {\n const connection = await this.connectionService.getById(this.agentContext, options.connectionId)\n\n const connectionBeforeHangup = connection.clone()\n\n // Create Hangup message and update did in connection record\n const message = await this.didRotateService.createHangup(this.agentContext, { connection })\n\n const outboundMessageContext = new DidCommOutboundMessageContext(message, {\n agentContext: this.agentContext,\n connection: connectionBeforeHangup,\n })\n\n await this.messageSender.sendMessage(outboundMessageContext)\n\n // After hang-up message submission, delete connection if required\n if (options.deleteAfterHangup) {\n // First remove any recipient keys related to it\n await this.removeRouting(connectionBeforeHangup)\n\n await this.deleteById(connection.id)\n }\n }\n\n public async returnWhenIsConnected(\n connectionId: string,\n options?: { timeoutMs: number }\n ): Promise<DidCommConnectionRecord> {\n return this.connectionService.returnWhenIsConnected(this.agentContext, connectionId, options?.timeoutMs)\n }\n\n /**\n * Retrieve all connections records\n *\n * @returns List containing all connection records\n */\n public getAll() {\n return this.connectionService.getAll(this.agentContext)\n }\n\n /**\n * Retrieve all connections records by specified query params\n *\n * @returns List containing all connection records matching specified query paramaters\n */\n public findAllByQuery(query: Query<DidCommConnectionRecord>, queryOptions?: QueryOptions) {\n return this.connectionService.findAllByQuery(this.agentContext, query, queryOptions)\n }\n\n /**\n * Allows for the addition of connectionType to the record.\n * Either updates or creates an array of string connection types\n * @param connectionId\n * @param type\n * @throws {RecordNotFoundError} If no record is found\n */\n public async addConnectionType(connectionId: string, type: DidCommConnectionType | string) {\n const record = await this.getById(connectionId)\n\n await this.connectionService.addConnectionType(this.agentContext, record, type)\n\n return record\n }\n\n /**\n * Removes the given tag from the given record found by connectionId, if the tag exists otherwise does nothing\n * @param connectionId\n * @param type\n * @throws {RecordNotFoundError} If no record is found\n */\n public async removeConnectionType(connectionId: string, type: DidCommConnectionType | string) {\n const record = await this.getById(connectionId)\n\n await this.connectionService.removeConnectionType(this.agentContext, record, type)\n\n return record\n }\n\n /**\n * Gets the known connection types for the record matching the given connectionId\n * @param connectionId\n * @returns An array of known connection types or null if none exist\n * @throws {RecordNotFoundError} If no record is found\n */\n public async getConnectionTypes(connectionId: string) {\n const record = await this.getById(connectionId)\n\n return this.connectionService.getConnectionTypes(record)\n }\n\n /**\n *\n * @param connectionTypes An array of connection types to query for a match for\n * @returns a promise of ab array of connection records\n */\n public async findAllByConnectionTypes(connectionTypes: Array<DidCommConnectionType | string>) {\n return this.connectionService.findAllByConnectionTypes(this.agentContext, connectionTypes)\n }\n\n /**\n * Retrieve a connection record by id\n *\n * @param connectionId The connection record id\n * @throws {RecordNotFoundError} If no record is found\n * @return The connection record\n *\n */\n public getById(connectionId: string): Promise<DidCommConnectionRecord> {\n return this.connectionService.getById(this.agentContext, connectionId)\n }\n\n /**\n * Find a connection record by id\n *\n * @param connectionId the connection record id\n * @returns The connection record or null if not found\n */\n public findById(connectionId: string): Promise<DidCommConnectionRecord | null> {\n return this.connectionService.findById(this.agentContext, connectionId)\n }\n\n /**\n * Delete a connection record by id\n *\n * @param connectionId the connection record id\n */\n public async deleteById(connectionId: string) {\n const connection = await this.connectionService.getById(this.agentContext, connectionId)\n\n await this.removeRouting(connection)\n\n return this.connectionService.deleteById(this.agentContext, connectionId)\n }\n\n private async removeRouting(connection: DidCommConnectionRecord) {\n if (connection.mediatorId && connection.did) {\n const { didDocument } = await this.didResolverService.resolve(this.agentContext, connection.did)\n\n if (didDocument) {\n await this.routingService.removeRouting(this.agentContext, {\n recipientKeys: didDocument\n .getRecipientKeysWithVerificationMethod({ mapX25519ToEd25519: true })\n .map(({ publicJwk }) => publicJwk),\n mediatorId: connection.mediatorId,\n })\n }\n }\n }\n\n /**\n * Remove relationship of a connection with any previous did (either ours or theirs), preventing it from accepting\n * messages from them. This is usually called when a DID Rotation flow has been succesful and we are sure that no\n * more messages with older keys will arrive.\n *\n * It will remove routing keys from mediator if applicable.\n *\n * Note: this will not actually delete any DID from the wallet.\n *\n * @param connectionId\n */\n public async removePreviousDids(options: { connectionId: string }) {\n const connection = await this.connectionService.getById(this.agentContext, options.connectionId)\n\n for (const previousDid of connection.previousDids) {\n const did = await this.didResolverService.resolve(this.agentContext, previousDid)\n if (!did.didDocument) continue\n const mediatorRecord = await getMediationRecordForDidDocument(this.agentContext, did.didDocument)\n\n if (mediatorRecord) {\n await this.routingService.removeRouting(this.agentContext, {\n recipientKeys: did.didDocument\n .getRecipientKeysWithVerificationMethod({ mapX25519ToEd25519: true })\n .map(({ publicJwk }) => publicJwk),\n mediatorId: mediatorRecord.id,\n })\n }\n }\n\n connection.previousDids = []\n connection.previousTheirDids = []\n\n await this.connectionService.update(this.agentContext, connection)\n }\n\n public async findAllByOutOfBandId(outOfBandId: string) {\n return this.connectionService.findAllByOutOfBandId(this.agentContext, outOfBandId)\n }\n\n /**\n * Retrieve a connection record by thread id\n *\n * @param threadId The thread id\n * @throws {RecordNotFoundError} If no record is found\n * @throws {RecordDuplicateError} If multiple records are found\n * @returns The connection record\n */\n public getByThreadId(threadId: string): Promise<DidCommConnectionRecord> {\n return this.connectionService.getByThreadId(this.agentContext, threadId)\n }\n\n public async findByDid(did: string): Promise<DidCommConnectionRecord | null> {\n return this.connectionService.findByTheirDid(this.agentContext, did)\n }\n\n public async findByInvitationDid(invitationDid: string): Promise<DidCommConnectionRecord[]> {\n return this.connectionService.findByInvitationDid(this.agentContext, invitationDid)\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AA0BO,kCAAMA,wBAAsB;CAejC,AAAO,YACL,qBACA,mBACA,kBACA,kBACA,gBACA,oBACA,eACA,cACA,yBACA;AACA,OAAK,sBAAsB;AAC3B,OAAK,oBAAoB;AACzB,OAAK,mBAAmB;AACxB,OAAK,mBAAmB;AACxB,OAAK,iBAAiB;AACtB,OAAK,gBAAgB;AACrB,OAAK,qBAAqB;AAC1B,OAAK,eAAe;AACpB,OAAK,SAAS;;CAGhB,MAAa,0BACX,iBACA,QASA;EACA,MAAM,EAAE,UAAU,OAAO,OAAO,UAAU,sBAAsB,WAAW;AAE3E,MAAI,UAAU,OAAO,QACnB,OAAM,IAAI,WAAW,iDAAiD;EAIxE,IAAI,UAAU,OAAO;AACrB,MAAI,CAAC,WAAW,CAAC,OACf,WAAU,MAAM,KAAK,eAAe,WAAW,KAAK,cAAc,EAAE,YAAY,gBAAgB,YAAY,CAAC;EAG/G,IAAIC;AAIJ,MAAI,aAAa,yBAAyB,YACxC,UAAS,MAAM,KAAK,oBAAoB,cAAc,KAAK,cAAc,iBAAiB;GACxF;GACA;GACA;GACA;GACA;GACD,CAAC;WACO,aAAa,yBAAyB,aAAa;AAC5D,OAAI,OACF,OAAM,IAAI,WAAW,0EAA0E;AAIjG,OAAI,CAAC,QACH,OAAM,IAAI,WAAW,+CAA+C;AAGtE,YAAS,MAAM,KAAK,kBAAkB,cAAc,KAAK,cAAc,iBAAiB;IACtF;IACA;IACA;IACA;IACA;IACD,CAAC;QAEF,OAAM,IAAI,WAAW,kCAAkC,SAAS,GAAG;EAGrE,MAAM,EAAE,SAAS,qBAAqB;EACtC,MAAM,yBAAyB,IAAI,8BAA8B,SAAS;GACxE,cAAc,KAAK;GACnB,YAAY;GACZ,WAAW;GACZ,CAAC;AACF,QAAM,KAAK,cAAc,YAAY,uBAAuB;AAC5D,SAAO;;;;;;;;;CAUT,MAAa,cAAc,cAAwD;EACjF,MAAM,mBAAmB,MAAM,KAAK,kBAAkB,SAAS,KAAK,cAAc,aAAa;AAC/F,MAAI,CAAC,iBACH,OAAM,IAAI,WAAW,qBAAqB,aAAa,aAAa;AAEtE,MAAI,CAAC,iBAAiB,YACpB,OAAM,IAAI,WAAW,qBAAqB,aAAa,oCAAoC;EAG7F,MAAM,kBAAkB,MAAM,KAAK,iBAAiB,SAAS,KAAK,cAAc,iBAAiB,YAAY;AAC7G,MAAI,CAAC,gBACH,OAAM,IAAI,WAAW,sBAAsB,iBAAiB,YAAY,aAAa;EAMvF,MAAM,UACJ,gBAAgB,YAAY,gBAAgB,oBAAoB,mBAAmB,CAAC,WAAW,IAC3F,MAAM,KAAK,eAAe,WAAW,KAAK,aAAa,GACvD;EAEN,IAAIC;AACJ,MAAI,iBAAiB,aAAa,yBAAyB,YAOzD,0BAAyB,IAAI,8BANb,MAAM,KAAK,oBAAoB,eAC7C,KAAK,cACL,kBACA,iBACA,QACD,EACmE;GAClE,cAAc,KAAK;GACnB,YAAY;GACb,CAAC;OACG;GAIL,MAAMC,YACJ,gBAAgB,YAAY,gBAAgB,oBAAoB,mBAAmB,CAAC,WAAW,IAC3F,MAAM,KAAK,eAAe,WAAW,KAAK,aAAa,GACvD;GAEN,MAAM,EAAE,YAAY,MAAM,KAAK,kBAAkB,eAC/C,KAAK,cACL,kBACA,iBACAA,UACD;AACD,4BAAyB,IAAI,8BAA8B,SAAS;IAClE,cAAc,KAAK;IACnB,YAAY;IACb,CAAC;;AAGJ,QAAM,KAAK,cAAc,YAAY,uBAAuB;AAC5D,SAAO;;;;;;;;;CAUT,MAAa,eAAe,cAAwD;EAClF,MAAM,mBAAmB,MAAM,KAAK,kBAAkB,QAAQ,KAAK,cAAc,aAAa;EAE9F,IAAID;AACJ,MAAI,iBAAiB,aAAa,yBAAyB,aAAa;AACtE,OAAI,CAAC,iBAAiB,YACpB,OAAM,IAAI,WAAW,cAAc,iBAAiB,GAAG,6BAA6B;GAEtF,MAAM,kBAAkB,MAAM,KAAK,iBAAiB,SAAS,KAAK,cAAc,iBAAiB,YAAY;AAC7G,OAAI,CAAC,gBACH,OAAM,IAAI,WACR,mCAAmC,iBAAiB,GAAG,oBAAoB,iBAAiB,YAAY,aACzG;GAEH,MAAM,UAAU,MAAM,KAAK,oBAAoB,eAC7C,KAAK,cACL,kBACA,gBACD;AAGD,WAAQ,iBAAiB,iBAAiB,KAAK;AAC/C,4BAAyB,IAAI,8BAA8B,SAAS;IAClE,cAAc,KAAK;IACnB,YAAY;IACb,CAAC;SACG;GACL,MAAM,EAAE,YAAY,MAAM,KAAK,kBAAkB,gBAAgB,KAAK,cAAc,kBAAkB,EACpG,mBAAmB,OACpB,CAAC;AAGF,WAAQ,iBAAiB,iBAAiB,KAAK;AAC/C,4BAAyB,IAAI,8BAA8B,SAAS;IAClE,cAAc,KAAK;IACnB,YAAY;IACb,CAAC;;AAGJ,QAAM,KAAK,cAAc,YAAY,uBAAuB;AAC5D,SAAO;;;;;;;;;;CAWT,MAAa,SACX,cACA,EAAE,oBAAoB,MAAM,oBAAoB,WAA+B,EAAE,EACjF;EACA,MAAM,aAAa,MAAM,KAAK,QAAQ,aAAa;EAEnD,MAAM,EAAE,YAAY,MAAM,KAAK,kBAAkB,gBAAgB,KAAK,cAAc,YAAY,EAC3E,mBACpB,CAAC;AAEF,MAAI,sBAAsB,KACxB,SAAQ,iBAAiB,iBAAiB,IAAI;AAKhD,MAAI,sBAAsB,MACxB,SAAQ,iBAAiB,iBAAiB,KAAK;AAGjD,QAAM,KAAK,cAAc,YACvB,IAAI,8BAA8B,SAAS;GAAE,cAAc,KAAK;GAAc;GAAY,CAAC,CAC5F;AAED,SAAO;;;;;;;;;;;;;;CAeT,MAAa,OAAO,SAA6E;EAC/F,MAAM,EAAE,cAAc,UAAU;EAChC,MAAM,aAAa,MAAM,KAAK,kBAAkB,QAAQ,KAAK,cAAc,aAAa;AAExF,MAAI,SAAS,QAAQ,QACnB,OAAM,IAAI,WAAW,gDAAgD;EAGvE,IAAI,UAAU,QAAQ;AACtB,MAAI,CAAC,SAAS,CAAC,QACb,WAAU,MAAM,KAAK,eAAe,WAAW,KAAK,cAAc,EAAE,CAAC;EAGvE,MAAM,UAAU,MAAM,KAAK,iBAAiB,aAAa,KAAK,cAAc;GAC1E;GACA;GACA;GACD,CAAC;EAEF,MAAM,yBAAyB,IAAI,8BAA8B,SAAS;GACxE,cAAc,KAAK;GACnB;GACD,CAAC;AAEF,QAAM,KAAK,cAAc,YAAY,uBAAuB;AAE5D,SAAO,EAAE,QAAQ,QAAQ,OAAO;;;;;;;;CASlC,MAAa,OAAO,SAAgE;EAClF,MAAM,aAAa,MAAM,KAAK,kBAAkB,QAAQ,KAAK,cAAc,QAAQ,aAAa;EAEhG,MAAM,yBAAyB,WAAW,OAAO;EAKjD,MAAM,yBAAyB,IAAI,8BAFnB,MAAM,KAAK,iBAAiB,aAAa,KAAK,cAAc,EAAE,YAAY,CAAC,EAEjB;GACxE,cAAc,KAAK;GACnB,YAAY;GACb,CAAC;AAEF,QAAM,KAAK,cAAc,YAAY,uBAAuB;AAG5D,MAAI,QAAQ,mBAAmB;AAE7B,SAAM,KAAK,cAAc,uBAAuB;AAEhD,SAAM,KAAK,WAAW,WAAW,GAAG;;;CAIxC,MAAa,sBACX,cACA,SACkC;AAClC,SAAO,KAAK,kBAAkB,sBAAsB,KAAK,cAAc,cAAc,SAAS,UAAU;;;;;;;CAQ1G,AAAO,SAAS;AACd,SAAO,KAAK,kBAAkB,OAAO,KAAK,aAAa;;;;;;;CAQzD,AAAO,eAAe,OAAuC,cAA6B;AACxF,SAAO,KAAK,kBAAkB,eAAe,KAAK,cAAc,OAAO,aAAa;;;;;;;;;CAUtF,MAAa,kBAAkB,cAAsB,MAAsC;EACzF,MAAM,SAAS,MAAM,KAAK,QAAQ,aAAa;AAE/C,QAAM,KAAK,kBAAkB,kBAAkB,KAAK,cAAc,QAAQ,KAAK;AAE/E,SAAO;;;;;;;;CAST,MAAa,qBAAqB,cAAsB,MAAsC;EAC5F,MAAM,SAAS,MAAM,KAAK,QAAQ,aAAa;AAE/C,QAAM,KAAK,kBAAkB,qBAAqB,KAAK,cAAc,QAAQ,KAAK;AAElF,SAAO;;;;;;;;CAST,MAAa,mBAAmB,cAAsB;EACpD,MAAM,SAAS,MAAM,KAAK,QAAQ,aAAa;AAE/C,SAAO,KAAK,kBAAkB,mBAAmB,OAAO;;;;;;;CAQ1D,MAAa,yBAAyB,iBAAwD;AAC5F,SAAO,KAAK,kBAAkB,yBAAyB,KAAK,cAAc,gBAAgB;;;;;;;;;;CAW5F,AAAO,QAAQ,cAAwD;AACrE,SAAO,KAAK,kBAAkB,QAAQ,KAAK,cAAc,aAAa;;;;;;;;CASxE,AAAO,SAAS,cAA+D;AAC7E,SAAO,KAAK,kBAAkB,SAAS,KAAK,cAAc,aAAa;;;;;;;CAQzE,MAAa,WAAW,cAAsB;EAC5C,MAAM,aAAa,MAAM,KAAK,kBAAkB,QAAQ,KAAK,cAAc,aAAa;AAExF,QAAM,KAAK,cAAc,WAAW;AAEpC,SAAO,KAAK,kBAAkB,WAAW,KAAK,cAAc,aAAa;;CAG3E,MAAc,cAAc,YAAqC;AAC/D,MAAI,WAAW,cAAc,WAAW,KAAK;GAC3C,MAAM,EAAE,gBAAgB,MAAM,KAAK,mBAAmB,QAAQ,KAAK,cAAc,WAAW,IAAI;AAEhG,OAAI,YACF,OAAM,KAAK,eAAe,cAAc,KAAK,cAAc;IACzD,eAAe,YACZ,uCAAuC,EAAE,oBAAoB,MAAM,CAAC,CACpE,KAAK,EAAE,gBAAgB,UAAU;IACpC,YAAY,WAAW;IACxB,CAAC;;;;;;;;;;;;;;CAgBR,MAAa,mBAAmB,SAAmC;EACjE,MAAM,aAAa,MAAM,KAAK,kBAAkB,QAAQ,KAAK,cAAc,QAAQ,aAAa;AAEhG,OAAK,MAAM,eAAe,WAAW,cAAc;GACjD,MAAM,MAAM,MAAM,KAAK,mBAAmB,QAAQ,KAAK,cAAc,YAAY;AACjF,OAAI,CAAC,IAAI,YAAa;GACtB,MAAM,iBAAiB,MAAM,iCAAiC,KAAK,cAAc,IAAI,YAAY;AAEjG,OAAI,eACF,OAAM,KAAK,eAAe,cAAc,KAAK,cAAc;IACzD,eAAe,IAAI,YAChB,uCAAuC,EAAE,oBAAoB,MAAM,CAAC,CACpE,KAAK,EAAE,gBAAgB,UAAU;IACpC,YAAY,eAAe;IAC5B,CAAC;;AAIN,aAAW,eAAe,EAAE;AAC5B,aAAW,oBAAoB,EAAE;AAEjC,QAAM,KAAK,kBAAkB,OAAO,KAAK,cAAc,WAAW;;CAGpE,MAAa,qBAAqB,aAAqB;AACrD,SAAO,KAAK,kBAAkB,qBAAqB,KAAK,cAAc,YAAY;;;;;;;;;;CAWpF,AAAO,cAAc,UAAoD;AACvE,SAAO,KAAK,kBAAkB,cAAc,KAAK,cAAc,SAAS;;CAG1E,MAAa,UAAU,KAAsD;AAC3E,SAAO,KAAK,kBAAkB,eAAe,KAAK,cAAc,IAAI;;CAGtE,MAAa,oBAAoB,eAA2D;AAC1F,SAAO,KAAK,kBAAkB,oBAAoB,KAAK,cAAc,cAAc;;;oCA5ftF,YAAY"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
const require_rolldown_runtime = require('../../../../../_virtual/rolldown_runtime.js');
|
|
2
|
+
require('../../models/index.js');
|
|
3
|
+
require('./models/index.js');
|
|
4
|
+
require('./handlers/index.js');
|
|
5
|
+
require('./repository/index.js');
|
|
6
|
+
require('../oob/DidCommOutOfBandService.js');
|
|
7
|
+
require('./services/DidCommConnectionService.js');
|
|
8
|
+
require('./DidCommConnectionsModuleConfig.js');
|
|
9
|
+
require('./services/DidCommDidRotateService.js');
|
|
10
|
+
require('./services/DidCommTrustPingService.js');
|
|
11
|
+
require('../routing/services/DidCommRoutingService.js');
|
|
12
|
+
require('./DidExchangeProtocol.js');
|
|
13
|
+
require('./DidCommConnectionsApi.js');
|
|
14
|
+
require('../../DidCommFeatureRegistry.js');
|
|
15
|
+
require('../../DidCommMessageHandlerRegistry.js');
|
|
16
|
+
let __credo_ts_core = require("@credo-ts/core");
|
|
17
|
+
__credo_ts_core = require_rolldown_runtime.__toESM(__credo_ts_core);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import "../../models/index.mjs";
|
|
2
|
+
import "./models/index.mjs";
|
|
3
|
+
import "./handlers/index.mjs";
|
|
4
|
+
import "./repository/index.mjs";
|
|
5
|
+
import "../oob/DidCommOutOfBandService.mjs";
|
|
6
|
+
import "./services/DidCommConnectionService.mjs";
|
|
7
|
+
import "./DidCommConnectionsModuleConfig.mjs";
|
|
8
|
+
import "./services/DidCommDidRotateService.mjs";
|
|
9
|
+
import "./services/DidCommTrustPingService.mjs";
|
|
10
|
+
import "../routing/services/DidCommRoutingService.mjs";
|
|
11
|
+
import "./DidExchangeProtocol.mjs";
|
|
12
|
+
import "./DidCommConnectionsApi.mjs";
|
|
13
|
+
import "../../DidCommFeatureRegistry.mjs";
|
|
14
|
+
import "../../DidCommMessageHandlerRegistry.mjs";
|
|
15
|
+
import { DidRepository, DidResolverService } from "@credo-ts/core";
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
const require_rolldown_runtime = require('../../../../../_virtual/rolldown_runtime.js');
|
|
2
|
+
const require_classPrivateFieldInitSpec = require('../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldInitSpec.js');
|
|
3
|
+
const require_classPrivateFieldSet2 = require('../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldSet2.js');
|
|
4
|
+
const require_classPrivateFieldGet2 = require('../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldGet2.js');
|
|
5
|
+
let __credo_ts_core = require("@credo-ts/core");
|
|
6
|
+
__credo_ts_core = require_rolldown_runtime.__toESM(__credo_ts_core);
|
|
7
|
+
|
|
8
|
+
//#region ../didcomm/src/modules/connections/DidCommConnectionsModuleConfig.ts
|
|
9
|
+
var _autoAcceptConnections = /* @__PURE__ */ new WeakMap();
|
|
10
|
+
var _peerNumAlgoForDidExchangeRequests = /* @__PURE__ */ new WeakMap();
|
|
11
|
+
var _peerNumAlgoForDidRotation = /* @__PURE__ */ new WeakMap();
|
|
12
|
+
var DidCommConnectionsModuleConfig = class {
|
|
13
|
+
constructor(options) {
|
|
14
|
+
require_classPrivateFieldInitSpec._classPrivateFieldInitSpec(this, _autoAcceptConnections, void 0);
|
|
15
|
+
require_classPrivateFieldInitSpec._classPrivateFieldInitSpec(this, _peerNumAlgoForDidExchangeRequests, void 0);
|
|
16
|
+
require_classPrivateFieldInitSpec._classPrivateFieldInitSpec(this, _peerNumAlgoForDidRotation, void 0);
|
|
17
|
+
this.options = options ?? {};
|
|
18
|
+
require_classPrivateFieldSet2._classPrivateFieldSet2(_autoAcceptConnections, this, this.options.autoAcceptConnections);
|
|
19
|
+
require_classPrivateFieldSet2._classPrivateFieldSet2(_peerNumAlgoForDidExchangeRequests, this, this.options.peerNumAlgoForDidExchangeRequests);
|
|
20
|
+
require_classPrivateFieldSet2._classPrivateFieldSet2(_peerNumAlgoForDidRotation, this, this.options.peerNumAlgoForDidRotation);
|
|
21
|
+
}
|
|
22
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.autoAcceptConnections} */
|
|
23
|
+
get autoAcceptConnections() {
|
|
24
|
+
return require_classPrivateFieldGet2._classPrivateFieldGet2(_autoAcceptConnections, this) ?? false;
|
|
25
|
+
}
|
|
26
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.autoAcceptConnections} */
|
|
27
|
+
set autoAcceptConnections(autoAcceptConnections) {
|
|
28
|
+
require_classPrivateFieldSet2._classPrivateFieldSet2(_autoAcceptConnections, this, autoAcceptConnections);
|
|
29
|
+
}
|
|
30
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidExchangeRequests} */
|
|
31
|
+
get peerNumAlgoForDidExchangeRequests() {
|
|
32
|
+
return require_classPrivateFieldGet2._classPrivateFieldGet2(_peerNumAlgoForDidExchangeRequests, this) ?? __credo_ts_core.PeerDidNumAlgo.ShortFormAndLongForm;
|
|
33
|
+
}
|
|
34
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidExchangeRequests} */
|
|
35
|
+
set peerNumAlgoForDidExchangeRequests(peerNumAlgoForDidExchangeRequests) {
|
|
36
|
+
require_classPrivateFieldSet2._classPrivateFieldSet2(_peerNumAlgoForDidExchangeRequests, this, peerNumAlgoForDidExchangeRequests);
|
|
37
|
+
}
|
|
38
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidRotation} */
|
|
39
|
+
get peerNumAlgoForDidRotation() {
|
|
40
|
+
return require_classPrivateFieldGet2._classPrivateFieldGet2(_peerNumAlgoForDidRotation, this) ?? __credo_ts_core.PeerDidNumAlgo.ShortFormAndLongForm;
|
|
41
|
+
}
|
|
42
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidRotation} */
|
|
43
|
+
set peerNumAlgoForDidRotation(peerNumAlgoForDidRotation) {
|
|
44
|
+
require_classPrivateFieldSet2._classPrivateFieldSet2(_peerNumAlgoForDidRotation, this, peerNumAlgoForDidRotation);
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
//#endregion
|
|
49
|
+
exports.DidCommConnectionsModuleConfig = DidCommConnectionsModuleConfig;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { _classPrivateFieldInitSpec } from "../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldInitSpec.mjs";
|
|
2
|
+
import { _classPrivateFieldSet2 } from "../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldSet2.mjs";
|
|
3
|
+
import { _classPrivateFieldGet2 } from "../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldGet2.mjs";
|
|
4
|
+
import { PeerDidNumAlgo } from "@credo-ts/core";
|
|
5
|
+
|
|
6
|
+
//#region ../didcomm/src/modules/connections/DidCommConnectionsModuleConfig.ts
|
|
7
|
+
var _autoAcceptConnections = /* @__PURE__ */ new WeakMap();
|
|
8
|
+
var _peerNumAlgoForDidExchangeRequests = /* @__PURE__ */ new WeakMap();
|
|
9
|
+
var _peerNumAlgoForDidRotation = /* @__PURE__ */ new WeakMap();
|
|
10
|
+
var DidCommConnectionsModuleConfig = class {
|
|
11
|
+
constructor(options) {
|
|
12
|
+
_classPrivateFieldInitSpec(this, _autoAcceptConnections, void 0);
|
|
13
|
+
_classPrivateFieldInitSpec(this, _peerNumAlgoForDidExchangeRequests, void 0);
|
|
14
|
+
_classPrivateFieldInitSpec(this, _peerNumAlgoForDidRotation, void 0);
|
|
15
|
+
this.options = options ?? {};
|
|
16
|
+
_classPrivateFieldSet2(_autoAcceptConnections, this, this.options.autoAcceptConnections);
|
|
17
|
+
_classPrivateFieldSet2(_peerNumAlgoForDidExchangeRequests, this, this.options.peerNumAlgoForDidExchangeRequests);
|
|
18
|
+
_classPrivateFieldSet2(_peerNumAlgoForDidRotation, this, this.options.peerNumAlgoForDidRotation);
|
|
19
|
+
}
|
|
20
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.autoAcceptConnections} */
|
|
21
|
+
get autoAcceptConnections() {
|
|
22
|
+
return _classPrivateFieldGet2(_autoAcceptConnections, this) ?? false;
|
|
23
|
+
}
|
|
24
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.autoAcceptConnections} */
|
|
25
|
+
set autoAcceptConnections(autoAcceptConnections) {
|
|
26
|
+
_classPrivateFieldSet2(_autoAcceptConnections, this, autoAcceptConnections);
|
|
27
|
+
}
|
|
28
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidExchangeRequests} */
|
|
29
|
+
get peerNumAlgoForDidExchangeRequests() {
|
|
30
|
+
return _classPrivateFieldGet2(_peerNumAlgoForDidExchangeRequests, this) ?? PeerDidNumAlgo.ShortFormAndLongForm;
|
|
31
|
+
}
|
|
32
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidExchangeRequests} */
|
|
33
|
+
set peerNumAlgoForDidExchangeRequests(peerNumAlgoForDidExchangeRequests) {
|
|
34
|
+
_classPrivateFieldSet2(_peerNumAlgoForDidExchangeRequests, this, peerNumAlgoForDidExchangeRequests);
|
|
35
|
+
}
|
|
36
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidRotation} */
|
|
37
|
+
get peerNumAlgoForDidRotation() {
|
|
38
|
+
return _classPrivateFieldGet2(_peerNumAlgoForDidRotation, this) ?? PeerDidNumAlgo.ShortFormAndLongForm;
|
|
39
|
+
}
|
|
40
|
+
/** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidRotation} */
|
|
41
|
+
set peerNumAlgoForDidRotation(peerNumAlgoForDidRotation) {
|
|
42
|
+
_classPrivateFieldSet2(_peerNumAlgoForDidRotation, this, peerNumAlgoForDidRotation);
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
//#endregion
|
|
47
|
+
export { DidCommConnectionsModuleConfig };
|
|
48
|
+
//# sourceMappingURL=DidCommConnectionsModuleConfig.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DidCommConnectionsModuleConfig.mjs","names":[],"sources":["../../../../../../../didcomm/src/modules/connections/DidCommConnectionsModuleConfig.ts"],"sourcesContent":["import { PeerDidNumAlgo } from '@credo-ts/core'\n\n/**\n * ConnectionsModuleConfigOptions defines the interface for the options of the ConnectionsModuleConfig class.\n * This can contain optional parameters that have default values in the config class itself.\n */\nexport interface DidCommConnectionsModuleConfigOptions {\n /**\n * Whether to automatically accept connection messages. Applies to both the connection protocol (RFC 0160)\n * and the DID exchange protocol (RFC 0023).\n *\n * Note: this setting does not apply to implicit invitation flows, which always need to be manually accepted\n * using ConnectionStateChangedEvent\n *\n * @default false\n */\n autoAcceptConnections?: boolean\n\n /**\n * Peer did num algo to use in requests for DID exchange protocol (RFC 0023). It will be also used by default\n * in responses in case that the request does not use a peer did.\n *\n * @default PeerDidNumAlgo.ShortFormAndLongForm\n */\n peerNumAlgoForDidExchangeRequests?: PeerDidNumAlgo\n\n /**\n * Peer did num algo to use for DID rotation (RFC 0794).\n *\n * @default PeerDidNumAlgo.ShortFormAndLongForm\n */\n peerNumAlgoForDidRotation?: PeerDidNumAlgo.MultipleInceptionKeyWithoutDoc | PeerDidNumAlgo.ShortFormAndLongForm\n}\n\nexport class DidCommConnectionsModuleConfig {\n #autoAcceptConnections?: boolean\n #peerNumAlgoForDidExchangeRequests?: PeerDidNumAlgo\n #peerNumAlgoForDidRotation?: PeerDidNumAlgo.MultipleInceptionKeyWithoutDoc | PeerDidNumAlgo.ShortFormAndLongForm\n\n private options: DidCommConnectionsModuleConfigOptions\n\n public constructor(options?: DidCommConnectionsModuleConfigOptions) {\n this.options = options ?? {}\n this.#autoAcceptConnections = this.options.autoAcceptConnections\n this.#peerNumAlgoForDidExchangeRequests = this.options.peerNumAlgoForDidExchangeRequests\n this.#peerNumAlgoForDidRotation = this.options.peerNumAlgoForDidRotation\n }\n\n /** See {@link DidCommConnectionsModuleConfigOptions.autoAcceptConnections} */\n public get autoAcceptConnections() {\n return this.#autoAcceptConnections ?? false\n }\n\n /** See {@link DidCommConnectionsModuleConfigOptions.autoAcceptConnections} */\n public set autoAcceptConnections(autoAcceptConnections: boolean) {\n this.#autoAcceptConnections = autoAcceptConnections\n }\n\n /** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidExchangeRequests} */\n public get peerNumAlgoForDidExchangeRequests() {\n return this.#peerNumAlgoForDidExchangeRequests ?? PeerDidNumAlgo.ShortFormAndLongForm\n }\n\n /** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidExchangeRequests} */\n public set peerNumAlgoForDidExchangeRequests(peerNumAlgoForDidExchangeRequests: PeerDidNumAlgo) {\n this.#peerNumAlgoForDidExchangeRequests = peerNumAlgoForDidExchangeRequests\n }\n\n /** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidRotation} */\n public get peerNumAlgoForDidRotation() {\n return this.#peerNumAlgoForDidRotation ?? PeerDidNumAlgo.ShortFormAndLongForm\n }\n\n /** See {@link DidCommConnectionsModuleConfigOptions.peerNumAlgoForDidRotation} */\n public set peerNumAlgoForDidRotation(peerNumAlgoForDidRotation:\n | PeerDidNumAlgo.MultipleInceptionKeyWithoutDoc\n | PeerDidNumAlgo.ShortFormAndLongForm) {\n this.#peerNumAlgoForDidRotation = peerNumAlgoForDidRotation\n }\n}\n"],"mappings":";;;;;;;;;AAkCA,IAAa,iCAAb,MAA4C;CAO1C,AAAO,YAAY,SAAiD;;;;AAClE,OAAK,UAAU,WAAW,EAAE;AAC5B,uDAA8B,KAAK,QAAQ,sBAAqB;AAChE,mEAA0C,KAAK,QAAQ,kCAAiC;AACxF,2DAAkC,KAAK,QAAQ,0BAAyB;;;CAI1E,IAAW,wBAAwB;AACjC,wDAAO,KAA2B,IAAI;;;CAIxC,IAAW,sBAAsB,uBAAgC;AAC/D,uDAA8B,sBAAqB;;;CAIrD,IAAW,oCAAoC;AAC7C,oEAAO,KAAuC,IAAI,eAAe;;;CAInE,IAAW,kCAAkC,mCAAmD;AAC9F,mEAA0C,kCAAiC;;;CAI7E,IAAW,4BAA4B;AACrC,4DAAO,KAA+B,IAAI,eAAe;;;CAI3D,IAAW,0BAA0B,2BAEI;AACvC,2DAAkC,0BAAyB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
|
|
2
|
+
//#region ../didcomm/src/modules/connections/DidCommTrustPingEvents.ts
|
|
3
|
+
let DidCommTrustPingEventTypes = /* @__PURE__ */ function(DidCommTrustPingEventTypes$1) {
|
|
4
|
+
DidCommTrustPingEventTypes$1["DidCommTrustPingReceivedEvent"] = "DidCommTrustPingReceivedEvent";
|
|
5
|
+
DidCommTrustPingEventTypes$1["DidCommTrustPingResponseReceivedEvent"] = "DidCommTrustPingResponseReceivedEvent";
|
|
6
|
+
return DidCommTrustPingEventTypes$1;
|
|
7
|
+
}({});
|
|
8
|
+
|
|
9
|
+
//#endregion
|
|
10
|
+
exports.DidCommTrustPingEventTypes = DidCommTrustPingEventTypes;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
//#region ../didcomm/src/modules/connections/DidCommTrustPingEvents.ts
|
|
2
|
+
let DidCommTrustPingEventTypes = /* @__PURE__ */ function(DidCommTrustPingEventTypes$1) {
|
|
3
|
+
DidCommTrustPingEventTypes$1["DidCommTrustPingReceivedEvent"] = "DidCommTrustPingReceivedEvent";
|
|
4
|
+
DidCommTrustPingEventTypes$1["DidCommTrustPingResponseReceivedEvent"] = "DidCommTrustPingResponseReceivedEvent";
|
|
5
|
+
return DidCommTrustPingEventTypes$1;
|
|
6
|
+
}({});
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
export { DidCommTrustPingEventTypes };
|
|
10
|
+
//# sourceMappingURL=DidCommTrustPingEvents.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DidCommTrustPingEvents.mjs","names":[],"sources":["../../../../../../../didcomm/src/modules/connections/DidCommTrustPingEvents.ts"],"sourcesContent":["import type { BaseEvent } from '@credo-ts/core'\nimport type { DidCommTrustPingMessage, DidCommTrustPingResponseMessage } from './messages'\nimport type { DidCommConnectionRecord } from './repository'\n\nexport enum DidCommTrustPingEventTypes {\n DidCommTrustPingReceivedEvent = 'DidCommTrustPingReceivedEvent',\n DidCommTrustPingResponseReceivedEvent = 'DidCommTrustPingResponseReceivedEvent',\n}\n\nexport interface DidCommTrustPingReceivedEvent extends BaseEvent {\n type: typeof DidCommTrustPingEventTypes.DidCommTrustPingReceivedEvent\n payload: {\n connectionRecord: DidCommConnectionRecord\n message: DidCommTrustPingMessage\n }\n}\n\nexport interface TrustPingResponseReceivedEvent extends BaseEvent {\n type: typeof DidCommTrustPingEventTypes.DidCommTrustPingResponseReceivedEvent\n payload: {\n connectionRecord: DidCommConnectionRecord\n message: DidCommTrustPingResponseMessage\n }\n}\n"],"mappings":";AAIA,IAAY,oFAAL;AACL;AACA"}
|