@orangefox-recovery/foxinternalclient 5.2.2 → 5.2.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 +1 -0
- package/README.md +3 -2
- package/api.ts +29 -10
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +30 -11
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +30 -11
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/FoxFactoryApi.md +2 -2
- package/docs/ListResponseBuildTaskShortResponse.md +22 -0
- package/docs/ReleaseInternalResponse.md +1 -1
- package/docs/ReleaseResponse.md +1 -1
- package/docs/ShortReleaseResponse.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -22,6 +22,7 @@ docs/GitlabApi.md
|
|
|
22
22
|
docs/GlobalStatsAggregationModel.md
|
|
23
23
|
docs/HTTPValidationError.md
|
|
24
24
|
docs/InternalApi.md
|
|
25
|
+
docs/ListResponseBuildTaskShortResponse.md
|
|
25
26
|
docs/ListResponseReleaseResponse.md
|
|
26
27
|
docs/ListResponseShortDeviceResponse.md
|
|
27
28
|
docs/ListResponseShortReleaseResponse.md
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @orangefox-recovery/foxinternalclient@5.2.
|
|
1
|
+
## @orangefox-recovery/foxinternalclient@5.2.4
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @orangefox-recovery/foxinternalclient@5.2.
|
|
39
|
+
npm install @orangefox-recovery/foxinternalclient@5.2.4 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -101,6 +101,7 @@ Class | Method | HTTP request | Description
|
|
|
101
101
|
- [FFStatusResponse](docs/FFStatusResponse.md)
|
|
102
102
|
- [GlobalStatsAggregationModel](docs/GlobalStatsAggregationModel.md)
|
|
103
103
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
104
|
+
- [ListResponseBuildTaskShortResponse](docs/ListResponseBuildTaskShortResponse.md)
|
|
104
105
|
- [ListResponseReleaseResponse](docs/ListResponseReleaseResponse.md)
|
|
105
106
|
- [ListResponseShortDeviceResponse](docs/ListResponseShortDeviceResponse.md)
|
|
106
107
|
- [ListResponseShortReleaseResponse](docs/ListResponseShortReleaseResponse.md)
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -504,6 +504,25 @@ export interface HTTPValidationError {
|
|
|
504
504
|
*/
|
|
505
505
|
'detail'?: Array<ValidationError>;
|
|
506
506
|
}
|
|
507
|
+
/**
|
|
508
|
+
*
|
|
509
|
+
* @export
|
|
510
|
+
* @interface ListResponseBuildTaskShortResponse
|
|
511
|
+
*/
|
|
512
|
+
export interface ListResponseBuildTaskShortResponse {
|
|
513
|
+
/**
|
|
514
|
+
*
|
|
515
|
+
* @type {Array<BuildTaskShortResponse>}
|
|
516
|
+
* @memberof ListResponseBuildTaskShortResponse
|
|
517
|
+
*/
|
|
518
|
+
'data': Array<BuildTaskShortResponse>;
|
|
519
|
+
/**
|
|
520
|
+
*
|
|
521
|
+
* @type {number}
|
|
522
|
+
* @memberof ListResponseBuildTaskShortResponse
|
|
523
|
+
*/
|
|
524
|
+
'count': number;
|
|
525
|
+
}
|
|
507
526
|
/**
|
|
508
527
|
*
|
|
509
528
|
* @export
|
|
@@ -877,10 +896,10 @@ export interface ReleaseInternalResponse {
|
|
|
877
896
|
'device_id': string;
|
|
878
897
|
/**
|
|
879
898
|
*
|
|
880
|
-
* @type {
|
|
899
|
+
* @type {number}
|
|
881
900
|
* @memberof ReleaseInternalResponse
|
|
882
901
|
*/
|
|
883
|
-
'date':
|
|
902
|
+
'date': number;
|
|
884
903
|
/**
|
|
885
904
|
*
|
|
886
905
|
* @type {string}
|
|
@@ -1027,10 +1046,10 @@ export interface ReleaseResponse {
|
|
|
1027
1046
|
'device_id': string;
|
|
1028
1047
|
/**
|
|
1029
1048
|
*
|
|
1030
|
-
* @type {
|
|
1049
|
+
* @type {number}
|
|
1031
1050
|
* @memberof ReleaseResponse
|
|
1032
1051
|
*/
|
|
1033
|
-
'date':
|
|
1052
|
+
'date': number;
|
|
1034
1053
|
/**
|
|
1035
1054
|
*
|
|
1036
1055
|
* @type {string}
|
|
@@ -1326,10 +1345,10 @@ export interface ShortReleaseResponse {
|
|
|
1326
1345
|
'device_id': string;
|
|
1327
1346
|
/**
|
|
1328
1347
|
*
|
|
1329
|
-
* @type {
|
|
1348
|
+
* @type {number}
|
|
1330
1349
|
* @memberof ShortReleaseResponse
|
|
1331
1350
|
*/
|
|
1332
|
-
'date':
|
|
1351
|
+
'date': number;
|
|
1333
1352
|
/**
|
|
1334
1353
|
*
|
|
1335
1354
|
* @type {string}
|
|
@@ -2397,7 +2416,7 @@ export const FoxFactoryApiFp = function(configuration?: Configuration) {
|
|
|
2397
2416
|
* @param {*} [options] Override http request option.
|
|
2398
2417
|
* @throws {RequiredError}
|
|
2399
2418
|
*/
|
|
2400
|
-
async listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2419
|
+
async listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseBuildTaskShortResponse>> {
|
|
2401
2420
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTasksFactoryGet(deviceId, options);
|
|
2402
2421
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2403
2422
|
const localVarOperationServerBasePath = operationServerMap['FoxFactoryApi.listTasksFactoryGet']?.[localVarOperationServerIndex]?.url;
|
|
@@ -2486,7 +2505,7 @@ export const FoxFactoryApiFactory = function (configuration?: Configuration, bas
|
|
|
2486
2505
|
* @param {*} [options] Override http request option.
|
|
2487
2506
|
* @throws {RequiredError}
|
|
2488
2507
|
*/
|
|
2489
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2508
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseBuildTaskShortResponse> {
|
|
2490
2509
|
return localVarFp.listTasksFactoryGet(deviceId, options).then((request) => request(axios, basePath));
|
|
2491
2510
|
},
|
|
2492
2511
|
/**
|
|
@@ -2566,7 +2585,7 @@ export interface FoxFactoryApiInterface {
|
|
|
2566
2585
|
* @throws {RequiredError}
|
|
2567
2586
|
* @memberof FoxFactoryApiInterface
|
|
2568
2587
|
*/
|
|
2569
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2588
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseBuildTaskShortResponse>;
|
|
2570
2589
|
|
|
2571
2590
|
/**
|
|
2572
2591
|
* Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -492,6 +492,25 @@ export interface HTTPValidationError {
|
|
|
492
492
|
*/
|
|
493
493
|
'detail'?: Array<ValidationError>;
|
|
494
494
|
}
|
|
495
|
+
/**
|
|
496
|
+
*
|
|
497
|
+
* @export
|
|
498
|
+
* @interface ListResponseBuildTaskShortResponse
|
|
499
|
+
*/
|
|
500
|
+
export interface ListResponseBuildTaskShortResponse {
|
|
501
|
+
/**
|
|
502
|
+
*
|
|
503
|
+
* @type {Array<BuildTaskShortResponse>}
|
|
504
|
+
* @memberof ListResponseBuildTaskShortResponse
|
|
505
|
+
*/
|
|
506
|
+
'data': Array<BuildTaskShortResponse>;
|
|
507
|
+
/**
|
|
508
|
+
*
|
|
509
|
+
* @type {number}
|
|
510
|
+
* @memberof ListResponseBuildTaskShortResponse
|
|
511
|
+
*/
|
|
512
|
+
'count': number;
|
|
513
|
+
}
|
|
495
514
|
/**
|
|
496
515
|
*
|
|
497
516
|
* @export
|
|
@@ -867,10 +886,10 @@ export interface ReleaseInternalResponse {
|
|
|
867
886
|
'device_id': string;
|
|
868
887
|
/**
|
|
869
888
|
*
|
|
870
|
-
* @type {
|
|
889
|
+
* @type {number}
|
|
871
890
|
* @memberof ReleaseInternalResponse
|
|
872
891
|
*/
|
|
873
|
-
'date':
|
|
892
|
+
'date': number;
|
|
874
893
|
/**
|
|
875
894
|
*
|
|
876
895
|
* @type {string}
|
|
@@ -1019,10 +1038,10 @@ export interface ReleaseResponse {
|
|
|
1019
1038
|
'device_id': string;
|
|
1020
1039
|
/**
|
|
1021
1040
|
*
|
|
1022
|
-
* @type {
|
|
1041
|
+
* @type {number}
|
|
1023
1042
|
* @memberof ReleaseResponse
|
|
1024
1043
|
*/
|
|
1025
|
-
'date':
|
|
1044
|
+
'date': number;
|
|
1026
1045
|
/**
|
|
1027
1046
|
*
|
|
1028
1047
|
* @type {string}
|
|
@@ -1316,10 +1335,10 @@ export interface ShortReleaseResponse {
|
|
|
1316
1335
|
'device_id': string;
|
|
1317
1336
|
/**
|
|
1318
1337
|
*
|
|
1319
|
-
* @type {
|
|
1338
|
+
* @type {number}
|
|
1320
1339
|
* @memberof ShortReleaseResponse
|
|
1321
1340
|
*/
|
|
1322
|
-
'date':
|
|
1341
|
+
'date': number;
|
|
1323
1342
|
/**
|
|
1324
1343
|
*
|
|
1325
1344
|
* @type {string}
|
|
@@ -1961,7 +1980,7 @@ export declare const FoxFactoryApiFp: (configuration?: Configuration) => {
|
|
|
1961
1980
|
* @param {*} [options] Override http request option.
|
|
1962
1981
|
* @throws {RequiredError}
|
|
1963
1982
|
*/
|
|
1964
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1983
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseBuildTaskShortResponse>>;
|
|
1965
1984
|
/**
|
|
1966
1985
|
* Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
|
|
1967
1986
|
* @summary New Task
|
|
@@ -2023,7 +2042,7 @@ export declare const FoxFactoryApiFactory: (configuration?: Configuration, baseP
|
|
|
2023
2042
|
* @param {*} [options] Override http request option.
|
|
2024
2043
|
* @throws {RequiredError}
|
|
2025
2044
|
*/
|
|
2026
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2045
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseBuildTaskShortResponse>;
|
|
2027
2046
|
/**
|
|
2028
2047
|
* Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
|
|
2029
2048
|
* @summary New Task
|
|
@@ -2091,7 +2110,7 @@ export interface FoxFactoryApiInterface {
|
|
|
2091
2110
|
* @throws {RequiredError}
|
|
2092
2111
|
* @memberof FoxFactoryApiInterface
|
|
2093
2112
|
*/
|
|
2094
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2113
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseBuildTaskShortResponse>;
|
|
2095
2114
|
/**
|
|
2096
2115
|
* Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
|
|
2097
2116
|
* @summary New Task
|
|
@@ -2162,7 +2181,7 @@ export declare class FoxFactoryApi extends BaseAPI implements FoxFactoryApiInter
|
|
|
2162
2181
|
* @throws {RequiredError}
|
|
2163
2182
|
* @memberof FoxFactoryApi
|
|
2164
2183
|
*/
|
|
2165
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
2184
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListResponseBuildTaskShortResponse, any>>;
|
|
2166
2185
|
/**
|
|
2167
2186
|
* Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
|
|
2168
2187
|
* @summary New Task
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Fox API
|
|
6
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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 5.2.
|
|
8
|
+
* The version of the OpenAPI document: 5.2.4
|
|
9
9
|
* Contact: admin@orangefox.tech
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Fox API
|
|
6
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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 5.2.
|
|
8
|
+
* The version of the OpenAPI document: 5.2.4
|
|
9
9
|
* Contact: admin@orangefox.tech
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Fox API
|
|
6
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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 5.2.
|
|
8
|
+
* The version of the OpenAPI document: 5.2.4
|
|
9
9
|
* Contact: admin@orangefox.tech
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Fox API
|
|
6
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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 5.2.
|
|
8
|
+
* The version of the OpenAPI document: 5.2.4
|
|
9
9
|
* Contact: admin@orangefox.tech
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -492,6 +492,25 @@ export interface HTTPValidationError {
|
|
|
492
492
|
*/
|
|
493
493
|
'detail'?: Array<ValidationError>;
|
|
494
494
|
}
|
|
495
|
+
/**
|
|
496
|
+
*
|
|
497
|
+
* @export
|
|
498
|
+
* @interface ListResponseBuildTaskShortResponse
|
|
499
|
+
*/
|
|
500
|
+
export interface ListResponseBuildTaskShortResponse {
|
|
501
|
+
/**
|
|
502
|
+
*
|
|
503
|
+
* @type {Array<BuildTaskShortResponse>}
|
|
504
|
+
* @memberof ListResponseBuildTaskShortResponse
|
|
505
|
+
*/
|
|
506
|
+
'data': Array<BuildTaskShortResponse>;
|
|
507
|
+
/**
|
|
508
|
+
*
|
|
509
|
+
* @type {number}
|
|
510
|
+
* @memberof ListResponseBuildTaskShortResponse
|
|
511
|
+
*/
|
|
512
|
+
'count': number;
|
|
513
|
+
}
|
|
495
514
|
/**
|
|
496
515
|
*
|
|
497
516
|
* @export
|
|
@@ -867,10 +886,10 @@ export interface ReleaseInternalResponse {
|
|
|
867
886
|
'device_id': string;
|
|
868
887
|
/**
|
|
869
888
|
*
|
|
870
|
-
* @type {
|
|
889
|
+
* @type {number}
|
|
871
890
|
* @memberof ReleaseInternalResponse
|
|
872
891
|
*/
|
|
873
|
-
'date':
|
|
892
|
+
'date': number;
|
|
874
893
|
/**
|
|
875
894
|
*
|
|
876
895
|
* @type {string}
|
|
@@ -1019,10 +1038,10 @@ export interface ReleaseResponse {
|
|
|
1019
1038
|
'device_id': string;
|
|
1020
1039
|
/**
|
|
1021
1040
|
*
|
|
1022
|
-
* @type {
|
|
1041
|
+
* @type {number}
|
|
1023
1042
|
* @memberof ReleaseResponse
|
|
1024
1043
|
*/
|
|
1025
|
-
'date':
|
|
1044
|
+
'date': number;
|
|
1026
1045
|
/**
|
|
1027
1046
|
*
|
|
1028
1047
|
* @type {string}
|
|
@@ -1316,10 +1335,10 @@ export interface ShortReleaseResponse {
|
|
|
1316
1335
|
'device_id': string;
|
|
1317
1336
|
/**
|
|
1318
1337
|
*
|
|
1319
|
-
* @type {
|
|
1338
|
+
* @type {number}
|
|
1320
1339
|
* @memberof ShortReleaseResponse
|
|
1321
1340
|
*/
|
|
1322
|
-
'date':
|
|
1341
|
+
'date': number;
|
|
1323
1342
|
/**
|
|
1324
1343
|
*
|
|
1325
1344
|
* @type {string}
|
|
@@ -1961,7 +1980,7 @@ export declare const FoxFactoryApiFp: (configuration?: Configuration) => {
|
|
|
1961
1980
|
* @param {*} [options] Override http request option.
|
|
1962
1981
|
* @throws {RequiredError}
|
|
1963
1982
|
*/
|
|
1964
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1983
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseBuildTaskShortResponse>>;
|
|
1965
1984
|
/**
|
|
1966
1985
|
* Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
|
|
1967
1986
|
* @summary New Task
|
|
@@ -2023,7 +2042,7 @@ export declare const FoxFactoryApiFactory: (configuration?: Configuration, baseP
|
|
|
2023
2042
|
* @param {*} [options] Override http request option.
|
|
2024
2043
|
* @throws {RequiredError}
|
|
2025
2044
|
*/
|
|
2026
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2045
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseBuildTaskShortResponse>;
|
|
2027
2046
|
/**
|
|
2028
2047
|
* Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
|
|
2029
2048
|
* @summary New Task
|
|
@@ -2091,7 +2110,7 @@ export interface FoxFactoryApiInterface {
|
|
|
2091
2110
|
* @throws {RequiredError}
|
|
2092
2111
|
* @memberof FoxFactoryApiInterface
|
|
2093
2112
|
*/
|
|
2094
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2113
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseBuildTaskShortResponse>;
|
|
2095
2114
|
/**
|
|
2096
2115
|
* Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
|
|
2097
2116
|
* @summary New Task
|
|
@@ -2162,7 +2181,7 @@ export declare class FoxFactoryApi extends BaseAPI implements FoxFactoryApiInter
|
|
|
2162
2181
|
* @throws {RequiredError}
|
|
2163
2182
|
* @memberof FoxFactoryApi
|
|
2164
2183
|
*/
|
|
2165
|
-
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
2184
|
+
listTasksFactoryGet(deviceId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListResponseBuildTaskShortResponse, any>>;
|
|
2166
2185
|
/**
|
|
2167
2186
|
* Handles the creation of a new build task including validations for the device existence and its connection to GitLab. It initializes a new task with a pending status and the required details, then saves it to the database before returning the task model.
|
|
2168
2187
|
* @summary New Task
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fox API
|
|
3
3
|
* Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application\'s access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 5.2.
|
|
5
|
+
* The version of the OpenAPI document: 5.2.4
|
|
6
6
|
* Contact: admin@orangefox.tech
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Fox API
|
|
6
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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 5.2.
|
|
8
|
+
* The version of the OpenAPI document: 5.2.4
|
|
9
9
|
* Contact: admin@orangefox.tech
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/docs/FoxFactoryApi.md
CHANGED
|
@@ -212,7 +212,7 @@ No authorization required
|
|
|
212
212
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
213
213
|
|
|
214
214
|
# **listTasksFactoryGet**
|
|
215
|
-
>
|
|
215
|
+
> ListResponseBuildTaskShortResponse listTasksFactoryGet()
|
|
216
216
|
|
|
217
217
|
Get a list of all build tasks. This endpoint retrieves all build tasks from the database and returns them as a list of abbreviated responses. Parameters: device_id (ObjectId, optional): Filter tasks by device ID
|
|
218
218
|
|
|
@@ -243,7 +243,7 @@ const { status, data } = await apiInstance.listTasksFactoryGet(
|
|
|
243
243
|
|
|
244
244
|
### Return type
|
|
245
245
|
|
|
246
|
-
**
|
|
246
|
+
**ListResponseBuildTaskShortResponse**
|
|
247
247
|
|
|
248
248
|
### Authorization
|
|
249
249
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ListResponseBuildTaskShortResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**data** | [**Array<BuildTaskShortResponse>**](BuildTaskShortResponse.md) | | [default to undefined]
|
|
9
|
+
**count** | **number** | | [readonly] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ListResponseBuildTaskShortResponse } from '@orangefox-recovery/foxinternalclient';
|
|
15
|
+
|
|
16
|
+
const instance: ListResponseBuildTaskShortResponse = {
|
|
17
|
+
data,
|
|
18
|
+
count,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**filename** | **string** | | [default to undefined]
|
|
13
13
|
**variant** | **string** | | [default to undefined]
|
|
14
14
|
**device_id** | **string** | | [default to undefined]
|
|
15
|
-
**date** | **
|
|
15
|
+
**date** | **number** | | [default to undefined]
|
|
16
16
|
**md5** | **string** | | [default to undefined]
|
|
17
17
|
**version** | **string** | | [default to undefined]
|
|
18
18
|
**type** | [**ReleaseType**](ReleaseType.md) | | [default to undefined]
|
package/docs/ReleaseResponse.md
CHANGED
|
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**filename** | **string** | | [default to undefined]
|
|
13
13
|
**variant** | **string** | | [default to undefined]
|
|
14
14
|
**device_id** | **string** | | [default to undefined]
|
|
15
|
-
**date** | **
|
|
15
|
+
**date** | **number** | | [default to undefined]
|
|
16
16
|
**md5** | **string** | | [default to undefined]
|
|
17
17
|
**version** | **string** | | [default to undefined]
|
|
18
18
|
**type** | [**ReleaseType**](ReleaseType.md) | | [default to undefined]
|
|
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**filename** | **string** | | [default to undefined]
|
|
13
13
|
**variant** | **string** | | [default to undefined]
|
|
14
14
|
**device_id** | **string** | | [default to undefined]
|
|
15
|
-
**date** | **
|
|
15
|
+
**date** | **number** | | [default to undefined]
|
|
16
16
|
**md5** | **string** | | [default to undefined]
|
|
17
17
|
**version** | **string** | | [default to undefined]
|
|
18
18
|
**type** | [**ReleaseType**](ReleaseType.md) | | [default to undefined]
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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: 5.2.
|
|
7
|
+
* The version of the OpenAPI document: 5.2.4
|
|
8
8
|
* Contact: admin@orangefox.tech
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|