@orangefox-recovery/foxclient 5.2.6 → 5.2.7
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/.openapi-generator/FILES +28 -30
- package/README.md +3 -65
- package/dist/apis/DeviceApi.d.ts +158 -0
- package/dist/apis/DeviceApi.js +188 -0
- package/dist/apis/PasteApi.d.ts +80 -0
- package/dist/apis/PasteApi.js +95 -0
- package/dist/apis/ReleaseApi.d.ts +188 -0
- package/dist/apis/ReleaseApi.js +226 -0
- package/dist/apis/StatsApi.d.ts +49 -0
- package/dist/apis/StatsApi.js +60 -0
- package/dist/apis/index.d.ts +4 -0
- package/dist/apis/index.js +22 -0
- package/dist/esm/apis/DeviceApi.d.ts +158 -0
- package/dist/esm/apis/DeviceApi.js +184 -0
- package/dist/esm/apis/PasteApi.d.ts +80 -0
- package/dist/esm/apis/PasteApi.js +91 -0
- package/dist/esm/apis/ReleaseApi.d.ts +188 -0
- package/dist/esm/apis/ReleaseApi.js +222 -0
- package/dist/esm/apis/StatsApi.d.ts +49 -0
- package/dist/esm/apis/StatsApi.js +56 -0
- package/dist/esm/apis/index.d.ts +4 -0
- package/dist/esm/apis/index.js +6 -0
- package/dist/esm/index.d.ts +3 -13
- package/dist/esm/index.js +3 -13
- package/dist/esm/models/DeviceResponse.d.ts +101 -0
- package/dist/esm/models/DeviceResponse.js +82 -0
- package/dist/esm/models/GlobalStatsAggregationModel.d.ts +52 -0
- package/dist/esm/models/GlobalStatsAggregationModel.js +55 -0
- package/dist/esm/models/HTTPValidationError.d.ts +33 -0
- package/dist/esm/models/HTTPValidationError.js +42 -0
- package/dist/esm/models/ListResponseReleaseResponse.d.ts +39 -0
- package/dist/esm/models/ListResponseReleaseResponse.js +47 -0
- package/dist/esm/models/ListResponseShortDeviceResponse.d.ts +39 -0
- package/dist/esm/models/ListResponseShortDeviceResponse.js +47 -0
- package/dist/esm/models/ListResponseShortReleaseResponse.d.ts +39 -0
- package/dist/esm/models/ListResponseShortReleaseResponse.js +47 -0
- package/dist/esm/models/ListResponseStr.d.ts +38 -0
- package/dist/esm/models/ListResponseStr.js +46 -0
- package/dist/esm/models/MaintainerShortModel.d.ts +44 -0
- package/dist/esm/models/MaintainerShortModel.js +51 -0
- package/dist/esm/models/PasteInput.d.ts +50 -0
- package/dist/esm/models/PasteInput.js +51 -0
- package/dist/esm/models/PasteOutput.d.ts +50 -0
- package/dist/esm/models/PasteOutput.js +51 -0
- package/dist/esm/models/RecoveryImgResponse.d.ts +38 -0
- package/dist/esm/models/RecoveryImgResponse.js +47 -0
- package/dist/esm/models/ReleaseGroupsResponse.d.ts +35 -0
- package/dist/esm/models/ReleaseGroupsResponse.js +43 -0
- package/dist/esm/models/ReleaseResponse.d.ts +139 -0
- package/dist/esm/models/ReleaseResponse.js +107 -0
- package/dist/esm/models/ReleaseType.d.ts +26 -0
- package/dist/esm/models/ReleaseType.js +44 -0
- package/dist/esm/models/ReleasesSort.d.ts +25 -0
- package/dist/esm/models/ReleasesSort.js +43 -0
- package/dist/esm/models/ResponseGetReleases.d.ts +41 -0
- package/dist/esm/models/ResponseGetReleases.js +46 -0
- package/dist/esm/models/ShortDeviceResponse.d.ts +82 -0
- package/dist/esm/models/ShortDeviceResponse.js +73 -0
- package/dist/esm/models/ShortReleaseResponse.d.ts +100 -0
- package/dist/esm/models/ShortReleaseResponse.js +84 -0
- package/dist/esm/models/ValidationError.d.ts +45 -0
- package/dist/esm/models/ValidationError.js +52 -0
- package/dist/esm/models/ValidationErrorLocInner.d.ts +26 -0
- package/{index.ts → dist/esm/models/ValidationErrorLocInner.js} +20 -7
- package/dist/esm/models/index.d.ts +20 -0
- package/dist/esm/models/index.js +22 -0
- package/dist/esm/runtime.d.ts +184 -0
- package/dist/esm/runtime.js +334 -0
- package/dist/index.d.ts +3 -13
- package/dist/index.js +5 -15
- package/dist/models/DeviceResponse.d.ts +101 -0
- package/dist/models/DeviceResponse.js +89 -0
- package/dist/models/GlobalStatsAggregationModel.d.ts +52 -0
- package/dist/models/GlobalStatsAggregationModel.js +62 -0
- package/dist/models/HTTPValidationError.d.ts +33 -0
- package/dist/models/HTTPValidationError.js +49 -0
- package/dist/models/ListResponseReleaseResponse.d.ts +39 -0
- package/dist/models/ListResponseReleaseResponse.js +54 -0
- package/dist/models/ListResponseShortDeviceResponse.d.ts +39 -0
- package/dist/models/ListResponseShortDeviceResponse.js +54 -0
- package/dist/models/ListResponseShortReleaseResponse.d.ts +39 -0
- package/dist/models/ListResponseShortReleaseResponse.js +54 -0
- package/dist/models/ListResponseStr.d.ts +38 -0
- package/dist/models/ListResponseStr.js +53 -0
- package/dist/models/MaintainerShortModel.d.ts +44 -0
- package/dist/models/MaintainerShortModel.js +58 -0
- package/dist/models/PasteInput.d.ts +50 -0
- package/dist/models/PasteInput.js +58 -0
- package/dist/models/PasteOutput.d.ts +50 -0
- package/dist/models/PasteOutput.js +58 -0
- package/dist/models/RecoveryImgResponse.d.ts +38 -0
- package/dist/models/RecoveryImgResponse.js +54 -0
- package/dist/models/ReleaseGroupsResponse.d.ts +35 -0
- package/dist/models/ReleaseGroupsResponse.js +50 -0
- package/dist/models/ReleaseResponse.d.ts +139 -0
- package/dist/models/ReleaseResponse.js +114 -0
- package/dist/models/ReleaseType.d.ts +26 -0
- package/dist/models/ReleaseType.js +52 -0
- package/dist/models/ReleasesSort.d.ts +25 -0
- package/dist/models/ReleasesSort.js +51 -0
- package/dist/models/ResponseGetReleases.d.ts +41 -0
- package/dist/models/ResponseGetReleases.js +53 -0
- package/dist/models/ShortDeviceResponse.d.ts +82 -0
- package/dist/models/ShortDeviceResponse.js +80 -0
- package/dist/models/ShortReleaseResponse.d.ts +100 -0
- package/dist/models/ShortReleaseResponse.js +91 -0
- package/dist/models/ValidationError.d.ts +45 -0
- package/dist/models/ValidationError.js +59 -0
- package/dist/models/ValidationErrorLocInner.d.ts +26 -0
- package/dist/models/ValidationErrorLocInner.js +38 -0
- package/dist/models/index.d.ts +20 -0
- package/dist/models/index.js +38 -0
- package/dist/runtime.d.ts +184 -0
- package/dist/runtime.js +350 -0
- package/package.json +4 -17
- package/src/apis/DeviceApi.ts +326 -0
- package/src/apis/PasteApi.ts +158 -0
- package/src/apis/ReleaseApi.ts +414 -0
- package/src/apis/StatsApi.ts +82 -0
- package/src/apis/index.ts +6 -0
- package/src/index.ts +5 -0
- package/src/models/DeviceResponse.ts +171 -0
- package/src/models/GlobalStatsAggregationModel.ts +93 -0
- package/src/models/HTTPValidationError.ts +73 -0
- package/src/models/ListResponseReleaseResponse.ts +82 -0
- package/src/models/ListResponseShortDeviceResponse.ts +82 -0
- package/src/models/ListResponseShortReleaseResponse.ts +82 -0
- package/src/models/ListResponseStr.ts +74 -0
- package/src/models/MaintainerShortModel.ts +84 -0
- package/src/models/PasteInput.ts +91 -0
- package/src/models/PasteOutput.ts +91 -0
- package/src/models/RecoveryImgResponse.ts +75 -0
- package/src/models/ReleaseGroupsResponse.ts +74 -0
- package/src/models/ReleaseResponse.ts +233 -0
- package/src/models/ReleaseType.ts +54 -0
- package/src/models/ReleasesSort.ts +53 -0
- package/src/models/ResponseGetReleases.ts +96 -0
- package/src/models/ShortDeviceResponse.ts +138 -0
- package/src/models/ShortReleaseResponse.ts +174 -0
- package/src/models/ValidationError.ts +92 -0
- package/src/models/ValidationErrorLocInner.ts +46 -0
- package/src/models/index.ts +22 -0
- package/src/runtime.ts +432 -0
- package/tsconfig.json +2 -4
- package/api.ts +0 -2101
- package/base.ts +0 -86
- package/common.ts +0 -150
- package/configuration.ts +0 -115
- package/dist/api.d.ts +0 -1483
- package/dist/api.js +0 -1172
- package/dist/base.d.ts +0 -66
- package/dist/base.js +0 -65
- package/dist/common.d.ts +0 -65
- package/dist/common.js +0 -161
- package/dist/configuration.d.ts +0 -91
- package/dist/configuration.js +0 -44
- package/dist/esm/api.d.ts +0 -1483
- package/dist/esm/api.js +0 -1153
- package/dist/esm/base.d.ts +0 -66
- package/dist/esm/base.js +0 -60
- package/dist/esm/common.d.ts +0 -65
- package/dist/esm/common.js +0 -149
- package/dist/esm/configuration.d.ts +0 -91
- package/dist/esm/configuration.js +0 -40
- package/docs/DeviceApi.md +0 -251
- package/docs/DeviceResponse.md +0 -44
- package/docs/GlobalStatsAggregationModel.md +0 -26
- package/docs/HTTPValidationError.md +0 -20
- package/docs/ListResponseReleaseResponse.md +0 -22
- package/docs/ListResponseShortDeviceResponse.md +0 -22
- package/docs/ListResponseShortReleaseResponse.md +0 -22
- package/docs/ListResponseStr.md +0 -22
- package/docs/MaintainerShortModel.md +0 -26
- package/docs/PasteApi.md +0 -117
- package/docs/PasteInput.md +0 -26
- package/docs/PasteOutput.md +0 -26
- package/docs/RecoveryImgResponse.md +0 -22
- package/docs/ReleaseApi.md +0 -289
- package/docs/ReleaseGroupsResponse.md +0 -20
- package/docs/ReleaseResponse.md +0 -56
- package/docs/ReleaseType.md +0 -12
- package/docs/ReleasesSort.md +0 -10
- package/docs/ResponseGetReleases.md +0 -22
- package/docs/ShortDeviceResponse.md +0 -38
- package/docs/ShortReleaseResponse.md +0 -44
- package/docs/StatsApi.md +0 -53
- package/docs/ValidationError.md +0 -24
- package/docs/ValidationErrorLocInner.md +0 -18
- package/git_push.sh +0 -57
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fox API
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 5.2.7
|
|
6
|
+
* Contact: admin@orangefox.tech
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export declare const ReleasesSort: {
|
|
17
|
+
readonly DateAsc: "date_asc";
|
|
18
|
+
readonly DateDesc: "date_desc";
|
|
19
|
+
};
|
|
20
|
+
export type ReleasesSort = typeof ReleasesSort[keyof typeof ReleasesSort];
|
|
21
|
+
export declare function instanceOfReleasesSort(value: any): boolean;
|
|
22
|
+
export declare function ReleasesSortFromJSON(json: any): ReleasesSort;
|
|
23
|
+
export declare function ReleasesSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReleasesSort;
|
|
24
|
+
export declare function ReleasesSortToJSON(value?: ReleasesSort | null): any;
|
|
25
|
+
export declare function ReleasesSortToJSONTyped(value: any, ignoreDiscriminator: boolean): ReleasesSort;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Fox API
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 5.2.7
|
|
9
|
+
* Contact: admin@orangefox.tech
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ReleasesSort = void 0;
|
|
17
|
+
exports.instanceOfReleasesSort = instanceOfReleasesSort;
|
|
18
|
+
exports.ReleasesSortFromJSON = ReleasesSortFromJSON;
|
|
19
|
+
exports.ReleasesSortFromJSONTyped = ReleasesSortFromJSONTyped;
|
|
20
|
+
exports.ReleasesSortToJSON = ReleasesSortToJSON;
|
|
21
|
+
exports.ReleasesSortToJSONTyped = ReleasesSortToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @export
|
|
25
|
+
*/
|
|
26
|
+
exports.ReleasesSort = {
|
|
27
|
+
DateAsc: 'date_asc',
|
|
28
|
+
DateDesc: 'date_desc'
|
|
29
|
+
};
|
|
30
|
+
function instanceOfReleasesSort(value) {
|
|
31
|
+
for (const key in exports.ReleasesSort) {
|
|
32
|
+
if (Object.prototype.hasOwnProperty.call(exports.ReleasesSort, key)) {
|
|
33
|
+
if (exports.ReleasesSort[key] === value) {
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
function ReleasesSortFromJSON(json) {
|
|
41
|
+
return ReleasesSortFromJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
function ReleasesSortFromJSONTyped(json, ignoreDiscriminator) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
function ReleasesSortToJSON(value) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
function ReleasesSortToJSONTyped(value, ignoreDiscriminator) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fox API
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 5.2.7
|
|
6
|
+
* Contact: admin@orangefox.tech
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ReleaseResponse } from './ReleaseResponse';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ResponseGetReleases
|
|
17
|
+
*/
|
|
18
|
+
export interface ResponseGetReleases {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {{ [key: string]: Array<ReleaseResponse>; }}
|
|
22
|
+
* @memberof ResponseGetReleases
|
|
23
|
+
*/
|
|
24
|
+
data: {
|
|
25
|
+
[key: string]: Array<ReleaseResponse>;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {number}
|
|
30
|
+
* @memberof ResponseGetReleases
|
|
31
|
+
*/
|
|
32
|
+
readonly count: number;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Check if a given object implements the ResponseGetReleases interface.
|
|
36
|
+
*/
|
|
37
|
+
export declare function instanceOfResponseGetReleases(value: object): value is ResponseGetReleases;
|
|
38
|
+
export declare function ResponseGetReleasesFromJSON(json: any): ResponseGetReleases;
|
|
39
|
+
export declare function ResponseGetReleasesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseGetReleases;
|
|
40
|
+
export declare function ResponseGetReleasesToJSON(json: any): ResponseGetReleases;
|
|
41
|
+
export declare function ResponseGetReleasesToJSONTyped(value?: Omit<ResponseGetReleases, 'count'> | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Fox API
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 5.2.7
|
|
9
|
+
* Contact: admin@orangefox.tech
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfResponseGetReleases = instanceOfResponseGetReleases;
|
|
17
|
+
exports.ResponseGetReleasesFromJSON = ResponseGetReleasesFromJSON;
|
|
18
|
+
exports.ResponseGetReleasesFromJSONTyped = ResponseGetReleasesFromJSONTyped;
|
|
19
|
+
exports.ResponseGetReleasesToJSON = ResponseGetReleasesToJSON;
|
|
20
|
+
exports.ResponseGetReleasesToJSONTyped = ResponseGetReleasesToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ResponseGetReleases interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfResponseGetReleases(value) {
|
|
25
|
+
if (!('data' in value) || value['data'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('count' in value) || value['count'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function ResponseGetReleasesFromJSON(json) {
|
|
32
|
+
return ResponseGetReleasesFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function ResponseGetReleasesFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'data': json['data'],
|
|
40
|
+
'count': json['count'],
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function ResponseGetReleasesToJSON(json) {
|
|
44
|
+
return ResponseGetReleasesToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function ResponseGetReleasesToJSONTyped(value, ignoreDiscriminator = false) {
|
|
47
|
+
if (value == null) {
|
|
48
|
+
return value;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'data': value['data'],
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fox API
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 5.2.7
|
|
6
|
+
* Contact: admin@orangefox.tech
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ShortDeviceResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface ShortDeviceResponse {
|
|
18
|
+
/**
|
|
19
|
+
* Device codename, legacy
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ShortDeviceResponse
|
|
22
|
+
* @deprecated
|
|
23
|
+
*/
|
|
24
|
+
codename: string;
|
|
25
|
+
/**
|
|
26
|
+
* Model name of device, does not include the OEM part, legacy
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ShortDeviceResponse
|
|
29
|
+
* @deprecated
|
|
30
|
+
*/
|
|
31
|
+
modelName: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof ShortDeviceResponse
|
|
36
|
+
*/
|
|
37
|
+
oemName: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof ShortDeviceResponse
|
|
42
|
+
*/
|
|
43
|
+
id: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Array<string>}
|
|
47
|
+
* @memberof ShortDeviceResponse
|
|
48
|
+
*/
|
|
49
|
+
codenames: Array<string>;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {Array<string>}
|
|
53
|
+
* @memberof ShortDeviceResponse
|
|
54
|
+
*/
|
|
55
|
+
modelNames: Array<string>;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {boolean}
|
|
59
|
+
* @memberof ShortDeviceResponse
|
|
60
|
+
*/
|
|
61
|
+
supported: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* Full name of device / devices, legacy
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof ShortDeviceResponse
|
|
66
|
+
*/
|
|
67
|
+
readonly fullName: string;
|
|
68
|
+
/**
|
|
69
|
+
* URL of the device on the official website
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof ShortDeviceResponse
|
|
72
|
+
*/
|
|
73
|
+
readonly url: string;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Check if a given object implements the ShortDeviceResponse interface.
|
|
77
|
+
*/
|
|
78
|
+
export declare function instanceOfShortDeviceResponse(value: object): value is ShortDeviceResponse;
|
|
79
|
+
export declare function ShortDeviceResponseFromJSON(json: any): ShortDeviceResponse;
|
|
80
|
+
export declare function ShortDeviceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShortDeviceResponse;
|
|
81
|
+
export declare function ShortDeviceResponseToJSON(json: any): ShortDeviceResponse;
|
|
82
|
+
export declare function ShortDeviceResponseToJSONTyped(value?: Omit<ShortDeviceResponse, 'full_name' | 'url'> | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Fox API
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 5.2.7
|
|
9
|
+
* Contact: admin@orangefox.tech
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfShortDeviceResponse = instanceOfShortDeviceResponse;
|
|
17
|
+
exports.ShortDeviceResponseFromJSON = ShortDeviceResponseFromJSON;
|
|
18
|
+
exports.ShortDeviceResponseFromJSONTyped = ShortDeviceResponseFromJSONTyped;
|
|
19
|
+
exports.ShortDeviceResponseToJSON = ShortDeviceResponseToJSON;
|
|
20
|
+
exports.ShortDeviceResponseToJSONTyped = ShortDeviceResponseToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ShortDeviceResponse interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfShortDeviceResponse(value) {
|
|
25
|
+
if (!('codename' in value) || value['codename'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('modelName' in value) || value['modelName'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('oemName' in value) || value['oemName'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('codenames' in value) || value['codenames'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('modelNames' in value) || value['modelNames'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('supported' in value) || value['supported'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
if (!('fullName' in value) || value['fullName'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
if (!('url' in value) || value['url'] === undefined)
|
|
42
|
+
return false;
|
|
43
|
+
return true;
|
|
44
|
+
}
|
|
45
|
+
function ShortDeviceResponseFromJSON(json) {
|
|
46
|
+
return ShortDeviceResponseFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function ShortDeviceResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
49
|
+
if (json == null) {
|
|
50
|
+
return json;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'codename': json['codename'],
|
|
54
|
+
'modelName': json['model_name'],
|
|
55
|
+
'oemName': json['oem_name'],
|
|
56
|
+
'id': json['id'],
|
|
57
|
+
'codenames': json['codenames'],
|
|
58
|
+
'modelNames': json['model_names'],
|
|
59
|
+
'supported': json['supported'],
|
|
60
|
+
'fullName': json['full_name'],
|
|
61
|
+
'url': json['url'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
function ShortDeviceResponseToJSON(json) {
|
|
65
|
+
return ShortDeviceResponseToJSONTyped(json, false);
|
|
66
|
+
}
|
|
67
|
+
function ShortDeviceResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
68
|
+
if (value == null) {
|
|
69
|
+
return value;
|
|
70
|
+
}
|
|
71
|
+
return {
|
|
72
|
+
'codename': value['codename'],
|
|
73
|
+
'model_name': value['modelName'],
|
|
74
|
+
'oem_name': value['oemName'],
|
|
75
|
+
'id': value['id'],
|
|
76
|
+
'codenames': value['codenames'],
|
|
77
|
+
'model_names': value['modelNames'],
|
|
78
|
+
'supported': value['supported'],
|
|
79
|
+
};
|
|
80
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fox API
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 5.2.7
|
|
6
|
+
* Contact: admin@orangefox.tech
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ReleaseType } from './ReleaseType';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ShortReleaseResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface ShortReleaseResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof ShortReleaseResponse
|
|
23
|
+
* @deprecated
|
|
24
|
+
*/
|
|
25
|
+
size: number;
|
|
26
|
+
/**
|
|
27
|
+
* Release ID, that's how we indentify the release in the infrastructure
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof ShortReleaseResponse
|
|
30
|
+
*/
|
|
31
|
+
id: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof ShortReleaseResponse
|
|
36
|
+
*/
|
|
37
|
+
buildId?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof ShortReleaseResponse
|
|
42
|
+
*/
|
|
43
|
+
filename: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof ShortReleaseResponse
|
|
48
|
+
*/
|
|
49
|
+
variant: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof ShortReleaseResponse
|
|
54
|
+
*/
|
|
55
|
+
deviceId: string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {number}
|
|
59
|
+
* @memberof ShortReleaseResponse
|
|
60
|
+
*/
|
|
61
|
+
date: number;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof ShortReleaseResponse
|
|
66
|
+
*/
|
|
67
|
+
md5: string;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof ShortReleaseResponse
|
|
72
|
+
*/
|
|
73
|
+
version: string;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {ReleaseType}
|
|
77
|
+
* @memberof ShortReleaseResponse
|
|
78
|
+
*/
|
|
79
|
+
type: ReleaseType;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof ShortReleaseResponse
|
|
84
|
+
*/
|
|
85
|
+
maintainerId?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {boolean}
|
|
89
|
+
* @memberof ShortReleaseResponse
|
|
90
|
+
*/
|
|
91
|
+
archived: boolean;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* Check if a given object implements the ShortReleaseResponse interface.
|
|
95
|
+
*/
|
|
96
|
+
export declare function instanceOfShortReleaseResponse(value: object): value is ShortReleaseResponse;
|
|
97
|
+
export declare function ShortReleaseResponseFromJSON(json: any): ShortReleaseResponse;
|
|
98
|
+
export declare function ShortReleaseResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShortReleaseResponse;
|
|
99
|
+
export declare function ShortReleaseResponseToJSON(json: any): ShortReleaseResponse;
|
|
100
|
+
export declare function ShortReleaseResponseToJSONTyped(value?: ShortReleaseResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Fox API
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 5.2.7
|
|
9
|
+
* Contact: admin@orangefox.tech
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfShortReleaseResponse = instanceOfShortReleaseResponse;
|
|
17
|
+
exports.ShortReleaseResponseFromJSON = ShortReleaseResponseFromJSON;
|
|
18
|
+
exports.ShortReleaseResponseFromJSONTyped = ShortReleaseResponseFromJSONTyped;
|
|
19
|
+
exports.ShortReleaseResponseToJSON = ShortReleaseResponseToJSON;
|
|
20
|
+
exports.ShortReleaseResponseToJSONTyped = ShortReleaseResponseToJSONTyped;
|
|
21
|
+
const ReleaseType_1 = require("./ReleaseType");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the ShortReleaseResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfShortReleaseResponse(value) {
|
|
26
|
+
if (!('size' in value) || value['size'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('filename' in value) || value['filename'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('variant' in value) || value['variant'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
if (!('deviceId' in value) || value['deviceId'] === undefined)
|
|
35
|
+
return false;
|
|
36
|
+
if (!('date' in value) || value['date'] === undefined)
|
|
37
|
+
return false;
|
|
38
|
+
if (!('md5' in value) || value['md5'] === undefined)
|
|
39
|
+
return false;
|
|
40
|
+
if (!('version' in value) || value['version'] === undefined)
|
|
41
|
+
return false;
|
|
42
|
+
if (!('type' in value) || value['type'] === undefined)
|
|
43
|
+
return false;
|
|
44
|
+
if (!('archived' in value) || value['archived'] === undefined)
|
|
45
|
+
return false;
|
|
46
|
+
return true;
|
|
47
|
+
}
|
|
48
|
+
function ShortReleaseResponseFromJSON(json) {
|
|
49
|
+
return ShortReleaseResponseFromJSONTyped(json, false);
|
|
50
|
+
}
|
|
51
|
+
function ShortReleaseResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
52
|
+
if (json == null) {
|
|
53
|
+
return json;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
'size': json['size'],
|
|
57
|
+
'id': json['id'],
|
|
58
|
+
'buildId': json['build_id'] == null ? undefined : json['build_id'],
|
|
59
|
+
'filename': json['filename'],
|
|
60
|
+
'variant': json['variant'],
|
|
61
|
+
'deviceId': json['device_id'],
|
|
62
|
+
'date': json['date'],
|
|
63
|
+
'md5': json['md5'],
|
|
64
|
+
'version': json['version'],
|
|
65
|
+
'type': (0, ReleaseType_1.ReleaseTypeFromJSON)(json['type']),
|
|
66
|
+
'maintainerId': json['maintainer_id'] == null ? undefined : json['maintainer_id'],
|
|
67
|
+
'archived': json['archived'],
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
function ShortReleaseResponseToJSON(json) {
|
|
71
|
+
return ShortReleaseResponseToJSONTyped(json, false);
|
|
72
|
+
}
|
|
73
|
+
function ShortReleaseResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
74
|
+
if (value == null) {
|
|
75
|
+
return value;
|
|
76
|
+
}
|
|
77
|
+
return {
|
|
78
|
+
'size': value['size'],
|
|
79
|
+
'id': value['id'],
|
|
80
|
+
'build_id': value['buildId'],
|
|
81
|
+
'filename': value['filename'],
|
|
82
|
+
'variant': value['variant'],
|
|
83
|
+
'device_id': value['deviceId'],
|
|
84
|
+
'date': value['date'],
|
|
85
|
+
'md5': value['md5'],
|
|
86
|
+
'version': value['version'],
|
|
87
|
+
'type': (0, ReleaseType_1.ReleaseTypeToJSON)(value['type']),
|
|
88
|
+
'maintainer_id': value['maintainerId'],
|
|
89
|
+
'archived': value['archived'],
|
|
90
|
+
};
|
|
91
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fox API
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 5.2.7
|
|
6
|
+
* Contact: admin@orangefox.tech
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ValidationErrorLocInner } from './ValidationErrorLocInner';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ValidationError
|
|
17
|
+
*/
|
|
18
|
+
export interface ValidationError {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<ValidationErrorLocInner>}
|
|
22
|
+
* @memberof ValidationError
|
|
23
|
+
*/
|
|
24
|
+
loc: Array<ValidationErrorLocInner>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ValidationError
|
|
29
|
+
*/
|
|
30
|
+
msg: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof ValidationError
|
|
35
|
+
*/
|
|
36
|
+
type: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the ValidationError interface.
|
|
40
|
+
*/
|
|
41
|
+
export declare function instanceOfValidationError(value: object): value is ValidationError;
|
|
42
|
+
export declare function ValidationErrorFromJSON(json: any): ValidationError;
|
|
43
|
+
export declare function ValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationError;
|
|
44
|
+
export declare function ValidationErrorToJSON(json: any): ValidationError;
|
|
45
|
+
export declare function ValidationErrorToJSONTyped(value?: ValidationError | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Fox API
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 5.2.7
|
|
9
|
+
* Contact: admin@orangefox.tech
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfValidationError = instanceOfValidationError;
|
|
17
|
+
exports.ValidationErrorFromJSON = ValidationErrorFromJSON;
|
|
18
|
+
exports.ValidationErrorFromJSONTyped = ValidationErrorFromJSONTyped;
|
|
19
|
+
exports.ValidationErrorToJSON = ValidationErrorToJSON;
|
|
20
|
+
exports.ValidationErrorToJSONTyped = ValidationErrorToJSONTyped;
|
|
21
|
+
const ValidationErrorLocInner_1 = require("./ValidationErrorLocInner");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the ValidationError interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfValidationError(value) {
|
|
26
|
+
if (!('loc' in value) || value['loc'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('msg' in value) || value['msg'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('type' in value) || value['type'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
return true;
|
|
33
|
+
}
|
|
34
|
+
function ValidationErrorFromJSON(json) {
|
|
35
|
+
return ValidationErrorFromJSONTyped(json, false);
|
|
36
|
+
}
|
|
37
|
+
function ValidationErrorFromJSONTyped(json, ignoreDiscriminator) {
|
|
38
|
+
if (json == null) {
|
|
39
|
+
return json;
|
|
40
|
+
}
|
|
41
|
+
return {
|
|
42
|
+
'loc': (json['loc'].map(ValidationErrorLocInner_1.ValidationErrorLocInnerFromJSON)),
|
|
43
|
+
'msg': json['msg'],
|
|
44
|
+
'type': json['type'],
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
function ValidationErrorToJSON(json) {
|
|
48
|
+
return ValidationErrorToJSONTyped(json, false);
|
|
49
|
+
}
|
|
50
|
+
function ValidationErrorToJSONTyped(value, ignoreDiscriminator = false) {
|
|
51
|
+
if (value == null) {
|
|
52
|
+
return value;
|
|
53
|
+
}
|
|
54
|
+
return {
|
|
55
|
+
'loc': (value['loc'].map(ValidationErrorLocInner_1.ValidationErrorLocInnerToJSON)),
|
|
56
|
+
'msg': value['msg'],
|
|
57
|
+
'type': value['type'],
|
|
58
|
+
};
|
|
59
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fox API
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 5.2.7
|
|
6
|
+
* Contact: admin@orangefox.tech
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ValidationErrorLocInner
|
|
16
|
+
*/
|
|
17
|
+
export interface ValidationErrorLocInner {
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the ValidationErrorLocInner interface.
|
|
21
|
+
*/
|
|
22
|
+
export declare function instanceOfValidationErrorLocInner(value: object): value is ValidationErrorLocInner;
|
|
23
|
+
export declare function ValidationErrorLocInnerFromJSON(json: any): ValidationErrorLocInner;
|
|
24
|
+
export declare function ValidationErrorLocInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationErrorLocInner;
|
|
25
|
+
export declare function ValidationErrorLocInnerToJSON(json: any): ValidationErrorLocInner;
|
|
26
|
+
export declare function ValidationErrorLocInnerToJSONTyped(value?: ValidationErrorLocInner | null, ignoreDiscriminator?: boolean): any;
|