@explo-tech/fido-api 3.10.7 → 3.11.0
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/package.json
CHANGED
|
@@ -109,6 +109,24 @@ export class BranchResourceService {
|
|
|
109
109
|
});
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
+
/**
|
|
113
|
+
* Deletes a branch
|
|
114
|
+
* @param id
|
|
115
|
+
* @returns any 200 if the branch was deleted properly
|
|
116
|
+
* @throws ApiError
|
|
117
|
+
*/
|
|
118
|
+
public static deleteBranch(
|
|
119
|
+
id: UUID,
|
|
120
|
+
): CancelablePromise<Record<string, any>> {
|
|
121
|
+
return __request(OpenAPI, {
|
|
122
|
+
method: 'DELETE',
|
|
123
|
+
url: '/v1/branches/{id}',
|
|
124
|
+
path: {
|
|
125
|
+
'id': id,
|
|
126
|
+
},
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
|
|
112
130
|
/**
|
|
113
131
|
* Merge the provided source branch into the provided target branch
|
|
114
132
|
* @param targetBranchId
|