/** * @public * @enum */ export declare const AccessorNetworkType: { readonly ETHEREUM_GOERLI: "ETHEREUM_GOERLI"; readonly ETHEREUM_MAINNET: "ETHEREUM_MAINNET"; readonly ETHEREUM_MAINNET_AND_GOERLI: "ETHEREUM_MAINNET_AND_GOERLI"; readonly POLYGON_MAINNET: "POLYGON_MAINNET"; readonly POLYGON_MUMBAI: "POLYGON_MUMBAI"; }; /** * @public */ export type AccessorNetworkType = (typeof AccessorNetworkType)[keyof typeof AccessorNetworkType]; /** * @public * @enum */ export declare const AccessorStatus: { readonly AVAILABLE: "AVAILABLE"; readonly DELETED: "DELETED"; readonly PENDING_DELETION: "PENDING_DELETION"; }; /** * @public */ export type AccessorStatus = (typeof AccessorStatus)[keyof typeof AccessorStatus]; /** * @public * @enum */ export declare const AccessorType: { readonly BILLING_TOKEN: "BILLING_TOKEN"; }; /** * @public */ export type AccessorType = (typeof AccessorType)[keyof typeof AccessorType]; /** * @public * @enum */ export declare const ThresholdComparator: { readonly GREATER_THAN: "GREATER_THAN"; readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO"; }; /** * @public */ export type ThresholdComparator = (typeof ThresholdComparator)[keyof typeof ThresholdComparator]; /** * @public * @enum */ export declare const Framework: { readonly ETHEREUM: "ETHEREUM"; readonly HYPERLEDGER_FABRIC: "HYPERLEDGER_FABRIC"; }; /** * @public */ export type Framework = (typeof Framework)[keyof typeof Framework]; /** * @public * @enum */ export declare const Edition: { readonly STANDARD: "STANDARD"; readonly STARTER: "STARTER"; }; /** * @public */ export type Edition = (typeof Edition)[keyof typeof Edition]; /** * @public * @enum */ export declare const StateDBType: { readonly CouchDB: "CouchDB"; readonly LevelDB: "LevelDB"; }; /** * @public */ export type StateDBType = (typeof StateDBType)[keyof typeof StateDBType]; /** * @public * @enum */ export declare const MemberStatus: { readonly AVAILABLE: "AVAILABLE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus]; /** * @public * @enum */ export declare const NetworkStatus: { readonly AVAILABLE: "AVAILABLE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; }; /** * @public */ export type NetworkStatus = (typeof NetworkStatus)[keyof typeof NetworkStatus]; /** * @public * @enum */ export declare const NodeStatus: { readonly AVAILABLE: "AVAILABLE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY"; readonly UNHEALTHY: "UNHEALTHY"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type NodeStatus = (typeof NodeStatus)[keyof typeof NodeStatus]; /** * @public * @enum */ export declare const ProposalStatus: { readonly ACTION_FAILED: "ACTION_FAILED"; readonly APPROVED: "APPROVED"; readonly EXPIRED: "EXPIRED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly REJECTED: "REJECTED"; }; /** * @public */ export type ProposalStatus = (typeof ProposalStatus)[keyof typeof ProposalStatus]; /** * @public * @enum */ export declare const InvitationStatus: { readonly ACCEPTED: "ACCEPTED"; readonly ACCEPTING: "ACCEPTING"; readonly EXPIRED: "EXPIRED"; readonly PENDING: "PENDING"; readonly REJECTED: "REJECTED"; }; /** * @public */ export type InvitationStatus = (typeof InvitationStatus)[keyof typeof InvitationStatus]; /** * @public * @enum */ export declare const VoteValue: { readonly NO: "NO"; readonly YES: "YES"; }; /** * @public */ export type VoteValue = (typeof VoteValue)[keyof typeof VoteValue];