Skip to content

hliyan/guacamole

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Guacamole

Google AppScript for the Clickup API.

Contents

sheets.js

This is an old-fashioned jQuery-like Google AppScript API for cell access in Google Sheets. Optimized for ease of use by non-developers:

E.g.

 $('sheet1')
 $('sheet1', 'A1')
 $('sheet1', 1, 2)
 $('sheet1', 1, 2, 10, 10);
 $.sheet = $('sheet');
 $(1, 2)
 $(1, 2, 10, 10)

http.js

A thin wrapper over Google AppScript UrlFetchApp.fetch.

E.g.

let data = $http('www.something.com', {Authorization: 'token', method: 'get'}).data('json');

clickup.js

A fluent Google AppScript wrapper for the Clickup API.

E.g.

    $clickup
      .auth('key')
      .team('Different')
      .space('Product - 2020')
      .folder('TDTU')
      .list('Apr 27 - May 08')
      .tasks();
    console.log($clickup.current.tasks);

Code.js

A sample implementation.

Releases

No releases published

Packages

No packages published