mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-07 12:37:45 +00:00
Automated build 'Merge branch 'main' of https://github.com/LukeHagar/plex-api-spec' typescript-axios sdk: 4680304111
This commit is contained in:
88
dist/sdk-output/api.d.ts
vendored
88
dist/sdk-output/api.d.ts
vendored
@@ -668,18 +668,10 @@ export declare const DevicesApiAxiosParamCreator: (configuration?: Configuration
|
||||
/**
|
||||
* Get Available Clients
|
||||
* @summary Get Available Clients
|
||||
* @param {any} xPlexClientIdentifier UUID, serial number, or other number unique per device
|
||||
* @param {any} [xPlexDeviceName] Primary name for the device eg. `Plex Web (Chrome)`
|
||||
* @param {any} [xPlexDevice] Device name and model number, eg `iPhone3,2`, `Motorola XOOM™`, `LG5200TV`
|
||||
* @param {any} [xPlexPlatformVersion] Operating system version, eg `4.3.1`, `10.6.7`, `3.2`
|
||||
* @param {any} [xPlexPlatform] Platform name, eg `iOS`, `MacOSX`, `Android`, `LG`
|
||||
* @param {any} [xPlexProduct] Plex application name, eg `Laika`, `Plex Media Server`, `Media Link`
|
||||
* @param {any} [xPlexProvides] One or more of `[player, controller, server]`
|
||||
* @param {any} [xPlexVersion] Plex application version number
|
||||
* @param {*} [axiosOptions] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
getAvailableClients: (xPlexClientIdentifier: any, xPlexDeviceName?: any, xPlexDevice?: any, xPlexPlatformVersion?: any, xPlexPlatform?: any, xPlexProduct?: any, xPlexProvides?: any, xPlexVersion?: any, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
||||
getAvailableClients: (axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
||||
/**
|
||||
* Get Devices
|
||||
* @summary Get Devices
|
||||
@@ -704,18 +696,10 @@ export declare const DevicesApiFp: (configuration?: Configuration) => {
|
||||
/**
|
||||
* Get Available Clients
|
||||
* @summary Get Available Clients
|
||||
* @param {any} xPlexClientIdentifier UUID, serial number, or other number unique per device
|
||||
* @param {any} [xPlexDeviceName] Primary name for the device eg. `Plex Web (Chrome)`
|
||||
* @param {any} [xPlexDevice] Device name and model number, eg `iPhone3,2`, `Motorola XOOM™`, `LG5200TV`
|
||||
* @param {any} [xPlexPlatformVersion] Operating system version, eg `4.3.1`, `10.6.7`, `3.2`
|
||||
* @param {any} [xPlexPlatform] Platform name, eg `iOS`, `MacOSX`, `Android`, `LG`
|
||||
* @param {any} [xPlexProduct] Plex application name, eg `Laika`, `Plex Media Server`, `Media Link`
|
||||
* @param {any} [xPlexProvides] One or more of `[player, controller, server]`
|
||||
* @param {any} [xPlexVersion] Plex application version number
|
||||
* @param {*} [axiosOptions] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
getAvailableClients(xPlexClientIdentifier: any, xPlexDeviceName?: any, xPlexDevice?: any, xPlexPlatformVersion?: any, xPlexPlatform?: any, xPlexProduct?: any, xPlexProvides?: any, xPlexVersion?: any, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
||||
getAvailableClients(axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
||||
/**
|
||||
* Get Devices
|
||||
* @summary Get Devices
|
||||
@@ -740,18 +724,10 @@ export declare const DevicesApiFactory: (configuration?: Configuration, basePath
|
||||
/**
|
||||
* Get Available Clients
|
||||
* @summary Get Available Clients
|
||||
* @param {any} xPlexClientIdentifier UUID, serial number, or other number unique per device
|
||||
* @param {any} [xPlexDeviceName] Primary name for the device eg. `Plex Web (Chrome)`
|
||||
* @param {any} [xPlexDevice] Device name and model number, eg `iPhone3,2`, `Motorola XOOM™`, `LG5200TV`
|
||||
* @param {any} [xPlexPlatformVersion] Operating system version, eg `4.3.1`, `10.6.7`, `3.2`
|
||||
* @param {any} [xPlexPlatform] Platform name, eg `iOS`, `MacOSX`, `Android`, `LG`
|
||||
* @param {any} [xPlexProduct] Plex application name, eg `Laika`, `Plex Media Server`, `Media Link`
|
||||
* @param {any} [xPlexProvides] One or more of `[player, controller, server]`
|
||||
* @param {any} [xPlexVersion] Plex application version number
|
||||
* @param {*} [axiosOptions] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
getAvailableClients(xPlexClientIdentifier: any, xPlexDeviceName?: any, xPlexDevice?: any, xPlexPlatformVersion?: any, xPlexPlatform?: any, xPlexProduct?: any, xPlexProvides?: any, xPlexVersion?: any, axiosOptions?: any): AxiosPromise<any>;
|
||||
getAvailableClients(axiosOptions?: any): AxiosPromise<any>;
|
||||
/**
|
||||
* Get Devices
|
||||
* @summary Get Devices
|
||||
@@ -768,61 +744,6 @@ export declare const DevicesApiFactory: (configuration?: Configuration, basePath
|
||||
*/
|
||||
getDevices(xPlexClientIdentifier: any, xPlexDeviceName?: any, xPlexDevice?: any, xPlexPlatformVersion?: any, xPlexPlatform?: any, xPlexProduct?: any, xPlexProvides?: any, xPlexVersion?: any, axiosOptions?: any): AxiosPromise<any>;
|
||||
};
|
||||
/**
|
||||
* Request parameters for getAvailableClients operation in DevicesApi.
|
||||
* @export
|
||||
* @interface DevicesApiGetAvailableClientsRequest
|
||||
*/
|
||||
export interface DevicesApiGetAvailableClientsRequest {
|
||||
/**
|
||||
* UUID, serial number, or other number unique per device
|
||||
* @type {any}
|
||||
* @memberof DevicesApiGetAvailableClients
|
||||
*/
|
||||
readonly xPlexClientIdentifier: any;
|
||||
/**
|
||||
* Primary name for the device eg. `Plex Web (Chrome)`
|
||||
* @type {any}
|
||||
* @memberof DevicesApiGetAvailableClients
|
||||
*/
|
||||
readonly xPlexDeviceName?: any;
|
||||
/**
|
||||
* Device name and model number, eg `iPhone3,2`, `Motorola XOOM™`, `LG5200TV`
|
||||
* @type {any}
|
||||
* @memberof DevicesApiGetAvailableClients
|
||||
*/
|
||||
readonly xPlexDevice?: any;
|
||||
/**
|
||||
* Operating system version, eg `4.3.1`, `10.6.7`, `3.2`
|
||||
* @type {any}
|
||||
* @memberof DevicesApiGetAvailableClients
|
||||
*/
|
||||
readonly xPlexPlatformVersion?: any;
|
||||
/**
|
||||
* Platform name, eg `iOS`, `MacOSX`, `Android`, `LG`
|
||||
* @type {any}
|
||||
* @memberof DevicesApiGetAvailableClients
|
||||
*/
|
||||
readonly xPlexPlatform?: any;
|
||||
/**
|
||||
* Plex application name, eg `Laika`, `Plex Media Server`, `Media Link`
|
||||
* @type {any}
|
||||
* @memberof DevicesApiGetAvailableClients
|
||||
*/
|
||||
readonly xPlexProduct?: any;
|
||||
/**
|
||||
* One or more of `[player, controller, server]`
|
||||
* @type {any}
|
||||
* @memberof DevicesApiGetAvailableClients
|
||||
*/
|
||||
readonly xPlexProvides?: any;
|
||||
/**
|
||||
* Plex application version number
|
||||
* @type {any}
|
||||
* @memberof DevicesApiGetAvailableClients
|
||||
*/
|
||||
readonly xPlexVersion?: any;
|
||||
}
|
||||
/**
|
||||
* Request parameters for getDevices operation in DevicesApi.
|
||||
* @export
|
||||
@@ -888,12 +809,11 @@ export declare class DevicesApi extends BaseAPI {
|
||||
/**
|
||||
* Get Available Clients
|
||||
* @summary Get Available Clients
|
||||
* @param {DevicesApiGetAvailableClientsRequest} requestParameters Request parameters.
|
||||
* @param {*} [axiosOptions] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof DevicesApi
|
||||
*/
|
||||
getAvailableClients(requestParameters: DevicesApiGetAvailableClientsRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
||||
getAvailableClients(axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
||||
/**
|
||||
* Get Devices
|
||||
* @summary Get Devices
|
||||
|
||||
Reference in New Issue
Block a user