@targetprocess/global-yaft-client

Client for global-yaft service

Usage no npm install needed!

<script type="module">
  import targetprocessGlobalYaftClient from 'https://cdn.skypack.dev/@targetprocess/global-yaft-client';
</script>

README

global-yaft-client

Client for global-yaft service

Client generation

NSwag incorrectly generates Dictionary types:

export interface Dictionary {
  [key: string]: string | any;
}

is generated instead of

export interface Dictionary {
  [key: string]: string;
}

so we fix it in the client:generate:fix:ts:dictionary script.