@rivascva/dt-idl 1.0.7 → 1.0.9

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.
@@ -12,7 +12,7 @@ jobs:
12
12
  runs-on: ubuntu-latest
13
13
  steps:
14
14
  - uses: actions/checkout@v4
15
- - uses: actions/setup-node@4
15
+ - uses: actions/setup-node@v4
16
16
  with:
17
17
  node-version: 16.x
18
18
  registry-url: 'https://registry.npmjs.org'
@@ -30,8 +30,8 @@ jobs:
30
30
  tag=$(npm version patch --no-git-tag-version)
31
31
  git tag $tag
32
32
  git push origin tag $tag --no-verify
33
- git commit -m "bump version $tag"
34
33
  git add --all
34
+ git commit -m "bump version $tag"
35
35
  git push origin main --no-verify
36
36
  # publish package
37
37
  - name: Publish
package/dist/index.d.ts CHANGED
@@ -685,6 +685,7 @@ type SimpleQuotes = components$1['schemas']['SimpleQuote'];
685
685
  type FullQuotes = components$1['schemas']['FullQuote'];
686
686
  type MarketServiceError = components$1['schemas']['Error'];
687
687
  type User = components['schemas']['User'];
688
+ type Order = components['schemas']['Order'];
688
689
  type TradeSErviceError = components['schemas']['Error'];
689
690
 
690
- export { type FullQuotes, type MarketServiceError, type SimpleQuotes, type TradeSErviceError, type User, createMarketServiceClient, createTradeServiceClient };
691
+ export { type FullQuotes, type MarketServiceError, type Order, type SimpleQuotes, type TradeSErviceError, type User, createMarketServiceClient, createTradeServiceClient };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
package/ts/types/types.ts CHANGED
@@ -8,4 +8,5 @@ export type MarketServiceError = MarketServiceComponents['schemas']['Error'];
8
8
 
9
9
  // Trade Service Types
10
10
  export type User = TradeServiceComponents['schemas']['User'];
11
+ export type Order = TradeServiceComponents['schemas']['Order'];
11
12
  export type TradeSErviceError = TradeServiceComponents['schemas']['Error'];