glitch-javascript-sdk
Advanced tools
@@ -292,54 +292,55 @@ import Response from "../util/Response"; | ||
/** | ||
* Search for cross-promote partners. | ||
* Uses query parameter `my_scheduler_id` | ||
* List cross-promote relationships for a scheduler (with optional pagination). | ||
* GET /schedulers/{scheduler_id}/crosspromote/relationships | ||
*/ | ||
static crossPromoteListRelationships<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* Find potential cross-promote partners for a scheduler (with optional filters). | ||
* GET /schedulers/{scheduler_id}/crosspromote/find | ||
*/ | ||
static crossPromoteSearch<T>(my_scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
static crossPromoteFind<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* List cross-promote invitations for a scheduler. | ||
* Expects a query param `scheduler_id` | ||
* List cross-promote invites for a scheduler (incoming + outgoing). | ||
* GET /schedulers/{scheduler_id}/crosspromote/invites | ||
*/ | ||
static crossPromoteInvitesList<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* Send an invite to cross-promote. | ||
* Converts `partner_scheduler_id` and `optional_message` into the PHP expected fields. | ||
* Send an invite to cross-promote (from scheduler_id to partner_scheduler_id). | ||
* POST /schedulers/{scheduler_id}/crosspromote/invites | ||
* | ||
* @param data { partner_scheduler_id, optional_message } | ||
*/ | ||
static crossPromoteInviteSend<T>(scheduler_id: string, data: { | ||
partner_scheduler_id: string; | ||
optional_message?: string; | ||
}, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
static crossPromoteInviteSend<T>(scheduler_id: string, data: object, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* Respond to an invitation (accept or deny). | ||
* Accept an invite to cross-promote. | ||
* POST /schedulers/{scheduler_id}/crosspromote/invites/{invite_id}/accept | ||
*/ | ||
static crossPromoteInviteRespond<T>(invitation_id: string, data: { | ||
status: 'accepted' | 'denied'; | ||
platforms?: string[]; | ||
}, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
static crossPromoteInviteAccept<T>(scheduler_id: string, invite_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* List cross-promote relationships for a scheduler. | ||
* Expects a query param `scheduler_id` | ||
* Reject an invite to cross-promote. | ||
* POST /schedulers/{scheduler_id}/crosspromote/invites/{invite_id}/reject | ||
*/ | ||
static crossPromoteListRelationships<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
static crossPromoteInviteReject<T>(scheduler_id: string, invite_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* End a cross-promote relationship. | ||
* End a cross-promote relationship (delete). | ||
* DELETE /schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id} | ||
*/ | ||
static crossPromoteEndRelationship<T>(relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
static crossPromoteRelationshipDelete<T>(scheduler_id: string, relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* List logs for a cross-promote relationship. | ||
*/ | ||
static crossPromoteListLogs<T>(relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* Get which platforms are cross-promoted in an existing relationship. | ||
* GET /schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}/platforms | ||
*/ | ||
static crossPromoteRelationshipGetPlatforms<T>(relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
static crossPromoteRelationshipGetPlatforms<T>(scheduler_id: string, relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* Set which platforms are cross-promoted in an existing relationship. | ||
* PUT /schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}/platforms | ||
* data = { platforms: ['twitter','facebook',...]} | ||
*/ | ||
static crossPromoteRelationshipSetPlatforms<T>(relationship_id: string, data: { | ||
platforms: string[]; | ||
}, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
static crossPromoteRelationshipSetPlatforms<T>(scheduler_id: string, relationship_id: string, data: object, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
/** | ||
* Get recently cross-promoted posts under a relationship. | ||
* Get recently cross-promoted logs under a relationship. | ||
* GET /schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}/posts | ||
*/ | ||
static crossPromoteRelationshipPosts<T>(relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
static crossPromoteRelationshipPosts<T>(scheduler_id: string, relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>; | ||
} | ||
export default Scheduler; |
{ | ||
"name": "glitch-javascript-sdk", | ||
"version": "1.7.3", | ||
"version": "1.7.4", | ||
"description": "Javascript SDK for Glitch", | ||
@@ -5,0 +5,0 @@ "main": "dist/cjs/index.js", |
@@ -397,60 +397,93 @@ import SchedulerRoute from "../routes/SchedulerRoute"; | ||
/** | ||
* Search for cross-promote partners. | ||
* Uses query parameter `my_scheduler_id` | ||
*/ | ||
public static crossPromoteSearch<T>(my_scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
const newParams = { ...params, my_scheduler_id }; | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteSearch, {}, {}, newParams); | ||
* List cross-promote relationships for a scheduler (with optional pagination). | ||
* GET /schedulers/{scheduler_id}/crosspromote/relationships | ||
*/ | ||
public static crossPromoteListRelationships<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteListRelationships, | ||
{}, | ||
{ scheduler_id }, | ||
params | ||
); | ||
} | ||
/** | ||
* List cross-promote invitations for a scheduler. | ||
* Expects a query param `scheduler_id` | ||
* Find potential cross-promote partners for a scheduler (with optional filters). | ||
* GET /schedulers/{scheduler_id}/crosspromote/find | ||
*/ | ||
public static crossPromoteInvitesList<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
const newParams = { ...params, scheduler_id }; | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteInvitesList, {}, {}, newParams); | ||
public static crossPromoteFind<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
// e.g. { platform:'twitter', min_followers:500, sort:'desc', page:2, limit:5 } | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteFind, | ||
{}, | ||
{ scheduler_id }, | ||
params | ||
); | ||
} | ||
/** | ||
* Send an invite to cross-promote. | ||
* Converts `partner_scheduler_id` and `optional_message` into the PHP expected fields. | ||
* List cross-promote invites for a scheduler (incoming + outgoing). | ||
* GET /schedulers/{scheduler_id}/crosspromote/invites | ||
*/ | ||
public static crossPromoteInviteSend<T>(scheduler_id: string, data: { partner_scheduler_id: string, optional_message?: string }, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
const payload = { | ||
from_scheduler_id: scheduler_id, | ||
to_scheduler_id: data.partner_scheduler_id, | ||
message: data.optional_message || '' | ||
}; | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteInviteSend, payload, {}, params); | ||
public static crossPromoteInvitesList<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteInvitesList, | ||
{}, | ||
{ scheduler_id }, | ||
params | ||
); | ||
} | ||
/** | ||
* Respond to an invitation (accept or deny). | ||
* Send an invite to cross-promote (from scheduler_id to partner_scheduler_id). | ||
* POST /schedulers/{scheduler_id}/crosspromote/invites | ||
* | ||
* @param data { partner_scheduler_id, optional_message } | ||
*/ | ||
public static crossPromoteInviteRespond<T>(invitation_id: string, data: { status: 'accepted' | 'denied', platforms?: string[] }, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteInviteRespond, data, { invitation_id }, params); | ||
public static crossPromoteInviteSend<T>(scheduler_id: string, data: object, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteInviteSend, | ||
data, | ||
{ scheduler_id }, | ||
params | ||
); | ||
} | ||
/** | ||
* List cross-promote relationships for a scheduler. | ||
* Expects a query param `scheduler_id` | ||
* Accept an invite to cross-promote. | ||
* POST /schedulers/{scheduler_id}/crosspromote/invites/{invite_id}/accept | ||
*/ | ||
public static crossPromoteListRelationships<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
const newParams = { ...params, scheduler_id }; | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteListRelationships, {}, {}, newParams); | ||
public static crossPromoteInviteAccept<T>(scheduler_id: string, invite_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteInviteAccept, | ||
{}, | ||
{ scheduler_id, invite_id }, | ||
params | ||
); | ||
} | ||
/** | ||
* End a cross-promote relationship. | ||
* Reject an invite to cross-promote. | ||
* POST /schedulers/{scheduler_id}/crosspromote/invites/{invite_id}/reject | ||
*/ | ||
public static crossPromoteEndRelationship<T>(relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteEndRelationship, {}, { relationship_id }, params); | ||
public static crossPromoteInviteReject<T>(scheduler_id: string, invite_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteInviteReject, | ||
{}, | ||
{ scheduler_id, invite_id }, | ||
params | ||
); | ||
} | ||
/** | ||
* List logs for a cross-promote relationship. | ||
* End a cross-promote relationship (delete). | ||
* DELETE /schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id} | ||
*/ | ||
public static crossPromoteListLogs<T>(relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteListLogs, {}, { relationship_id }, params); | ||
public static crossPromoteRelationshipDelete<T>(scheduler_id: string, relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteRelationshipDelete, | ||
{}, | ||
{ scheduler_id, relationship_id }, | ||
params | ||
); | ||
} | ||
@@ -460,5 +493,11 @@ | ||
* Get which platforms are cross-promoted in an existing relationship. | ||
* GET /schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}/platforms | ||
*/ | ||
public static crossPromoteRelationshipGetPlatforms<T>(relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteRelationshipGetPlatforms, {}, { relationship_id }, params); | ||
public static crossPromoteRelationshipGetPlatforms<T>(scheduler_id: string, relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteRelationshipGetPlatforms, | ||
{}, | ||
{ scheduler_id, relationship_id }, | ||
params | ||
); | ||
} | ||
@@ -468,12 +507,25 @@ | ||
* Set which platforms are cross-promoted in an existing relationship. | ||
* PUT /schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}/platforms | ||
* data = { platforms: ['twitter','facebook',...]} | ||
*/ | ||
public static crossPromoteRelationshipSetPlatforms<T>(relationship_id: string, data: { platforms: string[] }, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteRelationshipSetPlatforms, data, { relationship_id }, params); | ||
public static crossPromoteRelationshipSetPlatforms<T>(scheduler_id: string, relationship_id: string, data: object, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteRelationshipSetPlatforms, | ||
data, | ||
{ scheduler_id, relationship_id }, | ||
params | ||
); | ||
} | ||
/** | ||
* Get recently cross-promoted posts under a relationship. | ||
* Get recently cross-promoted logs under a relationship. | ||
* GET /schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}/posts | ||
*/ | ||
public static crossPromoteRelationshipPosts<T>(relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute(SchedulerRoute.routes.crossPromoteRelationshipPosts, {}, { relationship_id }, params); | ||
public static crossPromoteRelationshipPosts<T>(scheduler_id: string, relationship_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> { | ||
return Requests.processRoute( | ||
SchedulerRoute.routes.crossPromoteRelationshipPosts, | ||
{}, | ||
{ scheduler_id, relationship_id }, | ||
params | ||
); | ||
} | ||
@@ -480,0 +532,0 @@ |
@@ -49,43 +49,44 @@ import Route from "./interface"; | ||
crossPromoteSearch: { | ||
url: '/schedulers/cross-promote/search', | ||
crossPromoteListRelationships: { | ||
url: '/schedulers/{scheduler_id}/crosspromote/relationships', | ||
method: HTTP_METHODS.GET | ||
}, | ||
crossPromoteFind: { | ||
url: '/schedulers/{scheduler_id}/crosspromote/find', | ||
method: HTTP_METHODS.GET | ||
}, | ||
crossPromoteInvitesList: { | ||
url: '/schedulers/cross-promote/invitations', | ||
url: '/schedulers/{scheduler_id}/crosspromote/invites', | ||
method: HTTP_METHODS.GET | ||
}, | ||
crossPromoteInviteSend: { | ||
url: '/schedulers/cross-promote/invitations', | ||
url: '/schedulers/{scheduler_id}/crosspromote/invites', | ||
method: HTTP_METHODS.POST | ||
}, | ||
crossPromoteInviteRespond: { | ||
url: '/schedulers/cross-promote/invitations/{invitation_id}/respond', | ||
crossPromoteInviteAccept: { | ||
url: '/schedulers/{scheduler_id}/crosspromote/invites/{invite_id}/accept', | ||
method: HTTP_METHODS.POST | ||
}, | ||
crossPromoteListRelationships: { | ||
url: '/schedulers/cross-promote/relationships', | ||
method: HTTP_METHODS.GET | ||
}, | ||
crossPromoteEndRelationship: { | ||
url: '/schedulers/cross-promote/relationships/{relationship_id}/end', | ||
crossPromoteInviteReject: { | ||
url: '/schedulers/{scheduler_id}/crosspromote/invites/{invite_id}/reject', | ||
method: HTTP_METHODS.POST | ||
}, | ||
crossPromoteListLogs: { | ||
url: '/schedulers/cross-promote/relationships/{relationship_id}/logs', | ||
method: HTTP_METHODS.GET | ||
crossPromoteRelationshipDelete: { | ||
url: '/schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}', | ||
method: HTTP_METHODS.DELETE | ||
}, | ||
crossPromoteRelationshipGetPlatforms: { | ||
url: '/schedulers/cross-promote/relationships/{relationship_id}/platforms', | ||
url: '/schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}/platforms', | ||
method: HTTP_METHODS.GET | ||
}, | ||
crossPromoteRelationshipSetPlatforms: { | ||
url: '/schedulers/cross-promote/relationships/{relationship_id}/platforms', | ||
url: '/schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}/platforms', | ||
method: HTTP_METHODS.PUT | ||
}, | ||
crossPromoteRelationshipPosts: { | ||
url: '/schedulers/cross-promote/relationships/{relationship_id}/posts', | ||
url: '/schedulers/{scheduler_id}/crosspromote/relationships/{relationship_id}/posts', | ||
method: HTTP_METHODS.GET | ||
}, | ||
}; | ||
@@ -92,0 +93,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
3022322
0.13%54938
0.11%