1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Merge pull request #2498 from mslourens/add_patch_to_rest_api

add patch method to the rest api interface
This commit is contained in:
Martin McKeaveney 2021-08-31 13:14:10 +01:00 committed by GitHub
commit 62b2913236

View file

@ -89,6 +89,26 @@ module RestModule {
},
},
},
patch: {
displayName: "PATCH",
readable: true,
type: QueryTypes.FIELDS,
urlDisplay: true,
fields: {
path: {
type: DatasourceFieldTypes.STRING,
},
queryString: {
type: DatasourceFieldTypes.STRING,
},
headers: {
type: DatasourceFieldTypes.OBJECT,
},
requestBody: {
type: DatasourceFieldTypes.JSON,
},
},
},
delete: {
displayName: "DELETE",
type: QueryTypes.FIELDS,
@ -175,6 +195,21 @@ module RestModule {
return await this.parseResponse(response)
}
async patch({ path = "", queryString = "", headers = {}, json = {} }) {
this.headers = {
...this.config.defaultHeaders,
...headers,
}
const response = await fetch(this.config.url + path + queryString, {
method: "PATCH",
headers: this.headers,
body: JSON.stringify(json),
})
return await this.parseResponse(response)
}
async delete({ path = "", queryString = "", headers = {} }) {
this.headers = {
...this.config.defaultHeaders,