Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
DigiGov-OSS
getNncIdentityClient
Commits
3c65c060
Commit
3c65c060
authored
Apr 14, 2022
by
Panagiotis Skarvelis
Browse files
rm unused
parent
d998f366
Changes
5
Hide whitespace changes
Inline
Side-by-side
dist/cjs/soapClient.d.ts
View file @
3c65c060
...
...
@@ -10,7 +10,6 @@ import { AuditRecord } from '@digigov-oss/gsis-audit-record-db';
* @param {string} endpoint
*/
declare
class
Soap
{
private
_client
;
private
_wsdl
;
private
_username
;
private
_password
;
...
...
dist/cjs/soapClient.js
View file @
3c65c060
...
...
@@ -52,7 +52,6 @@ class Soap {
if
(
this
.
_endpoint
)
{
client
.
setEndpoint
(
this
.
_endpoint
);
}
this
.
_client
=
client
;
return
client
;
}
catch
(
e
)
{
...
...
dist/esm/soapClient.d.ts
View file @
3c65c060
...
...
@@ -10,7 +10,6 @@ import { AuditRecord } from '@digigov-oss/gsis-audit-record-db';
* @param {string} endpoint
*/
declare
class
Soap
{
private
_client
;
private
_wsdl
;
private
_username
;
private
_password
;
...
...
dist/esm/soapClient.js
View file @
3c65c060
...
...
@@ -20,7 +20,6 @@ catch (error) {
* @param {string} endpoint
*/
class
Soap
{
_client
;
_wsdl
;
_username
;
_password
;
...
...
@@ -43,7 +42,6 @@ class Soap {
if
(
this
.
_endpoint
)
{
client
.
setEndpoint
(
this
.
_endpoint
);
}
this
.
_client
=
client
;
return
client
;
}
catch
(
e
)
{
...
...
src/soapClient.ts
View file @
3c65c060
...
...
@@ -22,7 +22,6 @@ import {AuditRecord} from '@digigov-oss/gsis-audit-record-db';
* @param {string} endpoint
*/
class
Soap
{
private
_client
:
any
;
private
_wsdl
:
string
;
private
_username
:
string
;
private
_password
:
string
;
...
...
@@ -48,7 +47,6 @@ class Soap {
if
(
this
.
_endpoint
)
{
client
.
setEndpoint
(
this
.
_endpoint
);
}
this
.
_client
=
client
;
return
client
;
}
catch
(
e
)
{
throw
e
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment