@orangefox-recovery/foxclient 5.3.3 → 6.0.4
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 +20 -22
- package/.openapi-generator/VERSION +1 -1
- package/README.md +30 -38
- package/dist/apis/DeviceApi.d.ts +116 -77
- package/dist/apis/DeviceApi.js +85 -59
- package/dist/apis/PasteApi.d.ts +46 -30
- package/dist/apis/PasteApi.js +39 -25
- package/dist/apis/ReleaseApi.d.ts +177 -104
- package/dist/apis/ReleaseApi.js +132 -81
- package/dist/apis/ReportApi.d.ts +64 -0
- package/dist/apis/ReportApi.js +89 -0
- package/dist/apis/StatsApi.d.ts +25 -15
- package/dist/apis/StatsApi.js +22 -13
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/esm/apis/DeviceApi.d.ts +116 -77
- package/dist/esm/apis/DeviceApi.js +86 -60
- package/dist/esm/apis/PasteApi.d.ts +46 -30
- package/dist/esm/apis/PasteApi.js +40 -26
- package/dist/esm/apis/ReleaseApi.d.ts +177 -104
- package/dist/esm/apis/ReleaseApi.js +133 -82
- package/dist/esm/apis/ReportApi.d.ts +64 -0
- package/dist/esm/apis/ReportApi.js +85 -0
- package/dist/esm/apis/StatsApi.d.ts +25 -15
- package/dist/esm/apis/StatsApi.js +23 -14
- package/dist/esm/apis/index.d.ts +1 -0
- package/dist/esm/apis/index.js +1 -0
- package/dist/esm/models/DeviceResponse.d.ts +33 -29
- package/dist/esm/models/DeviceResponse.js +34 -26
- package/dist/esm/models/ErrorResponse.d.ts +32 -0
- package/dist/esm/models/ErrorResponse.js +43 -0
- package/dist/esm/models/GlobalStatsResponse.d.ts +52 -0
- package/dist/esm/models/{GlobalStatsAggregationModel.js → GlobalStatsResponse.js} +14 -14
- package/dist/esm/models/ListResponseReleaseResponse.d.ts +8 -8
- package/dist/esm/models/ListResponseReleaseResponse.js +8 -7
- package/dist/esm/models/ListResponseReleaseResponseDataInner.d.ts +155 -0
- package/dist/esm/models/ListResponseReleaseResponseDataInner.js +114 -0
- package/dist/esm/models/ListResponseShortDeviceResponse.d.ts +8 -8
- package/dist/esm/models/ListResponseShortDeviceResponse.js +8 -7
- package/dist/esm/models/ListResponseShortDeviceResponseDataInner.d.ts +98 -0
- package/dist/esm/models/ListResponseShortDeviceResponseDataInner.js +85 -0
- package/dist/esm/models/ListResponseString.d.ts +38 -0
- package/dist/esm/models/ListResponseString.js +47 -0
- package/dist/esm/models/MaintainerShortResponse.d.ts +50 -0
- package/dist/esm/models/MaintainerShortResponse.js +55 -0
- package/dist/esm/models/NewReportRequest.d.ts +58 -0
- package/dist/esm/models/NewReportRequest.js +55 -0
- package/dist/esm/models/PasteInput.d.ts +3 -3
- package/dist/esm/models/PasteInput.js +2 -2
- package/dist/esm/models/PasteResponse.d.ts +50 -0
- package/dist/esm/models/PasteResponse.js +53 -0
- package/dist/esm/models/RecoveryImgResponse.d.ts +6 -6
- package/dist/esm/models/RecoveryImgResponse.js +6 -6
- package/dist/esm/models/ReleaseGroupsResponse.d.ts +2 -2
- package/dist/esm/models/ReleaseGroupsResponse.js +2 -2
- package/dist/esm/models/ReleaseResponse.d.ts +46 -42
- package/dist/esm/models/ReleaseResponse.js +45 -44
- package/dist/esm/models/ShortDeviceResponse.d.ts +29 -25
- package/dist/esm/models/ShortDeviceResponse.js +26 -18
- package/dist/esm/models/ShortReleaseResponse.d.ts +31 -27
- package/dist/esm/models/ShortReleaseResponse.js +35 -32
- package/dist/esm/models/TokenResponse.d.ts +38 -0
- package/dist/esm/models/TokenResponse.js +47 -0
- package/dist/esm/models/index.d.ts +9 -11
- package/dist/esm/models/index.js +9 -11
- package/dist/esm/runtime.d.ts +2 -2
- package/dist/esm/runtime.js +17 -2
- package/dist/models/DeviceResponse.d.ts +33 -29
- package/dist/models/DeviceResponse.js +34 -26
- package/dist/models/ErrorResponse.d.ts +32 -0
- package/dist/models/ErrorResponse.js +50 -0
- package/dist/models/GlobalStatsResponse.d.ts +52 -0
- package/dist/models/GlobalStatsResponse.js +62 -0
- package/dist/models/ListResponseReleaseResponse.d.ts +8 -8
- package/dist/models/ListResponseReleaseResponse.js +8 -7
- package/dist/models/ListResponseReleaseResponseDataInner.d.ts +155 -0
- package/dist/models/ListResponseReleaseResponseDataInner.js +121 -0
- package/dist/models/ListResponseShortDeviceResponse.d.ts +8 -8
- package/dist/models/ListResponseShortDeviceResponse.js +8 -7
- package/dist/models/ListResponseShortDeviceResponseDataInner.d.ts +98 -0
- package/dist/models/ListResponseShortDeviceResponseDataInner.js +92 -0
- package/dist/models/ListResponseString.d.ts +38 -0
- package/dist/models/ListResponseString.js +54 -0
- package/dist/models/MaintainerShortResponse.d.ts +50 -0
- package/dist/models/MaintainerShortResponse.js +62 -0
- package/dist/models/NewReportRequest.d.ts +58 -0
- package/dist/models/NewReportRequest.js +62 -0
- package/dist/models/PasteInput.d.ts +3 -3
- package/dist/models/PasteInput.js +2 -2
- package/dist/models/PasteResponse.d.ts +50 -0
- package/dist/models/PasteResponse.js +60 -0
- package/dist/models/RecoveryImgResponse.d.ts +6 -6
- package/dist/models/RecoveryImgResponse.js +6 -6
- package/dist/models/ReleaseGroupsResponse.d.ts +2 -2
- package/dist/models/ReleaseGroupsResponse.js +2 -2
- package/dist/models/ReleaseResponse.d.ts +46 -42
- package/dist/models/ReleaseResponse.js +45 -44
- package/dist/models/ShortDeviceResponse.d.ts +29 -25
- package/dist/models/ShortDeviceResponse.js +26 -18
- package/dist/models/ShortReleaseResponse.d.ts +31 -27
- package/dist/models/ShortReleaseResponse.js +35 -32
- package/dist/models/TokenResponse.d.ts +38 -0
- package/dist/models/TokenResponse.js +54 -0
- package/dist/models/index.d.ts +9 -11
- package/dist/models/index.js +9 -11
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.js +17 -2
- package/docs/DeviceApi.md +83 -90
- package/docs/DeviceResponse.md +19 -17
- package/docs/{ReleasesSort.md → ErrorResponse.md} +6 -4
- package/docs/{GlobalStatsAggregationModel.md → GlobalStatsResponse.md} +6 -6
- package/docs/ListResponseReleaseResponse.md +2 -2
- package/docs/ListResponseReleaseResponseDataInner.md +74 -0
- package/docs/ListResponseShortDeviceResponse.md +2 -2
- package/docs/ListResponseShortDeviceResponseDataInner.md +56 -0
- package/docs/{ListResponseStr.md → ListResponseString.md} +6 -6
- package/docs/{MaintainerShortModel.md → MaintainerShortResponse.md} +9 -7
- package/docs/{ListResponseShortReleaseResponse.md → NewReportRequest.md} +14 -8
- package/docs/PasteApi.md +25 -29
- package/docs/{PasteOutput.md → PasteResponse.md} +7 -7
- package/docs/RecoveryImgResponse.md +2 -2
- package/docs/ReleaseApi.md +176 -118
- package/docs/ReleaseResponse.md +28 -26
- package/docs/ReportApi.md +84 -0
- package/docs/ShortDeviceResponse.md +14 -12
- package/docs/ShortReleaseResponse.md +22 -20
- package/docs/StatsApi.md +10 -10
- package/docs/{ValidationErrorLocInner.md → TokenResponse.md} +8 -4
- package/package.json +3 -13
- package/src/apis/DeviceApi.ts +175 -116
- package/src/apis/PasteApi.ts +72 -46
- package/src/apis/ReleaseApi.ts +281 -181
- package/src/apis/ReportApi.ts +139 -0
- package/src/apis/StatsApi.ts +40 -22
- package/src/apis/index.ts +1 -0
- package/src/models/DeviceResponse.ts +65 -55
- package/src/models/ErrorResponse.ts +66 -0
- package/src/models/GlobalStatsResponse.ts +93 -0
- package/src/models/ListResponseReleaseResponse.ts +17 -16
- package/src/models/ListResponseReleaseResponseDataInner.ts +249 -0
- package/src/models/ListResponseShortDeviceResponse.ts +17 -16
- package/src/models/ListResponseShortDeviceResponseDataInner.ts +164 -0
- package/src/models/ListResponseString.ts +75 -0
- package/src/models/MaintainerShortResponse.ts +93 -0
- package/src/models/NewReportRequest.ts +100 -0
- package/src/models/PasteInput.ts +3 -3
- package/src/models/PasteResponse.ts +92 -0
- package/src/models/RecoveryImgResponse.ts +9 -9
- package/src/models/ReleaseGroupsResponse.ts +2 -2
- package/src/models/ReleaseResponse.ts +85 -86
- package/src/models/ShortDeviceResponse.ts +50 -40
- package/src/models/ShortReleaseResponse.ts +62 -64
- package/src/models/TokenResponse.ts +75 -0
- package/src/models/index.ts +9 -11
- package/src/runtime.ts +20 -2
- package/dist/esm/models/GlobalStatsAggregationModel.d.ts +0 -52
- package/dist/esm/models/HTTPValidationError.d.ts +0 -33
- package/dist/esm/models/HTTPValidationError.js +0 -42
- package/dist/esm/models/ListResponseShortReleaseResponse.d.ts +0 -39
- package/dist/esm/models/ListResponseShortReleaseResponse.js +0 -47
- package/dist/esm/models/ListResponseStr.d.ts +0 -38
- package/dist/esm/models/ListResponseStr.js +0 -46
- package/dist/esm/models/MaintainerShortModel.d.ts +0 -44
- package/dist/esm/models/MaintainerShortModel.js +0 -51
- package/dist/esm/models/PasteOutput.d.ts +0 -50
- package/dist/esm/models/PasteOutput.js +0 -53
- package/dist/esm/models/ReleaseType.d.ts +0 -26
- package/dist/esm/models/ReleaseType.js +0 -44
- package/dist/esm/models/ReleasesSort.d.ts +0 -25
- package/dist/esm/models/ReleasesSort.js +0 -43
- package/dist/esm/models/ResponseGetReleases.d.ts +0 -41
- package/dist/esm/models/ResponseGetReleases.js +0 -46
- package/dist/esm/models/ValidationError.d.ts +0 -45
- package/dist/esm/models/ValidationError.js +0 -52
- package/dist/esm/models/ValidationErrorLocInner.d.ts +0 -26
- package/dist/esm/models/ValidationErrorLocInner.js +0 -31
- package/dist/models/GlobalStatsAggregationModel.d.ts +0 -52
- package/dist/models/GlobalStatsAggregationModel.js +0 -62
- package/dist/models/HTTPValidationError.d.ts +0 -33
- package/dist/models/HTTPValidationError.js +0 -49
- package/dist/models/ListResponseShortReleaseResponse.d.ts +0 -39
- package/dist/models/ListResponseShortReleaseResponse.js +0 -54
- package/dist/models/ListResponseStr.d.ts +0 -38
- package/dist/models/ListResponseStr.js +0 -53
- package/dist/models/MaintainerShortModel.d.ts +0 -44
- package/dist/models/MaintainerShortModel.js +0 -58
- package/dist/models/PasteOutput.d.ts +0 -50
- package/dist/models/PasteOutput.js +0 -60
- package/dist/models/ReleaseType.d.ts +0 -26
- package/dist/models/ReleaseType.js +0 -52
- package/dist/models/ReleasesSort.d.ts +0 -25
- package/dist/models/ReleasesSort.js +0 -51
- package/dist/models/ResponseGetReleases.d.ts +0 -41
- package/dist/models/ResponseGetReleases.js +0 -53
- package/dist/models/ValidationError.d.ts +0 -45
- package/dist/models/ValidationError.js +0 -59
- package/dist/models/ValidationErrorLocInner.d.ts +0 -26
- package/dist/models/ValidationErrorLocInner.js +0 -38
- package/docs/HTTPValidationError.md +0 -34
- package/docs/ReleaseType.md +0 -32
- package/docs/ResponseGetReleases.md +0 -36
- package/docs/ValidationError.md +0 -38
- package/src/models/GlobalStatsAggregationModel.ts +0 -93
- package/src/models/HTTPValidationError.ts +0 -73
- package/src/models/ListResponseShortReleaseResponse.ts +0 -82
- package/src/models/ListResponseStr.ts +0 -74
- package/src/models/MaintainerShortModel.ts +0 -84
- package/src/models/PasteOutput.ts +0 -92
- package/src/models/ReleaseType.ts +0 -54
- package/src/models/ReleasesSort.ts +0 -53
- package/src/models/ResponseGetReleases.ts +0 -96
- package/src/models/ValidationError.ts +0 -92
- package/src/models/ValidationErrorLocInner.ts +0 -46
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Fox API
|
|
5
|
-
*
|
|
5
|
+
* 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.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 6.0.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -13,14 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
import { mapValues } from '../runtime';
|
|
16
|
-
import type { ReleaseType } from './ReleaseType';
|
|
17
|
-
import {
|
|
18
|
-
ReleaseTypeFromJSON,
|
|
19
|
-
ReleaseTypeFromJSONTyped,
|
|
20
|
-
ReleaseTypeToJSON,
|
|
21
|
-
ReleaseTypeToJSONTyped,
|
|
22
|
-
} from './ReleaseType';
|
|
23
|
-
|
|
24
16
|
/**
|
|
25
17
|
*
|
|
26
18
|
* @export
|
|
@@ -29,17 +21,16 @@ import {
|
|
|
29
21
|
export interface ShortReleaseResponse {
|
|
30
22
|
/**
|
|
31
23
|
*
|
|
32
|
-
* @type {
|
|
24
|
+
* @type {string}
|
|
33
25
|
* @memberof ShortReleaseResponse
|
|
34
|
-
* @deprecated
|
|
35
26
|
*/
|
|
36
|
-
|
|
27
|
+
legacyId: string;
|
|
37
28
|
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {
|
|
29
|
+
*
|
|
30
|
+
* @type {boolean}
|
|
40
31
|
* @memberof ShortReleaseResponse
|
|
41
32
|
*/
|
|
42
|
-
|
|
33
|
+
archived: boolean;
|
|
43
34
|
/**
|
|
44
35
|
*
|
|
45
36
|
* @type {string}
|
|
@@ -48,89 +39,94 @@ export interface ShortReleaseResponse {
|
|
|
48
39
|
buildId?: string | null;
|
|
49
40
|
/**
|
|
50
41
|
*
|
|
51
|
-
* @type {
|
|
42
|
+
* @type {number}
|
|
52
43
|
* @memberof ShortReleaseResponse
|
|
53
44
|
*/
|
|
54
|
-
|
|
45
|
+
date: number;
|
|
55
46
|
/**
|
|
56
47
|
*
|
|
57
48
|
* @type {string}
|
|
58
49
|
* @memberof ShortReleaseResponse
|
|
59
50
|
*/
|
|
60
|
-
|
|
51
|
+
deviceId: string;
|
|
61
52
|
/**
|
|
62
53
|
*
|
|
63
54
|
* @type {string}
|
|
64
55
|
* @memberof ShortReleaseResponse
|
|
65
56
|
*/
|
|
66
|
-
|
|
57
|
+
featuredText?: string | null;
|
|
67
58
|
/**
|
|
68
|
-
*
|
|
69
|
-
* @type {
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
70
61
|
* @memberof ShortReleaseResponse
|
|
71
62
|
*/
|
|
72
|
-
|
|
63
|
+
filename: string;
|
|
73
64
|
/**
|
|
74
65
|
*
|
|
75
66
|
* @type {string}
|
|
76
67
|
* @memberof ShortReleaseResponse
|
|
77
68
|
*/
|
|
78
|
-
|
|
69
|
+
id: string;
|
|
79
70
|
/**
|
|
80
71
|
*
|
|
81
|
-
* @type {
|
|
72
|
+
* @type {boolean}
|
|
82
73
|
* @memberof ShortReleaseResponse
|
|
83
74
|
*/
|
|
84
|
-
|
|
75
|
+
isFeatured: boolean;
|
|
85
76
|
/**
|
|
86
77
|
*
|
|
87
|
-
* @type {
|
|
78
|
+
* @type {string}
|
|
88
79
|
* @memberof ShortReleaseResponse
|
|
89
80
|
*/
|
|
90
|
-
|
|
81
|
+
maintainerId?: string | null;
|
|
91
82
|
/**
|
|
92
83
|
*
|
|
93
84
|
* @type {string}
|
|
94
85
|
* @memberof ShortReleaseResponse
|
|
95
86
|
*/
|
|
96
|
-
|
|
87
|
+
md5: string;
|
|
97
88
|
/**
|
|
98
89
|
*
|
|
99
|
-
* @type {
|
|
90
|
+
* @type {number}
|
|
100
91
|
* @memberof ShortReleaseResponse
|
|
101
92
|
*/
|
|
102
|
-
|
|
93
|
+
size: number;
|
|
103
94
|
/**
|
|
104
95
|
*
|
|
105
|
-
* @type {
|
|
96
|
+
* @type {string}
|
|
106
97
|
* @memberof ShortReleaseResponse
|
|
107
98
|
*/
|
|
108
|
-
|
|
99
|
+
type: string;
|
|
109
100
|
/**
|
|
110
101
|
*
|
|
111
102
|
* @type {string}
|
|
112
103
|
* @memberof ShortReleaseResponse
|
|
113
104
|
*/
|
|
114
|
-
|
|
105
|
+
variant: string;
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof ShortReleaseResponse
|
|
110
|
+
*/
|
|
111
|
+
version: string;
|
|
115
112
|
}
|
|
116
113
|
|
|
117
|
-
|
|
118
|
-
|
|
119
114
|
/**
|
|
120
115
|
* Check if a given object implements the ShortReleaseResponse interface.
|
|
121
116
|
*/
|
|
122
117
|
export function instanceOfShortReleaseResponse(value: object): value is ShortReleaseResponse {
|
|
123
|
-
if (!('
|
|
124
|
-
if (!('
|
|
125
|
-
if (!('filename' in value) || value['filename'] === undefined) return false;
|
|
126
|
-
if (!('variant' in value) || value['variant'] === undefined) return false;
|
|
127
|
-
if (!('deviceId' in value) || value['deviceId'] === undefined) return false;
|
|
118
|
+
if (!('legacyId' in value) || value['legacyId'] === undefined) return false;
|
|
119
|
+
if (!('archived' in value) || value['archived'] === undefined) return false;
|
|
128
120
|
if (!('date' in value) || value['date'] === undefined) return false;
|
|
121
|
+
if (!('deviceId' in value) || value['deviceId'] === undefined) return false;
|
|
122
|
+
if (!('filename' in value) || value['filename'] === undefined) return false;
|
|
123
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
124
|
+
if (!('isFeatured' in value) || value['isFeatured'] === undefined) return false;
|
|
129
125
|
if (!('md5' in value) || value['md5'] === undefined) return false;
|
|
130
|
-
if (!('
|
|
126
|
+
if (!('size' in value) || value['size'] === undefined) return false;
|
|
131
127
|
if (!('type' in value) || value['type'] === undefined) return false;
|
|
132
|
-
if (!('
|
|
133
|
-
if (!('
|
|
128
|
+
if (!('variant' in value) || value['variant'] === undefined) return false;
|
|
129
|
+
if (!('version' in value) || value['version'] === undefined) return false;
|
|
134
130
|
return true;
|
|
135
131
|
}
|
|
136
132
|
|
|
@@ -144,20 +140,21 @@ export function ShortReleaseResponseFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
144
140
|
}
|
|
145
141
|
return {
|
|
146
142
|
|
|
147
|
-
'
|
|
148
|
-
'
|
|
143
|
+
'legacyId': json['_id'],
|
|
144
|
+
'archived': json['archived'],
|
|
149
145
|
'buildId': json['build_id'] == null ? undefined : json['build_id'],
|
|
150
|
-
'filename': json['filename'],
|
|
151
|
-
'variant': json['variant'],
|
|
152
|
-
'deviceId': json['device_id'],
|
|
153
146
|
'date': json['date'],
|
|
147
|
+
'deviceId': json['device_id'],
|
|
148
|
+
'featuredText': json['featured_text'] == null ? undefined : json['featured_text'],
|
|
149
|
+
'filename': json['filename'],
|
|
150
|
+
'id': json['id'],
|
|
151
|
+
'isFeatured': json['is_featured'],
|
|
152
|
+
'maintainerId': json['maintainer_id'] == null ? undefined : json['maintainer_id'],
|
|
154
153
|
'md5': json['md5'],
|
|
154
|
+
'size': json['size'],
|
|
155
|
+
'type': json['type'],
|
|
156
|
+
'variant': json['variant'],
|
|
155
157
|
'version': json['version'],
|
|
156
|
-
'type': ReleaseTypeFromJSON(json['type']),
|
|
157
|
-
'maintainerId': json['maintainer_id'] == null ? undefined : json['maintainer_id'],
|
|
158
|
-
'archived': json['archived'],
|
|
159
|
-
'isFeatured': json['is_featured'],
|
|
160
|
-
'featuredText': json['featured_text'] == null ? undefined : json['featured_text'],
|
|
161
158
|
};
|
|
162
159
|
}
|
|
163
160
|
|
|
@@ -172,20 +169,21 @@ export function ShortReleaseResponseToJSONTyped(value?: ShortReleaseResponse | n
|
|
|
172
169
|
|
|
173
170
|
return {
|
|
174
171
|
|
|
175
|
-
'
|
|
176
|
-
'
|
|
172
|
+
'_id': value['legacyId'],
|
|
173
|
+
'archived': value['archived'],
|
|
177
174
|
'build_id': value['buildId'],
|
|
178
|
-
'filename': value['filename'],
|
|
179
|
-
'variant': value['variant'],
|
|
180
|
-
'device_id': value['deviceId'],
|
|
181
175
|
'date': value['date'],
|
|
176
|
+
'device_id': value['deviceId'],
|
|
177
|
+
'featured_text': value['featuredText'],
|
|
178
|
+
'filename': value['filename'],
|
|
179
|
+
'id': value['id'],
|
|
180
|
+
'is_featured': value['isFeatured'],
|
|
181
|
+
'maintainer_id': value['maintainerId'],
|
|
182
182
|
'md5': value['md5'],
|
|
183
|
+
'size': value['size'],
|
|
184
|
+
'type': value['type'],
|
|
185
|
+
'variant': value['variant'],
|
|
183
186
|
'version': value['version'],
|
|
184
|
-
'type': ReleaseTypeToJSON(value['type']),
|
|
185
|
-
'maintainer_id': value['maintainerId'],
|
|
186
|
-
'archived': value['archived'],
|
|
187
|
-
'is_featured': value['isFeatured'],
|
|
188
|
-
'featured_text': value['featuredText'],
|
|
189
187
|
};
|
|
190
188
|
}
|
|
191
189
|
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Fox API
|
|
5
|
+
* 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.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 6.0.4
|
|
8
|
+
* Contact: admin@orangefox.tech
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface TokenResponse
|
|
20
|
+
*/
|
|
21
|
+
export interface TokenResponse {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof TokenResponse
|
|
26
|
+
*/
|
|
27
|
+
accessToken: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof TokenResponse
|
|
32
|
+
*/
|
|
33
|
+
tokenType: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the TokenResponse interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfTokenResponse(value: object): value is TokenResponse {
|
|
40
|
+
if (!('accessToken' in value) || value['accessToken'] === undefined) return false;
|
|
41
|
+
if (!('tokenType' in value) || value['tokenType'] === undefined) return false;
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function TokenResponseFromJSON(json: any): TokenResponse {
|
|
46
|
+
return TokenResponseFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function TokenResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenResponse {
|
|
50
|
+
if (json == null) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
'accessToken': json['access_token'],
|
|
56
|
+
'tokenType': json['token_type'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function TokenResponseToJSON(json: any): TokenResponse {
|
|
61
|
+
return TokenResponseToJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function TokenResponseToJSONTyped(value?: TokenResponse | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
+
if (value == null) {
|
|
66
|
+
return value;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
|
|
71
|
+
'access_token': value['accessToken'],
|
|
72
|
+
'token_type': value['tokenType'],
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -1,22 +1,20 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export * from './DeviceResponse';
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './
|
|
4
|
+
export * from './ErrorResponse';
|
|
5
|
+
export * from './GlobalStatsResponse';
|
|
6
6
|
export * from './ListResponseReleaseResponse';
|
|
7
|
+
export * from './ListResponseReleaseResponseDataInner';
|
|
7
8
|
export * from './ListResponseShortDeviceResponse';
|
|
8
|
-
export * from './
|
|
9
|
-
export * from './
|
|
10
|
-
export * from './
|
|
9
|
+
export * from './ListResponseShortDeviceResponseDataInner';
|
|
10
|
+
export * from './ListResponseString';
|
|
11
|
+
export * from './MaintainerShortResponse';
|
|
12
|
+
export * from './NewReportRequest';
|
|
11
13
|
export * from './PasteInput';
|
|
12
|
-
export * from './
|
|
14
|
+
export * from './PasteResponse';
|
|
13
15
|
export * from './RecoveryImgResponse';
|
|
14
16
|
export * from './ReleaseGroupsResponse';
|
|
15
17
|
export * from './ReleaseResponse';
|
|
16
|
-
export * from './ReleaseType';
|
|
17
|
-
export * from './ReleasesSort';
|
|
18
|
-
export * from './ResponseGetReleases';
|
|
19
18
|
export * from './ShortDeviceResponse';
|
|
20
19
|
export * from './ShortReleaseResponse';
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './ValidationErrorLocInner';
|
|
20
|
+
export * from './TokenResponse';
|
package/src/runtime.ts
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Fox API
|
|
5
|
-
*
|
|
5
|
+
* 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.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 6.0.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -261,6 +261,12 @@ export class ResponseError extends Error {
|
|
|
261
261
|
override name: "ResponseError" = "ResponseError";
|
|
262
262
|
constructor(public response: Response, msg?: string) {
|
|
263
263
|
super(msg);
|
|
264
|
+
|
|
265
|
+
// restore prototype chain
|
|
266
|
+
const actualProto = new.target.prototype;
|
|
267
|
+
if (Object.setPrototypeOf) {
|
|
268
|
+
Object.setPrototypeOf(this, actualProto);
|
|
269
|
+
}
|
|
264
270
|
}
|
|
265
271
|
}
|
|
266
272
|
|
|
@@ -268,6 +274,12 @@ export class FetchError extends Error {
|
|
|
268
274
|
override name: "FetchError" = "FetchError";
|
|
269
275
|
constructor(public cause: Error, msg?: string) {
|
|
270
276
|
super(msg);
|
|
277
|
+
|
|
278
|
+
// restore prototype chain
|
|
279
|
+
const actualProto = new.target.prototype;
|
|
280
|
+
if (Object.setPrototypeOf) {
|
|
281
|
+
Object.setPrototypeOf(this, actualProto);
|
|
282
|
+
}
|
|
271
283
|
}
|
|
272
284
|
}
|
|
273
285
|
|
|
@@ -275,6 +287,12 @@ export class RequiredError extends Error {
|
|
|
275
287
|
override name: "RequiredError" = "RequiredError";
|
|
276
288
|
constructor(public field: string, msg?: string) {
|
|
277
289
|
super(msg);
|
|
290
|
+
|
|
291
|
+
// restore prototype chain
|
|
292
|
+
const actualProto = new.target.prototype;
|
|
293
|
+
if (Object.setPrototypeOf) {
|
|
294
|
+
Object.setPrototypeOf(this, actualProto);
|
|
295
|
+
}
|
|
278
296
|
}
|
|
279
297
|
}
|
|
280
298
|
|
|
@@ -1,52 +0,0 @@
|
|
|
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.3.3
|
|
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 GlobalStatsAggregationModel
|
|
16
|
-
*/
|
|
17
|
-
export interface GlobalStatsAggregationModel {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof GlobalStatsAggregationModel
|
|
22
|
-
*/
|
|
23
|
-
count: number;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof GlobalStatsAggregationModel
|
|
28
|
-
*/
|
|
29
|
-
deviceCount: number;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof GlobalStatsAggregationModel
|
|
34
|
-
*/
|
|
35
|
-
releaseCount: number;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {{ [key: string]: number; }}
|
|
39
|
-
* @memberof GlobalStatsAggregationModel
|
|
40
|
-
*/
|
|
41
|
-
days: {
|
|
42
|
-
[key: string]: number;
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
/**
|
|
46
|
-
* Check if a given object implements the GlobalStatsAggregationModel interface.
|
|
47
|
-
*/
|
|
48
|
-
export declare function instanceOfGlobalStatsAggregationModel(value: object): value is GlobalStatsAggregationModel;
|
|
49
|
-
export declare function GlobalStatsAggregationModelFromJSON(json: any): GlobalStatsAggregationModel;
|
|
50
|
-
export declare function GlobalStatsAggregationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalStatsAggregationModel;
|
|
51
|
-
export declare function GlobalStatsAggregationModelToJSON(json: any): GlobalStatsAggregationModel;
|
|
52
|
-
export declare function GlobalStatsAggregationModelToJSONTyped(value?: GlobalStatsAggregationModel | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,33 +0,0 @@
|
|
|
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.3.3
|
|
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 { ValidationError } from './ValidationError';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface HTTPValidationError
|
|
17
|
-
*/
|
|
18
|
-
export interface HTTPValidationError {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {Array<ValidationError>}
|
|
22
|
-
* @memberof HTTPValidationError
|
|
23
|
-
*/
|
|
24
|
-
detail?: Array<ValidationError>;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* Check if a given object implements the HTTPValidationError interface.
|
|
28
|
-
*/
|
|
29
|
-
export declare function instanceOfHTTPValidationError(value: object): value is HTTPValidationError;
|
|
30
|
-
export declare function HTTPValidationErrorFromJSON(json: any): HTTPValidationError;
|
|
31
|
-
export declare function HTTPValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): HTTPValidationError;
|
|
32
|
-
export declare function HTTPValidationErrorToJSON(json: any): HTTPValidationError;
|
|
33
|
-
export declare function HTTPValidationErrorToJSONTyped(value?: HTTPValidationError | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Fox API
|
|
5
|
-
* 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.
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 5.3.3
|
|
8
|
-
* Contact: admin@orangefox.tech
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
import { ValidationErrorFromJSON, ValidationErrorToJSON, } from './ValidationError';
|
|
15
|
-
/**
|
|
16
|
-
* Check if a given object implements the HTTPValidationError interface.
|
|
17
|
-
*/
|
|
18
|
-
export function instanceOfHTTPValidationError(value) {
|
|
19
|
-
return true;
|
|
20
|
-
}
|
|
21
|
-
export function HTTPValidationErrorFromJSON(json) {
|
|
22
|
-
return HTTPValidationErrorFromJSONTyped(json, false);
|
|
23
|
-
}
|
|
24
|
-
export function HTTPValidationErrorFromJSONTyped(json, ignoreDiscriminator) {
|
|
25
|
-
if (json == null) {
|
|
26
|
-
return json;
|
|
27
|
-
}
|
|
28
|
-
return {
|
|
29
|
-
'detail': json['detail'] == null ? undefined : (json['detail'].map(ValidationErrorFromJSON)),
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
export function HTTPValidationErrorToJSON(json) {
|
|
33
|
-
return HTTPValidationErrorToJSONTyped(json, false);
|
|
34
|
-
}
|
|
35
|
-
export function HTTPValidationErrorToJSONTyped(value, ignoreDiscriminator = false) {
|
|
36
|
-
if (value == null) {
|
|
37
|
-
return value;
|
|
38
|
-
}
|
|
39
|
-
return {
|
|
40
|
-
'detail': value['detail'] == null ? undefined : (value['detail'].map(ValidationErrorToJSON)),
|
|
41
|
-
};
|
|
42
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
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.3.3
|
|
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 { ShortReleaseResponse } from './ShortReleaseResponse';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface ListResponseShortReleaseResponse
|
|
17
|
-
*/
|
|
18
|
-
export interface ListResponseShortReleaseResponse {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {Array<ShortReleaseResponse>}
|
|
22
|
-
* @memberof ListResponseShortReleaseResponse
|
|
23
|
-
*/
|
|
24
|
-
data: Array<ShortReleaseResponse>;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {number}
|
|
28
|
-
* @memberof ListResponseShortReleaseResponse
|
|
29
|
-
*/
|
|
30
|
-
readonly count: number;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Check if a given object implements the ListResponseShortReleaseResponse interface.
|
|
34
|
-
*/
|
|
35
|
-
export declare function instanceOfListResponseShortReleaseResponse(value: object): value is ListResponseShortReleaseResponse;
|
|
36
|
-
export declare function ListResponseShortReleaseResponseFromJSON(json: any): ListResponseShortReleaseResponse;
|
|
37
|
-
export declare function ListResponseShortReleaseResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResponseShortReleaseResponse;
|
|
38
|
-
export declare function ListResponseShortReleaseResponseToJSON(json: any): ListResponseShortReleaseResponse;
|
|
39
|
-
export declare function ListResponseShortReleaseResponseToJSONTyped(value?: Omit<ListResponseShortReleaseResponse, 'count'> | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Fox API
|
|
5
|
-
* 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.
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 5.3.3
|
|
8
|
-
* Contact: admin@orangefox.tech
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
import { ShortReleaseResponseFromJSON, ShortReleaseResponseToJSON, } from './ShortReleaseResponse';
|
|
15
|
-
/**
|
|
16
|
-
* Check if a given object implements the ListResponseShortReleaseResponse interface.
|
|
17
|
-
*/
|
|
18
|
-
export function instanceOfListResponseShortReleaseResponse(value) {
|
|
19
|
-
if (!('data' in value) || value['data'] === undefined)
|
|
20
|
-
return false;
|
|
21
|
-
if (!('count' in value) || value['count'] === undefined)
|
|
22
|
-
return false;
|
|
23
|
-
return true;
|
|
24
|
-
}
|
|
25
|
-
export function ListResponseShortReleaseResponseFromJSON(json) {
|
|
26
|
-
return ListResponseShortReleaseResponseFromJSONTyped(json, false);
|
|
27
|
-
}
|
|
28
|
-
export function ListResponseShortReleaseResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
29
|
-
if (json == null) {
|
|
30
|
-
return json;
|
|
31
|
-
}
|
|
32
|
-
return {
|
|
33
|
-
'data': (json['data'].map(ShortReleaseResponseFromJSON)),
|
|
34
|
-
'count': json['count'],
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
export function ListResponseShortReleaseResponseToJSON(json) {
|
|
38
|
-
return ListResponseShortReleaseResponseToJSONTyped(json, false);
|
|
39
|
-
}
|
|
40
|
-
export function ListResponseShortReleaseResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
41
|
-
if (value == null) {
|
|
42
|
-
return value;
|
|
43
|
-
}
|
|
44
|
-
return {
|
|
45
|
-
'data': (value['data'].map(ShortReleaseResponseToJSON)),
|
|
46
|
-
};
|
|
47
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
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.3.3
|
|
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 ListResponseStr
|
|
16
|
-
*/
|
|
17
|
-
export interface ListResponseStr {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {Array<string>}
|
|
21
|
-
* @memberof ListResponseStr
|
|
22
|
-
*/
|
|
23
|
-
data: Array<string>;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof ListResponseStr
|
|
28
|
-
*/
|
|
29
|
-
readonly count: number;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Check if a given object implements the ListResponseStr interface.
|
|
33
|
-
*/
|
|
34
|
-
export declare function instanceOfListResponseStr(value: object): value is ListResponseStr;
|
|
35
|
-
export declare function ListResponseStrFromJSON(json: any): ListResponseStr;
|
|
36
|
-
export declare function ListResponseStrFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResponseStr;
|
|
37
|
-
export declare function ListResponseStrToJSON(json: any): ListResponseStr;
|
|
38
|
-
export declare function ListResponseStrToJSONTyped(value?: Omit<ListResponseStr, 'count'> | null, ignoreDiscriminator?: boolean): any;
|