@orangefox-recovery/foxinternalclient 5.2.4 → 5.2.6

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.
@@ -33,6 +33,9 @@ docs/LogResponse.md
33
33
  docs/MaintainerShortModel.md
34
34
  docs/NewBuildTaskBody.md
35
35
  docs/NewDeviceBody.md
36
+ docs/PasteApi.md
37
+ docs/PasteInput.md
38
+ docs/PasteOutput.md
36
39
  docs/RecoveryImgResponse.md
37
40
  docs/ReleaseApi.md
38
41
  docs/ReleaseGroupsResponse.md
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @orangefox-recovery/foxinternalclient@5.2.4
1
+ ## @orangefox-recovery/foxinternalclient@5.2.6
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.4 --save
39
+ npm install @orangefox-recovery/foxinternalclient@5.2.6 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -57,14 +57,18 @@ Class | Method | HTTP request | Description
57
57
  *DeviceApi* | [**getOems**](docs/DeviceApi.md#getoems) | **GET** /oems/ | Get Oems
58
58
  *FoxFactoryApi* | [**cancelTaskFactoryTaskIdCancelPost**](docs/FoxFactoryApi.md#canceltaskfactorytaskidcancelpost) | **POST** /factory/{task_id}/cancel | Cancel Task
59
59
  *FoxFactoryApi* | [**deleteTaskFactoryTaskIdDelete**](docs/FoxFactoryApi.md#deletetaskfactorytaskiddelete) | **DELETE** /factory/{task_id} | Delete Task
60
+ *FoxFactoryApi* | [**downloadArtifactFactoryTaskIdArtifactGet**](docs/FoxFactoryApi.md#downloadartifactfactorytaskidartifactget) | **GET** /factory/{task_id}/artifact | Download Artifact
60
61
  *FoxFactoryApi* | [**factoryStatusFactoryStatusGet**](docs/FoxFactoryApi.md#factorystatusfactorystatusget) | **GET** /factory/status | Factory Status
61
62
  *FoxFactoryApi* | [**getTaskFactoryTaskIdGet**](docs/FoxFactoryApi.md#gettaskfactorytaskidget) | **GET** /factory/{task_id} | Get Task
62
63
  *FoxFactoryApi* | [**listTasksFactoryGet**](docs/FoxFactoryApi.md#listtasksfactoryget) | **GET** /factory/ | List Tasks
63
64
  *FoxFactoryApi* | [**newTaskFactoryPost**](docs/FoxFactoryApi.md#newtaskfactorypost) | **POST** /factory/ | New Task
64
65
  *FoxFactoryApi* | [**updateTaskFactoryTaskIdPatch**](docs/FoxFactoryApi.md#updatetaskfactorytaskidpatch) | **PATCH** /factory/{task_id} | Update Task
66
+ *FoxFactoryApi* | [**updateWorkerStatusFactoryUpdateStatusPost**](docs/FoxFactoryApi.md#updateworkerstatusfactoryupdatestatuspost) | **POST** /factory/update_status | Update Worker Status
67
+ *FoxFactoryApi* | [**uploadArtifactFactoryTaskIdArtifactPost**](docs/FoxFactoryApi.md#uploadartifactfactorytaskidartifactpost) | **POST** /factory/{task_id}/artifact | Upload Artifact
65
68
  *GitlabApi* | [**deviceAddGitlabRepoGitlabDeviceDeviceIdGitlabPost**](docs/GitlabApi.md#deviceaddgitlabrepogitlabdevicedeviceidgitlabpost) | **POST** /gitlab/device/{device_id}/gitlab | Device Add Gitlab Repo
66
69
  *InternalApi* | [**changePasswordProfileChangePasswordPost**](docs/InternalApi.md#changepasswordprofilechangepasswordpost) | **POST** /profile/change_password | Change Password
67
70
  *InternalApi* | [**delReleaseInternalReleasesReleaseIdDelete**](docs/InternalApi.md#delreleaseinternalreleasesreleaseiddelete) | **DELETE** /internal/releases/{release_id} | Del Release
71
+ *InternalApi* | [**deletePasteInternalPastePasteIdDelete**](docs/InternalApi.md#deletepasteinternalpastepasteiddelete) | **DELETE** /internal/paste/{paste_id} | Delete Paste
68
72
  *InternalApi* | [**deleteUserInternalUsersUserIdDelete**](docs/InternalApi.md#deleteuserinternalusersuseriddelete) | **DELETE** /internal/users/{user_id} | Delete User
69
73
  *InternalApi* | [**editReleaseInternalReleasesReleaseIdPut**](docs/InternalApi.md#editreleaseinternalreleasesreleaseidput) | **PUT** /internal/releases/{release_id} | Edit Release
70
74
  *InternalApi* | [**getDeviceInfoInternalDevicesDeviceIdGet**](docs/InternalApi.md#getdeviceinfointernaldevicesdeviceidget) | **GET** /internal/devices/{device_id} | Get Device Info
@@ -79,7 +83,10 @@ Class | Method | HTTP request | Description
79
83
  *InternalApi* | [**newReleaseInternalReleasesPost**](docs/InternalApi.md#newreleaseinternalreleasespost) | **POST** /internal/releases/ | New Release
80
84
  *InternalApi* | [**renewAuthRenewPost**](docs/InternalApi.md#renewauthrenewpost) | **POST** /auth/renew | Renew
81
85
  *InternalApi* | [**updateDeviceInternalDevicesDeviceIdPut**](docs/InternalApi.md#updatedeviceinternaldevicesdeviceidput) | **PUT** /internal/devices/{device_id} | Update Device
86
+ *InternalApi* | [**updatePasteInternalPastePasteIdPut**](docs/InternalApi.md#updatepasteinternalpastepasteidput) | **PUT** /internal/paste/{paste_id} | Update Paste
82
87
  *InternalApi* | [**updateUserInternalUsersUserIdPut**](docs/InternalApi.md#updateuserinternalusersuseridput) | **PUT** /internal/users/{user_id} | Update User
88
+ *PasteApi* | [**createPastePastePost**](docs/PasteApi.md#createpastepastepost) | **POST** /paste/ | Create Paste
89
+ *PasteApi* | [**getPastePastePasteIdGet**](docs/PasteApi.md#getpastepastepasteidget) | **GET** /paste/{paste_id} | Get Paste
83
90
  *ReleaseApi* | [**getRelease**](docs/ReleaseApi.md#getrelease) | **GET** /releases/get | Get Release
84
91
  *ReleaseApi* | [**getReleaseDeprecated**](docs/ReleaseApi.md#getreleasedeprecated) | **GET** /releases/{release_id} | Get Release Short
85
92
  *ReleaseApi* | [**getReleases**](docs/ReleaseApi.md#getreleases) | **GET** /releases/ | Get Releases
@@ -112,6 +119,8 @@ Class | Method | HTTP request | Description
112
119
  - [MaintainerShortModel](docs/MaintainerShortModel.md)
113
120
  - [NewBuildTaskBody](docs/NewBuildTaskBody.md)
114
121
  - [NewDeviceBody](docs/NewDeviceBody.md)
122
+ - [PasteInput](docs/PasteInput.md)
123
+ - [PasteOutput](docs/PasteOutput.md)
115
124
  - [RecoveryImgResponse](docs/RecoveryImgResponse.md)
116
125
  - [ReleaseGroupsResponse](docs/ReleaseGroupsResponse.md)
117
126
  - [ReleaseInternalResponse](docs/ReleaseInternalResponse.md)