git.delta.rocks / unique-network / refs/commits / b8e56714040b

difftreelog

test update to fixed typegen

Yaroslav Bolyukin2022-05-13parent: #eaf36a3.patch.diff
in: master

11 files changed

modifiedtests/package.jsondiffbeforeafterboth
--- a/tests/package.json
+++ b/tests/package.json
@@ -4,9 +4,9 @@
   "description": "Unique Chain Tests",
   "main": "",
   "devDependencies": {
-    "@polkadot/dev": "0.66.17",
+    "@polkadot/dev": "0.66.21",
     "@polkadot/ts": "0.4.22",
-    "@polkadot/typegen": "8.3.1",
+    "@polkadot/typegen": "8.3.3-12",
     "@types/chai": "^4.3.1",
     "@types/chai-as-promised": "^7.1.5",
     "@types/mocha": "^9.1.1",
@@ -83,9 +83,9 @@
   "license": "SEE LICENSE IN ../LICENSE",
   "homepage": "",
   "dependencies": {
-    "@polkadot/api": "8.3.1",
-    "@polkadot/api-contract": "8.3.1",
-    "@polkadot/util-crypto": "^9.1.1",
+    "@polkadot/api": "8.3.3-12",
+    "@polkadot/api-contract": "8.3.3-12",
+    "@polkadot/util-crypto": "9.1.2-11",
     "bignumber.js": "^9.0.2",
     "chai-as-promised": "^7.1.1",
     "find-process": "^1.4.7",
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -97,6 +97,14 @@
        **/
       CollectionTokenPrefixLimitExceeded: AugmentedError<ApiType>;
       /**
+       * Empty property keys are forbidden
+       **/
+      EmptyPropertyKey: AugmentedError<ApiType>;
+      /**
+       * Only ASCII letters, digits, and '_', '-' are allowed
+       **/
+      InvalidCharacterInPropertyKey: AugmentedError<ApiType>;
+      /**
        * Metadata flag frozen
        **/
       MetadataFlagFrozen: AugmentedError<ApiType>;
@@ -112,6 +120,9 @@
        * No permission to perform action
        **/
       NoPermission: AugmentedError<ApiType>;
+      /**
+       * Tried to store more property data than allowed
+       **/
       NoSpaceForProperty: AugmentedError<ApiType>;
       /**
        * Not sufficient founds to perform action
@@ -125,6 +136,9 @@
        * Tried to enable permissions which are only permitted to be disabled
        **/
       OwnerPermissionsCantBeReverted: AugmentedError<ApiType>;
+      /**
+       * Tried to store more property keys than allowed
+       **/
       PropertyLimitReached: AugmentedError<ApiType>;
       /**
        * Collection is not in mint mode.
@@ -155,6 +169,10 @@
        **/
       TransferNotAllowed: AugmentedError<ApiType>;
       /**
+       * Unable to read array of unbounded keys
+       **/
+      UnableToReadUnboundedKeys: AugmentedError<ApiType>;
+      /**
        * Target collection doesn't supports this operation
        **/
       UnsupportedOperation: AugmentedError<ApiType>;
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -4,7 +4,7 @@
 import type { ApiTypes } from '@polkadot/api-base/types';
 import type { Bytes, Null, Option, Result, U256, U8aFixed, u128, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, SpRuntimeDispatchError, UpDataStructsAccessMode, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, SpRuntimeDispatchError, UpDataStructsAccessMode, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
 
 declare module '@polkadot/api-base/types/events' {
   export interface AugmentedEvents<ApiType extends ApiTypes> {
@@ -90,7 +90,7 @@
        **/
       CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;
       CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;
-      CollectionPropertySet: AugmentedEvent<ApiType, [u32, UpDataStructsProperty]>;
+      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;
       /**
        * New item was created.
        * 
@@ -119,9 +119,9 @@
        * * amount: Always 1 for NFT
        **/
       ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;
-      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, UpDataStructsPropertyKeyPermission]>;
+      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;
       TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;
-      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, UpDataStructsProperty]>;
+      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;
       /**
        * Item was transferred
        * 
@@ -617,14 +617,6 @@
        * * sponsor:  New sponsor address.
        **/
       SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;
-      /**
-       * Variable on chain schema was set
-       * 
-       * # Arguments
-       * 
-       * * collection_id: Globally unique collection identifier.
-       **/
-      VariableOnChainSchemaSet: AugmentedEvent<ApiType, [u32]>;
       /**
        * Generic event
        **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -5,7 +5,7 @@
 import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
 import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertyPermission } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission } from '@polkadot/types/lookup';
 import type { Observable } from '@polkadot/types/types';
 
 declare module '@polkadot/api-base/types/storage' {
@@ -81,7 +81,7 @@
       /**
        * Large variable-size collection fields are extracted here
        **/
-      collectionData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: UpDataStructsCollectionField | 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema' | number | Uint8Array) => Observable<Bytes>, [u32, UpDataStructsCollectionField]> & QueryableStorageEntry<ApiType, [u32, UpDataStructsCollectionField]>;
+      collectionData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: UpDataStructsCollectionField | 'ConstOnChainSchema' | 'OffchainSchema' | number | Uint8Array) => Observable<Bytes>, [u32, UpDataStructsCollectionField]> & QueryableStorageEntry<ApiType, [u32, UpDataStructsCollectionField]>;
       /**
        * Collection properties
        **/
@@ -155,6 +155,11 @@
       accountCodes: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<Bytes>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
       accountStorages: AugmentedQuery<ApiType, (arg1: H160 | string | Uint8Array, arg2: H256 | string | Uint8Array) => Observable<H256>, [H160, H256]> & QueryableStorageEntry<ApiType, [H160, H256]>;
       /**
+       * Written on log, reset after transaction
+       * Should be empty between transactions
+       **/
+      currentLogs: AugmentedQuery<ApiType, () => Observable<Vec<EthereumLog>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
        * Generic query
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -3,7 +3,7 @@
 
 import type { ApiTypes } from '@polkadot/api-base/types';
 import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
-import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
+import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
 import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsMetaUpdatePermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
@@ -378,7 +378,7 @@
        * - Weight of derivative `call` execution + 10,000.
        * # </weight>
        **/
-      sudo: AugmentedSubmittable<(call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
+      sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
       /**
        * Authenticates the sudo key and dispatches a function call with `Signed` origin from
        * a given account.
@@ -392,7 +392,7 @@
        * - Weight of derivative `call` execution + 10,000.
        * # </weight>
        **/
-      sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
+      sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
       /**
        * Authenticates the sudo key and dispatches a function call with `Root` origin.
        * This function does not check the weight of the call, and instead allows the
@@ -405,7 +405,7 @@
        * - The weight of this call is defined by the caller.
        * # </weight>
        **/
-      sudoUncheckedWeight: AugmentedSubmittable<(call: Call | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
+      sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
       /**
        * Generic tx
        **/
@@ -679,7 +679,7 @@
        * 
        * Prefer it to deprecated [`created_collection`] method
        **/
-      createCollectionEx: AugmentedSubmittable<(data: UpDataStructsCreateCollectionData | { mode?: any; access?: any; name?: any; description?: any; tokenPrefix?: any; offchainSchema?: any; schemaVersion?: any; pendingSponsor?: any; limits?: any; variableOnChainSchema?: any; constOnChainSchema?: any; metaUpdatePermission?: any; tokenPropertyPermissions?: any; properties?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [UpDataStructsCreateCollectionData]>;
+      createCollectionEx: AugmentedSubmittable<(data: UpDataStructsCreateCollectionData | { mode?: any; access?: any; name?: any; description?: any; tokenPrefix?: any; offchainSchema?: any; schemaVersion?: any; pendingSponsor?: any; limits?: any; constOnChainSchema?: any; metaUpdatePermission?: any; tokenPropertyPermissions?: any; properties?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [UpDataStructsCreateCollectionData]>;
       /**
        * This method creates a concrete instance of NFT Collection created with CreateCollection method.
        * 
@@ -915,21 +915,6 @@
        * * schema: String representing the offchain data schema.
        **/
       setVariableMetaData: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, data: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, Bytes]>;
-      /**
-       * Set variable on-chain data schema.
-       * 
-       * # Permissions
-       * 
-       * * Collection Owner
-       * * Collection Admin
-       * 
-       * # Arguments
-       * 
-       * * collection_id.
-       * 
-       * * schema: String representing the variable on-chain data schema.
-       **/
-      setVariableOnChainSchema: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, schema: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Bytes]>;
       /**
        * Change ownership of the token.
        * 
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -1,7 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportStorageBoundedBTreeSet, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './unique';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './unique';
 import type { Data, StorageKey } from '@polkadot/types';
 import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
 import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -478,7 +478,6 @@
     ForkTreePendingChangeNode: ForkTreePendingChangeNode;
     FpRpcTransactionStatus: FpRpcTransactionStatus;
     FrameSupportPalletId: FrameSupportPalletId;
-    FrameSupportStorageBoundedBTreeSet: FrameSupportStorageBoundedBTreeSet;
     FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
     FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
     FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -1184,6 +1183,8 @@
     UpDataStructsMetaUpdatePermission: UpDataStructsMetaUpdatePermission;
     UpDataStructsNestingRule: UpDataStructsNestingRule;
     UpDataStructsProperties: UpDataStructsProperties;
+    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;
+    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;
     UpDataStructsProperty: UpDataStructsProperty;
     UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
     UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1381,10 +1381,6 @@
         collectionId: 'u32',
         schema: 'Bytes',
       },
-      set_variable_on_chain_schema: {
-        collectionId: 'u32',
-        schema: 'Bytes',
-      },
       set_collection_limits: {
         collectionId: 'u32',
         newLimit: 'UpDataStructsCollectionLimits'
@@ -1414,7 +1410,6 @@
     schemaVersion: 'Option<UpDataStructsSchemaVersion>',
     pendingSponsor: 'Option<AccountId32>',
     limits: 'Option<UpDataStructsCollectionLimits>',
-    variableOnChainSchema: 'Bytes',
     constOnChainSchema: 'Bytes',
     metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>',
     tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
@@ -1463,14 +1458,10 @@
     _enum: {
       Disabled: 'Null',
       Owner: 'Null',
-      OwnerRestricted: 'FrameSupportStorageBoundedBTreeSet'
+      OwnerRestricted: 'BTreeSet<u32>'
     }
   },
   /**
-   * Lookup171: frame_support::storage::bounded_btree_set::BoundedBTreeSet<up_data_structs::CollectionId, S>
-   **/
-  FrameSupportStorageBoundedBTreeSet: 'BTreeSet<u32>',
-  /**
    * Lookup177: up_data_structs::MetaUpdatePermission
    **/
   UpDataStructsMetaUpdatePermission: {
@@ -1993,8 +1984,7 @@
       MintPermissionSet: 'u32',
       OffchainSchemaSet: 'u32',
       PublicAccessModeSet: '(u32,UpDataStructsAccessMode)',
-      SchemaVersionSet: 'u32',
-      VariableOnChainSchemaSet: 'u32'
+      SchemaVersionSet: 'u32'
     }
   },
   /**
@@ -2008,11 +1998,11 @@
       ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',
       Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',
       Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',
-      CollectionPropertySet: '(u32,UpDataStructsProperty)',
+      CollectionPropertySet: '(u32,Bytes)',
       CollectionPropertyDeleted: '(u32,Bytes)',
-      TokenPropertySet: '(u32,u32,UpDataStructsProperty)',
+      TokenPropertySet: '(u32,u32,Bytes)',
       TokenPropertyDeleted: '(u32,u32,Bytes)',
-      PropertyPermissionSet: '(u32,UpDataStructsPropertyKeyPermission)'
+      PropertyPermissionSet: '(u32,Bytes)'
     }
   },
   /**
@@ -2316,18 +2306,26 @@
    * Lookup312: up_data_structs::Properties
    **/
   UpDataStructsProperties: {
-    map: 'BTreeMap<Bytes, Bytes>',
+    map: 'UpDataStructsPropertiesMapBoundedVec',
     consumedSpace: 'u32',
     spaceLimit: 'u32'
   },
   /**
-   * Lookup322: up_data_structs::CollectionField
+   * Lookup313: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   **/
+  UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
+  /**
+   * Lookup318: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+   **/
+  UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
+  /**
+   * Lookup324: up_data_structs::CollectionField
    **/
   UpDataStructsCollectionField: {
-    _enum: ['VariableOnChainSchema', 'ConstOnChainSchema', 'OffchainSchema']
+    _enum: ['ConstOnChainSchema', 'OffchainSchema']
   },
   /**
-   * Lookup325: up_data_structs::CollectionStats
+   * Lookup327: up_data_structs::CollectionStats
    **/
   UpDataStructsCollectionStats: {
     created: 'u32',
@@ -2335,11 +2333,11 @@
     alive: 'u32'
   },
   /**
-   * Lookup326: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
+   * Lookup328: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
    **/
-  PhantomTypeUpDataStructsTokenData: '[Lookup327;0]',
+  PhantomTypeUpDataStructsTokenData: '[Lookup329;0]',
   /**
-   * Lookup327: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup329: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsTokenData: {
     constData: 'Bytes',
@@ -2347,11 +2345,11 @@
     owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
   },
   /**
-   * Lookup330: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
+   * Lookup332: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
    **/
-  PhantomTypeUpDataStructsRpcCollection: '[Lookup331;0]',
+  PhantomTypeUpDataStructsRpcCollection: '[Lookup333;0]',
   /**
-   * Lookup331: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+   * Lookup333: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRpcCollection: {
     owner: 'AccountId32',
@@ -2365,39 +2363,38 @@
     schemaVersion: 'UpDataStructsSchemaVersion',
     sponsorship: 'UpDataStructsSponsorshipState',
     limits: 'UpDataStructsCollectionLimits',
-    variableOnChainSchema: 'Bytes',
     constOnChainSchema: 'Bytes',
     metaUpdatePermission: 'UpDataStructsMetaUpdatePermission',
     tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup333: pallet_common::pallet::Error<T>
+   * Lookup335: pallet_common::pallet::Error<T>
    **/
   PalletCommonError: {
-    _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached']
+    _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'UnableToReadUnboundedKeys', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey']
   },
   /**
-   * Lookup335: pallet_fungible::pallet::Error<T>
+   * Lookup337: pallet_fungible::pallet::Error<T>
    **/
   PalletFungibleError: {
     _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup336: pallet_refungible::ItemData
+   * Lookup338: pallet_refungible::ItemData
    **/
   PalletRefungibleItemData: {
     constData: 'Bytes',
     variableData: 'Bytes'
   },
   /**
-   * Lookup340: pallet_refungible::pallet::Error<T>
+   * Lookup342: pallet_refungible::pallet::Error<T>
    **/
   PalletRefungibleError: {
     _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup341: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup343: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletNonfungibleItemData: {
     constData: 'Bytes',
@@ -2405,25 +2402,25 @@
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup342: pallet_nonfungible::pallet::Error<T>
+   * Lookup344: pallet_nonfungible::pallet::Error<T>
    **/
   PalletNonfungibleError: {
     _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']
   },
   /**
-   * Lookup343: pallet_structure::pallet::Error<T>
+   * Lookup345: pallet_structure::pallet::Error<T>
    **/
   PalletStructureError: {
     _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
   },
   /**
-   * Lookup345: pallet_evm::pallet::Error<T>
+   * Lookup348: pallet_evm::pallet::Error<T>
    **/
   PalletEvmError: {
     _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
   },
   /**
-   * Lookup348: fp_rpc::TransactionStatus
+   * Lookup351: fp_rpc::TransactionStatus
    **/
   FpRpcTransactionStatus: {
     transactionHash: 'H256',
@@ -2435,11 +2432,11 @@
     logsBloom: 'EthbloomBloom'
   },
   /**
-   * Lookup351: ethbloom::Bloom
+   * Lookup353: ethbloom::Bloom
    **/
   EthbloomBloom: '[u8;256]',
   /**
-   * Lookup353: ethereum::receipt::ReceiptV3
+   * Lookup355: ethereum::receipt::ReceiptV3
    **/
   EthereumReceiptReceiptV3: {
     _enum: {
@@ -2449,7 +2446,7 @@
     }
   },
   /**
-   * Lookup354: ethereum::receipt::EIP658ReceiptData
+   * Lookup356: ethereum::receipt::EIP658ReceiptData
    **/
   EthereumReceiptEip658ReceiptData: {
     statusCode: 'u8',
@@ -2458,7 +2455,7 @@
     logs: 'Vec<EthereumLog>'
   },
   /**
-   * Lookup355: ethereum::block::Block<ethereum::transaction::TransactionV2>
+   * Lookup357: ethereum::block::Block<ethereum::transaction::TransactionV2>
    **/
   EthereumBlock: {
     header: 'EthereumHeader',
@@ -2466,7 +2463,7 @@
     ommers: 'Vec<EthereumHeader>'
   },
   /**
-   * Lookup356: ethereum::header::Header
+   * Lookup358: ethereum::header::Header
    **/
   EthereumHeader: {
     parentHash: 'H256',
@@ -2486,41 +2483,41 @@
     nonce: 'EthereumTypesHashH64'
   },
   /**
-   * Lookup357: ethereum_types::hash::H64
+   * Lookup359: ethereum_types::hash::H64
    **/
   EthereumTypesHashH64: '[u8;8]',
   /**
-   * Lookup362: pallet_ethereum::pallet::Error<T>
+   * Lookup364: pallet_ethereum::pallet::Error<T>
    **/
   PalletEthereumError: {
     _enum: ['InvalidSignature', 'PreLogExists']
   },
   /**
-   * Lookup363: pallet_evm_coder_substrate::pallet::Error<T>
+   * Lookup365: pallet_evm_coder_substrate::pallet::Error<T>
    **/
   PalletEvmCoderSubstrateError: {
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup364: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup366: pallet_evm_contract_helpers::SponsoringModeT
    **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup366: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup368: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
     _enum: ['NoPermission']
   },
   /**
-   * Lookup367: pallet_evm_migration::pallet::Error<T>
+   * Lookup369: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
   },
   /**
-   * Lookup369: sp_runtime::MultiSignature
+   * Lookup371: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -2530,39 +2527,39 @@
     }
   },
   /**
-   * Lookup370: sp_core::ed25519::Signature
+   * Lookup372: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup372: sp_core::sr25519::Signature
+   * Lookup374: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup373: sp_core::ecdsa::Signature
+   * Lookup375: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup376: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup378: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup377: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup379: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup380: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup382: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup381: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup383: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup382: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup384: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup383: opal_runtime::Runtime
+   * Lookup385: opal_runtime::Runtime
    **/
   OpalRuntimeRuntime: 'Null'
 };
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -1,7 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportStorageBoundedBTreeSet, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 declare module '@polkadot/types/types/registry' {
   export interface InterfaceTypes {
@@ -47,7 +47,6 @@
     EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
     FpRpcTransactionStatus: FpRpcTransactionStatus;
     FrameSupportPalletId: FrameSupportPalletId;
-    FrameSupportStorageBoundedBTreeSet: FrameSupportStorageBoundedBTreeSet;
     FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
     FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
     FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -164,6 +163,8 @@
     UpDataStructsMetaUpdatePermission: UpDataStructsMetaUpdatePermission;
     UpDataStructsNestingRule: UpDataStructsNestingRule;
     UpDataStructsProperties: UpDataStructsProperties;
+    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;
+    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;
     UpDataStructsProperty: UpDataStructsProperty;
     UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
     UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1519,17 +1519,12 @@
       readonly collectionId: u32;
       readonly schema: Bytes;
     } & Struct;
-    readonly isSetVariableOnChainSchema: boolean;
-    readonly asSetVariableOnChainSchema: {
-      readonly collectionId: u32;
-      readonly schema: Bytes;
-    } & Struct;
     readonly isSetCollectionLimits: boolean;
     readonly asSetCollectionLimits: {
       readonly collectionId: u32;
       readonly newLimit: UpDataStructsCollectionLimits;
     } & Struct;
-    readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';
+    readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetCollectionLimits';
   }
 
   /** @name UpDataStructsCollectionMode (156) */
@@ -1552,7 +1547,6 @@
     readonly schemaVersion: Option<UpDataStructsSchemaVersion>;
     readonly pendingSponsor: Option<AccountId32>;
     readonly limits: Option<UpDataStructsCollectionLimits>;
-    readonly variableOnChainSchema: Bytes;
     readonly constOnChainSchema: Bytes;
     readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;
     readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
@@ -1600,13 +1594,10 @@
     readonly isDisabled: boolean;
     readonly isOwner: boolean;
     readonly isOwnerRestricted: boolean;
-    readonly asOwnerRestricted: FrameSupportStorageBoundedBTreeSet;
+    readonly asOwnerRestricted: BTreeSet<u32>;
     readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';
   }
 
-  /** @name FrameSupportStorageBoundedBTreeSet (171) */
-  export interface FrameSupportStorageBoundedBTreeSet extends BTreeSet<u32> {}
-
   /** @name UpDataStructsMetaUpdatePermission (177) */
   export interface UpDataStructsMetaUpdatePermission extends Enum {
     readonly isItemOwner: boolean;
@@ -2168,9 +2159,7 @@
     readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;
     readonly isSchemaVersionSet: boolean;
     readonly asSchemaVersionSet: u32;
-    readonly isVariableOnChainSchemaSet: boolean;
-    readonly asVariableOnChainSchemaSet: u32;
-    readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';
+    readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';
   }
 
   /** @name PalletCommonEvent (256) */
@@ -2188,15 +2177,15 @@
     readonly isApproved: boolean;
     readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;
     readonly isCollectionPropertySet: boolean;
-    readonly asCollectionPropertySet: ITuple<[u32, UpDataStructsProperty]>;
+    readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;
     readonly isCollectionPropertyDeleted: boolean;
     readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;
     readonly isTokenPropertySet: boolean;
-    readonly asTokenPropertySet: ITuple<[u32, u32, UpDataStructsProperty]>;
+    readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;
     readonly isTokenPropertyDeleted: boolean;
     readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;
     readonly isPropertyPermissionSet: boolean;
-    readonly asPropertyPermissionSet: ITuple<[u32, UpDataStructsPropertyKeyPermission]>;
+    readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
   }
 
@@ -2521,40 +2510,45 @@
 
   /** @name UpDataStructsProperties (312) */
   export interface UpDataStructsProperties extends Struct {
-    readonly map: BTreeMap<Bytes, Bytes>;
+    readonly map: UpDataStructsPropertiesMapBoundedVec;
     readonly consumedSpace: u32;
     readonly spaceLimit: u32;
   }
 
-  /** @name UpDataStructsCollectionField (322) */
+  /** @name UpDataStructsPropertiesMapBoundedVec (313) */
+  export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
+
+  /** @name UpDataStructsPropertiesMapPropertyPermission (318) */
+  export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
+
+  /** @name UpDataStructsCollectionField (324) */
   export interface UpDataStructsCollectionField extends Enum {
-    readonly isVariableOnChainSchema: boolean;
     readonly isConstOnChainSchema: boolean;
     readonly isOffchainSchema: boolean;
-    readonly type: 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema';
+    readonly type: 'ConstOnChainSchema' | 'OffchainSchema';
   }
 
-  /** @name UpDataStructsCollectionStats (325) */
+  /** @name UpDataStructsCollectionStats (327) */
   export interface UpDataStructsCollectionStats extends Struct {
     readonly created: u32;
     readonly destroyed: u32;
     readonly alive: u32;
   }
 
-  /** @name PhantomTypeUpDataStructsTokenData (326) */
+  /** @name PhantomTypeUpDataStructsTokenData (328) */
   export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}
 
-  /** @name UpDataStructsTokenData (327) */
+  /** @name UpDataStructsTokenData (329) */
   export interface UpDataStructsTokenData extends Struct {
     readonly constData: Bytes;
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
   }
 
-  /** @name PhantomTypeUpDataStructsRpcCollection (330) */
+  /** @name PhantomTypeUpDataStructsRpcCollection (332) */
   export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}
 
-  /** @name UpDataStructsRpcCollection (331) */
+  /** @name UpDataStructsRpcCollection (333) */
   export interface UpDataStructsRpcCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -2567,14 +2561,13 @@
     readonly schemaVersion: UpDataStructsSchemaVersion;
     readonly sponsorship: UpDataStructsSponsorshipState;
     readonly limits: UpDataStructsCollectionLimits;
-    readonly variableOnChainSchema: Bytes;
     readonly constOnChainSchema: Bytes;
     readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;
     readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name PalletCommonError (333) */
+  /** @name PalletCommonError (335) */
   export interface PalletCommonError extends Enum {
     readonly isCollectionNotFound: boolean;
     readonly isMustBeTokenOwner: boolean;
@@ -2606,10 +2599,13 @@
     readonly isCollectionFieldSizeExceeded: boolean;
     readonly isNoSpaceForProperty: boolean;
     readonly isPropertyLimitReached: boolean;
-    readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached';
+    readonly isUnableToReadUnboundedKeys: boolean;
+    readonly isInvalidCharacterInPropertyKey: boolean;
+    readonly isEmptyPropertyKey: boolean;
+    readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'UnableToReadUnboundedKeys' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';
   }
 
-  /** @name PalletFungibleError (335) */
+  /** @name PalletFungibleError (337) */
   export interface PalletFungibleError extends Enum {
     readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isFungibleItemsHaveNoId: boolean;
@@ -2619,13 +2615,13 @@
     readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletRefungibleItemData (336) */
+  /** @name PalletRefungibleItemData (338) */
   export interface PalletRefungibleItemData extends Struct {
     readonly constData: Bytes;
     readonly variableData: Bytes;
   }
 
-  /** @name PalletRefungibleError (340) */
+  /** @name PalletRefungibleError (342) */
   export interface PalletRefungibleError extends Enum {
     readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isWrongRefungiblePieces: boolean;
@@ -2634,21 +2630,21 @@
     readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletNonfungibleItemData (341) */
+  /** @name PalletNonfungibleItemData (343) */
   export interface PalletNonfungibleItemData extends Struct {
     readonly constData: Bytes;
     readonly variableData: Bytes;
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name PalletNonfungibleError (342) */
+  /** @name PalletNonfungibleError (344) */
   export interface PalletNonfungibleError extends Enum {
     readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isNonfungibleItemsHaveNoAmount: boolean;
     readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';
   }
 
-  /** @name PalletStructureError (343) */
+  /** @name PalletStructureError (345) */
   export interface PalletStructureError extends Enum {
     readonly isOuroborosDetected: boolean;
     readonly isDepthLimit: boolean;
@@ -2656,7 +2652,7 @@
     readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';
   }
 
-  /** @name PalletEvmError (345) */
+  /** @name PalletEvmError (348) */
   export interface PalletEvmError extends Enum {
     readonly isBalanceLow: boolean;
     readonly isFeeOverflow: boolean;
@@ -2667,7 +2663,7 @@
     readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
   }
 
-  /** @name FpRpcTransactionStatus (348) */
+  /** @name FpRpcTransactionStatus (351) */
   export interface FpRpcTransactionStatus extends Struct {
     readonly transactionHash: H256;
     readonly transactionIndex: u32;
@@ -2678,10 +2674,10 @@
     readonly logsBloom: EthbloomBloom;
   }
 
-  /** @name EthbloomBloom (351) */
+  /** @name EthbloomBloom (353) */
   export interface EthbloomBloom extends U8aFixed {}
 
-  /** @name EthereumReceiptReceiptV3 (353) */
+  /** @name EthereumReceiptReceiptV3 (355) */
   export interface EthereumReceiptReceiptV3 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -2692,7 +2688,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumReceiptEip658ReceiptData (354) */
+  /** @name EthereumReceiptEip658ReceiptData (356) */
   export interface EthereumReceiptEip658ReceiptData extends Struct {
     readonly statusCode: u8;
     readonly usedGas: U256;
@@ -2700,14 +2696,14 @@
     readonly logs: Vec<EthereumLog>;
   }
 
-  /** @name EthereumBlock (355) */
+  /** @name EthereumBlock (357) */
   export interface EthereumBlock extends Struct {
     readonly header: EthereumHeader;
     readonly transactions: Vec<EthereumTransactionTransactionV2>;
     readonly ommers: Vec<EthereumHeader>;
   }
 
-  /** @name EthereumHeader (356) */
+  /** @name EthereumHeader (358) */
   export interface EthereumHeader extends Struct {
     readonly parentHash: H256;
     readonly ommersHash: H256;
@@ -2726,24 +2722,24 @@
     readonly nonce: EthereumTypesHashH64;
   }
 
-  /** @name EthereumTypesHashH64 (357) */
+  /** @name EthereumTypesHashH64 (359) */
   export interface EthereumTypesHashH64 extends U8aFixed {}
 
-  /** @name PalletEthereumError (362) */
+  /** @name PalletEthereumError (364) */
   export interface PalletEthereumError extends Enum {
     readonly isInvalidSignature: boolean;
     readonly isPreLogExists: boolean;
     readonly type: 'InvalidSignature' | 'PreLogExists';
   }
 
-  /** @name PalletEvmCoderSubstrateError (363) */
+  /** @name PalletEvmCoderSubstrateError (365) */
   export interface PalletEvmCoderSubstrateError extends Enum {
     readonly isOutOfGas: boolean;
     readonly isOutOfFund: boolean;
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (364) */
+  /** @name PalletEvmContractHelpersSponsoringModeT (366) */
   export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -2751,20 +2747,20 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (366) */
+  /** @name PalletEvmContractHelpersError (368) */
   export interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
     readonly type: 'NoPermission';
   }
 
-  /** @name PalletEvmMigrationError (367) */
+  /** @name PalletEvmMigrationError (369) */
   export interface PalletEvmMigrationError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
   }
 
-  /** @name SpRuntimeMultiSignature (369) */
+  /** @name SpRuntimeMultiSignature (371) */
   export interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -2775,31 +2771,31 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (370) */
+  /** @name SpCoreEd25519Signature (372) */
   export interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (372) */
+  /** @name SpCoreSr25519Signature (374) */
   export interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (373) */
+  /** @name SpCoreEcdsaSignature (375) */
   export interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (376) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (378) */
   export type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (377) */
+  /** @name FrameSystemExtensionsCheckGenesis (379) */
   export type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (380) */
+  /** @name FrameSystemExtensionsCheckNonce (382) */
   export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (381) */
+  /** @name FrameSystemExtensionsCheckWeight (383) */
   export type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (382) */
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (384) */
   export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (383) */
+  /** @name OpalRuntimeRuntime (385) */
   export type OpalRuntimeRuntime = Null;
 
 } // declare module
modifiedtests/src/interfaces/unique/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/unique/types.ts
+++ b/tests/src/interfaces/unique/types.ts
@@ -446,9 +446,6 @@
 /** @name FrameSupportPalletId */
 export interface FrameSupportPalletId extends U8aFixed {}
 
-/** @name FrameSupportStorageBoundedBTreeSet */
-export interface FrameSupportStorageBoundedBTreeSet extends BTreeSet<u32> {}
-
 /** @name FrameSupportTokensMiscBalanceStatus */
 export interface FrameSupportTokensMiscBalanceStatus extends Enum {
   readonly isFree: boolean;
@@ -896,7 +893,10 @@
   readonly isCollectionFieldSizeExceeded: boolean;
   readonly isNoSpaceForProperty: boolean;
   readonly isPropertyLimitReached: boolean;
-  readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached';
+  readonly isUnableToReadUnboundedKeys: boolean;
+  readonly isInvalidCharacterInPropertyKey: boolean;
+  readonly isEmptyPropertyKey: boolean;
+  readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'UnableToReadUnboundedKeys' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';
 }
 
 /** @name PalletCommonEvent */
@@ -914,15 +914,15 @@
   readonly isApproved: boolean;
   readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;
   readonly isCollectionPropertySet: boolean;
-  readonly asCollectionPropertySet: ITuple<[u32, UpDataStructsProperty]>;
+  readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;
   readonly isCollectionPropertyDeleted: boolean;
   readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;
   readonly isTokenPropertySet: boolean;
-  readonly asTokenPropertySet: ITuple<[u32, u32, UpDataStructsProperty]>;
+  readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;
   readonly isTokenPropertyDeleted: boolean;
   readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;
   readonly isPropertyPermissionSet: boolean;
-  readonly asPropertyPermissionSet: ITuple<[u32, UpDataStructsPropertyKeyPermission]>;
+  readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;
   readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
 }
 
@@ -1459,17 +1459,12 @@
     readonly collectionId: u32;
     readonly schema: Bytes;
   } & Struct;
-  readonly isSetVariableOnChainSchema: boolean;
-  readonly asSetVariableOnChainSchema: {
-    readonly collectionId: u32;
-    readonly schema: Bytes;
-  } & Struct;
   readonly isSetCollectionLimits: boolean;
   readonly asSetCollectionLimits: {
     readonly collectionId: u32;
     readonly newLimit: UpDataStructsCollectionLimits;
   } & Struct;
-  readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';
+  readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetCollectionLimits';
 }
 
 /** @name PalletUniqueError */
@@ -1510,9 +1505,7 @@
   readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;
   readonly isSchemaVersionSet: boolean;
   readonly asSchemaVersionSet: u32;
-  readonly isVariableOnChainSchemaSet: boolean;
-  readonly asVariableOnChainSchemaSet: u32;
-  readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';
+  readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';
 }
 
 /** @name PalletXcmCall */
