first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled

This commit is contained in:
2026-03-17 16:22:57 +03:30
commit 3d5eaf9445
15349 changed files with 2847338 additions and 0 deletions
@@ -0,0 +1,25 @@
{
"node": "n8n-nodes-base.asana",
"nodeVersion": "1.0",
"codexVersion": "1.0",
"categories": ["Productivity"],
"resources": {
"credentialDocumentation": [
{
"url": "https://docs.n8n.io/integrations/builtin/credentials/asana/"
}
],
"primaryDocumentation": [
{
"url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.asana/"
}
],
"generic": [
{
"label": "How a digital strategist uses n8n for online marketing",
"icon": "💻",
"url": "https://n8n.io/blog/how-a-digital-strategist-uses-n8n-for-online-marketing/"
}
]
}
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,18 @@
{
"node": "n8n-nodes-base.asanaTrigger",
"nodeVersion": "1.0",
"codexVersion": "1.0",
"categories": ["Productivity"],
"resources": {
"credentialDocumentation": [
{
"url": "https://docs.n8n.io/integrations/builtin/credentials/asana/"
}
],
"primaryDocumentation": [
{
"url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.asanatrigger/"
}
]
}
}
@@ -0,0 +1,240 @@
import type {
IHookFunctions,
IWebhookFunctions,
IDataObject,
ILoadOptionsFunctions,
INodePropertyOptions,
INodeType,
INodeTypeDescription,
IWebhookResponseData,
} from 'n8n-workflow';
import { NodeConnectionTypes, NodeOperationError } from 'n8n-workflow';
import { asanaApiRequest, getWorkspaces } from './GenericFunctions';
// import {
// createHmac,
// } from 'crypto';
export class AsanaTrigger implements INodeType {
description: INodeTypeDescription = {
displayName: 'Asana Trigger',
name: 'asanaTrigger',
icon: 'file:asana.svg',
group: ['trigger'],
version: 1,
description: 'Starts the workflow when Asana events occur.',
defaults: {
name: 'Asana Trigger',
},
inputs: [],
outputs: [NodeConnectionTypes.Main],
credentials: [
{
name: 'asanaApi',
required: true,
displayOptions: {
show: {
authentication: ['accessToken'],
},
},
},
{
name: 'asanaOAuth2Api',
required: true,
displayOptions: {
show: {
authentication: ['oAuth2'],
},
},
},
],
webhooks: [
{
name: 'default',
httpMethod: 'POST',
responseMode: 'onReceived',
path: 'webhook',
},
],
properties: [
{
displayName: 'Authentication',
name: 'authentication',
type: 'options',
options: [
{
name: 'Access Token',
value: 'accessToken',
},
{
name: 'OAuth2',
value: 'oAuth2',
},
],
default: 'accessToken',
},
{
displayName: 'Resource',
name: 'resource',
type: 'string',
default: '',
required: true,
description: 'The resource ID to subscribe to. The resource can be a task or project.',
},
{
displayName: 'Workspace Name or ID',
name: 'workspace',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getWorkspaces',
},
options: [],
default: '',
description:
'The workspace ID the resource is registered under. This is only required if you want to allow overriding existing webhooks. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
],
};
methods = {
loadOptions: {
// Get all the available workspaces to display them to user so that they can
// select them easily
async getWorkspaces(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const workspaces = await getWorkspaces.call(this);
workspaces.unshift({
name: '',
value: '',
});
return workspaces;
},
},
};
webhookMethods = {
default: {
async checkExists(this: IHookFunctions): Promise<boolean> {
const webhookData = this.getWorkflowStaticData('node');
const webhookUrl = this.getNodeWebhookUrl('default') as string;
const resource = this.getNodeParameter('resource') as string;
const workspace = this.getNodeParameter('workspace') as string;
const { data } = await asanaApiRequest.call(this, 'GET', '/webhooks', {}, { workspace });
for (const webhook of data) {
if (webhook.resource.gid === resource && webhook.target === webhookUrl) {
webhookData.webhookId = webhook.gid;
return true;
}
}
// If it did not error then the webhook exists
return false;
},
async create(this: IHookFunctions): Promise<boolean> {
const webhookData = this.getWorkflowStaticData('node');
const webhookUrl = this.getNodeWebhookUrl('default') as string;
if (webhookUrl.includes('%20')) {
throw new NodeOperationError(
this.getNode(),
'The name of the Asana Trigger Node is not allowed to contain any spaces!',
);
}
const resource = this.getNodeParameter('resource') as string;
const body = {
resource,
target: webhookUrl,
};
const responseData = await asanaApiRequest.call(this, 'POST', '/webhooks', body);
if (responseData.data === undefined || responseData.data.gid === undefined) {
// Required data is missing so was not successful
return false;
}
webhookData.webhookId = responseData.data.gid as string;
return true;
},
async delete(this: IHookFunctions): Promise<boolean> {
const webhookData = this.getWorkflowStaticData('node');
if (webhookData.webhookId !== undefined) {
const body = {};
try {
await asanaApiRequest.call(this, 'DELETE', `/webhooks/${webhookData.webhookId}`, body);
} catch (error) {
return false;
}
// Remove from the static workflow data so that it is clear
// that no webhooks are registered anymore
delete webhookData.webhookId;
delete webhookData.webhookEvents;
delete webhookData.hookSecret;
}
return true;
},
},
};
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
const bodyData = this.getBodyData();
const headerData = this.getHeaderData() as IDataObject;
const req = this.getRequestObject();
const webhookData = this.getWorkflowStaticData('node');
if (headerData['x-hook-secret'] !== undefined) {
// Is a create webhook confirmation request
webhookData.hookSecret = headerData['x-hook-secret'];
const res = this.getResponseObject();
res.set('X-Hook-Secret', webhookData.hookSecret as string);
res.status(200).end();
return {
noWebhookResponse: true,
};
}
// Is regular webhook call
// Check if it contains any events
if (
bodyData.events === undefined ||
!Array.isArray(bodyData.events) ||
bodyData.events.length === 0
) {
// Does not contain any event data so nothing to process so no reason to
// start the workflow
return {};
}
// TODO: Had to be deactivated as it is currently not possible to get the secret
// in production mode as the static data overwrites each other because the
// two exist at the same time (create webhook [with webhookId] and receive
// webhook [with secret])
// // Check if the request is valid
// // (if the signature matches to data and hookSecret)
// const computedSignature = createHmac('sha256', webhookData.hookSecret as string).update(JSON.stringify(req.body)).digest('hex');
// if (headerData['x-hook-signature'] !== computedSignature) {
// // Signature is not valid so ignore call
// return {};
// }
return {
workflowData: [this.helpers.returnJsonArray(req.body.events as IDataObject[])],
};
}
}
@@ -0,0 +1,168 @@
import get from 'lodash/get';
import type {
IDataObject,
IExecuteFunctions,
IHookFunctions,
ILoadOptionsFunctions,
IHttpRequestMethods,
IHttpRequestOptions,
INodePropertyOptions,
} from 'n8n-workflow';
/**
* Make an API request to Asana
*
*/
export async function asanaApiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
method: IHttpRequestMethods,
endpoint: `/${string}`,
body: object,
query?: IDataObject,
uri?: string,
): Promise<any> {
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
const options: IHttpRequestOptions = {
headers: {},
method,
body: method === 'GET' || method === 'HEAD' || method === 'DELETE' ? null : { data: body },
qs: query,
url: uri || `https://app.asana.com/api/1.0${endpoint}`,
json: true,
};
if (options.body === null) {
delete options.body;
}
const credentialType = authenticationMethod === 'accessToken' ? 'asanaApi' : 'asanaOAuth2Api';
return await this.helpers.requestWithAuthentication.call(this, credentialType, options);
}
export async function asanaApiRequestAllItems(
this: IExecuteFunctions | ILoadOptionsFunctions,
method: IHttpRequestMethods,
endpoint: `/${string}`,
body: any = {},
query: IDataObject = {},
): Promise<any> {
const returnData: IDataObject[] = [];
let responseData;
let uri: string | undefined;
query.limit = 100;
do {
responseData = await asanaApiRequest.call(
this,
method,
endpoint,
body as IDataObject,
query,
uri,
);
uri = get(responseData, 'next_page.uri');
query = {}; // query is not needed once we have next_page.uri
returnData.push.apply(returnData, responseData.data as IDataObject[]);
} while (responseData.next_page !== null);
return returnData;
}
export async function getWorkspaces(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const endpoint = '/workspaces';
const responseData = await asanaApiRequestAllItems.call(this, 'GET', endpoint, {});
const returnData: INodePropertyOptions[] = [];
for (const workspaceData of responseData) {
if (workspaceData.resource_type !== 'workspace') {
// Not sure if for some reason also ever other resources
// get returned but just in case filter them out
continue;
}
returnData.push({
name: workspaceData.name,
value: workspaceData.gid,
});
}
returnData.sort((a, b) => {
if (a.name < b.name) {
return -1;
}
if (a.name > b.name) {
return 1;
}
return 0;
});
return returnData;
}
export function getColorOptions(): INodePropertyOptions[] {
return [
'dark-blue',
'dark-brown',
'dark-green',
'dark-orange',
'dark-pink',
'dark-purple',
'dark-red',
'dark-teal',
'dark-warm-gray',
'light-blue',
'light-green',
'light-orange',
'light-pink',
'light-purple',
'light-red',
'light-teal',
'light-warm-gray',
'light-yellow',
'none',
].map((value) => {
return {
name: value,
value,
};
});
}
export function getTaskFields() {
return [
'*',
'GID',
'Resource Type',
'name',
'Approval Status',
'Assignee Status',
'Completed',
'Completed At',
'Completed By',
'Created At',
'Dependencies',
'Dependents',
'Due At',
'Due On',
'External',
'HTML Notes',
'Liked',
'Likes',
'Memberships',
'Modified At',
'Notes',
'Num Likes',
'Resource Subtype',
'Start On',
'Assignee',
'Custom Fields',
'Followers',
'Parent',
'Permalink URL',
'Projects',
'Tags',
'Workspace',
];
}
@@ -0,0 +1,145 @@
{
"type": "object",
"properties": {
"archived": {
"type": "boolean"
},
"completed": {
"type": "boolean"
},
"completed_at": {
"type": "null"
},
"completed_by": {
"type": "null"
},
"created_at": {
"type": "string"
},
"current_status": {
"type": "null"
},
"current_status_update": {
"type": "null"
},
"default_access_level": {
"type": "string"
},
"default_view": {
"type": "string"
},
"followers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"gid": {
"type": "string"
},
"icon": {
"type": "string"
},
"members": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"minimum_access_level_for_customization": {
"type": "string"
},
"minimum_access_level_for_sharing": {
"type": "string"
},
"modified_at": {
"type": "string"
},
"name": {
"type": "string"
},
"notes": {
"type": "string"
},
"owner": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"permalink_url": {
"type": "string"
},
"privacy_setting": {
"type": "string"
},
"public": {
"type": "boolean"
},
"resource_type": {
"type": "string"
},
"start_on": {
"type": "null"
},
"team": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"workspace": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"version": 1
}
@@ -0,0 +1,415 @@
{
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"archived": {
"type": "boolean"
},
"completed": {
"type": "boolean"
},
"completed_at": {
"type": "null"
},
"created_at": {
"type": "string"
},
"custom_fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"enum_options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"color": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"color",
"enabled",
"name",
"resource_type"
]
}
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"created_by": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"name",
"resource_type"
]
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"is_formula_field": {
"type": "boolean"
},
"is_value_read_only": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"required": [
"gid",
"enabled",
"name",
"description",
"created_by",
"display_value",
"resource_subtype",
"resource_type",
"is_formula_field",
"is_value_read_only",
"type"
]
}
},
"custom_field_settings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"custom_field": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"enum_options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"color": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"color",
"enabled",
"name",
"resource_type"
]
}
},
"name": {
"type": "string"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"type": {
"type": "string"
},
"privacy_setting": {
"type": "string"
},
"default_access_level": {
"type": "string"
},
"is_formula_field": {
"type": "boolean"
},
"precision": {
"type": "integer"
}
},
"required": [
"gid",
"name",
"resource_subtype",
"resource_type",
"type",
"is_formula_field"
]
},
"is_important": {
"type": "boolean"
},
"parent": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"name",
"resource_type"
]
},
"project": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"name",
"resource_type"
]
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"custom_field",
"is_important",
"parent",
"project",
"resource_type"
]
}
},
"default_access_level": {
"type": "string"
},
"default_view": {
"type": "string"
},
"followers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"name",
"resource_type"
]
}
},
"members": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"name",
"resource_type"
]
}
},
"minimum_access_level_for_customization": {
"type": "string"
},
"minimum_access_level_for_sharing": {
"type": "string"
},
"modified_at": {
"type": "string"
},
"name": {
"type": "string"
},
"notes": {
"type": "string"
},
"owner": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"name",
"resource_type"
]
},
"permalink_url": {
"type": "string"
},
"privacy_setting": {
"type": "string"
},
"public": {
"type": "boolean"
},
"resource_type": {
"type": "string"
},
"team": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"name",
"resource_type"
]
},
"workspace": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"required": [
"gid",
"name",
"resource_type"
]
}
},
"required": [
"gid",
"archived",
"color",
"completed",
"completed_at",
"created_at",
"current_status",
"current_status_update",
"custom_fields",
"default_access_level",
"default_view",
"due_on",
"due_date",
"followers",
"members",
"minimum_access_level_for_customization",
"minimum_access_level_for_sharing",
"modified_at",
"name",
"notes",
"owner",
"permalink_url",
"privacy_setting",
"public",
"resource_type",
"start_on",
"team",
"workspace"
],
"version": 1
}
@@ -0,0 +1,15 @@
{
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,183 @@
{
"type": "object",
"properties": {
"actual_time_minutes": {
"type": "integer"
},
"assignee_status": {
"type": "string"
},
"completed": {
"type": "boolean"
},
"created_at": {
"type": "string"
},
"custom_fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"created_by": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"enabled": {
"type": "boolean"
},
"enum_options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"color": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"enum_value": {
"type": "null"
},
"gid": {
"type": "string"
},
"is_formula_field": {
"type": "boolean"
},
"name": {
"type": "string"
},
"number_value": {
"type": "null"
},
"precision": {
"type": "integer"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"due_at": {
"type": "null"
},
"followers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"gid": {
"type": "string"
},
"hearted": {
"type": "boolean"
},
"liked": {
"type": "boolean"
},
"modified_at": {
"type": "string"
},
"name": {
"type": "string"
},
"notes": {
"type": "string"
},
"num_hearts": {
"type": "integer"
},
"num_likes": {
"type": "integer"
},
"parent": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"permalink_url": {
"type": "string"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"start_at": {
"type": "null"
},
"start_on": {
"type": "null"
},
"workspace": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"version": 1
}
@@ -0,0 +1,18 @@
{
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"version": 2
}
@@ -0,0 +1,272 @@
{
"type": "object",
"properties": {
"actual_time_minutes": {
"type": "integer"
},
"assignee_status": {
"type": "string"
},
"completed": {
"type": "boolean"
},
"created_at": {
"type": "string"
},
"custom_fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"created_by": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"enabled": {
"type": "boolean"
},
"enum_options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"color": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"enum_value": {
"type": "null"
},
"gid": {
"type": "string"
},
"is_formula_field": {
"type": "boolean"
},
"name": {
"type": "string"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"due_at": {
"type": "null"
},
"followers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"gid": {
"type": "string"
},
"hearted": {
"type": "boolean"
},
"hearts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"user": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
}
}
},
"liked": {
"type": "boolean"
},
"likes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"user": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
}
}
},
"memberships": {
"type": "array",
"items": {
"type": "object",
"properties": {
"project": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"section": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
}
}
},
"modified_at": {
"type": "string"
},
"name": {
"type": "string"
},
"notes": {
"type": "string"
},
"num_hearts": {
"type": "integer"
},
"num_likes": {
"type": "integer"
},
"parent": {
"type": "null"
},
"permalink_url": {
"type": "string"
},
"projects": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"start_at": {
"type": "null"
},
"start_on": {
"type": "null"
},
"workspace": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"version": 1
}
@@ -0,0 +1,253 @@
{
"type": "object",
"properties": {
"assignee": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"assignee_status": {
"type": "string"
},
"completed": {
"type": "boolean"
},
"created_at": {
"type": "string"
},
"custom_fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"enum_options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"color": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"gid": {
"type": "string"
},
"is_formula_field": {
"type": "boolean"
},
"is_value_read_only": {
"type": "boolean"
},
"multi_enum_values": {
"type": "array",
"items": {
"type": "object",
"properties": {
"color": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"name": {
"type": "string"
},
"precision": {
"type": "integer"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"due_at": {
"type": "null"
},
"followers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"gid": {
"type": "string"
},
"hearted": {
"type": "boolean"
},
"liked": {
"type": "boolean"
},
"memberships": {
"type": "array",
"items": {
"type": "object",
"properties": {
"project": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"section": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
}
}
},
"modified_at": {
"type": "string"
},
"name": {
"type": "string"
},
"notes": {
"type": "string"
},
"num_hearts": {
"type": "integer"
},
"num_likes": {
"type": "integer"
},
"permalink_url": {
"type": "string"
},
"projects": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"start_at": {
"type": "null"
},
"tags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"workspace": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"version": 1
}
@@ -0,0 +1,18 @@
{
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
}
},
"version": 1
}
@@ -0,0 +1,18 @@
{
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,238 @@
{
"type": "object",
"properties": {
"actual_time_minutes": {
"type": "integer"
},
"assignee": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"assignee_status": {
"type": "string"
},
"completed": {
"type": "boolean"
},
"created_at": {
"type": "string"
},
"custom_fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"created_by": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"enabled": {
"type": "boolean"
},
"enum_options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"color": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"precision": {
"type": "integer"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"due_at": {
"type": "null"
},
"followers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"gid": {
"type": "string"
},
"hearted": {
"type": "boolean"
},
"liked": {
"type": "boolean"
},
"memberships": {
"type": "array",
"items": {
"type": "object",
"properties": {
"project": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"section": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
}
}
},
"modified_at": {
"type": "string"
},
"name": {
"type": "string"
},
"notes": {
"type": "string"
},
"num_hearts": {
"type": "integer"
},
"num_likes": {
"type": "integer"
},
"permalink_url": {
"type": "string"
},
"projects": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"start_at": {
"type": "null"
},
"tags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"workspace": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
},
"version": 1
}
@@ -0,0 +1,79 @@
{
"type": "object",
"properties": {
"created_at": {
"type": "string"
},
"created_by": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"gid": {
"type": "string"
},
"hearted": {
"type": "boolean"
},
"is_editable": {
"type": "boolean"
},
"is_edited": {
"type": "boolean"
},
"is_pinned": {
"type": "boolean"
},
"liked": {
"type": "boolean"
},
"num_hearts": {
"type": "integer"
},
"num_likes": {
"type": "integer"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"source": {
"type": "string"
},
"target": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_subtype": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
},
"text": {
"type": "string"
},
"type": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
}
},
"version": 1
}
@@ -0,0 +1,35 @@
{
"type": "object",
"properties": {
"email": {
"type": "string"
},
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"workspaces": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
}
}
}
},
"version": 1
}
@@ -0,0 +1,15 @@
{
"type": "object",
"properties": {
"gid": {
"type": "string"
},
"name": {
"type": "string"
},
"resource_type": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><defs><radialGradient id="a" cx="50%" cy="55%" r="72.507%" fx="50%" fy="55%" gradientTransform="matrix(.92404 0 0 1 .038 0)"><stop offset="0%" stop-color="#FFB900"/><stop offset="60%" stop-color="#F95D8F"/><stop offset="99.91%" stop-color="#F95353"/></radialGradient></defs><path fill="url(#a)" fill-rule="evenodd" d="M45.594 28.5c-6.994.003-12.664 5.673-12.667 12.667.003 6.995 5.673 12.664 12.667 12.668 6.995-.004 12.664-5.673 12.667-12.668-.003-6.994-5.672-12.664-12.667-12.667m-32.927.001C5.673 28.505.003 34.174 0 41.17c.003 6.994 5.673 12.664 12.667 12.667 6.995-.003 12.664-5.673 12.668-12.667-.004-6.995-5.673-12.664-12.668-12.668zM41.79 12.667c-.002 6.995-5.671 12.665-12.666 12.67-6.995-.004-12.664-5.674-12.667-12.67C16.46 5.673 22.13.003 29.123 0c6.994.004 12.663 5.673 12.666 12.667z" transform="translate(.732 2.732)"/></svg>

After

Width:  |  Height:  |  Size: 903 B