@canton-network/core-wallet-user-rpc-client 1.2.2 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +96 -22
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;AAyqBO,IAAM,uBAAN,MAA2B;AAAA,EAG9B,YAAY,SAAA,EAAyB;AAFrC,IAAA,aAAA,CAAA,IAAA,EAAO,WAAA,CAAA;AAGH,IAAA,IAAA,CAAK,SAAA,GAAY,SAAA;AAAA,EACrB;AAAA,EAEA,MAAa,QACT,IAAA,EAC8B;AAC9B,IAAA,MAAM,QAAA,GAAW,MAAM,IAAA,CAAK,SAAA,CAAU,OAAO,IAAsB,CAAA;AAEnE,IAAA,IAAI,WAAW,QAAA,EAAU;AACrB,MAAA,MAAM,IAAI,KAAA;AAAA,QACN,gBACI,QAAA,CAAS,KAAA,CAAM,IAAA,GACf,KAAA,GACA,SAAS,KAAA,CAAM;AAAA,OACvB;AAAA,IACJ,CAAA,MAAO;AACH,MAAA,OAAO,QAAA,CAAS,MAAA;AAAA,IACpB;AAAA,EACJ;AACJ;AACA,IAAO,aAAA,GAAQ","file":"index.cjs","sourcesContent":["// Code generated by @open-rpc/generator DO NOT EDIT.\nimport _ from 'lodash'\n\nimport { RequestArgs, RequestPayload } from '@canton-network/core-types'\nimport { RpcTransport } from '@canton-network/core-rpc-transport'\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n *\n * Network ID\n *\n */\nexport type NetworkId = string\n/**\n *\n * Name of network\n *\n */\nexport type Name = string\n/**\n *\n * Description of network\n *\n */\nexport type Description = string\n/**\n *\n * Synchronizer ID\n *\n */\nexport type SynchronizerId = string\n/**\n *\n * Identity Provider ID\n *\n */\nexport type IdentityProviderId = string\nexport type Method = string\nexport type Scope = string\nexport type ClientId = string\nexport type ClientSecret = string\n/**\n *\n * Issuer of identity provider\n *\n */\nexport type Issuer = string\nexport type Audience = string\n/**\n *\n * Represents the type of auth for a specified network\n *\n */\nexport interface Auth {\n method: Method\n scope: Scope\n clientId: ClientId\n clientSecret?: ClientSecret\n issuer?: Issuer\n audience: Audience\n}\n/**\n *\n * Ledger api url\n *\n */\nexport type LedgerApi = string\n/**\n *\n * Structure representing the Networks\n *\n */\nexport interface Network {\n id: NetworkId\n name: Name\n description: Description\n synchronizerId?: SynchronizerId\n identityProviderId: IdentityProviderId\n auth: Auth\n adminAuth?: Auth\n ledgerApi: LedgerApi\n}\n/**\n *\n * Ledger api url\n *\n */\nexport type NetworkName = string\n/**\n *\n * ID of the identity provider\n *\n */\nexport type Id = string\n/**\n *\n * Type of identity provider (oauth / self_signed)\n *\n */\nexport type Type = any\n/**\n *\n * The configuration URL for the identity provider.\n *\n */\nexport type ConfigUrl = string\n/**\n *\n * Structure representing the Identity Providers\n *\n */\nexport interface Idp {\n id: Id\n type: Type\n issuer: Issuer\n configUrl?: ConfigUrl\n}\n/**\n *\n * Set as primary wallet for dApp usage.\n *\n */\nexport type Primary = boolean\n/**\n *\n * The party hint and name of the wallet.\n *\n */\nexport type PartyHint = string\n/**\n *\n * The signing provider ID the wallet corresponds to.\n *\n */\nexport type SigningProviderId = string\nexport type PartyId = string\n/**\n *\n * Filter wallets by network IDs.\n *\n */\nexport type NetworkIds = NetworkId[]\n/**\n *\n * Filter wallets by signing provider IDs.\n *\n */\nexport type SigningProviderIds = SigningProviderId[]\n/**\n *\n * Filter for the wallets to be returned.\n *\n */\nexport interface WalletFilter {\n networkIds?: NetworkIds\n signingProviderIds?: SigningProviderIds\n}\n/**\n *\n * The internal transaction identifier.\n *\n */\nexport type TransactionId = string\nexport type Signature = string\nexport type SignedBy = string\nexport type Networks = Network[]\nexport type Idps = Idp[]\n/**\n *\n * The status of the wallet.\n *\n */\nexport type WalletStatus = 'initialized' | 'allocated' | 'removed'\n/**\n *\n * The party hint and name of the wallet.\n *\n */\nexport type Hint = string\n/**\n *\n * The public key of the party.\n *\n */\nexport type PublicKey = string\n/**\n *\n * The namespace of the party.\n *\n */\nexport type Namespace = string\n/**\n *\n * External transaction ID from signing provider.\n *\n */\nexport type ExternalTxId = string\n/**\n *\n * The topology transactions\n *\n */\nexport type TopologyTransactions = string\n/**\n *\n * Whether the wallet is disabled. Wallets are disabled when no signing provider matches the party's namespace during sync. Disabled wallets use participant as the default signing provider.\n *\n */\nexport type Disabled = boolean\n/**\n *\n * The reason for the current status.\n *\n */\nexport type Reason = string\nexport type PartyLevelRight = any\n/**\n *\n * The rights of the user for the network.\n *\n */\nexport type Rights = UserLevelRight[]\n/**\n *\n * Structure representing a wallet\n *\n */\nexport interface Wallet {\n primary: Primary\n partyId: PartyId\n status: WalletStatus\n hint: Hint\n publicKey: PublicKey\n namespace: Namespace\n networkId: NetworkId\n signingProviderId: SigningProviderId\n externalTxId?: ExternalTxId\n topologyTransactions?: TopologyTransactions\n disabled?: Disabled\n reason?: Reason\n rights: Rights\n}\ntype AlwaysTrue = any\n/**\n *\n * Non-disabled wallets added in this syncWallets call.\n *\n */\nexport type SyncWalletsResultAdded = Wallet[]\n/**\n *\n * Existing wallets that either got downgraded to status initialized or their rights changed in this syncWallets call.\n *\n */\nexport type SyncWalletsResultUpdated = Wallet[]\n/**\n *\n * Either wallets added in this iteration that are disabled, or existing wallet that were updated to be disabled in this syncWallets call.\n *\n */\nexport type SyncWalletsResultDisabled = Wallet[]\n/**\n *\n * Whether wallet sync is needed. Returns true if there are disabled wallets or parties on the ledger that aren't in the store.\n *\n */\nexport type WalletSyncNeeded = boolean\nexport type TxStatusSigned = 'signed'\nexport interface SignResultSigned {\n status: TxStatusSigned\n signature: Signature\n signedBy: SignedBy\n partyId: PartyId\n externalTxId?: ExternalTxId\n}\nexport type TxStatusPending = 'pending'\nexport interface SignResultPending {\n status: TxStatusPending\n partyId: PartyId\n externalTxId: ExternalTxId\n}\nexport type TxStatusRejected = 'rejected'\nexport interface SignResultRejected {\n status: TxStatusRejected\n partyId: PartyId\n externalTxId: ExternalTxId\n}\nexport type TxStatusFailed = 'failed'\nexport interface SignResultFailed {\n status: TxStatusFailed\n partyId: PartyId\n externalTxId: ExternalTxId\n}\n/**\n *\n * The access token for the session.\n *\n */\nexport type AccessToken = string\n/**\n *\n * The status of the transaction.\n *\n */\nexport type Status = string\nexport type UserLevelRight = any\n/**\n *\n * Structure representing the connected network session\n *\n */\nexport interface Session {\n id: Id\n network: Network\n idp: Idp\n accessToken: AccessToken\n status: Status\n reason?: Reason\n rights: Rights\n}\nexport type Sessions = Session[]\n/**\n *\n * The unique identifier of the command associated with the transaction.\n *\n */\nexport type CommandId = string\n/**\n *\n * The timestamp when the transaction was created.\n *\n */\nexport type CreatedAt = string\n/**\n *\n * The timestamp when the transaction was signed.\n *\n */\nexport type SignedAt = string\n/**\n *\n * The transaction data corresponding to the command ID.\n *\n */\nexport type PreparedTransaction = string\n/**\n *\n * The hash of the prepared transaction.\n *\n */\nexport type PreparedTransactionHash = string\n/**\n *\n * Optional payload associated with the transaction.\n *\n */\nexport type Payload = string\n/**\n *\n * The origin (dApp URL) that initiated this transaction request.\n *\n */\nexport type Origin = string\nexport interface Transaction {\n id: TransactionId\n commandId: CommandId\n status: Status\n createdAt?: CreatedAt\n signedAt?: SignedAt\n preparedTransaction: PreparedTransaction\n preparedTransactionHash: PreparedTransactionHash\n payload?: Payload\n origin?: Origin\n externalTxId?: ExternalTxId\n}\nexport type Transactions = Transaction[]\n/**\n *\n * The unique identifier of the current user.\n *\n */\nexport type UserIdentifier = string\n/**\n *\n * Whether the current user is an admin.\n *\n */\nexport type IsAdminFlag = boolean\nexport interface AddNetworkParams {\n network: Network\n}\nexport interface RemoveNetworkParams {\n networkName: NetworkName\n}\nexport interface AddIdpParams {\n idp: Idp\n}\nexport interface RemoveIdpParams {\n identityProviderId: IdentityProviderId\n}\nexport interface CreateWalletParams {\n primary?: Primary\n partyHint: PartyHint\n signingProviderId: SigningProviderId\n}\nexport interface AllocatePartyForWalletParams {\n partyId: PartyId\n}\nexport interface SetPrimaryWalletParams {\n partyId: PartyId\n}\nexport interface RemoveWalletParams {\n partyId: PartyId\n}\nexport interface ListWalletsParams {\n filter?: WalletFilter\n}\nexport interface SignParams {\n transactionId: TransactionId\n partyId: PartyId\n}\nexport interface ExecuteParams {\n signature: Signature\n partyId: PartyId\n transactionId: TransactionId\n signedBy: SignedBy\n}\nexport interface AddSessionParams {\n networkId: NetworkId\n}\nexport interface GetTransactionParams {\n transactionId: TransactionId\n}\nexport interface DeleteTransactionParams {\n transactionId: TransactionId\n}\n/**\n *\n * Represents a null value, used in responses where no data is returned.\n *\n */\nexport type Null = null\nexport interface ListNetworksResult {\n networks: Networks\n}\nexport interface ListIdpsResult {\n idps: Idps\n}\nexport interface CreateWalletResult {\n wallet: Wallet\n}\nexport interface AllocatePartyForWalletResult {\n wallet: Wallet\n}\nexport interface RemovePartyResult {\n [key: string]: any\n}\n/**\n *\n * An array of wallets that match the filter criteria.\n *\n */\nexport type ListWalletsResult = Wallet[]\n/**\n *\n * Added, updated and disabled wallets as a result of the sync.\n *\n */\nexport interface SyncWalletsResult {\n added: SyncWalletsResultAdded\n updated: SyncWalletsResultUpdated\n disabled: SyncWalletsResultDisabled\n}\nexport interface IsWalletSyncNeededResult {\n walletSyncNeeded: WalletSyncNeeded\n}\nexport type SignResult =\n | SignResultSigned\n | SignResultPending\n | SignResultRejected\n | SignResultFailed\nexport interface ExecuteResult {\n [key: string]: any\n}\n/**\n *\n * Structure representing the connected network session\n *\n */\nexport interface AddSessionResult {\n id: Id\n network: Network\n idp: Idp\n accessToken: AccessToken\n status: Status\n reason?: Reason\n rights: Rights\n}\nexport interface ListSessionsResult {\n sessions: Sessions\n}\nexport interface GetTransactionResult {\n id: TransactionId\n commandId: CommandId\n status: Status\n createdAt?: CreatedAt\n signedAt?: SignedAt\n preparedTransaction: PreparedTransaction\n preparedTransactionHash: PreparedTransactionHash\n payload?: Payload\n origin?: Origin\n externalTxId?: ExternalTxId\n}\nexport interface ListTransactionsResult {\n transactions: Transactions\n}\nexport interface GetUserResult {\n userId: UserIdentifier\n isAdmin: IsAdminFlag\n}\n/**\n *\n * Generated! Represents an alias to any of the provided schemas\n *\n */\n\nexport type AddNetwork = (params: AddNetworkParams) => Promise<Null>\nexport type RemoveNetwork = (params: RemoveNetworkParams) => Promise<Null>\nexport type ListNetworks = () => Promise<ListNetworksResult>\nexport type AddIdp = (params: AddIdpParams) => Promise<Null>\nexport type RemoveIdp = (params: RemoveIdpParams) => Promise<Null>\nexport type ListIdps = () => Promise<ListIdpsResult>\nexport type CreateWallet = (\n params: CreateWalletParams\n) => Promise<CreateWalletResult>\nexport type AllocatePartyForWallet = (\n params: AllocatePartyForWalletParams\n) => Promise<AllocatePartyForWalletResult>\nexport type SetPrimaryWallet = (params: SetPrimaryWalletParams) => Promise<Null>\nexport type RemoveWallet = (\n params: RemoveWalletParams\n) => Promise<RemovePartyResult>\nexport type ListWallets = (\n params: ListWalletsParams\n) => Promise<ListWalletsResult>\nexport type SyncWallets = () => Promise<SyncWalletsResult>\nexport type IsWalletSyncNeeded = () => Promise<IsWalletSyncNeededResult>\nexport type Sign = (params: SignParams) => Promise<SignResult>\nexport type Execute = (params: ExecuteParams) => Promise<ExecuteResult>\nexport type AddSession = (params: AddSessionParams) => Promise<AddSessionResult>\nexport type RemoveSession = () => Promise<Null>\nexport type ListSessions = () => Promise<ListSessionsResult>\nexport type GetTransaction = (\n params: GetTransactionParams\n) => Promise<GetTransactionResult>\nexport type ListTransactions = () => Promise<ListTransactionsResult>\nexport type DeleteTransaction = (\n params: DeleteTransactionParams\n) => Promise<Null>\nexport type GetUser = () => Promise<GetUserResult>\n/* eslint-enable @typescript-eslint/no-unused-vars */\n\ntype Params<T> = T extends (...args: infer A) => any\n ? A extends []\n ? never\n : A[0]\n : never\ntype Result<T> = T extends (...args: any[]) => Promise<infer R> ? R : never\n\nexport type RpcTypes = {\n addNetwork: {\n params: Params<AddNetwork>\n result: Result<AddNetwork>\n }\n\n removeNetwork: {\n params: Params<RemoveNetwork>\n result: Result<RemoveNetwork>\n }\n\n listNetworks: {\n params: Params<ListNetworks>\n result: Result<ListNetworks>\n }\n\n addIdp: {\n params: Params<AddIdp>\n result: Result<AddIdp>\n }\n\n removeIdp: {\n params: Params<RemoveIdp>\n result: Result<RemoveIdp>\n }\n\n listIdps: {\n params: Params<ListIdps>\n result: Result<ListIdps>\n }\n\n createWallet: {\n params: Params<CreateWallet>\n result: Result<CreateWallet>\n }\n\n allocatePartyForWallet: {\n params: Params<AllocatePartyForWallet>\n result: Result<AllocatePartyForWallet>\n }\n\n setPrimaryWallet: {\n params: Params<SetPrimaryWallet>\n result: Result<SetPrimaryWallet>\n }\n\n removeWallet: {\n params: Params<RemoveWallet>\n result: Result<RemoveWallet>\n }\n\n listWallets: {\n params: Params<ListWallets>\n result: Result<ListWallets>\n }\n\n syncWallets: {\n params: Params<SyncWallets>\n result: Result<SyncWallets>\n }\n\n isWalletSyncNeeded: {\n params: Params<IsWalletSyncNeeded>\n result: Result<IsWalletSyncNeeded>\n }\n\n sign: {\n params: Params<Sign>\n result: Result<Sign>\n }\n\n execute: {\n params: Params<Execute>\n result: Result<Execute>\n }\n\n addSession: {\n params: Params<AddSession>\n result: Result<AddSession>\n }\n\n removeSession: {\n params: Params<RemoveSession>\n result: Result<RemoveSession>\n }\n\n listSessions: {\n params: Params<ListSessions>\n result: Result<ListSessions>\n }\n\n getTransaction: {\n params: Params<GetTransaction>\n result: Result<GetTransaction>\n }\n\n listTransactions: {\n params: Params<ListTransactions>\n result: Result<ListTransactions>\n }\n\n deleteTransaction: {\n params: Params<DeleteTransaction>\n result: Result<DeleteTransaction>\n }\n\n getUser: {\n params: Params<GetUser>\n result: Result<GetUser>\n }\n}\n\nexport class WalletJSONRPCUserAPI {\n public transport: RpcTransport\n\n constructor(transport: RpcTransport) {\n this.transport = transport\n }\n\n public async request<M extends keyof RpcTypes>(\n args: RequestArgs<RpcTypes, M>\n ): Promise<RpcTypes[M]['result']> {\n const response = await this.transport.submit(args as RequestPayload)\n\n if ('error' in response) {\n throw new Error(\n 'RPC error: ' +\n response.error.code +\n ' - ' +\n response.error.message\n )\n } else {\n return response.result as RpcTypes[M]['result']\n }\n }\n}\nexport default WalletJSONRPCUserAPI\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;AA6vBO,IAAM,uBAAN,MAA2B;AAAA,EAG9B,YAAY,SAAA,EAAyB;AAFrC,IAAA,aAAA,CAAA,IAAA,EAAO,WAAA,CAAA;AAGH,IAAA,IAAA,CAAK,SAAA,GAAY,SAAA;AAAA,EACrB;AAAA,EAEA,MAAa,QACT,IAAA,EAC8B;AAC9B,IAAA,MAAM,QAAA,GAAW,MAAM,IAAA,CAAK,SAAA,CAAU,OAAO,IAAsB,CAAA;AAEnE,IAAA,IAAI,WAAW,QAAA,EAAU;AACrB,MAAA,MAAM,IAAI,KAAA;AAAA,QACN,gBACI,QAAA,CAAS,KAAA,CAAM,IAAA,GACf,KAAA,GACA,SAAS,KAAA,CAAM;AAAA,OACvB;AAAA,IACJ,CAAA,MAAO;AACH,MAAA,OAAO,QAAA,CAAS,MAAA;AAAA,IACpB;AAAA,EACJ;AACJ;AACA,IAAO,aAAA,GAAQ","file":"index.cjs","sourcesContent":["// Code generated by @open-rpc/generator DO NOT EDIT.\nimport _ from 'lodash'\n\nimport { RequestArgs, RequestPayload } from '@canton-network/core-types'\nimport { RpcTransport } from '@canton-network/core-rpc-transport'\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n *\n * Network ID\n *\n */\nexport type NetworkId = string\n/**\n *\n * Name of network\n *\n */\nexport type Name = string\n/**\n *\n * Description of network\n *\n */\nexport type Description = string\n/**\n *\n * Synchronizer ID\n *\n */\nexport type SynchronizerId = string\n/**\n *\n * Identity Provider ID\n *\n */\nexport type IdentityProviderId = string\nexport type Method = string\nexport type Scope = string\nexport type ClientId = string\nexport type ClientSecret = string\n/**\n *\n * Issuer of identity provider\n *\n */\nexport type Issuer = string\nexport type Audience = string\n/**\n *\n * Represents the type of auth for a specified network\n *\n */\nexport interface Auth {\n method: Method\n scope: Scope\n clientId: ClientId\n clientSecret?: ClientSecret\n issuer?: Issuer\n audience: Audience\n}\n/**\n *\n * Ledger api url\n *\n */\nexport type LedgerApi = string\n/**\n *\n * Structure representing the Networks\n *\n */\nexport interface Network {\n id: NetworkId\n name: Name\n description: Description\n synchronizerId?: SynchronizerId\n identityProviderId: IdentityProviderId\n auth: Auth\n adminAuth?: Auth\n ledgerApi: LedgerApi\n}\n/**\n *\n * Ledger api url\n *\n */\nexport type NetworkName = string\n/**\n *\n * ID of the identity provider\n *\n */\nexport type Id = string\n/**\n *\n * Type of identity provider (oauth / self_signed)\n *\n */\nexport type Type = any\n/**\n *\n * The configuration URL for the identity provider.\n *\n */\nexport type ConfigUrl = string\n/**\n *\n * Structure representing the Identity Providers\n *\n */\nexport interface Idp {\n id: Id\n type: Type\n issuer: Issuer\n configUrl?: ConfigUrl\n}\n/**\n *\n * Set as primary wallet for dApp usage.\n *\n */\nexport type Primary = boolean\n/**\n *\n * The party hint and name of the wallet.\n *\n */\nexport type PartyHint = string\n/**\n *\n * The signing provider ID the wallet corresponds to.\n *\n */\nexport type SigningProviderId = string\n/**\n *\n * The party id of the wallet to be removed.\n *\n */\nexport type PartyId = string\n/**\n *\n * Filter wallets by network IDs.\n *\n */\nexport type NetworkIds = NetworkId[]\n/**\n *\n * Filter wallets by signing provider IDs.\n *\n */\nexport type SigningProviderIds = SigningProviderId[]\n/**\n *\n * Filter for the wallets to be returned.\n *\n */\nexport interface WalletFilter {\n networkIds?: NetworkIds\n signingProviderIds?: SigningProviderIds\n}\n/**\n *\n * The internal transaction identifier.\n *\n */\nexport type TransactionId = string\n/**\n *\n * The internal identifier of the pending message-signing request.\n *\n */\nexport type MessageId = string\n/**\n *\n * The signature of the message.\n *\n */\nexport type Signature = string\nexport type SignedBy = string\nexport type Networks = Network[]\nexport type Idps = Idp[]\n/**\n *\n * The status of the wallet.\n *\n */\nexport type WalletStatus = 'initialized' | 'allocated' | 'removed'\n/**\n *\n * The party hint and name of the wallet.\n *\n */\nexport type Hint = string\n/**\n *\n * The public key of the party.\n *\n */\nexport type PublicKey = string\n/**\n *\n * The namespace of the party.\n *\n */\nexport type Namespace = string\n/**\n *\n * External transaction ID from signing provider.\n *\n */\nexport type ExternalTxId = string\n/**\n *\n * The topology transactions\n *\n */\nexport type TopologyTransactions = string\n/**\n *\n * Whether the wallet is disabled. Wallets are disabled when no signing provider matches the party's namespace during sync. Disabled wallets use participant as the default signing provider.\n *\n */\nexport type Disabled = boolean\n/**\n *\n * The reason for the current status.\n *\n */\nexport type Reason = string\nexport type PartyLevelRight = any\n/**\n *\n * The rights of the user for the network.\n *\n */\nexport type Rights = UserLevelRight[]\n/**\n *\n * Structure representing a wallet\n *\n */\nexport interface Wallet {\n primary: Primary\n partyId: PartyId\n status: WalletStatus\n hint: Hint\n publicKey: PublicKey\n namespace: Namespace\n networkId: NetworkId\n signingProviderId: SigningProviderId\n externalTxId?: ExternalTxId\n topologyTransactions?: TopologyTransactions\n disabled?: Disabled\n reason?: Reason\n rights: Rights\n}\ntype AlwaysTrue = any\n/**\n *\n * Non-disabled wallets added in this syncWallets call.\n *\n */\nexport type SyncWalletsResultAdded = Wallet[]\n/**\n *\n * Existing wallets that either got downgraded to status initialized or their rights changed in this syncWallets call.\n *\n */\nexport type SyncWalletsResultUpdated = Wallet[]\n/**\n *\n * Either wallets added in this iteration that are disabled, or existing wallet that were updated to be disabled in this syncWallets call.\n *\n */\nexport type SyncWalletsResultDisabled = Wallet[]\n/**\n *\n * Whether wallet sync is needed. Returns true if there are disabled wallets or parties on the ledger that aren't in the store.\n *\n */\nexport type WalletSyncNeeded = boolean\nexport type TxStatusSigned = 'signed'\nexport interface SignResultSigned {\n status: TxStatusSigned\n signature: Signature\n signedBy: SignedBy\n partyId: PartyId\n externalTxId?: ExternalTxId\n}\nexport type TxStatusPending = 'pending'\nexport interface SignResultPending {\n status: TxStatusPending\n partyId: PartyId\n externalTxId: ExternalTxId\n}\nexport type TxStatusRejected = 'rejected'\nexport interface SignResultRejected {\n status: TxStatusRejected\n partyId: PartyId\n externalTxId: ExternalTxId\n}\nexport type TxStatusFailed = 'failed'\nexport interface SignResultFailed {\n status: TxStatusFailed\n partyId: PartyId\n externalTxId: ExternalTxId\n}\n/**\n *\n * The status of the transaction.\n *\n */\nexport type Status = string\n/**\n *\n * The message to sign.\n *\n */\nexport type Message = string\n/**\n *\n * The origin (dApp URL) that initiated this transaction request.\n *\n */\nexport type Origin = string\n/**\n *\n * The timestamp when the transaction was created.\n *\n */\nexport type CreatedAt = string\n/**\n *\n * The timestamp when the transaction was signed.\n *\n */\nexport type SignedAt = string\nexport interface MessageRaw {\n id: MessageId\n status: Status\n partyId: PartyId\n publicKey: PublicKey\n message: Message\n origin?: Origin\n createdAt: CreatedAt\n signedAt?: SignedAt\n signature?: Signature\n}\nexport type Messages = MessageRaw[]\n/**\n *\n * The access token for the session.\n *\n */\nexport type AccessToken = string\nexport type UserLevelRight = any\n/**\n *\n * Structure representing the connected network session\n *\n */\nexport interface Session {\n id: Id\n network: Network\n idp: Idp\n accessToken: AccessToken\n status: Status\n reason?: Reason\n rights: Rights\n}\nexport type Sessions = Session[]\n/**\n *\n * The unique identifier of the command associated with the transaction.\n *\n */\nexport type CommandId = string\n/**\n *\n * The transaction data corresponding to the command ID.\n *\n */\nexport type PreparedTransaction = string\n/**\n *\n * The hash of the prepared transaction.\n *\n */\nexport type PreparedTransactionHash = string\n/**\n *\n * Optional payload associated with the transaction.\n *\n */\nexport type Payload = string\nexport interface Transaction {\n id: TransactionId\n commandId: CommandId\n status: Status\n createdAt?: CreatedAt\n signedAt?: SignedAt\n preparedTransaction: PreparedTransaction\n preparedTransactionHash: PreparedTransactionHash\n payload?: Payload\n origin?: Origin\n externalTxId?: ExternalTxId\n}\nexport type Transactions = Transaction[]\n/**\n *\n * The unique identifier of the current user.\n *\n */\nexport type UserIdentifier = string\n/**\n *\n * Whether the current user is an admin.\n *\n */\nexport type IsAdminFlag = boolean\nexport interface AddNetworkParams {\n network: Network\n}\nexport interface RemoveNetworkParams {\n networkName: NetworkName\n}\nexport interface AddIdpParams {\n idp: Idp\n}\nexport interface RemoveIdpParams {\n identityProviderId: IdentityProviderId\n}\nexport interface CreateWalletParams {\n primary?: Primary\n partyHint: PartyHint\n signingProviderId: SigningProviderId\n}\nexport interface AllocatePartyForWalletParams {\n partyId: PartyId\n}\nexport interface SetPrimaryWalletParams {\n partyId: PartyId\n}\nexport interface RemoveWalletParams {\n partyId: PartyId\n}\nexport interface ListWalletsParams {\n filter?: WalletFilter\n}\nexport interface SignParams {\n transactionId: TransactionId\n partyId: PartyId\n}\nexport interface SignMessageParams {\n messageId: MessageId\n partyId?: PartyId\n}\nexport interface GetMessageToSignParams {\n messageId: MessageId\n}\nexport interface DeleteMessageToSignParams {\n messageId: MessageId\n}\nexport interface ExecuteParams {\n signature: Signature\n partyId: PartyId\n transactionId: TransactionId\n signedBy: SignedBy\n}\nexport interface AddSessionParams {\n networkId: NetworkId\n}\nexport interface GetTransactionParams {\n transactionId: TransactionId\n}\nexport interface DeleteTransactionParams {\n transactionId: TransactionId\n}\n/**\n *\n * Represents a null value, used in responses where no data is returned.\n *\n */\nexport type Null = null\nexport interface ListNetworksResult {\n networks: Networks\n}\nexport interface ListIdpsResult {\n idps: Idps\n}\nexport interface CreateWalletResult {\n wallet: Wallet\n}\nexport interface AllocatePartyForWalletResult {\n wallet: Wallet\n}\nexport interface RemovePartyResult {\n [key: string]: any\n}\n/**\n *\n * An array of wallets that match the filter criteria.\n *\n */\nexport type ListWalletsResult = Wallet[]\n/**\n *\n * Added, updated and disabled wallets as a result of the sync.\n *\n */\nexport interface SyncWalletsResult {\n added: SyncWalletsResultAdded\n updated: SyncWalletsResultUpdated\n disabled: SyncWalletsResultDisabled\n}\nexport interface IsWalletSyncNeededResult {\n walletSyncNeeded: WalletSyncNeeded\n}\nexport type SignResult =\n | SignResultSigned\n | SignResultPending\n | SignResultRejected\n | SignResultFailed\nexport interface SignMessageResult {\n signature: Signature\n publicKey: PublicKey\n}\nexport interface GetMessageToSignResult {\n message: MessageRaw\n}\nexport interface ListMessagesToSignResult {\n messages: Messages\n}\nexport interface ExecuteResult {\n [key: string]: any\n}\n/**\n *\n * Structure representing the connected network session\n *\n */\nexport interface AddSessionResult {\n id: Id\n network: Network\n idp: Idp\n accessToken: AccessToken\n status: Status\n reason?: Reason\n rights: Rights\n}\nexport interface ListSessionsResult {\n sessions: Sessions\n}\nexport interface GetTransactionResult {\n id: TransactionId\n commandId: CommandId\n status: Status\n createdAt?: CreatedAt\n signedAt?: SignedAt\n preparedTransaction: PreparedTransaction\n preparedTransactionHash: PreparedTransactionHash\n payload?: Payload\n origin?: Origin\n externalTxId?: ExternalTxId\n}\nexport interface ListTransactionsResult {\n transactions: Transactions\n}\nexport interface GetUserResult {\n userId: UserIdentifier\n isAdmin: IsAdminFlag\n}\n/**\n *\n * Generated! Represents an alias to any of the provided schemas\n *\n */\n\nexport type AddNetwork = (params: AddNetworkParams) => Promise<Null>\nexport type RemoveNetwork = (params: RemoveNetworkParams) => Promise<Null>\nexport type ListNetworks = () => Promise<ListNetworksResult>\nexport type AddIdp = (params: AddIdpParams) => Promise<Null>\nexport type RemoveIdp = (params: RemoveIdpParams) => Promise<Null>\nexport type ListIdps = () => Promise<ListIdpsResult>\nexport type CreateWallet = (\n params: CreateWalletParams\n) => Promise<CreateWalletResult>\nexport type AllocatePartyForWallet = (\n params: AllocatePartyForWalletParams\n) => Promise<AllocatePartyForWalletResult>\nexport type SetPrimaryWallet = (params: SetPrimaryWalletParams) => Promise<Null>\nexport type RemoveWallet = (\n params: RemoveWalletParams\n) => Promise<RemovePartyResult>\nexport type ListWallets = (\n params: ListWalletsParams\n) => Promise<ListWalletsResult>\nexport type SyncWallets = () => Promise<SyncWalletsResult>\nexport type IsWalletSyncNeeded = () => Promise<IsWalletSyncNeededResult>\nexport type Sign = (params: SignParams) => Promise<SignResult>\nexport type SignMessage = (\n params: SignMessageParams\n) => Promise<SignMessageResult>\nexport type GetMessageToSign = (\n params: GetMessageToSignParams\n) => Promise<GetMessageToSignResult>\nexport type ListMessagesToSign = () => Promise<ListMessagesToSignResult>\nexport type DeleteMessageToSign = (\n params: DeleteMessageToSignParams\n) => Promise<Null>\nexport type Execute = (params: ExecuteParams) => Promise<ExecuteResult>\nexport type AddSession = (params: AddSessionParams) => Promise<AddSessionResult>\nexport type RemoveSession = () => Promise<Null>\nexport type ListSessions = () => Promise<ListSessionsResult>\nexport type GetTransaction = (\n params: GetTransactionParams\n) => Promise<GetTransactionResult>\nexport type ListTransactions = () => Promise<ListTransactionsResult>\nexport type DeleteTransaction = (\n params: DeleteTransactionParams\n) => Promise<Null>\nexport type GetUser = () => Promise<GetUserResult>\n/* eslint-enable @typescript-eslint/no-unused-vars */\n\ntype Params<T> = T extends (...args: infer A) => any\n ? A extends []\n ? never\n : A[0]\n : never\ntype Result<T> = T extends (...args: any[]) => Promise<infer R> ? R : never\n\nexport type RpcTypes = {\n addNetwork: {\n params: Params<AddNetwork>\n result: Result<AddNetwork>\n }\n\n removeNetwork: {\n params: Params<RemoveNetwork>\n result: Result<RemoveNetwork>\n }\n\n listNetworks: {\n params: Params<ListNetworks>\n result: Result<ListNetworks>\n }\n\n addIdp: {\n params: Params<AddIdp>\n result: Result<AddIdp>\n }\n\n removeIdp: {\n params: Params<RemoveIdp>\n result: Result<RemoveIdp>\n }\n\n listIdps: {\n params: Params<ListIdps>\n result: Result<ListIdps>\n }\n\n createWallet: {\n params: Params<CreateWallet>\n result: Result<CreateWallet>\n }\n\n allocatePartyForWallet: {\n params: Params<AllocatePartyForWallet>\n result: Result<AllocatePartyForWallet>\n }\n\n setPrimaryWallet: {\n params: Params<SetPrimaryWallet>\n result: Result<SetPrimaryWallet>\n }\n\n removeWallet: {\n params: Params<RemoveWallet>\n result: Result<RemoveWallet>\n }\n\n listWallets: {\n params: Params<ListWallets>\n result: Result<ListWallets>\n }\n\n syncWallets: {\n params: Params<SyncWallets>\n result: Result<SyncWallets>\n }\n\n isWalletSyncNeeded: {\n params: Params<IsWalletSyncNeeded>\n result: Result<IsWalletSyncNeeded>\n }\n\n sign: {\n params: Params<Sign>\n result: Result<Sign>\n }\n\n signMessage: {\n params: Params<SignMessage>\n result: Result<SignMessage>\n }\n\n getMessageToSign: {\n params: Params<GetMessageToSign>\n result: Result<GetMessageToSign>\n }\n\n listMessagesToSign: {\n params: Params<ListMessagesToSign>\n result: Result<ListMessagesToSign>\n }\n\n deleteMessageToSign: {\n params: Params<DeleteMessageToSign>\n result: Result<DeleteMessageToSign>\n }\n\n execute: {\n params: Params<Execute>\n result: Result<Execute>\n }\n\n addSession: {\n params: Params<AddSession>\n result: Result<AddSession>\n }\n\n removeSession: {\n params: Params<RemoveSession>\n result: Result<RemoveSession>\n }\n\n listSessions: {\n params: Params<ListSessions>\n result: Result<ListSessions>\n }\n\n getTransaction: {\n params: Params<GetTransaction>\n result: Result<GetTransaction>\n }\n\n listTransactions: {\n params: Params<ListTransactions>\n result: Result<ListTransactions>\n }\n\n deleteTransaction: {\n params: Params<DeleteTransaction>\n result: Result<DeleteTransaction>\n }\n\n getUser: {\n params: Params<GetUser>\n result: Result<GetUser>\n }\n}\n\nexport class WalletJSONRPCUserAPI {\n public transport: RpcTransport\n\n constructor(transport: RpcTransport) {\n this.transport = transport\n }\n\n public async request<M extends keyof RpcTypes>(\n args: RequestArgs<RpcTypes, M>\n ): Promise<RpcTypes[M]['result']> {\n const response = await this.transport.submit(args as RequestPayload)\n\n if ('error' in response) {\n throw new Error(\n 'RPC error: ' +\n response.error.code +\n ' - ' +\n response.error.message\n )\n } else {\n return response.result as RpcTypes[M]['result']\n }\n }\n}\nexport default WalletJSONRPCUserAPI\n"]}
|
package/dist/index.d.ts
CHANGED
|
@@ -128,6 +128,11 @@ export type PartyHint = string;
|
|
|
128
128
|
*
|
|
129
129
|
*/
|
|
130
130
|
export type SigningProviderId = string;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* The party id of the wallet to be removed.
|
|
134
|
+
*
|
|
135
|
+
*/
|
|
131
136
|
export type PartyId = string;
|
|
132
137
|
/**
|
|
133
138
|
*
|
|
@@ -156,6 +161,17 @@ export interface WalletFilter {
|
|
|
156
161
|
*
|
|
157
162
|
*/
|
|
158
163
|
export type TransactionId = string;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* The internal identifier of the pending message-signing request.
|
|
167
|
+
*
|
|
168
|
+
*/
|
|
169
|
+
export type MessageId = string;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* The signature of the message.
|
|
173
|
+
*
|
|
174
|
+
*/
|
|
159
175
|
export type Signature = string;
|
|
160
176
|
export type SignedBy = string;
|
|
161
177
|
export type Networks = Network[];
|
|
@@ -287,16 +303,52 @@ export interface SignResultFailed {
|
|
|
287
303
|
}
|
|
288
304
|
/**
|
|
289
305
|
*
|
|
290
|
-
* The
|
|
306
|
+
* The status of the transaction.
|
|
291
307
|
*
|
|
292
308
|
*/
|
|
293
|
-
export type
|
|
309
|
+
export type Status = string;
|
|
294
310
|
/**
|
|
295
311
|
*
|
|
296
|
-
* The
|
|
312
|
+
* The message to sign.
|
|
297
313
|
*
|
|
298
314
|
*/
|
|
299
|
-
export type
|
|
315
|
+
export type Message = string;
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* The origin (dApp URL) that initiated this transaction request.
|
|
319
|
+
*
|
|
320
|
+
*/
|
|
321
|
+
export type Origin = string;
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* The timestamp when the transaction was created.
|
|
325
|
+
*
|
|
326
|
+
*/
|
|
327
|
+
export type CreatedAt = string;
|
|
328
|
+
/**
|
|
329
|
+
*
|
|
330
|
+
* The timestamp when the transaction was signed.
|
|
331
|
+
*
|
|
332
|
+
*/
|
|
333
|
+
export type SignedAt = string;
|
|
334
|
+
export interface MessageRaw {
|
|
335
|
+
id: MessageId;
|
|
336
|
+
status: Status;
|
|
337
|
+
partyId: PartyId;
|
|
338
|
+
publicKey: PublicKey;
|
|
339
|
+
message: Message;
|
|
340
|
+
origin?: Origin;
|
|
341
|
+
createdAt: CreatedAt;
|
|
342
|
+
signedAt?: SignedAt;
|
|
343
|
+
signature?: Signature;
|
|
344
|
+
}
|
|
345
|
+
export type Messages = MessageRaw[];
|
|
346
|
+
/**
|
|
347
|
+
*
|
|
348
|
+
* The access token for the session.
|
|
349
|
+
*
|
|
350
|
+
*/
|
|
351
|
+
export type AccessToken = string;
|
|
300
352
|
export type UserLevelRight = any;
|
|
301
353
|
/**
|
|
302
354
|
*
|
|
@@ -319,18 +371,6 @@ export type Sessions = Session[];
|
|
|
319
371
|
*
|
|
320
372
|
*/
|
|
321
373
|
export type CommandId = string;
|
|
322
|
-
/**
|
|
323
|
-
*
|
|
324
|
-
* The timestamp when the transaction was created.
|
|
325
|
-
*
|
|
326
|
-
*/
|
|
327
|
-
export type CreatedAt = string;
|
|
328
|
-
/**
|
|
329
|
-
*
|
|
330
|
-
* The timestamp when the transaction was signed.
|
|
331
|
-
*
|
|
332
|
-
*/
|
|
333
|
-
export type SignedAt = string;
|
|
334
374
|
/**
|
|
335
375
|
*
|
|
336
376
|
* The transaction data corresponding to the command ID.
|
|
@@ -349,12 +389,6 @@ export type PreparedTransactionHash = string;
|
|
|
349
389
|
*
|
|
350
390
|
*/
|
|
351
391
|
export type Payload = string;
|
|
352
|
-
/**
|
|
353
|
-
*
|
|
354
|
-
* The origin (dApp URL) that initiated this transaction request.
|
|
355
|
-
*
|
|
356
|
-
*/
|
|
357
|
-
export type Origin = string;
|
|
358
392
|
export interface Transaction {
|
|
359
393
|
id: TransactionId;
|
|
360
394
|
commandId: CommandId;
|
|
@@ -413,6 +447,16 @@ export interface SignParams {
|
|
|
413
447
|
transactionId: TransactionId;
|
|
414
448
|
partyId: PartyId;
|
|
415
449
|
}
|
|
450
|
+
export interface SignMessageParams {
|
|
451
|
+
messageId: MessageId;
|
|
452
|
+
partyId?: PartyId;
|
|
453
|
+
}
|
|
454
|
+
export interface GetMessageToSignParams {
|
|
455
|
+
messageId: MessageId;
|
|
456
|
+
}
|
|
457
|
+
export interface DeleteMessageToSignParams {
|
|
458
|
+
messageId: MessageId;
|
|
459
|
+
}
|
|
416
460
|
export interface ExecuteParams {
|
|
417
461
|
signature: Signature;
|
|
418
462
|
partyId: PartyId;
|
|
@@ -469,6 +513,16 @@ export interface IsWalletSyncNeededResult {
|
|
|
469
513
|
walletSyncNeeded: WalletSyncNeeded;
|
|
470
514
|
}
|
|
471
515
|
export type SignResult = SignResultSigned | SignResultPending | SignResultRejected | SignResultFailed;
|
|
516
|
+
export interface SignMessageResult {
|
|
517
|
+
signature: Signature;
|
|
518
|
+
publicKey: PublicKey;
|
|
519
|
+
}
|
|
520
|
+
export interface GetMessageToSignResult {
|
|
521
|
+
message: MessageRaw;
|
|
522
|
+
}
|
|
523
|
+
export interface ListMessagesToSignResult {
|
|
524
|
+
messages: Messages;
|
|
525
|
+
}
|
|
472
526
|
export interface ExecuteResult {
|
|
473
527
|
[key: string]: any;
|
|
474
528
|
}
|
|
@@ -527,6 +581,10 @@ export type ListWallets = (params: ListWalletsParams) => Promise<ListWalletsResu
|
|
|
527
581
|
export type SyncWallets = () => Promise<SyncWalletsResult>;
|
|
528
582
|
export type IsWalletSyncNeeded = () => Promise<IsWalletSyncNeededResult>;
|
|
529
583
|
export type Sign = (params: SignParams) => Promise<SignResult>;
|
|
584
|
+
export type SignMessage = (params: SignMessageParams) => Promise<SignMessageResult>;
|
|
585
|
+
export type GetMessageToSign = (params: GetMessageToSignParams) => Promise<GetMessageToSignResult>;
|
|
586
|
+
export type ListMessagesToSign = () => Promise<ListMessagesToSignResult>;
|
|
587
|
+
export type DeleteMessageToSign = (params: DeleteMessageToSignParams) => Promise<Null>;
|
|
530
588
|
export type Execute = (params: ExecuteParams) => Promise<ExecuteResult>;
|
|
531
589
|
export type AddSession = (params: AddSessionParams) => Promise<AddSessionResult>;
|
|
532
590
|
export type RemoveSession = () => Promise<Null>;
|
|
@@ -594,6 +652,22 @@ export type RpcTypes = {
|
|
|
594
652
|
params: Params<Sign>;
|
|
595
653
|
result: Result<Sign>;
|
|
596
654
|
};
|
|
655
|
+
signMessage: {
|
|
656
|
+
params: Params<SignMessage>;
|
|
657
|
+
result: Result<SignMessage>;
|
|
658
|
+
};
|
|
659
|
+
getMessageToSign: {
|
|
660
|
+
params: Params<GetMessageToSign>;
|
|
661
|
+
result: Result<GetMessageToSign>;
|
|
662
|
+
};
|
|
663
|
+
listMessagesToSign: {
|
|
664
|
+
params: Params<ListMessagesToSign>;
|
|
665
|
+
result: Result<ListMessagesToSign>;
|
|
666
|
+
};
|
|
667
|
+
deleteMessageToSign: {
|
|
668
|
+
params: Params<DeleteMessageToSign>;
|
|
669
|
+
result: Result<DeleteMessageToSign>;
|
|
670
|
+
};
|
|
597
671
|
execute: {
|
|
598
672
|
params: Params<Execute>;
|
|
599
673
|
result: Result<Execute>;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAkB,MAAM,4BAA4B,CAAA;AACxE,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAA;AAGjE;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B;;;;GAIG;AACH,MAAM,MAAM,IAAI,GAAG,MAAM,CAAA;AACzB;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAA;AAChC;;;;GAIG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAA;AACnC;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,GAAG,MAAM,CAAA;AACvC,MAAM,MAAM,MAAM,GAAG,MAAM,CAAA;AAC3B,MAAM,MAAM,KAAK,GAAG,MAAM,CAAA;AAC1B,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAA;AAC7B,MAAM,MAAM,YAAY,GAAG,MAAM,CAAA;AACjC;;;;GAIG;AACH,MAAM,MAAM,MAAM,GAAG,MAAM,CAAA;AAC3B,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAA;AAC7B;;;;GAIG;AACH,MAAM,WAAW,IAAI;IACjB,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,KAAK,CAAA;IACZ,QAAQ,EAAE,QAAQ,CAAA;IAClB,YAAY,CAAC,EAAE,YAAY,CAAA;IAC3B,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,QAAQ,CAAA;CACrB;AACD;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B;;;;GAIG;AACH,MAAM,WAAW,OAAO;IACpB,EAAE,EAAE,SAAS,CAAA;IACb,IAAI,EAAE,IAAI,CAAA;IACV,WAAW,EAAE,WAAW,CAAA;IACxB,cAAc,CAAC,EAAE,cAAc,CAAA;IAC/B,kBAAkB,EAAE,kBAAkB,CAAA;IACtC,IAAI,EAAE,IAAI,CAAA;IACV,SAAS,CAAC,EAAE,IAAI,CAAA;IAChB,SAAS,EAAE,SAAS,CAAA;CACvB;AACD;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAA;AAChC;;;;GAIG;AACH,MAAM,MAAM,EAAE,GAAG,MAAM,CAAA;AACvB;;;;GAIG;AACH,MAAM,MAAM,IAAI,GAAG,GAAG,CAAA;AACtB;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B;;;;GAIG;AACH,MAAM,WAAW,GAAG;IAChB,EAAE,EAAE,EAAE,CAAA;IACN,IAAI,EAAE,IAAI,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,SAAS,CAAA;CACxB;AACD;;;;GAIG;AACH,MAAM,MAAM,OAAO,GAAG,OAAO,CAAA;AAC7B;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAA;AACtC,MAAM,MAAM,OAAO,GAAG,MAAM,CAAA;AAC5B;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAAG,SAAS,EAAE,CAAA;AACpC;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,EAAE,CAAA;AACpD;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,kBAAkB,CAAC,EAAE,kBAAkB,CAAA;CAC1C;AACD;;;;GAIG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,CAAA;AAClC,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAA;AAC7B,MAAM,MAAM,QAAQ,GAAG,OAAO,EAAE,CAAA;AAChC,MAAM,MAAM,IAAI,GAAG,GAAG,EAAE,CAAA;AACxB;;;;GAIG;AACH,MAAM,MAAM,YAAY,GAAG,aAAa,GAAG,WAAW,GAAG,SAAS,CAAA;AAClE;;;;GAIG;AACH,MAAM,MAAM,IAAI,GAAG,MAAM,CAAA;AACzB;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B;;;;GAIG;AACH,MAAM,MAAM,YAAY,GAAG,MAAM,CAAA;AACjC;;;;GAIG;AACH,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAA;AACzC;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,OAAO,CAAA;AAC9B;;;;GAIG;AACH,MAAM,MAAM,MAAM,GAAG,MAAM,CAAA;AAC3B,MAAM,MAAM,eAAe,GAAG,GAAG,CAAA;AACjC;;;;GAIG;AACH,MAAM,MAAM,MAAM,GAAG,cAAc,EAAE,CAAA;AACrC;;;;GAIG;AACH,MAAM,WAAW,MAAM;IACnB,OAAO,EAAE,OAAO,CAAA;IAChB,OAAO,EAAE,OAAO,CAAA;IAChB,MAAM,EAAE,YAAY,CAAA;IACpB,IAAI,EAAE,IAAI,CAAA;IACV,SAAS,EAAE,SAAS,CAAA;IACpB,SAAS,EAAE,SAAS,CAAA;IACpB,SAAS,EAAE,SAAS,CAAA;IACpB,iBAAiB,EAAE,iBAAiB,CAAA;IACpC,YAAY,CAAC,EAAE,YAAY,CAAA;IAC3B,oBAAoB,CAAC,EAAE,oBAAoB,CAAA;IAC3C,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,EAAE,MAAM,CAAA;CACjB;AAED;;;;GAIG;AACH,MAAM,MAAM,sBAAsB,GAAG,MAAM,EAAE,CAAA;AAC7C;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAAG,MAAM,EAAE,CAAA;AAC/C;;;;GAIG;AACH,MAAM,MAAM,yBAAyB,GAAG,MAAM,EAAE,CAAA;AAChD;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAA;AACtC,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAA;AACrC,MAAM,WAAW,gBAAgB;IAC7B,MAAM,EAAE,cAAc,CAAA;IACtB,SAAS,EAAE,SAAS,CAAA;IACpB,QAAQ,EAAE,QAAQ,CAAA;IAClB,OAAO,EAAE,OAAO,CAAA;IAChB,YAAY,CAAC,EAAE,YAAY,CAAA;CAC9B;AACD,MAAM,MAAM,eAAe,GAAG,SAAS,CAAA;AACvC,MAAM,WAAW,iBAAiB;IAC9B,MAAM,EAAE,eAAe,CAAA;IACvB,OAAO,EAAE,OAAO,CAAA;IAChB,YAAY,EAAE,YAAY,CAAA;CAC7B;AACD,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAA;AACzC,MAAM,WAAW,kBAAkB;IAC/B,MAAM,EAAE,gBAAgB,CAAA;IACxB,OAAO,EAAE,OAAO,CAAA;IAChB,YAAY,EAAE,YAAY,CAAA;CAC7B;AACD,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAA;AACrC,MAAM,WAAW,gBAAgB;IAC7B,MAAM,EAAE,cAAc,CAAA;IACtB,OAAO,EAAE,OAAO,CAAA;IAChB,YAAY,EAAE,YAAY,CAAA;CAC7B;AACD;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAA;AAChC;;;;GAIG;AACH,MAAM,MAAM,MAAM,GAAG,MAAM,CAAA;AAC3B,MAAM,MAAM,cAAc,GAAG,GAAG,CAAA;AAChC;;;;GAIG;AACH,MAAM,WAAW,OAAO;IACpB,EAAE,EAAE,EAAE,CAAA;IACN,OAAO,EAAE,OAAO,CAAA;IAChB,GAAG,EAAE,GAAG,CAAA;IACR,WAAW,EAAE,WAAW,CAAA;IACxB,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,EAAE,MAAM,CAAA;CACjB;AACD,MAAM,MAAM,QAAQ,GAAG,OAAO,EAAE,CAAA;AAChC;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAA;AAC7B;;;;GAIG;AACH,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAA;AACxC;;;;GAIG;AACH,MAAM,MAAM,uBAAuB,GAAG,MAAM,CAAA;AAC5C;;;;GAIG;AACH,MAAM,MAAM,OAAO,GAAG,MAAM,CAAA;AAC5B;;;;GAIG;AACH,MAAM,MAAM,MAAM,GAAG,MAAM,CAAA;AAC3B,MAAM,WAAW,WAAW;IACxB,EAAE,EAAE,aAAa,CAAA;IACjB,SAAS,EAAE,SAAS,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,mBAAmB,EAAE,mBAAmB,CAAA;IACxC,uBAAuB,EAAE,uBAAuB,CAAA;IAChD,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,YAAY,CAAC,EAAE,YAAY,CAAA;CAC9B;AACD,MAAM,MAAM,YAAY,GAAG,WAAW,EAAE,CAAA;AACxC;;;;GAIG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAA;AACnC;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,CAAA;AACjC,MAAM,WAAW,gBAAgB;IAC7B,OAAO,EAAE,OAAO,CAAA;CACnB;AACD,MAAM,WAAW,mBAAmB;IAChC,WAAW,EAAE,WAAW,CAAA;CAC3B;AACD,MAAM,WAAW,YAAY;IACzB,GAAG,EAAE,GAAG,CAAA;CACX;AACD,MAAM,WAAW,eAAe;IAC5B,kBAAkB,EAAE,kBAAkB,CAAA;CACzC;AACD,MAAM,WAAW,kBAAkB;IAC/B,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,EAAE,SAAS,CAAA;IACpB,iBAAiB,EAAE,iBAAiB,CAAA;CACvC;AACD,MAAM,WAAW,4BAA4B;IACzC,OAAO,EAAE,OAAO,CAAA;CACnB;AACD,MAAM,WAAW,sBAAsB;IACnC,OAAO,EAAE,OAAO,CAAA;CACnB;AACD,MAAM,WAAW,kBAAkB;IAC/B,OAAO,EAAE,OAAO,CAAA;CACnB;AACD,MAAM,WAAW,iBAAiB;IAC9B,MAAM,CAAC,EAAE,YAAY,CAAA;CACxB;AACD,MAAM,WAAW,UAAU;IACvB,aAAa,EAAE,aAAa,CAAA;IAC5B,OAAO,EAAE,OAAO,CAAA;CACnB;AACD,MAAM,WAAW,aAAa;IAC1B,SAAS,EAAE,SAAS,CAAA;IACpB,OAAO,EAAE,OAAO,CAAA;IAChB,aAAa,EAAE,aAAa,CAAA;IAC5B,QAAQ,EAAE,QAAQ,CAAA;CACrB;AACD,MAAM,WAAW,gBAAgB;IAC7B,SAAS,EAAE,SAAS,CAAA;CACvB;AACD,MAAM,WAAW,oBAAoB;IACjC,aAAa,EAAE,aAAa,CAAA;CAC/B;AACD,MAAM,WAAW,uBAAuB;IACpC,aAAa,EAAE,aAAa,CAAA;CAC/B;AACD;;;;GAIG;AACH,MAAM,MAAM,IAAI,GAAG,IAAI,CAAA;AACvB,MAAM,WAAW,kBAAkB;IAC/B,QAAQ,EAAE,QAAQ,CAAA;CACrB;AACD,MAAM,WAAW,cAAc;IAC3B,IAAI,EAAE,IAAI,CAAA;CACb;AACD,MAAM,WAAW,kBAAkB;IAC/B,MAAM,EAAE,MAAM,CAAA;CACjB;AACD,MAAM,WAAW,4BAA4B;IACzC,MAAM,EAAE,MAAM,CAAA;CACjB;AACD,MAAM,WAAW,iBAAiB;IAC9B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CACrB;AACD;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,MAAM,EAAE,CAAA;AACxC;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B,KAAK,EAAE,sBAAsB,CAAA;IAC7B,OAAO,EAAE,wBAAwB,CAAA;IACjC,QAAQ,EAAE,yBAAyB,CAAA;CACtC;AACD,MAAM,WAAW,wBAAwB;IACrC,gBAAgB,EAAE,gBAAgB,CAAA;CACrC;AACD,MAAM,MAAM,UAAU,GAChB,gBAAgB,GAChB,iBAAiB,GACjB,kBAAkB,GAClB,gBAAgB,CAAA;AACtB,MAAM,WAAW,aAAa;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CACrB;AACD;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B,EAAE,EAAE,EAAE,CAAA;IACN,OAAO,EAAE,OAAO,CAAA;IAChB,GAAG,EAAE,GAAG,CAAA;IACR,WAAW,EAAE,WAAW,CAAA;IACxB,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,EAAE,MAAM,CAAA;CACjB;AACD,MAAM,WAAW,kBAAkB;IAC/B,QAAQ,EAAE,QAAQ,CAAA;CACrB;AACD,MAAM,WAAW,oBAAoB;IACjC,EAAE,EAAE,aAAa,CAAA;IACjB,SAAS,EAAE,SAAS,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,mBAAmB,EAAE,mBAAmB,CAAA;IACxC,uBAAuB,EAAE,uBAAuB,CAAA;IAChD,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,YAAY,CAAC,EAAE,YAAY,CAAA;CAC9B;AACD,MAAM,WAAW,sBAAsB;IACnC,YAAY,EAAE,YAAY,CAAA;CAC7B;AACD,MAAM,WAAW,aAAa;IAC1B,MAAM,EAAE,cAAc,CAAA;IACtB,OAAO,EAAE,WAAW,CAAA;CACvB;AACD;;;;GAIG;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,MAAM,EAAE,gBAAgB,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;AACpE,MAAM,MAAM,aAAa,GAAG,CAAC,MAAM,EAAE,mBAAmB,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;AAC1E,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,kBAAkB,CAAC,CAAA;AAC5D,MAAM,MAAM,MAAM,GAAG,CAAC,MAAM,EAAE,YAAY,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;AAC5D,MAAM,MAAM,SAAS,GAAG,CAAC,MAAM,EAAE,eAAe,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;AAClE,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,cAAc,CAAC,CAAA;AACpD,MAAM,MAAM,YAAY,GAAG,CACvB,MAAM,EAAE,kBAAkB,KACzB,OAAO,CAAC,kBAAkB,CAAC,CAAA;AAChC,MAAM,MAAM,sBAAsB,GAAG,CACjC,MAAM,EAAE,4BAA4B,KACnC,OAAO,CAAC,4BAA4B,CAAC,CAAA;AAC1C,MAAM,MAAM,gBAAgB,GAAG,CAAC,MAAM,EAAE,sBAAsB,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;AAChF,MAAM,MAAM,YAAY,GAAG,CACvB,MAAM,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAA;AAC/B,MAAM,MAAM,WAAW,GAAG,CACtB,MAAM,EAAE,iBAAiB,KACxB,OAAO,CAAC,iBAAiB,CAAC,CAAA;AAC/B,MAAM,MAAM,WAAW,GAAG,MAAM,OAAO,CAAC,iBAAiB,CAAC,CAAA;AAC1D,MAAM,MAAM,kBAAkB,GAAG,MAAM,OAAO,CAAC,wBAAwB,CAAC,CAAA;AACxE,MAAM,MAAM,IAAI,GAAG,CAAC,MAAM,EAAE,UAAU,KAAK,OAAO,CAAC,UAAU,CAAC,CAAA;AAC9D,MAAM,MAAM,OAAO,GAAG,CAAC,MAAM,EAAE,aAAa,KAAK,OAAO,CAAC,aAAa,CAAC,CAAA;AACvE,MAAM,MAAM,UAAU,GAAG,CAAC,MAAM,EAAE,gBAAgB,KAAK,OAAO,CAAC,gBAAgB,CAAC,CAAA;AAChF,MAAM,MAAM,aAAa,GAAG,MAAM,OAAO,CAAC,IAAI,CAAC,CAAA;AAC/C,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,kBAAkB,CAAC,CAAA;AAC5D,MAAM,MAAM,cAAc,GAAG,CACzB,MAAM,EAAE,oBAAoB,KAC3B,OAAO,CAAC,oBAAoB,CAAC,CAAA;AAClC,MAAM,MAAM,gBAAgB,GAAG,MAAM,OAAO,CAAC,sBAAsB,CAAC,CAAA;AACpE,MAAM,MAAM,iBAAiB,GAAG,CAC5B,MAAM,EAAE,uBAAuB,KAC9B,OAAO,CAAC,IAAI,CAAC,CAAA;AAClB,MAAM,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,aAAa,CAAC,CAAA;AAGlD,KAAK,MAAM,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC,KAAK,GAAG,GAC9C,CAAC,SAAS,EAAE,GACR,KAAK,GACL,CAAC,CAAC,CAAC,CAAC,GACR,KAAK,CAAA;AACX,KAAK,MAAM,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,CAAA;AAE3E,MAAM,MAAM,QAAQ,GAAG;IACnB,UAAU,EAAE;QACR,MAAM,EAAE,MAAM,CAAC,UAAU,CAAC,CAAA;QAC1B,MAAM,EAAE,MAAM,CAAC,UAAU,CAAC,CAAA;KAC7B,CAAA;IAED,aAAa,EAAE;QACX,MAAM,EAAE,MAAM,CAAC,aAAa,CAAC,CAAA;QAC7B,MAAM,EAAE,MAAM,CAAC,aAAa,CAAC,CAAA;KAChC,CAAA;IAED,YAAY,EAAE;QACV,MAAM,EAAE,MAAM,CAAC,YAAY,CAAC,CAAA;QAC5B,MAAM,EAAE,MAAM,CAAC,YAAY,CAAC,CAAA;KAC/B,CAAA;IAED,MAAM,EAAE;QACJ,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAA;QACtB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAA;KACzB,CAAA;IAED,SAAS,EAAE;QACP,MAAM,EAAE,MAAM,CAAC,SAAS,CAAC,CAAA;QACzB,MAAM,EAAE,MAAM,CAAC,SAAS,CAAC,CAAA;KAC5B,CAAA;IAED,QAAQ,EAAE;QACN,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC,CAAA;QACxB,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC,CAAA;KAC3B,CAAA;IAED,YAAY,EAAE;QACV,MAAM,EAAE,MAAM,CAAC,YAAY,CAAC,CAAA;QAC5B,MAAM,EAAE,MAAM,CAAC,YAAY,CAAC,CAAA;KAC/B,CAAA;IAED,sBAAsB,EAAE;QACpB,MAAM,EAAE,MAAM,CAAC,sBAAsB,CAAC,CAAA;QACtC,MAAM,EAAE,MAAM,CAAC,sBAAsB,CAAC,CAAA;KACzC,CAAA;IAED,gBAAgB,EAAE;QACd,MAAM,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAA;QAChC,MAAM,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAA;KACnC,CAAA;IAED,YAAY,EAAE;QACV,MAAM,EAAE,MAAM,CAAC,YAAY,CAAC,CAAA;QAC5B,MAAM,EAAE,MAAM,CAAC,YAAY,CAAC,CAAA;KAC/B,CAAA;IAED,WAAW,EAAE;QACT,MAAM,EAAE,MAAM,CAAC,WAAW,CAAC,CAAA;QAC3B,MAAM,EAAE,MAAM,CAAC,WAAW,CAAC,CAAA;KAC9B,CAAA;IAED,WAAW,EAAE;QACT,MAAM,EAAE,MAAM,CAAC,WAAW,CAAC,CAAA;QAC3B,MAAM,EAAE,MAAM,CAAC,WAAW,CAAC,CAAA;KAC9B,CAAA;IAED,kBAAkB,EAAE;QAChB,MAAM,EAAE,MAAM,CAAC,kBAAkB,CAAC,CAAA;QAClC,MAAM,EAAE,MAAM,CAAC,kBAAkB,CAAC,CAAA;KACrC,CAAA;IAED,IAAI,EAAE;QACF,MAAM,EAAE,MAAM,CAAC,IAAI,CAAC,CAAA;QACpB,MAAM,EAAE,MAAM,CAAC,IAAI,CAAC,CAAA;KACvB,CAAA;IAED,OAAO,EAAE;QACL,MAAM,EAAE,MAAM,CAAC,OAAO,CAAC,CAAA;QACvB,MAAM,EAAE,MAAM,CAAC,OAAO,CAAC,CAAA;KAC1B,CAAA;IAED,UAAU,EAAE;QACR,MAAM,EAAE,MAAM,CAAC,UAAU,CAAC,CAAA;QAC1B,MAAM,EAAE,MAAM,CAAC,UAAU,CAAC,CAAA;KAC7B,CAAA;IAED,aAAa,EAAE;QACX,MAAM,EAAE,MAAM,CAAC,aAAa,CAAC,CAAA;QAC7B,MAAM,EAAE,MAAM,CAAC,aAAa,CAAC,CAAA;KAChC,CAAA;IAED,YAAY,EAAE;QACV,MAAM,EAAE,MAAM,CAAC,YAAY,CAAC,CAAA;QAC5B,MAAM,EAAE,MAAM,CAAC,YAAY,CAAC,CAAA;KAC/B,CAAA;IAED,cAAc,EAAE;QACZ,MAAM,EAAE,MAAM,CAAC,cAAc,CAAC,CAAA;QAC9B,MAAM,EAAE,MAAM,CAAC,cAAc,CAAC,CAAA;KACjC,CAAA;IAED,gBAAgB,EAAE;QACd,MAAM,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAA;QAChC,MAAM,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAA;KACnC,CAAA;IAED,iBAAiB,EAAE;QACf,MAAM,EAAE,MAAM,CAAC,iBAAiB,CAAC,CAAA;QACjC,MAAM,EAAE,MAAM,CAAC,iBAAiB,CAAC,CAAA;KACpC,CAAA;IAED,OAAO,EAAE;QACL,MAAM,EAAE,MAAM,CAAC,OAAO,CAAC,CAAA;QACvB,MAAM,EAAE,MAAM,CAAC,OAAO,CAAC,CAAA;KAC1B,CAAA;CACJ,CAAA;AAED,qBAAa,oBAAoB;IACtB,SAAS,EAAE,YAAY,CAAA;gBAElB,SAAS,EAAE,YAAY;IAItB,OAAO,CAAC,CAAC,SAAS,MAAM,QAAQ,EACzC,IAAI,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,GAC/B,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC;CAcpC;AACD,eAAe,oBAAoB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;AAyqBO,IAAM,uBAAN,MAA2B;AAAA,EAG9B,YAAY,SAAA,EAAyB;AAFrC,IAAA,aAAA,CAAA,IAAA,EAAO,WAAA,CAAA;AAGH,IAAA,IAAA,CAAK,SAAA,GAAY,SAAA;AAAA,EACrB;AAAA,EAEA,MAAa,QACT,IAAA,EAC8B;AAC9B,IAAA,MAAM,QAAA,GAAW,MAAM,IAAA,CAAK,SAAA,CAAU,OAAO,IAAsB,CAAA;AAEnE,IAAA,IAAI,WAAW,QAAA,EAAU;AACrB,MAAA,MAAM,IAAI,KAAA;AAAA,QACN,gBACI,QAAA,CAAS,KAAA,CAAM,IAAA,GACf,KAAA,GACA,SAAS,KAAA,CAAM;AAAA,OACvB;AAAA,IACJ,CAAA,MAAO;AACH,MAAA,OAAO,QAAA,CAAS,MAAA;AAAA,IACpB;AAAA,EACJ;AACJ;AACA,IAAO,aAAA,GAAQ","file":"index.js","sourcesContent":["// Code generated by @open-rpc/generator DO NOT EDIT.\nimport _ from 'lodash'\n\nimport { RequestArgs, RequestPayload } from '@canton-network/core-types'\nimport { RpcTransport } from '@canton-network/core-rpc-transport'\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n *\n * Network ID\n *\n */\nexport type NetworkId = string\n/**\n *\n * Name of network\n *\n */\nexport type Name = string\n/**\n *\n * Description of network\n *\n */\nexport type Description = string\n/**\n *\n * Synchronizer ID\n *\n */\nexport type SynchronizerId = string\n/**\n *\n * Identity Provider ID\n *\n */\nexport type IdentityProviderId = string\nexport type Method = string\nexport type Scope = string\nexport type ClientId = string\nexport type ClientSecret = string\n/**\n *\n * Issuer of identity provider\n *\n */\nexport type Issuer = string\nexport type Audience = string\n/**\n *\n * Represents the type of auth for a specified network\n *\n */\nexport interface Auth {\n method: Method\n scope: Scope\n clientId: ClientId\n clientSecret?: ClientSecret\n issuer?: Issuer\n audience: Audience\n}\n/**\n *\n * Ledger api url\n *\n */\nexport type LedgerApi = string\n/**\n *\n * Structure representing the Networks\n *\n */\nexport interface Network {\n id: NetworkId\n name: Name\n description: Description\n synchronizerId?: SynchronizerId\n identityProviderId: IdentityProviderId\n auth: Auth\n adminAuth?: Auth\n ledgerApi: LedgerApi\n}\n/**\n *\n * Ledger api url\n *\n */\nexport type NetworkName = string\n/**\n *\n * ID of the identity provider\n *\n */\nexport type Id = string\n/**\n *\n * Type of identity provider (oauth / self_signed)\n *\n */\nexport type Type = any\n/**\n *\n * The configuration URL for the identity provider.\n *\n */\nexport type ConfigUrl = string\n/**\n *\n * Structure representing the Identity Providers\n *\n */\nexport interface Idp {\n id: Id\n type: Type\n issuer: Issuer\n configUrl?: ConfigUrl\n}\n/**\n *\n * Set as primary wallet for dApp usage.\n *\n */\nexport type Primary = boolean\n/**\n *\n * The party hint and name of the wallet.\n *\n */\nexport type PartyHint = string\n/**\n *\n * The signing provider ID the wallet corresponds to.\n *\n */\nexport type SigningProviderId = string\nexport type PartyId = string\n/**\n *\n * Filter wallets by network IDs.\n *\n */\nexport type NetworkIds = NetworkId[]\n/**\n *\n * Filter wallets by signing provider IDs.\n *\n */\nexport type SigningProviderIds = SigningProviderId[]\n/**\n *\n * Filter for the wallets to be returned.\n *\n */\nexport interface WalletFilter {\n networkIds?: NetworkIds\n signingProviderIds?: SigningProviderIds\n}\n/**\n *\n * The internal transaction identifier.\n *\n */\nexport type TransactionId = string\nexport type Signature = string\nexport type SignedBy = string\nexport type Networks = Network[]\nexport type Idps = Idp[]\n/**\n *\n * The status of the wallet.\n *\n */\nexport type WalletStatus = 'initialized' | 'allocated' | 'removed'\n/**\n *\n * The party hint and name of the wallet.\n *\n */\nexport type Hint = string\n/**\n *\n * The public key of the party.\n *\n */\nexport type PublicKey = string\n/**\n *\n * The namespace of the party.\n *\n */\nexport type Namespace = string\n/**\n *\n * External transaction ID from signing provider.\n *\n */\nexport type ExternalTxId = string\n/**\n *\n * The topology transactions\n *\n */\nexport type TopologyTransactions = string\n/**\n *\n * Whether the wallet is disabled. Wallets are disabled when no signing provider matches the party's namespace during sync. Disabled wallets use participant as the default signing provider.\n *\n */\nexport type Disabled = boolean\n/**\n *\n * The reason for the current status.\n *\n */\nexport type Reason = string\nexport type PartyLevelRight = any\n/**\n *\n * The rights of the user for the network.\n *\n */\nexport type Rights = UserLevelRight[]\n/**\n *\n * Structure representing a wallet\n *\n */\nexport interface Wallet {\n primary: Primary\n partyId: PartyId\n status: WalletStatus\n hint: Hint\n publicKey: PublicKey\n namespace: Namespace\n networkId: NetworkId\n signingProviderId: SigningProviderId\n externalTxId?: ExternalTxId\n topologyTransactions?: TopologyTransactions\n disabled?: Disabled\n reason?: Reason\n rights: Rights\n}\ntype AlwaysTrue = any\n/**\n *\n * Non-disabled wallets added in this syncWallets call.\n *\n */\nexport type SyncWalletsResultAdded = Wallet[]\n/**\n *\n * Existing wallets that either got downgraded to status initialized or their rights changed in this syncWallets call.\n *\n */\nexport type SyncWalletsResultUpdated = Wallet[]\n/**\n *\n * Either wallets added in this iteration that are disabled, or existing wallet that were updated to be disabled in this syncWallets call.\n *\n */\nexport type SyncWalletsResultDisabled = Wallet[]\n/**\n *\n * Whether wallet sync is needed. Returns true if there are disabled wallets or parties on the ledger that aren't in the store.\n *\n */\nexport type WalletSyncNeeded = boolean\nexport type TxStatusSigned = 'signed'\nexport interface SignResultSigned {\n status: TxStatusSigned\n signature: Signature\n signedBy: SignedBy\n partyId: PartyId\n externalTxId?: ExternalTxId\n}\nexport type TxStatusPending = 'pending'\nexport interface SignResultPending {\n status: TxStatusPending\n partyId: PartyId\n externalTxId: ExternalTxId\n}\nexport type TxStatusRejected = 'rejected'\nexport interface SignResultRejected {\n status: TxStatusRejected\n partyId: PartyId\n externalTxId: ExternalTxId\n}\nexport type TxStatusFailed = 'failed'\nexport interface SignResultFailed {\n status: TxStatusFailed\n partyId: PartyId\n externalTxId: ExternalTxId\n}\n/**\n *\n * The access token for the session.\n *\n */\nexport type AccessToken = string\n/**\n *\n * The status of the transaction.\n *\n */\nexport type Status = string\nexport type UserLevelRight = any\n/**\n *\n * Structure representing the connected network session\n *\n */\nexport interface Session {\n id: Id\n network: Network\n idp: Idp\n accessToken: AccessToken\n status: Status\n reason?: Reason\n rights: Rights\n}\nexport type Sessions = Session[]\n/**\n *\n * The unique identifier of the command associated with the transaction.\n *\n */\nexport type CommandId = string\n/**\n *\n * The timestamp when the transaction was created.\n *\n */\nexport type CreatedAt = string\n/**\n *\n * The timestamp when the transaction was signed.\n *\n */\nexport type SignedAt = string\n/**\n *\n * The transaction data corresponding to the command ID.\n *\n */\nexport type PreparedTransaction = string\n/**\n *\n * The hash of the prepared transaction.\n *\n */\nexport type PreparedTransactionHash = string\n/**\n *\n * Optional payload associated with the transaction.\n *\n */\nexport type Payload = string\n/**\n *\n * The origin (dApp URL) that initiated this transaction request.\n *\n */\nexport type Origin = string\nexport interface Transaction {\n id: TransactionId\n commandId: CommandId\n status: Status\n createdAt?: CreatedAt\n signedAt?: SignedAt\n preparedTransaction: PreparedTransaction\n preparedTransactionHash: PreparedTransactionHash\n payload?: Payload\n origin?: Origin\n externalTxId?: ExternalTxId\n}\nexport type Transactions = Transaction[]\n/**\n *\n * The unique identifier of the current user.\n *\n */\nexport type UserIdentifier = string\n/**\n *\n * Whether the current user is an admin.\n *\n */\nexport type IsAdminFlag = boolean\nexport interface AddNetworkParams {\n network: Network\n}\nexport interface RemoveNetworkParams {\n networkName: NetworkName\n}\nexport interface AddIdpParams {\n idp: Idp\n}\nexport interface RemoveIdpParams {\n identityProviderId: IdentityProviderId\n}\nexport interface CreateWalletParams {\n primary?: Primary\n partyHint: PartyHint\n signingProviderId: SigningProviderId\n}\nexport interface AllocatePartyForWalletParams {\n partyId: PartyId\n}\nexport interface SetPrimaryWalletParams {\n partyId: PartyId\n}\nexport interface RemoveWalletParams {\n partyId: PartyId\n}\nexport interface ListWalletsParams {\n filter?: WalletFilter\n}\nexport interface SignParams {\n transactionId: TransactionId\n partyId: PartyId\n}\nexport interface ExecuteParams {\n signature: Signature\n partyId: PartyId\n transactionId: TransactionId\n signedBy: SignedBy\n}\nexport interface AddSessionParams {\n networkId: NetworkId\n}\nexport interface GetTransactionParams {\n transactionId: TransactionId\n}\nexport interface DeleteTransactionParams {\n transactionId: TransactionId\n}\n/**\n *\n * Represents a null value, used in responses where no data is returned.\n *\n */\nexport type Null = null\nexport interface ListNetworksResult {\n networks: Networks\n}\nexport interface ListIdpsResult {\n idps: Idps\n}\nexport interface CreateWalletResult {\n wallet: Wallet\n}\nexport interface AllocatePartyForWalletResult {\n wallet: Wallet\n}\nexport interface RemovePartyResult {\n [key: string]: any\n}\n/**\n *\n * An array of wallets that match the filter criteria.\n *\n */\nexport type ListWalletsResult = Wallet[]\n/**\n *\n * Added, updated and disabled wallets as a result of the sync.\n *\n */\nexport interface SyncWalletsResult {\n added: SyncWalletsResultAdded\n updated: SyncWalletsResultUpdated\n disabled: SyncWalletsResultDisabled\n}\nexport interface IsWalletSyncNeededResult {\n walletSyncNeeded: WalletSyncNeeded\n}\nexport type SignResult =\n | SignResultSigned\n | SignResultPending\n | SignResultRejected\n | SignResultFailed\nexport interface ExecuteResult {\n [key: string]: any\n}\n/**\n *\n * Structure representing the connected network session\n *\n */\nexport interface AddSessionResult {\n id: Id\n network: Network\n idp: Idp\n accessToken: AccessToken\n status: Status\n reason?: Reason\n rights: Rights\n}\nexport interface ListSessionsResult {\n sessions: Sessions\n}\nexport interface GetTransactionResult {\n id: TransactionId\n commandId: CommandId\n status: Status\n createdAt?: CreatedAt\n signedAt?: SignedAt\n preparedTransaction: PreparedTransaction\n preparedTransactionHash: PreparedTransactionHash\n payload?: Payload\n origin?: Origin\n externalTxId?: ExternalTxId\n}\nexport interface ListTransactionsResult {\n transactions: Transactions\n}\nexport interface GetUserResult {\n userId: UserIdentifier\n isAdmin: IsAdminFlag\n}\n/**\n *\n * Generated! Represents an alias to any of the provided schemas\n *\n */\n\nexport type AddNetwork = (params: AddNetworkParams) => Promise<Null>\nexport type RemoveNetwork = (params: RemoveNetworkParams) => Promise<Null>\nexport type ListNetworks = () => Promise<ListNetworksResult>\nexport type AddIdp = (params: AddIdpParams) => Promise<Null>\nexport type RemoveIdp = (params: RemoveIdpParams) => Promise<Null>\nexport type ListIdps = () => Promise<ListIdpsResult>\nexport type CreateWallet = (\n params: CreateWalletParams\n) => Promise<CreateWalletResult>\nexport type AllocatePartyForWallet = (\n params: AllocatePartyForWalletParams\n) => Promise<AllocatePartyForWalletResult>\nexport type SetPrimaryWallet = (params: SetPrimaryWalletParams) => Promise<Null>\nexport type RemoveWallet = (\n params: RemoveWalletParams\n) => Promise<RemovePartyResult>\nexport type ListWallets = (\n params: ListWalletsParams\n) => Promise<ListWalletsResult>\nexport type SyncWallets = () => Promise<SyncWalletsResult>\nexport type IsWalletSyncNeeded = () => Promise<IsWalletSyncNeededResult>\nexport type Sign = (params: SignParams) => Promise<SignResult>\nexport type Execute = (params: ExecuteParams) => Promise<ExecuteResult>\nexport type AddSession = (params: AddSessionParams) => Promise<AddSessionResult>\nexport type RemoveSession = () => Promise<Null>\nexport type ListSessions = () => Promise<ListSessionsResult>\nexport type GetTransaction = (\n params: GetTransactionParams\n) => Promise<GetTransactionResult>\nexport type ListTransactions = () => Promise<ListTransactionsResult>\nexport type DeleteTransaction = (\n params: DeleteTransactionParams\n) => Promise<Null>\nexport type GetUser = () => Promise<GetUserResult>\n/* eslint-enable @typescript-eslint/no-unused-vars */\n\ntype Params<T> = T extends (...args: infer A) => any\n ? A extends []\n ? never\n : A[0]\n : never\ntype Result<T> = T extends (...args: any[]) => Promise<infer R> ? R : never\n\nexport type RpcTypes = {\n addNetwork: {\n params: Params<AddNetwork>\n result: Result<AddNetwork>\n }\n\n removeNetwork: {\n params: Params<RemoveNetwork>\n result: Result<RemoveNetwork>\n }\n\n listNetworks: {\n params: Params<ListNetworks>\n result: Result<ListNetworks>\n }\n\n addIdp: {\n params: Params<AddIdp>\n result: Result<AddIdp>\n }\n\n removeIdp: {\n params: Params<RemoveIdp>\n result: Result<RemoveIdp>\n }\n\n listIdps: {\n params: Params<ListIdps>\n result: Result<ListIdps>\n }\n\n createWallet: {\n params: Params<CreateWallet>\n result: Result<CreateWallet>\n }\n\n allocatePartyForWallet: {\n params: Params<AllocatePartyForWallet>\n result: Result<AllocatePartyForWallet>\n }\n\n setPrimaryWallet: {\n params: Params<SetPrimaryWallet>\n result: Result<SetPrimaryWallet>\n }\n\n removeWallet: {\n params: Params<RemoveWallet>\n result: Result<RemoveWallet>\n }\n\n listWallets: {\n params: Params<ListWallets>\n result: Result<ListWallets>\n }\n\n syncWallets: {\n params: Params<SyncWallets>\n result: Result<SyncWallets>\n }\n\n isWalletSyncNeeded: {\n params: Params<IsWalletSyncNeeded>\n result: Result<IsWalletSyncNeeded>\n }\n\n sign: {\n params: Params<Sign>\n result: Result<Sign>\n }\n\n execute: {\n params: Params<Execute>\n result: Result<Execute>\n }\n\n addSession: {\n params: Params<AddSession>\n result: Result<AddSession>\n }\n\n removeSession: {\n params: Params<RemoveSession>\n result: Result<RemoveSession>\n }\n\n listSessions: {\n params: Params<ListSessions>\n result: Result<ListSessions>\n }\n\n getTransaction: {\n params: Params<GetTransaction>\n result: Result<GetTransaction>\n }\n\n listTransactions: {\n params: Params<ListTransactions>\n result: Result<ListTransactions>\n }\n\n deleteTransaction: {\n params: Params<DeleteTransaction>\n result: Result<DeleteTransaction>\n }\n\n getUser: {\n params: Params<GetUser>\n result: Result<GetUser>\n }\n}\n\nexport class WalletJSONRPCUserAPI {\n public transport: RpcTransport\n\n constructor(transport: RpcTransport) {\n this.transport = transport\n }\n\n public async request<M extends keyof RpcTypes>(\n args: RequestArgs<RpcTypes, M>\n ): Promise<RpcTypes[M]['result']> {\n const response = await this.transport.submit(args as RequestPayload)\n\n if ('error' in response) {\n throw new Error(\n 'RPC error: ' +\n response.error.code +\n ' - ' +\n response.error.message\n )\n } else {\n return response.result as RpcTypes[M]['result']\n }\n }\n}\nexport default WalletJSONRPCUserAPI\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;AA6vBO,IAAM,uBAAN,MAA2B;AAAA,EAG9B,YAAY,SAAA,EAAyB;AAFrC,IAAA,aAAA,CAAA,IAAA,EAAO,WAAA,CAAA;AAGH,IAAA,IAAA,CAAK,SAAA,GAAY,SAAA;AAAA,EACrB;AAAA,EAEA,MAAa,QACT,IAAA,EAC8B;AAC9B,IAAA,MAAM,QAAA,GAAW,MAAM,IAAA,CAAK,SAAA,CAAU,OAAO,IAAsB,CAAA;AAEnE,IAAA,IAAI,WAAW,QAAA,EAAU;AACrB,MAAA,MAAM,IAAI,KAAA;AAAA,QACN,gBACI,QAAA,CAAS,KAAA,CAAM,IAAA,GACf,KAAA,GACA,SAAS,KAAA,CAAM;AAAA,OACvB;AAAA,IACJ,CAAA,MAAO;AACH,MAAA,OAAO,QAAA,CAAS,MAAA;AAAA,IACpB;AAAA,EACJ;AACJ;AACA,IAAO,aAAA,GAAQ","file":"index.js","sourcesContent":["// Code generated by @open-rpc/generator DO NOT EDIT.\nimport _ from 'lodash'\n\nimport { RequestArgs, RequestPayload } from '@canton-network/core-types'\nimport { RpcTransport } from '@canton-network/core-rpc-transport'\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n *\n * Network ID\n *\n */\nexport type NetworkId = string\n/**\n *\n * Name of network\n *\n */\nexport type Name = string\n/**\n *\n * Description of network\n *\n */\nexport type Description = string\n/**\n *\n * Synchronizer ID\n *\n */\nexport type SynchronizerId = string\n/**\n *\n * Identity Provider ID\n *\n */\nexport type IdentityProviderId = string\nexport type Method = string\nexport type Scope = string\nexport type ClientId = string\nexport type ClientSecret = string\n/**\n *\n * Issuer of identity provider\n *\n */\nexport type Issuer = string\nexport type Audience = string\n/**\n *\n * Represents the type of auth for a specified network\n *\n */\nexport interface Auth {\n method: Method\n scope: Scope\n clientId: ClientId\n clientSecret?: ClientSecret\n issuer?: Issuer\n audience: Audience\n}\n/**\n *\n * Ledger api url\n *\n */\nexport type LedgerApi = string\n/**\n *\n * Structure representing the Networks\n *\n */\nexport interface Network {\n id: NetworkId\n name: Name\n description: Description\n synchronizerId?: SynchronizerId\n identityProviderId: IdentityProviderId\n auth: Auth\n adminAuth?: Auth\n ledgerApi: LedgerApi\n}\n/**\n *\n * Ledger api url\n *\n */\nexport type NetworkName = string\n/**\n *\n * ID of the identity provider\n *\n */\nexport type Id = string\n/**\n *\n * Type of identity provider (oauth / self_signed)\n *\n */\nexport type Type = any\n/**\n *\n * The configuration URL for the identity provider.\n *\n */\nexport type ConfigUrl = string\n/**\n *\n * Structure representing the Identity Providers\n *\n */\nexport interface Idp {\n id: Id\n type: Type\n issuer: Issuer\n configUrl?: ConfigUrl\n}\n/**\n *\n * Set as primary wallet for dApp usage.\n *\n */\nexport type Primary = boolean\n/**\n *\n * The party hint and name of the wallet.\n *\n */\nexport type PartyHint = string\n/**\n *\n * The signing provider ID the wallet corresponds to.\n *\n */\nexport type SigningProviderId = string\n/**\n *\n * The party id of the wallet to be removed.\n *\n */\nexport type PartyId = string\n/**\n *\n * Filter wallets by network IDs.\n *\n */\nexport type NetworkIds = NetworkId[]\n/**\n *\n * Filter wallets by signing provider IDs.\n *\n */\nexport type SigningProviderIds = SigningProviderId[]\n/**\n *\n * Filter for the wallets to be returned.\n *\n */\nexport interface WalletFilter {\n networkIds?: NetworkIds\n signingProviderIds?: SigningProviderIds\n}\n/**\n *\n * The internal transaction identifier.\n *\n */\nexport type TransactionId = string\n/**\n *\n * The internal identifier of the pending message-signing request.\n *\n */\nexport type MessageId = string\n/**\n *\n * The signature of the message.\n *\n */\nexport type Signature = string\nexport type SignedBy = string\nexport type Networks = Network[]\nexport type Idps = Idp[]\n/**\n *\n * The status of the wallet.\n *\n */\nexport type WalletStatus = 'initialized' | 'allocated' | 'removed'\n/**\n *\n * The party hint and name of the wallet.\n *\n */\nexport type Hint = string\n/**\n *\n * The public key of the party.\n *\n */\nexport type PublicKey = string\n/**\n *\n * The namespace of the party.\n *\n */\nexport type Namespace = string\n/**\n *\n * External transaction ID from signing provider.\n *\n */\nexport type ExternalTxId = string\n/**\n *\n * The topology transactions\n *\n */\nexport type TopologyTransactions = string\n/**\n *\n * Whether the wallet is disabled. Wallets are disabled when no signing provider matches the party's namespace during sync. Disabled wallets use participant as the default signing provider.\n *\n */\nexport type Disabled = boolean\n/**\n *\n * The reason for the current status.\n *\n */\nexport type Reason = string\nexport type PartyLevelRight = any\n/**\n *\n * The rights of the user for the network.\n *\n */\nexport type Rights = UserLevelRight[]\n/**\n *\n * Structure representing a wallet\n *\n */\nexport interface Wallet {\n primary: Primary\n partyId: PartyId\n status: WalletStatus\n hint: Hint\n publicKey: PublicKey\n namespace: Namespace\n networkId: NetworkId\n signingProviderId: SigningProviderId\n externalTxId?: ExternalTxId\n topologyTransactions?: TopologyTransactions\n disabled?: Disabled\n reason?: Reason\n rights: Rights\n}\ntype AlwaysTrue = any\n/**\n *\n * Non-disabled wallets added in this syncWallets call.\n *\n */\nexport type SyncWalletsResultAdded = Wallet[]\n/**\n *\n * Existing wallets that either got downgraded to status initialized or their rights changed in this syncWallets call.\n *\n */\nexport type SyncWalletsResultUpdated = Wallet[]\n/**\n *\n * Either wallets added in this iteration that are disabled, or existing wallet that were updated to be disabled in this syncWallets call.\n *\n */\nexport type SyncWalletsResultDisabled = Wallet[]\n/**\n *\n * Whether wallet sync is needed. Returns true if there are disabled wallets or parties on the ledger that aren't in the store.\n *\n */\nexport type WalletSyncNeeded = boolean\nexport type TxStatusSigned = 'signed'\nexport interface SignResultSigned {\n status: TxStatusSigned\n signature: Signature\n signedBy: SignedBy\n partyId: PartyId\n externalTxId?: ExternalTxId\n}\nexport type TxStatusPending = 'pending'\nexport interface SignResultPending {\n status: TxStatusPending\n partyId: PartyId\n externalTxId: ExternalTxId\n}\nexport type TxStatusRejected = 'rejected'\nexport interface SignResultRejected {\n status: TxStatusRejected\n partyId: PartyId\n externalTxId: ExternalTxId\n}\nexport type TxStatusFailed = 'failed'\nexport interface SignResultFailed {\n status: TxStatusFailed\n partyId: PartyId\n externalTxId: ExternalTxId\n}\n/**\n *\n * The status of the transaction.\n *\n */\nexport type Status = string\n/**\n *\n * The message to sign.\n *\n */\nexport type Message = string\n/**\n *\n * The origin (dApp URL) that initiated this transaction request.\n *\n */\nexport type Origin = string\n/**\n *\n * The timestamp when the transaction was created.\n *\n */\nexport type CreatedAt = string\n/**\n *\n * The timestamp when the transaction was signed.\n *\n */\nexport type SignedAt = string\nexport interface MessageRaw {\n id: MessageId\n status: Status\n partyId: PartyId\n publicKey: PublicKey\n message: Message\n origin?: Origin\n createdAt: CreatedAt\n signedAt?: SignedAt\n signature?: Signature\n}\nexport type Messages = MessageRaw[]\n/**\n *\n * The access token for the session.\n *\n */\nexport type AccessToken = string\nexport type UserLevelRight = any\n/**\n *\n * Structure representing the connected network session\n *\n */\nexport interface Session {\n id: Id\n network: Network\n idp: Idp\n accessToken: AccessToken\n status: Status\n reason?: Reason\n rights: Rights\n}\nexport type Sessions = Session[]\n/**\n *\n * The unique identifier of the command associated with the transaction.\n *\n */\nexport type CommandId = string\n/**\n *\n * The transaction data corresponding to the command ID.\n *\n */\nexport type PreparedTransaction = string\n/**\n *\n * The hash of the prepared transaction.\n *\n */\nexport type PreparedTransactionHash = string\n/**\n *\n * Optional payload associated with the transaction.\n *\n */\nexport type Payload = string\nexport interface Transaction {\n id: TransactionId\n commandId: CommandId\n status: Status\n createdAt?: CreatedAt\n signedAt?: SignedAt\n preparedTransaction: PreparedTransaction\n preparedTransactionHash: PreparedTransactionHash\n payload?: Payload\n origin?: Origin\n externalTxId?: ExternalTxId\n}\nexport type Transactions = Transaction[]\n/**\n *\n * The unique identifier of the current user.\n *\n */\nexport type UserIdentifier = string\n/**\n *\n * Whether the current user is an admin.\n *\n */\nexport type IsAdminFlag = boolean\nexport interface AddNetworkParams {\n network: Network\n}\nexport interface RemoveNetworkParams {\n networkName: NetworkName\n}\nexport interface AddIdpParams {\n idp: Idp\n}\nexport interface RemoveIdpParams {\n identityProviderId: IdentityProviderId\n}\nexport interface CreateWalletParams {\n primary?: Primary\n partyHint: PartyHint\n signingProviderId: SigningProviderId\n}\nexport interface AllocatePartyForWalletParams {\n partyId: PartyId\n}\nexport interface SetPrimaryWalletParams {\n partyId: PartyId\n}\nexport interface RemoveWalletParams {\n partyId: PartyId\n}\nexport interface ListWalletsParams {\n filter?: WalletFilter\n}\nexport interface SignParams {\n transactionId: TransactionId\n partyId: PartyId\n}\nexport interface SignMessageParams {\n messageId: MessageId\n partyId?: PartyId\n}\nexport interface GetMessageToSignParams {\n messageId: MessageId\n}\nexport interface DeleteMessageToSignParams {\n messageId: MessageId\n}\nexport interface ExecuteParams {\n signature: Signature\n partyId: PartyId\n transactionId: TransactionId\n signedBy: SignedBy\n}\nexport interface AddSessionParams {\n networkId: NetworkId\n}\nexport interface GetTransactionParams {\n transactionId: TransactionId\n}\nexport interface DeleteTransactionParams {\n transactionId: TransactionId\n}\n/**\n *\n * Represents a null value, used in responses where no data is returned.\n *\n */\nexport type Null = null\nexport interface ListNetworksResult {\n networks: Networks\n}\nexport interface ListIdpsResult {\n idps: Idps\n}\nexport interface CreateWalletResult {\n wallet: Wallet\n}\nexport interface AllocatePartyForWalletResult {\n wallet: Wallet\n}\nexport interface RemovePartyResult {\n [key: string]: any\n}\n/**\n *\n * An array of wallets that match the filter criteria.\n *\n */\nexport type ListWalletsResult = Wallet[]\n/**\n *\n * Added, updated and disabled wallets as a result of the sync.\n *\n */\nexport interface SyncWalletsResult {\n added: SyncWalletsResultAdded\n updated: SyncWalletsResultUpdated\n disabled: SyncWalletsResultDisabled\n}\nexport interface IsWalletSyncNeededResult {\n walletSyncNeeded: WalletSyncNeeded\n}\nexport type SignResult =\n | SignResultSigned\n | SignResultPending\n | SignResultRejected\n | SignResultFailed\nexport interface SignMessageResult {\n signature: Signature\n publicKey: PublicKey\n}\nexport interface GetMessageToSignResult {\n message: MessageRaw\n}\nexport interface ListMessagesToSignResult {\n messages: Messages\n}\nexport interface ExecuteResult {\n [key: string]: any\n}\n/**\n *\n * Structure representing the connected network session\n *\n */\nexport interface AddSessionResult {\n id: Id\n network: Network\n idp: Idp\n accessToken: AccessToken\n status: Status\n reason?: Reason\n rights: Rights\n}\nexport interface ListSessionsResult {\n sessions: Sessions\n}\nexport interface GetTransactionResult {\n id: TransactionId\n commandId: CommandId\n status: Status\n createdAt?: CreatedAt\n signedAt?: SignedAt\n preparedTransaction: PreparedTransaction\n preparedTransactionHash: PreparedTransactionHash\n payload?: Payload\n origin?: Origin\n externalTxId?: ExternalTxId\n}\nexport interface ListTransactionsResult {\n transactions: Transactions\n}\nexport interface GetUserResult {\n userId: UserIdentifier\n isAdmin: IsAdminFlag\n}\n/**\n *\n * Generated! Represents an alias to any of the provided schemas\n *\n */\n\nexport type AddNetwork = (params: AddNetworkParams) => Promise<Null>\nexport type RemoveNetwork = (params: RemoveNetworkParams) => Promise<Null>\nexport type ListNetworks = () => Promise<ListNetworksResult>\nexport type AddIdp = (params: AddIdpParams) => Promise<Null>\nexport type RemoveIdp = (params: RemoveIdpParams) => Promise<Null>\nexport type ListIdps = () => Promise<ListIdpsResult>\nexport type CreateWallet = (\n params: CreateWalletParams\n) => Promise<CreateWalletResult>\nexport type AllocatePartyForWallet = (\n params: AllocatePartyForWalletParams\n) => Promise<AllocatePartyForWalletResult>\nexport type SetPrimaryWallet = (params: SetPrimaryWalletParams) => Promise<Null>\nexport type RemoveWallet = (\n params: RemoveWalletParams\n) => Promise<RemovePartyResult>\nexport type ListWallets = (\n params: ListWalletsParams\n) => Promise<ListWalletsResult>\nexport type SyncWallets = () => Promise<SyncWalletsResult>\nexport type IsWalletSyncNeeded = () => Promise<IsWalletSyncNeededResult>\nexport type Sign = (params: SignParams) => Promise<SignResult>\nexport type SignMessage = (\n params: SignMessageParams\n) => Promise<SignMessageResult>\nexport type GetMessageToSign = (\n params: GetMessageToSignParams\n) => Promise<GetMessageToSignResult>\nexport type ListMessagesToSign = () => Promise<ListMessagesToSignResult>\nexport type DeleteMessageToSign = (\n params: DeleteMessageToSignParams\n) => Promise<Null>\nexport type Execute = (params: ExecuteParams) => Promise<ExecuteResult>\nexport type AddSession = (params: AddSessionParams) => Promise<AddSessionResult>\nexport type RemoveSession = () => Promise<Null>\nexport type ListSessions = () => Promise<ListSessionsResult>\nexport type GetTransaction = (\n params: GetTransactionParams\n) => Promise<GetTransactionResult>\nexport type ListTransactions = () => Promise<ListTransactionsResult>\nexport type DeleteTransaction = (\n params: DeleteTransactionParams\n) => Promise<Null>\nexport type GetUser = () => Promise<GetUserResult>\n/* eslint-enable @typescript-eslint/no-unused-vars */\n\ntype Params<T> = T extends (...args: infer A) => any\n ? A extends []\n ? never\n : A[0]\n : never\ntype Result<T> = T extends (...args: any[]) => Promise<infer R> ? R : never\n\nexport type RpcTypes = {\n addNetwork: {\n params: Params<AddNetwork>\n result: Result<AddNetwork>\n }\n\n removeNetwork: {\n params: Params<RemoveNetwork>\n result: Result<RemoveNetwork>\n }\n\n listNetworks: {\n params: Params<ListNetworks>\n result: Result<ListNetworks>\n }\n\n addIdp: {\n params: Params<AddIdp>\n result: Result<AddIdp>\n }\n\n removeIdp: {\n params: Params<RemoveIdp>\n result: Result<RemoveIdp>\n }\n\n listIdps: {\n params: Params<ListIdps>\n result: Result<ListIdps>\n }\n\n createWallet: {\n params: Params<CreateWallet>\n result: Result<CreateWallet>\n }\n\n allocatePartyForWallet: {\n params: Params<AllocatePartyForWallet>\n result: Result<AllocatePartyForWallet>\n }\n\n setPrimaryWallet: {\n params: Params<SetPrimaryWallet>\n result: Result<SetPrimaryWallet>\n }\n\n removeWallet: {\n params: Params<RemoveWallet>\n result: Result<RemoveWallet>\n }\n\n listWallets: {\n params: Params<ListWallets>\n result: Result<ListWallets>\n }\n\n syncWallets: {\n params: Params<SyncWallets>\n result: Result<SyncWallets>\n }\n\n isWalletSyncNeeded: {\n params: Params<IsWalletSyncNeeded>\n result: Result<IsWalletSyncNeeded>\n }\n\n sign: {\n params: Params<Sign>\n result: Result<Sign>\n }\n\n signMessage: {\n params: Params<SignMessage>\n result: Result<SignMessage>\n }\n\n getMessageToSign: {\n params: Params<GetMessageToSign>\n result: Result<GetMessageToSign>\n }\n\n listMessagesToSign: {\n params: Params<ListMessagesToSign>\n result: Result<ListMessagesToSign>\n }\n\n deleteMessageToSign: {\n params: Params<DeleteMessageToSign>\n result: Result<DeleteMessageToSign>\n }\n\n execute: {\n params: Params<Execute>\n result: Result<Execute>\n }\n\n addSession: {\n params: Params<AddSession>\n result: Result<AddSession>\n }\n\n removeSession: {\n params: Params<RemoveSession>\n result: Result<RemoveSession>\n }\n\n listSessions: {\n params: Params<ListSessions>\n result: Result<ListSessions>\n }\n\n getTransaction: {\n params: Params<GetTransaction>\n result: Result<GetTransaction>\n }\n\n listTransactions: {\n params: Params<ListTransactions>\n result: Result<ListTransactions>\n }\n\n deleteTransaction: {\n params: Params<DeleteTransaction>\n result: Result<DeleteTransaction>\n }\n\n getUser: {\n params: Params<GetUser>\n result: Result<GetUser>\n }\n}\n\nexport class WalletJSONRPCUserAPI {\n public transport: RpcTransport\n\n constructor(transport: RpcTransport) {\n this.transport = transport\n }\n\n public async request<M extends keyof RpcTypes>(\n args: RequestArgs<RpcTypes, M>\n ): Promise<RpcTypes[M]['result']> {\n const response = await this.transport.submit(args as RequestPayload)\n\n if ('error' in response) {\n throw new Error(\n 'RPC error: ' +\n response.error.code +\n ' - ' +\n response.error.message\n )\n } else {\n return response.result as RpcTypes[M]['result']\n }\n }\n}\nexport default WalletJSONRPCUserAPI\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canton-network/core-wallet-user-rpc-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "TypeScript client generated by OpenRPC",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@canton-network/core-rpc-transport": "^1.
|
|
33
|
-
"@canton-network/core-types": "^1.
|
|
32
|
+
"@canton-network/core-rpc-transport": "^1.3.1",
|
|
33
|
+
"@canton-network/core-types": "^1.3.1",
|
|
34
34
|
"lodash": "^4.18.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/canton-network/wallet
|
|
55
|
+
"url": "git+https://github.com/canton-network/wallet.git",
|
|
56
56
|
"directory": "core/wallet-user-rpc-client"
|
|
57
57
|
}
|
|
58
58
|
}
|