@@ -1633,10 +1626,10 @@
 }
 
 /** @name PhantomTypeUpDataStructsRpcCollection */
-export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup331> {}
+export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup333> {}
 
 /** @name PhantomTypeUpDataStructsTokenData */
-export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup327> {}
+export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup329> {}
 
 /** @name PolkadotCorePrimitivesInboundDownwardMessage */
 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
@@ -1833,10 +1826,9 @@
 
 /** @name UpDataStructsCollectionField */
 export interface UpDataStructsCollectionField extends Enum {
-  readonly isVariableOnChainSchema: boolean;
   readonly isConstOnChainSchema: boolean;
   readonly isOffchainSchema: boolean;
-  readonly type: 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema';
+  readonly type: 'ConstOnChainSchema' | 'OffchainSchema';
 }
 
 /** @name UpDataStructsCollectionLimits */
@@ -1880,7 +1872,6 @@
   readonly schemaVersion: Option<UpDataStructsSchemaVersion>;
   readonly pendingSponsor: Option<AccountId32>;
   readonly limits: Option<UpDataStructsCollectionLimits>;
-  readonly variableOnChainSchema: Bytes;
   readonly constOnChainSchema: Bytes;
   readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;
   readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
@@ -1958,17 +1949,23 @@
   readonly isDisabled: boolean;
   readonly isOwner: boolean;
   readonly isOwnerRestricted: boolean;
-  readonly asOwnerRestricted: FrameSupportStorageBoundedBTreeSet;
+  readonly asOwnerRestricted: BTreeSet<u32>;
   readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';
 }
 
 /** @name UpDataStructsProperties */
 export interface UpDataStructsProperties extends Struct {
-  readonly map: BTreeMap<Bytes, Bytes>;
+  readonly map: UpDataStructsPropertiesMapBoundedVec;
   readonly consumedSpace: u32;
   readonly spaceLimit: u32;
 }
 
