Skip to content

Transforming soap describe into typescript interface

Notifications You must be signed in to change notification settings

iketiunn/surfactant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🧼 surfactant

Transforming soap describe into typescript interface.

If the result don't fit your needs, please fire an issue, thanks!

The detail return types was in https://github.com/vpulim/node-soap#clientmethodasyncargs---call-method-on-the-soap-service

Basic Usage:

$ npx surfactant ./calculator.wsdl > calculator.wsdl.ts
# or
$ npx surfactant 'http://www.dneonline.com/calculator.asmx?WSDL' > calculator.wsdl.ts

# if you need prettify
$ npx surfactant ./calculator.wsdl | npx prettier --parser typescript  > calculator.wsdl.ts

// In your client code
import * as soap from 'soap'
import { ClientAsync } from 'calculator.wsdl'
(async () => {
  const client = (await soap.createClientAsync('http://www.dneonline.com/calculator.asmx?WSDL')) as soap.client & ClientAsync;
  const [ret] = await client.AddAsync({ intA:1, intB:2 });
  console.log(ret) // { AddResult: 3 }
})()

About

Transforming soap describe into typescript interface

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •