Skip to content

Commit 1113a5a

Browse files
verhovskylcaresia
andauthored
Oanda - fix weekday name (#19350)
* Oanda - fix weekday name * Update other actions/sources --------- Co-authored-by: Lucas Caresia <lucascarezia@gmail.com>
1 parent 6512c92 commit 1113a5a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

components/oanda/actions/create-order/create-order.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "oanda-create-order",
66
name: "Create Order",
77
description: "Create a new trading order. [See the documentation](https://developer.oanda.com/rest-live-v20/order-ep/)",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/oanda/actions/get-historical-prices/get-historical-prices.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "oanda-get-historical-prices",
77
name: "Get Historical Prices",
88
description: "Retrieve historical price data for a specified currency pair or instrument within a given time range. [See the documentation](https://developer.oanda.com/rest-live-v20/pricing-ep/)",
9-
version: "0.0.2",
9+
version: "0.0.3",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/oanda/actions/list-trades/list-trades.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "oanda-list-trades",
66
name: "List Trades",
77
description: "Retrieve a list of trades for an account. [See the documentation](https://developer.oanda.com/rest-live-v20/trade-ep/)",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/oanda/common/constants.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const WEEKLY_ALIGNMENT_DAYS = [
178178
"Monday",
179179
"Tuesday",
180180
"Wednesday",
181-
"Thrusday",
181+
"Thursday",
182182
"Friday",
183183
"Saturday",
184184
"Sunday",

components/oanda/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/oanda",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Pipedream oanda Components",
55
"main": "oanda.app.mjs",
66
"keywords": [

components/oanda/sources/new-transaction/new-transaction.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "oanda-new-transaction",
88
name: "New Transaction",
99
description: "Emit new event whenever a trade is executed in the user's account. [See the documentation](https://developer.oanda.com/rest-live-v20/transaction-ep/)",
10-
version: "0.0.1",
10+
version: "0.0.2",
1111
type: "source",
1212
dedupe: "unique",
1313
props: {

0 commit comments

Comments
 (0)