@rivascva/dt-idl 1.1.31 → 1.1.35

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 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;