Added two new talkspace scripts
This commit is contained in:
@ -1,5 +1,19 @@
|
||||
const sheet = SpreadsheetApp.getActiveSheet();
|
||||
const apiKey = 'stXNF84HWL8aCGeRjHEo2rJ1U';
|
||||
//import {LongRun} from "../LongRun";
|
||||
//let data: string[];
|
||||
|
||||
function execute() {
|
||||
const params = [];
|
||||
params.push(3); // How many times the process should be executed
|
||||
params.push(60); // How long does it take to process one case? (in seconds)
|
||||
params.push(240); // Maximum acceptable run time in seconds (less than 6 minutes, of course)
|
||||
params.push(1); // How many minutes later the next trigger will be activated
|
||||
|
||||
LongRun.instance.setParameters('getUuids', params);
|
||||
LongRunTask();
|
||||
}
|
||||
|
||||
const sheet = SpreadsheetApp.getActiveSheet();
|
||||
const apiKey = 'stXNF84HWL8aCGeRjHEo2rJ1U';
|
||||
|
||||
function getUuids() {
|
||||
var sheet = SpreadsheetApp.getActiveSheet();
|
||||
|
||||
Reference in New Issue
Block a user