Skip to content
Snippets Groups Projects
Commit 070e0664 authored by GitLab Runner 1149's avatar GitLab Runner 1149
Browse files

Automated Save by CI Run

parent 1f4a96f1
No related branches found
No related tags found
No related merge requests found
......@@ -4064,7 +4064,7 @@ info:
\ nicht Bestandteil dieser Dokumentation, sondern \xFCber selbstdokumentierende\
\ Indexabfragen der WebAPI erreichbar."
title: SCC NETDB-API
version: 4.1.159
version: 4.1.160
openapi: 3.0.3
paths:
/cntl/column/create:
......@@ -36,7 +36,7 @@ class APIEndpoint(object):
class APISession(object):
def __init__(self, endpoint: APIEndpoint, protocol: str='https', update_check: bool='NETDB_CLIENT_DISABLE_UPDATE_CHECK' not in os.environ):
self._build_version = '4.1.159'
self._build_version = '4.1.160'
self.session = requests.session()
self.session.headers.update({'Authorization': 'Bearer ' + endpoint.token})
self.api_root = f'{protocol}://{endpoint.base_url}'
......
4.1.159
\ No newline at end of file
4.1.160
\ No newline at end of file
// -- AUTOGENERATED --
// eslint-disable-next-line no-unused-vars
import APIUtils from '@/util/apiutil'
import Axios from 'axios'
import NETVSConfig from '@/../netvs.config'
/* eslint-disable camelcase */
/* eslint-disable quote-props */
/* eslint-disable object-curly-spacing */
/* eslint-disable array-bracket-spacing */
/* eslint-disable object-shorthand */
export default {
deleteParamsList () {
return {'old': [ 'token'], 'new': [ ]}
},
delete (config, {token_old}) {
const params = { 'new': { }, 'old': { 'token': token_old}}
// TODO: Return ta-object instead
return Axios.post(`${NETVSConfig.NETDB_API_BASE_URL}/${NETVSConfig.NETDB_API_VERSION}/wapi/auth/delete`, params, (config || {}).netdb_axios_config)
// eslint-disable-next-line comma-dangle
},
}
......@@ -7870,6 +7870,25 @@
"is_executable": true,
"is_data_manipulating": true
},
{
"name": "delete",
"system": "wapi",
"fq_name": "wapi.auth.delete",
"parameters": {
"token": {
"old": {
"is_nullable": false,
"is_required": true
},
"data_type": "text",
"is_deprecated": false
}
},
"object_type": "auth",
"is_returning": false,
"is_executable": true,
"is_data_manipulating": true
},
{
"name": "disconnect",
"system": "nd",
......
......@@ -4090,7 +4090,7 @@ info:
\ nicht Bestandteil dieser Dokumentation, sondern \xFCber selbstdokumentierende\
\ Indexabfragen der WebAPI erreichbar."
title: SCC NETDB-API
version: 4.2.3
version: 4.2.0
openapi: 3.0.3
paths:
/cntl/column/create:
......@@ -32646,6 +32646,39 @@ paths:
- api_key: []
tags:
- tmp
/wapi/auth/delete:
post:
requestBody:
content:
application/json:
schema:
properties:
old:
description: Alte Attribute zur einduetigen Identifizierung des
Objekts
properties:
token:
description: "Privater (geheimer) Schl\xFCssel des Access-Tokens."
nullable: false
type: string
required:
- token
type: object
type: object
required: true
responses:
200:
description: Request erfolgreich
400:
description: Eingabefehler
401:
description: Unautorisiert
500:
description: Interner Serverfehler
security:
- api_key: []
tags:
- wapi
/wapi/data_type/create:
post:
requestBody:
......@@ -36,7 +36,7 @@ class APIEndpoint(object):
class APISession(object):
def __init__(self, endpoint: APIEndpoint, protocol: str='https', update_check: bool='NETDB_CLIENT_DISABLE_UPDATE_CHECK' not in os.environ):
self._build_version = '4.2.3'
self._build_version = '4.2.0'
self.session = requests.session()
self.session.headers.update({'Authorization': 'Bearer ' + endpoint.token})
self.api_root = f'{protocol}://{endpoint.base_url}'
......
4.2.3
\ No newline at end of file
4.2.0
\ No newline at end of file
4.2.3
\ No newline at end of file
4.2.0
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment