@xvia/mtcidadao-api
Advanced tools
Comparing version 2.71.0 to 2.72.0
@@ -33,4 +33,6 @@ import { Service } from "../Service"; | ||
editarLocalEntrega(id: string, municipio?: string, nome_unidade?: string, email_institucional?: string, telefone_institucional?: string, endereco_unidade?: string): Promise<any>; | ||
inativarLocalEntrega(id: string): Promise<any>; | ||
reativarLocalEntrega(id: string): Promise<any>; | ||
cadastrarLocalEntrega(municipio?: string, nome_unidade?: string, email_institucional?: string, telefone_institucional?: string, endereco_unidade?: string): Promise<any>; | ||
obterPerfilAtendente(): Promise<any>; | ||
} |
@@ -330,2 +330,20 @@ "use strict"; | ||
} | ||
inativarLocalEntrega(id) { | ||
return this.request(`/v1/autista/local-entrega/${id}/inativar`, { | ||
method: "PUT", | ||
headers: { | ||
"content-type": "application/json", | ||
}, | ||
body: JSON.stringify({}), | ||
}); | ||
} | ||
reativarLocalEntrega(id) { | ||
return this.request(`/v1/autista/local-entrega/${id}/reativar`, { | ||
method: "PUT", | ||
headers: { | ||
"content-type": "application/json", | ||
}, | ||
body: JSON.stringify({}), | ||
}); | ||
} | ||
cadastrarLocalEntrega(municipio, nome_unidade, email_institucional, telefone_institucional, endereco_unidade) { | ||
@@ -332,0 +350,0 @@ return this.request(`/v1/autista/local-entrega`, { |
{ | ||
"name": "@xvia/mtcidadao-api", | ||
"version": "2.71.0", | ||
"version": "2.72.0", | ||
"description": "MTCidadão api sdk", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -510,2 +510,22 @@ // AUTO GENERATED. DO NOT EDIT IT | ||
inativarLocalEntrega(id: string): Promise<any> { | ||
return this.request(`/v1/autista/local-entrega/${id}/inativar`, { | ||
method: "PUT", | ||
headers: { | ||
"content-type": "application/json", | ||
}, | ||
body: JSON.stringify({}), | ||
}); | ||
} | ||
reativarLocalEntrega(id: string): Promise<any> { | ||
return this.request(`/v1/autista/local-entrega/${id}/reativar`, { | ||
method: "PUT", | ||
headers: { | ||
"content-type": "application/json", | ||
}, | ||
body: JSON.stringify({}), | ||
}); | ||
} | ||
cadastrarLocalEntrega( | ||
@@ -512,0 +532,0 @@ municipio?: string, |
313753
9996