@rivascva/dt-idl 1.1.30 → 1.1.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +4 -0
- package/dist/index.d.ts +357 -103
- package/dist/index.esm.js +3 -1
- package/package.json +1 -1
- package/redocly.yaml +4 -0
- package/services/dt-app-service.yaml +210 -0
- package/services/dt-trade-service.yaml +10 -17
- package/ts/clients/clients.ts +4 -0
- package/ts/clients/errors.ts +4 -1
- package/ts/services/dt-app-service.ts +238 -0
- package/ts/services/dt-trade-service.ts +22 -13
- package/ts/types/types.ts +8 -2
package/dist/index.cjs.js
CHANGED
|
@@ -489,11 +489,15 @@ function mergeHeaders(...allHeaders) {
|
|
|
489
489
|
|
|
490
490
|
const createMarketServiceClient = (options) => createClient(options);
|
|
491
491
|
const createTradeServiceClient = (options) => createClient(options);
|
|
492
|
+
const createAppServiceClient = (options) => createClient(options);
|
|
492
493
|
|
|
493
494
|
const isMarketServiceError = (error) => typeof error === 'object';
|
|
494
495
|
const isTradeServiceError = (error) => typeof error === 'object';
|
|
496
|
+
const isAppServiceError = (error) => typeof error === 'object';
|
|
495
497
|
|
|
498
|
+
exports.createAppServiceClient = createAppServiceClient;
|
|
496
499
|
exports.createMarketServiceClient = createMarketServiceClient;
|
|
497
500
|
exports.createTradeServiceClient = createTradeServiceClient;
|
|
501
|
+
exports.isAppServiceError = isAppServiceError;
|
|
498
502
|
exports.isMarketServiceError = isMarketServiceError;
|
|
499
503
|
exports.isTradeServiceError = isTradeServiceError;
|