Skip to content

Commit d0df473

Browse files
committed
updates
1 parent 3e7922e commit d0df473

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

components/godaddy/actions/list-domains/list-domains.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default {
4848
async run({ $ }) {
4949
const domains = await this.godaddy.listDomains({
5050
$,
51-
data: {
51+
params: {
5252
statuses: this.statuses,
5353
statusGroups: this.statusGroups,
5454
limit: this.limit,

components/godaddy/common/constants.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ const DOMAIN_STATUSES = [
188188
"PENDING_TRANSFER_OUT_UNDERAGE",
189189
"PENDING_TRANSFER_OUT_VALIDATION",
190190
"PENDING_TRANSFER_PREMIUM",
191-
"PENDING_TRANSFER_PREMUIM",
192191
"PENDING_TRANSFER_SUBMIT_PREMIUM",
193192
"PENDING_UNLOCK_DATA_QUALITY",
194193
"PENDING_UNLOCK_PREMIUM",

components/godaddy/godaddy.app.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ export default {
1111
description: "A domain name",
1212
async options({ prevContext }) {
1313
const domains = await this.listDomains({
14-
marker: prevContext?.marker,
14+
params: {
15+
marker: prevContext?.marker,
16+
},
1517
});
1618
const options = domains.map((domain) => domain.domain);
1719
return {
@@ -58,8 +60,7 @@ export default {
5860
},
5961
methods: {
6062
_baseUrl() {
61-
//return "https://api.godaddy.com/v1";
62-
return "https://api.ote-godaddy.com/v1";
63+
return "https://api.godaddy.com/v1";
6364
},
6465
_makeRequest({
6566
$ = this,

components/godaddy/sources/common/base.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ export default {
66
godaddy,
77
db: "$.service.db",
88
timer: {
9-
label: "Polling interval",
10-
description: "Pipedream will poll the Trello API on this schedule",
119
type: "$.interface.timer",
1210
default: {
1311
intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,

0 commit comments

Comments
 (0)