@credo-ts/askar-to-drizzle-storage-migration 0.6.0-alpha-20251010154241 → 0.6.0-alpha-20251010164336
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 @@
|
|
|
1
|
+
{"version":3,"file":"duration.mjs","names":[],"sources":["../../../../../../../../../node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/duration.js"],"sourcesContent":["import { InvalidArgumentError, InvalidDurationError, InvalidUnitError } from \"./errors.js\";\nimport Formatter from \"./impl/formatter.js\";\nimport Invalid from \"./impl/invalid.js\";\nimport Locale from \"./impl/locale.js\";\nimport { parseISODuration, parseISOTimeOnly } from \"./impl/regexParser.js\";\nimport {\n asNumber,\n hasOwnProperty,\n isNumber,\n isUndefined,\n normalizeObject,\n roundTo,\n} from \"./impl/util.js\";\nimport Settings from \"./settings.js\";\nimport DateTime from \"./datetime.js\";\n\nconst INVALID = \"Invalid Duration\";\n\n// unit conversion constants\nexport const lowOrderMatrix = {\n weeks: {\n days: 7,\n hours: 7 * 24,\n minutes: 7 * 24 * 60,\n seconds: 7 * 24 * 60 * 60,\n milliseconds: 7 * 24 * 60 * 60 * 1000,\n },\n days: {\n hours: 24,\n minutes: 24 * 60,\n seconds: 24 * 60 * 60,\n milliseconds: 24 * 60 * 60 * 1000,\n },\n hours: { minutes: 60, seconds: 60 * 60, milliseconds: 60 * 60 * 1000 },\n minutes: { seconds: 60, milliseconds: 60 * 1000 },\n seconds: { milliseconds: 1000 },\n },\n casualMatrix = {\n years: {\n quarters: 4,\n months: 12,\n weeks: 52,\n days: 365,\n hours: 365 * 24,\n minutes: 365 * 24 * 60,\n seconds: 365 * 24 * 60 * 60,\n milliseconds: 365 * 24 * 60 * 60 * 1000,\n },\n quarters: {\n months: 3,\n weeks: 13,\n days: 91,\n hours: 91 * 24,\n minutes: 91 * 24 * 60,\n seconds: 91 * 24 * 60 * 60,\n milliseconds: 91 * 24 * 60 * 60 * 1000,\n },\n months: {\n weeks: 4,\n days: 30,\n hours: 30 * 24,\n minutes: 30 * 24 * 60,\n seconds: 30 * 24 * 60 * 60,\n milliseconds: 30 * 24 * 60 * 60 * 1000,\n },\n\n ...lowOrderMatrix,\n },\n daysInYearAccurate = 146097.0 / 400,\n daysInMonthAccurate = 146097.0 / 4800,\n accurateMatrix = {\n years: {\n quarters: 4,\n months: 12,\n weeks: daysInYearAccurate / 7,\n days: daysInYearAccurate,\n hours: daysInYearAccurate * 24,\n minutes: daysInYearAccurate * 24 * 60,\n seconds: daysInYearAccurate * 24 * 60 * 60,\n milliseconds: daysInYearAccurate * 24 * 60 * 60 * 1000,\n },\n quarters: {\n months: 3,\n weeks: daysInYearAccurate / 28,\n days: daysInYearAccurate / 4,\n hours: (daysInYearAccurate * 24) / 4,\n minutes: (daysInYearAccurate * 24 * 60) / 4,\n seconds: (daysInYearAccurate * 24 * 60 * 60) / 4,\n milliseconds: (daysInYearAccurate * 24 * 60 * 60 * 1000) / 4,\n },\n months: {\n weeks: daysInMonthAccurate / 7,\n days: daysInMonthAccurate,\n hours: daysInMonthAccurate * 24,\n minutes: daysInMonthAccurate * 24 * 60,\n seconds: daysInMonthAccurate * 24 * 60 * 60,\n milliseconds: daysInMonthAccurate * 24 * 60 * 60 * 1000,\n },\n ...lowOrderMatrix,\n };\n\n// units ordered by size\nconst orderedUnits = [\n \"years\",\n \"quarters\",\n \"months\",\n \"weeks\",\n \"days\",\n \"hours\",\n \"minutes\",\n \"seconds\",\n \"milliseconds\",\n];\n\nconst reverseUnits = orderedUnits.slice(0).reverse();\n\n// clone really means \"create another instance just like this one, but with these changes\"\nfunction clone(dur, alts, clear = false) {\n // deep merge for vals\n const conf = {\n values: clear ? alts.values : { ...dur.values, ...(alts.values || {}) },\n loc: dur.loc.clone(alts.loc),\n conversionAccuracy: alts.conversionAccuracy || dur.conversionAccuracy,\n matrix: alts.matrix || dur.matrix,\n };\n return new Duration(conf);\n}\n\nfunction durationToMillis(matrix, vals) {\n let sum = vals.milliseconds ?? 0;\n for (const unit of reverseUnits.slice(1)) {\n if (vals[unit]) {\n sum += vals[unit] * matrix[unit][\"milliseconds\"];\n }\n }\n return sum;\n}\n\n// NB: mutates parameters\nfunction normalizeValues(matrix, vals) {\n // the logic below assumes the overall value of the duration is positive\n // if this is not the case, factor is used to make it so\n const factor = durationToMillis(matrix, vals) < 0 ? -1 : 1;\n\n orderedUnits.reduceRight((previous, current) => {\n if (!isUndefined(vals[current])) {\n if (previous) {\n const previousVal = vals[previous] * factor;\n const conv = matrix[current][previous];\n\n // if (previousVal < 0):\n // lower order unit is negative (e.g. { years: 2, days: -2 })\n // normalize this by reducing the higher order unit by the appropriate amount\n // and increasing the lower order unit\n // this can never make the higher order unit negative, because this function only operates\n // on positive durations, so the amount of time represented by the lower order unit cannot\n // be larger than the higher order unit\n // else:\n // lower order unit is positive (e.g. { years: 2, days: 450 } or { years: -2, days: 450 })\n // in this case we attempt to convert as much as possible from the lower order unit into\n // the higher order one\n //\n // Math.floor takes care of both of these cases, rounding away from 0\n // if previousVal < 0 it makes the absolute value larger\n // if previousVal >= it makes the absolute value smaller\n const rollUp = Math.floor(previousVal / conv);\n vals[current] += rollUp * factor;\n vals[previous] -= rollUp * conv * factor;\n }\n return current;\n } else {\n return previous;\n }\n }, null);\n\n // try to convert any decimals into smaller units if possible\n // for example for { years: 2.5, days: 0, seconds: 0 } we want to get { years: 2, days: 182, hours: 12 }\n orderedUnits.reduce((previous, current) => {\n if (!isUndefined(vals[current])) {\n if (previous) {\n const fraction = vals[previous] % 1;\n vals[previous] -= fraction;\n vals[current] += fraction * matrix[previous][current];\n }\n return current;\n } else {\n return previous;\n }\n }, null);\n}\n\n// Remove all properties with a value of 0 from an object\nfunction removeZeroes(vals) {\n const newVals = {};\n for (const [key, value] of Object.entries(vals)) {\n if (value !== 0) {\n newVals[key] = value;\n }\n }\n return newVals;\n}\n\n/**\n * A Duration object represents a period of time, like \"2 months\" or \"1 day, 1 hour\". Conceptually, it's just a map of units to their quantities, accompanied by some additional configuration and methods for creating, parsing, interrogating, transforming, and formatting them. They can be used on their own or in conjunction with other Luxon types; for example, you can use {@link DateTime#plus} to add a Duration object to a DateTime, producing another DateTime.\n *\n * Here is a brief overview of commonly used methods and getters in Duration:\n *\n * * **Creation** To create a Duration, use {@link Duration.fromMillis}, {@link Duration.fromObject}, or {@link Duration.fromISO}.\n * * **Unit values** See the {@link Duration#years}, {@link Duration#months}, {@link Duration#weeks}, {@link Duration#days}, {@link Duration#hours}, {@link Duration#minutes}, {@link Duration#seconds}, {@link Duration#milliseconds} accessors.\n * * **Configuration** See {@link Duration#locale} and {@link Duration#numberingSystem} accessors.\n * * **Transformation** To create new Durations out of old ones use {@link Duration#plus}, {@link Duration#minus}, {@link Duration#normalize}, {@link Duration#set}, {@link Duration#reconfigure}, {@link Duration#shiftTo}, and {@link Duration#negate}.\n * * **Output** To convert the Duration into other representations, see {@link Duration#as}, {@link Duration#toISO}, {@link Duration#toFormat}, and {@link Duration#toJSON}\n *\n * There's are more methods documented below. In addition, for more information on subtler topics like internationalization and validity, see the external documentation.\n */\nexport default class Duration {\n /**\n * @private\n */\n constructor(config) {\n const accurate = config.conversionAccuracy === \"longterm\" || false;\n let matrix = accurate ? accurateMatrix : casualMatrix;\n\n if (config.matrix) {\n matrix = config.matrix;\n }\n\n /**\n * @access private\n */\n this.values = config.values;\n /**\n * @access private\n */\n this.loc = config.loc || Locale.create();\n /**\n * @access private\n */\n this.conversionAccuracy = accurate ? \"longterm\" : \"casual\";\n /**\n * @access private\n */\n this.invalid = config.invalid || null;\n /**\n * @access private\n */\n this.matrix = matrix;\n /**\n * @access private\n */\n this.isLuxonDuration = true;\n }\n\n /**\n * Create Duration from a number of milliseconds.\n * @param {number} count of milliseconds\n * @param {Object} opts - options for parsing\n * @param {string} [opts.locale='en-US'] - the locale to use\n * @param {string} opts.numberingSystem - the numbering system to use\n * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use\n * @return {Duration}\n */\n static fromMillis(count, opts) {\n return Duration.fromObject({ milliseconds: count }, opts);\n }\n\n /**\n * Create a Duration from a JavaScript object with keys like 'years' and 'hours'.\n * If this object is empty then a zero milliseconds duration is returned.\n * @param {Object} obj - the object to create the DateTime from\n * @param {number} obj.years\n * @param {number} obj.quarters\n * @param {number} obj.months\n * @param {number} obj.weeks\n * @param {number} obj.days\n * @param {number} obj.hours\n * @param {number} obj.minutes\n * @param {number} obj.seconds\n * @param {number} obj.milliseconds\n * @param {Object} [opts=[]] - options for creating this Duration\n * @param {string} [opts.locale='en-US'] - the locale to use\n * @param {string} opts.numberingSystem - the numbering system to use\n * @param {string} [opts.conversionAccuracy='casual'] - the preset conversion system to use\n * @param {string} [opts.matrix=Object] - the custom conversion system to use\n * @return {Duration}\n */\n static fromObject(obj, opts = {}) {\n if (obj == null || typeof obj !== \"object\") {\n throw new InvalidArgumentError(\n `Duration.fromObject: argument expected to be an object, got ${\n obj === null ? \"null\" : typeof obj\n }`\n );\n }\n\n return new Duration({\n values: normalizeObject(obj, Duration.normalizeUnit),\n loc: Locale.fromObject(opts),\n conversionAccuracy: opts.conversionAccuracy,\n matrix: opts.matrix,\n });\n }\n\n /**\n * Create a Duration from DurationLike.\n *\n * @param {Object | number | Duration} durationLike\n * One of:\n * - object with keys like 'years' and 'hours'.\n * - number representing milliseconds\n * - Duration instance\n * @return {Duration}\n */\n static fromDurationLike(durationLike) {\n if (isNumber(durationLike)) {\n return Duration.fromMillis(durationLike);\n } else if (Duration.isDuration(durationLike)) {\n return durationLike;\n } else if (typeof durationLike === \"object\") {\n return Duration.fromObject(durationLike);\n } else {\n throw new InvalidArgumentError(\n `Unknown duration argument ${durationLike} of type ${typeof durationLike}`\n );\n }\n }\n\n /**\n * Create a Duration from an ISO 8601 duration string.\n * @param {string} text - text to parse\n * @param {Object} opts - options for parsing\n * @param {string} [opts.locale='en-US'] - the locale to use\n * @param {string} opts.numberingSystem - the numbering system to use\n * @param {string} [opts.conversionAccuracy='casual'] - the preset conversion system to use\n * @param {string} [opts.matrix=Object] - the preset conversion system to use\n * @see https://en.wikipedia.org/wiki/ISO_8601#Durations\n * @example Duration.fromISO('P3Y6M1W4DT12H30M5S').toObject() //=> { years: 3, months: 6, weeks: 1, days: 4, hours: 12, minutes: 30, seconds: 5 }\n * @example Duration.fromISO('PT23H').toObject() //=> { hours: 23 }\n * @example Duration.fromISO('P5Y3M').toObject() //=> { years: 5, months: 3 }\n * @return {Duration}\n */\n static fromISO(text, opts) {\n const [parsed] = parseISODuration(text);\n if (parsed) {\n return Duration.fromObject(parsed, opts);\n } else {\n return Duration.invalid(\"unparsable\", `the input \"${text}\" can't be parsed as ISO 8601`);\n }\n }\n\n /**\n * Create a Duration from an ISO 8601 time string.\n * @param {string} text - text to parse\n * @param {Object} opts - options for parsing\n * @param {string} [opts.locale='en-US'] - the locale to use\n * @param {string} opts.numberingSystem - the numbering system to use\n * @param {string} [opts.conversionAccuracy='casual'] - the preset conversion system to use\n * @param {string} [opts.matrix=Object] - the conversion system to use\n * @see https://en.wikipedia.org/wiki/ISO_8601#Times\n * @example Duration.fromISOTime('11:22:33.444').toObject() //=> { hours: 11, minutes: 22, seconds: 33, milliseconds: 444 }\n * @example Duration.fromISOTime('11:00').toObject() //=> { hours: 11, minutes: 0, seconds: 0 }\n * @example Duration.fromISOTime('T11:00').toObject() //=> { hours: 11, minutes: 0, seconds: 0 }\n * @example Duration.fromISOTime('1100').toObject() //=> { hours: 11, minutes: 0, seconds: 0 }\n * @example Duration.fromISOTime('T1100').toObject() //=> { hours: 11, minutes: 0, seconds: 0 }\n * @return {Duration}\n */\n static fromISOTime(text, opts) {\n const [parsed] = parseISOTimeOnly(text);\n if (parsed) {\n return Duration.fromObject(parsed, opts);\n } else {\n return Duration.invalid(\"unparsable\", `the input \"${text}\" can't be parsed as ISO 8601`);\n }\n }\n\n /**\n * Create an invalid Duration.\n * @param {string} reason - simple string of why this datetime is invalid. Should not contain parameters or anything else data-dependent\n * @param {string} [explanation=null] - longer explanation, may include parameters and other useful debugging information\n * @return {Duration}\n */\n static invalid(reason, explanation = null) {\n if (!reason) {\n throw new InvalidArgumentError(\"need to specify a reason the Duration is invalid\");\n }\n\n const invalid = reason instanceof Invalid ? reason : new Invalid(reason, explanation);\n\n if (Settings.throwOnInvalid) {\n throw new InvalidDurationError(invalid);\n } else {\n return new Duration({ invalid });\n }\n }\n\n /**\n * @private\n */\n static normalizeUnit(unit) {\n const normalized = {\n year: \"years\",\n years: \"years\",\n quarter: \"quarters\",\n quarters: \"quarters\",\n month: \"months\",\n months: \"months\",\n week: \"weeks\",\n weeks: \"weeks\",\n day: \"days\",\n days: \"days\",\n hour: \"hours\",\n hours: \"hours\",\n minute: \"minutes\",\n minutes: \"minutes\",\n second: \"seconds\",\n seconds: \"seconds\",\n millisecond: \"milliseconds\",\n milliseconds: \"milliseconds\",\n }[unit ? unit.toLowerCase() : unit];\n\n if (!normalized) throw new InvalidUnitError(unit);\n\n return normalized;\n }\n\n /**\n * Check if an object is a Duration. Works across context boundaries\n * @param {object} o\n * @return {boolean}\n */\n static isDuration(o) {\n return (o && o.isLuxonDuration) || false;\n }\n\n /**\n * Get the locale of a Duration, such 'en-GB'\n * @type {string}\n */\n get locale() {\n return this.isValid ? this.loc.locale : null;\n }\n\n /**\n * Get the numbering system of a Duration, such 'beng'. The numbering system is used when formatting the Duration\n *\n * @type {string}\n */\n get numberingSystem() {\n return this.isValid ? this.loc.numberingSystem : null;\n }\n\n /**\n * Returns a string representation of this Duration formatted according to the specified format string. You may use these tokens:\n * * `S` for milliseconds\n * * `s` for seconds\n * * `m` for minutes\n * * `h` for hours\n * * `d` for days\n * * `w` for weeks\n * * `M` for months\n * * `y` for years\n * Notes:\n * * Add padding by repeating the token, e.g. \"yy\" pads the years to two digits, \"hhhh\" pads the hours out to four digits\n * * Tokens can be escaped by wrapping with single quotes.\n * * The duration will be converted to the set of units in the format string using {@link Duration#shiftTo} and the Durations's conversion accuracy setting.\n * @param {string} fmt - the format string\n * @param {Object} opts - options\n * @param {boolean} [opts.floor=true] - floor numerical values\n * @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toFormat(\"y d s\") //=> \"1 6 2\"\n * @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toFormat(\"yy dd sss\") //=> \"01 06 002\"\n * @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toFormat(\"M S\") //=> \"12 518402000\"\n * @return {string}\n */\n toFormat(fmt, opts = {}) {\n // reverse-compat since 1.2; we always round down now, never up, and we do it by default\n const fmtOpts = {\n ...opts,\n floor: opts.round !== false && opts.floor !== false,\n };\n return this.isValid\n ? Formatter.create(this.loc, fmtOpts).formatDurationFromString(this, fmt)\n : INVALID;\n }\n\n /**\n * Returns a string representation of a Duration with all units included.\n * To modify its behavior, use `listStyle` and any Intl.NumberFormat option, though `unitDisplay` is especially relevant.\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#options\n * @param {Object} opts - Formatting options. Accepts the same keys as the options parameter of the native `Intl.NumberFormat` constructor, as well as `listStyle`.\n * @param {string} [opts.listStyle='narrow'] - How to format the merged list. Corresponds to the `style` property of the options parameter of the native `Intl.ListFormat` constructor.\n * @example\n * ```js\n * var dur = Duration.fromObject({ days: 1, hours: 5, minutes: 6 })\n * dur.toHuman() //=> '1 day, 5 hours, 6 minutes'\n * dur.toHuman({ listStyle: \"long\" }) //=> '1 day, 5 hours, and 6 minutes'\n * dur.toHuman({ unitDisplay: \"short\" }) //=> '1 day, 5 hr, 6 min'\n * ```\n */\n toHuman(opts = {}) {\n if (!this.isValid) return INVALID;\n\n const l = orderedUnits\n .map((unit) => {\n const val = this.values[unit];\n if (isUndefined(val)) {\n return null;\n }\n return this.loc\n .numberFormatter({ style: \"unit\", unitDisplay: \"long\", ...opts, unit: unit.slice(0, -1) })\n .format(val);\n })\n .filter((n) => n);\n\n return this.loc\n .listFormatter({ type: \"conjunction\", style: opts.listStyle || \"narrow\", ...opts })\n .format(l);\n }\n\n /**\n * Returns a JavaScript object with this Duration's values.\n * @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toObject() //=> { years: 1, days: 6, seconds: 2 }\n * @return {Object}\n */\n toObject() {\n if (!this.isValid) return {};\n return { ...this.values };\n }\n\n /**\n * Returns an ISO 8601-compliant string representation of this Duration.\n * @see https://en.wikipedia.org/wiki/ISO_8601#Durations\n * @example Duration.fromObject({ years: 3, seconds: 45 }).toISO() //=> 'P3YT45S'\n * @example Duration.fromObject({ months: 4, seconds: 45 }).toISO() //=> 'P4MT45S'\n * @example Duration.fromObject({ months: 5 }).toISO() //=> 'P5M'\n * @example Duration.fromObject({ minutes: 5 }).toISO() //=> 'PT5M'\n * @example Duration.fromObject({ milliseconds: 6 }).toISO() //=> 'PT0.006S'\n * @return {string}\n */\n toISO() {\n // we could use the formatter, but this is an easier way to get the minimum string\n if (!this.isValid) return null;\n\n let s = \"P\";\n if (this.years !== 0) s += this.years + \"Y\";\n if (this.months !== 0 || this.quarters !== 0) s += this.months + this.quarters * 3 + \"M\";\n if (this.weeks !== 0) s += this.weeks + \"W\";\n if (this.days !== 0) s += this.days + \"D\";\n if (this.hours !== 0 || this.minutes !== 0 || this.seconds !== 0 || this.milliseconds !== 0)\n s += \"T\";\n if (this.hours !== 0) s += this.hours + \"H\";\n if (this.minutes !== 0) s += this.minutes + \"M\";\n if (this.seconds !== 0 || this.milliseconds !== 0)\n // this will handle \"floating point madness\" by removing extra decimal places\n // https://stackoverflow.com/questions/588004/is-floating-point-math-broken\n s += roundTo(this.seconds + this.milliseconds / 1000, 3) + \"S\";\n if (s === \"P\") s += \"T0S\";\n return s;\n }\n\n /**\n * Returns an ISO 8601-compliant string representation of this Duration, formatted as a time of day.\n * Note that this will return null if the duration is invalid, negative, or equal to or greater than 24 hours.\n * @see https://en.wikipedia.org/wiki/ISO_8601#Times\n * @param {Object} opts - options\n * @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0\n * @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0\n * @param {boolean} [opts.includePrefix=false] - include the `T` prefix\n * @param {string} [opts.format='extended'] - choose between the basic and extended format\n * @example Duration.fromObject({ hours: 11 }).toISOTime() //=> '11:00:00.000'\n * @example Duration.fromObject({ hours: 11 }).toISOTime({ suppressMilliseconds: true }) //=> '11:00:00'\n * @example Duration.fromObject({ hours: 11 }).toISOTime({ suppressSeconds: true }) //=> '11:00'\n * @example Duration.fromObject({ hours: 11 }).toISOTime({ includePrefix: true }) //=> 'T11:00:00.000'\n * @example Duration.fromObject({ hours: 11 }).toISOTime({ format: 'basic' }) //=> '110000.000'\n * @return {string}\n */\n toISOTime(opts = {}) {\n if (!this.isValid) return null;\n\n const millis = this.toMillis();\n if (millis < 0 || millis >= 86400000) return null;\n\n opts = {\n suppressMilliseconds: false,\n suppressSeconds: false,\n includePrefix: false,\n format: \"extended\",\n ...opts,\n includeOffset: false,\n };\n\n const dateTime = DateTime.fromMillis(millis, { zone: \"UTC\" });\n return dateTime.toISOTime(opts);\n }\n\n /**\n * Returns an ISO 8601 representation of this Duration appropriate for use in JSON.\n * @return {string}\n */\n toJSON() {\n return this.toISO();\n }\n\n /**\n * Returns an ISO 8601 representation of this Duration appropriate for use in debugging.\n * @return {string}\n */\n toString() {\n return this.toISO();\n }\n\n /**\n * Returns a string representation of this Duration appropriate for the REPL.\n * @return {string}\n */\n [Symbol.for(\"nodejs.util.inspect.custom\")]() {\n if (this.isValid) {\n return `Duration { values: ${JSON.stringify(this.values)} }`;\n } else {\n return `Duration { Invalid, reason: ${this.invalidReason} }`;\n }\n }\n\n /**\n * Returns an milliseconds value of this Duration.\n * @return {number}\n */\n toMillis() {\n if (!this.isValid) return NaN;\n\n return durationToMillis(this.matrix, this.values);\n }\n\n /**\n * Returns an milliseconds value of this Duration. Alias of {@link toMillis}\n * @return {number}\n */\n valueOf() {\n return this.toMillis();\n }\n\n /**\n * Make this Duration longer by the specified amount. Return a newly-constructed Duration.\n * @param {Duration|Object|number} duration - The amount to add. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject()\n * @return {Duration}\n */\n plus(duration) {\n if (!this.isValid) return this;\n\n const dur = Duration.fromDurationLike(duration),\n result = {};\n\n for (const k of orderedUnits) {\n if (hasOwnProperty(dur.values, k) || hasOwnProperty(this.values, k)) {\n result[k] = dur.get(k) + this.get(k);\n }\n }\n\n return clone(this, { values: result }, true);\n }\n\n /**\n * Make this Duration shorter by the specified amount. Return a newly-constructed Duration.\n * @param {Duration|Object|number} duration - The amount to subtract. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject()\n * @return {Duration}\n */\n minus(duration) {\n if (!this.isValid) return this;\n\n const dur = Duration.fromDurationLike(duration);\n return this.plus(dur.negate());\n }\n\n /**\n * Scale this Duration by the specified amount. Return a newly-constructed Duration.\n * @param {function} fn - The function to apply to each unit. Arity is 1 or 2: the value of the unit and, optionally, the unit name. Must return a number.\n * @example Duration.fromObject({ hours: 1, minutes: 30 }).mapUnits(x => x * 2) //=> { hours: 2, minutes: 60 }\n * @example Duration.fromObject({ hours: 1, minutes: 30 }).mapUnits((x, u) => u === \"hours\" ? x * 2 : x) //=> { hours: 2, minutes: 30 }\n * @return {Duration}\n */\n mapUnits(fn) {\n if (!this.isValid) return this;\n const result = {};\n for (const k of Object.keys(this.values)) {\n result[k] = asNumber(fn(this.values[k], k));\n }\n return clone(this, { values: result }, true);\n }\n\n /**\n * Get the value of unit.\n * @param {string} unit - a unit such as 'minute' or 'day'\n * @example Duration.fromObject({years: 2, days: 3}).get('years') //=> 2\n * @example Duration.fromObject({years: 2, days: 3}).get('months') //=> 0\n * @example Duration.fromObject({years: 2, days: 3}).get('days') //=> 3\n * @return {number}\n */\n get(unit) {\n return this[Duration.normalizeUnit(unit)];\n }\n\n /**\n * \"Set\" the values of specified units. Return a newly-constructed Duration.\n * @param {Object} values - a mapping of units to numbers\n * @example dur.set({ years: 2017 })\n * @example dur.set({ hours: 8, minutes: 30 })\n * @return {Duration}\n */\n set(values) {\n if (!this.isValid) return this;\n\n const mixed = { ...this.values, ...normalizeObject(values, Duration.normalizeUnit) };\n return clone(this, { values: mixed });\n }\n\n /**\n * \"Set\" the locale and/or numberingSystem. Returns a newly-constructed Duration.\n * @example dur.reconfigure({ locale: 'en-GB' })\n * @return {Duration}\n */\n reconfigure({ locale, numberingSystem, conversionAccuracy, matrix } = {}) {\n const loc = this.loc.clone({ locale, numberingSystem });\n const opts = { loc, matrix, conversionAccuracy };\n return clone(this, opts);\n }\n\n /**\n * Return the length of the duration in the specified unit.\n * @param {string} unit - a unit such as 'minutes' or 'days'\n * @example Duration.fromObject({years: 1}).as('days') //=> 365\n * @example Duration.fromObject({years: 1}).as('months') //=> 12\n * @example Duration.fromObject({hours: 60}).as('days') //=> 2.5\n * @return {number}\n */\n as(unit) {\n return this.isValid ? this.shiftTo(unit).get(unit) : NaN;\n }\n\n /**\n * Reduce this Duration to its canonical representation in its current units.\n * Assuming the overall value of the Duration is positive, this means:\n * - excessive values for lower-order units are converted to higher-order units (if possible, see first and second example)\n * - negative lower-order units are converted to higher order units (there must be such a higher order unit, otherwise\n * the overall value would be negative, see third example)\n * - fractional values for higher-order units are converted to lower-order units (if possible, see fourth example)\n *\n * If the overall value is negative, the result of this method is equivalent to `this.negate().normalize().negate()`.\n * @example Duration.fromObject({ years: 2, days: 5000 }).normalize().toObject() //=> { years: 15, days: 255 }\n * @example Duration.fromObject({ days: 5000 }).normalize().toObject() //=> { days: 5000 }\n * @example Duration.fromObject({ hours: 12, minutes: -45 }).normalize().toObject() //=> { hours: 11, minutes: 15 }\n * @example Duration.fromObject({ years: 2.5, days: 0, hours: 0 }).normalize().toObject() //=> { years: 2, days: 182, hours: 12 }\n * @return {Duration}\n */\n normalize() {\n if (!this.isValid) return this;\n const vals = this.toObject();\n normalizeValues(this.matrix, vals);\n return clone(this, { values: vals }, true);\n }\n\n /**\n * Rescale units to its largest representation\n * @example Duration.fromObject({ milliseconds: 90000 }).rescale().toObject() //=> { minutes: 1, seconds: 30 }\n * @return {Duration}\n */\n rescale() {\n if (!this.isValid) return this;\n const vals = removeZeroes(this.normalize().shiftToAll().toObject());\n return clone(this, { values: vals }, true);\n }\n\n /**\n * Convert this Duration into its representation in a different set of units.\n * @example Duration.fromObject({ hours: 1, seconds: 30 }).shiftTo('minutes', 'milliseconds').toObject() //=> { minutes: 60, milliseconds: 30000 }\n * @return {Duration}\n */\n shiftTo(...units) {\n if (!this.isValid) return this;\n\n if (units.length === 0) {\n return this;\n }\n\n units = units.map((u) => Duration.normalizeUnit(u));\n\n const built = {},\n accumulated = {},\n vals = this.toObject();\n let lastUnit;\n\n for (const k of orderedUnits) {\n if (units.indexOf(k) >= 0) {\n lastUnit = k;\n\n let own = 0;\n\n // anything we haven't boiled down yet should get boiled to this unit\n for (const ak in accumulated) {\n own += this.matrix[ak][k] * accumulated[ak];\n accumulated[ak] = 0;\n }\n\n // plus anything that's already in this unit\n if (isNumber(vals[k])) {\n own += vals[k];\n }\n\n // only keep the integer part for now in the hopes of putting any decimal part\n // into a smaller unit later\n const i = Math.trunc(own);\n built[k] = i;\n accumulated[k] = (own * 1000 - i * 1000) / 1000;\n\n // otherwise, keep it in the wings to boil it later\n } else if (isNumber(vals[k])) {\n accumulated[k] = vals[k];\n }\n }\n\n // anything leftover becomes the decimal for the last unit\n // lastUnit must be defined since units is not empty\n for (const key in accumulated) {\n if (accumulated[key] !== 0) {\n built[lastUnit] +=\n key === lastUnit ? accumulated[key] : accumulated[key] / this.matrix[lastUnit][key];\n }\n }\n\n normalizeValues(this.matrix, built);\n return clone(this, { values: built }, true);\n }\n\n /**\n * Shift this Duration to all available units.\n * Same as shiftTo(\"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", \"seconds\", \"milliseconds\")\n * @return {Duration}\n */\n shiftToAll() {\n if (!this.isValid) return this;\n return this.shiftTo(\n \"years\",\n \"months\",\n \"weeks\",\n \"days\",\n \"hours\",\n \"minutes\",\n \"seconds\",\n \"milliseconds\"\n );\n }\n\n /**\n * Return the negative of this Duration.\n * @example Duration.fromObject({ hours: 1, seconds: 30 }).negate().toObject() //=> { hours: -1, seconds: -30 }\n * @return {Duration}\n */\n negate() {\n if (!this.isValid) return this;\n const negated = {};\n for (const k of Object.keys(this.values)) {\n negated[k] = this.values[k] === 0 ? 0 : -this.values[k];\n }\n return clone(this, { values: negated }, true);\n }\n\n /**\n * Get the years.\n * @type {number}\n */\n get years() {\n return this.isValid ? this.values.years || 0 : NaN;\n }\n\n /**\n * Get the quarters.\n * @type {number}\n */\n get quarters() {\n return this.isValid ? this.values.quarters || 0 : NaN;\n }\n\n /**\n * Get the months.\n * @type {number}\n */\n get months() {\n return this.isValid ? this.values.months || 0 : NaN;\n }\n\n /**\n * Get the weeks\n * @type {number}\n */\n get weeks() {\n return this.isValid ? this.values.weeks || 0 : NaN;\n }\n\n /**\n * Get the days.\n * @type {number}\n */\n get days() {\n return this.isValid ? this.values.days || 0 : NaN;\n }\n\n /**\n * Get the hours.\n * @type {number}\n */\n get hours() {\n return this.isValid ? this.values.hours || 0 : NaN;\n }\n\n /**\n * Get the minutes.\n * @type {number}\n */\n get minutes() {\n return this.isValid ? this.values.minutes || 0 : NaN;\n }\n\n /**\n * Get the seconds.\n * @return {number}\n */\n get seconds() {\n return this.isValid ? this.values.seconds || 0 : NaN;\n }\n\n /**\n * Get the milliseconds.\n * @return {number}\n */\n get milliseconds() {\n return this.isValid ? this.values.milliseconds || 0 : NaN;\n }\n\n /**\n * Returns whether the Duration is invalid. Invalid durations are returned by diff operations\n * on invalid DateTimes or Intervals.\n * @return {boolean}\n */\n get isValid() {\n return this.invalid === null;\n }\n\n /**\n * Returns an error code if this Duration became invalid, or null if the Duration is valid\n * @return {string}\n */\n get invalidReason() {\n return this.invalid ? this.invalid.reason : null;\n }\n\n /**\n * Returns an explanation of why this Duration became invalid, or null if the Duration is valid\n * @type {string}\n */\n get invalidExplanation() {\n return this.invalid ? this.invalid.explanation : null;\n }\n\n /**\n * Equality check\n * Two Durations are equal iff they have the same units and the same values for each unit.\n * @param {Duration} other\n * @return {boolean}\n */\n equals(other) {\n if (!this.isValid || !other.isValid) {\n return false;\n }\n\n if (!this.loc.equals(other.loc)) {\n return false;\n }\n\n function eq(v1, v2) {\n // Consider 0 and undefined as equal\n if (v1 === undefined || v1 === 0) return v2 === undefined || v2 === 0;\n return v1 === v2;\n }\n\n for (const u of orderedUnits) {\n if (!eq(this.values[u], other.values[u])) {\n return false;\n }\n }\n return true;\n }\n}\n"],"x_google_ignoreList":[0],"mappings":"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"}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
|
|
2
|
+
//#region ../../node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/errors.js
|
|
3
|
+
/**
|
|
4
|
+
* @private
|
|
5
|
+
*/
|
|
6
|
+
var LuxonError = class extends Error {};
|
|
7
|
+
/**
|
|
8
|
+
* @private
|
|
9
|
+
*/
|
|
10
|
+
var InvalidDateTimeError = class extends LuxonError {
|
|
11
|
+
constructor(reason) {
|
|
12
|
+
super(`Invalid DateTime: ${reason.toMessage()}`);
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @private
|
|
17
|
+
*/
|
|
18
|
+
var InvalidIntervalError = class extends LuxonError {
|
|
19
|
+
constructor(reason) {
|
|
20
|
+
super(`Invalid Interval: ${reason.toMessage()}`);
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @private
|
|
25
|
+
*/
|
|
26
|
+
var InvalidDurationError = class extends LuxonError {
|
|
27
|
+
constructor(reason) {
|
|
28
|
+
super(`Invalid Duration: ${reason.toMessage()}`);
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* @private
|
|
33
|
+
*/
|
|
34
|
+
var ConflictingSpecificationError = class extends LuxonError {};
|
|
35
|
+
/**
|
|
36
|
+
* @private
|
|
37
|
+
*/
|
|
38
|
+
var InvalidUnitError = class extends LuxonError {
|
|
39
|
+
constructor(unit) {
|
|
40
|
+
super(`Invalid unit ${unit}`);
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* @private
|
|
45
|
+
*/
|
|
46
|
+
var InvalidArgumentError = class extends LuxonError {};
|
|
47
|
+
/**
|
|
48
|
+
* @private
|
|
49
|
+
*/
|
|
50
|
+
var ZoneIsAbstractError = class extends LuxonError {
|
|
51
|
+
constructor() {
|
|
52
|
+
super("Zone is an abstract class");
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
//#endregion
|
|
57
|
+
exports.ConflictingSpecificationError = ConflictingSpecificationError;
|
|
58
|
+
exports.InvalidArgumentError = InvalidArgumentError;
|
|
59
|
+
exports.InvalidDateTimeError = InvalidDateTimeError;
|
|
60
|
+
exports.InvalidDurationError = InvalidDurationError;
|
|
61
|
+
exports.InvalidIntervalError = InvalidIntervalError;
|
|
62
|
+
exports.InvalidUnitError = InvalidUnitError;
|
|
63
|
+
exports.ZoneIsAbstractError = ZoneIsAbstractError;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
//#region ../../node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/errors.js
|
|
2
|
+
/**
|
|
3
|
+
* @private
|
|
4
|
+
*/
|
|
5
|
+
var LuxonError = class extends Error {};
|
|
6
|
+
/**
|
|
7
|
+
* @private
|
|
8
|
+
*/
|
|
9
|
+
var InvalidDateTimeError = class extends LuxonError {
|
|
10
|
+
constructor(reason) {
|
|
11
|
+
super(`Invalid DateTime: ${reason.toMessage()}`);
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* @private
|
|
16
|
+
*/
|
|
17
|
+
var InvalidIntervalError = class extends LuxonError {
|
|
18
|
+
constructor(reason) {
|
|
19
|
+
super(`Invalid Interval: ${reason.toMessage()}`);
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @private
|
|
24
|
+
*/
|
|
25
|
+
var InvalidDurationError = class extends LuxonError {
|
|
26
|
+
constructor(reason) {
|
|
27
|
+
super(`Invalid Duration: ${reason.toMessage()}`);
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* @private
|
|
32
|
+
*/
|
|
33
|
+
var ConflictingSpecificationError = class extends LuxonError {};
|
|
34
|
+
/**
|
|
35
|
+
* @private
|
|
36
|
+
*/
|
|
37
|
+
var InvalidUnitError = class extends LuxonError {
|
|
38
|
+
constructor(unit) {
|
|
39
|
+
super(`Invalid unit ${unit}`);
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* @private
|
|
44
|
+
*/
|
|
45
|
+
var InvalidArgumentError = class extends LuxonError {};
|
|
46
|
+
/**
|
|
47
|
+
* @private
|
|
48
|
+
*/
|
|
49
|
+
var ZoneIsAbstractError = class extends LuxonError {
|
|
50
|
+
constructor() {
|
|
51
|
+
super("Zone is an abstract class");
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
//#endregion
|
|
56
|
+
export { ConflictingSpecificationError, InvalidArgumentError, InvalidDateTimeError, InvalidDurationError, InvalidIntervalError, InvalidUnitError, ZoneIsAbstractError };
|
|
57
|
+
//# sourceMappingURL=errors.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"errors.mjs","names":[],"sources":["../../../../../../../../../node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/errors.js"],"sourcesContent":["// these aren't really private, but nor are they really useful to document\n\n/**\n * @private\n */\nclass LuxonError extends Error {}\n\n/**\n * @private\n */\nexport class InvalidDateTimeError extends LuxonError {\n constructor(reason) {\n super(`Invalid DateTime: ${reason.toMessage()}`);\n }\n}\n\n/**\n * @private\n */\nexport class InvalidIntervalError extends LuxonError {\n constructor(reason) {\n super(`Invalid Interval: ${reason.toMessage()}`);\n }\n}\n\n/**\n * @private\n */\nexport class InvalidDurationError extends LuxonError {\n constructor(reason) {\n super(`Invalid Duration: ${reason.toMessage()}`);\n }\n}\n\n/**\n * @private\n */\nexport class ConflictingSpecificationError extends LuxonError {}\n\n/**\n * @private\n */\nexport class InvalidUnitError extends LuxonError {\n constructor(unit) {\n super(`Invalid unit ${unit}`);\n }\n}\n\n/**\n * @private\n */\nexport class InvalidArgumentError extends LuxonError {}\n\n/**\n * @private\n */\nexport class ZoneIsAbstractError extends LuxonError {\n constructor() {\n super(\"Zone is an abstract class\");\n }\n}\n"],"x_google_ignoreList":[0],"mappings":";;;;AAKA,IAAM,aAAN,cAAyB,MAAM;;;;AAK/B,IAAa,uBAAb,cAA0C,WAAW;CACnD,YAAY,QAAQ;AAClB,QAAM,qBAAqB,OAAO,WAAW,GAAG;;;;;;AAOpD,IAAa,uBAAb,cAA0C,WAAW;CACnD,YAAY,QAAQ;AAClB,QAAM,qBAAqB,OAAO,WAAW,GAAG;;;;;;AAOpD,IAAa,uBAAb,cAA0C,WAAW;CACnD,YAAY,QAAQ;AAClB,QAAM,qBAAqB,OAAO,WAAW,GAAG;;;;;;AAOpD,IAAa,gCAAb,cAAmD,WAAW;;;;AAK9D,IAAa,mBAAb,cAAsC,WAAW;CAC/C,YAAY,MAAM;AAChB,QAAM,gBAAgB,OAAO;;;;;;AAOjC,IAAa,uBAAb,cAA0C,WAAW;;;;AAKrD,IAAa,sBAAb,cAAyC,WAAW;CAClD,cAAc;AACZ,QAAM,4BAA4B"}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
const require_errors = require('../errors.js');
|
|
2
|
+
const require_invalid = require('./invalid.js');
|
|
3
|
+
const require_util = require('./util.js');
|
|
4
|
+
|
|
5
|
+
//#region ../../node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/conversions.js
|
|
6
|
+
const nonLeapLadder = [
|
|
7
|
+
0,
|
|
8
|
+
31,
|
|
9
|
+
59,
|
|
10
|
+
90,
|
|
11
|
+
120,
|
|
12
|
+
151,
|
|
13
|
+
181,
|
|
14
|
+
212,
|
|
15
|
+
243,
|
|
16
|
+
273,
|
|
17
|
+
304,
|
|
18
|
+
334
|
|
19
|
+
], leapLadder = [
|
|
20
|
+
0,
|
|
21
|
+
31,
|
|
22
|
+
60,
|
|
23
|
+
91,
|
|
24
|
+
121,
|
|
25
|
+
152,
|
|
26
|
+
182,
|
|
27
|
+
213,
|
|
28
|
+
244,
|
|
29
|
+
274,
|
|
30
|
+
305,
|
|
31
|
+
335
|
|
32
|
+
];
|
|
33
|
+
function unitOutOfRange(unit, value) {
|
|
34
|
+
return new require_invalid.default("unit out of range", `you specified ${value} (of type ${typeof value}) as a ${unit}, which is invalid`);
|
|
35
|
+
}
|
|
36
|
+
function dayOfWeek(year, month, day) {
|
|
37
|
+
const d = new Date(Date.UTC(year, month - 1, day));
|
|
38
|
+
if (year < 100 && year >= 0) d.setUTCFullYear(d.getUTCFullYear() - 1900);
|
|
39
|
+
const js = d.getUTCDay();
|
|
40
|
+
return js === 0 ? 7 : js;
|
|
41
|
+
}
|
|
42
|
+
function computeOrdinal(year, month, day) {
|
|
43
|
+
return day + (require_util.isLeapYear(year) ? leapLadder : nonLeapLadder)[month - 1];
|
|
44
|
+
}
|
|
45
|
+
function uncomputeOrdinal(year, ordinal) {
|
|
46
|
+
const table = require_util.isLeapYear(year) ? leapLadder : nonLeapLadder, month0 = table.findIndex((i) => i < ordinal), day = ordinal - table[month0];
|
|
47
|
+
return {
|
|
48
|
+
month: month0 + 1,
|
|
49
|
+
day
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
function isoWeekdayToLocal(isoWeekday, startOfWeek) {
|
|
53
|
+
return (isoWeekday - startOfWeek + 7) % 7 + 1;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* @private
|
|
57
|
+
*/
|
|
58
|
+
function gregorianToWeek(gregObj, minDaysInFirstWeek = 4, startOfWeek = 1) {
|
|
59
|
+
const { year, month, day } = gregObj, ordinal = computeOrdinal(year, month, day), weekday = isoWeekdayToLocal(dayOfWeek(year, month, day), startOfWeek);
|
|
60
|
+
let weekNumber = Math.floor((ordinal - weekday + 14 - minDaysInFirstWeek) / 7), weekYear;
|
|
61
|
+
if (weekNumber < 1) {
|
|
62
|
+
weekYear = year - 1;
|
|
63
|
+
weekNumber = require_util.weeksInWeekYear(weekYear, minDaysInFirstWeek, startOfWeek);
|
|
64
|
+
} else if (weekNumber > require_util.weeksInWeekYear(year, minDaysInFirstWeek, startOfWeek)) {
|
|
65
|
+
weekYear = year + 1;
|
|
66
|
+
weekNumber = 1;
|
|
67
|
+
} else weekYear = year;
|
|
68
|
+
return {
|
|
69
|
+
weekYear,
|
|
70
|
+
weekNumber,
|
|
71
|
+
weekday,
|
|
72
|
+
...require_util.timeObject(gregObj)
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
function weekToGregorian(weekData, minDaysInFirstWeek = 4, startOfWeek = 1) {
|
|
76
|
+
const { weekYear, weekNumber, weekday } = weekData, weekdayOfJan4 = isoWeekdayToLocal(dayOfWeek(weekYear, 1, minDaysInFirstWeek), startOfWeek), yearInDays = require_util.daysInYear(weekYear);
|
|
77
|
+
let ordinal = weekNumber * 7 + weekday - weekdayOfJan4 - 7 + minDaysInFirstWeek, year;
|
|
78
|
+
if (ordinal < 1) {
|
|
79
|
+
year = weekYear - 1;
|
|
80
|
+
ordinal += require_util.daysInYear(year);
|
|
81
|
+
} else if (ordinal > yearInDays) {
|
|
82
|
+
year = weekYear + 1;
|
|
83
|
+
ordinal -= require_util.daysInYear(weekYear);
|
|
84
|
+
} else year = weekYear;
|
|
85
|
+
const { month, day } = uncomputeOrdinal(year, ordinal);
|
|
86
|
+
return {
|
|
87
|
+
year,
|
|
88
|
+
month,
|
|
89
|
+
day,
|
|
90
|
+
...require_util.timeObject(weekData)
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
function gregorianToOrdinal(gregData) {
|
|
94
|
+
const { year, month, day } = gregData;
|
|
95
|
+
return {
|
|
96
|
+
year,
|
|
97
|
+
ordinal: computeOrdinal(year, month, day),
|
|
98
|
+
...require_util.timeObject(gregData)
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
function ordinalToGregorian(ordinalData) {
|
|
102
|
+
const { year, ordinal } = ordinalData;
|
|
103
|
+
const { month, day } = uncomputeOrdinal(year, ordinal);
|
|
104
|
+
return {
|
|
105
|
+
year,
|
|
106
|
+
month,
|
|
107
|
+
day,
|
|
108
|
+
...require_util.timeObject(ordinalData)
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Check if local week units like localWeekday are used in obj.
|
|
113
|
+
* If so, validates that they are not mixed with ISO week units and then copies them to the normal week unit properties.
|
|
114
|
+
* Modifies obj in-place!
|
|
115
|
+
* @param obj the object values
|
|
116
|
+
*/
|
|
117
|
+
function usesLocalWeekValues(obj, loc) {
|
|
118
|
+
if (!require_util.isUndefined(obj.localWeekday) || !require_util.isUndefined(obj.localWeekNumber) || !require_util.isUndefined(obj.localWeekYear)) {
|
|
119
|
+
if (!require_util.isUndefined(obj.weekday) || !require_util.isUndefined(obj.weekNumber) || !require_util.isUndefined(obj.weekYear)) throw new require_errors.ConflictingSpecificationError("Cannot mix locale-based week fields with ISO-based week fields");
|
|
120
|
+
if (!require_util.isUndefined(obj.localWeekday)) obj.weekday = obj.localWeekday;
|
|
121
|
+
if (!require_util.isUndefined(obj.localWeekNumber)) obj.weekNumber = obj.localWeekNumber;
|
|
122
|
+
if (!require_util.isUndefined(obj.localWeekYear)) obj.weekYear = obj.localWeekYear;
|
|
123
|
+
delete obj.localWeekday;
|
|
124
|
+
delete obj.localWeekNumber;
|
|
125
|
+
delete obj.localWeekYear;
|
|
126
|
+
return {
|
|
127
|
+
minDaysInFirstWeek: loc.getMinDaysInFirstWeek(),
|
|
128
|
+
startOfWeek: loc.getStartOfWeek()
|
|
129
|
+
};
|
|
130
|
+
} else return {
|
|
131
|
+
minDaysInFirstWeek: 4,
|
|
132
|
+
startOfWeek: 1
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
function hasInvalidWeekData(obj, minDaysInFirstWeek = 4, startOfWeek = 1) {
|
|
136
|
+
const validYear = require_util.isInteger(obj.weekYear), validWeek = require_util.integerBetween(obj.weekNumber, 1, require_util.weeksInWeekYear(obj.weekYear, minDaysInFirstWeek, startOfWeek)), validWeekday = require_util.integerBetween(obj.weekday, 1, 7);
|
|
137
|
+
if (!validYear) return unitOutOfRange("weekYear", obj.weekYear);
|
|
138
|
+
else if (!validWeek) return unitOutOfRange("week", obj.weekNumber);
|
|
139
|
+
else if (!validWeekday) return unitOutOfRange("weekday", obj.weekday);
|
|
140
|
+
else return false;
|
|
141
|
+
}
|
|
142
|
+
function hasInvalidOrdinalData(obj) {
|
|
143
|
+
const validYear = require_util.isInteger(obj.year), validOrdinal = require_util.integerBetween(obj.ordinal, 1, require_util.daysInYear(obj.year));
|
|
144
|
+
if (!validYear) return unitOutOfRange("year", obj.year);
|
|
145
|
+
else if (!validOrdinal) return unitOutOfRange("ordinal", obj.ordinal);
|
|
146
|
+
else return false;
|
|
147
|
+
}
|
|
148
|
+
function hasInvalidGregorianData(obj) {
|
|
149
|
+
const validYear = require_util.isInteger(obj.year), validMonth = require_util.integerBetween(obj.month, 1, 12), validDay = require_util.integerBetween(obj.day, 1, require_util.daysInMonth(obj.year, obj.month));
|
|
150
|
+
if (!validYear) return unitOutOfRange("year", obj.year);
|
|
151
|
+
else if (!validMonth) return unitOutOfRange("month", obj.month);
|
|
152
|
+
else if (!validDay) return unitOutOfRange("day", obj.day);
|
|
153
|
+
else return false;
|
|
154
|
+
}
|
|
155
|
+
function hasInvalidTimeData(obj) {
|
|
156
|
+
const { hour, minute, second, millisecond } = obj;
|
|
157
|
+
const validHour = require_util.integerBetween(hour, 0, 23) || hour === 24 && minute === 0 && second === 0 && millisecond === 0, validMinute = require_util.integerBetween(minute, 0, 59), validSecond = require_util.integerBetween(second, 0, 59), validMillisecond = require_util.integerBetween(millisecond, 0, 999);
|
|
158
|
+
if (!validHour) return unitOutOfRange("hour", hour);
|
|
159
|
+
else if (!validMinute) return unitOutOfRange("minute", minute);
|
|
160
|
+
else if (!validSecond) return unitOutOfRange("second", second);
|
|
161
|
+
else if (!validMillisecond) return unitOutOfRange("millisecond", millisecond);
|
|
162
|
+
else return false;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
//#endregion
|
|
166
|
+
exports.dayOfWeek = dayOfWeek;
|
|
167
|
+
exports.gregorianToOrdinal = gregorianToOrdinal;
|
|
168
|
+
exports.gregorianToWeek = gregorianToWeek;
|
|
169
|
+
exports.hasInvalidGregorianData = hasInvalidGregorianData;
|
|
170
|
+
exports.hasInvalidOrdinalData = hasInvalidOrdinalData;
|
|
171
|
+
exports.hasInvalidTimeData = hasInvalidTimeData;
|
|
172
|
+
exports.hasInvalidWeekData = hasInvalidWeekData;
|
|
173
|
+
exports.isoWeekdayToLocal = isoWeekdayToLocal;
|
|
174
|
+
exports.ordinalToGregorian = ordinalToGregorian;
|
|
175
|
+
exports.usesLocalWeekValues = usesLocalWeekValues;
|
|
176
|
+
exports.weekToGregorian = weekToGregorian;
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import { ConflictingSpecificationError } from "../errors.mjs";
|
|
2
|
+
import Invalid from "./invalid.mjs";
|
|
3
|
+
import { daysInMonth, daysInYear, integerBetween, isInteger, isLeapYear, isUndefined, timeObject, weeksInWeekYear } from "./util.mjs";
|
|
4
|
+
|
|
5
|
+
//#region ../../node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/conversions.js
|
|
6
|
+
const nonLeapLadder = [
|
|
7
|
+
0,
|
|
8
|
+
31,
|
|
9
|
+
59,
|
|
10
|
+
90,
|
|
11
|
+
120,
|
|
12
|
+
151,
|
|
13
|
+
181,
|
|
14
|
+
212,
|
|
15
|
+
243,
|
|
16
|
+
273,
|
|
17
|
+
304,
|
|
18
|
+
334
|
|
19
|
+
], leapLadder = [
|
|
20
|
+
0,
|
|
21
|
+
31,
|
|
22
|
+
60,
|
|
23
|
+
91,
|
|
24
|
+
121,
|
|
25
|
+
152,
|
|
26
|
+
182,
|
|
27
|
+
213,
|
|
28
|
+
244,
|
|
29
|
+
274,
|
|
30
|
+
305,
|
|
31
|
+
335
|
|
32
|
+
];
|
|
33
|
+
function unitOutOfRange(unit, value) {
|
|
34
|
+
return new Invalid("unit out of range", `you specified ${value} (of type ${typeof value}) as a ${unit}, which is invalid`);
|
|
35
|
+
}
|
|
36
|
+
function dayOfWeek(year, month, day) {
|
|
37
|
+
const d = new Date(Date.UTC(year, month - 1, day));
|
|
38
|
+
if (year < 100 && year >= 0) d.setUTCFullYear(d.getUTCFullYear() - 1900);
|
|
39
|
+
const js = d.getUTCDay();
|
|
40
|
+
return js === 0 ? 7 : js;
|
|
41
|
+
}
|
|
42
|
+
function computeOrdinal(year, month, day) {
|
|
43
|
+
return day + (isLeapYear(year) ? leapLadder : nonLeapLadder)[month - 1];
|
|
44
|
+
}
|
|
45
|
+
function uncomputeOrdinal(year, ordinal) {
|
|
46
|
+
const table = isLeapYear(year) ? leapLadder : nonLeapLadder, month0 = table.findIndex((i) => i < ordinal), day = ordinal - table[month0];
|
|
47
|
+
return {
|
|
48
|
+
month: month0 + 1,
|
|
49
|
+
day
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
function isoWeekdayToLocal(isoWeekday, startOfWeek) {
|
|
53
|
+
return (isoWeekday - startOfWeek + 7) % 7 + 1;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* @private
|
|
57
|
+
*/
|
|
58
|
+
function gregorianToWeek(gregObj, minDaysInFirstWeek = 4, startOfWeek = 1) {
|
|
59
|
+
const { year, month, day } = gregObj, ordinal = computeOrdinal(year, month, day), weekday = isoWeekdayToLocal(dayOfWeek(year, month, day), startOfWeek);
|
|
60
|
+
let weekNumber = Math.floor((ordinal - weekday + 14 - minDaysInFirstWeek) / 7), weekYear;
|
|
61
|
+
if (weekNumber < 1) {
|
|
62
|
+
weekYear = year - 1;
|
|
63
|
+
weekNumber = weeksInWeekYear(weekYear, minDaysInFirstWeek, startOfWeek);
|
|
64
|
+
} else if (weekNumber > weeksInWeekYear(year, minDaysInFirstWeek, startOfWeek)) {
|
|
65
|
+
weekYear = year + 1;
|
|
66
|
+
weekNumber = 1;
|
|
67
|
+
} else weekYear = year;
|
|
68
|
+
return {
|
|
69
|
+
weekYear,
|
|
70
|
+
weekNumber,
|
|
71
|
+
weekday,
|
|
72
|
+
...timeObject(gregObj)
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
function weekToGregorian(weekData, minDaysInFirstWeek = 4, startOfWeek = 1) {
|
|
76
|
+
const { weekYear, weekNumber, weekday } = weekData, weekdayOfJan4 = isoWeekdayToLocal(dayOfWeek(weekYear, 1, minDaysInFirstWeek), startOfWeek), yearInDays = daysInYear(weekYear);
|
|
77
|
+
let ordinal = weekNumber * 7 + weekday - weekdayOfJan4 - 7 + minDaysInFirstWeek, year;
|
|
78
|
+
if (ordinal < 1) {
|
|
79
|
+
year = weekYear - 1;
|
|
80
|
+
ordinal += daysInYear(year);
|
|
81
|
+
} else if (ordinal > yearInDays) {
|
|
82
|
+
year = weekYear + 1;
|
|
83
|
+
ordinal -= daysInYear(weekYear);
|
|
84
|
+
} else year = weekYear;
|
|
85
|
+
const { month, day } = uncomputeOrdinal(year, ordinal);
|
|
86
|
+
return {
|
|
87
|
+
year,
|
|
88
|
+
month,
|
|
89
|
+
day,
|
|
90
|
+
...timeObject(weekData)
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
function gregorianToOrdinal(gregData) {
|
|
94
|
+
const { year, month, day } = gregData;
|
|
95
|
+
return {
|
|
96
|
+
year,
|
|
97
|
+
ordinal: computeOrdinal(year, month, day),
|
|
98
|
+
...timeObject(gregData)
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
function ordinalToGregorian(ordinalData) {
|
|
102
|
+
const { year, ordinal } = ordinalData;
|
|
103
|
+
const { month, day } = uncomputeOrdinal(year, ordinal);
|
|
104
|
+
return {
|
|
105
|
+
year,
|
|
106
|
+
month,
|
|
107
|
+
day,
|
|
108
|
+
...timeObject(ordinalData)
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Check if local week units like localWeekday are used in obj.
|
|
113
|
+
* If so, validates that they are not mixed with ISO week units and then copies them to the normal week unit properties.
|
|
114
|
+
* Modifies obj in-place!
|
|
115
|
+
* @param obj the object values
|
|
116
|
+
*/
|
|
117
|
+
function usesLocalWeekValues(obj, loc) {
|
|
118
|
+
if (!isUndefined(obj.localWeekday) || !isUndefined(obj.localWeekNumber) || !isUndefined(obj.localWeekYear)) {
|
|
119
|
+
if (!isUndefined(obj.weekday) || !isUndefined(obj.weekNumber) || !isUndefined(obj.weekYear)) throw new ConflictingSpecificationError("Cannot mix locale-based week fields with ISO-based week fields");
|
|
120
|
+
if (!isUndefined(obj.localWeekday)) obj.weekday = obj.localWeekday;
|
|
121
|
+
if (!isUndefined(obj.localWeekNumber)) obj.weekNumber = obj.localWeekNumber;
|
|
122
|
+
if (!isUndefined(obj.localWeekYear)) obj.weekYear = obj.localWeekYear;
|
|
123
|
+
delete obj.localWeekday;
|
|
124
|
+
delete obj.localWeekNumber;
|
|
125
|
+
delete obj.localWeekYear;
|
|
126
|
+
return {
|
|
127
|
+
minDaysInFirstWeek: loc.getMinDaysInFirstWeek(),
|
|
128
|
+
startOfWeek: loc.getStartOfWeek()
|
|
129
|
+
};
|
|
130
|
+
} else return {
|
|
131
|
+
minDaysInFirstWeek: 4,
|
|
132
|
+
startOfWeek: 1
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
function hasInvalidWeekData(obj, minDaysInFirstWeek = 4, startOfWeek = 1) {
|
|
136
|
+
const validYear = isInteger(obj.weekYear), validWeek = integerBetween(obj.weekNumber, 1, weeksInWeekYear(obj.weekYear, minDaysInFirstWeek, startOfWeek)), validWeekday = integerBetween(obj.weekday, 1, 7);
|
|
137
|
+
if (!validYear) return unitOutOfRange("weekYear", obj.weekYear);
|
|
138
|
+
else if (!validWeek) return unitOutOfRange("week", obj.weekNumber);
|
|
139
|
+
else if (!validWeekday) return unitOutOfRange("weekday", obj.weekday);
|
|
140
|
+
else return false;
|
|
141
|
+
}
|
|
142
|
+
function hasInvalidOrdinalData(obj) {
|
|
143
|
+
const validYear = isInteger(obj.year), validOrdinal = integerBetween(obj.ordinal, 1, daysInYear(obj.year));
|
|
144
|
+
if (!validYear) return unitOutOfRange("year", obj.year);
|
|
145
|
+
else if (!validOrdinal) return unitOutOfRange("ordinal", obj.ordinal);
|
|
146
|
+
else return false;
|
|
147
|
+
}
|
|
148
|
+
function hasInvalidGregorianData(obj) {
|
|
149
|
+
const validYear = isInteger(obj.year), validMonth = integerBetween(obj.month, 1, 12), validDay = integerBetween(obj.day, 1, daysInMonth(obj.year, obj.month));
|
|
150
|
+
if (!validYear) return unitOutOfRange("year", obj.year);
|
|
151
|
+
else if (!validMonth) return unitOutOfRange("month", obj.month);
|
|
152
|
+
else if (!validDay) return unitOutOfRange("day", obj.day);
|
|
153
|
+
else return false;
|
|
154
|
+
}
|
|
155
|
+
function hasInvalidTimeData(obj) {
|
|
156
|
+
const { hour, minute, second, millisecond } = obj;
|
|
157
|
+
const validHour = integerBetween(hour, 0, 23) || hour === 24 && minute === 0 && second === 0 && millisecond === 0, validMinute = integerBetween(minute, 0, 59), validSecond = integerBetween(second, 0, 59), validMillisecond = integerBetween(millisecond, 0, 999);
|
|
158
|
+
if (!validHour) return unitOutOfRange("hour", hour);
|
|
159
|
+
else if (!validMinute) return unitOutOfRange("minute", minute);
|
|
160
|
+
else if (!validSecond) return unitOutOfRange("second", second);
|
|
161
|
+
else if (!validMillisecond) return unitOutOfRange("millisecond", millisecond);
|
|
162
|
+
else return false;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
//#endregion
|
|
166
|
+
export { dayOfWeek, gregorianToOrdinal, gregorianToWeek, hasInvalidGregorianData, hasInvalidOrdinalData, hasInvalidTimeData, hasInvalidWeekData, isoWeekdayToLocal, ordinalToGregorian, usesLocalWeekValues, weekToGregorian };
|
|
167
|
+
//# sourceMappingURL=conversions.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"conversions.mjs","names":[],"sources":["../../../../../../../../../../node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/conversions.js"],"sourcesContent":["import {\n integerBetween,\n isLeapYear,\n timeObject,\n daysInYear,\n daysInMonth,\n weeksInWeekYear,\n isInteger,\n isUndefined,\n} from \"./util.js\";\nimport Invalid from \"./invalid.js\";\nimport { ConflictingSpecificationError } from \"../errors.js\";\n\nconst nonLeapLadder = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334],\n leapLadder = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335];\n\nfunction unitOutOfRange(unit, value) {\n return new Invalid(\n \"unit out of range\",\n `you specified ${value} (of type ${typeof value}) as a ${unit}, which is invalid`\n );\n}\n\nexport function dayOfWeek(year, month, day) {\n const d = new Date(Date.UTC(year, month - 1, day));\n\n if (year < 100 && year >= 0) {\n d.setUTCFullYear(d.getUTCFullYear() - 1900);\n }\n\n const js = d.getUTCDay();\n\n return js === 0 ? 7 : js;\n}\n\nfunction computeOrdinal(year, month, day) {\n return day + (isLeapYear(year) ? leapLadder : nonLeapLadder)[month - 1];\n}\n\nfunction uncomputeOrdinal(year, ordinal) {\n const table = isLeapYear(year) ? leapLadder : nonLeapLadder,\n month0 = table.findIndex((i) => i < ordinal),\n day = ordinal - table[month0];\n return { month: month0 + 1, day };\n}\n\nexport function isoWeekdayToLocal(isoWeekday, startOfWeek) {\n return ((isoWeekday - startOfWeek + 7) % 7) + 1;\n}\n\n/**\n * @private\n */\n\nexport function gregorianToWeek(gregObj, minDaysInFirstWeek = 4, startOfWeek = 1) {\n const { year, month, day } = gregObj,\n ordinal = computeOrdinal(year, month, day),\n weekday = isoWeekdayToLocal(dayOfWeek(year, month, day), startOfWeek);\n\n let weekNumber = Math.floor((ordinal - weekday + 14 - minDaysInFirstWeek) / 7),\n weekYear;\n\n if (weekNumber < 1) {\n weekYear = year - 1;\n weekNumber = weeksInWeekYear(weekYear, minDaysInFirstWeek, startOfWeek);\n } else if (weekNumber > weeksInWeekYear(year, minDaysInFirstWeek, startOfWeek)) {\n weekYear = year + 1;\n weekNumber = 1;\n } else {\n weekYear = year;\n }\n\n return { weekYear, weekNumber, weekday, ...timeObject(gregObj) };\n}\n\nexport function weekToGregorian(weekData, minDaysInFirstWeek = 4, startOfWeek = 1) {\n const { weekYear, weekNumber, weekday } = weekData,\n weekdayOfJan4 = isoWeekdayToLocal(dayOfWeek(weekYear, 1, minDaysInFirstWeek), startOfWeek),\n yearInDays = daysInYear(weekYear);\n\n let ordinal = weekNumber * 7 + weekday - weekdayOfJan4 - 7 + minDaysInFirstWeek,\n year;\n\n if (ordinal < 1) {\n year = weekYear - 1;\n ordinal += daysInYear(year);\n } else if (ordinal > yearInDays) {\n year = weekYear + 1;\n ordinal -= daysInYear(weekYear);\n } else {\n year = weekYear;\n }\n\n const { month, day } = uncomputeOrdinal(year, ordinal);\n return { year, month, day, ...timeObject(weekData) };\n}\n\nexport function gregorianToOrdinal(gregData) {\n const { year, month, day } = gregData;\n const ordinal = computeOrdinal(year, month, day);\n return { year, ordinal, ...timeObject(gregData) };\n}\n\nexport function ordinalToGregorian(ordinalData) {\n const { year, ordinal } = ordinalData;\n const { month, day } = uncomputeOrdinal(year, ordinal);\n return { year, month, day, ...timeObject(ordinalData) };\n}\n\n/**\n * Check if local week units like localWeekday are used in obj.\n * If so, validates that they are not mixed with ISO week units and then copies them to the normal week unit properties.\n * Modifies obj in-place!\n * @param obj the object values\n */\nexport function usesLocalWeekValues(obj, loc) {\n const hasLocaleWeekData =\n !isUndefined(obj.localWeekday) ||\n !isUndefined(obj.localWeekNumber) ||\n !isUndefined(obj.localWeekYear);\n if (hasLocaleWeekData) {\n const hasIsoWeekData =\n !isUndefined(obj.weekday) || !isUndefined(obj.weekNumber) || !isUndefined(obj.weekYear);\n\n if (hasIsoWeekData) {\n throw new ConflictingSpecificationError(\n \"Cannot mix locale-based week fields with ISO-based week fields\"\n );\n }\n if (!isUndefined(obj.localWeekday)) obj.weekday = obj.localWeekday;\n if (!isUndefined(obj.localWeekNumber)) obj.weekNumber = obj.localWeekNumber;\n if (!isUndefined(obj.localWeekYear)) obj.weekYear = obj.localWeekYear;\n delete obj.localWeekday;\n delete obj.localWeekNumber;\n delete obj.localWeekYear;\n return {\n minDaysInFirstWeek: loc.getMinDaysInFirstWeek(),\n startOfWeek: loc.getStartOfWeek(),\n };\n } else {\n return { minDaysInFirstWeek: 4, startOfWeek: 1 };\n }\n}\n\nexport function hasInvalidWeekData(obj, minDaysInFirstWeek = 4, startOfWeek = 1) {\n const validYear = isInteger(obj.weekYear),\n validWeek = integerBetween(\n obj.weekNumber,\n 1,\n weeksInWeekYear(obj.weekYear, minDaysInFirstWeek, startOfWeek)\n ),\n validWeekday = integerBetween(obj.weekday, 1, 7);\n\n if (!validYear) {\n return unitOutOfRange(\"weekYear\", obj.weekYear);\n } else if (!validWeek) {\n return unitOutOfRange(\"week\", obj.weekNumber);\n } else if (!validWeekday) {\n return unitOutOfRange(\"weekday\", obj.weekday);\n } else return false;\n}\n\nexport function hasInvalidOrdinalData(obj) {\n const validYear = isInteger(obj.year),\n validOrdinal = integerBetween(obj.ordinal, 1, daysInYear(obj.year));\n\n if (!validYear) {\n return unitOutOfRange(\"year\", obj.year);\n } else if (!validOrdinal) {\n return unitOutOfRange(\"ordinal\", obj.ordinal);\n } else return false;\n}\n\nexport function hasInvalidGregorianData(obj) {\n const validYear = isInteger(obj.year),\n validMonth = integerBetween(obj.month, 1, 12),\n validDay = integerBetween(obj.day, 1, daysInMonth(obj.year, obj.month));\n\n if (!validYear) {\n return unitOutOfRange(\"year\", obj.year);\n } else if (!validMonth) {\n return unitOutOfRange(\"month\", obj.month);\n } else if (!validDay) {\n return unitOutOfRange(\"day\", obj.day);\n } else return false;\n}\n\nexport function hasInvalidTimeData(obj) {\n const { hour, minute, second, millisecond } = obj;\n const validHour =\n integerBetween(hour, 0, 23) ||\n (hour === 24 && minute === 0 && second === 0 && millisecond === 0),\n validMinute = integerBetween(minute, 0, 59),\n validSecond = integerBetween(second, 0, 59),\n validMillisecond = integerBetween(millisecond, 0, 999);\n\n if (!validHour) {\n return unitOutOfRange(\"hour\", hour);\n } else if (!validMinute) {\n return unitOutOfRange(\"minute\", minute);\n } else if (!validSecond) {\n return unitOutOfRange(\"second\", second);\n } else if (!validMillisecond) {\n return unitOutOfRange(\"millisecond\", millisecond);\n } else return false;\n}\n"],"x_google_ignoreList":[0],"mappings":"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"}
|