+/** @name UpDataStructsPropertiesMapBoundedVec */
+export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
+
+/** @name UpDataStructsPropertiesMapPropertyPermission */
+export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
+
 /** @name UpDataStructsProperty */
 export interface UpDataStructsProperty extends Struct {
   readonly key: Bytes;
@@ -2001,7 +1998,6 @@
   readonly schemaVersion: UpDataStructsSchemaVersion;
   readonly sponsorship: UpDataStructsSponsorshipState;
   readonly limits: UpDataStructsCollectionLimits;
-  readonly variableOnChainSchema: Bytes;
   readonly constOnChainSchema: Bytes;
   readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;
   readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
modifiedtests/yarn.lockdiffbeforeafterboth
1050 minimatch "^3.0.4"1050 minimatch "^3.0.4"
1051 strip-json-comments "^3.1.1"1051 strip-json-comments "^3.1.1"
10521052
1053"@eslint/eslintrc@^1.2.3":
1054 version "1.2.3"
1055 resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.2.3.tgz#fcaa2bcef39e13d6e9e7f6271f4cc7cae1174886"
1056 integrity sha512-uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==
1057 dependencies:
1058 ajv "^6.12.4"
1059 debug "^4.3.2"
1060 espree "^9.3.2"
1061 globals "^13.9.0"
1062 ignore "^5.2.0"
1063 import-fresh "^3.2.1"
1064 js-yaml "^4.1.0"
1065 minimatch "^3.1.2"
1066 strip-json-comments "^3.1.1"
1067
1053"@ethereumjs/common@^2.5.0", "@ethereumjs/common@^2.6.3":1068"@ethereumjs/common@^2.5.0", "@ethereumjs/common@^2.6.3":
1054 version "2.6.4"1069 version "2.6.4"
1055 resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.6.4.tgz#1b3cdd3aa4ee3b0ca366756fc35e4a03022a01cc"1070 resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.6.4.tgz#1b3cdd3aa4ee3b0ca366756fc35e4a03022a01cc"
1272 resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"1287 resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
1273 integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==1288 integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
12741289
1275"@jest/console@^28.0.2":1290"@jest/console@^28.1.0":
1276 version "28.0.2"1291 version "28.1.0"
1277 resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.0.2.tgz#d11e8b43ae431ae9b3112656848417ae4008fcad"1292 resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.0.tgz#db78222c3d3b0c1db82f1b9de51094c2aaff2176"
1278 integrity sha512-tiRpnMeeyQuuzgL5UNSeiqMwF8UOWPbAE5rzcu/1zyq4oPG2Ox6xm4YCOruwbp10F8odWc+XwVxTyGzMSLMqxA==1293 integrity sha512-tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA==
1279 dependencies:1294 dependencies:
1280 "@jest/types" "^28.0.2"1295 "@jest/types" "^28.1.0"
1281 "@types/node" "*"1296 "@types/node" "*"
1282 chalk "^4.0.0"1297 chalk "^4.0.0"
1283 jest-message-util "^28.0.2"1298 jest-message-util "^28.1.0"
1284 jest-util "^28.0.2"1299 jest-util "^28.1.0"
1285 slash "^3.0.0"1300 slash "^3.0.0"
12861301
1287"@jest/core@^28.0.3":1302"@jest/core@^28.1.0":
1288 version "28.0.3"1303 version "28.1.0"
1289 resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.0.3.tgz#2b8223914ef6ae16ff740e65235ef8ef49c46d52"1304 resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.1.0.tgz#784a1e6ce5358b46fcbdcfbbd93b1b713ed4ea80"
1290 integrity sha512-cCQW06vEZ+5r50SB06pOnSWsOBs7F+lswPYnKKfBz1ncLlj1sMqmvjgam8q40KhlZ8Ut4eNAL2Hvfx4BKIO2FA==1305 integrity sha512-/2PTt0ywhjZ4NwNO4bUqD9IVJfmFVhVKGlhvSpmEfUCuxYf/3NHcKmRFI+I71lYzbTT3wMuYpETDCTHo81gC/g==
1291 dependencies:1306 dependencies:
1292 "@jest/console" "^28.0.2"1307 "@jest/console" "^28.1.0"
1293 "@jest/reporters" "^28.0.3"1308 "@jest/reporters" "^28.1.0"
1294 "@jest/test-result" "^28.0.2"1309 "@jest/test-result" "^28.1.0"
1295 "@jest/transform" "^28.0.3"1310 "@jest/transform" "^28.1.0"
1296 "@jest/types" "^28.0.2"1311 "@jest/types" "^28.1.0"
1297 "@types/node" "*"1312 "@types/node" "*"
1298 ansi-escapes "^4.2.1"1313 ansi-escapes "^4.2.1"
1299 chalk "^4.0.0"1314 chalk "^4.0.0"
1300 ci-info "^3.2.0"1315 ci-info "^3.2.0"
1301 exit "^0.1.2"1316 exit "^0.1.2"
1302 graceful-fs "^4.2.9"1317 graceful-fs "^4.2.9"
1303 jest-changed-files "^28.0.2"1318 jest-changed-files "^28.0.2"
1304 jest-config "^28.0.3"1319 jest-config "^28.1.0"
1305 jest-haste-map "^28.0.2"1320 jest-haste-map "^28.1.0"
1306 jest-message-util "^28.0.2"1321 jest-message-util "^28.1.0"
1307 jest-regex-util "^28.0.2"1322 jest-regex-util "^28.0.2"
1308 jest-resolve "^28.0.3"1323 jest-resolve "^28.1.0"
1309 jest-resolve-dependencies "^28.0.3"1324 jest-resolve-dependencies "^28.1.0"
1310 jest-runner "^28.0.3"1325 jest-runner "^28.1.0"
1311 jest-runtime "^28.0.3"1326 jest-runtime "^28.1.0"
1312 jest-snapshot "^28.0.3"1327 jest-snapshot "^28.1.0"
1313 jest-util "^28.0.2"1328 jest-util "^28.1.0"
1314 jest-validate "^28.0.2"1329 jest-validate "^28.1.0"
1315 jest-watcher "^28.0.2"1330 jest-watcher "^28.1.0"
1316 micromatch "^4.0.4"1331 micromatch "^4.0.4"
1317 pretty-format "^28.0.2"1332 pretty-format "^28.1.0"
1318 rimraf "^3.0.0"1333 rimraf "^3.0.0"
1319 slash "^3.0.0"1334 slash "^3.0.0"
1320 strip-ansi "^6.0.0"1335 strip-ansi "^6.0.0"
13211336
1322"@jest/environment@^28.0.2":1337"@jest/environment@^28.1.0":
1323 version "28.0.2"1338 version "28.1.0"
1324 resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.0.2.tgz#a865949d876b2d364b979bbc0a46338ffd23de26"1339 resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.1.0.tgz#dedf7d59ec341b9292fcf459fd0ed819eb2e228a"
1325 integrity sha512-IvI7dEfqVEffDYlw9FQfVBt6kXt/OI38V7QUIur0ulOQgzpKYJDVvLzj4B1TVmHWTGW5tcnJdlZ3hqzV6/I9Qg==1340 integrity sha512-S44WGSxkRngzHslhV6RoAExekfF7Qhwa6R5+IYFa81mpcj0YgdBnRSmvHe3SNwOt64yXaE5GG8Y2xM28ii5ssA==
1326 dependencies:1341 dependencies:
1327 "@jest/fake-timers" "^28.0.2"1342 "@jest/fake-timers" "^28.1.0"
1328 "@jest/types" "^28.0.2"1343 "@jest/types" "^28.1.0"
1329 "@types/node" "*"1344 "@types/node" "*"
1330 jest-mock "^28.0.2"1345 jest-mock "^28.1.0"
13311346
1332"@jest/expect-utils@^28.0.2":1347"@jest/expect-utils@^28.1.0":
1333 version "28.0.2"1348 version "28.1.0"
1334 resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.0.2.tgz#0a055868d225261eac82a12013e2e0735238774d"1349 resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.1.0.tgz#a5cde811195515a9809b96748ae8bcc331a3538a"
1335 integrity sha512-YryfH2zN5c7M8eLtn9oTBRj1sfD+X4cHNXJnTejqCveOS33wADEZUxJ7de5++lRvByNpRpfAnc8zTK7yrUJqgA==1350 integrity sha512-5BrG48dpC0sB80wpeIX5FU6kolDJI4K0n5BM9a5V38MGx0pyRvUBSS0u2aNTdDzmOrCjhOg8pGs6a20ivYkdmw==
1336 dependencies:1351 dependencies:
1337 jest-get-type "^28.0.2"1352 jest-get-type "^28.0.2"
13381353
1339"@jest/expect@^28.0.3":1354"@jest/expect@^28.1.0":
1340 version "28.0.3"1355 version "28.1.0"
1341 resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.0.3.tgz#80e0233bee62586e1112f904d28b904dd1143ef2"1356 resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.1.0.tgz#2e5a31db692597070932366a1602b5157f0f217c"
1342 integrity sha512-VEzZr85bqNomgayQkR7hWG5HnbZYWYWagQriZsixhLmOzU6PCpMP61aeVhkCoRrg7ri5f7JDpeTPzDAajIwFHw==1357 integrity sha512-be9ETznPLaHOmeJqzYNIXv1ADEzENuQonIoobzThOYPuK/6GhrWNIJDVTgBLCrz3Am73PyEU2urQClZp0hLTtA==
1343 dependencies:1358 dependencies:
1344 expect "^28.0.2"1359 expect "^28.1.0"
1345 jest-snapshot "^28.0.3"1360 jest-snapshot "^28.1.0"
13461361
1347"@jest/fake-timers@^28.0.2":1362"@jest/fake-timers@^28.1.0":
1348 version "28.0.2"1363 version "28.1.0"
1349 resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.0.2.tgz#d36e62bc58f39d65ea6adac1ff7749e63aff05f3"1364 resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.1.0.tgz#ea77878aabd5c5d50e1fc53e76d3226101e33064"
1350 integrity sha512-R75yUv+WeybPa4ZVhX9C+8XN0TKjUoceUX+/QEaDVQGxZZOK50eD74cs7iMDTtpodh00d8iLlc9197vgF6oZjA==1365 integrity sha512-Xqsf/6VLeAAq78+GNPzI7FZQRf5cCHj1qgQxCjws9n8rKw8r1UYoeaALwBvyuzOkpU3c1I6emeMySPa96rxtIg==
1351 dependencies:1366 dependencies:
1352 "@jest/types" "^28.0.2"1367 "@jest/types" "^28.1.0"
1353 "@sinonjs/fake-timers" "^9.1.1"1368 "@sinonjs/fake-timers" "^9.1.1"
1354 "@types/node" "*"1369 "@types/node" "*"
1355 jest-message-util "^28.0.2"1370 jest-message-util "^28.1.0"
1356 jest-mock "^28.0.2"1371 jest-mock "^28.1.0"
1357 jest-util "^28.0.2"1372 jest-util "^28.1.0"
13581373
1359"@jest/globals@^28.0.3":1374"@jest/globals@^28.1.0":
1360 version "28.0.3"1375 version "28.1.0"
1361 resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.0.3.tgz#70f68a06c863d1c9d14aea151c69b9690e3efeb4"1376 resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.1.0.tgz#a4427d2eb11763002ff58e24de56b84ba79eb793"
1362 integrity sha512-q/zXYI6CKtTSIt1WuTHBYizJhH7K8h+xG5PE3C0oawLlPIvUMDYmpj0JX0XsJwPRLCsz/fYXHZVG46AaEhSPmw==1377 integrity sha512-3m7sTg52OTQR6dPhsEQSxAvU+LOBbMivZBwOvKEZ+Rb+GyxVnXi9HKgOTYkx/S99T8yvh17U4tNNJPIEQmtwYw==
1363 dependencies:1378 dependencies:
1364 "@jest/environment" "^28.0.2"1379 "@jest/environment" "^28.1.0"
1365 "@jest/expect" "^28.0.3"1380 "@jest/expect" "^28.1.0"
1366 "@jest/types" "^28.0.2"1381 "@jest/types" "^28.1.0"
13671382
1368"@jest/reporters@^28.0.3":1383"@jest/reporters@^28.1.0":
1369 version "28.0.3"1384 version "28.1.0"
1370 resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.0.3.tgz#9996189e5552e37fcdffe0f41c07754f5d2ea854"1385 resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.1.0.tgz#5183a28b9b593b6000fa9b89b031c7216b58a9a0"
1371 integrity sha512-xrbIc7J/xwo+D7AY3enAR9ZWYCmJ8XIkstTukTGpKDph0gLl/TJje9jl3dssvE4KJzYqMKiSrnE5Nt68I4fTEg==1386 integrity sha512-qxbFfqap/5QlSpIizH9c/bFCDKsQlM4uAKSOvZrP+nIdrjqre3FmKzpTtYyhsaVcOSNK7TTt2kjm+4BJIjysFA==
1372 dependencies:1387 dependencies:
1373 "@bcoe/v8-coverage" "^0.2.3"1388 "@bcoe/v8-coverage" "^0.2.3"
1374 "@jest/console" "^28.0.2"1389 "@jest/console" "^28.1.0"
1375 "@jest/test-result" "^28.0.2"1390 "@jest/test-result" "^28.1.0"
1376 "@jest/transform" "^28.0.3"1391 "@jest/transform" "^28.1.0"
1377 "@jest/types" "^28.0.2"1392 "@jest/types" "^28.1.0"
1378 "@jridgewell/trace-mapping" "^0.3.7"1393 "@jridgewell/trace-mapping" "^0.3.7"
1379 "@types/node" "*"1394 "@types/node" "*"
1380 chalk "^4.0.0"1395 chalk "^4.0.0"
1387 istanbul-lib-report "^3.0.0"1402 istanbul-lib-report "^3.0.0"
1388 istanbul-lib-source-maps "^4.0.0"1403 istanbul-lib-source-maps "^4.0.0"
1389 istanbul-reports "^3.1.3"1404 istanbul-reports "^3.1.3"
1390 jest-util "^28.0.2"1405 jest-util "^28.1.0"
1391 jest-worker "^28.0.2"1406 jest-worker "^28.1.0"
1392 slash "^3.0.0"1407 slash "^3.0.0"
1393 string-length "^4.0.1"1408 string-length "^4.0.1"
1409 strip-ansi "^6.0.0"
1394 terminal-link "^2.0.0"1410 terminal-link "^2.0.0"
1395 v8-to-istanbul "^9.0.0"1411 v8-to-istanbul "^9.0.0"
13961412
1410 callsites "^3.0.0"1426 callsites "^3.0.0"
1411 graceful-fs "^4.2.9"1427 graceful-fs "^4.2.9"
14121428
1413"@jest/test-result@^28.0.2":1429"@jest/test-result@^28.1.0":
1414 version "28.0.2"1430 version "28.1.0"
1415 resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.0.2.tgz#bc8e15a95347e3c2149572ae06a5a6fed939c522"1431 resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.0.tgz#fd149dee123510dd2fcadbbf5f0020f98ad7f12c"
1416 integrity sha512-4EUqgjq9VzyUiVTvZfI9IRJD6t3NYBNP4f+Eq8Zr93+hkJ0RrGU4OBTw8tfNzidKX+bmuYzn8FxqpxOPIGGCMA==1432 integrity sha512-sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ==
1417 dependencies:1433 dependencies:
1418 "@jest/console" "^28.0.2"1434 "@jest/console" "^28.1.0"
1419 "@jest/types" "^28.0.2"1435 "@jest/types" "^28.1.0"
1420 "@types/istanbul-lib-coverage" "^2.0.0"1436 "@types/istanbul-lib-coverage" "^2.0.0"
1421 collect-v8-coverage "^1.0.0"1437 collect-v8-coverage "^1.0.0"
14221438
1423"@jest/test-sequencer@^28.0.2":1439"@jest/test-sequencer@^28.1.0":
1424 version "28.0.2"1440 version "28.1.0"
1425 resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.0.2.tgz#7669b7d8ff2aa7a8221b11bb37cce552de81b1bb"1441 resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.1.0.tgz#ce7294bbe986415b9a30e218c7e705e6ebf2cdf2"
1426 integrity sha512-zhnZ8ydkZQTPL7YucB86eOlD79zPy5EGSUKiR2Iv93RVEDU6OEP33kwDBg70ywOcxeJGDRhyo09q7TafNCBiIg==1442 integrity sha512-tZCEiVWlWNTs/2iK9yi6o3AlMfbbYgV4uuZInSVdzZ7ftpHZhCMuhvk2HLYhCZzLgPFQ9MnM1YaxMnh3TILFiQ==
1427 dependencies:1443 dependencies:
1428 "@jest/test-result" "^28.0.2"1444 "@jest/test-result" "^28.1.0"
1429 graceful-fs "^4.2.9"1445 graceful-fs "^4.2.9"
1430 jest-haste-map "^28.0.2"1446 jest-haste-map "^28.1.0"
1431 slash "^3.0.0"1447 slash "^3.0.0"
14321448
1433"@jest/transform@^28.0.3":1449"@jest/transform@^28.1.0":
1434 version "28.0.3"1450 version "28.1.0"
1435 resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.0.3.tgz#591fb5ebc1d84db5c5f21e1225c7406c35f5eb1e"1451 resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.1.0.tgz#224a3c9ba4cc98e2ff996c0a89a2d59db15c74ce"
1436 integrity sha512-+Y0ikI7SwoW/YbK8t9oKwC70h4X2Gd0OVuz5tctRvSV/EDQU00AAkoqevXgPSSFimUmp/sp7Yl8s/1bExDqOIg==1452 integrity sha512-omy2xe5WxlAfqmsTjTPxw+iXRTRnf+NtX0ToG+4S0tABeb4KsKmPUHq5UBuwunHg3tJRwgEQhEp0M/8oiatLEA==
1437 dependencies:1453 dependencies:
1438 "@babel/core" "^7.11.6"1454 "@babel/core" "^7.11.6"
1439 "@jest/types" "^28.0.2"1455 "@jest/types" "^28.1.0"
1440 "@jridgewell/trace-mapping" "^0.3.7"1456 "@jridgewell/trace-mapping" "^0.3.7"
1441 babel-plugin-istanbul "^6.1.1"1457 babel-plugin-istanbul "^6.1.1"
1442 chalk "^4.0.0"1458 chalk "^4.0.0"
1443 convert-source-map "^1.4.0"1459 convert-source-map "^1.4.0"
1444 fast-json-stable-stringify "^2.0.0"1460 fast-json-stable-stringify "^2.0.0"
1445 graceful-fs "^4.2.9"1461 graceful-fs "^4.2.9"
1446 jest-haste-map "^28.0.2"1462 jest-haste-map "^28.1.0"
1447 jest-regex-util "^28.0.2"1463 jest-regex-util "^28.0.2"
1448 jest-util "^28.0.2"1464 jest-util "^28.1.0"
1449 micromatch "^4.0.4"1465 micromatch "^4.0.4"
1450 pirates "^4.0.4"1466 pirates "^4.0.4"
1451 slash "^3.0.0"1467 slash "^3.0.0"
1452 write-file-atomic "^4.0.1"1468 write-file-atomic "^4.0.1"
14531469
1454"@jest/types@^28.0.2":1470"@jest/types@^28.1.0":
1455 version "28.0.2"1471 version "28.1.0"
1456 resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.0.2.tgz#70b9538c1863fb060b2f438ca008b5563d00c5b4"1472 resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.0.tgz#508327a89976cbf9bd3e1cc74641a29fd7dfd519"
1457 integrity sha512-hi3jUdm9iht7I2yrV5C4s3ucCJHUP8Eh3W6rQ1s4n/Qw9rQgsda4eqCt+r3BKRi7klVmZfQlMx1nGlzNMP2d8A==1473 integrity sha512-xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA==
1458 dependencies:1474 dependencies:
1459 "@jest/schemas" "^28.0.2"1475 "@jest/schemas" "^28.0.2"
1460 "@types/istanbul-lib-coverage" "^2.0.0"1476 "@types/istanbul-lib-coverage" "^2.0.0"
1631 dependencies:1647 dependencies:
1632 "@octokit/openapi-types" "^11.2.0"1648 "@octokit/openapi-types" "^11.2.0"
16331649
1634"@polkadot/api-augment@8.3.1":1650"@polkadot/api-augment@8.3.3-12":
1635 version "8.3.1"1651 version "8.3.3-12"
1636 resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-8.3.1.tgz#24345d65851eb9c5d5bac4d4e90d6f3cbe5668bd"1652 resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-8.3.3-12.tgz#3787c2a259cc6ae596acfa265f2b543abe7bd5e0"
1637 integrity sha512-NuGUr3tBB7GNhnQjAIr/HYmW3NHeAw8cqlfUUrhxioPeRfVT6in7y5pDFu1/z7VIqF4KTHfGmnpOuNyebt4Anw==1653 integrity sha512-c/rfky4OqG2yU2qDIrYNoYMPNBJA9MejUHsssHTjqVOxMGTdOu6QgfvDQ9IKROo45aV96N8dpTsIH8MNJL1c2A==
1638 dependencies:1654 dependencies:
1639 "@babel/runtime" "^7.17.9"1655 "@babel/runtime" "^7.17.9"
1640 "@polkadot/api-base" "8.3.1"1656 "@polkadot/api-base" "8.3.3-12"
1641 "@polkadot/rpc-augment" "8.3.1"1657 "@polkadot/rpc-augment" "8.3.3-12"
1642 "@polkadot/types" "8.3.1"1658 "@polkadot/types" "8.3.3-12"
1643 "@polkadot/types-augment" "8.3.1"1659 "@polkadot/types-augment" "8.3.3-12"
1644 "@polkadot/types-codec" "8.3.1"1660 "@polkadot/types-codec" "8.3.3-12"
1645 "@polkadot/util" "^9.1.1"1661 "@polkadot/util" "^9.1.2-7"
16461662
1647"@polkadot/api-base@8.3.1":1663"@polkadot/api-base@8.3.3-12":
1648 version "8.3.1"1664 version "8.3.3-12"
1649 resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-8.3.1.tgz#202594336cd3906ab5546c6150e304705706fb5b"1665 resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-8.3.3-12.tgz#2193f44e478d727d5ca4b8f79bc81864096db126"
1650 integrity sha512-B0D82xYB/423ypWbSd1ndYabvcXYyp7UjNU02Ap39xe9LgJkeRbYP3oliCW4P2s9VsF6yWMTrbP2eizvao+haQ==1666 integrity sha512-/xeT/A8Q6tgQXRENUiECMc7hlJF5n0d5u3ZRCKAur8RxFiG8t5EPG+O7O7dRYKa/u3MU8lSH/pSrqYQp27lxZQ==
1651 dependencies:1667 dependencies:
1652 "@babel/runtime" "^7.17.9"1668 "@babel/runtime" "^7.17.9"
1653 "@polkadot/rpc-core" "8.3.1"1669 "@polkadot/rpc-core" "8.3.3-12"
1654 "@polkadot/types" "8.3.1"1670 "@polkadot/types" "8.3.3-12"
1655 "@polkadot/util" "^9.1.1"1671 "@polkadot/util" "^9.1.2-7"
1656 rxjs "^7.5.5"1672 rxjs "^7.5.5"
16571673
1658"@polkadot/api-contract@8.3.1":1674"@polkadot/api-contract@8.3.3-12":
1659 version "8.3.1"1675 version "8.3.3-12"
1660 resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-8.3.1.tgz#8c39e5d567c85c3a31ec2717c1fac8355efb0601"1676 resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-8.3.3-12.tgz#4fe67520c872579077a72931fe17c90037a9e218"
1661 integrity sha512-ghPZKyzTb5S3xlcjYFazfivp4SGimSZnU/k8oYLKLEH6L8WIfCiKZl9PrQkK7qPR/F+J146hJpTzwW6aszNmQw==1677 integrity sha512-CFT6FiZY4YzgA839jce5pTbPLXDMndbeiG6Gwjd0ffrkcleEMAzvRybS4M5jyKvdUDJ7CwL5BJSisL8VwjN2Cw==
1662 dependencies:1678 dependencies:
1663 "@babel/runtime" "^7.17.9"1679 "@babel/runtime" "^7.17.9"
1664 "@polkadot/api" "8.3.1"1680 "@polkadot/api" "8.3.3-12"
1665 "@polkadot/types" "8.3.1"1681 "@polkadot/types" "8.3.3-12"
1666 "@polkadot/types-codec" "8.3.1"1682 "@polkadot/types-codec" "8.3.3-12"
1667 "@polkadot/types-create" "8.3.1"1683 "@polkadot/types-create" "8.3.3-12"
1668 "@polkadot/util" "^9.1.1"1684 "@polkadot/util" "^9.1.2-7"
1669 "@polkadot/util-crypto" "^9.1.1"1685 "@polkadot/util-crypto" "^9.1.2-7"
1670 rxjs "^7.5.5"1686 rxjs "^7.5.5"
16711687
1672"@polkadot/api-derive@8.3.1":1688"@polkadot/api-derive@8.3.3-12":
1673 version "8.3.1"1689 version "8.3.3-12"
1674 resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-8.3.1.tgz#59f0d6bb28a3184eea3927e816e2e0e2e9885100"1690 resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-8.3.3-12.tgz#1d855a5fe78b5d1d8d6b0d81629a20318a881ea9"
1675 integrity sha512-oOUqb0Tusp7I1G7QBb+EQJMP6xtE9WFlZ16vvh4irb/aLLrpdYwM1bQpoGh9WQjEHhVpCLo/5SQIkxBlmPoOwg==1691 integrity sha512-Off/P2FU1aM2x+amchgX1bo/HQNJLrSPuY/7r93J3MXxW2eEHp3kbuedZObeVMDEZGt9lcI6EEL6meVoYW1bew==
1676 dependencies:1692 dependencies:
1677 "@babel/runtime" "^7.17.9"1693 "@babel/runtime" "^7.17.9"
1678 "@polkadot/api" "8.3.1"1694 "@polkadot/api" "8.3.3-12"
1679 "@polkadot/api-augment" "8.3.1"1695 "@polkadot/api-augment" "8.3.3-12"
1680 "@polkadot/api-base" "8.3.1"1696 "@polkadot/api-base" "8.3.3-12"
1681 "@polkadot/rpc-core" "8.3.1"1697 "@polkadot/rpc-core" "8.3.3-12"
1682 "@polkadot/types" "8.3.1"1698 "@polkadot/types" "8.3.3-12"
1683 "@polkadot/types-codec" "8.3.1"1699 "@polkadot/types-codec" "8.3.3-12"
1684 "@polkadot/util" "^9.1.1"1700 "@polkadot/util" "^9.1.2-7"
1685 "@polkadot/util-crypto" "^9.1.1"1701 "@polkadot/util-crypto" "^9.1.2-7"
1686 rxjs "^7.5.5"1702 rxjs "^7.5.5"
16871703
1688"@polkadot/api@8.3.1":1704"@polkadot/api@8.3.3-12":
1689 version "8.3.1"1705 version "8.3.3-12"
1690 resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-8.3.1.tgz#02a59d0d827d7b88b7fa928d608e165c70d604b1"1706 resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-8.3.3-12.tgz#25cb0d4006182e68d7815e2cfde503699d326dad"
1691 integrity sha512-hgLjql4/4vi8U56xNbMNPjBVjzNmLNJ6QCc+E+Gcy5pXe1pCl7XOSNkDofReLK79yyDiciFDbyftVO8iforwew==1707 integrity sha512-xkfrDcqt2Ci/BweY4PcVndG1O1BDS1VYM1XEl/+iydvu5il0NlaDzewln2WtZ37ZhLeZ/Iyj2BWu8laRdDdWpQ==
1692 dependencies:1708 dependencies:
1693 "@babel/runtime" "^7.17.9"1709 "@babel/runtime" "^7.17.9"
1694 "@polkadot/api-augment" "8.3.1"1710 "@polkadot/api-augment" "8.3.3-12"
1695 "@polkadot/api-base" "8.3.1"1711 "@polkadot/api-base" "8.3.3-12"
1696 "@polkadot/api-derive" "8.3.1"1712 "@polkadot/api-derive" "8.3.3-12"
1697 "@polkadot/keyring" "^9.1.1"1713 "@polkadot/keyring" "^9.1.2-7"
1698 "@polkadot/rpc-augment" "8.3.1"1714 "@polkadot/rpc-augment" "8.3.3-12"
1699 "@polkadot/rpc-core" "8.3.1"1715 "@polkadot/rpc-core" "8.3.3-12"
1700 "@polkadot/rpc-provider" "8.3.1"1716 "@polkadot/rpc-provider" "8.3.3-12"
1701 "@polkadot/types" "8.3.1"1717 "@polkadot/types" "8.3.3-12"
1702 "@polkadot/types-augment" "8.3.1"1718 "@polkadot/types-augment" "8.3.3-12"
1703 "@polkadot/types-codec" "8.3.1"1719 "@polkadot/types-codec" "8.3.3-12"
1704 "@polkadot/types-create" "8.3.1"1720 "@polkadot/types-create" "8.3.3-12"
1705 "@polkadot/types-known" "8.3.1"1721 "@polkadot/types-known" "8.3.3-12"
1706 "@polkadot/util" "^9.1.1"1722 "@polkadot/util" "^9.1.2-7"
1707 "@polkadot/util-crypto" "^9.1.1"1723 "@polkadot/util-crypto" "^9.1.2-7"
1708 eventemitter3 "^4.0.7"1724 eventemitter3 "^4.0.7"
1709 rxjs "^7.5.5"1725 rxjs "^7.5.5"
17101726
1711"@polkadot/dev@0.66.17":1727"@polkadot/dev@0.66.21":
1712 version "0.66.17"1728 version "0.66.21"
1713 resolved "https://registry.yarnpkg.com/@polkadot/dev/-/dev-0.66.17.tgz#16a5d4fad8cb24a11d8c08faaba8d339e85a5795"1729 resolved "https://registry.yarnpkg.com/@polkadot/dev/-/dev-0.66.21.tgz#edd25ca385aacc208951380ab440218337f1fb36"
1714 integrity sha512-1I+cSDo2AD+OIJX0F2gidch2a8A53g3lYIOG2dcskJRGjrXswMs31ZXvihp8UE8INrNJ5Oh4z2U7D+tv5KKJQg==1730 integrity sha512-GLAZFr/w3L+2e4s3aaj0VEbiBk98Jc69e6NFwTSdm9tk+dDNGDtV79ipT6PJRpb9SoWV66MhAURTcT3siITuPQ==
1715 dependencies:1731 dependencies:
1716 "@babel/cli" "^7.17.10"1732 "@babel/cli" "^7.17.10"
1717 "@babel/core" "^7.17.10"1733 "@babel/core" "^7.17.10"
1735 "@rollup/plugin-json" "^4.1.0"1751 "@rollup/plugin-json" "^4.1.0"
1736 "@rollup/plugin-node-resolve" "^13.3.0"1752 "@rollup/plugin-node-resolve" "^13.3.0"
1737 "@rushstack/eslint-patch" "^1.1.3"1753 "@rushstack/eslint-patch" "^1.1.3"
1738 "@typescript-eslint/eslint-plugin" "5.22.0"1754 "@typescript-eslint/eslint-plugin" "5.23.0"
1739 "@typescript-eslint/parser" "5.22.0"1755 "@typescript-eslint/parser" "5.23.0"
1740 "@vue/component-compiler-utils" "^3.3.0"1756 "@vue/component-compiler-utils" "^3.3.0"
1741 babel-jest "^28.0.3"1757 babel-jest "^28.1.0"
1742 babel-plugin-module-extension-resolver "^1.0.0-rc.2"1758 babel-plugin-module-extension-resolver "^1.0.0-rc.2"
1743 babel-plugin-module-resolver "^4.1.0"1759 babel-plugin-module-resolver "^4.1.0"
1744 babel-plugin-styled-components "^2.0.7"1760 babel-plugin-styled-components "^2.0.7"
1745 browserslist "^4.20.3"1761 browserslist "^4.20.3"
1746 coveralls "^3.1.1"1762 coveralls "^3.1.1"
1747 eslint "^8.14.0"1763 eslint "^8.15.0"
1748 eslint-config-standard "^17.0.0"1764 eslint-config-standard "^17.0.0"
1749 eslint-import-resolver-node "^0.3.6"1765 eslint-import-resolver-node "^0.3.6"
1750 eslint-plugin-header "^3.1.1"1766 eslint-plugin-header "^3.1.1"
1757 eslint-plugin-simple-import-sort "^7.0.0"1773 eslint-plugin-simple-import-sort "^7.0.0"
1758 eslint-plugin-sort-destructure-keys "^1.4.0"1774 eslint-plugin-sort-destructure-keys "^1.4.0"
1759 fs-extra "^10.1.0"1775 fs-extra "^10.1.0"
1760 gh-pages "^3.2.3"1776 gh-pages "^4.0.0"
1761 gh-release "^6.0.4"1777 gh-release "^6.0.4"
1762 glob "^8.0.1"1778 glob "^8.0.1"
1763 glob2base "^0.0.12"1779 glob2base "^0.0.12"
1764 jest "^28.0.3"1780 jest "^28.1.0"
1765 jest-cli "^28.0.3"1781 jest-cli "^28.1.0"
1766 jest-config "^28.0.3"1782 jest-config "^28.1.0"
1767 jest-environment-jsdom "^28.0.2"1783 jest-environment-jsdom "^28.1.0"
1768 jest-haste-map "^28.0.2"1784 jest-haste-map "^28.1.0"
1769 jest-resolve "^28.0.3"1785 jest-resolve "^28.1.0"
1770 madge "^5.0.1"1786 madge "^5.0.1"
1771 minimatch "^5.0.1"1787 minimatch "^5.0.1"
1772 mkdirp "^1.0.4"1788 mkdirp "^1.0.4"
1773 prettier "^2.6.2"1789 prettier "^2.6.2"
1774 rimraf "^3.0.2"1790 rimraf "^3.0.2"
1775 rollup "^2.71.1"1791 rollup "^2.72.1"
1776 rollup-plugin-cleanup "^3.2.1"1792 rollup-plugin-cleanup "^3.2.1"
1777 typescript "^4.6.4"1793 typescript "^4.6.4"
1778 yargs "^17.4.1"1794 yargs "^17.5.0"
17791795
1780"@polkadot/keyring@^9.1.1":1796"@polkadot/keyring@^9.1.2-7":
1781 version "9.1.1"1797 version "9.1.2-11"
1782 resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-9.1.1.tgz#d4bf244d6dd23d06fed9334e79c0d46a8fdb5988"1798 resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-9.1.2-11.tgz#f34579082ebd97a57b7f475d402c7828a2819bd1"
1783 integrity sha512-qjnO1795v7wDvU2hW0H+z7bMPNV3xcVnIjozt3/+Y5Lphu3Tohh3WNgf9uNKIUTwbWxTF4wWsiUM1ajY4CRuMA==1799 integrity sha512-qqLm2J1qHK7kNnNqjD3OZStdWwGidoOjxViHbhHoD5WEtMfnsgfVlbcJZRnTebkFr+r1pz9xb1gzURRDh/jZOQ==
1784 dependencies:1800 dependencies:
1785 "@babel/runtime" "^7.17.9"1801 "@babel/runtime" "^7.17.9"
1786 "@polkadot/util" "9.1.1"1802 "@polkadot/util" "9.1.2-11"
1787 "@polkadot/util-crypto" "9.1.1"1803 "@polkadot/util-crypto" "9.1.2-11"
17881804
1789"@polkadot/networks@9.1.1", "@polkadot/networks@^9.1.1":1805"@polkadot/networks@9.1.2-11", "@polkadot/networks@^9.1.2-7":
1790 version "9.1.1"1806 version "9.1.2-11"
1791 resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-9.1.1.tgz#3b99dcedd1ed626f6efecc642e1dcebca64978e3"1807 resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-9.1.2-11.tgz#b8a28a186e59d03dc0924215fb137b4e30e2fc1d"
1792 integrity sha512-L/jk8vDr4shzGEVOqOimmXySLpbrN8+qlk+BR3A6rFa4N+XjtcGvnnt+so+rXwJOu7U4/ir6qPU2Iq63XbQTMA==1808 integrity sha512-qWGw+eHGLWc2HW7DS4b6f1VFTMOBqdFdo02Y/yiprxd5CcbCILYwbTVAnq2qPAyfSTQ3uA4ptw1rmqyPF2HrzA==
1793 dependencies:1809 dependencies:
1794 "@babel/runtime" "^7.17.9"1810 "@babel/runtime" "^7.17.9"
1795 "@polkadot/util" "9.1.1"1811 "@polkadot/util" "9.1.2-11"
1796 "@substrate/ss58-registry" "^1.17.0"1812 "@substrate/ss58-registry" "^1.18.0"
17971813
1798"@polkadot/rpc-augment@8.3.1":1814"@polkadot/rpc-augment@8.3.3-12":
1799 version "8.3.1"1815 version "8.3.3-12"
1800 resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-8.3.1.tgz#54e8399de7af81df63b3632ceac3bb7260e9842b"1816 resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-8.3.3-12.tgz#e7e568e9f427512b94a38fb64e4cf096ba4a9b23"
1801 integrity sha512-drPw1E+ATNch/atX3+iciwXeDe71EHAU9f/LSsFJ3w2vqf39bOuj3R7Os4/W2N3Anlvv1AFrmeAP3hK2nAlezA==1817 integrity sha512-ia0gda6VV8R4mZLU08Av3XcIauTeSJExGMYl7QBNP9CSQJ9fQsTz/8AC3fBmfuLq2QHFW9Qrl2w9Zca6E6Y/eg==
1802 dependencies:1818 dependencies:
1803 "@babel/runtime" "^7.17.9"1819 "@babel/runtime" "^7.17.9"
1804 "@polkadot/rpc-core" "8.3.1"1820 "@polkadot/rpc-core" "8.3.3-12"
1805 "@polkadot/types" "8.3.1"1821 "@polkadot/types" "8.3.3-12"
1806 "@polkadot/types-codec" "8.3.1"1822 "@polkadot/types-codec" "8.3.3-12"
1807 "@polkadot/util" "^9.1.1"1823 "@polkadot/util" "^9.1.2-7"
18081824
1809"@polkadot/rpc-core@8.3.1":1825"@polkadot/rpc-core@8.3.3-12":
1810 version "8.3.1"1826 version "8.3.3-12"
1811 resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-8.3.1.tgz#b69eb0b228fbdeebeeb7380a4750ce6bf8932c6c"1827 resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-8.3.3-12.tgz#d8eb8bea16c91aba2e739945a5c8ad65d21c26b0"
1812 integrity sha512-iFdA4zPmPKhXx3+g3ONbLQ838opZKiD993baxJgOiiJKgGeCV2xtI2RwGImRKVeRwWvLR2jfAT5vzclUnXOZLA==1828 integrity sha512-TCwV7C/jiZSsn+cVF02JwuT8LI/6IQnJLX3l/7htZRJjKT4CTYOghxgHKWzDUhszAvNpWq0Q2xB8EGeqiIfweg==
1813 dependencies:1829 dependencies:
1814 "@babel/runtime" "^7.17.9"1830 "@babel/runtime" "^7.17.9"
1815 "@polkadot/rpc-augment" "8.3.1"1831 "@polkadot/rpc-augment" "8.3.3-12"
1816 "@polkadot/rpc-provider" "8.3.1"1832 "@polkadot/rpc-provider" "8.3.3-12"
1817 "@polkadot/types" "8.3.1"1833 "@polkadot/types" "8.3.3-12"
1818 "@polkadot/util" "^9.1.1"1834 "@polkadot/util" "^9.1.2-7"
1819 rxjs "^7.5.5"1835 rxjs "^7.5.5"
18201836
1821"@polkadot/rpc-provider@8.3.1":1837"@polkadot/rpc-provider@8.3.3-12":
1822 version "8.3.1"1838 version "8.3.3-12"
1823 resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-8.3.1.tgz#7d104f44f2da9336c89ebfc6e13ef1dc385ffe08"1839 resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-8.3.3-12.tgz#6b656904cb68dd21264f03b04a1143e9f0269e40"
1824 integrity sha512-+Sg5JW4tXoSO09Cob9bqrfIcVp/D/tMbiyuTg5i/gG7jxZgSXbMu0irQHTteA0YvJSi0JkO1C/uQyljowT/9Ew==1840 integrity sha512-R+ZF1jUMQrJC+YU7IrUuLA3gGZhOu4soe7/2QTelkAOZLYKrbAQZ2yH6Ju+XLc/uRSwMVb2Sly/3j3xIkhhPag==
1825 dependencies:1841 dependencies:
1826 "@babel/runtime" "^7.17.9"1842 "@babel/runtime" "^7.17.9"
1827 "@polkadot/keyring" "^9.1.1"1843 "@polkadot/keyring" "^9.1.2-7"
1828 "@polkadot/types" "8.3.1"1844 "@polkadot/types" "8.3.3-12"
1829 "@polkadot/types-support" "8.3.1"1845 "@polkadot/types-support" "8.3.3-12"
1830 "@polkadot/util" "^9.1.1"1846 "@polkadot/util" "^9.1.2-7"
1831 "@polkadot/util-crypto" "^9.1.1"1847 "@polkadot/util-crypto" "^9.1.2-7"
1832 "@polkadot/x-fetch" "^9.1.1"1848 "@polkadot/x-fetch" "^9.1.2-7"
1833 "@polkadot/x-global" "^9.1.1"1849 "@polkadot/x-global" "^9.1.2-7"
1834 "@polkadot/x-ws" "^9.1.1"1850 "@polkadot/x-ws" "^9.1.2-7"
1835 "@substrate/connect" "0.7.2"1851 "@substrate/connect" "0.7.4"
1836 eventemitter3 "^4.0.7"1852 eventemitter3 "^4.0.7"
1837 mock-socket "^9.1.3"1853 mock-socket "^9.1.3"
1838 nock "^13.2.4"1854 nock "^13.2.4"
1844 dependencies:1860 dependencies:
1845 "@types/chrome" "^0.0.171"1861 "@types/chrome" "^0.0.171"
18461862
1847"@polkadot/typegen@8.3.1":1863"@polkadot/typegen@8.3.3-12":
1848 version "8.3.1"1864 version "8.3.3-12"
1849 resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-8.3.1.tgz#e3977af7a295204e7bee4d1cf65dc0650e5ef474"1865 resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-8.3.3-12.tgz#8c58a23cdbfa1f55a5a77103ab3954c82be79d7c"
1850 integrity sha512-eXOuKB/ZMgh1Tq9DM/Dipy4YULzWf6j1oIIE0CvSjEQ17XsYrfCMg4ME7pprVZbVVKYg8oOYxbwpB6wl9BDdVg==1866 integrity sha512-+Ki5N25p9Paju9mm3494uD4/mm2W1EmhOShSGyvBeuJbWOkDoqvK3Wf9YwoepfURuoJknvpA8jZPs4q0HSkmuA==
1851 dependencies:1867 dependencies:
1852 "@babel/core" "^7.17.10"1868 "@babel/core" "^7.17.10"
1853 "@babel/register" "^7.17.7"1869 "@babel/register" "^7.17.7"
1854 "@babel/runtime" "^7.17.9"1870 "@babel/runtime" "^7.17.9"
1855 "@polkadot/api" "8.3.1"1871 "@polkadot/api" "8.3.3-12"
1856 "@polkadot/api-augment" "8.3.1"1872 "@polkadot/api-augment" "8.3.3-12"
1857 "@polkadot/rpc-augment" "8.3.1"1873 "@polkadot/rpc-augment" "8.3.3-12"
1858 "@polkadot/rpc-provider" "8.3.1"1874 "@polkadot/rpc-provider" "8.3.3-12"
1859 "@polkadot/types" "8.3.1"1875 "@polkadot/types" "8.3.3-12"
1860 "@polkadot/types-augment" "8.3.1"1876 "@polkadot/types-augment" "8.3.3-12"
1861 "@polkadot/types-codec" "8.3.1"1877 "@polkadot/types-codec" "8.3.3-12"
1862 "@polkadot/types-create" "8.3.1"1878 "@polkadot/types-create" "8.3.3-12"
1863 "@polkadot/types-support" "8.3.1"1879 "@polkadot/types-support" "8.3.3-12"
1864 "@polkadot/util" "^9.1.1"1880 "@polkadot/util" "^9.1.2-7"
1865 "@polkadot/x-ws" "^9.1.1"1881 "@polkadot/x-ws" "^9.1.2-7"
1866 handlebars "^4.7.7"1882 handlebars "^4.7.7"
1867 websocket "^1.0.34"1883 websocket "^1.0.34"
1868 yargs "^17.4.1"1884 yargs "^17.5.0"
18691885
1870"@polkadot/types-augment@8.3.1":1886"@polkadot/types-augment@8.3.3-12":
1871 version "8.3.1"1887 version "8.3.3-12"
1872 resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-8.3.1.tgz#0e07f32911fcae400a8bbe688035b1171c595db6"1888 resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-8.3.3-12.tgz#ccad4b286ae8208205faed57522e65ee6b5fc989"
1873 integrity sha512-eNvtpilnTg/hjdBiohZvkq2c+tGtf5r8nit2VOE3um0Ba80iXt0RItvNzWqShYNhGmD30gK7lDydz/HKa7uhow==1889 integrity sha512-hTdh5TKkBCiQIl6Os/jq/nU87iCqtoY7LjLeMdBg3klX813VGCoT4P3r9x6l5AQNvn0yCUbe+UeTPC2pGNo27g==
1874 dependencies:1890 dependencies:
1875 "@babel/runtime" "^7.17.9"1891 "@babel/runtime" "^7.17.9"
1876 "@polkadot/types" "8.3.1"1892 "@polkadot/types" "8.3.3-12"
1877 "@polkadot/types-codec" "8.3.1"1893 "@polkadot/types-codec" "8.3.3-12"
1878 "@polkadot/util" "^9.1.1"1894 "@polkadot/util" "^9.1.2-7"
18791895
1880"@polkadot/types-codec@8.3.1":1896"@polkadot/types-codec@8.3.3-12":
1881 version "8.3.1"1897 version "8.3.3-12"
1882 resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-8.3.1.tgz#cdb9f43685369687dd3bbb4fe42404937aa8e5c1"1898 resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-8.3.3-12.tgz#a82475432ed13191d4cde5ee83d46d9b4aa08e70"
1883 integrity sha512-xixDDTnqaxavrD2v3xZmZ6l/su3WwKAPYXyILxuwRBBipkmTlBSjxjVnuVoRYP5F63AjHfMN/ZRqLs0ibZ+pRg==1899 integrity sha512-a4KUxJEwk6h4X9VRe7iJdHEPTgEY8TqLsHcg3K98yfqJur16URvvKxhePyGPRTaQGaCE2R9lRUv4S3w+j9/gQA==
1884 dependencies:1900 dependencies:
1885 "@babel/runtime" "^7.17.9"1901 "@babel/runtime" "^7.17.9"
1886 "@polkadot/util" "^9.1.1"1902 "@polkadot/util" "^9.1.2-7"
18871903
1888"@polkadot/types-create@8.3.1":1904"@polkadot/types-create@8.3.3-12":
1889 version "8.3.1"1905 version "8.3.3-12"
1890 resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-8.3.1.tgz#aef428d7af0546bac36d41454823934eabd41380"1906 resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-8.3.3-12.tgz#3fa8bc379a60f29eafbeab19e49f294d16ac078a"
1891 integrity sha512-GyuqlBThPCoxztC2UMN4wGvbh9csTq+rerFrkVKoo1iVoGpghnwmnYw1QLHTYK8iEl6Ke5TfiyxpX8sq9PaYVQ==1907 integrity sha512-iDcecaPTzFL0JFLD2uJ5QsTEnQOZILZJmGrfsMyiLlUXvaldG6nMdB4ZdQa7Dwuny47kndHygdjOo4mcD/w13A==
1892 dependencies:1908 dependencies:
1893 "@babel/runtime" "^7.17.9"1909 "@babel/runtime" "^7.17.9"
1894 "@polkadot/types-codec" "8.3.1"1910 "@polkadot/types-codec" "8.3.3-12"
1895 "@polkadot/util" "^9.1.1"1911 "@polkadot/util" "^9.1.2-7"
18961912
1897"@polkadot/types-known@8.3.1":1913"@polkadot/types-known@8.3.3-12":
1898 version "8.3.1"1914 version "8.3.3-12"
1899 resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-8.3.1.tgz#39432b0d58eca212aed9d985f452a5e93cca86dd"1915 resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-8.3.3-12.tgz#4cd214bf5b3bcf71689519c7ce23c60ae1aa7f02"
1900 integrity sha512-qoNXPMTiuMJ1Ov5fxS85SWB3y9cwac8jQtfDq0TzAoOK6aAVSJbdOS9b4/Vgu0pLNpEhxeYZPtSyvKtS/RTEOQ==1916 integrity sha512-l9pVCaQ8Ct5NhK3uxsSaD2nvKrws7P6Eh53KY/Y5sdoHf6rrvPqjEq8Q5WboSU9da0IPM3SP4k3rUj0Wc/Sy1A==
1901 dependencies:1917 dependencies:
1902 "@babel/runtime" "^7.17.9"1918 "@babel/runtime" "^7.17.9"
1903 "@polkadot/networks" "^9.1.1"1919 "@polkadot/networks" "^9.1.2-7"
1904 "@polkadot/types" "8.3.1"1920 "@polkadot/types" "8.3.3-12"
1905 "@polkadot/types-codec" "8.3.1"1921 "@polkadot/types-codec" "8.3.3-12"
1906 "@polkadot/types-create" "8.3.1"1922 "@polkadot/types-create" "8.3.3-12"
1907 "@polkadot/util" "^9.1.1"1923 "@polkadot/util" "^9.1.2-7"
19081924
1909"@polkadot/types-support@8.3.1":1925"@polkadot/types-support@8.3.3-12":
1910 version "8.3.1"1926 version "8.3.3-12"
1911 resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-8.3.1.tgz#51e6c250f4b18586dc0f5ba96df912db96349566"1927 resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-8.3.3-12.tgz#0039f5410f1212b9f8f410555eeb793c0e1020a4"
1912 integrity sha512-P8V28mH6VK8p5Cw+OT7ks62EWUa8f//P4mR03PC5XBgcd4pqbvo5BawPVYwARuENnmm46KLhlrcwy0QTHNCukQ==1928 integrity sha512-T6LnwtTH+Y/SJMD1atsVFPHYsg7GF77MdH8/ZCfyTYAC+7k72ikLOHMVIe1qgpXtMBhT3zw6q0RwwpriSE0rmw==
1913 dependencies:1929 dependencies:
1914 "@babel/runtime" "^7.17.9"1930 "@babel/runtime" "^7.17.9"
1915 "@polkadot/util" "^9.1.1"1931 "@polkadot/util" "^9.1.2-7"
19161932
1917"@polkadot/types@8.3.1":1933"@polkadot/types@8.3.3-12":
1918 version "8.3.1"1934 version "8.3.3-12"
1919 resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-8.3.1.tgz#3234d8ead45a59b608fe946d813563a17987fba5"1935 resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-8.3.3-12.tgz#bf49949120558a17143141fe8d24ccf344e21b9f"
1920 integrity sha512-cpokZ4Ei/zduuojErwsei5LKRumkVb4GB4cvHWXEYorNai3MblRYW5huwMb/7+sPOiGHhPysFnHO9BZkrGTHAw==1936 integrity sha512-FAAitHXwb6fBxhaJWrjjIJ3DhMvyllOjNOiaDUsfoofpLML9/sumTAhcu++xqqZQF6Z3GL4pyG7tjZ78QN8xSQ==
1921 dependencies:1937 dependencies:
1922 "@babel/runtime" "^7.17.9"1938 "@babel/runtime" "^7.17.9"
1923 "@polkadot/keyring" "^9.1.1"1939 "@polkadot/keyring" "^9.1.2-7"
1924 "@polkadot/types-augment" "8.3.1"1940 "@polkadot/types-augment" "8.3.3-12"
1925 "@polkadot/types-codec" "8.3.1"1941 "@polkadot/types-codec" "8.3.3-12"
1926 "@polkadot/types-create" "8.3.1"1942 "@polkadot/types-create" "8.3.3-12"
1927 "@polkadot/util" "^9.1.1"1943 "@polkadot/util" "^9.1.2-7"
1928 "@polkadot/util-crypto" "^9.1.1"1944 "@polkadot/util-crypto" "^9.1.2-7"
1929 rxjs "^7.5.5"1945 rxjs "^7.5.5"
19301946
1931"@polkadot/util-crypto@9.1.1", "@polkadot/util-crypto@^9.1.1":1947"@polkadot/util-crypto@9.1.2-11", "@polkadot/util-crypto@^9.1.2-7":
1932 version "9.1.1"1948 version "9.1.2-11"
1933 resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-9.1.1.tgz#3826f8377beabee3efd6ff8a54c4899e6ee4819c"1949 resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-9.1.2-11.tgz#b065f75df20147ea99457dc76168bdf17f01c3f1"
1934 integrity sha512-FiQ4u8q1QZNdE2MUMb3JupbSMei9Ww6Czo/QYPguy73Tp6OH3G9OX8abBgTUwS/gX/CFcbHajhb3oi95v0IgVg==1950 integrity sha512-fYyW2B/jvMy96FoAWNC57dUgRHyFe46UiFRRxy8dn+yrib9PgihjumJgzpJe4T5TFaJdh3EwvnUCjGFL9odZtg==
1935 dependencies:1951 dependencies:
1936 "@babel/runtime" "^7.17.9"1952 "@babel/runtime" "^7.17.9"
1937 "@noble/hashes" "1.0.0"1953 "@noble/hashes" "1.0.0"
1938 "@noble/secp256k1" "1.5.5"1954 "@noble/secp256k1" "1.5.5"
1939 "@polkadot/networks" "9.1.1"1955 "@polkadot/networks" "9.1.2-11"
1940 "@polkadot/util" "9.1.1"1956 "@polkadot/util" "9.1.2-11"
1941 "@polkadot/wasm-crypto" "^6.0.1"1957 "@polkadot/wasm-crypto" "^6.0.2-15"
1942 "@polkadot/x-bigint" "9.1.1"1958 "@polkadot/x-bigint" "9.1.2-11"
1943 "@polkadot/x-randomvalues" "9.1.1"1959 "@polkadot/x-randomvalues" "9.1.2-11"
1944 "@scure/base" "1.0.0"1960 "@scure/base" "1.0.0"
1945 ed2curve "^0.3.0"1961 ed2curve "^0.3.0"
1946 tweetnacl "^1.0.3"1962 tweetnacl "^1.0.3"
19471963
1948"@polkadot/util@9.1.1", "@polkadot/util@^9.1.1":1964"@polkadot/util@9.1.2-11", "@polkadot/util@^9.1.2-7":
1949 version "9.1.1"1965 version "9.1.2-11"
1950 resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-9.1.1.tgz#7b6eda0130fd578f7fa14821ed9b82e1e48efcdb"1966 resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-9.1.2-11.tgz#e0960a208c7f61524750405c7126c507dd90d7c7"
1951 integrity sha512-eJzyrM0+b+DLo1hD+y4Al1DOEdF0UEUVnWqWZNIx2fuKsgG72gFosJM0EOjbVoxq8B1Hx3KOCNc0fl3Mpc9oYQ==1967 integrity sha512-3+9NJrb/P4Xc6bwsLHjwcs3lzf2RXu+cpKRyxD09T3AXilp8zb/0/Q7Uxk/nFmVabqrWatk6kvsLwF/+OzWQDg==
1952 dependencies:1968 dependencies:
1953 "@babel/runtime" "^7.17.9"1969 "@babel/runtime" "^7.17.9"
1954 "@polkadot/x-bigint" "9.1.1"1970 "@polkadot/x-bigint" "9.1.2-11"
1955 "@polkadot/x-global" "9.1.1"1971 "@polkadot/x-global" "9.1.2-11"
1956 "@polkadot/x-textdecoder" "9.1.1"1972 "@polkadot/x-textdecoder" "9.1.2-11"
1957 "@polkadot/x-textencoder" "9.1.1"1973 "@polkadot/x-textencoder" "9.1.2-11"
1958 "@types/bn.js" "^5.1.0"1974 "@types/bn.js" "^5.1.0"
1959 bn.js "^5.2.0"1975 bn.js "^5.2.0"
1960 ip-regex "^4.3.0"1976 ip-regex "^4.3.0"
19611977
1962"@polkadot/wasm-crypto-asmjs@^6.0.1":1978"@polkadot/wasm-bridge@6.0.2-15":
1963 version "6.0.1"1979 version "6.0.2-15"
1964 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.0.1.tgz#64a5ac84d3e7e23a57429fb8932e51161644d536"1980 resolved "https://registry.yarnpkg.com/@polkadot/wasm-bridge/-/wasm-bridge-6.0.2-15.tgz#8e3c12bb608257f4dac591c8c58e758314f024bb"
1965 integrity sha512-cSGsHBLfPW2nHztgZd+gisCoScA02jbAzwjop/b8xumQ2kq7yAed/K9G1lOQiofEKRetIJeqBzJyk0etopRORw==1981 integrity sha512-p1SUJCkmIj1JsKsR6oh0qHCMUsza6wTgtS4S53v3AMfwGxrzQKT2GCE7TumxMLJLOnWCv/PseQchNMnkAjLeQQ==
1966 dependencies:1982 dependencies:
1967 "@babel/runtime" "^7.17.9"1983 "@babel/runtime" "^7.17.9"
19681984
1969"@polkadot/wasm-crypto-wasm@^6.0.1":1985"@polkadot/wasm-crypto-asmjs@6.0.2-15":
1970 version "6.0.1"1986 version "6.0.2-15"
1971 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.0.1.tgz#d77033f184f46891411453d798a0d5f2e1129e88"1987 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.0.2-15.tgz#60c9490d332a127fbb3125c37b194c61f3c3f6ac"
1972 integrity sha512-0r/QgOjIyw4U0mLk6Tm97Di92uxcSPjTo7dK6tdXo1PwYouhzO5IJnL/jNgma8dm5hQoBhk7rcErmkh8c1kLFQ==1988 integrity sha512-YZdcb9lifCCjXiQi8sbVYTPV24QOttB30R9xH9cjGu26rMLuaeRWxLQzZtXbU/PZWx4nAkXdLQBFBVfqJOi83A==
1973 dependencies:1989 dependencies:
1974 "@babel/runtime" "^7.17.9"1990 "@babel/runtime" "^7.17.9"
19751991
1976"@polkadot/wasm-crypto@^6.0.1":1992"@polkadot/wasm-crypto-init@6.0.2-15":
1977 version "6.0.1"1993 version "6.0.2-15"
1978 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.0.1.tgz#47e79133446f7c3e1afd35be844ce0e793b56bee"1994 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.0.2-15.tgz#07d16ea63a6e9b783056b7387f93d9effc769dc4"
1979 integrity sha512-nW5DDrciHGbZbj0Xh7w0Bnh5exSJUw96Zux7RuGfXuoXXHZBcf0QiB4E2dcVh3d/NkF7PkB99FlkdQxQp4M0Rg==1995 integrity sha512-o0YjSMFKvfRiUq72uak8AufOVi8sLvfYWXvy4VC9/SDxgUxOYOxeFCrUGGFNTGrZh8F19bQIqdVyJgbkvbcX/w==
1980 dependencies:1996 dependencies:
1981 "@babel/runtime" "^7.17.9"1997 "@babel/runtime" "^7.17.9"
1982 "@polkadot/wasm-crypto-asmjs" "^6.0.1"1998 "@polkadot/wasm-bridge" "6.0.2-15"
1999 "@polkadot/wasm-crypto-asmjs" "6.0.2-15"
1983 "@polkadot/wasm-crypto-wasm" "^6.0.1"2000 "@polkadot/wasm-crypto-wasm" "6.0.2-15"
19842001
1985"@polkadot/x-bigint@9.1.1":2002"@polkadot/wasm-crypto-wasm@6.0.2-15":
1986 version "9.1.1"2003 version "6.0.2-15"
1987 resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-9.1.1.tgz#d435a23013f2a7d3e107c8705241ea7fbdf0f3c5"2004 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.0.2-15.tgz#c606ca34f4cb1767d0c6c1bf80a7b386f5009f1d"
1988 integrity sha512-1At5Gut4Wzep59vKTATCMWwm6EG0h+vq/qftou5kvt8u0QI2+YGJ5LAXzHk3n0/OOn8cvuAzS2kYQ4duE7YA+g==2005 integrity sha512-VSRqQ9RP+wtO1VLoR/eluTaXYgbE8W+1iAdJdilhu6qdKJJDO9vB9FV+P39qCsfqwfLciAzfSUNzj19adFid0g==
1989 dependencies:2006 dependencies:
1990 "@babel/runtime" "^7.17.9"2007 "@babel/runtime" "^7.17.9"
1991 "@polkadot/x-global" "9.1.1"2008 "@polkadot/wasm-util" "6.0.2-15"
19922009
1993"@polkadot/x-fetch@^9.1.1":2010"@polkadot/wasm-crypto@^6.0.2-15":
1994 version "9.1.1"2011 version "6.0.2-15"
1995 resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-9.1.1.tgz#84cb1464dd0d956603a39c7c86d35c17d26e461a"2012 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.0.2-15.tgz#af310adfe16cef0831d4221cde20b8b5b941c580"
1996 integrity sha512-hoV/73i8znFCTOaDElGPQAF0AcOV9C7QAq7oJkkfaTqLaRbn2rKg7ZiwLzbFo/8YYGq3QTRcO4gzd5UD2NXZ0Q==2013 integrity sha512-ShOLs+M5jwpLPlJh8lycgXNalBikXte/iIEEPVhrxiR+P26LlQwynASy87xk3cS6/2aA+/0GOxmIaqNz2tX4Rw==
1997 dependencies:2014 dependencies:
1998 "@babel/runtime" "^7.17.9"2015 "@babel/runtime" "^7.17.9"
1999 "@polkadot/x-global" "9.1.1"2016 "@polkadot/wasm-bridge" "6.0.2-15"
2017 "@polkadot/wasm-crypto-asmjs" "6.0.2-15"
2018 "@polkadot/wasm-crypto-init" "6.0.2-15"
2019 "@polkadot/wasm-crypto-wasm" "6.0.2-15"
2020 "@polkadot/wasm-util" "6.0.2-15"
2021
2022"@polkadot/wasm-util@6.0.2-15":
2023 version "6.0.2-15"
2024 resolved "https://registry.yarnpkg.com/@polkadot/wasm-util/-/wasm-util-6.0.2-15.tgz#ae952c58fba43903b41f631c153c5c5df050b336"
2025 integrity sha512-kYWS/BTVmQ6Ez9HMYu6Dk3SEGycy/14X2EBBKa1tBpTJTN6hyZr5m9OCs8vopkZNSMNQE4E8hgMzyzIF4U2QXw==
2026 dependencies:
2027 "@babel/runtime" "^7.17.9"
2028
2029"@polkadot/x-bigint@9.1.2-11":
2030 version "9.1.2-11"
2031 resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-9.1.2-11.tgz#538f682a3894d72cf9df253d5f9426f6a214b53a"
2032 integrity sha512-t/3D88gYERTehgbQr4nyT2RxQQc74HtHn+zskG4bXV1iyithisxUUUAThfoDa5EeBIIMBcxIytkKchGh6dYiyQ==
2033 dependencies:
2034 "@babel/runtime" "^7.17.9"
2035 "@polkadot/x-global" "9.1.2-11"
2036
2037"@polkadot/x-fetch@^9.1.2-7":
2038 version "9.1.2-11"
2039 resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-9.1.2-11.tgz#959dda8b8b962f73451de0997b7e14ebab453b9f"
2040 integrity sha512-VGsOB1JdT+fDIps6RUOlQazr/KTG5nnvgv1KEmtKMGpY3/GsoxX2rDMSRFQW4W4lH9Mk+CX9ZXux15KtbeDMJQ==
2041 dependencies:
2042 "@babel/runtime" "^7.17.9"
2043 "@polkadot/x-global" "9.1.2-11"
2000 "@types/node-fetch" "^2.6.1"2044 "@types/node-fetch" "^2.6.1"
2001 node-fetch "^2.6.7"2045 node-fetch "^2.6.7"
20022046
2003"@polkadot/x-global@9.1.1", "@polkadot/x-global@^9.1.1":2047"@polkadot/x-global@9.1.2-11", "@polkadot/x-global@^9.1.2-7":
2004 version "9.1.1"2048 version "9.1.2-11"
2005 resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-9.1.1.tgz#6f3baf150b4e489312068b84a3fc9a77efb1c8d2"2049 resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-9.1.2-11.tgz#777ab4e88352918acb2d1c2c8f64f913eb23bd27"
2006 integrity sha512-2aP6edHMPE14mQUFA8ipiB74PKoS6/wFWjTSbGqVOkGN0B7/kvX0/bW2fb6jPcfQlutPeqGN6dZnraoqzTzv6w==2050 integrity sha512-6fNq5CqCUSADLVjXJi3ZdSKqW3x5K1iZXgdVZjhLq0dIl9c3n3YaxWPNme+UkLqa8i+QAPb5pYWS6ZEDiU0Sxw==
2007 dependencies:2051 dependencies:
2008 "@babel/runtime" "^7.17.9"2052 "@babel/runtime" "^7.17.9"
20092053
2010"@polkadot/x-randomvalues@9.1.1":2054"@polkadot/x-randomvalues@9.1.2-11":
2011 version "9.1.1"2055 version "9.1.2-11"
2012 resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-9.1.1.tgz#1220a1d0e9bdfaf6515763a29e6ae523f7de4c4e"2056 resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-9.1.2-11.tgz#a305940b8e309316ea06836249f1b0a59316fc4b"
2013 integrity sha512-so99yggz5QoCHaVLxekIPK7Ia8Aynv0pPmTroGpWUrR1Gjj5l1dU7lN3sfyA7MBij4uGYiI3sSma5KmlRYawiQ==2057 integrity sha512-+c1UFfGUWg6q9AICodXrv2FEI0nQvILzdsWs1RU2hZ/EDKU6mH6stwK1/Hnu9UkE9M9MFzfXnuOjlMpHOOFGxw==
2014 dependencies:2058 dependencies:
2015 "@babel/runtime" "^7.17.9"2059 "@babel/runtime" "^7.17.9"
2016 "@polkadot/x-global" "9.1.1"2060 "@polkadot/x-global" "9.1.2-11"
20172061
2018"@polkadot/x-textdecoder@9.1.1":2062"@polkadot/x-textdecoder@9.1.2-11":
2019 version "9.1.1"2063 version "9.1.2-11"
2020 resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-9.1.1.tgz#080aedf20e1d317da0bf350cba59793e37bca4a1"2064 resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-9.1.2-11.tgz#1a617b1e5af4a8249ce8361790bda259e79dada0"
2021 integrity sha512-0eQPesYOfpdetHMIzTUiXcMOPzjX2hzgdSC9Q64iGWoRKwly1clUQ9SPlwEmkRF7ulPcq1pZv2kgHdKNj+lL8g==2065 integrity sha512-I1DbWyiG7o3OOYAjFrQnhXFXZVLH0VjqciiWlhNeUZpYUb9OZ+DD/h6IKOGnRCFu6JH/3hi2fp69FJ4GknlF9g==
2022 dependencies:2066 dependencies:
2023 "@babel/runtime" "^7.17.9"2067 "@babel/runtime" "^7.17.9"
2024 "@polkadot/x-global" "9.1.1"2068 "@polkadot/x-global" "9.1.2-11"
20252069
2026"@polkadot/x-textencoder@9.1.1":2070"@polkadot/x-textencoder@9.1.2-11":
2027 version "9.1.1"2071 version "9.1.2-11"
2028 resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-9.1.1.tgz#d735f4fc8384b7748d83f6b8ea814f5c0a9f13ee"2072 resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-9.1.2-11.tgz#e73faca9175895c3f2ebd42dc06c266182f1f232"
2029 integrity sha512-DyemF56si5xgXLS+l9yl3YivC2cLFlGSUarKyrP+MRVAqVKlLc9h3KXDxwnVxNeLVTg2gxSLpxo6pGqLydtFaQ==2073 integrity sha512-tUvyQAwJVSuKqMf7D+kifICgnbuepO2WmFGAfy8cA5s4MKKO/gPx3DQl/XesxVHo3oVJUsXkdauHSXph9ZytLA==
2030 dependencies:2074 dependencies:
2031 "@babel/runtime" "^7.17.9"2075 "@babel/runtime" "^7.17.9"
2032 "@polkadot/x-global" "9.1.1"2076 "@polkadot/x-global" "9.1.2-11"
20332077
2034"@polkadot/x-ws@^9.1.1":2078"@polkadot/x-ws@^9.1.2-7":
2035 version "9.1.1"2079 version "9.1.2-11"
2036 resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-9.1.1.tgz#5a0deef84bc22fa5b1f629acfbccb2cdb09ecdb7"2080 resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-9.1.2-11.tgz#cfe2aa755fdbbb7a62bfa093203fcab3deeab9f3"
2037 integrity sha512-jojrlEbeabRRCj0449IDg7BTOOntinMDZJJkABnPG3WnTtHa82TZQmrrdE51PIolGwFW6qDamh9IQcfI/Ir7Yw==2081 integrity sha512-gT2VT5NUoU3RAxhrU0tC/6Jgd5xvi7Fglj5NKABhfB3Df5UpBcGpIWHQVXfunx4dc6rAq3DB+r90WTMmazEYBQ==
2038 dependencies:2082 dependencies:
2039 "@babel/runtime" "^7.17.9"2083 "@babel/runtime" "^7.17.9"
2040 "@polkadot/x-global" "9.1.1"2084 "@polkadot/x-global" "9.1.2-11"
2041 "@types/websocket" "^1.0.5"2085 "@types/websocket" "^1.0.5"
2042 websocket "^1.0.34"2086 websocket "^1.0.34"
20432087
2137 resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.0.tgz#d452beda84b3ebfcf0e88592a4695e729a91e858"2181 resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.0.tgz#d452beda84b3ebfcf0e88592a4695e729a91e858"
2138 integrity sha512-nFVuKdp71hMd/MGlllAOh+a2hAqt8m6J2G0aSsS/RcALZexxF9jodbFc62ni8RDtJboeOfXAHhenYOANvJKPIg==2182 integrity sha512-nFVuKdp71hMd/MGlllAOh+a2hAqt8m6J2G0aSsS/RcALZexxF9jodbFc62ni8RDtJboeOfXAHhenYOANvJKPIg==
21392183
2140"@substrate/connect@0.7.2":2184"@substrate/connect@0.7.4":
2141 version "0.7.2"2185 version "0.7.4"
2142 resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.2.tgz#a2440a7a85a75acbc839745b301d5b8b81cbac5d"2186 resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.4.tgz#2b43bf83416cc2bd20e3a025fb432c71a98120ce"
2143 integrity sha512-8GWdrN7qbClYLa9LmETJnywT5fknEQeMw+QKvkUMvsHKegHD0Zkhi0K484mKxRN9RGwcPsKHPj1gMk8xlZuJ9g==2187 integrity sha512-sq5c2Z9073zyF7QOU/DLaIWI0LuECEpCovRpN8MXBieCeHnqGS2xZrPzsvvIP3LNrb/iPb5uMCyFZ4DaQa+0Bw==
2144 dependencies:2188 dependencies:
2145 "@substrate/connect-extension-protocol" "^1.0.0"2189 "@substrate/connect-extension-protocol" "^1.0.0"
2146 "@substrate/smoldot-light" "0.6.15"2190 "@substrate/smoldot-light" "0.6.15"
2155 pako "^2.0.4"2199 pako "^2.0.4"
2156 websocket "^1.0.32"2200 websocket "^1.0.32"
21572201
2158"@substrate/ss58-registry@^1.17.0":2202"@substrate/ss58-registry@^1.18.0":
2159 version "1.17.0"2203 version "1.18.0"
2160 resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.17.0.tgz#a6a50dbef67da0114aff7cdae7c6eec685c5983b"2204 resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.18.0.tgz#0744480e880ae8e557327557a2a7fc95577292ec"
2161 integrity sha512-YdQOxCtEZLnYZFg/zSzfROYtvIs5+iLD7p/VHoll7AVEhrPAmxgF5ggMDB2Dass7dfwABVx7heATbPFNg95Q8w==2205 integrity sha512-nAA1qsorxgdDnx5ie/FL90nM2riTNn72wIq8jtWsR8trsk1uTIHJgQQjEgviFCtMg4Ws9bEjo8DkWBgVGdPFmw==
21622206
2163"@szmarczak/http-timer@^1.1.2":2207"@szmarczak/http-timer@^1.1.2":
2164 version "1.1.2"2208 version "1.1.2"
2414 dependencies:2458 dependencies:
2415 "@types/yargs-parser" "*"2459 "@types/yargs-parser" "*"
24162460
2417"@typescript-eslint/eslint-plugin@5.22.0", "@typescript-eslint/eslint-plugin@^5.22.0":2461"@typescript-eslint/eslint-plugin@5.23.0":
2462 version "5.23.0"
2463 resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.23.0.tgz#bc4cbcf91fbbcc2e47e534774781b82ae25cc3d8"
2464 integrity sha512-hEcSmG4XodSLiAp1uxv/OQSGsDY6QN3TcRU32gANp+19wGE1QQZLRS8/GV58VRUoXhnkuJ3ZxNQ3T6Z6zM59DA==
2465 dependencies:
2466 "@typescript-eslint/scope-manager" "5.23.0"
2467 "@typescript-eslint/type-utils" "5.23.0"
2468 "@typescript-eslint/utils" "5.23.0"
2469 debug "^4.3.2"
2470 functional-red-black-tree "^1.0.1"
2471 ignore "^5.1.8"
2472 regexpp "^3.2.0"
2473 semver "^7.3.5"
2474 tsutils "^3.21.0"
2475
2476"@typescript-eslint/eslint-plugin@^5.22.0":
2418 version "5.22.0"2477 version "5.22.0"
2419 resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.22.0.tgz#7b52a0de2e664044f28b36419210aea4ab619e2a"2478 resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.22.0.tgz#7b52a0de2e664044f28b36419210aea4ab619e2a"
2420 integrity sha512-YCiy5PUzpAeOPGQ7VSGDEY2NeYUV1B0swde2e0HzokRsHBYjSdF6DZ51OuRZxVPHx0032lXGLvOMls91D8FXlg==2479 integrity sha512-YCiy5PUzpAeOPGQ7VSGDEY2NeYUV1B0swde2e0HzokRsHBYjSdF6DZ51OuRZxVPHx0032lXGLvOMls91D8FXlg==
2429 semver "^7.3.5"2488 semver "^7.3.5"
2430 tsutils "^3.21.0"2489 tsutils "^3.21.0"
24312490
2432"@typescript-eslint/parser@5.22.0", "@typescript-eslint/parser@^5.22.0":2491"@typescript-eslint/parser@5.23.0":
2492 version "5.23.0"
2493 resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.23.0.tgz#443778e1afc9a8ff180f91b5e260ac3bec5e2de1"
2494 integrity sha512-V06cYUkqcGqpFjb8ttVgzNF53tgbB/KoQT/iB++DOIExKmzI9vBJKjZKt/6FuV9c+zrDsvJKbJ2DOCYwX91cbw==
2495 dependencies:
2496 "@typescript-eslint/scope-manager" "5.23.0"
2497 "@typescript-eslint/types" "5.23.0"
2498 "@typescript-eslint/typescript-estree" "5.23.0"
2499 debug "^4.3.2"
2500
2501"@typescript-eslint/parser@^5.22.0":
2433 version "5.22.0"2502 version "5.22.0"
2434 resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.22.0.tgz#7bedf8784ef0d5d60567c5ba4ce162460e70c178"2503 resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.22.0.tgz#7bedf8784ef0d5d60567c5ba4ce162460e70c178"
2435 integrity sha512-piwC4krUpRDqPaPbFaycN70KCP87+PC5WZmrWs+DlVOxxmF+zI6b6hETv7Quy4s9wbkV16ikMeZgXsvzwI3icQ==2504 integrity sha512-piwC4krUpRDqPaPbFaycN70KCP87+PC5WZmrWs+DlVOxxmF+zI6b6hETv7Quy4s9wbkV16ikMeZgXsvzwI3icQ==
2447 "@typescript-eslint/types" "5.22.0"2516 "@typescript-eslint/types" "5.22.0"
2448 "@typescript-eslint/visitor-keys" "5.22.0"2517 "@typescript-eslint/visitor-keys" "5.22.0"
24492518
2519"@typescript-eslint/scope-manager@5.23.0":
2520 version "5.23.0"
2521 resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.23.0.tgz#4305e61c2c8e3cfa3787d30f54e79430cc17ce1b"
2522 integrity sha512-EhjaFELQHCRb5wTwlGsNMvzK9b8Oco4aYNleeDlNuL6qXWDF47ch4EhVNPh8Rdhf9tmqbN4sWDk/8g+Z/J8JVw==
2523 dependencies:
2524 "@typescript-eslint/types" "5.23.0"
2525 "@typescript-eslint/visitor-keys" "5.23.0"
2526
2450"@typescript-eslint/type-utils@5.22.0":2527"@typescript-eslint/type-utils@5.22.0":
2451 version "5.22.0"2528 version "5.22.0"
2452 resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.22.0.tgz#0c0e93b34210e334fbe1bcb7250c470f4a537c19"2529 resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.22.0.tgz#0c0e93b34210e334fbe1bcb7250c470f4a537c19"
2456 debug "^4.3.2"2533 debug "^4.3.2"
2457 tsutils "^3.21.0"2534 tsutils "^3.21.0"
24582535
2536"@typescript-eslint/type-utils@5.23.0":
2537 version "5.23.0"
2538 resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.23.0.tgz#f852252f2fc27620d5bb279d8fed2a13d2e3685e"
2539 integrity sha512-iuI05JsJl/SUnOTXA9f4oI+/4qS/Zcgk+s2ir+lRmXI+80D8GaGwoUqs4p+X+4AxDolPpEpVUdlEH4ADxFy4gw==
2540 dependencies:
2541 "@typescript-eslint/utils" "5.23.0"
2542 debug "^4.3.2"
2543 tsutils "^3.21.0"
2544
2459"@typescript-eslint/types@4.33.0":2545"@typescript-eslint/types@4.33.0":
2460 version "4.33.0"2546 version "4.33.0"
2461 resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72"2547 resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72"
2466 resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.22.0.tgz#50a4266e457a5d4c4b87ac31903b28b06b2c3ed0"2552 resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.22.0.tgz#50a4266e457a5d4c4b87ac31903b28b06b2c3ed0"
2467 integrity sha512-T7owcXW4l0v7NTijmjGWwWf/1JqdlWiBzPqzAWhobxft0SiEvMJB56QXmeCQjrPuM8zEfGUKyPQr/L8+cFUBLw==2553 integrity sha512-T7owcXW4l0v7NTijmjGWwWf/1JqdlWiBzPqzAWhobxft0SiEvMJB56QXmeCQjrPuM8zEfGUKyPQr/L8+cFUBLw==
24682554
2555"@typescript-eslint/types@5.23.0":
2556 version "5.23.0"
2557 resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.23.0.tgz#8733de0f58ae0ed318dbdd8f09868cdbf9f9ad09"
2558 integrity sha512-NfBsV/h4dir/8mJwdZz7JFibaKC3E/QdeMEDJhiAE3/eMkoniZ7MjbEMCGXw6MZnZDMN3G9S0mH/6WUIj91dmw==
2559
2469"@typescript-eslint/typescript-estree@5.22.0":2560"@typescript-eslint/typescript-estree@5.22.0":
2470 version "5.22.0"2561 version "5.22.0"
2471 resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.22.0.tgz#e2116fd644c3e2fda7f4395158cddd38c0c6df97"2562 resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.22.0.tgz#e2116fd644c3e2fda7f4395158cddd38c0c6df97"
2479 semver "^7.3.5"2570 semver "^7.3.5"
2480 tsutils "^3.21.0"2571 tsutils "^3.21.0"
24812572
2573"@typescript-eslint/typescript-estree@5.23.0":
2574 version "5.23.0"
2575 resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.23.0.tgz#dca5f10a0a85226db0796e8ad86addc9aee52065"
2576 integrity sha512-xE9e0lrHhI647SlGMl+m+3E3CKPF1wzvvOEWnuE3CCjjT7UiRnDGJxmAcVKJIlFgK6DY9RB98eLr1OPigPEOGg==
2577 dependencies:
2578 "@typescript-eslint/types" "5.23.0"
2579 "@typescript-eslint/visitor-keys" "5.23.0"
2580 debug "^4.3.2"
2581 globby "^11.0.4"
2582 is-glob "^4.0.3"
2583 semver "^7.3.5"
2584 tsutils "^3.21.0"
2585
2482"@typescript-eslint/typescript-estree@^4.33.0":2586"@typescript-eslint/typescript-estree@^4.33.0":
2483 version "4.33.0"2587 version "4.33.0"
2484 resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz#0dfb51c2908f68c5c08d82aefeaf166a17c24609"2588 resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz#0dfb51c2908f68c5c08d82aefeaf166a17c24609"
2504 eslint-scope "^5.1.1"2608 eslint-scope "^5.1.1"
2505 eslint-utils "^3.0.0"2609 eslint-utils "^3.0.0"
25062610
2611"@typescript-eslint/utils@5.23.0":
2612 version "5.23.0"
2613 resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.23.0.tgz#4691c3d1b414da2c53d8943310df36ab1c50648a"
2614 integrity sha512-dbgaKN21drqpkbbedGMNPCtRPZo1IOUr5EI9Jrrh99r5UW5Q0dz46RKXeSBoPV+56R6dFKpbrdhgUNSJsDDRZA==
2615 dependencies:
2616 "@types/json-schema" "^7.0.9"
2617 "@typescript-eslint/scope-manager" "5.23.0"
2618 "@typescript-eslint/types" "5.23.0"
2619 "@typescript-eslint/typescript-estree" "5.23.0"
2620 eslint-scope "^5.1.1"
2621 eslint-utils "^3.0.0"
2622
2507"@typescript-eslint/visitor-keys@4.33.0":2623"@typescript-eslint/visitor-keys@4.33.0":
2508 version "4.33.0"2624 version "4.33.0"
2509 resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz#2a22f77a41604289b7a186586e9ec48ca92ef1dd"2625 resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz#2a22f77a41604289b7a186586e9ec48ca92ef1dd"
2520 "@typescript-eslint/types" "5.22.0"2636 "@typescript-eslint/types" "5.22.0"
2521 eslint-visitor-keys "^3.0.0"2637 eslint-visitor-keys "^3.0.0"
25222638
2639"@typescript-eslint/visitor-keys@5.23.0":
2640 version "5.23.0"
2641 resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.23.0.tgz#057c60a7ca64667a39f991473059377a8067c87b"
2642 integrity sha512-Vd4mFNchU62sJB8pX19ZSPog05B0Y0CE2UxAZPT5k4iqhRYjPnqyY3woMxCd0++t9OTqkgjST+1ydLBi7e2Fvg==
2643 dependencies:
2644 "@typescript-eslint/types" "5.23.0"
2645 eslint-visitor-keys "^3.0.0"
2646
2523"@ungap/promise-all-settled@1.1.2":2647"@ungap/promise-all-settled@1.1.2":
2524 version "1.1.2"2648 version "1.1.2"
2525 resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"2649 resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
2562 acorn "^7.1.1"2686 acorn "^7.1.1"
2563 acorn-walk "^7.1.1"2687 acorn-walk "^7.1.1"
25642688
2565acorn-jsx@^5.3.1:2689acorn-jsx@^5.3.1, acorn-jsx@^5.3.2:
2566 version "5.3.2"2690 version "5.3.2"
2567 resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"2691 resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
2568 integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==2692 integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
2582 resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"2706 resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
2583 integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==2707 integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
25842708
2585acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.0:2709acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.0, acorn@^8.7.1:
2586 version "8.7.1"2710 version "8.7.1"
2587 resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"2711 resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"
2588 integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==2712 integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==
2823 resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"2947 resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
2824 integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==2948 integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
28252949
2826babel-jest@^28.0.3:2950babel-jest@^28.1.0:
2827 version "28.0.3"2951 version "28.1.0"
2828 resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.0.3.tgz#843dc170da5b9671d4054ada9fdcd28f85f92a6e"2952 resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.1.0.tgz#95a67f8e2e7c0042e7b3ad3951b8af41a533b5ea"
2829 integrity sha512-S0ADyYdcrt5fp9YldRYWCUHdk1BKt9AkvBkLWBoNAEV9NoWZPIj5+MYhPcGgTS65mfv3a+Ymf2UqgWoAVd41cA==2953 integrity sha512-zNKk0yhDZ6QUwfxh9k07GII6siNGMJWVUU49gmFj5gfdqDKLqa2RArXOF2CODp4Dr7dLxN2cvAV+667dGJ4b4w==
2830 dependencies:2954 dependencies:
2831 "@jest/transform" "^28.0.3"2955 "@jest/transform" "^28.1.0"
2832 "@types/babel__core" "^7.1.14"2956 "@types/babel__core" "^7.1.14"
2833 babel-plugin-istanbul "^6.1.1"2957 babel-plugin-istanbul "^6.1.1"
2834 babel-preset-jest "^28.0.2"2958 babel-preset-jest "^28.0.2"
4463 text-table "^0.2.0"4587 text-table "^0.2.0"
4464 v8-compile-cache "^2.0.3"4588 v8-compile-cache "^2.0.3"
44654589
4590eslint@^8.15.0:
4591 version "8.15.0"
4592 resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.15.0.tgz#fea1d55a7062da48d82600d2e0974c55612a11e9"
4593 integrity sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==
4594 dependencies:
4595 "@eslint/eslintrc" "^1.2.3"
4596 "@humanwhocodes/config-array" "^0.9.2"
4597 ajv "^6.10.0"
4598 chalk "^4.0.0"
4599 cross-spawn "^7.0.2"
4600 debug "^4.3.2"
4601 doctrine "^3.0.0"
4602 escape-string-regexp "^4.0.0"
4603 eslint-scope "^7.1.1"
4604 eslint-utils "^3.0.0"
4605 eslint-visitor-keys "^3.3.0"
4606 espree "^9.3.2"
4607 esquery "^1.4.0"
4608 esutils "^2.0.2"
4609 fast-deep-equal "^3.1.3"
4610 file-entry-cache "^6.0.1"
4611 functional-red-black-tree "^1.0.1"
4612 glob-parent "^6.0.1"
4613 globals "^13.6.0"
4614 ignore "^5.2.0"
4615 import-fresh "^3.0.0"
4616 imurmurhash "^0.1.4"
4617 is-glob "^4.0.0"
4618 js-yaml "^4.1.0"
4619 json-stable-stringify-without-jsonify "^1.0.1"
4620 levn "^0.4.1"
4621 lodash.merge "^4.6.2"
4622 minimatch "^3.1.2"
4623 natural-compare "^1.4.0"
4624 optionator "^0.9.1"
4625 regexpp "^3.2.0"
4626 strip-ansi "^6.0.1"
4627 strip-json-comments "^3.1.0"
4628 text-table "^0.2.0"
4629 v8-compile-cache "^2.0.3"
4630
4466espree@^9.3.1:4631espree@^9.3.1:
4467 version "9.3.1"4632 version "9.3.1"
4468 resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd"4633 resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd"
4472 acorn-jsx "^5.3.1"4637 acorn-jsx "^5.3.1"
4473 eslint-visitor-keys "^3.3.0"4638 eslint-visitor-keys "^3.3.0"
44744639
4640espree@^9.3.2:
4641 version "9.3.2"
4642 resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596"
4643 integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==
4644 dependencies:
4645 acorn "^8.7.1"
4646 acorn-jsx "^5.3.2"
4647 eslint-visitor-keys "^3.3.0"
4648
4475esprima@^4.0.0, esprima@^4.0.1:4649esprima@^4.0.0, esprima@^4.0.1:
4476 version "4.0.1"4650 version "4.0.1"
4477 resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"4651 resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
4640 resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"4814 resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
4641 integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=4815 integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
46424816
4643expect@^28.0.2:4817expect@^28.1.0:
4644 version "28.0.2"4818 version "28.1.0"
4645 resolved "https://registry.yarnpkg.com/expect/-/expect-28.0.2.tgz#86f0d6fa971bc533faf68d4d103d00f343d6a4b3"4819 resolved "https://registry.yarnpkg.com/expect/-/expect-28.1.0.tgz#10e8da64c0850eb8c39a480199f14537f46e8360"
4646 integrity sha512-X0qIuI/zKv98k34tM+uGeOgAC73lhs4vROF9MkPk94C1zujtwv4Cla8SxhWn0G1OwvG9gLLL7RjFBkwGVaZ83w==4820 integrity sha512-qFXKl8Pmxk8TBGfaFKRtcQjfXEnKAs+dmlxdwvukJZorwrAabT7M3h8oLOG01I2utEhkmUTi17CHaPBovZsKdw==
4647 dependencies:4821 dependencies:
4648 "@jest/expect-utils" "^28.0.2"4822 "@jest/expect-utils" "^28.1.0"
4649 jest-get-type "^28.0.2"4823 jest-get-type "^28.0.2"
4650 jest-matcher-utils "^28.0.2"4824 jest-matcher-utils "^28.1.0"
4651 jest-message-util "^28.0.2"4825 jest-message-util "^28.1.0"
4652 jest-util "^28.0.2"4826 jest-util "^28.1.0"
46534827
4654express@^4.14.0:4828express@^4.14.0:
4655 version "4.18.1"4829 version "4.18.1"
5130 dependencies:5304 dependencies:
5131 assert-plus "^1.0.0"5305 assert-plus "^1.0.0"
51325306
5133gh-pages@^3.2.3:5307gh-pages@^4.0.0:
5134 version "3.2.3"5308 version "4.0.0"
5135 resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-3.2.3.tgz#897e5f15e111f42af57d21d430b83e5cdf29472c"5309 resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-4.0.0.tgz#bd7447bab7eef008f677ac8cc4f6049ab978f4a6"
5136 integrity sha512-jA1PbapQ1jqzacECfjUaO9gV8uBgU6XNMV0oXLtfCX3haGLe5Atq8BxlrADhbD6/UdG9j6tZLWAkAybndOXTJg==5310 integrity sha512-p8S0T3aGJc68MtwOcZusul5qPSNZCalap3NWbhRUZYu1YOdp+EjZ+4kPmRM8h3NNRdqw00yuevRjlkuSzCn7iQ==
5137 dependencies:5311 dependencies:
5138 async "^2.6.1"5312 async "^2.6.1"
5139 commander "^2.18.0"5313 commander "^2.18.0"
6034 execa "^5.0.0"6208 execa "^5.0.0"
6035 throat "^6.0.1"6209 throat "^6.0.1"
60366210
6037jest-circus@^28.0.3:6211jest-circus@^28.1.0:
6038 version "28.0.3"6212 version "28.1.0"
6039 resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.0.3.tgz#45f77090b4b9fe5c1b84f72816868c9d4c0f57b1"6213 resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.1.0.tgz#e229f590911bd54d60efaf076f7acd9360296dae"
6040 integrity sha512-HJ3rUCm3A3faSy7KVH5MFCncqJLtrjEFkTPn9UIcs4Kq77+TXqHsOaI+/k73aHe6DJQigLUXq9rCYj3MYFlbIw==6214 integrity sha512-rNYfqfLC0L0zQKRKsg4n4J+W1A2fbyGH7Ss/kDIocp9KXD9iaL111glsLu7+Z7FHuZxwzInMDXq+N1ZIBkI/TQ==
6041 dependencies:6215 dependencies:
6042 "@jest/environment" "^28.0.2"6216 "@jest/environment" "^28.1.0"
6043 "@jest/expect" "^28.0.3"6217 "@jest/expect" "^28.1.0"
6044 "@jest/test-result" "^28.0.2"6218 "@jest/test-result" "^28.1.0"
6045 "@jest/types" "^28.0.2"6219 "@jest/types" "^28.1.0"
6046 "@types/node" "*"6220 "@types/node" "*"
6047 chalk "^4.0.0"6221 chalk "^4.0.0"
6048 co "^4.6.0"6222 co "^4.6.0"
6049 dedent "^0.7.0"6223 dedent "^0.7.0"
6050 is-generator-fn "^2.0.0"6224 is-generator-fn "^2.0.0"
6051 jest-each "^28.0.2"6225 jest-each "^28.1.0"
6052 jest-matcher-utils "^28.0.2"6226 jest-matcher-utils "^28.1.0"
6053 jest-message-util "^28.0.2"6227 jest-message-util "^28.1.0"
6054 jest-runtime "^28.0.3"6228 jest-runtime "^28.1.0"
6055 jest-snapshot "^28.0.3"6229 jest-snapshot "^28.1.0"
6056 jest-util "^28.0.2"6230 jest-util "^28.1.0"
6057 pretty-format "^28.0.2"6231 pretty-format "^28.1.0"
6058 slash "^3.0.0"6232 slash "^3.0.0"
6059 stack-utils "^2.0.3"6233 stack-utils "^2.0.3"
6060 throat "^6.0.1"6234 throat "^6.0.1"
60616235
6062jest-cli@^28.0.3:6236jest-cli@^28.1.0:
6063 version "28.0.3"6237 version "28.1.0"
6064 resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.0.3.tgz#4a4e55078ec772e0ea2583dd4c4b38fb306dc556"6238 resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.1.0.tgz#cd1d8adb9630102d5ba04a22895f63decdd7ac1f"
6065 integrity sha512-NCPTEONCnhYGo1qzPP4OOcGF04YasM5GZSwQLI1HtEluxa3ct4U65IbZs6DSRt8XN1Rq0jhXwv02m5lHB28Uyg==6239 integrity sha512-fDJRt6WPRriHrBsvvgb93OxgajHHsJbk4jZxiPqmZbMDRcHskfJBBfTyjFko0jjfprP544hOktdSi9HVgl4VUQ==
6066 dependencies:6240 dependencies:
6067 "@jest/core" "^28.0.3"6241 "@jest/core" "^28.1.0"
6068 "@jest/test-result" "^28.0.2"6242 "@jest/test-result" "^28.1.0"
6069 "@jest/types" "^28.0.2"6243 "@jest/types" "^28.1.0"
6070 chalk "^4.0.0"6244 chalk "^4.0.0"
6071 exit "^0.1.2"6245 exit "^0.1.2"
6072 graceful-fs "^4.2.9"6246 graceful-fs "^4.2.9"
6073 import-local "^3.0.2"6247 import-local "^3.0.2"
6074 jest-config "^28.0.3"6248 jest-config "^28.1.0"
6075 jest-util "^28.0.2"6249 jest-util "^28.1.0"
6076 jest-validate "^28.0.2"6250 jest-validate "^28.1.0"
6077 prompts "^2.0.1"6251 prompts "^2.0.1"
6078 yargs "^17.3.1"6252 yargs "^17.3.1"
60796253
6080jest-config@^28.0.3:6254jest-config@^28.1.0:
6081 version "28.0.3"6255 version "28.1.0"
6082 resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.0.3.tgz#9c0556d60d692153a6bc8652974182c22db9244f"6256 resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.1.0.tgz#fca22ca0760e746fe1ce1f9406f6b307ab818501"
6083 integrity sha512-3gWOEHwGpNhyYOk9vnUMv94x15QcdjACm7A3lERaluwnyD6d1WZWe9RFCShgIXVOHzRfG1hWxsI2U0gKKSGgDQ==6257 integrity sha512-aOV80E9LeWrmflp7hfZNn/zGA4QKv/xsn2w8QCBP0t0+YqObuCWTSgNbHJ0j9YsTuCO08ZR/wsvlxqqHX20iUA==
6084 dependencies:6258 dependencies:
6085 "@babel/core" "^7.11.6"6259 "@babel/core" "^7.11.6"
6086 "@jest/test-sequencer" "^28.0.2"6260 "@jest/test-sequencer" "^28.1.0"
6087 "@jest/types" "^28.0.2"6261 "@jest/types" "^28.1.0"
6088 babel-jest "^28.0.3"6262 babel-jest "^28.1.0"
6089 chalk "^4.0.0"6263 chalk "^4.0.0"
6090 ci-info "^3.2.0"6264 ci-info "^3.2.0"
6091 deepmerge "^4.2.2"6265 deepmerge "^4.2.2"
6092 glob "^7.1.3"6266 glob "^7.1.3"
6093 graceful-fs "^4.2.9"6267 graceful-fs "^4.2.9"
6094 jest-circus "^28.0.3"6268 jest-circus "^28.1.0"
6095 jest-environment-node "^28.0.2"6269 jest-environment-node "^28.1.0"
6096 jest-get-type "^28.0.2"6270 jest-get-type "^28.0.2"
6097 jest-regex-util "^28.0.2"6271 jest-regex-util "^28.0.2"
6098 jest-resolve "^28.0.3"6272 jest-resolve "^28.1.0"
6099 jest-runner "^28.0.3"6273 jest-runner "^28.1.0"
6100 jest-util "^28.0.2"6274 jest-util "^28.1.0"
6101 jest-validate "^28.0.2"6275 jest-validate "^28.1.0"
6102 micromatch "^4.0.4"6276 micromatch "^4.0.4"
6103 parse-json "^5.2.0"6277 parse-json "^5.2.0"
6104 pretty-format "^28.0.2"6278 pretty-format "^28.1.0"
6105 slash "^3.0.0"6279 slash "^3.0.0"
6106 strip-json-comments "^3.1.1"6280 strip-json-comments "^3.1.1"
61076281
6108jest-diff@^28.0.2:6282jest-diff@^28.1.0:
6109 version "28.0.2"6283 version "28.1.0"
6110 resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.0.2.tgz#a543c90082560cd6cb14c5f28c39e6d4618ad7a6"6284 resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.1.0.tgz#77686fef899ec1873dbfbf9330e37dd429703269"
6111 integrity sha512-33Rnf821Y54OAloav0PGNWHlbtEorXpjwchnToyyWbec10X74FOW7hGfvrXLGz7xOe2dz0uo9JVFAHHj/2B5pg==6285 integrity sha512-8eFd3U3OkIKRtlasXfiAQfbovgFgRDb0Ngcs2E+FMeBZ4rUezqIaGjuyggJBp+llosQXNEWofk/Sz4Hr5gMUhA==
6112 dependencies:6286 dependencies:
6113 chalk "^4.0.0"6287 chalk "^4.0.0"
6114 diff-sequences "^28.0.2"6288 diff-sequences "^28.0.2"
6115 jest-get-type "^28.0.2"6289 jest-get-type "^28.0.2"
6116 pretty-format "^28.0.2"6290 pretty-format "^28.1.0"
61176291
6118jest-docblock@^28.0.2:6292jest-docblock@^28.0.2:
6119 version "28.0.2"6293 version "28.0.2"
6122 dependencies:6296 dependencies:
6123 detect-newline "^3.0.0"6297 detect-newline "^3.0.0"
61246298
6125jest-each@^28.0.2:6299jest-each@^28.1.0:
6126 version "28.0.2"6300 version "28.1.0"
6127 resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.0.2.tgz#fcf6843e9afe5a3f2d0b1c02aab1f41889d92f1d"6301 resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.1.0.tgz#54ae66d6a0a5b1913e9a87588d26c2687c39458b"
6128 integrity sha512-/W5Wc0b+ipR36kDaLngdVEJ/5UYPOITK7rW0djTlCCQdMuWpCFJweMW4TzAoJ6GiRrljPL8FwiyOSoSHKrda2w==6302 integrity sha512-a/XX02xF5NTspceMpHujmOexvJ4GftpYXqr6HhhmKmExtMXsyIN/fvanQlt/BcgFoRKN4OCXxLQKth9/n6OPFg==
6129 dependencies:6303 dependencies:
6130 "@jest/types" "^28.0.2"6304 "@jest/types" "^28.1.0"
6131 chalk "^4.0.0"6305 chalk "^4.0.0"
6132 jest-get-type "^28.0.2"6306 jest-get-type "^28.0.2"
6133 jest-util "^28.0.2"6307 jest-util "^28.1.0"
6134 pretty-format "^28.0.2"6308 pretty-format "^28.1.0"
61356309
6136jest-environment-jsdom@^28.0.2:6310jest-environment-jsdom@^28.1.0:
6137 version "28.0.2"6311 version "28.1.0"
6138 resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-28.0.2.tgz#b923f861f4cd896d2ba1971255060e1f413e9a04"6312 resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-28.1.0.tgz#1042cffd0343615c5fac2d2c8da20d1d43b73ef8"
6139 integrity sha512-rQhgV9reB6Id7VPa5jEkKx80Ppa/I6C7vKTMnceBS+d/rt+aTfbxbK/P4HRLMLE8KKsETszPpzYtGgsa8xMg7g==6313 integrity sha512-8n6P4xiDjNVqTWv6W6vJPuQdLx+ZiA3dbYg7YJ+DPzR+9B61K6pMVJrSs2IxfGRG4J7pyAUA5shQ9G0KEun78w==
6140 dependencies:6314 dependencies:
6141 "@jest/environment" "^28.0.2"6315 "@jest/environment" "^28.1.0"
6142 "@jest/fake-timers" "^28.0.2"6316 "@jest/fake-timers" "^28.1.0"
6143 "@jest/types" "^28.0.2"6317 "@jest/types" "^28.1.0"
6144 "@types/jsdom" "^16.2.4"6318 "@types/jsdom" "^16.2.4"
6145 "@types/node" "*"6319 "@types/node" "*"
6146 jest-mock "^28.0.2"6320 jest-mock "^28.1.0"
6147 jest-util "^28.0.2"6321 jest-util "^28.1.0"
6148 jsdom "^19.0.0"6322 jsdom "^19.0.0"
61496323
6150jest-environment-node@^28.0.2:6324jest-environment-node@^28.1.0:
6151 version "28.0.2"6325 version "28.1.0"
6152 resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.0.2.tgz#bd58e192b8f36a37e52c52fac812bd24b360c0b9"6326 resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.1.0.tgz#6ed2150aa31babba0c488c5b4f4d813a585c68e6"
6153 integrity sha512-o9u5UHZ+NCuIoa44KEF0Behhsz/p1wMm0WumsZfWR1k4IVoWSt3aN0BavSC5dd26VxSGQvkrCnJxxOzhhUEG3Q==6327 integrity sha512-gBLZNiyrPw9CSMlTXF1yJhaBgWDPVvH0Pq6bOEwGMXaYNzhzhw2kA/OijNF8egbCgDS0/veRv97249x2CX+udQ==
6154 dependencies:6328 dependencies:
6155 "@jest/environment" "^28.0.2"6329 "@jest/environment" "^28.1.0"
6156 "@jest/fake-timers" "^28.0.2"6330 "@jest/fake-timers" "^28.1.0"
6157 "@jest/types" "^28.0.2"6331 "@jest/types" "^28.1.0"
6158 "@types/node" "*"6332 "@types/node" "*"
6159 jest-mock "^28.0.2"6333 jest-mock "^28.1.0"
6160 jest-util "^28.0.2"6334 jest-util "^28.1.0"
61616335
6162jest-get-type@^28.0.2:6336jest-get-type@^28.0.2:
6163 version "28.0.2"6337 version "28.0.2"
6164 resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203"6338 resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203"
6165 integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==6339 integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==
61666340
6167jest-haste-map@^28.0.2:6341jest-haste-map@^28.1.0:
6168 version "28.0.2"6342 version "28.1.0"
6169 resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.0.2.tgz#0c768f43680013cfd2a4471a3ec76c47bfb9e7c6"6343 resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.1.0.tgz#6c1ee2daf1c20a3e03dbd8e5b35c4d73d2349cf0"
6170 integrity sha512-EokdL7l5uk4TqWGawwrIt8w3tZNcbeiRxmKGEURf42pl+/rWJy3sCJlon5HBhJXZTW978jk6600BLQOI7i25Ig==6344 integrity sha512-xyZ9sXV8PtKi6NCrJlmq53PyNVHzxmcfXNVvIRHpHmh1j/HChC4pwKgyjj7Z9us19JMw8PpQTJsFWOsIfT93Dw==
6171 dependencies:6345 dependencies:
6172 "@jest/types" "^28.0.2"6346 "@jest/types" "^28.1.0"
6173 "@types/graceful-fs" "^4.1.3"6347 "@types/graceful-fs" "^4.1.3"
6174 "@types/node" "*"6348 "@types/node" "*"
6175 anymatch "^3.0.3"6349 anymatch "^3.0.3"
6176 fb-watchman "^2.0.0"6350 fb-watchman "^2.0.0"
6177 graceful-fs "^4.2.9"6351 graceful-fs "^4.2.9"
6178 jest-regex-util "^28.0.2"6352 jest-regex-util "^28.0.2"
6179 jest-util "^28.0.2"6353 jest-util "^28.1.0"
6180 jest-worker "^28.0.2"6354 jest-worker "^28.1.0"
6181 micromatch "^4.0.4"6355 micromatch "^4.0.4"
6182 walker "^1.0.7"6356 walker "^1.0.7"
6183 optionalDependencies:6357 optionalDependencies:
6184 fsevents "^2.3.2"6358 fsevents "^2.3.2"
61856359
6186jest-leak-detector@^28.0.2:6360jest-leak-detector@^28.1.0:
6187 version "28.0.2"6361 version "28.1.0"
6188 resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.0.2.tgz#cbde3d22d09bd690ececdc2ed01c608435328456"6362 resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.1.0.tgz#b65167776a8787443214d6f3f54935a4c73c8a45"
6189 integrity sha512-UGaSPYtxKXl/YKacq6juRAKmMp1z2os8NaU8PSC+xvNikmu3wF6QFrXrihMM4hXeMr9HuNotBrQZHmzDY8KIBQ==6363 integrity sha512-uIJDQbxwEL2AMMs2xjhZl2hw8s77c3wrPaQ9v6tXJLGaaQ+4QrNJH5vuw7hA7w/uGT/iJ42a83opAqxGHeyRIA==
6190 dependencies:6364 dependencies:
6191 jest-get-type "^28.0.2"6365 jest-get-type "^28.0.2"
6192 pretty-format "^28.0.2"6366 pretty-format "^28.1.0"
61936367
6194jest-matcher-utils@^28.0.2:6368jest-matcher-utils@^28.1.0:
6195 version "28.0.2"6369 version "28.1.0"
6196 resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.0.2.tgz#eb461af204b6d0f05281e9228094f0ab7e9e8537"6370 resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.1.0.tgz#2ae398806668eeabd293c61712227cb94b250ccf"
6197 integrity sha512-SxtTiI2qLJHFtOz/bySStCnwCvISAuxQ/grS+74dfTy5AuJw3Sgj9TVUvskcnImTfpzLoMCDJseRaeRrVYbAOA==6371 integrity sha512-onnax0n2uTLRQFKAjC7TuaxibrPSvZgKTcSCnNUz/tOjJ9UhxNm7ZmPpoQavmTDUjXvUQ8KesWk2/VdrxIFzTQ==
6198 dependencies:6372 dependencies:
6199 chalk "^4.0.0"6373 chalk "^4.0.0"
6200 jest-diff "^28.0.2"6374 jest-diff "^28.1.0"
6201 jest-get-type "^28.0.2"6375 jest-get-type "^28.0.2"
6202 pretty-format "^28.0.2"6376 pretty-format "^28.1.0"
62036377
6204jest-message-util@^28.0.2:6378jest-message-util@^28.1.0:
6205 version "28.0.2"6379 version "28.1.0"
6206 resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.0.2.tgz#f3cf36be72be4c4c4058cb34bd6673996d26dee3"6380 resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.0.tgz#7e8f0b9049e948e7b94c2a52731166774ba7d0af"
6207 integrity sha512-knK7XyojvwYh1XiF2wmVdskgM/uN11KsjcEWWHfnMZNEdwXCrqB4sCBO94F4cfiAwCS8WFV6CDixDwPlMh/wdA==6381 integrity sha512-RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw==
6208 dependencies:6382 dependencies:
6209 "@babel/code-frame" "^7.12.13"6383 "@babel/code-frame" "^7.12.13"
6210 "@jest/types" "^28.0.2"6384 "@jest/types" "^28.1.0"
6211 "@types/stack-utils" "^2.0.0"6385 "@types/stack-utils" "^2.0.0"
6212 chalk "^4.0.0"6386 chalk "^4.0.0"
6213 graceful-fs "^4.2.9"6387 graceful-fs "^4.2.9"
6214 micromatch "^4.0.4"6388 micromatch "^4.0.4"
6215 pretty-format "^28.0.2"6389 pretty-format "^28.1.0"
6216 slash "^3.0.0"6390 slash "^3.0.0"
6217 stack-utils "^2.0.3"6391 stack-utils "^2.0.3"
62186392
6219jest-mock@^28.0.2:6393jest-mock@^28.1.0:
6220 version "28.0.2"6394 version "28.1.0"
6221 resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.0.2.tgz#059b500b34c1dd76474ebcdeccc249fe4dd0249f"6395 resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.1.0.tgz#ccc7cc12a9b330b3182db0c651edc90d163ff73e"
6222 integrity sha512-vfnJ4zXRB0i24jOTGtQJyl26JKsgBKtqRlCnsrORZbG06FToSSn33h2x/bmE8XxqxkLWdZBRo+/65l8Vi3nD+g==6396 integrity sha512-H7BrhggNn77WhdL7O1apG0Q/iwl0Bdd5E1ydhCJzL3oBLh/UYxAwR3EJLsBZ9XA3ZU4PA3UNw4tQjduBTCTmLw==
6223 dependencies:6397 dependencies:
6224 "@jest/types" "^28.0.2"6398 "@jest/types" "^28.1.0"
6225 "@types/node" "*"6399 "@types/node" "*"
62266400
6227jest-pnp-resolver@^1.2.2:6401jest-pnp-resolver@^1.2.2:
6234 resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead"6408 resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead"
6235 integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==6409 integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==
62366410
6237jest-resolve-dependencies@^28.0.3:6411jest-resolve-dependencies@^28.1.0:
6238 version "28.0.3"6412 version "28.1.0"
6239 resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.0.3.tgz#76d8f59f7e76ba36d76a1677eeaaed24560da7e0"6413 resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.0.tgz#167becb8bee6e20b5ef4a3a728ec67aef6b0b79b"
6240 integrity sha512-lCgHMm0/5p0qHemrOzm7kI6JDei28xJwIf7XOEcv1HeAVHnsON8B8jO/woqlU+/GcOXb58ymieYqhk3zjGWnvQ==6414 integrity sha512-Ue1VYoSZquPwEvng7Uefw8RmZR+me/1kr30H2jMINjGeHgeO/JgrR6wxj2ofkJ7KSAA11W3cOrhNCbj5Dqqd9g==
6241 dependencies:6415 dependencies:
6242 jest-regex-util "^28.0.2"6416 jest-regex-util "^28.0.2"
6243 jest-snapshot "^28.0.3"6417 jest-snapshot "^28.1.0"
62446418
6245jest-resolve@^28.0.3:6419jest-resolve@^28.1.0:
6246 version "28.0.3"6420 version "28.1.0"
6247 resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.0.3.tgz#63f8e6b53e40f265b3ca9116195221dd43e3d16d"6421 resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.1.0.tgz#b1f32748a6cee7d1779c7ef639c0a87078de3d35"
6248 integrity sha512-lfgjd9JhEjpjIN3HLUfdysdK+A7ePQoYmd7WL9DUEWqdnngb1rF56eee6iDXJxl/3eSolpP43VD7VrhjL3NsoQ==6422 integrity sha512-vvfN7+tPNnnhDvISuzD1P+CRVP8cK0FHXRwPAcdDaQv4zgvwvag2n55/h5VjYcM5UJG7L4TwE5tZlzcI0X2Lhw==
6249 dependencies:6423 dependencies:
6250 chalk "^4.0.0"6424 chalk "^4.0.0"
6251 graceful-fs "^4.2.9"6425 graceful-fs "^4.2.9"
6252 jest-haste-map "^28.0.2"6426 jest-haste-map "^28.1.0"
6253 jest-pnp-resolver "^1.2.2"6427 jest-pnp-resolver "^1.2.2"
6254 jest-util "^28.0.2"6428 jest-util "^28.1.0"
6255 jest-validate "^28.0.2"6429 jest-validate "^28.1.0"
6256 resolve "^1.20.0"6430 resolve "^1.20.0"
6257 resolve.exports "^1.1.0"6431 resolve.exports "^1.1.0"
6258 slash "^3.0.0"6432 slash "^3.0.0"
62596433
6260jest-runner@^28.0.3:6434jest-runner@^28.1.0:
6261 version "28.0.3"6435 version "28.1.0"
6262 resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.0.3.tgz#a8a409c685ad3081a44b149b2eb04bc4d47faaf9"6436 resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.1.0.tgz#aefe2a1e618a69baa0b24a50edc54fdd7e728eaa"
6263 integrity sha512-4OsHMjBLtYUWCENucAQ4Za0jGfEbOFi/Fusv6dzUuaweqx8apb4+5p2LR2yvgF4StFulmxyC238tGLftfu+zBA==6437 integrity sha512-FBpmuh1HB2dsLklAlRdOxNTTHKFR6G1Qmd80pVDvwbZXTriqjWqjei5DKFC1UlM732KjYcE6yuCdiF0WUCOS2w==
6264 dependencies:6438 dependencies:
6265 "@jest/console" "^28.0.2"6439 "@jest/console" "^28.1.0"
6266 "@jest/environment" "^28.0.2"6440 "@jest/environment" "^28.1.0"
6267 "@jest/test-result" "^28.0.2"6441 "@jest/test-result" "^28.1.0"
6268 "@jest/transform" "^28.0.3"6442 "@jest/transform" "^28.1.0"
6269 "@jest/types" "^28.0.2"6443 "@jest/types" "^28.1.0"
6270 "@types/node" "*"6444 "@types/node" "*"
6271 chalk "^4.0.0"6445 chalk "^4.0.0"
6272 emittery "^0.10.2"6446 emittery "^0.10.2"
6273 graceful-fs "^4.2.9"6447 graceful-fs "^4.2.9"
6274 jest-docblock "^28.0.2"6448 jest-docblock "^28.0.2"
6275 jest-environment-node "^28.0.2"6449 jest-environment-node "^28.1.0"
6276 jest-haste-map "^28.0.2"6450 jest-haste-map "^28.1.0"
6277 jest-leak-detector "^28.0.2"6451 jest-leak-detector "^28.1.0"
6278 jest-message-util "^28.0.2"6452 jest-message-util "^28.1.0"
6279 jest-resolve "^28.0.3"6453 jest-resolve "^28.1.0"
6280 jest-runtime "^28.0.3"6454 jest-runtime "^28.1.0"
6281 jest-util "^28.0.2"6455 jest-util "^28.1.0"
6282 jest-watcher "^28.0.2"6456 jest-watcher "^28.1.0"
6283 jest-worker "^28.0.2"6457 jest-worker "^28.1.0"
6284 source-map-support "0.5.13"6458 source-map-support "0.5.13"
6285 throat "^6.0.1"6459 throat "^6.0.1"
62866460
6287jest-runtime@^28.0.3:6461jest-runtime@^28.1.0:
6288 version "28.0.3"6462 version "28.1.0"
6289 resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.0.3.tgz#02346a34de0ac61d23bdb0e8c035ad973d7bb087"6463 resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.1.0.tgz#4847dcb2a4eb4b0f9eaf41306897e51fb1665631"
6290 integrity sha512-7FtPUmvbZEHLOdjsF6dyHg5Pe4E0DU+f3Vvv8BPzVR7mQA6nFR4clQYLAPyJGnsUvN8WRWn+b5a5SVwnj1WaGg==6464 integrity sha512-wNYDiwhdH/TV3agaIyVF0lsJ33MhyujOe+lNTUiolqKt8pchy1Hq4+tDMGbtD5P/oNLA3zYrpx73T9dMTOCAcg==
6291 dependencies:6465 dependencies:
6292 "@jest/environment" "^28.0.2"6466 "@jest/environment" "^28.1.0"
6293 "@jest/fake-timers" "^28.0.2"6467 "@jest/fake-timers" "^28.1.0"
6294 "@jest/globals" "^28.0.3"6468 "@jest/globals" "^28.1.0"
6295 "@jest/source-map" "^28.0.2"6469 "@jest/source-map" "^28.0.2"
6296 "@jest/test-result" "^28.0.2"6470 "@jest/test-result" "^28.1.0"
6297 "@jest/transform" "^28.0.3"6471 "@jest/transform" "^28.1.0"
6298 "@jest/types" "^28.0.2"6472 "@jest/types" "^28.1.0"
6299 chalk "^4.0.0"6473 chalk "^4.0.0"
6300 cjs-module-lexer "^1.0.0"6474 cjs-module-lexer "^1.0.0"
6301 collect-v8-coverage "^1.0.0"6475 collect-v8-coverage "^1.0.0"
6302 execa "^5.0.0"6476 execa "^5.0.0"
6303 glob "^7.1.3"6477 glob "^7.1.3"
6304 graceful-fs "^4.2.9"6478 graceful-fs "^4.2.9"
6305 jest-haste-map "^28.0.2"6479 jest-haste-map "^28.1.0"
6306 jest-message-util "^28.0.2"6480 jest-message-util "^28.1.0"
6307 jest-mock "^28.0.2"6481 jest-mock "^28.1.0"
6308 jest-regex-util "^28.0.2"6482 jest-regex-util "^28.0.2"
6309 jest-resolve "^28.0.3"6483 jest-resolve "^28.1.0"
6310 jest-snapshot "^28.0.3"6484 jest-snapshot "^28.1.0"
6311 jest-util "^28.0.2"6485 jest-util "^28.1.0"
6312 slash "^3.0.0"6486 slash "^3.0.0"
6313 strip-bom "^4.0.0"6487 strip-bom "^4.0.0"
63146488
6315jest-snapshot@^28.0.3:6489jest-snapshot@^28.1.0:
6316 version "28.0.3"6490 version "28.1.0"
6317 resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.0.3.tgz#9a768d0c617d070e87c1bd37240f22b344616154"6491 resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.1.0.tgz#4b74fa8816707dd10fe9d551c2c258e5a67b53b6"
6318 integrity sha512-nVzAAIlAbrMuvVUrS1YxmAeo1TfSsDDU+K5wv/Ow56MBp+L+Y71ksAbwRp3kGCgZAz4oOXcAMPAwtT9Yh1hlQQ==6492 integrity sha512-ex49M2ZrZsUyQLpLGxQtDbahvgBjlLPgklkqGM0hq/F7W/f8DyqZxVHjdy19QKBm4O93eDp+H5S23EiTbbUmHw==
6319 dependencies:6493 dependencies:
6320 "@babel/core" "^7.11.6"6494 "@babel/core" "^7.11.6"
6321 "@babel/generator" "^7.7.2"6495 "@babel/generator" "^7.7.2"
6322 "@babel/plugin-syntax-typescript" "^7.7.2"6496 "@babel/plugin-syntax-typescript" "^7.7.2"
6323 "@babel/traverse" "^7.7.2"6497 "@babel/traverse" "^7.7.2"
6324 "@babel/types" "^7.3.3"6498 "@babel/types" "^7.3.3"
6325 "@jest/expect-utils" "^28.0.2"6499 "@jest/expect-utils" "^28.1.0"
6326 "@jest/transform" "^28.0.3"6500 "@jest/transform" "^28.1.0"
6327 "@jest/types" "^28.0.2"6501 "@jest/types" "^28.1.0"
6328 "@types/babel__traverse" "^7.0.6"6502 "@types/babel__traverse" "^7.0.6"
6329 "@types/prettier" "^2.1.5"6503 "@types/prettier" "^2.1.5"
6330 babel-preset-current-node-syntax "^1.0.0"6504 babel-preset-current-node-syntax "^1.0.0"
6331 chalk "^4.0.0"6505 chalk "^4.0.0"
6332 expect "^28.0.2"6506 expect "^28.1.0"
6333 graceful-fs "^4.2.9"6507 graceful-fs "^4.2.9"
6334 jest-diff "^28.0.2"6508 jest-diff "^28.1.0"
6335 jest-get-type "^28.0.2"6509 jest-get-type "^28.0.2"
6336 jest-haste-map "^28.0.2"6510 jest-haste-map "^28.1.0"
6337 jest-matcher-utils "^28.0.2"6511 jest-matcher-utils "^28.1.0"
6338 jest-message-util "^28.0.2"6512 jest-message-util "^28.1.0"
6339 jest-util "^28.0.2"6513 jest-util "^28.1.0"
6340 natural-compare "^1.4.0"6514 natural-compare "^1.4.0"
6341 pretty-format "^28.0.2"6515 pretty-format "^28.1.0"
6342 semver "^7.3.5"6516 semver "^7.3.5"
63436517
6344jest-util@^28.0.2:6518jest-util@^28.1.0:
6345 version "28.0.2"6519 version "28.1.0"
6346 resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.0.2.tgz#8e22cdd6e0549e0a393055f0e2da7eacc334b143"6520 resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.0.tgz#d54eb83ad77e1dd441408738c5a5043642823be5"
6347 integrity sha512-EVdpIRCC8lzqhp9A0u0aAKlsFIzufK6xKxNK7awsnebTdOP4hpyQW5o6Ox2qPl8gbeUKYF+POLyItaND53kpGA==6521 integrity sha512-qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA==
6348 dependencies:6522 dependencies:
6349 "@jest/types" "^28.0.2"6523 "@jest/types" "^28.1.0"
6350 "@types/node" "*"6524 "@types/node" "*"
6351 chalk "^4.0.0"6525 chalk "^4.0.0"
6352 ci-info "^3.2.0"6526 ci-info "^3.2.0"
6353 graceful-fs "^4.2.9"6527 graceful-fs "^4.2.9"
6354 picomatch "^2.2.3"6528 picomatch "^2.2.3"
63556529
6356jest-validate@^28.0.2:6530jest-validate@^28.1.0:
6357 version "28.0.2"6531 version "28.1.0"
6358 resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.0.2.tgz#58bb7e826c054a8bb3b54c05f73758d96cf6dbef"6532 resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.1.0.tgz#8a6821f48432aba9f830c26e28226ad77b9a0e18"
6359 integrity sha512-nr0UOvCTtxP0YPdsk01Gk7e7c0xIiEe2nncAe3pj0wBfUvAykTVrMrdeASlAJnlEQCBuwN/GF4hKoCzbkGNCNw==6533 integrity sha512-Lly7CJYih3vQBfjLeANGgBSBJ7pEa18cxpQfQEq2go2xyEzehnHfQTjoUia8xUv4x4J80XKFIDwJJThXtRFQXQ==
6360 dependencies:6534 dependencies:
6361 "@jest/types" "^28.0.2"6535 "@jest/types" "^28.1.0"
6362 camelcase "^6.2.0"6536 camelcase "^6.2.0"
6363 chalk "^4.0.0"6537 chalk "^4.0.0"
6364 jest-get-type "^28.0.2"6538 jest-get-type "^28.0.2"
6365 leven "^3.1.0"6539 leven "^3.1.0"
6366 pretty-format "^28.0.2"6540 pretty-format "^28.1.0"
63676541
6368jest-watcher@^28.0.2:6542jest-watcher@^28.1.0:
6369 version "28.0.2"6543 version "28.1.0"
6370 resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.0.2.tgz#649fa24df531d4071be5784b6274d494d788c88b"6544 resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.0.tgz#aaa7b4164a4e77eeb5f7d7b25ede5e7b4e9c9aaf"
6371 integrity sha512-uIVJLpQ/5VTGQWBiBatHsi7jrCqHjHl0e0dFHMWzwuIfUbdW/muk0DtSr0fteY2T7QTFylv+7a5Rm8sBKrE12Q==6545 integrity sha512-tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA==
6372 dependencies:6546 dependencies:
6373 "@jest/test-result" "^28.0.2"6547 "@jest/test-result" "^28.1.0"
6374 "@jest/types" "^28.0.2"6548 "@jest/types" "^28.1.0"
6375 "@types/node" "*"6549 "@types/node" "*"
6376 ansi-escapes "^4.2.1"6550 ansi-escapes "^4.2.1"
6377 chalk "^4.0.0"6551 chalk "^4.0.0"
6378 emittery "^0.10.2"6552 emittery "^0.10.2"
6379 jest-util "^28.0.2"6553 jest-util "^28.1.0"
6380 string-length "^4.0.1"6554 string-length "^4.0.1"
63816555
6382jest-worker@^28.0.2:6556jest-worker@^28.1.0:
6383 version "28.0.2"6557 version "28.1.0"
6384 resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.0.2.tgz#75f7e5126541289ba02e9c1a67e46349ddb8141d"6558 resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.0.tgz#ced54757a035e87591e1208253a6e3aac1a855e5"
6385 integrity sha512-pijNxfjxT0tGAx+8+OzZ+eayVPCwy/rsZFhebmC0F4YnXu1EHPEPxg7utL3m5uX3EaFH1/jwDxGa1EbjJCST2g==6559 integrity sha512-ZHwM6mNwaWBR52Snff8ZvsCTqQsvhCxP/bT1I6T6DAnb6ygkshsyLQIMxFwHpYxht0HOoqt23JlC01viI7T03A==
6386 dependencies:6560 dependencies:
6387 "@types/node" "*"6561 "@types/node" "*"
6388 merge-stream "^2.0.0"6562 merge-stream "^2.0.0"
6389 supports-color "^8.0.0"6563 supports-color "^8.0.0"
63906564
6391jest@^28.0.3:6565jest@^28.1.0:
6392 version "28.0.3"6566 version "28.1.0"
6393 resolved "https://registry.yarnpkg.com/jest/-/jest-28.0.3.tgz#92a7d6ee097b61de4ba2db7f3ab723e81a99b32d"6567 resolved "https://registry.yarnpkg.com/jest/-/jest-28.1.0.tgz#f420e41c8f2395b9a30445a97189ebb57593d831"
6394 integrity sha512-uS+T5J3w5xyzd1KSJCGKhCo8WTJXbNl86f5SW11wgssbandJOVLRKKUxmhdFfmKxhPeksl1hHZ0HaA8VBzp7xA==6568 integrity sha512-TZR+tHxopPhzw3c3560IJXZWLNHgpcz1Zh0w5A65vynLGNcg/5pZ+VildAd7+XGOu6jd58XMY/HNn0IkZIXVXg==
6395 dependencies:6569 dependencies:
6396 "@jest/core" "^28.0.3"6570 "@jest/core" "^28.1.0"
6397 import-local "^3.0.2"6571 import-local "^3.0.2"
6398 jest-cli "^28.0.3"6572 jest-cli "^28.1.0"
63996573
6400js-cleanup@^1.2.0:6574js-cleanup@^1.2.0:
6401 version "1.2.0"6575 version "1.2.0"
7726 resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032"7900 resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032"
7727 integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==7901 integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==
77287902
7729pretty-format@^28.0.2:7903pretty-format@^28.1.0:
7730 version "28.0.2"7904 version "28.1.0"
7731 resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.0.2.tgz#6a24d71cbb61a5e5794ba7513fe22101675481bc"7905 resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.0.tgz#8f5836c6a0dfdb834730577ec18029052191af55"
7732 integrity sha512-UmGZ1IERwS3yY35LDMTaBUYI1w4udZDdJGGT/DqQeKG9ZLDn7/K2Jf/JtYSRiHCCKMHvUA+zsEGSmHdpaVp1yw==7906 integrity sha512-79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q==
7733 dependencies:7907 dependencies:
7734 "@jest/schemas" "^28.0.2"7908 "@jest/schemas" "^28.0.2"
7735 ansi-regex "^5.0.1"7909 ansi-regex "^5.0.1"
8202 dependencies:8376 dependencies:
8203 estree-walker "^0.6.1"8377 estree-walker "^0.6.1"
82048378
8205rollup@^2.71.1:8379rollup@^2.72.1:
8206 version "2.72.0"8380 version "2.72.1"
8207 resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.72.0.tgz#f94280b003bcf9f2f1f2594059a9db5abced371e"8381 resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.72.1.tgz#861c94790537b10008f0ca0fbc60e631aabdd045"
8208 integrity sha512-KqtR2YcO35/KKijg4nx4STO3569aqCUeGRkKWnJ6r+AvBBrVY9L4pmf4NHVrQr4mTOq6msbohflxr2kpihhaOA==8382 integrity sha512-NTc5UGy/NWFGpSqF1lFY8z9Adri6uhyMLI6LvPAXdBKoPRFhIIiBUpt+Qg2awixqO3xvzSijjhnb4+QEZwJmxA==
8209 optionalDependencies:8383 optionalDependencies:
8210 fsevents "~2.3.2"8384 fsevents "~2.3.2"
82118385
9765 y18n "^5.0.5"9939 y18n "^5.0.5"
9766 yargs-parser "^20.2.2"9940 yargs-parser "^20.2.2"
97679941
9768yargs@^17.0.0, yargs@^17.3.1, yargs@^17.4.1:9942yargs@^17.0.0, yargs@^17.3.1:
9769 version "17.4.1"9943 version "17.4.1"
9770 resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.4.1.tgz#ebe23284207bb75cee7c408c33e722bfb27b5284"9944 resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.4.1.tgz#ebe23284207bb75cee7c408c33e722bfb27b5284"
9771 integrity sha512-WSZD9jgobAg3ZKuCQZSa3g9QOJeCCqLoLAykiWgmXnDo9EPnn4RPf5qVTtzgOx66o6/oqhcA5tHtJXpG8pMt3g==9945 integrity sha512-WSZD9jgobAg3ZKuCQZSa3g9QOJeCCqLoLAykiWgmXnDo9EPnn4RPf5qVTtzgOx66o6/oqhcA5tHtJXpG8pMt3g==
9946 dependencies:
9947 cliui "^7.0.2"
9948 escalade "^3.1.1"
9949 get-caller-file "^2.0.5"
9950 require-directory "^2.1.1"
9951 string-width "^4.2.3"
9952 y18n "^5.0.5"
9953 yargs-parser "^21.0.0"
9954
9955yargs@^17.5.0:
9956 version "17.5.0"
9957 resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.0.tgz#2706c5431f8c119002a2b106fc9f58b9bb9097a3"
9958 integrity sha512-3sLxVhbAB5OC8qvVRebCLWuouhwh/rswsiDYx3WGxajUk/l4G20SKfrKKFeNIHboUFt2JFgv2yfn+5cgOr/t5A==
9772 dependencies:9959 dependencies:
9773 cliui "^7.0.2"9960 cliui "^7.0.2"
9774 escalade "^3.1.1"9961 escalade "^3.1.1"