@orangefox-recovery/foxclient 5.1.1 → 5.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/api.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Fox API
3
- * Warning: Please add a custom \'X-FoxAPI-App=MyAppName\' 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 20 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
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.1.1
5
+ * The version of the OpenAPI document: 5.2.1
6
6
  * Contact: admin@orangefox.tech
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -438,13 +438,13 @@ export type ReleasesSort = typeof ReleasesSort[keyof typeof ReleasesSort];
438
438
  /**
439
439
  *
440
440
  * @export
441
- * @interface ResponseGetReleasesReleasesGet
441
+ * @interface ResponseGetReleases
442
442
  */
443
- export interface ResponseGetReleasesReleasesGet {
443
+ export interface ResponseGetReleases {
444
444
  /**
445
445
  *
446
446
  * @type {{ [key: string]: Array<ReleaseResponse>; }}
447
- * @memberof ResponseGetReleasesReleasesGet
447
+ * @memberof ResponseGetReleases
448
448
  */
449
449
  'data': {
450
450
  [key: string]: Array<ReleaseResponse>;
@@ -452,7 +452,7 @@ export interface ResponseGetReleasesReleasesGet {
452
452
  /**
453
453
  *
454
454
  * @type {number}
455
- * @memberof ResponseGetReleasesReleasesGet
455
+ * @memberof ResponseGetReleases
456
456
  */
457
457
  'count': number;
458
458
  }
@@ -651,26 +651,27 @@ export interface ValidationErrorLocInner {
651
651
  */
652
652
  export declare const DeviceApiAxiosParamCreator: (configuration?: Configuration) => {
653
653
  /**
654
- * Gets device info using device ID.
654
+ * 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.
655
655
  * @summary Get Device
656
- * @param {string} deviceId
656
+ * @param { | null} [deviceId]
657
+ * @param { | null} [id] Filter by Device ID (deprecated)
658
+ * @param {string | null} [codename] Not recommended to use when you can
657
659
  * @param {*} [options] Override http request option.
658
660
  * @throws {RequiredError}
659
661
  */
660
- getDeviceDevicesDeviceIdGet: (deviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
662
+ getDevice: (deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
661
663
  /**
662
- * 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.
663
- * @summary Get Device Extended
664
- * @param { | null} [deviceId]
665
- * @param { | null} [id] Filter by Device ID (deprecated)
666
- * @param {string | null} [codename] Not recommended to use when you can
664
+ * Gets device info using device ID.
665
+ * @summary Get Device Short
666
+ * @param {string} deviceId
667
667
  * @param {*} [options] Override http request option.
668
+ * @deprecated
668
669
  * @throws {RequiredError}
669
670
  */
670
- getDeviceExtendedDevicesGetGet: (deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
671
+ getDeviceDeprecated: (deviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
671
672
  /**
672
673
  * 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.
673
- * @summary Get Devices List
674
+ * @summary Get Devices
674
675
  * @param {Array<any>} [id] Filter by Device IDs
675
676
  * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
676
677
  * @param {Array<string>} [oemName] Filter by OEM names
@@ -685,14 +686,14 @@ export declare const DeviceApiAxiosParamCreator: (configuration?: Configuration)
685
686
  * @param {*} [options] Override http request option.
686
687
  * @throws {RequiredError}
687
688
  */
688
- getDevicesListDevicesGet: (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>;
689
+ 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>;
689
690
  /**
690
691
  * Lists all OEM names
691
- * @summary Get Oems List
692
+ * @summary Get Oems
692
693
  * @param {*} [options] Override http request option.
693
694
  * @throws {RequiredError}
694
695
  */
695
- getOemsListOemsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
696
+ getOems: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
696
697
  };
697
698
  /**
698
699
  * DeviceApi - functional programming interface
@@ -700,26 +701,27 @@ export declare const DeviceApiAxiosParamCreator: (configuration?: Configuration)
700
701
  */
701
702
  export declare const DeviceApiFp: (configuration?: Configuration) => {
702
703
  /**
703
- * Gets device info using device ID.
704
+ * 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.
704
705
  * @summary Get Device
705
- * @param {string} deviceId
706
+ * @param { | null} [deviceId]
707
+ * @param { | null} [id] Filter by Device ID (deprecated)
708
+ * @param {string | null} [codename] Not recommended to use when you can
706
709
  * @param {*} [options] Override http request option.
707
710
  * @throws {RequiredError}
708
711
  */
709
- getDeviceDevicesDeviceIdGet(deviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceResponse>>;
712
+ getDevice(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceResponse>>;
710
713
  /**
711
- * 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.
712
- * @summary Get Device Extended
713
- * @param { | null} [deviceId]
714
- * @param { | null} [id] Filter by Device ID (deprecated)
715
- * @param {string | null} [codename] Not recommended to use when you can
714
+ * Gets device info using device ID.
715
+ * @summary Get Device Short
716
+ * @param {string} deviceId
716
717
  * @param {*} [options] Override http request option.
718
+ * @deprecated
717
719
  * @throws {RequiredError}
718
720
  */
719
- getDeviceExtendedDevicesGetGet(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceResponse>>;
721
+ getDeviceDeprecated(deviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceResponse>>;
720
722
  /**
721
723
  * 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.
722
- * @summary Get Devices List
724
+ * @summary Get Devices
723
725
  * @param {Array<any>} [id] Filter by Device IDs
724
726
  * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
725
727
  * @param {Array<string>} [oemName] Filter by OEM names
@@ -734,14 +736,14 @@ export declare const DeviceApiFp: (configuration?: Configuration) => {
734
736
  * @param {*} [options] Override http request option.
735
737
  * @throws {RequiredError}
736
738
  */
737
- getDevicesListDevicesGet(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>>;
739
+ 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>>;
738
740
  /**
739
741
  * Lists all OEM names
740
- * @summary Get Oems List
742
+ * @summary Get Oems
741
743
  * @param {*} [options] Override http request option.
742
744
  * @throws {RequiredError}
743
745
  */
744
- getOemsListOemsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseStr>>;
746
+ getOems(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseStr>>;
745
747
  };
746
748
  /**
747
749
  * DeviceApi - factory interface
@@ -749,26 +751,27 @@ export declare const DeviceApiFp: (configuration?: Configuration) => {
749
751
  */
750
752
  export declare const DeviceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
751
753
  /**
752
- * Gets device info using device ID.
754
+ * 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.
753
755
  * @summary Get Device
754
- * @param {string} deviceId
756
+ * @param { | null} [deviceId]
757
+ * @param { | null} [id] Filter by Device ID (deprecated)
758
+ * @param {string | null} [codename] Not recommended to use when you can
755
759
  * @param {*} [options] Override http request option.
756
760
  * @throws {RequiredError}
757
761
  */
758
- getDeviceDevicesDeviceIdGet(deviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
762
+ getDevice(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
759
763
  /**
760
- * 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.
761
- * @summary Get Device Extended
762
- * @param { | null} [deviceId]
763
- * @param { | null} [id] Filter by Device ID (deprecated)
764
- * @param {string | null} [codename] Not recommended to use when you can
764
+ * Gets device info using device ID.
765
+ * @summary Get Device Short
766
+ * @param {string} deviceId
765
767
  * @param {*} [options] Override http request option.
768
+ * @deprecated
766
769
  * @throws {RequiredError}
767
770
  */
768
- getDeviceExtendedDevicesGetGet(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
771
+ getDeviceDeprecated(deviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
769
772
  /**
770
773
  * 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.
771
- * @summary Get Devices List
774
+ * @summary Get Devices
772
775
  * @param {Array<any>} [id] Filter by Device IDs
773
776
  * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
774
777
  * @param {Array<string>} [oemName] Filter by OEM names
@@ -783,14 +786,14 @@ export declare const DeviceApiFactory: (configuration?: Configuration, basePath?
783
786
  * @param {*} [options] Override http request option.
784
787
  * @throws {RequiredError}
785
788
  */
786
- getDevicesListDevicesGet(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>;
789
+ 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>;
787
790
  /**
788
791
  * Lists all OEM names
789
- * @summary Get Oems List
792
+ * @summary Get Oems
790
793
  * @param {*} [options] Override http request option.
791
794
  * @throws {RequiredError}
792
795
  */
793
- getOemsListOemsGet(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseStr>;
796
+ getOems(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseStr>;
794
797
  };
795
798
  /**
796
799
  * DeviceApi - interface
@@ -799,28 +802,29 @@ export declare const DeviceApiFactory: (configuration?: Configuration, basePath?
799
802
  */
800
803
  export interface DeviceApiInterface {
801
804
  /**
802
- * Gets device info using device ID.
805
+ * 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.
803
806
  * @summary Get Device
804
- * @param {string} deviceId
807
+ * @param { | null} [deviceId]
808
+ * @param { | null} [id] Filter by Device ID (deprecated)
809
+ * @param {string | null} [codename] Not recommended to use when you can
805
810
  * @param {*} [options] Override http request option.
806
811
  * @throws {RequiredError}
807
812
  * @memberof DeviceApiInterface
808
813
  */
809
- getDeviceDevicesDeviceIdGet(deviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
814
+ getDevice(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
810
815
  /**
811
- * 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.
812
- * @summary Get Device Extended
813
- * @param { | null} [deviceId]
814
- * @param { | null} [id] Filter by Device ID (deprecated)
815
- * @param {string | null} [codename] Not recommended to use when you can
816
+ * Gets device info using device ID.
817
+ * @summary Get Device Short
818
+ * @param {string} deviceId
816
819
  * @param {*} [options] Override http request option.
820
+ * @deprecated
817
821
  * @throws {RequiredError}
818
822
  * @memberof DeviceApiInterface
819
823
  */
820
- getDeviceExtendedDevicesGetGet(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
824
+ getDeviceDeprecated(deviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<DeviceResponse>;
821
825
  /**
822
826
  * 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.
823
- * @summary Get Devices List
827
+ * @summary Get Devices
824
828
  * @param {Array<any>} [id] Filter by Device IDs
825
829
  * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
826
830
  * @param {Array<string>} [oemName] Filter by OEM names
@@ -836,15 +840,15 @@ export interface DeviceApiInterface {
836
840
  * @throws {RequiredError}
837
841
  * @memberof DeviceApiInterface
838
842
  */
839
- getDevicesListDevicesGet(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>;
843
+ 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>;
840
844
  /**
841
845
  * Lists all OEM names
842
- * @summary Get Oems List
846
+ * @summary Get Oems
843
847
  * @param {*} [options] Override http request option.
844
848
  * @throws {RequiredError}
845
849
  * @memberof DeviceApiInterface
846
850
  */
847
- getOemsListOemsGet(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseStr>;
851
+ getOems(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseStr>;
848
852
  }
849
853
  /**
850
854
  * DeviceApi - object-oriented interface
@@ -854,28 +858,29 @@ export interface DeviceApiInterface {
854
858
  */
855
859
  export declare class DeviceApi extends BaseAPI implements DeviceApiInterface {
856
860
  /**
857
- * Gets device info using device ID.
861
+ * 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.
858
862
  * @summary Get Device
859
- * @param {string} deviceId
863
+ * @param { | null} [deviceId]
864
+ * @param { | null} [id] Filter by Device ID (deprecated)
865
+ * @param {string | null} [codename] Not recommended to use when you can
860
866
  * @param {*} [options] Override http request option.
861
867
  * @throws {RequiredError}
862
868
  * @memberof DeviceApi
863
869
  */
864
- getDeviceDevicesDeviceIdGet(deviceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceResponse, any>>;
870
+ getDevice(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceResponse, any>>;
865
871
  /**
866
- * 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.
867
- * @summary Get Device Extended
868
- * @param { | null} [deviceId]
869
- * @param { | null} [id] Filter by Device ID (deprecated)
870
- * @param {string | null} [codename] Not recommended to use when you can
872
+ * Gets device info using device ID.
873
+ * @summary Get Device Short
874
+ * @param {string} deviceId
871
875
  * @param {*} [options] Override http request option.
876
+ * @deprecated
872
877
  * @throws {RequiredError}
873
878
  * @memberof DeviceApi
874
879
  */
875
- getDeviceExtendedDevicesGetGet(deviceId?: null, id?: null, codename?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceResponse, any>>;
880
+ getDeviceDeprecated(deviceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceResponse, any>>;
876
881
  /**
877
882
  * 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.
878
- * @summary Get Devices List
883
+ * @summary Get Devices
879
884
  * @param {Array<any>} [id] Filter by Device IDs
880
885
  * @param {Array<any>} [id2] Filter by Device IDs (deprecated)
881
886
  * @param {Array<string>} [oemName] Filter by OEM names
@@ -891,15 +896,15 @@ export declare class DeviceApi extends BaseAPI implements DeviceApiInterface {
891
896
  * @throws {RequiredError}
892
897
  * @memberof DeviceApi
893
898
  */
894
- getDevicesListDevicesGet(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>>;
899
+ 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>>;
895
900
  /**
896
901
  * Lists all OEM names
897
- * @summary Get Oems List
902
+ * @summary Get Oems
898
903
  * @param {*} [options] Override http request option.
899
904
  * @throws {RequiredError}
900
905
  * @memberof DeviceApi
901
906
  */
902
- getOemsListOemsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListResponseStr, any>>;
907
+ getOems(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListResponseStr, any>>;
903
908
  }
904
909
  /**
905
910
  * ReleaseApi - axios parameter creator
@@ -908,7 +913,7 @@ export declare class DeviceApi extends BaseAPI implements DeviceApiInterface {
908
913
  export declare const ReleaseApiAxiosParamCreator: (configuration?: Configuration) => {
909
914
  /**
910
915
  * 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!
911
- * @summary Get Release Extended
916
+ * @summary Get Release
912
917
  * @param { | null} [releaseId] Release ID
913
918
  * @param { | null} [id] Release ID (deprecated)
914
919
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
@@ -916,15 +921,16 @@ export declare const ReleaseApiAxiosParamCreator: (configuration?: Configuration
916
921
  * @param {*} [options] Override http request option.
917
922
  * @throws {RequiredError}
918
923
  */
919
- getReleaseExtendedReleasesGetGet: (releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
924
+ getRelease: (releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
920
925
  /**
921
926
  * Gets release information using the release ID, nothing to discuss really.
922
- * @summary Get Release
927
+ * @summary Get Release Short
923
928
  * @param {any} releaseId
924
929
  * @param {*} [options] Override http request option.
930
+ * @deprecated
925
931
  * @throws {RequiredError}
926
932
  */
927
- getReleaseReleasesReleaseIdGet: (releaseId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
933
+ getReleaseDeprecated: (releaseId: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
928
934
  /**
929
935
  * 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.
930
936
  * @summary Get Releases
@@ -947,7 +953,7 @@ export declare const ReleaseApiAxiosParamCreator: (configuration?: Configuration
947
953
  * @param {*} [options] Override http request option.
948
954
  * @throws {RequiredError}
949
955
  */
950
- getReleasesReleasesGet: (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>;
956
+ 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>;
951
957
  /**
952
958
  * 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!
953
959
  * @summary Get Updates
@@ -961,7 +967,7 @@ export declare const ReleaseApiAxiosParamCreator: (configuration?: Configuration
961
967
  * @deprecated
962
968
  * @throws {RequiredError}
963
969
  */
964
- getUpdatesUpdatesLastKnownIdGet: (lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
970
+ getUpdatesDeprecated: (lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
965
971
  };
966
972
  /**
967
973
  * ReleaseApi - functional programming interface
@@ -970,7 +976,7 @@ export declare const ReleaseApiAxiosParamCreator: (configuration?: Configuration
970
976
  export declare const ReleaseApiFp: (configuration?: Configuration) => {
971
977
  /**
972
978
  * 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!
973
- * @summary Get Release Extended
979
+ * @summary Get Release
974
980
  * @param { | null} [releaseId] Release ID
975
981
  * @param { | null} [id] Release ID (deprecated)
976
982
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
@@ -978,15 +984,16 @@ export declare const ReleaseApiFp: (configuration?: Configuration) => {
978
984
  * @param {*} [options] Override http request option.
979
985
  * @throws {RequiredError}
980
986
  */
981
- getReleaseExtendedReleasesGetGet(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
987
+ getRelease(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
982
988
  /**
983
989
  * Gets release information using the release ID, nothing to discuss really.
984
- * @summary Get Release
990
+ * @summary Get Release Short
985
991
  * @param {any} releaseId
986
992
  * @param {*} [options] Override http request option.
993
+ * @deprecated
987
994
  * @throws {RequiredError}
988
995
  */
989
- getReleaseReleasesReleaseIdGet(releaseId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
996
+ getReleaseDeprecated(releaseId: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReleaseResponse>>;
990
997
  /**
991
998
  * 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.
992
999
  * @summary Get Releases
@@ -1009,7 +1016,7 @@ export declare const ReleaseApiFp: (configuration?: Configuration) => {
1009
1016
  * @param {*} [options] Override http request option.
1010
1017
  * @throws {RequiredError}
1011
1018
  */
1012
- getReleasesReleasesGet(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<ResponseGetReleasesReleasesGet>>;
1019
+ 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>>;
1013
1020
  /**
1014
1021
  * 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!
1015
1022
  * @summary Get Updates
@@ -1023,7 +1030,7 @@ export declare const ReleaseApiFp: (configuration?: Configuration) => {
1023
1030
  * @deprecated
1024
1031
  * @throws {RequiredError}
1025
1032
  */
1026
- getUpdatesUpdatesLastKnownIdGet(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>>;
1033
+ 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>>;
1027
1034
  };
1028
1035
  /**
1029
1036
  * ReleaseApi - factory interface
@@ -1032,7 +1039,7 @@ export declare const ReleaseApiFp: (configuration?: Configuration) => {
1032
1039
  export declare const ReleaseApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1033
1040
  /**
1034
1041
  * 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!
1035
- * @summary Get Release Extended
1042
+ * @summary Get Release
1036
1043
  * @param { | null} [releaseId] Release ID
1037
1044
  * @param { | null} [id] Release ID (deprecated)
1038
1045
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
@@ -1040,15 +1047,16 @@ export declare const ReleaseApiFactory: (configuration?: Configuration, basePath
1040
1047
  * @param {*} [options] Override http request option.
1041
1048
  * @throws {RequiredError}
1042
1049
  */
1043
- getReleaseExtendedReleasesGetGet(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
1050
+ getRelease(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
1044
1051
  /**
1045
1052
  * Gets release information using the release ID, nothing to discuss really.
1046
- * @summary Get Release
1053
+ * @summary Get Release Short
1047
1054
  * @param {any} releaseId
1048
1055
  * @param {*} [options] Override http request option.
1056
+ * @deprecated
1049
1057
  * @throws {RequiredError}
1050
1058
  */
1051
- getReleaseReleasesReleaseIdGet(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
1059
+ getReleaseDeprecated(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
1052
1060
  /**
1053
1061
  * 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.
1054
1062
  * @summary Get Releases
@@ -1071,7 +1079,7 @@ export declare const ReleaseApiFactory: (configuration?: Configuration, basePath
1071
1079
  * @param {*} [options] Override http request option.
1072
1080
  * @throws {RequiredError}
1073
1081
  */
1074
- getReleasesReleasesGet(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<ResponseGetReleasesReleasesGet>;
1082
+ 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>;
1075
1083
  /**
1076
1084
  * 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!
1077
1085
  * @summary Get Updates
@@ -1085,7 +1093,7 @@ export declare const ReleaseApiFactory: (configuration?: Configuration, basePath
1085
1093
  * @deprecated
1086
1094
  * @throws {RequiredError}
1087
1095
  */
1088
- getUpdatesUpdatesLastKnownIdGet(lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortReleaseResponse>;
1096
+ getUpdatesDeprecated(lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortReleaseResponse>;
1089
1097
  };
1090
1098
  /**
1091
1099
  * ReleaseApi - interface
@@ -1095,7 +1103,7 @@ export declare const ReleaseApiFactory: (configuration?: Configuration, basePath
1095
1103
  export interface ReleaseApiInterface {
1096
1104
  /**
1097
1105
  * 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!
1098
- * @summary Get Release Extended
1106
+ * @summary Get Release
1099
1107
  * @param { | null} [releaseId] Release ID
1100
1108
  * @param { | null} [id] Release ID (deprecated)
1101
1109
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
@@ -1104,16 +1112,17 @@ export interface ReleaseApiInterface {
1104
1112
  * @throws {RequiredError}
1105
1113
  * @memberof ReleaseApiInterface
1106
1114
  */
1107
- getReleaseExtendedReleasesGetGet(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
1115
+ getRelease(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
1108
1116
  /**
1109
1117
  * Gets release information using the release ID, nothing to discuss really.
1110
- * @summary Get Release
1118
+ * @summary Get Release Short
1111
1119
  * @param {any} releaseId
1112
1120
  * @param {*} [options] Override http request option.
1121
+ * @deprecated
1113
1122
  * @throws {RequiredError}
1114
1123
  * @memberof ReleaseApiInterface
1115
1124
  */
1116
- getReleaseReleasesReleaseIdGet(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
1125
+ getReleaseDeprecated(releaseId: any, options?: RawAxiosRequestConfig): AxiosPromise<ReleaseResponse>;
1117
1126
  /**
1118
1127
  * 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.
1119
1128
  * @summary Get Releases
@@ -1137,7 +1146,7 @@ export interface ReleaseApiInterface {
1137
1146
  * @throws {RequiredError}
1138
1147
  * @memberof ReleaseApiInterface
1139
1148
  */
1140
- getReleasesReleasesGet(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<ResponseGetReleasesReleasesGet>;
1149
+ 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>;
1141
1150
  /**
1142
1151
  * 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!
1143
1152
  * @summary Get Updates
@@ -1152,7 +1161,7 @@ export interface ReleaseApiInterface {
1152
1161
  * @throws {RequiredError}
1153
1162
  * @memberof ReleaseApiInterface
1154
1163
  */
1155
- getUpdatesUpdatesLastKnownIdGet(lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortReleaseResponse>;
1164
+ getUpdatesDeprecated(lastKnownId: any, deviceId?: Array<any>, type?: Array<ReleaseType>, releaseType?: Array<ReleaseType>, skip?: number | null, limit?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseShortReleaseResponse>;
1156
1165
  }
1157
1166
  /**
1158
1167
  * ReleaseApi - object-oriented interface
@@ -1163,7 +1172,7 @@ export interface ReleaseApiInterface {
1163
1172
  export declare class ReleaseApi extends BaseAPI implements ReleaseApiInterface {
1164
1173
  /**
1165
1174
  * 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!
1166
- * @summary Get Release Extended
1175
+ * @summary Get Release
1167
1176
  * @param { | null} [releaseId] Release ID
1168
1177
  * @param { | null} [id] Release ID (deprecated)
1169
1178
  * @param {string | null} [buildId] Build ID, &#x60;ro.build.fox_id&#x60; prop
@@ -1172,16 +1181,17 @@ export declare class ReleaseApi extends BaseAPI implements ReleaseApiInterface {
1172
1181
  * @throws {RequiredError}
1173
1182
  * @memberof ReleaseApi
1174
1183
  */
1175
- getReleaseExtendedReleasesGetGet(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
1184
+ getRelease(releaseId?: null, id?: null, buildId?: string | null, filename?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
1176
1185
  /**
1177
1186
  * Gets release information using the release ID, nothing to discuss really.
1178
- * @summary Get Release
1187
+ * @summary Get Release Short
1179
1188
  * @param {any} releaseId
1180
1189
  * @param {*} [options] Override http request option.
1190
+ * @deprecated
1181
1191
  * @throws {RequiredError}
1182
1192
  * @memberof ReleaseApi
1183
1193
  */
1184
- getReleaseReleasesReleaseIdGet(releaseId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
1194
+ getReleaseDeprecated(releaseId: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReleaseResponse, any>>;
1185
1195
  /**
1186
1196
  * 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.
1187
1197
  * @summary Get Releases
@@ -1205,7 +1215,7 @@ export declare class ReleaseApi extends BaseAPI implements ReleaseApiInterface {
1205
1215
  * @throws {RequiredError}
1206
1216
  * @memberof ReleaseApi
1207
1217
  */
1208
- getReleasesReleasesGet(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<ResponseGetReleasesReleasesGet, any>>;
1218
+ 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>>;
1209
1219
  /**
1210
1220
  * 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!
1211
1221
  * @summary Get Updates
@@ -1220,7 +1230,7 @@ export declare class ReleaseApi extends BaseAPI implements ReleaseApiInterface {
1220
1230
  * @throws {RequiredError}
1221
1231
  * @memberof ReleaseApi
1222
1232
  */
1223
- getUpdatesUpdatesLastKnownIdGet(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>>;
1233
+ 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>>;
1224
1234
  }
1225
1235
  /**
1226
1236
  * StatsApi - axios parameter creator
@@ -1233,7 +1243,7 @@ export declare const StatsApiAxiosParamCreator: (configuration?: Configuration)
1233
1243
  * @param {*} [options] Override http request option.
1234
1244
  * @throws {RequiredError}
1235
1245
  */
1236
- publicStatsStatsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1246
+ getPublicStats: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1237
1247
  };
1238
1248
  /**
1239
1249
  * StatsApi - functional programming interface
@@ -1246,7 +1256,7 @@ export declare const StatsApiFp: (configuration?: Configuration) => {
1246
1256
  * @param {*} [options] Override http request option.
1247
1257
  * @throws {RequiredError}
1248
1258
  */
1249
- publicStatsStatsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GlobalStatsAggregationModel>>;
1259
+ getPublicStats(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GlobalStatsAggregationModel>>;
1250
1260
  };
1251
1261
  /**
1252
1262
  * StatsApi - factory interface
@@ -1259,7 +1269,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
1259
1269
  * @param {*} [options] Override http request option.
1260
1270
  * @throws {RequiredError}
1261
1271
  */
1262
- publicStatsStatsGet(options?: RawAxiosRequestConfig): AxiosPromise<GlobalStatsAggregationModel>;
1272
+ getPublicStats(options?: RawAxiosRequestConfig): AxiosPromise<GlobalStatsAggregationModel>;
1263
1273
  };
1264
1274
  /**
1265
1275
  * StatsApi - interface
@@ -1274,7 +1284,7 @@ export interface StatsApiInterface {
1274
1284
  * @throws {RequiredError}
1275
1285
  * @memberof StatsApiInterface
1276
1286
  */
1277
- publicStatsStatsGet(options?: RawAxiosRequestConfig): AxiosPromise<GlobalStatsAggregationModel>;
1287
+ getPublicStats(options?: RawAxiosRequestConfig): AxiosPromise<GlobalStatsAggregationModel>;
1278
1288
  }
1279
1289
  /**
1280
1290
  * StatsApi - object-oriented interface
@@ -1290,5 +1300,5 @@ export declare class StatsApi extends BaseAPI implements StatsApiInterface {
1290
1300
  * @throws {RequiredError}
1291
1301
  * @memberof StatsApi
1292
1302
  */
1293
- publicStatsStatsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GlobalStatsAggregationModel, any>>;
1303
+ getPublicStats(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GlobalStatsAggregationModel, any>>;
1294
1304
  }