@orangefox-recovery/foxinternalclient 5.2.1 → 5.2.2

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/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Fox API
3
3
  * Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
4
4
  *
5
- * The version of the OpenAPI document: 5.2.1
5
+ * The version of the OpenAPI document: 5.2.2
6
6
  * Contact: admin@orangefox.tech
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -721,10 +721,10 @@ export interface MaintainerShortModel {
721
721
  export interface NewBuildTaskBody {
722
722
  /**
723
723
  *
724
- * @type {any}
724
+ * @type {string}
725
725
  * @memberof NewBuildTaskBody
726
726
  */
727
- 'device_id': any;
727
+ 'device_id': string;
728
728
  /**
729
729
  *
730
730
  * @type {string}
@@ -776,10 +776,10 @@ export interface NewDeviceBody {
776
776
  'model_names': Array<string>;
777
777
  /**
778
778
  *
779
- * @type {any}
779
+ * @type {string}
780
780
  * @memberof NewDeviceBody
781
781
  */
782
- 'maintainer': any;
782
+ 'maintainer': string;
783
783
  }
784
784
  /**
785
785
  *
@@ -1603,13 +1603,13 @@ export declare const DeviceApiAxiosParamCreator: (configuration?: Configuration)
1603
1603
  /**
1604
1604
  * Extended get device method, including the ability to get a device using device codename instead of the ID. /device/get?codename=lavender Due to the reasons mentioned in the /device route, identification devices using their codenames are considered unrecommended.
1605
1605
  * @summary Get Device
1606
- * @param { | null} [deviceId]
1607
- * @param { | null} [id] Filter by Device ID (deprecated)
1606
+ * @param {string | null} [deviceId]
1607
+ * @param {string | null} [id] Filter by Device ID (deprecated)
1608
1608
  * @param {string | null} [codename] Not recommended to use when you can
1609
1609
  * @param {*} [options] Override http request option.
1610
1610
  * @throws {RequiredError}
1611
1611
  */
1612
- getDevice: (deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1612
+ getDevice: (deviceId?: string | null, id?: string | null, codename?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1613
1613
  /**
1614
1614
  * Gets device info using device ID.
1615
1615
  * @summary Get Device Short
@@ -1622,8 +1622,8 @@ export declare const DeviceApiAxiosParamCreator: (configuration?: Configuration)
1622
1622
  /**
1623
1623
  * Get a device list. Device ID is the internal OrangeFox device identifier (https://www.mongodb.com/docs/manual/reference/method/ObjectId/). Please only use it for identification instead of codename or model_name if it\'s possible. You would find two Device ID query parameters here, the _id one is left deprecated due to historical reasons, please use id instead. Please note that using model_name is unrecommended and considered deprecated as it\'s very inconsistent around some OEMs that play with the names around. As of the current moment, the API won\'t support unified model names at all! In short, do not use model_name as device\'s identification. Be careful using codenames, there are a lot of problems and pain about those. Some OEMs keep releasing new phones with the same hardware as the old ones and may or may not update or change the codename for those. Currently, API doesn\'t support unified devices; they would have only one codename. Our OEMs database would not include subbrands, they instead would be added to the model name. Like oem_name: \"Xiaomi\" model_name: \"Poco F5 Pro\". The exclusions are merged ones, like OnePlus, as calling those BBK OnePlus is really weird in the respective communities. Note: You will get only a shortened device object with this method, if you want to get a full one, use \"/device/<device_id>\" or \"/device/get\" method instead.
1624
1624
  * @summary Get Devices
1625
- * @param {Array<any>} [id] Filter by Device IDs
1626
- * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
1625
+ * @param {Array<string>} [id] Filter by Device IDs
1626
+ * @param {Array<string>} [id2] Filter by Device IDs (deprecated)
1627
1627
  * @param {Array<string>} [oemName] Filter by OEM names
1628
1628
  * @param {Array<string>} [codename] Filter by device codenames
1629
1629
  * @param {Array<string>} [modelName] Filter by model names
@@ -1636,7 +1636,7 @@ export declare const DeviceApiAxiosParamCreator: (configuration?: Configuration)
1636
1636
  * @param {*} [options] Override http request option.
1637
1637
  * @throws {RequiredError}
1638
1638
  */
1639
- getDevices: (id?: Array<any>, id2?: Array<any>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1639
+ getDevices: (id?: Array<string>, id2?: Array<string>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1640
1640
  /**
1641
1641
  * Lists all OEM names
1642
1642
  * @summary Get Oems
@@ -1653,13 +1653,13 @@ export declare const DeviceApiFp: (configuration?: Configuration) => {
1653
1653
  /**
1654
1654
  * Extended get device method, including the ability to get a device using device codename instead of the ID. /device/get?codename=lavender Due to the reasons mentioned in the /device route, identification devices using their codenames are considered unrecommended.
1655
1655
  * @summary Get Device
1656
- * @param { | null} [deviceId]
1657
- * @param { | null} [id] Filter by Device ID (deprecated)
1656
+ * @param {string | null} [deviceId]
1657
+ * @param {string | null} [id] Filter by Device ID (deprecated)
1658
1658
  * @param {string | null} [codename] Not recommended to use when you can
1659
1659
  * @param {*} [options] Override http request option.
1660
1660
  * @throws {RequiredError}
1661
1661
  */
1662
- getDevice(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceResponse>>;
1662
+ getDevice(deviceId?: string | null, id?: string | null, codename?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceResponse>>;
1663
1663
  /**
1664
1664
  * Gets device info using device ID.
1665
1665
  * @summary Get Device Short
@@ -1672,8 +1672,8 @@ export declare const DeviceApiFp: (configuration?: Configuration) => {
1672
1672
  /**
1673
1673
  * Get a device list. Device ID is the internal OrangeFox device identifier (https://www.mongodb.com/docs/manual/reference/method/ObjectId/). Please only use it for identification instead of codename or model_name if it\'s possible. You would find two Device ID query parameters here, the _id one is left deprecated due to historical reasons, please use id instead. Please note that using model_name is unrecommended and considered deprecated as it\'s very inconsistent around some OEMs that play with the names around. As of the current moment, the API won\'t support unified model names at all! In short, do not use model_name as device\'s identification. Be careful using codenames, there are a lot of problems and pain about those. Some OEMs keep releasing new phones with the same hardware as the old ones and may or may not update or change the codename for those. Currently, API doesn\'t support unified devices; they would have only one codename. Our OEMs database would not include subbrands, they instead would be added to the model name. Like oem_name: \"Xiaomi\" model_name: \"Poco F5 Pro\". The exclusions are merged ones, like OnePlus, as calling those BBK OnePlus is really weird in the respective communities. Note: You will get only a shortened device object with this method, if you want to get a full one, use \"/device/<device_id>\" or \"/device/get\" method instead.
1674
1674
  * @summary Get Devices
1675
- * @param {Array<any>} [id] Filter by Device IDs
1676
- * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
1675
+ * @param {Array<string>} [id] Filter by Device IDs
1676
+ * @param {Array<string>} [id2] Filter by Device IDs (deprecated)
1677
1677
  * @param {Array<string>} [oemName] Filter by OEM names
1678
1678
  * @param {Array<string>} [codename] Filter by device codenames
1679
1679
  * @param {Array<string>} [modelName] Filter by model names
@@ -1686,7 +1686,7 @@ export declare const DeviceApiFp: (configuration?: Configuration) => {
1686
1686
  * @param {*} [options] Override http request option.
1687
1687
  * @throws {RequiredError}
1688
1688
  */
1689
- getDevices(id?: Array<any>, id2?: Array<any>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseShortDeviceResponse>>;
1689
+ getDevices(id?: Array<string>, id2?: Array<string>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseShortDeviceResponse>>;
1690
1690
  /**
1691
1691
  * Lists all OEM names
1692
1692
  * @summary Get Oems
@@ -1703,13 +1703,13 @@ export declare const DeviceApiFactory: (configuration?: Configuration, basePath?
1703
1703
  /**
1704
1704
  * Extended get device method, including the ability to get a device using device codename instead of the ID. /device/get?codename=lavender Due to the reasons mentioned in the /device route, identification devices using their codenames are considered unrecommended.
1705
1705
  * @summary Get Device
1706
- * @param { | null} [deviceId]
1707
- * @param { | null} [id] Filter by Device ID (deprecated)
1706
+ * @param {string | null} [deviceId]
1707
+ * @param {string | null} [id] Filter by Device ID (deprecated)
1708
1708
  * @param {string | null} [codename] Not recommended to use when you can
1709
1709
  * @param {*} [options] Override http request option.
1710
1710
  * @throws {RequiredError}
1711
1711
  */
1712
- getDevice(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
1712
+ getDevice(deviceId?: string | null, id?: string | null, codename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
1713
1713
  /**
1714
1714
  * Gets device info using device ID.
1715
1715
  * @summary Get Device Short
@@ -1722,8 +1722,8 @@ export declare const DeviceApiFactory: (configuration?: Configuration, basePath?
1722
1722
  /**
1723
1723
  * Get a device list. Device ID is the internal OrangeFox device identifier (https://www.mongodb.com/docs/manual/reference/method/ObjectId/). Please only use it for identification instead of codename or model_name if it\'s possible. You would find two Device ID query parameters here, the _id one is left deprecated due to historical reasons, please use id instead. Please note that using model_name is unrecommended and considered deprecated as it\'s very inconsistent around some OEMs that play with the names around. As of the current moment, the API won\'t support unified model names at all! In short, do not use model_name as device\'s identification. Be careful using codenames, there are a lot of problems and pain about those. Some OEMs keep releasing new phones with the same hardware as the old ones and may or may not update or change the codename for those. Currently, API doesn\'t support unified devices; they would have only one codename. Our OEMs database would not include subbrands, they instead would be added to the model name. Like oem_name: \"Xiaomi\" model_name: \"Poco F5 Pro\". The exclusions are merged ones, like OnePlus, as calling those BBK OnePlus is really weird in the respective communities. Note: You will get only a shortened device object with this method, if you want to get a full one, use \"/device/<device_id>\" or \"/device/get\" method instead.
1724
1724
  * @summary Get Devices
1725
- * @param {Array<any>} [id] Filter by Device IDs
1726
- * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
1725
+ * @param {Array<string>} [id] Filter by Device IDs
1726
+ * @param {Array<string>} [id2] Filter by Device IDs (deprecated)
1727
1727
  * @param {Array<string>} [oemName] Filter by OEM names
1728
1728
  * @param {Array<string>} [codename] Filter by device codenames
1729
1729
  * @param {Array<string>} [modelName] Filter by model names
@@ -1736,7 +1736,7 @@ export declare const DeviceApiFactory: (configuration?: Configuration, basePath?
1736
1736
  * @param {*} [options] Override http request option.
1737
1737
  * @throws {RequiredError}
1738
1738
  */
1739
- getDevices(id?: Array<any>, id2?: Array<any>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortDeviceResponse>;
1739
+ getDevices(id?: Array<string>, id2?: Array<string>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortDeviceResponse>;
1740
1740
  /**
1741
1741
  * Lists all OEM names
1742
1742
  * @summary Get Oems
@@ -1754,14 +1754,14 @@ export interface DeviceApiInterface {
1754
1754
  /**
1755
1755
  * Extended get device method, including the ability to get a device using device codename instead of the ID. /device/get?codename=lavender Due to the reasons mentioned in the /device route, identification devices using their codenames are considered unrecommended.
1756
1756
  * @summary Get Device
1757
- * @param { | null} [deviceId]
1758
- * @param { | null} [id] Filter by Device ID (deprecated)
1757
+ * @param {string | null} [deviceId]
1758
+ * @param {string | null} [id] Filter by Device ID (deprecated)
1759
1759
  * @param {string | null} [codename] Not recommended to use when you can
1760
1760
  * @param {*} [options] Override http request option.
1761
1761
  * @throws {RequiredError}
1762
1762
  * @memberof DeviceApiInterface
1763
1763
  */
1764
- getDevice(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
1764
+ getDevice(deviceId?: string | null, id?: string | null, codename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
1765
1765
  /**
1766
1766
  * Gets device info using device ID.
1767
1767
  * @summary Get Device Short
@@ -1775,8 +1775,8 @@ export interface DeviceApiInterface {
1775
1775
  /**
1776
1776
  * Get a device list. Device ID is the internal OrangeFox device identifier (https://www.mongodb.com/docs/manual/reference/method/ObjectId/). Please only use it for identification instead of codename or model_name if it\'s possible. You would find two Device ID query parameters here, the _id one is left deprecated due to historical reasons, please use id instead. Please note that using model_name is unrecommended and considered deprecated as it\'s very inconsistent around some OEMs that play with the names around. As of the current moment, the API won\'t support unified model names at all! In short, do not use model_name as device\'s identification. Be careful using codenames, there are a lot of problems and pain about those. Some OEMs keep releasing new phones with the same hardware as the old ones and may or may not update or change the codename for those. Currently, API doesn\'t support unified devices; they would have only one codename. Our OEMs database would not include subbrands, they instead would be added to the model name. Like oem_name: \"Xiaomi\" model_name: \"Poco F5 Pro\". The exclusions are merged ones, like OnePlus, as calling those BBK OnePlus is really weird in the respective communities. Note: You will get only a shortened device object with this method, if you want to get a full one, use \"/device/<device_id>\" or \"/device/get\" method instead.
1777
1777
  * @summary Get Devices
1778
- * @param {Array<any>} [id] Filter by Device IDs
1779
- * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
1778
+ * @param {Array<string>} [id] Filter by Device IDs
1779
+ * @param {Array<string>} [id2] Filter by Device IDs (deprecated)
1780
1780
  * @param {Array<string>} [oemName] Filter by OEM names
1781
1781
  * @param {Array<string>} [codename] Filter by device codenames
1782
1782
  * @param {Array<string>} [modelName] Filter by model names
@@ -1790,7 +1790,7 @@ export interface DeviceApiInterface {
1790
1790
  * @throws {RequiredError}
1791
1791
  * @memberof DeviceApiInterface
1792
1792
  */
1793
- getDevices(id?: Array<any>, id2?: Array<any>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortDeviceResponse>;
1793
+ getDevices(id?: Array<string>, id2?: Array<string>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortDeviceResponse>;
1794
1794
  /**
1795
1795
  * Lists all OEM names
1796
1796
  * @summary Get Oems
@@ -1810,14 +1810,14 @@ export declare class DeviceApi extends BaseAPI implements DeviceApiInterface {
1810
1810
  /**
1811
1811
  * Extended get device method, including the ability to get a device using device codename instead of the ID. /device/get?codename=lavender Due to the reasons mentioned in the /device route, identification devices using their codenames are considered unrecommended.
1812
1812
  * @summary Get Device
1813
- * @param { | null} [deviceId]
1814
- * @param { | null} [id] Filter by Device ID (deprecated)
1813
+ * @param {string | null} [deviceId]
1814
+ * @param {string | null} [id] Filter by Device ID (deprecated)
1815
1815
  * @param {string | null} [codename] Not recommended to use when you can
1816
1816
  * @param {*} [options] Override http request option.
1817
1817
  * @throws {RequiredError}
1818
1818
  * @memberof DeviceApi
1819
1819
  */
1820
- getDevice(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceResponse, any>>;
1820
+ getDevice(deviceId?: string | null, id?: string | null, codename?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceResponse, any>>;
1821
1821
  /**
1822
1822
  * Gets device info using device ID.
1823
1823
  * @summary Get Device Short
@@ -1831,8 +1831,8 @@ export declare class DeviceApi extends BaseAPI implements DeviceApiInterface {
1831
1831
  /**
1832
1832
  * Get a device list. Device ID is the internal OrangeFox device identifier (https://www.mongodb.com/docs/manual/reference/method/ObjectId/). Please only use it for identification instead of codename or model_name if it\'s possible. You would find two Device ID query parameters here, the _id one is left deprecated due to historical reasons, please use id instead. Please note that using model_name is unrecommended and considered deprecated as it\'s very inconsistent around some OEMs that play with the names around. As of the current moment, the API won\'t support unified model names at all! In short, do not use model_name as device\'s identification. Be careful using codenames, there are a lot of problems and pain about those. Some OEMs keep releasing new phones with the same hardware as the old ones and may or may not update or change the codename for those. Currently, API doesn\'t support unified devices; they would have only one codename. Our OEMs database would not include subbrands, they instead would be added to the model name. Like oem_name: \"Xiaomi\" model_name: \"Poco F5 Pro\". The exclusions are merged ones, like OnePlus, as calling those BBK OnePlus is really weird in the respective communities. Note: You will get only a shortened device object with this method, if you want to get a full one, use \"/device/<device_id>\" or \"/device/get\" method instead.
1833
1833
  * @summary Get Devices
1834
- * @param {Array<any>} [id] Filter by Device IDs
1835
- * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
1834
+ * @param {Array<string>} [id] Filter by Device IDs
1835
+ * @param {Array<string>} [id2] Filter by Device IDs (deprecated)
1836
1836
  * @param {Array<string>} [oemName] Filter by OEM names
1837
1837
  * @param {Array<string>} [codename] Filter by device codenames
1838
1838
  * @param {Array<string>} [modelName] Filter by model names
@@ -1846,7 +1846,7 @@ export declare class DeviceApi extends BaseAPI implements DeviceApiInterface {
1846
1846
  * @throws {RequiredError}
1847
1847
  * @memberof DeviceApi
1848
1848
  */
1849
- getDevices(id?: Array<any>, id2?: Array<any>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListResponseShortDeviceResponse, any>>;
1849
+ getDevices(id?: Array<string>, id2?: Array<string>, oemName?: Array<string>, codename?: Array<string>, modelName?: Array<string>, supported?: boolean | null, maintainer?: Array<string>, freezed?: boolean | null, hasReleases?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListResponseShortDeviceResponse, any>>;
1850
1850
  /**
1851
1851
  * Lists all OEM names
1852
1852
  * @summary Get Oems
@@ -1864,19 +1864,19 @@ export declare const FoxFactoryApiAxiosParamCreator: (configuration?: Configurat
1864
1864
  /**
1865
1865
  * Cancels a build task given its identifier. The task\'s status is updated to indicate that it is in the process of cancellation. If the task with the specified ID is not found, a 404 HTTP exception is raised.
1866
1866
  * @summary Cancel Task
1867
- * @param {any} taskId
1867
+ * @param {string} taskId
1868
1868
  * @param {*} [options] Override http request option.
1869
1869
  * @throws {RequiredError}
1870
1870
  */
1871
- cancelTaskFactoryTaskIdCancelPost: (taskId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1871
+ cancelTaskFactoryTaskIdCancelPost: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1872
1872
  /**
1873
1873
  * Deletes a build task given its identifier. If the task with the specified ID is not found, a 404 HTTP exception is raised.
1874
1874
  * @summary Delete Task
1875
- * @param {any} taskId
1875
+ * @param {string} taskId
1876
1876
  * @param {*} [options] Override http request option.
1877
1877
  * @throws {RequiredError}
1878
1878
  */
1879
- deleteTaskFactoryTaskIdDelete: (taskId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1879
+ deleteTaskFactoryTaskIdDelete: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1880
1880
  /**
1881
1881
  *
1882
1882
  * @summary Factory Status
@@ -1887,19 +1887,19 @@ export declare const FoxFactoryApiAxiosParamCreator: (configuration?: Configurat
1887
1887
  /**
1888
1888
  * Retrieves the details of a specific build task. This endpoint allows a user to fetch detailed information about a build task by its ID. Access to this endpoint is restricted to users with the \'maintainer\' or \'foxworker\' roles. Depending on the user\'s roles, returned task details may differ. Admin users will receive all task details, while others will have some fields excluded.
1889
1889
  * @summary Get Task
1890
- * @param {any} taskId
1890
+ * @param {string} taskId
1891
1891
  * @param {*} [options] Override http request option.
1892
1892
  * @throws {RequiredError}
1893
1893
  */
1894
- getTaskFactoryTaskIdGet: (taskId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1894
+ getTaskFactoryTaskIdGet: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1895
1895
  /**
1896
1896
  * Get a list of all build tasks. This endpoint retrieves all build tasks from the database and returns them as a list of abbreviated responses. Parameters: device_id (ObjectId, optional): Filter tasks by device ID
1897
1897
  * @summary List Tasks
1898
- * @param { | null} [deviceId]
1898
+ * @param {string | null} [deviceId]
1899
1899
  * @param {*} [options] Override http request option.
1900
1900
  * @throws {RequiredError}
1901
1901
  */
1902
- listTasksFactoryGet: (deviceId?: null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1902
+ listTasksFactoryGet: (deviceId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1903
1903
  /**
1904
1904
  * Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
1905
1905
  * @summary New Task
@@ -1911,12 +1911,12 @@ export declare const FoxFactoryApiAxiosParamCreator: (configuration?: Configurat
1911
1911
  /**
1912
1912
  * Updates an existing build task by its unique identifier. The function allows updates to the task\'s status and logs. If the task\'s status is set to a value indicating completion, the finished timestamp is also updated. Allowed only for foxworker users.
1913
1913
  * @summary Update Task
1914
- * @param {any} taskId
1914
+ * @param {string} taskId
1915
1915
  * @param {TaskUpdateBody} taskUpdateBody
1916
1916
  * @param {*} [options] Override http request option.
1917
1917
  * @throws {RequiredError}
1918
1918
  */
1919
- updateTaskFactoryTaskIdPatch: (taskId: any, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1919
+ updateTaskFactoryTaskIdPatch: (taskId: string, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1920
1920
  };
1921
1921
  /**
1922
1922
  * FoxFactoryApi - functional programming interface
@@ -1926,19 +1926,19 @@ export declare const FoxFactoryApiFp: (configuration?: Configuration) => {
1926
1926
  /**
1927
1927
  * Cancels a build task given its identifier. The task\'s status is updated to indicate that it is in the process of cancellation. If the task with the specified ID is not found, a 404 HTTP exception is raised.
1928
1928
  * @summary Cancel Task
1929
- * @param {any} taskId
1929
+ * @param {string} taskId
1930
1930
  * @param {*} [options] Override http request option.
1931
1931
  * @throws {RequiredError}
1932
1932
  */
1933
- cancelTaskFactoryTaskIdCancelPost(taskId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BuildTaskResponse>>;
1933
+ cancelTaskFactoryTaskIdCancelPost(taskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BuildTaskResponse>>;
1934
1934
  /**
1935
1935
  * Deletes a build task given its identifier. If the task with the specified ID is not found, a 404 HTTP exception is raised.
1936
1936
  * @summary Delete Task
1937
- * @param {any} taskId
1937
+ * @param {string} taskId
1938
1938
  * @param {*} [options] Override http request option.
1939
1939
  * @throws {RequiredError}
1940
1940
  */
1941
- deleteTaskFactoryTaskIdDelete(taskId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1941
+ deleteTaskFactoryTaskIdDelete(taskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1942
1942
  /**
1943
1943
  *
1944
1944
  * @summary Factory Status
@@ -1949,19 +1949,19 @@ export declare const FoxFactoryApiFp: (configuration?: Configuration) => {
1949
1949
  /**
1950
1950
  * Retrieves the details of a specific build task. This endpoint allows a user to fetch detailed information about a build task by its ID. Access to this endpoint is restricted to users with the \'maintainer\' or \'foxworker\' roles. Depending on the user\'s roles, returned task details may differ. Admin users will receive all task details, while others will have some fields excluded.
1951
1951
  * @summary Get Task
1952
- * @param {any} taskId
1952
+ * @param {string} taskId
1953
1953
  * @param {*} [options] Override http request option.
1954
1954
  * @throws {RequiredError}
1955
1955
  */
1956
- getTaskFactoryTaskIdGet(taskId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BuildTaskResponse>>;
1956
+ getTaskFactoryTaskIdGet(taskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BuildTaskResponse>>;
1957
1957
  /**
1958
1958
  * Get a list of all build tasks. This endpoint retrieves all build tasks from the database and returns them as a list of abbreviated responses. Parameters: device_id (ObjectId, optional): Filter tasks by device ID
1959
1959
  * @summary List Tasks
1960
- * @param { | null} [deviceId]
1960
+ * @param {string | null} [deviceId]
1961
1961
  * @param {*} [options] Override http request option.
1962
1962
  * @throws {RequiredError}
1963
1963
  */
1964
- listTasksFactoryGet(deviceId?: null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BuildTaskShortResponse>>>;
1964
+ listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BuildTaskShortResponse>>>;
1965
1965
  /**
1966
1966
  * Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
1967
1967
  * @summary New Task
@@ -1973,12 +1973,12 @@ export declare const FoxFactoryApiFp: (configuration?: Configuration) => {
1973
1973
  /**
1974
1974
  * Updates an existing build task by its unique identifier. The function allows updates to the task\'s status and logs. If the task\'s status is set to a value indicating completion, the finished timestamp is also updated. Allowed only for foxworker users.
1975
1975
  * @summary Update Task
1976
- * @param {any} taskId
1976
+ * @param {string} taskId
1977
1977
  * @param {TaskUpdateBody} taskUpdateBody
1978
1978
  * @param {*} [options] Override http request option.
1979
1979
  * @throws {RequiredError}
1980
1980
  */
1981
- updateTaskFactoryTaskIdPatch(taskId: any, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1981
+ updateTaskFactoryTaskIdPatch(taskId: string, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1982
1982
  };
1983
1983
  /**
1984
1984
  * FoxFactoryApi - factory interface
@@ -1988,19 +1988,19 @@ export declare const FoxFactoryApiFactory: (configuration?: Configuration, baseP
1988
1988
  /**
1989
1989
  * Cancels a build task given its identifier. The task\'s status is updated to indicate that it is in the process of cancellation. If the task with the specified ID is not found, a 404 HTTP exception is raised.
1990
1990
  * @summary Cancel Task
1991
- * @param {any} taskId
1991
+ * @param {string} taskId
1992
1992
  * @param {*} [options] Override http request option.
1993
1993
  * @throws {RequiredError}
1994
1994
  */
1995
- cancelTaskFactoryTaskIdCancelPost(taskId: any, options?: RawAxiosRequestConfig): AxiosPromise<BuildTaskResponse>;
1995
+ cancelTaskFactoryTaskIdCancelPost(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<BuildTaskResponse>;
1996
1996
  /**
1997
1997
  * Deletes a build task given its identifier. If the task with the specified ID is not found, a 404 HTTP exception is raised.
1998
1998
  * @summary Delete Task
1999
- * @param {any} taskId
1999
+ * @param {string} taskId
2000
2000
  * @param {*} [options] Override http request option.
2001
2001
  * @throws {RequiredError}
2002
2002
  */
2003
- deleteTaskFactoryTaskIdDelete(taskId: any, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2003
+ deleteTaskFactoryTaskIdDelete(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2004
2004
  /**
2005
2005
  *
2006
2006
  * @summary Factory Status
@@ -2011,19 +2011,19 @@ export declare const FoxFactoryApiFactory: (configuration?: Configuration, baseP
2011
2011
  /**
2012
2012
  * Retrieves the details of a specific build task. This endpoint allows a user to fetch detailed information about a build task by its ID. Access to this endpoint is restricted to users with the \'maintainer\' or \'foxworker\' roles. Depending on the user\'s roles, returned task details may differ. Admin users will receive all task details, while others will have some fields excluded.
2013
2013
  * @summary Get Task
2014
- * @param {any} taskId
2014
+ * @param {string} taskId
2015
2015
  * @param {*} [options] Override http request option.
2016
2016
  * @throws {RequiredError}
2017
2017
  */
2018
- getTaskFactoryTaskIdGet(taskId: any, options?: RawAxiosRequestConfig): AxiosPromise<BuildTaskResponse>;
2018
+ getTaskFactoryTaskIdGet(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<BuildTaskResponse>;
2019
2019
  /**
2020
2020
  * Get a list of all build tasks. This endpoint retrieves all build tasks from the database and returns them as a list of abbreviated responses. Parameters: device_id (ObjectId, optional): Filter tasks by device ID
2021
2021
  * @summary List Tasks
2022
- * @param { | null} [deviceId]
2022
+ * @param {string | null} [deviceId]
2023
2023
  * @param {*} [options] Override http request option.
2024
2024
  * @throws {RequiredError}
2025
2025
  */
2026
- listTasksFactoryGet(deviceId?: null, options?: RawAxiosRequestConfig): AxiosPromise<Array<BuildTaskShortResponse>>;
2026
+ listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<BuildTaskShortResponse>>;
2027
2027
  /**
2028
2028
  * Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
2029
2029
  * @summary New Task
@@ -2035,12 +2035,12 @@ export declare const FoxFactoryApiFactory: (configuration?: Configuration, baseP
2035
2035
  /**
2036
2036
  * Updates an existing build task by its unique identifier. The function allows updates to the task\'s status and logs. If the task\'s status is set to a value indicating completion, the finished timestamp is also updated. Allowed only for foxworker users.
2037
2037
  * @summary Update Task
2038
- * @param {any} taskId
2038
+ * @param {string} taskId
2039
2039
  * @param {TaskUpdateBody} taskUpdateBody
2040
2040
  * @param {*} [options] Override http request option.
2041
2041
  * @throws {RequiredError}
2042
2042
  */
2043
- updateTaskFactoryTaskIdPatch(taskId: any, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2043
+ updateTaskFactoryTaskIdPatch(taskId: string, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2044
2044
  };
2045
2045
  /**
2046
2046
  * FoxFactoryApi - interface
@@ -2051,21 +2051,21 @@ export interface FoxFactoryApiInterface {
2051
2051
  /**
2052
2052
  * Cancels a build task given its identifier. The task\'s status is updated to indicate that it is in the process of cancellation. If the task with the specified ID is not found, a 404 HTTP exception is raised.
2053
2053
  * @summary Cancel Task
2054
- * @param {any} taskId
2054
+ * @param {string} taskId
2055
2055
  * @param {*} [options] Override http request option.
2056
2056
  * @throws {RequiredError}
2057
2057
  * @memberof FoxFactoryApiInterface
2058
2058
  */
2059
- cancelTaskFactoryTaskIdCancelPost(taskId: any, options?: RawAxiosRequestConfig): AxiosPromise<BuildTaskResponse>;
2059
+ cancelTaskFactoryTaskIdCancelPost(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<BuildTaskResponse>;
2060
2060
  /**
2061
2061
  * Deletes a build task given its identifier. If the task with the specified ID is not found, a 404 HTTP exception is raised.
2062
2062
  * @summary Delete Task
2063
- * @param {any} taskId
2063
+ * @param {string} taskId
2064
2064
  * @param {*} [options] Override http request option.
2065
2065
  * @throws {RequiredError}
2066
2066
  * @memberof FoxFactoryApiInterface
2067
2067
  */
2068
- deleteTaskFactoryTaskIdDelete(taskId: any, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2068
+ deleteTaskFactoryTaskIdDelete(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2069
2069
  /**
2070
2070
  *
2071
2071
  * @summary Factory Status
@@ -2077,21 +2077,21 @@ export interface FoxFactoryApiInterface {
2077
2077
  /**
2078
2078
  * Retrieves the details of a specific build task. This endpoint allows a user to fetch detailed information about a build task by its ID. Access to this endpoint is restricted to users with the \'maintainer\' or \'foxworker\' roles. Depending on the user\'s roles, returned task details may differ. Admin users will receive all task details, while others will have some fields excluded.
2079
2079
  * @summary Get Task
2080
- * @param {any} taskId
2080
+ * @param {string} taskId
2081
2081
  * @param {*} [options] Override http request option.
2082
2082
  * @throws {RequiredError}
2083
2083
  * @memberof FoxFactoryApiInterface
2084
2084
  */
2085
- getTaskFactoryTaskIdGet(taskId: any, options?: RawAxiosRequestConfig): AxiosPromise<BuildTaskResponse>;
2085
+ getTaskFactoryTaskIdGet(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<BuildTaskResponse>;
2086
2086
  /**
2087
2087
  * Get a list of all build tasks. This endpoint retrieves all build tasks from the database and returns them as a list of abbreviated responses. Parameters: device_id (ObjectId, optional): Filter tasks by device ID
2088
2088
  * @summary List Tasks
2089
- * @param { | null} [deviceId]
2089
+ * @param {string | null} [deviceId]
2090
2090
  * @param {*} [options] Override http request option.
2091
2091
  * @throws {RequiredError}
2092
2092
  * @memberof FoxFactoryApiInterface
2093
2093
  */
2094
- listTasksFactoryGet(deviceId?: null, options?: RawAxiosRequestConfig): AxiosPromise<Array<BuildTaskShortResponse>>;
2094
+ listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<BuildTaskShortResponse>>;
2095
2095
  /**
2096
2096
  * Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
2097
2097
  * @summary New Task
@@ -2104,13 +2104,13 @@ export interface FoxFactoryApiInterface {
2104
2104
  /**
2105
2105
  * Updates an existing build task by its unique identifier. The function allows updates to the task\'s status and logs. If the task\'s status is set to a value indicating completion, the finished timestamp is also updated. Allowed only for foxworker users.
2106
2106
  * @summary Update Task
2107
- * @param {any} taskId
2107
+ * @param {string} taskId
2108
2108
  * @param {TaskUpdateBody} taskUpdateBody
2109
2109
  * @param {*} [options] Override http request option.
2110
2110
  * @throws {RequiredError}
2111
2111
  * @memberof FoxFactoryApiInterface
2112
2112
  */
2113
- updateTaskFactoryTaskIdPatch(taskId: any, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2113
+ updateTaskFactoryTaskIdPatch(taskId: string, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2114
2114
  }
2115
2115
  /**
2116
2116
  * FoxFactoryApi - object-oriented interface
@@ -2122,21 +2122,21 @@ export declare class FoxFactoryApi extends BaseAPI implements FoxFactoryApiInter
2122
2122
  /**
2123
2123
  * Cancels a build task given its identifier. The task\'s status is updated to indicate that it is in the process of cancellation. If the task with the specified ID is not found, a 404 HTTP exception is raised.
2124
2124
  * @summary Cancel Task
2125
- * @param {any} taskId
2125
+ * @param {string} taskId
2126
2126
  * @param {*} [options] Override http request option.
2127
2127
  * @throws {RequiredError}
2128
2128
  * @memberof FoxFactoryApi
2129
2129
  */
2130
- cancelTaskFactoryTaskIdCancelPost(taskId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTaskResponse, any>>;
2130
+ cancelTaskFactoryTaskIdCancelPost(taskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTaskResponse, any>>;
2131
2131
  /**
2132
2132
  * Deletes a build task given its identifier. If the task with the specified ID is not found, a 404 HTTP exception is raised.
2133
2133
  * @summary Delete Task
2134
- * @param {any} taskId
2134
+ * @param {string} taskId
2135
2135
  * @param {*} [options] Override http request option.
2136
2136
  * @throws {RequiredError}
2137
2137
  * @memberof FoxFactoryApi
2138
2138
  */
2139
- deleteTaskFactoryTaskIdDelete(taskId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2139
+ deleteTaskFactoryTaskIdDelete(taskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2140
2140
  /**
2141
2141
  *
2142
2142
  * @summary Factory Status
@@ -2148,21 +2148,21 @@ export declare class FoxFactoryApi extends BaseAPI implements FoxFactoryApiInter
2148
2148
  /**
2149
2149
  * Retrieves the details of a specific build task. This endpoint allows a user to fetch detailed information about a build task by its ID. Access to this endpoint is restricted to users with the \'maintainer\' or \'foxworker\' roles. Depending on the user\'s roles, returned task details may differ. Admin users will receive all task details, while others will have some fields excluded.
2150
2150
  * @summary Get Task
2151
- * @param {any} taskId
2151
+ * @param {string} taskId
2152
2152
  * @param {*} [options] Override http request option.
2153
2153
  * @throws {RequiredError}
2154
2154
  * @memberof FoxFactoryApi
2155
2155
  */
2156
- getTaskFactoryTaskIdGet(taskId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTaskResponse, any>>;
2156
+ getTaskFactoryTaskIdGet(taskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTaskResponse, any>>;
2157
2157
  /**
2158
2158
  * Get a list of all build tasks. This endpoint retrieves all build tasks from the database and returns them as a list of abbreviated responses. Parameters: device_id (ObjectId, optional): Filter tasks by device ID
2159
2159
  * @summary List Tasks
2160
- * @param { | null} [deviceId]
2160
+ * @param {string | null} [deviceId]
2161
2161
  * @param {*} [options] Override http request option.
2162
2162
  * @throws {RequiredError}
2163
2163
  * @memberof FoxFactoryApi
2164
2164
  */
2165
- listTasksFactoryGet(deviceId?: null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTaskShortResponse[], any>>;
2165
+ listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTaskShortResponse[], any>>;
2166
2166
  /**
2167
2167
  * Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
2168
2168
  * @summary New Task
@@ -2175,13 +2175,13 @@ export declare class FoxFactoryApi extends BaseAPI implements FoxFactoryApiInter
2175
2175
  /**
2176
2176
  * Updates an existing build task by its unique identifier. The function allows updates to the task\'s status and logs. If the task\'s status is set to a value indicating completion, the finished timestamp is also updated. Allowed only for foxworker users.
2177
2177
  * @summary Update Task
2178
- * @param {any} taskId
2178
+ * @param {string} taskId
2179
2179
  * @param {TaskUpdateBody} taskUpdateBody
2180
2180
  * @param {*} [options] Override http request option.
2181
2181
  * @throws {RequiredError}
2182
2182
  * @memberof FoxFactoryApi
2183
2183
  */
2184
- updateTaskFactoryTaskIdPatch(taskId: any, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2184
+ updateTaskFactoryTaskIdPatch(taskId: string, taskUpdateBody: TaskUpdateBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2185
2185
  }
2186
2186
  /**
2187
2187
  * GitlabApi - axios parameter creator
@@ -2279,65 +2279,65 @@ export declare const InternalApiAxiosParamCreator: (configuration?: Configuratio
2279
2279
  /**
2280
2280
  * Delete release
2281
2281
  * @summary Del Release
2282
- * @param {any} releaseId
2282
+ * @param {string} releaseId
2283
2283
  * @param {*} [options] Override http request option.
2284
2284
  * @throws {RequiredError}
2285
2285
  */
2286
- delReleaseInternalReleasesReleaseIdDelete: (releaseId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2286
+ delReleaseInternalReleasesReleaseIdDelete: (releaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2287
2287
  /**
2288
2288
  *
2289
2289
  * @summary Delete User
2290
- * @param {any} userId
2290
+ * @param {string} userId
2291
2291
  * @param {*} [options] Override http request option.
2292
2292
  * @throws {RequiredError}
2293
2293
  */
2294
- deleteUserInternalUsersUserIdDelete: (userId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2294
+ deleteUserInternalUsersUserIdDelete: (userId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2295
2295
  /**
2296
2296
  * Edit Release information
2297
2297
  * @summary Edit Release
2298
- * @param {any} releaseId
2298
+ * @param {string} releaseId
2299
2299
  * @param {ReleaseUpdateBody} releaseUpdateBody
2300
2300
  * @param {*} [options] Override http request option.
2301
2301
  * @throws {RequiredError}
2302
2302
  */
2303
- editReleaseInternalReleasesReleaseIdPut: (releaseId: any, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2303
+ editReleaseInternalReleasesReleaseIdPut: (releaseId: string, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2304
2304
  /**
2305
2305
  *
2306
2306
  * @summary Get Device Info
2307
- * @param {any} deviceId
2307
+ * @param {string} deviceId
2308
2308
  * @param {*} [options] Override http request option.
2309
2309
  * @throws {RequiredError}
2310
2310
  */
2311
- getDeviceInfoInternalDevicesDeviceIdGet: (deviceId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2311
+ getDeviceInfoInternalDevicesDeviceIdGet: (deviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2312
2312
  /**
2313
2313
  * Get a paginated list of logs with optional filtering.
2314
2314
  * @summary Get Logs
2315
2315
  * @param {number} [page]
2316
2316
  * @param {number} [perPage]
2317
- * @param { | null} [deviceId]
2318
- * @param { | null} [releaseId]
2319
- * @param { | null} [userId]
2317
+ * @param {string | null} [deviceId]
2318
+ * @param {string | null} [releaseId]
2319
+ * @param {string | null} [userId]
2320
2320
  * @param {boolean | null} [hideVerbose]
2321
2321
  * @param {*} [options] Override http request option.
2322
2322
  * @throws {RequiredError}
2323
2323
  */
2324
- getLogsInternalLogsGet: (page?: number, perPage?: number, deviceId?: null, releaseId?: null, userId?: null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2324
+ getLogsInternalLogsGet: (page?: number, perPage?: number, deviceId?: string | null, releaseId?: string | null, userId?: string | null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2325
2325
  /**
2326
2326
  * Get release information
2327
2327
  * @summary Get Release Info
2328
- * @param {any} releaseId
2328
+ * @param {string} releaseId
2329
2329
  * @param {*} [options] Override http request option.
2330
2330
  * @throws {RequiredError}
2331
2331
  */
2332
- getReleaseInfoInternalReleasesReleaseIdGet: (releaseId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2332
+ getReleaseInfoInternalReleasesReleaseIdGet: (releaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2333
2333
  /**
2334
2334
  * Download release ZIP directly
2335
2335
  * @summary Get Release Zip
2336
- * @param {any} releaseId
2336
+ * @param {string} releaseId
2337
2337
  * @param {*} [options] Override http request option.
2338
2338
  * @throws {RequiredError}
2339
2339
  */
2340
- getReleaseZipInternalReleasesReleaseIdDlGet: (releaseId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2340
+ getReleaseZipInternalReleasesReleaseIdDlGet: (releaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2341
2341
  /**
2342
2342
  *
2343
2343
  * @summary Get User By Id
@@ -2387,7 +2387,7 @@ export declare const InternalApiAxiosParamCreator: (configuration?: Configuratio
2387
2387
  /**
2388
2388
  *
2389
2389
  * @summary New Release
2390
- * @param {any} deviceId
2390
+ * @param {string} deviceId
2391
2391
  * @param {File} releaseZip
2392
2392
  * @param {string} md5
2393
2393
  * @param {Array<string>} changelog
@@ -2397,7 +2397,7 @@ export declare const InternalApiAxiosParamCreator: (configuration?: Configuratio
2397
2397
  * @param {*} [options] Override http request option.
2398
2398
  * @throws {RequiredError}
2399
2399
  */
2400
- newReleaseInternalReleasesPost: (deviceId: any, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2400
+ newReleaseInternalReleasesPost: (deviceId: string, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2401
2401
  /**
2402
2402
  *
2403
2403
  * @summary Renew
@@ -2409,21 +2409,21 @@ export declare const InternalApiAxiosParamCreator: (configuration?: Configuratio
2409
2409
  /**
2410
2410
  *
2411
2411
  * @summary Update Device
2412
- * @param {any} deviceId
2412
+ * @param {string} deviceId
2413
2413
  * @param {DeviceUpdateBody} deviceUpdateBody
2414
2414
  * @param {*} [options] Override http request option.
2415
2415
  * @throws {RequiredError}
2416
2416
  */
2417
- updateDeviceInternalDevicesDeviceIdPut: (deviceId: any, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2417
+ updateDeviceInternalDevicesDeviceIdPut: (deviceId: string, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2418
2418
  /**
2419
2419
  *
2420
2420
  * @summary Update User
2421
- * @param {any} userId
2421
+ * @param {string} userId
2422
2422
  * @param {UserUpdateBody} userUpdateBody
2423
2423
  * @param {*} [options] Override http request option.
2424
2424
  * @throws {RequiredError}
2425
2425
  */
2426
- updateUserInternalUsersUserIdPut: (userId: any, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2426
+ updateUserInternalUsersUserIdPut: (userId: string, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2427
2427
  };
2428
2428
  /**
2429
2429
  * InternalApi - functional programming interface
@@ -2441,65 +2441,65 @@ export declare const InternalApiFp: (configuration?: Configuration) => {
2441
2441
  /**
2442
2442
  * Delete release
2443
2443
  * @summary Del Release
2444
- * @param {any} releaseId
2444
+ * @param {string} releaseId
2445
2445
  * @param {*} [options] Override http request option.
2446
2446
  * @throws {RequiredError}
2447
2447
  */
2448
- delReleaseInternalReleasesReleaseIdDelete(releaseId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2448
+ delReleaseInternalReleasesReleaseIdDelete(releaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2449
2449
  /**
2450
2450
  *
2451
2451
  * @summary Delete User
2452
- * @param {any} userId
2452
+ * @param {string} userId
2453
2453
  * @param {*} [options] Override http request option.
2454
2454
  * @throws {RequiredError}
2455
2455
  */
2456
- deleteUserInternalUsersUserIdDelete(userId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2456
+ deleteUserInternalUsersUserIdDelete(userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2457
2457
  /**
2458
2458
  * Edit Release information
2459
2459
  * @summary Edit Release
2460
- * @param {any} releaseId
2460
+ * @param {string} releaseId
2461
2461
  * @param {ReleaseUpdateBody} releaseUpdateBody
2462
2462
  * @param {*} [options] Override http request option.
2463
2463
  * @throws {RequiredError}
2464
2464
  */
2465
- editReleaseInternalReleasesReleaseIdPut(releaseId: any, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2465
+ editReleaseInternalReleasesReleaseIdPut(releaseId: string, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2466
2466
  /**
2467
2467
  *
2468
2468
  * @summary Get Device Info
2469
- * @param {any} deviceId
2469
+ * @param {string} deviceId
2470
2470
  * @param {*} [options] Override http request option.
2471
2471
  * @throws {RequiredError}
2472
2472
  */
2473
- getDeviceInfoInternalDevicesDeviceIdGet(deviceId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceInternalResponse>>;
2473
+ getDeviceInfoInternalDevicesDeviceIdGet(deviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceInternalResponse>>;
2474
2474
  /**
2475
2475
  * Get a paginated list of logs with optional filtering.
2476
2476
  * @summary Get Logs
2477
2477
  * @param {number} [page]
2478
2478
  * @param {number} [perPage]
2479
- * @param { | null} [deviceId]
2480
- * @param { | null} [releaseId]
2481
- * @param { | null} [userId]
2479
+ * @param {string | null} [deviceId]
2480
+ * @param {string | null} [releaseId]
2481
+ * @param {string | null} [userId]
2482
2482
  * @param {boolean | null} [hideVerbose]
2483
2483
  * @param {*} [options] Override http request option.
2484
2484
  * @throws {RequiredError}
2485
2485
  */
2486
- getLogsInternalLogsGet(page?: number, perPage?: number, deviceId?: null, releaseId?: null, userId?: null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LogListResponse>>;
2486
+ getLogsInternalLogsGet(page?: number, perPage?: number, deviceId?: string | null, releaseId?: string | null, userId?: string | null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LogListResponse>>;
2487
2487
  /**
2488
2488
  * Get release information
2489
2489
  * @summary Get Release Info
2490
- * @param {any} releaseId
2490
+ * @param {string} releaseId
2491
2491
  * @param {*} [options] Override http request option.
2492
2492
  * @throws {RequiredError}
2493
2493
  */
2494
- getReleaseInfoInternalReleasesReleaseIdGet(releaseId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseInternalResponse>>;
2494
+ getReleaseInfoInternalReleasesReleaseIdGet(releaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseInternalResponse>>;
2495
2495
  /**
2496
2496
  * Download release ZIP directly
2497
2497
  * @summary Get Release Zip
2498
- * @param {any} releaseId
2498
+ * @param {string} releaseId
2499
2499
  * @param {*} [options] Override http request option.
2500
2500
  * @throws {RequiredError}
2501
2501
  */
2502
- getReleaseZipInternalReleasesReleaseIdDlGet(releaseId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2502
+ getReleaseZipInternalReleasesReleaseIdDlGet(releaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2503
2503
  /**
2504
2504
  *
2505
2505
  * @summary Get User By Id
@@ -2549,7 +2549,7 @@ export declare const InternalApiFp: (configuration?: Configuration) => {
2549
2549
  /**
2550
2550
  *
2551
2551
  * @summary New Release
2552
- * @param {any} deviceId
2552
+ * @param {string} deviceId
2553
2553
  * @param {File} releaseZip
2554
2554
  * @param {string} md5
2555
2555
  * @param {Array<string>} changelog
@@ -2559,7 +2559,7 @@ export declare const InternalApiFp: (configuration?: Configuration) => {
2559
2559
  * @param {*} [options] Override http request option.
2560
2560
  * @throws {RequiredError}
2561
2561
  */
2562
- newReleaseInternalReleasesPost(deviceId: any, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
2562
+ newReleaseInternalReleasesPost(deviceId: string, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
2563
2563
  /**
2564
2564
  *
2565
2565
  * @summary Renew
@@ -2571,21 +2571,21 @@ export declare const InternalApiFp: (configuration?: Configuration) => {
2571
2571
  /**
2572
2572
  *
2573
2573
  * @summary Update Device
2574
- * @param {any} deviceId
2574
+ * @param {string} deviceId
2575
2575
  * @param {DeviceUpdateBody} deviceUpdateBody
2576
2576
  * @param {*} [options] Override http request option.
2577
2577
  * @throws {RequiredError}
2578
2578
  */
2579
- updateDeviceInternalDevicesDeviceIdPut(deviceId: any, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2579
+ updateDeviceInternalDevicesDeviceIdPut(deviceId: string, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2580
2580
  /**
2581
2581
  *
2582
2582
  * @summary Update User
2583
- * @param {any} userId
2583
+ * @param {string} userId
2584
2584
  * @param {UserUpdateBody} userUpdateBody
2585
2585
  * @param {*} [options] Override http request option.
2586
2586
  * @throws {RequiredError}
2587
2587
  */
2588
- updateUserInternalUsersUserIdPut(userId: any, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2588
+ updateUserInternalUsersUserIdPut(userId: string, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2589
2589
  };
2590
2590
  /**
2591
2591
  * InternalApi - factory interface
@@ -2603,65 +2603,65 @@ export declare const InternalApiFactory: (configuration?: Configuration, basePat
2603
2603
  /**
2604
2604
  * Delete release
2605
2605
  * @summary Del Release
2606
- * @param {any} releaseId
2606
+ * @param {string} releaseId
2607
2607
  * @param {*} [options] Override http request option.
2608
2608
  * @throws {RequiredError}
2609
2609
  */
2610
- delReleaseInternalReleasesReleaseIdDelete(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2610
+ delReleaseInternalReleasesReleaseIdDelete(releaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2611
2611
  /**
2612
2612
  *
2613
2613
  * @summary Delete User
2614
- * @param {any} userId
2614
+ * @param {string} userId
2615
2615
  * @param {*} [options] Override http request option.
2616
2616
  * @throws {RequiredError}
2617
2617
  */
2618
- deleteUserInternalUsersUserIdDelete(userId: any, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2618
+ deleteUserInternalUsersUserIdDelete(userId: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2619
2619
  /**
2620
2620
  * Edit Release information
2621
2621
  * @summary Edit Release
2622
- * @param {any} releaseId
2622
+ * @param {string} releaseId
2623
2623
  * @param {ReleaseUpdateBody} releaseUpdateBody
2624
2624
  * @param {*} [options] Override http request option.
2625
2625
  * @throws {RequiredError}
2626
2626
  */
2627
- editReleaseInternalReleasesReleaseIdPut(releaseId: any, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2627
+ editReleaseInternalReleasesReleaseIdPut(releaseId: string, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2628
2628
  /**
2629
2629
  *
2630
2630
  * @summary Get Device Info
2631
- * @param {any} deviceId
2631
+ * @param {string} deviceId
2632
2632
  * @param {*} [options] Override http request option.
2633
2633
  * @throws {RequiredError}
2634
2634
  */
2635
- getDeviceInfoInternalDevicesDeviceIdGet(deviceId: any, options?: RawAxiosRequestConfig): AxiosPromise<DeviceInternalResponse>;
2635
+ getDeviceInfoInternalDevicesDeviceIdGet(deviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<DeviceInternalResponse>;
2636
2636
  /**
2637
2637
  * Get a paginated list of logs with optional filtering.
2638
2638
  * @summary Get Logs
2639
2639
  * @param {number} [page]
2640
2640
  * @param {number} [perPage]
2641
- * @param { | null} [deviceId]
2642
- * @param { | null} [releaseId]
2643
- * @param { | null} [userId]
2641
+ * @param {string | null} [deviceId]
2642
+ * @param {string | null} [releaseId]
2643
+ * @param {string | null} [userId]
2644
2644
  * @param {boolean | null} [hideVerbose]
2645
2645
  * @param {*} [options] Override http request option.
2646
2646
  * @throws {RequiredError}
2647
2647
  */
2648
- getLogsInternalLogsGet(page?: number, perPage?: number, deviceId?: null, releaseId?: null, userId?: null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig): AxiosPromise<LogListResponse>;
2648
+ getLogsInternalLogsGet(page?: number, perPage?: number, deviceId?: string | null, releaseId?: string | null, userId?: string | null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig): AxiosPromise<LogListResponse>;
2649
2649
  /**
2650
2650
  * Get release information
2651
2651
  * @summary Get Release Info
2652
- * @param {any} releaseId
2652
+ * @param {string} releaseId
2653
2653
  * @param {*} [options] Override http request option.
2654
2654
  * @throws {RequiredError}
2655
2655
  */
2656
- getReleaseInfoInternalReleasesReleaseIdGet(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseInternalResponse>;
2656
+ getReleaseInfoInternalReleasesReleaseIdGet(releaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseInternalResponse>;
2657
2657
  /**
2658
2658
  * Download release ZIP directly
2659
2659
  * @summary Get Release Zip
2660
- * @param {any} releaseId
2660
+ * @param {string} releaseId
2661
2661
  * @param {*} [options] Override http request option.
2662
2662
  * @throws {RequiredError}
2663
2663
  */
2664
- getReleaseZipInternalReleasesReleaseIdDlGet(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2664
+ getReleaseZipInternalReleasesReleaseIdDlGet(releaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2665
2665
  /**
2666
2666
  *
2667
2667
  * @summary Get User By Id
@@ -2711,7 +2711,7 @@ export declare const InternalApiFactory: (configuration?: Configuration, basePat
2711
2711
  /**
2712
2712
  *
2713
2713
  * @summary New Release
2714
- * @param {any} deviceId
2714
+ * @param {string} deviceId
2715
2715
  * @param {File} releaseZip
2716
2716
  * @param {string} md5
2717
2717
  * @param {Array<string>} changelog
@@ -2721,7 +2721,7 @@ export declare const InternalApiFactory: (configuration?: Configuration, basePat
2721
2721
  * @param {*} [options] Override http request option.
2722
2722
  * @throws {RequiredError}
2723
2723
  */
2724
- newReleaseInternalReleasesPost(deviceId: any, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
2724
+ newReleaseInternalReleasesPost(deviceId: string, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
2725
2725
  /**
2726
2726
  *
2727
2727
  * @summary Renew
@@ -2733,21 +2733,21 @@ export declare const InternalApiFactory: (configuration?: Configuration, basePat
2733
2733
  /**
2734
2734
  *
2735
2735
  * @summary Update Device
2736
- * @param {any} deviceId
2736
+ * @param {string} deviceId
2737
2737
  * @param {DeviceUpdateBody} deviceUpdateBody
2738
2738
  * @param {*} [options] Override http request option.
2739
2739
  * @throws {RequiredError}
2740
2740
  */
2741
- updateDeviceInternalDevicesDeviceIdPut(deviceId: any, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2741
+ updateDeviceInternalDevicesDeviceIdPut(deviceId: string, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2742
2742
  /**
2743
2743
  *
2744
2744
  * @summary Update User
2745
- * @param {any} userId
2745
+ * @param {string} userId
2746
2746
  * @param {UserUpdateBody} userUpdateBody
2747
2747
  * @param {*} [options] Override http request option.
2748
2748
  * @throws {RequiredError}
2749
2749
  */
2750
- updateUserInternalUsersUserIdPut(userId: any, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2750
+ updateUserInternalUsersUserIdPut(userId: string, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2751
2751
  };
2752
2752
  /**
2753
2753
  * InternalApi - interface
@@ -2767,72 +2767,72 @@ export interface InternalApiInterface {
2767
2767
  /**
2768
2768
  * Delete release
2769
2769
  * @summary Del Release
2770
- * @param {any} releaseId
2770
+ * @param {string} releaseId
2771
2771
  * @param {*} [options] Override http request option.
2772
2772
  * @throws {RequiredError}
2773
2773
  * @memberof InternalApiInterface
2774
2774
  */
2775
- delReleaseInternalReleasesReleaseIdDelete(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2775
+ delReleaseInternalReleasesReleaseIdDelete(releaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2776
2776
  /**
2777
2777
  *
2778
2778
  * @summary Delete User
2779
- * @param {any} userId
2779
+ * @param {string} userId
2780
2780
  * @param {*} [options] Override http request option.
2781
2781
  * @throws {RequiredError}
2782
2782
  * @memberof InternalApiInterface
2783
2783
  */
2784
- deleteUserInternalUsersUserIdDelete(userId: any, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2784
+ deleteUserInternalUsersUserIdDelete(userId: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2785
2785
  /**
2786
2786
  * Edit Release information
2787
2787
  * @summary Edit Release
2788
- * @param {any} releaseId
2788
+ * @param {string} releaseId
2789
2789
  * @param {ReleaseUpdateBody} releaseUpdateBody
2790
2790
  * @param {*} [options] Override http request option.
2791
2791
  * @throws {RequiredError}
2792
2792
  * @memberof InternalApiInterface
2793
2793
  */
2794
- editReleaseInternalReleasesReleaseIdPut(releaseId: any, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2794
+ editReleaseInternalReleasesReleaseIdPut(releaseId: string, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2795
2795
  /**
2796
2796
  *
2797
2797
  * @summary Get Device Info
2798
- * @param {any} deviceId
2798
+ * @param {string} deviceId
2799
2799
  * @param {*} [options] Override http request option.
2800
2800
  * @throws {RequiredError}
2801
2801
  * @memberof InternalApiInterface
2802
2802
  */
2803
- getDeviceInfoInternalDevicesDeviceIdGet(deviceId: any, options?: RawAxiosRequestConfig): AxiosPromise<DeviceInternalResponse>;
2803
+ getDeviceInfoInternalDevicesDeviceIdGet(deviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<DeviceInternalResponse>;
2804
2804
  /**
2805
2805
  * Get a paginated list of logs with optional filtering.
2806
2806
  * @summary Get Logs
2807
2807
  * @param {number} [page]
2808
2808
  * @param {number} [perPage]
2809
- * @param { | null} [deviceId]
2810
- * @param { | null} [releaseId]
2811
- * @param { | null} [userId]
2809
+ * @param {string | null} [deviceId]
2810
+ * @param {string | null} [releaseId]
2811
+ * @param {string | null} [userId]
2812
2812
  * @param {boolean | null} [hideVerbose]
2813
2813
  * @param {*} [options] Override http request option.
2814
2814
  * @throws {RequiredError}
2815
2815
  * @memberof InternalApiInterface
2816
2816
  */
2817
- getLogsInternalLogsGet(page?: number, perPage?: number, deviceId?: null, releaseId?: null, userId?: null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig): AxiosPromise<LogListResponse>;
2817
+ getLogsInternalLogsGet(page?: number, perPage?: number, deviceId?: string | null, releaseId?: string | null, userId?: string | null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig): AxiosPromise<LogListResponse>;
2818
2818
  /**
2819
2819
  * Get release information
2820
2820
  * @summary Get Release Info
2821
- * @param {any} releaseId
2821
+ * @param {string} releaseId
2822
2822
  * @param {*} [options] Override http request option.
2823
2823
  * @throws {RequiredError}
2824
2824
  * @memberof InternalApiInterface
2825
2825
  */
2826
- getReleaseInfoInternalReleasesReleaseIdGet(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseInternalResponse>;
2826
+ getReleaseInfoInternalReleasesReleaseIdGet(releaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseInternalResponse>;
2827
2827
  /**
2828
2828
  * Download release ZIP directly
2829
2829
  * @summary Get Release Zip
2830
- * @param {any} releaseId
2830
+ * @param {string} releaseId
2831
2831
  * @param {*} [options] Override http request option.
2832
2832
  * @throws {RequiredError}
2833
2833
  * @memberof InternalApiInterface
2834
2834
  */
2835
- getReleaseZipInternalReleasesReleaseIdDlGet(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2835
+ getReleaseZipInternalReleasesReleaseIdDlGet(releaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2836
2836
  /**
2837
2837
  *
2838
2838
  * @summary Get User By Id
@@ -2887,7 +2887,7 @@ export interface InternalApiInterface {
2887
2887
  /**
2888
2888
  *
2889
2889
  * @summary New Release
2890
- * @param {any} deviceId
2890
+ * @param {string} deviceId
2891
2891
  * @param {File} releaseZip
2892
2892
  * @param {string} md5
2893
2893
  * @param {Array<string>} changelog
@@ -2898,7 +2898,7 @@ export interface InternalApiInterface {
2898
2898
  * @throws {RequiredError}
2899
2899
  * @memberof InternalApiInterface
2900
2900
  */
2901
- newReleaseInternalReleasesPost(deviceId: any, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
2901
+ newReleaseInternalReleasesPost(deviceId: string, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
2902
2902
  /**
2903
2903
  *
2904
2904
  * @summary Renew
@@ -2911,23 +2911,23 @@ export interface InternalApiInterface {
2911
2911
  /**
2912
2912
  *
2913
2913
  * @summary Update Device
2914
- * @param {any} deviceId
2914
+ * @param {string} deviceId
2915
2915
  * @param {DeviceUpdateBody} deviceUpdateBody
2916
2916
  * @param {*} [options] Override http request option.
2917
2917
  * @throws {RequiredError}
2918
2918
  * @memberof InternalApiInterface
2919
2919
  */
2920
- updateDeviceInternalDevicesDeviceIdPut(deviceId: any, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2920
+ updateDeviceInternalDevicesDeviceIdPut(deviceId: string, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2921
2921
  /**
2922
2922
  *
2923
2923
  * @summary Update User
2924
- * @param {any} userId
2924
+ * @param {string} userId
2925
2925
  * @param {UserUpdateBody} userUpdateBody
2926
2926
  * @param {*} [options] Override http request option.
2927
2927
  * @throws {RequiredError}
2928
2928
  * @memberof InternalApiInterface
2929
2929
  */
2930
- updateUserInternalUsersUserIdPut(userId: any, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2930
+ updateUserInternalUsersUserIdPut(userId: string, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
2931
2931
  }
2932
2932
  /**
2933
2933
  * InternalApi - object-oriented interface
@@ -2948,72 +2948,72 @@ export declare class InternalApi extends BaseAPI implements InternalApiInterface
2948
2948
  /**
2949
2949
  * Delete release
2950
2950
  * @summary Del Release
2951
- * @param {any} releaseId
2951
+ * @param {string} releaseId
2952
2952
  * @param {*} [options] Override http request option.
2953
2953
  * @throws {RequiredError}
2954
2954
  * @memberof InternalApi
2955
2955
  */
2956
- delReleaseInternalReleasesReleaseIdDelete(releaseId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2956
+ delReleaseInternalReleasesReleaseIdDelete(releaseId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2957
2957
  /**
2958
2958
  *
2959
2959
  * @summary Delete User
2960
- * @param {any} userId
2960
+ * @param {string} userId
2961
2961
  * @param {*} [options] Override http request option.
2962
2962
  * @throws {RequiredError}
2963
2963
  * @memberof InternalApi
2964
2964
  */
2965
- deleteUserInternalUsersUserIdDelete(userId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2965
+ deleteUserInternalUsersUserIdDelete(userId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2966
2966
  /**
2967
2967
  * Edit Release information
2968
2968
  * @summary Edit Release
2969
- * @param {any} releaseId
2969
+ * @param {string} releaseId
2970
2970
  * @param {ReleaseUpdateBody} releaseUpdateBody
2971
2971
  * @param {*} [options] Override http request option.
2972
2972
  * @throws {RequiredError}
2973
2973
  * @memberof InternalApi
2974
2974
  */
2975
- editReleaseInternalReleasesReleaseIdPut(releaseId: any, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2975
+ editReleaseInternalReleasesReleaseIdPut(releaseId: string, releaseUpdateBody: ReleaseUpdateBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
2976
2976
  /**
2977
2977
  *
2978
2978
  * @summary Get Device Info
2979
- * @param {any} deviceId
2979
+ * @param {string} deviceId
2980
2980
  * @param {*} [options] Override http request option.
2981
2981
  * @throws {RequiredError}
2982
2982
  * @memberof InternalApi
2983
2983
  */
2984
- getDeviceInfoInternalDevicesDeviceIdGet(deviceId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceInternalResponse, any>>;
2984
+ getDeviceInfoInternalDevicesDeviceIdGet(deviceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceInternalResponse, any>>;
2985
2985
  /**
2986
2986
  * Get a paginated list of logs with optional filtering.
2987
2987
  * @summary Get Logs
2988
2988
  * @param {number} [page]
2989
2989
  * @param {number} [perPage]
2990
- * @param { | null} [deviceId]
2991
- * @param { | null} [releaseId]
2992
- * @param { | null} [userId]
2990
+ * @param {string | null} [deviceId]
2991
+ * @param {string | null} [releaseId]
2992
+ * @param {string | null} [userId]
2993
2993
  * @param {boolean | null} [hideVerbose]
2994
2994
  * @param {*} [options] Override http request option.
2995
2995
  * @throws {RequiredError}
2996
2996
  * @memberof InternalApi
2997
2997
  */
2998
- getLogsInternalLogsGet(page?: number, perPage?: number, deviceId?: null, releaseId?: null, userId?: null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LogListResponse, any>>;
2998
+ getLogsInternalLogsGet(page?: number, perPage?: number, deviceId?: string | null, releaseId?: string | null, userId?: string | null, hideVerbose?: boolean | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LogListResponse, any>>;
2999
2999
  /**
3000
3000
  * Get release information
3001
3001
  * @summary Get Release Info
3002
- * @param {any} releaseId
3002
+ * @param {string} releaseId
3003
3003
  * @param {*} [options] Override http request option.
3004
3004
  * @throws {RequiredError}
3005
3005
  * @memberof InternalApi
3006
3006
  */
3007
- getReleaseInfoInternalReleasesReleaseIdGet(releaseId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseInternalResponse, any>>;
3007
+ getReleaseInfoInternalReleasesReleaseIdGet(releaseId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseInternalResponse, any>>;
3008
3008
  /**
3009
3009
  * Download release ZIP directly
3010
3010
  * @summary Get Release Zip
3011
- * @param {any} releaseId
3011
+ * @param {string} releaseId
3012
3012
  * @param {*} [options] Override http request option.
3013
3013
  * @throws {RequiredError}
3014
3014
  * @memberof InternalApi
3015
3015
  */
3016
- getReleaseZipInternalReleasesReleaseIdDlGet(releaseId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
3016
+ getReleaseZipInternalReleasesReleaseIdDlGet(releaseId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
3017
3017
  /**
3018
3018
  *
3019
3019
  * @summary Get User By Id
@@ -3068,7 +3068,7 @@ export declare class InternalApi extends BaseAPI implements InternalApiInterface
3068
3068
  /**
3069
3069
  *
3070
3070
  * @summary New Release
3071
- * @param {any} deviceId
3071
+ * @param {string} deviceId
3072
3072
  * @param {File} releaseZip
3073
3073
  * @param {string} md5
3074
3074
  * @param {Array<string>} changelog
@@ -3079,7 +3079,7 @@ export declare class InternalApi extends BaseAPI implements InternalApiInterface
3079
3079
  * @throws {RequiredError}
3080
3080
  * @memberof InternalApi
3081
3081
  */
3082
- newReleaseInternalReleasesPost(deviceId: any, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
3082
+ newReleaseInternalReleasesPost(deviceId: string, releaseZip: File, md5: string, changelog: Array<string>, bugs?: Array<string>, notes?: string | null, force?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
3083
3083
  /**
3084
3084
  *
3085
3085
  * @summary Renew
@@ -3092,23 +3092,23 @@ export declare class InternalApi extends BaseAPI implements InternalApiInterface
3092
3092
  /**
3093
3093
  *
3094
3094
  * @summary Update Device
3095
- * @param {any} deviceId
3095
+ * @param {string} deviceId
3096
3096
  * @param {DeviceUpdateBody} deviceUpdateBody
3097
3097
  * @param {*} [options] Override http request option.
3098
3098
  * @throws {RequiredError}
3099
3099
  * @memberof InternalApi
3100
3100
  */
3101
- updateDeviceInternalDevicesDeviceIdPut(deviceId: any, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
3101
+ updateDeviceInternalDevicesDeviceIdPut(deviceId: string, deviceUpdateBody: DeviceUpdateBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
3102
3102
  /**
3103
3103
  *
3104
3104
  * @summary Update User
3105
- * @param {any} userId
3105
+ * @param {string} userId
3106
3106
  * @param {UserUpdateBody} userUpdateBody
3107
3107
  * @param {*} [options] Override http request option.
3108
3108
  * @throws {RequiredError}
3109
3109
  * @memberof InternalApi
3110
3110
  */
3111
- updateUserInternalUsersUserIdPut(userId: any, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
3111
+ updateUserInternalUsersUserIdPut(userId: string, userUpdateBody: UserUpdateBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
3112
3112
  }
3113
3113
  /**
3114
3114
  * ReleaseApi - axios parameter creator
@@ -3118,37 +3118,37 @@ export declare const ReleaseApiAxiosParamCreator: (configuration?: Configuration
3118
3118
  /**
3119
3119
  * Extended get device method, including the ability to get a device using device codename instead of the ID and Build ID. Example: /device/get?codename=lavender Calling this method without parameters will return the latest available release in the database Warning: the filename identification is deprecated! Use /release/<release_id> instead!
3120
3120
  * @summary Get Release
3121
- * @param { | null} [releaseId] Release ID
3122
- * @param { | null} [id] Release ID (deprecated)
3121
+ * @param {string | null} [releaseId] Release ID
3122
+ * @param {string | null} [id] Release ID (deprecated)
3123
3123
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
3124
3124
  * @param {string | null} [filename]
3125
3125
  * @param {*} [options] Override http request option.
3126
3126
  * @throws {RequiredError}
3127
3127
  */
3128
- getRelease: (releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3128
+ getRelease: (releaseId?: string | null, id?: string | null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3129
3129
  /**
3130
3130
  * Gets release information using the release ID, nothing to discuss really.
3131
3131
  * @summary Get Release Short
3132
- * @param {any} releaseId
3132
+ * @param {string} releaseId
3133
3133
  * @param {*} [options] Override http request option.
3134
3134
  * @deprecated
3135
3135
  * @throws {RequiredError}
3136
3136
  */
3137
- getReleaseDeprecated: (releaseId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3137
+ getReleaseDeprecated: (releaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3138
3138
  /**
3139
3139
  * Lists releases. This method contains a bunch of different parameters to filter releases for different cases. For example, you may use ?after_release_id param to get only releases that came after the last known one (aka get updates). You can filter releases by maintainer_id to get releases from a specific maintainer. This is the maintainer who released the build, not the current maintainer of the device. Getting releases by device codename is obsolete thought. The reason for this is that devices could change codenames eventually. Unfortunately, some OEMs and community make a total mess of them. Please use /device methods to determine the right device (preferably with the user decision), save the device ID somewhere and use it afterward. Version tag is deprecated for the same reason, it\'s not really consistent, as it might contain patch and mod versions and very different by each maintainer.
3140
3140
  * @summary Get Releases
3141
- * @param {Array<any>} [id] Filter by Release IDs
3142
- * @param {Array<any>} [id2] Filter by Release IDs (deprecated)
3141
+ * @param {Array<string>} [id] Filter by Release IDs
3142
+ * @param {Array<string>} [id2] Filter by Release IDs (deprecated)
3143
3143
  * @param {Array<string>} [buildId] Filter by Build IDs
3144
- * @param {Array<any>} [deviceId] Filter by Device IDs
3145
- * @param {Array<any>} [maintainerId] Filter by Maintainer IDs
3144
+ * @param {Array<string>} [deviceId] Filter by Device IDs
3145
+ * @param {Array<string>} [maintainerId] Filter by Maintainer IDs
3146
3146
  * @param {Array<string>} [codename] Filter by device codenames
3147
3147
  * @param {Array<string>} [version] Filter by release version
3148
3148
  * @param {Array<ReleaseType>} [type] Filter by release type
3149
3149
  * @param {boolean | null} [archived] Filter by the archived status
3150
3150
  * @param {boolean | null} [freezed] Filter by the freezed status
3151
- * @param { | null} [afterReleaseId] Show releases after the provided one
3151
+ * @param {string | null} [afterReleaseId] Show releases after the provided one
3152
3152
  * @param {number | null} [afterDate] Show releases after the provided timestamp
3153
3153
  * @param {ReleasesSort} [sort] Sort mode
3154
3154
  * @param {boolean | null} [group] Group releases by version + variant. This will change the response!
@@ -3157,12 +3157,12 @@ export declare const ReleaseApiAxiosParamCreator: (configuration?: Configuration
3157
3157
  * @param {*} [options] Override http request option.
3158
3158
  * @throws {RequiredError}
3159
3159
  */
3160
- getReleases: (id?: Array<any>, id2?: Array<any>, buildId?: Array<string>, deviceId?: Array<any>, maintainerId?: Array<any>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3160
+ getReleases: (id?: Array<string>, id2?: Array<string>, buildId?: Array<string>, deviceId?: Array<string>, maintainerId?: Array<string>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: string | null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3161
3161
  /**
3162
3162
  * Get updates method. Returns all new releases with release IDs. For example, \"/updates/<id>\" will return a list of all releases that were created after. You can also use \"device_id\" or / and \"release_type\" params. The first one will filter releases by specific devices, the second one will filter by release type. This can be useful, for example, if you want to notify users only with stable releases for this specific device. Warning: This method is obsolete! Please use /release/?after_release_id= instead!
3163
3163
  * @summary Get Updates
3164
- * @param {any} lastKnownId
3165
- * @param {Array<any>} [deviceId] Filter by device ID
3164
+ * @param {string} lastKnownId
3165
+ * @param {Array<string>} [deviceId] Filter by device ID
3166
3166
  * @param {Array<ReleaseType>} [type] Filter by release type
3167
3167
  * @param {Array<ReleaseType>} [releaseType] Filter by release type (legacy)
3168
3168
  * @param {number | null} [skip] Skip query results
@@ -3171,7 +3171,7 @@ export declare const ReleaseApiAxiosParamCreator: (configuration?: Configuration
3171
3171
  * @deprecated
3172
3172
  * @throws {RequiredError}
3173
3173
  */
3174
- getUpdatesDeprecated: (lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3174
+ getUpdatesDeprecated: (lastKnownId: string, deviceId?: Array<string>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3175
3175
  };
3176
3176
  /**
3177
3177
  * ReleaseApi - functional programming interface
@@ -3181,37 +3181,37 @@ export declare const ReleaseApiFp: (configuration?: Configuration) => {
3181
3181
  /**
3182
3182
  * Extended get device method, including the ability to get a device using device codename instead of the ID and Build ID. Example: /device/get?codename=lavender Calling this method without parameters will return the latest available release in the database Warning: the filename identification is deprecated! Use /release/<release_id> instead!
3183
3183
  * @summary Get Release
3184
- * @param { | null} [releaseId] Release ID
3185
- * @param { | null} [id] Release ID (deprecated)
3184
+ * @param {string | null} [releaseId] Release ID
3185
+ * @param {string | null} [id] Release ID (deprecated)
3186
3186
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
3187
3187
  * @param {string | null} [filename]
3188
3188
  * @param {*} [options] Override http request option.
3189
3189
  * @throws {RequiredError}
3190
3190
  */
3191
- getRelease(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
3191
+ getRelease(releaseId?: string | null, id?: string | null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
3192
3192
  /**
3193
3193
  * Gets release information using the release ID, nothing to discuss really.
3194
3194
  * @summary Get Release Short
3195
- * @param {any} releaseId
3195
+ * @param {string} releaseId
3196
3196
  * @param {*} [options] Override http request option.
3197
3197
  * @deprecated
3198
3198
  * @throws {RequiredError}
3199
3199
  */
3200
- getReleaseDeprecated(releaseId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
3200
+ getReleaseDeprecated(releaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
3201
3201
  /**
3202
3202
  * Lists releases. This method contains a bunch of different parameters to filter releases for different cases. For example, you may use ?after_release_id param to get only releases that came after the last known one (aka get updates). You can filter releases by maintainer_id to get releases from a specific maintainer. This is the maintainer who released the build, not the current maintainer of the device. Getting releases by device codename is obsolete thought. The reason for this is that devices could change codenames eventually. Unfortunately, some OEMs and community make a total mess of them. Please use /device methods to determine the right device (preferably with the user decision), save the device ID somewhere and use it afterward. Version tag is deprecated for the same reason, it\'s not really consistent, as it might contain patch and mod versions and very different by each maintainer.
3203
3203
  * @summary Get Releases
3204
- * @param {Array<any>} [id] Filter by Release IDs
3205
- * @param {Array<any>} [id2] Filter by Release IDs (deprecated)
3204
+ * @param {Array<string>} [id] Filter by Release IDs
3205
+ * @param {Array<string>} [id2] Filter by Release IDs (deprecated)
3206
3206
  * @param {Array<string>} [buildId] Filter by Build IDs
3207
- * @param {Array<any>} [deviceId] Filter by Device IDs
3208
- * @param {Array<any>} [maintainerId] Filter by Maintainer IDs
3207
+ * @param {Array<string>} [deviceId] Filter by Device IDs
3208
+ * @param {Array<string>} [maintainerId] Filter by Maintainer IDs
3209
3209
  * @param {Array<string>} [codename] Filter by device codenames
3210
3210
  * @param {Array<string>} [version] Filter by release version
3211
3211
  * @param {Array<ReleaseType>} [type] Filter by release type
3212
3212
  * @param {boolean | null} [archived] Filter by the archived status
3213
3213
  * @param {boolean | null} [freezed] Filter by the freezed status
3214
- * @param { | null} [afterReleaseId] Show releases after the provided one
3214
+ * @param {string | null} [afterReleaseId] Show releases after the provided one
3215
3215
  * @param {number | null} [afterDate] Show releases after the provided timestamp
3216
3216
  * @param {ReleasesSort} [sort] Sort mode
3217
3217
  * @param {boolean | null} [group] Group releases by version + variant. This will change the response!
@@ -3220,12 +3220,12 @@ export declare const ReleaseApiFp: (configuration?: Configuration) => {
3220
3220
  * @param {*} [options] Override http request option.
3221
3221
  * @throws {RequiredError}
3222
3222
  */
3223
- getReleases(id?: Array<any>, id2?: Array<any>, buildId?: Array<string>, deviceId?: Array<any>, maintainerId?: Array<any>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseGetReleases>>;
3223
+ getReleases(id?: Array<string>, id2?: Array<string>, buildId?: Array<string>, deviceId?: Array<string>, maintainerId?: Array<string>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: string | null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseGetReleases>>;
3224
3224
  /**
3225
3225
  * Get updates method. Returns all new releases with release IDs. For example, \"/updates/<id>\" will return a list of all releases that were created after. You can also use \"device_id\" or / and \"release_type\" params. The first one will filter releases by specific devices, the second one will filter by release type. This can be useful, for example, if you want to notify users only with stable releases for this specific device. Warning: This method is obsolete! Please use /release/?after_release_id= instead!
3226
3226
  * @summary Get Updates
3227
- * @param {any} lastKnownId
3228
- * @param {Array<any>} [deviceId] Filter by device ID
3227
+ * @param {string} lastKnownId
3228
+ * @param {Array<string>} [deviceId] Filter by device ID
3229
3229
  * @param {Array<ReleaseType>} [type] Filter by release type
3230
3230
  * @param {Array<ReleaseType>} [releaseType] Filter by release type (legacy)
3231
3231
  * @param {number | null} [skip] Skip query results
@@ -3234,7 +3234,7 @@ export declare const ReleaseApiFp: (configuration?: Configuration) => {
3234
3234
  * @deprecated
3235
3235
  * @throws {RequiredError}
3236
3236
  */
3237
- getUpdatesDeprecated(lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseShortReleaseResponse>>;
3237
+ getUpdatesDeprecated(lastKnownId: string, deviceId?: Array<string>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseShortReleaseResponse>>;
3238
3238
  };
3239
3239
  /**
3240
3240
  * ReleaseApi - factory interface
@@ -3244,37 +3244,37 @@ export declare const ReleaseApiFactory: (configuration?: Configuration, basePath
3244
3244
  /**
3245
3245
  * Extended get device method, including the ability to get a device using device codename instead of the ID and Build ID. Example: /device/get?codename=lavender Calling this method without parameters will return the latest available release in the database Warning: the filename identification is deprecated! Use /release/<release_id> instead!
3246
3246
  * @summary Get Release
3247
- * @param { | null} [releaseId] Release ID
3248
- * @param { | null} [id] Release ID (deprecated)
3247
+ * @param {string | null} [releaseId] Release ID
3248
+ * @param {string | null} [id] Release ID (deprecated)
3249
3249
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
3250
3250
  * @param {string | null} [filename]
3251
3251
  * @param {*} [options] Override http request option.
3252
3252
  * @throws {RequiredError}
3253
3253
  */
3254
- getRelease(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
3254
+ getRelease(releaseId?: string | null, id?: string | null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
3255
3255
  /**
3256
3256
  * Gets release information using the release ID, nothing to discuss really.
3257
3257
  * @summary Get Release Short
3258
- * @param {any} releaseId
3258
+ * @param {string} releaseId
3259
3259
  * @param {*} [options] Override http request option.
3260
3260
  * @deprecated
3261
3261
  * @throws {RequiredError}
3262
3262
  */
3263
- getReleaseDeprecated(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
3263
+ getReleaseDeprecated(releaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
3264
3264
  /**
3265
3265
  * Lists releases. This method contains a bunch of different parameters to filter releases for different cases. For example, you may use ?after_release_id param to get only releases that came after the last known one (aka get updates). You can filter releases by maintainer_id to get releases from a specific maintainer. This is the maintainer who released the build, not the current maintainer of the device. Getting releases by device codename is obsolete thought. The reason for this is that devices could change codenames eventually. Unfortunately, some OEMs and community make a total mess of them. Please use /device methods to determine the right device (preferably with the user decision), save the device ID somewhere and use it afterward. Version tag is deprecated for the same reason, it\'s not really consistent, as it might contain patch and mod versions and very different by each maintainer.
3266
3266
  * @summary Get Releases
3267
- * @param {Array<any>} [id] Filter by Release IDs
3268
- * @param {Array<any>} [id2] Filter by Release IDs (deprecated)
3267
+ * @param {Array<string>} [id] Filter by Release IDs
3268
+ * @param {Array<string>} [id2] Filter by Release IDs (deprecated)
3269
3269
  * @param {Array<string>} [buildId] Filter by Build IDs
3270
- * @param {Array<any>} [deviceId] Filter by Device IDs
3271
- * @param {Array<any>} [maintainerId] Filter by Maintainer IDs
3270
+ * @param {Array<string>} [deviceId] Filter by Device IDs
3271
+ * @param {Array<string>} [maintainerId] Filter by Maintainer IDs
3272
3272
  * @param {Array<string>} [codename] Filter by device codenames
3273
3273
  * @param {Array<string>} [version] Filter by release version
3274
3274
  * @param {Array<ReleaseType>} [type] Filter by release type
3275
3275
  * @param {boolean | null} [archived] Filter by the archived status
3276
3276
  * @param {boolean | null} [freezed] Filter by the freezed status
3277
- * @param { | null} [afterReleaseId] Show releases after the provided one
3277
+ * @param {string | null} [afterReleaseId] Show releases after the provided one
3278
3278
  * @param {number | null} [afterDate] Show releases after the provided timestamp
3279
3279
  * @param {ReleasesSort} [sort] Sort mode
3280
3280
  * @param {boolean | null} [group] Group releases by version + variant. This will change the response!
@@ -3283,12 +3283,12 @@ export declare const ReleaseApiFactory: (configuration?: Configuration, basePath
3283
3283
  * @param {*} [options] Override http request option.
3284
3284
  * @throws {RequiredError}
3285
3285
  */
3286
- getReleases(id?: Array<any>, id2?: Array<any>, buildId?: Array<string>, deviceId?: Array<any>, maintainerId?: Array<any>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ResponseGetReleases>;
3286
+ getReleases(id?: Array<string>, id2?: Array<string>, buildId?: Array<string>, deviceId?: Array<string>, maintainerId?: Array<string>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: string | null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ResponseGetReleases>;
3287
3287
  /**
3288
3288
  * Get updates method. Returns all new releases with release IDs. For example, \"/updates/<id>\" will return a list of all releases that were created after. You can also use \"device_id\" or / and \"release_type\" params. The first one will filter releases by specific devices, the second one will filter by release type. This can be useful, for example, if you want to notify users only with stable releases for this specific device. Warning: This method is obsolete! Please use /release/?after_release_id= instead!
3289
3289
  * @summary Get Updates
3290
- * @param {any} lastKnownId
3291
- * @param {Array<any>} [deviceId] Filter by device ID
3290
+ * @param {string} lastKnownId
3291
+ * @param {Array<string>} [deviceId] Filter by device ID
3292
3292
  * @param {Array<ReleaseType>} [type] Filter by release type
3293
3293
  * @param {Array<ReleaseType>} [releaseType] Filter by release type (legacy)
3294
3294
  * @param {number | null} [skip] Skip query results
@@ -3297,7 +3297,7 @@ export declare const ReleaseApiFactory: (configuration?: Configuration, basePath
3297
3297
  * @deprecated
3298
3298
  * @throws {RequiredError}
3299
3299
  */
3300
- getUpdatesDeprecated(lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortReleaseResponse>;
3300
+ getUpdatesDeprecated(lastKnownId: string, deviceId?: Array<string>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortReleaseResponse>;
3301
3301
  };
3302
3302
  /**
3303
3303
  * ReleaseApi - interface
@@ -3308,39 +3308,39 @@ export interface ReleaseApiInterface {
3308
3308
  /**
3309
3309
  * Extended get device method, including the ability to get a device using device codename instead of the ID and Build ID. Example: /device/get?codename=lavender Calling this method without parameters will return the latest available release in the database Warning: the filename identification is deprecated! Use /release/<release_id> instead!
3310
3310
  * @summary Get Release
3311
- * @param { | null} [releaseId] Release ID
3312
- * @param { | null} [id] Release ID (deprecated)
3311
+ * @param {string | null} [releaseId] Release ID
3312
+ * @param {string | null} [id] Release ID (deprecated)
3313
3313
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
3314
3314
  * @param {string | null} [filename]
3315
3315
  * @param {*} [options] Override http request option.
3316
3316
  * @throws {RequiredError}
3317
3317
  * @memberof ReleaseApiInterface
3318
3318
  */
3319
- getRelease(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
3319
+ getRelease(releaseId?: string | null, id?: string | null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
3320
3320
  /**
3321
3321
  * Gets release information using the release ID, nothing to discuss really.
3322
3322
  * @summary Get Release Short
3323
- * @param {any} releaseId
3323
+ * @param {string} releaseId
3324
3324
  * @param {*} [options] Override http request option.
3325
3325
  * @deprecated
3326
3326
  * @throws {RequiredError}
3327
3327
  * @memberof ReleaseApiInterface
3328
3328
  */
3329
- getReleaseDeprecated(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
3329
+ getReleaseDeprecated(releaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
3330
3330
  /**
3331
3331
  * Lists releases. This method contains a bunch of different parameters to filter releases for different cases. For example, you may use ?after_release_id param to get only releases that came after the last known one (aka get updates). You can filter releases by maintainer_id to get releases from a specific maintainer. This is the maintainer who released the build, not the current maintainer of the device. Getting releases by device codename is obsolete thought. The reason for this is that devices could change codenames eventually. Unfortunately, some OEMs and community make a total mess of them. Please use /device methods to determine the right device (preferably with the user decision), save the device ID somewhere and use it afterward. Version tag is deprecated for the same reason, it\'s not really consistent, as it might contain patch and mod versions and very different by each maintainer.
3332
3332
  * @summary Get Releases
3333
- * @param {Array<any>} [id] Filter by Release IDs
3334
- * @param {Array<any>} [id2] Filter by Release IDs (deprecated)
3333
+ * @param {Array<string>} [id] Filter by Release IDs
3334
+ * @param {Array<string>} [id2] Filter by Release IDs (deprecated)
3335
3335
  * @param {Array<string>} [buildId] Filter by Build IDs
3336
- * @param {Array<any>} [deviceId] Filter by Device IDs
3337
- * @param {Array<any>} [maintainerId] Filter by Maintainer IDs
3336
+ * @param {Array<string>} [deviceId] Filter by Device IDs
3337
+ * @param {Array<string>} [maintainerId] Filter by Maintainer IDs
3338
3338
  * @param {Array<string>} [codename] Filter by device codenames
3339
3339
  * @param {Array<string>} [version] Filter by release version
3340
3340
  * @param {Array<ReleaseType>} [type] Filter by release type
3341
3341
  * @param {boolean | null} [archived] Filter by the archived status
3342
3342
  * @param {boolean | null} [freezed] Filter by the freezed status
3343
- * @param { | null} [afterReleaseId] Show releases after the provided one
3343
+ * @param {string | null} [afterReleaseId] Show releases after the provided one
3344
3344
  * @param {number | null} [afterDate] Show releases after the provided timestamp
3345
3345
  * @param {ReleasesSort} [sort] Sort mode
3346
3346
  * @param {boolean | null} [group] Group releases by version + variant. This will change the response!
@@ -3350,12 +3350,12 @@ export interface ReleaseApiInterface {
3350
3350
  * @throws {RequiredError}
3351
3351
  * @memberof ReleaseApiInterface
3352
3352
  */
3353
- getReleases(id?: Array<any>, id2?: Array<any>, buildId?: Array<string>, deviceId?: Array<any>, maintainerId?: Array<any>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ResponseGetReleases>;
3353
+ getReleases(id?: Array<string>, id2?: Array<string>, buildId?: Array<string>, deviceId?: Array<string>, maintainerId?: Array<string>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: string | null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ResponseGetReleases>;
3354
3354
  /**
3355
3355
  * Get updates method. Returns all new releases with release IDs. For example, \"/updates/<id>\" will return a list of all releases that were created after. You can also use \"device_id\" or / and \"release_type\" params. The first one will filter releases by specific devices, the second one will filter by release type. This can be useful, for example, if you want to notify users only with stable releases for this specific device. Warning: This method is obsolete! Please use /release/?after_release_id= instead!
3356
3356
  * @summary Get Updates
3357
- * @param {any} lastKnownId
3358
- * @param {Array<any>} [deviceId] Filter by device ID
3357
+ * @param {string} lastKnownId
3358
+ * @param {Array<string>} [deviceId] Filter by device ID
3359
3359
  * @param {Array<ReleaseType>} [type] Filter by release type
3360
3360
  * @param {Array<ReleaseType>} [releaseType] Filter by release type (legacy)
3361
3361
  * @param {number | null} [skip] Skip query results
@@ -3365,7 +3365,7 @@ export interface ReleaseApiInterface {
3365
3365
  * @throws {RequiredError}
3366
3366
  * @memberof ReleaseApiInterface
3367
3367
  */
3368
- getUpdatesDeprecated(lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortReleaseResponse>;
3368
+ getUpdatesDeprecated(lastKnownId: string, deviceId?: Array<string>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortReleaseResponse>;
3369
3369
  }
3370
3370
  /**
3371
3371
  * ReleaseApi - object-oriented interface
@@ -3377,39 +3377,39 @@ export declare class ReleaseApi extends BaseAPI implements ReleaseApiInterface {
3377
3377
  /**
3378
3378
  * Extended get device method, including the ability to get a device using device codename instead of the ID and Build ID. Example: /device/get?codename=lavender Calling this method without parameters will return the latest available release in the database Warning: the filename identification is deprecated! Use /release/<release_id> instead!
3379
3379
  * @summary Get Release
3380
- * @param { | null} [releaseId] Release ID
3381
- * @param { | null} [id] Release ID (deprecated)
3380
+ * @param {string | null} [releaseId] Release ID
3381
+ * @param {string | null} [id] Release ID (deprecated)
3382
3382
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
3383
3383
  * @param {string | null} [filename]
3384
3384
  * @param {*} [options] Override http request option.
3385
3385
  * @throws {RequiredError}
3386
3386
  * @memberof ReleaseApi
3387
3387
  */
3388
- getRelease(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
3388
+ getRelease(releaseId?: string | null, id?: string | null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
3389
3389
  /**
3390
3390
  * Gets release information using the release ID, nothing to discuss really.
3391
3391
  * @summary Get Release Short
3392
- * @param {any} releaseId
3392
+ * @param {string} releaseId
3393
3393
  * @param {*} [options] Override http request option.
3394
3394
  * @deprecated
3395
3395
  * @throws {RequiredError}
3396
3396
  * @memberof ReleaseApi
3397
3397
  */
3398
- getReleaseDeprecated(releaseId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
3398
+ getReleaseDeprecated(releaseId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
3399
3399
  /**
3400
3400
  * Lists releases. This method contains a bunch of different parameters to filter releases for different cases. For example, you may use ?after_release_id param to get only releases that came after the last known one (aka get updates). You can filter releases by maintainer_id to get releases from a specific maintainer. This is the maintainer who released the build, not the current maintainer of the device. Getting releases by device codename is obsolete thought. The reason for this is that devices could change codenames eventually. Unfortunately, some OEMs and community make a total mess of them. Please use /device methods to determine the right device (preferably with the user decision), save the device ID somewhere and use it afterward. Version tag is deprecated for the same reason, it\'s not really consistent, as it might contain patch and mod versions and very different by each maintainer.
3401
3401
  * @summary Get Releases
3402
- * @param {Array<any>} [id] Filter by Release IDs
3403
- * @param {Array<any>} [id2] Filter by Release IDs (deprecated)
3402
+ * @param {Array<string>} [id] Filter by Release IDs
3403
+ * @param {Array<string>} [id2] Filter by Release IDs (deprecated)
3404
3404
  * @param {Array<string>} [buildId] Filter by Build IDs
3405
- * @param {Array<any>} [deviceId] Filter by Device IDs
3406
- * @param {Array<any>} [maintainerId] Filter by Maintainer IDs
3405
+ * @param {Array<string>} [deviceId] Filter by Device IDs
3406
+ * @param {Array<string>} [maintainerId] Filter by Maintainer IDs
3407
3407
  * @param {Array<string>} [codename] Filter by device codenames
3408
3408
  * @param {Array<string>} [version] Filter by release version
3409
3409
  * @param {Array<ReleaseType>} [type] Filter by release type
3410
3410
  * @param {boolean | null} [archived] Filter by the archived status
3411
3411
  * @param {boolean | null} [freezed] Filter by the freezed status
3412
- * @param { | null} [afterReleaseId] Show releases after the provided one
3412
+ * @param {string | null} [afterReleaseId] Show releases after the provided one
3413
3413
  * @param {number | null} [afterDate] Show releases after the provided timestamp
3414
3414
  * @param {ReleasesSort} [sort] Sort mode
3415
3415
  * @param {boolean | null} [group] Group releases by version + variant. This will change the response!
@@ -3419,12 +3419,12 @@ export declare class ReleaseApi extends BaseAPI implements ReleaseApiInterface {
3419
3419
  * @throws {RequiredError}
3420
3420
  * @memberof ReleaseApi
3421
3421
  */
3422
- getReleases(id?: Array<any>, id2?: Array<any>, buildId?: Array<string>, deviceId?: Array<any>, maintainerId?: Array<any>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseGetReleases, any>>;
3422
+ getReleases(id?: Array<string>, id2?: Array<string>, buildId?: Array<string>, deviceId?: Array<string>, maintainerId?: Array<string>, codename?: Array<string>, version?: Array<string>, type?: Array<ReleaseType>, archived?: boolean | null, freezed?: boolean | null, afterReleaseId?: string | null, afterDate?: number | null, sort?: ReleasesSort, group?: boolean | null, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseGetReleases, any>>;
3423
3423
  /**
3424
3424
  * Get updates method. Returns all new releases with release IDs. For example, \"/updates/<id>\" will return a list of all releases that were created after. You can also use \"device_id\" or / and \"release_type\" params. The first one will filter releases by specific devices, the second one will filter by release type. This can be useful, for example, if you want to notify users only with stable releases for this specific device. Warning: This method is obsolete! Please use /release/?after_release_id= instead!
3425
3425
  * @summary Get Updates
3426
- * @param {any} lastKnownId
3427
- * @param {Array<any>} [deviceId] Filter by device ID
3426
+ * @param {string} lastKnownId
3427
+ * @param {Array<string>} [deviceId] Filter by device ID
3428
3428
  * @param {Array<ReleaseType>} [type] Filter by release type
3429
3429
  * @param {Array<ReleaseType>} [releaseType] Filter by release type (legacy)
3430
3430
  * @param {number | null} [skip] Skip query results
@@ -3434,7 +3434,7 @@ export declare class ReleaseApi extends BaseAPI implements ReleaseApiInterface {
3434
3434
  * @throws {RequiredError}
3435
3435
  * @memberof ReleaseApi
3436
3436
  */
3437
- getUpdatesDeprecated(lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListResponseShortReleaseResponse, any>>;
3437
+ getUpdatesDeprecated(lastKnownId: string, deviceId?: Array<string>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListResponseShortReleaseResponse, any>>;
3438
3438
  }
3439
3439
  /**
3440
3440
  * StatsApi - axios parameter creator