123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746 |
- /**
- * @link https://docs.premid.app/dev/presence/class#presencedata-interface
- */
- interface BasePresenceData {
- /**
- * Name to show in activity
- * @example "YouTube"
- * @since 2.6
- */
- name?: string
- /**
- * Type of activity.
- *
- * @example
- * - ActivityType.Playing: "Playing [name]"
- * - ActivityType.Listening: "Listening to [name]"
- * - ActivityType.Watching: "Watching [name]"
- * - ActivityType.Competing: "Competing in [name]"
- *
- * @since 2.6
- */
- type?: ActivityType
- /**
- * Top row of the status
- *
- * Supports:
- *
- * `String`: A string
- *
- * `Node`: An element to use (it will use `.textContent`)
- */
- details?: string | Node | null
- /**
- * Bottom row of the status
- *
- * Supports:
- *
- * `String`: A string
- *
- * `Node`: An element to use (it will use `.textContent`)
- */
- state?: string | Node | null
- /**
- * Timestamp in seconds or milliseconds for the start of the activity.
- * Including this will show time as "elapsed"
- */
- startTimestamp?: number | Date | null
- /**
- * Timestamp in seconds or milliseconds until the end of the activity.
- * Including this will show time as "remaining" and it takes priority over startTimestamp
- */
- endTimestamp?: number | Date | null
- /**
- * Will display as the large profile artwork
- *
- * Supports:
- *
- * `String`: An URL to the image or a base64 encoded image
- *
- * `Blob`: A blob of the image
- *
- * `HTMLImageElement`: An image element to use (it will be converted to a blob)
- */
- largeImageKey?: string | Blob | HTMLImageElement | null
- /**
- * Will display as the small profile artwork
- *
- * Supports:
- *
- * `String`: An URL to the image or a base64 encoded image
- *
- * `Blob`: A blob of the image
- *
- * `HTMLImageElement`: An image element to use (it will be converted to a blob)
- */
- smallImageKey?: string | Blob | HTMLImageElement | null
- /**
- * Tooltip for the largeImageKey
- *
- * Supports:
- *
- * `String`: A string
- *
- * `Node`: An element to use (it will use `.textContent`)
- * @since 2.6
- */
- largeImageText?: string | Node | null
- /**
- * Tooltip for the smallImageKey
- *
- * Supports:
- *
- * `String`: A string
- *
- * `Node`: An element to use (it will use `.textContent`)
- */
- smallImageText?: string | Node | null
- /**
- * Array of buttons, max 2, label is the button text, and url is the link
- */
- buttons?: [ButtonData, ButtonData?]
- }
- interface MediaPresenceData extends BasePresenceData {
- type: ActivityType.Listening | ActivityType.Watching
- largeImageText?: string | Node | null
- }
- interface NonMediaPresenceData extends BasePresenceData {
- type?: Exclude<ActivityType, ActivityType.Listening | ActivityType.Watching>
- largeImageText?: never
- }
- type PresenceData = MediaPresenceData | NonMediaPresenceData
- interface ButtonData {
- /**
- * Text for the button
- *
- * Supports:
- *
- * `String`: A string
- *
- * `Node`: An element to use (it will use `.textContent`)
- */
- label: string | Node | null
- /**
- * URL of button link
- *
- * Supports:
- *
- * `String`: A string
- *
- * `HTMLAnchorElement`: An anchor element to use (it will use `.href`)
- */
- url: string | HTMLAnchorElement | null
- }
- interface PresenceDataFinal {
- state?: string
- details?: string
- startTimestamp?: number | Date
- endTimestamp?: number | Date
- largeImageKey?: string
- smallImageKey?: string
- smallImageText?: string
- buttons?: { label: string, url: string }[]
- }
- interface PresenceDataFull extends PresenceDataFinal {
- largeImageText?: string
- }
- /**
- * Options that change the behavior of the presence
- */
- interface PresenceOptions {
- /**
- * ClientId of Discord application
- * @link https://docs.premid.app/dev/presence/class#clientid
- */
- clientId: string
- /**
- * The `UpdateData` event for both the presence and the iframe
- * will only be fired when the page has fully loaded.
- */
- injectOnComplete?: boolean
- }
- /**
- * Contains basic information about the presece
- * @link https://docs.premid.app/dev/presence/metadata
- */
- interface Metadata {
- /**
- * Should contain Object with name and id of the presence developer.
- *
- * Name is your Discord username without the identifier(#0000).
- *
- * User id can be copied from Discord by enabling developer mode and right-clicking on your profile.
- */
- author: Contributor
- /**
- * Should contain an Array of Objects with each Object having the name and id of the contributor.
- *
- * Name is your Discord username without the identifier(#0000).
- *
- * User id can be copied from Discord by enabling developer mode and right-clicking on your profile.
- */
- contributors?: Contributor[]
- /**
- * The title of the service that this presence supports. The folder name and service name should also be the same.
- */
- service: string
- /**
- * Alternative titles for the service which can be used for searching in the store.
- *
- * Useful for services that have different names in different countries or for services which have spaces in them, you can remove the space in the alternative name for easier searching.
- *
- * Note: This is **NOT** used for tags! Only for alternative names!
- */
- altnames?: string[]
- /**
- * Small description of the service.
- *
- * Your description must have key pair values which indicate the language, and the description in that specific language.
- *
- * Make descriptions with the languages that you know, our translators will make changes to your metadata file.
- *
- * Visit the link for all the language IDs.
- * @link https://api.premid.app/v2/langFile/list
- */
- description: Record<string, string>
- /**
- * URL of the service.
- *
- * Example: `vk.com`
- *
- * This url must match the url of the website as it will be used to detect wherever or not this is the website to inject the script to.
- *
- * This may only be used as an array when there are more than one urls.
- *
- * Note: Do **NOT** add `http://` or `https://` in the url or it will not work.
- */
- url: string | string[]
- /**
- * Version of your presence.
- *
- * Use Sematic Versioning; <MAJOR>.<MINOR>.<PATCH>
- *
- * @link https://semver.org/
- */
- version: string
- /**
- * Link to service's logo.
- *
- * Must be an imgur link ending with .png/.jpg/.jpeg/.gif.
- */
- logo: string
- /**
- * Link to service's thumbnail or picture of the website.
- *
- * Must end with .png/.jpg/etc.
- */
- thumbnail: string
- /**
- * `#HEX` value.
- *
- * We recommend using a color that resembles the service the most.
- */
- color: string
- /**
- * Array with tags, they will help users to search your presence on the website.
- */
- tags: string[]
- /**
- * A string used to represent the category the presence falls under.
- *
- * @link https://docs.premid.app/dev/presence/metadata#presence-categories
- */
- category: 'anime' | 'games' | 'music' | 'socials' | 'videos' | 'other'
- /**
- * Defines whether `iFrames` are used.
- */
- iframe?: boolean
- /**
- * A regular expression string used to match urls.
- * @link https://docs.premid.app/dev/presence/metadata#regular-expressions
- */
- regExp?: string
- /**
- * A regular expression selector that selects iframes to inject into.
- * @link https://docs.premid.app/dev/presence/metadata#regular-expressions
- */
- iFrameRegExp?: string
- /**
- * Defines whether `getLogs()` is used.
- */
- readLogs?: boolean
- /**
- * Whether to include a "add presence" button on the store. Only available for partnered presences.
- *
- * @private
- */
- button?: boolean
- /**
- * Whether to display a warning on the presence installation page.
- */
- warning?: boolean
- /**
- * An array of settings the user can change.
- * @link https://docs.premid.app/dev/presence/metadata#presence-settings
- */
- settings?: {
- /**
- * Identifier of the setting, used to obtain its value through presence.getSetting()
- */
- id: string
- /**
- * Needed for every setting except if you use `multiLanguage`.
- */
- title?: string
- /**
- * Needed for every setting except if you use `multiLanguage`.
- */
- icon?: string
- /**
- * Record of conditions that need to be matched for the setting to appear.
- * The keys should be ids of other settings and the values should be the value they need to match.
- */
- if?: Record<string, string | number | boolean>
- /**
- * The text that appears in the background of string settings when nothing is in the input.
- */
- placeholder?: string
- /**
- * The default value of the setting.
- */
- value?: string | number | boolean
- /**
- * An array of values to be used as choices for the setting.
- * The returned value will be a number representing the index of the chosen option
- */
- values?: (string | number | boolean)[]
- /**
- * `true`: use this if you are only going to use strings from the [`general.json`](https://github.com/PreMiD/Localization/blob/main/src/Presence/general.json) file, and your <service>.json file.
- */
- multiLanguage?: true
- }[]
- }
- interface Contributor {
- /**
- * Name of the contributor on Discord.
- */
- name: string
- /**
- * Discord ID of the contributor.
- */
- id: string
- }
- interface PresenceClassSetActivityEvent {
- event: 'setActivity'
- data: { clientId: string, presenceData: PresenceDataFinal }
- }
- interface PresenceClassClearActivityEvent { event: 'clearActivity' }
- interface PresenceClassGetPresenceLetiableEvent {
- event: 'getPresenceLetiable'
- data: string
- nonce: string
- }
- interface PresenceClassGetPageVariablesEvent {
- event: 'getPageVariables'
- data: string[]
- nonce: string
- }
- interface PresenceClassReconnectEvent {
- event: 'reconnect'
- }
- type PresenceClassEvents =
- | PresenceClassSetActivityEvent
- | PresenceClassClearActivityEvent
- | PresenceClassGetPresenceLetiableEvent
- | PresenceClassGetPageVariablesEvent
- | PresenceClassReconnectEvent
- type ConsoleLogType = 'log' | 'info' | 'warn' | 'error'
- interface ConsoleLog<T = unknown> {
- id: string
- timestamp: number
- type: ConsoleLogType
- content: T
- }
- /**
- * Useful tools for developing presences
- * @link https://docs.premid.app/en/dev/presence/class
- */
- declare class Presence {
- private clientId
- private injectOnComplete
- private internalPresence
- private port
- private pmd
- private service
- private isTemporary
- private log
- private logInfo
- private logError
- private logSuccess
- /**
- * Create a new Presence
- */
- constructor(presenceOptions: PresenceOptions)
- private injectVariableGetter(): Promise<void>
- private connectToBackground(): void
- /**
- * Get the current activity
- * @link https://docs.premid.app/en/dev/presence/class#getactivity
- * @deprecated since 2.2.4
- */
- getActivity(): PresenceData
- /**
- * Sets the presence activity and sends it to the application.
- * @param data PresenceData or Slideshow
- * @link https://docs.premid.app/dev/presence/class#setactivitypresencedata-boolean
- */
- setActivity(
- data?: PresenceData | Slideshow,
- ): Promise<void>
- /**
- * @deprecated 2.5 - The `_playback` parameter is deprecated.
- * Sets the presence activity and sends it to the application.
- * @param data PresenceData or Slideshow
- * @param _playback DEPRECATED: Is presence playing
- * @link https://docs.premid.app/dev/presence/class#setactivitypresencedata-boolean
- */
- setActivity(
- data?: PresenceData | Slideshow,
- _playback?: boolean
- ): Promise<void>
- private getTextFromElement(element: string | Node): string | undefined
- private imageSrcToBlob
- private getImageFromElement(
- element: string | Blob | HTMLImageElement
- ): Promise<string | undefined>
- private uploadedBlobs
- private uploadBlob(blob: Blob): Promise<string | undefined>
- /**
- * Clears the activity shown in discord as well as the Tray and keybinds
- * @link https://docs.premid.app/dev/presence/class#clearactivity
- */
- clearActivity(): void
- /**
- * Get translations from the extension
- * @param strings String object with keys being the key for string, keyValue is the string value
- * @link https://docs.premid.app/dev/presence/class#getstringsobject
- */
- getStrings<
- T extends {
- [K: string]: string
- },
- >(strings: T): Promise<T>
- /**
- * @deprecated 2.5 - Passing language is deprecated
- * Get translations from the extension
- * @param strings String object with keys being the key for string, keyValue is the string value
- * @param _language DEPRECATED: Language to get strings for
- * @link https://docs.premid.app/dev/presence/class#getstringsobject
- */
- getStrings<
- T extends {
- [K: string]: string
- },
- >(strings: T, _language?: string): Promise<T>
- /**
- * Get letiables from the actual site
- * @param {Array} letiables Array of letiable names to get
- * @example let pagelet = getPageletiable('pagelet') -> "letiable content"
- * @link https://docs.premid.app/presence-development/coding/presence-class#getpageletiable-string
- * @deprecated 2.5 - Use getPageVariable instead
- */
- getPageletiable<T = unknown>(letiable: string): Promise<T>
- /**
- * Returns an array of the past 100 logs, you can filter these logs with a RegExp.
- * @param regExp Filter for the logs content
- * @param options Options for the logs
- */
- getLogs<T = unknown>(
- regExp?: RegExp,
- options?: {
- /**
- * Types of logs to get
- *
- * Default: `["log"]`
- */
- types?: ConsoleLogType[]
- /**
- * Whether to only get the content of the logs
- *
- * Default: `true`
- */
- contentOnly?: true
- }
- ): Promise<T[]>
- getLogs<T = unknown>(
- regExp?: RegExp,
- options?: {
- /**
- * Types of logs to get
- *
- * Default: `["log"]`
- */
- types?: ConsoleLogType[]
- /**
- * Whether to only get the content of the logs
- *
- * Default: `true`
- */
- contentOnly: false
- }
- ): Promise<ConsoleLog<T>[]>
- getLogs<T = unknown>(
- regExp?: RegExp,
- options?: {
- /**
- * Types of logs to get
- *
- * Default: `["log"]`
- */
- types?: ConsoleLogType[]
- /**
- * Whether to only get the content of the logs
- *
- * Default: `true`
- */
- contentOnly?: boolean
- }
- ): Promise<T[] | ConsoleLog<T>[]>
- /**
- * Returns extension version
- * @param onlyNumeric version number without dots
- * @link https://docs.premid.app/en/dev/presence/class#getextensionversionboolean
- * @since 2.1
- */
- getExtensionVersion(onlyNumeric?: boolean): string | number
- /**
- * Get a setting from the presence metadata
- * @param setting Id of setting as defined in metadata
- * @link https://docs.premid.app/dev/presence/class#getsettingstring
- * @since 2.1
- */
- getSetting<T extends string | boolean | number>(setting: string): Promise<T>
- /**
- * Hide a setting
- * @param setting Id of setting / Array of setting Id's
- * @link https://docs.premid.app/dev/presence/class#hidesettingstring
- * @since 2.1
- */
- hideSetting(settings: string | string[]): Promise<void>
- /**
- * Show a setting
- * @param setting Id of setting / Array of setting Id's
- * @link https://docs.premid.app/dev/presence/class#showsettingstring
- * @since 2.1
- */
- showSetting(settings: string | string[]): Promise<void>
- /**
- * Similar to `getTimestamps` but takes in a media element and returns snowflake timestamps
- * @param media Media object
- * @deprecated since 2.7.5 - Use the standalone `getTimestampsFromMedia` function instead: import { getTimestampsFromMedia } from 'premid'
- */
- getTimestampsfromMedia(media: HTMLMediaElement): [number, number]
- /**
- * Converts time and duration integers into snowflake timestamps
- * @param {number} elementTime Current element time seconds
- * @param {number} elementDuration Element duration seconds
- * @deprecated since 2.7.5 - Use the standalone `getTimestamps` function instead: import { getTimestamps } from 'premid'
- */
- getTimestamps(elementTime: number, elementDuration: number): [number, number]
- /**
- * Converts a string with format `HH:MM:SS` or `MM:SS` or `SS` into an integer (Does not return snowflake timestamp)
- * @param format The formatted string
- * @deprecated since 2.7.5 - Use the standalone `timestampFromFormat` function instead: import { timestampFromFormat } from 'premid'
- */
- timestampFromFormat(format: string): number
- /**
- * Console logs with an info message
- * @param message The log message
- */
- info(message: string): void
- /**
- * Console logs with a success message
- * @param message The log message
- */
- success(message: string): void
- /**
- * Console logs with an error message
- * @param message The log message
- */
- error(message: string): void
- /**
- * Creates a slideshow that allows for alternating between sets of
- * presence data at specific intervals
- */
- createSlideshow(): Slideshow
- /**
- * Get variables from the web page
- * Supports nested variables using dot notation (e.g. `document.title`)
- *
- * NOTE: This function can be very heavy if you are not directly accessing a variable with primitive value!
- * @param variables Variables to get
- * @since 2.5
- */
- getPageVariable<T extends Record<string, any> = Record<string, unknown>>(
- ...variables: string[]
- ): Promise<T>
- /**
- * Sends data back to application
- * @param event Event
- */
- private postEvent(data: PresenceClassEvents): void
- /**
- * Subscribe to events emitted by the extension
- * @param eventName EventName to subscribe to
- * @param callback Callback function for event
- * @link https://docs.premid.app/dev/presence/class#events
- */
- on<K extends keyof PresenceEvents>(
- eventName: K,
- listener: (...args: PresenceEvents[K]) => Awaitable<void>
- ): void
- }
- interface PresenceEvents {
- /**
- * Emitted on every tick, used to update the data displayed in the presence
- */
- UpdateData: []
- /**
- * Emitted when data is received from the iframe.ts file
- */
- iFrameData: [data: any]
- }
- type Awaitable<T> = Promise<T> | T
- /**
- * Minimum amount of time in ms between slide updates
- */
- declare const MIN_SLIDE_TIME: number
- /**
- * Represents a slideshow slide
- */
- declare class SlideshowSlide {
- id: string
- data: PresenceData
- private _interval
- constructor(id: string, data: PresenceData, interval: number)
- get interval(): number
- set interval(interval: number)
- /**
- * Updates the slide presenceData
- * Passing null will keep the original value
- * @param data The slide presenceData
- */
- updateData(data?: PresenceData): void
- /**
- * Updates the slide interval
- * Passing null will keep the original value
- * @param interval The slide interval
- */
- updateInterval(interval?: number): void
- }
- /**
- * Controller for alternating between multiple sets of
- * presence data at specific intervals
- */
- declare class Slideshow {
- private index
- private slides
- currentSlide: PresenceData
- constructor()
- /**
- * Sets the current slide
- */
- private pollSlide
- /**
- * Adds a slide to the queue
- * If a slide already exists with the given id, it will be updated with a new value
- * @param id The slide id
- * @param data The slide presenceData
- * @param interval Interval until next slide
- */
- addSlide(id: string, data: PresenceData, interval: number): SlideshowSlide
- /**
- * Deletes a slide from the queue
- * @param id The slide id
- */
- deleteSlide(id: string): void
- /**
- * Clears the queue
- */
- deleteAllSlides(): void
- /**
- * Updates a slide already in queue
- * Passing null will keep the old value
- * @param id The slide id
- * @param data The slide presenceData
- * @param interval Interval until next slide
- */
- updateSlide(
- id: string,
- data?: PresenceData,
- interval?: number
- ): SlideshowSlide
- /**
- * Returns if a slide exists in the queue
- * @param id The slide id
- */
- hasSlide(id: string): boolean
- /**
- * Returns all slides
- */
- getSlides(): SlideshowSlide[]
- }
- /**
- * Is used to gather information from iFrames
- * @link https://docs.premid.app/en/dev/presence/iframe
- */
- declare class iFrame {
- _events: any
- /**
- * Send data from iFrames back to the presence script
- * @param data Data to send
- * @link https://docs.premid.app/dev/presence/class#iframedata
- */
- send(data: any): void
- /**
- * Returns the iframe url
- * @link https://docs.premid.app/dev/presence/iframe#geturl
- * @since 2.0-BETA3
- */
- getUrl(): Promise<string>
- /**
- * Subscribe to events emitted by the extension
- * @param eventName
- * @param callback
- * @link https://docs.premid.app/dev/presence/class#updatedata
- */
- on<K extends keyof IFrameEvents>(
- eventName: K,
- listener: (...args: IFrameEvents[K]) => Awaitable<void>
- ): void
- }
- interface IFrameEvents {
- UpdateData: []
- }
|