- 
                Notifications
    You must be signed in to change notification settings 
- Fork 5.5k
update after review #13966
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update after review #13966
Changes from 3 commits
8d82d8f
              79e9d28
              cf16ec8
              2e44e22
              540fd91
              fb35874
              281929e
              1166b07
              d2a4a64
              dfec9db
              1dd4b5a
              36eff80
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| # Overview | ||
|  | ||
| The Remote-Retriever API is tailored for automating the retrieval of contact information, enhancing your CRM data, or developing lead generation tools. By integrating it with Pipedream, you can efficiently extract valuable data and automate workflows for marketing, sales, or customer support. Pipedream’s serverless platform allows you to connect Retriever with numerous other apps, triggering actions based on new data, or updating systems instantly. | ||
| The Remote-Retrieval API is tailored for automating the retrieval of contact information, enhancing your CRM data, or developing lead generation tools. By integrating it with Pipedream, you can efficiently extract valuable data and automate workflows for marketing, sales, or customer support. Pipedream’s serverless platform allows you to connect Retrieval with numerous other apps, triggering actions based on new data, or updating systems instantly. | 
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| import app from "../../remote_retrieval.app.mjs"; | ||
|  | ||
| export default { | ||
| key: "remote_retrieval-get-all-orders", | ||
| name: "Get All Order", | ||
| description: "Retrieve a list of all orders.[See the documentation](https://www.remoteretrieval.com/api-documentation/#pending-orders)", | ||
| type: "action", | ||
| version: "0.1.0", | ||
| props: { | ||
| app, | ||
| }, | ||
| methods: {}, | ||
| async run({ $: step }) { | ||
| const response = await this.app.allOrders({ | ||
| step, | ||
| }); | ||
|  | ||
| step.export("$summary", `Successfully retrieved ${response.results.length} order(s).`); | ||
|  | ||
| return response; | ||
| }, | ||
| }; | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,188 @@ | ||||||
| import app from "../../remote_retrieval.app.mjs"; | ||||||
|  | ||||||
| export default { | ||||||
| key: "remote_retrieval-create-device-order", | ||||||
| name: "Create Device Order", | ||||||
| description: "Creates a device return order. [See the documentation](https://www.remoteretrieval.com/api-documentation/#create-order)", | ||||||
| type: "action", | ||||||
| version: "0.1.0", | ||||||
|          | ||||||
| version: "0.1.0", | |
| version: "0.0.1", | 
Check failure on line 57 in components/remote_retrieval/actions/create-device-order/create-device-order.mjs
     GitHub Actions / Lint Code Base
    GitHub Actions / Lint Code Base
  
  
A linebreak is required after '['             
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,6 @@ | ||||||
| { | ||||||
| "name": "@pipedream/remote_retrieval", | ||||||
| "version": "0.1.0", | ||||||
| "version": "0.1.1", | ||||||
|          | ||||||
| "version": "0.1.1", | |
| "version": "0.2.0", | 
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.