-
Notifications
You must be signed in to change notification settings - Fork 1
/
pack.ts
639 lines (601 loc) · 19.1 KB
/
pack.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
// pack.ts is the main entry point for the pack. All the Coda-ish components are
// defined in here, such as the pack itself, API authentication, sync tables,
// and formulas. These then call out to schemas.ts for definitions of the shape
// of the data the pack will be handling, and formulas.ts for more traditional
// JavaScript methods for fetching and manipulating data.
import * as coda from "@codahq/packs-sdk";
import * as schemas from "./schemas";
import * as constants from "./constants";
import * as formulas from "./formulas";
import * as helpers from "./helpers";
export const pack = coda.newPack();
pack.addNetworkDomain("copper.com");
// This pack uses Custom Authentication, which is needed in cases like this where
// an API is looking for more than just a single key or bearer token (Copper wants
// an API key and an email). See the callApi() function in helpers.ts for more on
// some of the quirks of using custom authentication when making fetch requests.
pack.setUserAuthentication({
type: coda.AuthenticationType.Custom,
params: [
{
name: "apiKey",
description: "API Key from Copper (Settings > Integrations > API Keys)",
},
{
name: "email",
description: "The email associated with your Copper account",
},
],
instructionsUrl:
"https://coda.io/@nickhe/copper-pack-for-coda/getting-started-2",
getConnectionName: async function (context) {
const account = await helpers.callApiBasicCached(context, "account");
return account.name;
},
});
/* -------------------------------------------------------------------------- */
/* Sync Tables */
/* -------------------------------------------------------------------------- */
pack.addSyncTable({
name: "Opportunities",
identityName: "Opportunity",
// Copper users can define custom fields, and we want to be able to include those
// as columns. That means we'll be making a dynamic schema. We still have to define
// a regular static schema first, which is used as a placeholder until the full
// dynamic schema is generated.
schema: schemas.OpportunitySchema,
// Now we'll add a dynamic version of the schema, which includes the custom fields
dynamicOptions: {
getSchema: async function (context) {
return schemas.getSchemaWithCustomFields(context, "opportunity");
},
},
formula: {
name: "SyncOpportunities",
description: "Sync opportunities from Copper",
cacheTtlSecs: 0, // don't cache results
parameters: [], // we always want to sync all opportunities
execute: async function ([], context) {
return formulas.syncOpportunities(context);
},
},
});
pack.addSyncTable({
name: "Companies",
identityName: "Company",
schema: schemas.CompanySchema,
dynamicOptions: {
getSchema: async function (context) {
return schemas.getSchemaWithCustomFields(context, "company");
},
},
formula: {
name: "SyncCompanies",
description: "Sync companies from Copper",
cacheTtlSecs: 0,
parameters: [],
execute: async function ([], context) {
return formulas.syncCompanies(context);
},
},
});
pack.addSyncTable({
name: "People",
identityName: "Person",
schema: schemas.PersonSchema,
dynamicOptions: {
getSchema: async function (context) {
return schemas.getSchemaWithCustomFields(context, "person");
},
},
formula: {
name: "SyncPeople",
description: "Sync people from Copper",
cacheTtlSecs: 0,
parameters: [],
execute: async function ([], context) {
return formulas.syncPeople(context);
},
},
});
/* -------------------------------------------------------------------------- */
/* Formulas */
/* -------------------------------------------------------------------------- */
// Read-only formulas
pack.addFormula({
name: "Opportunity",
description:
"Gets all the details of a Copper Opportunity, based on its URL or ID",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the opportunity",
}),
],
resultType: coda.ValueType.Object,
// Although we use a dynamic schema in our sync tables to incorporate custom
// fields, dynamic schemas aren't (yet?) supported in regular formulas. So
// we'll just be using the static version of the schema.
schema: schemas.OpportunitySchema,
execute: async function ([urlOrId], context) {
return formulas.getOpportunity(context, urlOrId);
},
});
pack.addFormula({
name: "Company",
description:
"Gets all the details of a Copper Company, based on its URL or ID",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the company",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.CompanySchema,
execute: async function ([urlOrId], context) {
return formulas.getCompany(context, urlOrId);
},
});
pack.addFormula({
name: "Person",
description:
"Gets all the details of a Copper Person (contact), based on its URL or ID",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the person",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.PersonSchema,
execute: async function ([urlOrId], context) {
return formulas.getPerson(context, urlOrId);
},
});
/* -------------------------------------------------------------------------- */
/* Column Formats */
/* -------------------------------------------------------------------------- */
pack.addColumnFormat({
name: "Opportunity",
instructions:
"Displays all the details of Copper Opportunities, based on their URL or Copper ID",
formulaName: "Opportunity",
// Matchers automatically apply the column format if they detect a cell
// that looks like a Copper Opportunity URL. But users can also manually
// select the column format if they prefer.
matchers: [constants.copperOpportunityUrlRegex],
});
pack.addColumnFormat({
name: "Company",
instructions:
"Displays all the details of Copper Companies, based on their URL or ID",
formulaName: "Company",
matchers: [constants.copperCompanyUrlRegex],
});
pack.addColumnFormat({
name: "Person",
instructions:
"Displays all the details of Copper People (contacts), based on their URL or Copper ID",
formulaName: "Person",
matchers: [constants.copperPersonUrlRegex],
});
/* -------------------------------------------------------------------------- */
/* Actions */
/* -------------------------------------------------------------------------- */
/* ------------------------------ Opportunities ----------------------------- */
pack.addFormula({
name: "UpdateOpportunityStatus",
description: "Changes the status of a Copper Opportunity",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the opportunity",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "newStatus",
description: "The new status to set on the opportunity",
autocomplete: constants.STATUS_OPTIONS,
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "lossReason",
description: "If changing to Lost, the reason for the loss",
optional: true,
autocomplete: async function (context) {
return formulas.autocompleteLossReasons(context);
},
}),
],
resultType: coda.ValueType.Object,
schema: schemas.OpportunitySchema,
isAction: true,
execute: async function ([urlOrId, newStatus, lossReason], context) {
return formulas.updateOpportunityStatus(
context,
urlOrId,
newStatus,
lossReason
);
},
});
pack.addFormula({
name: "UpdateOpportunityStage",
description: "Changes the stage of a Copper Opportunity",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the opportunity",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "stage",
description: "The stage to move the opportunity to",
autocomplete: async function (context, search, parameters) {
return formulas.autocompletePipelineStages(context, parameters.urlOrId);
},
}),
],
resultType: coda.ValueType.Object,
schema: schemas.OpportunitySchema,
isAction: true,
execute: async function ([urlOrId, stage], context) {
return formulas.updateOpportunityStage(context, urlOrId, stage);
},
});
pack.addFormula({
name: "RenameOpportunity",
description: "Renames a Copper Opportunity",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the opportunity to rename",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "newName",
description: "The new name for the opportunity",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.OpportunitySchema,
isAction: true,
execute: async function ([urlOrId, newName], context) {
return formulas.renameOpportunity(context, urlOrId, newName);
},
});
/* --------------------------------- Assign --------------------------------- */
// Shouldn't we have a single Assign() formula, that can accept URLs of any
// record type? That would be marvellous, but we have to speficy ahead of time
// which schema we'll be returning. Currently, we can't change the schema
// dynamically on a formula, the way we can on a sync table :(
pack.addFormula({
name: "AssignOpportunity",
description: "Assign a Copper Opportunity to someone on your team",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the opportunity",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "assigneeEmail",
description: "The email address of the person you want to assign it to",
autocomplete: async function (context) {
return formulas.autocompleteUsers(context);
},
}),
],
resultType: coda.ValueType.Object,
schema: schemas.OpportunitySchema,
isAction: true,
execute: async function ([urlOrId, assigneeEmail], context) {
return formulas.assignRecord(
context,
"opportunity",
urlOrId,
assigneeEmail
);
},
});
pack.addFormula({
name: "AssignPerson",
description: "Assign a Copper Person (customer) to someone on your team",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the Copper 'Person' (customer)",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "assigneeEmail",
description: "The email address of the assignee (your colleague)",
autocomplete: async function (context) {
return formulas.autocompleteUsers(context);
},
}),
],
resultType: coda.ValueType.Object,
schema: schemas.PersonSchema,
isAction: true,
execute: async function ([urlOrId, assigneeEmail], context) {
return formulas.assignRecord(context, "person", urlOrId, assigneeEmail);
},
});
pack.addFormula({
name: "AssignCompany",
description: "Assign a Copper Company to someone on your team",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the company",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "assigneeEmail",
description: "The email address of the person you want to assign it to",
autocomplete: async function (context) {
return formulas.autocompleteUsers(context);
},
}),
],
resultType: coda.ValueType.Object,
schema: schemas.CompanySchema,
isAction: true,
execute: async function ([urlOrId, assigneeEmail], context) {
return formulas.assignRecord(context, "company", urlOrId, assigneeEmail);
},
});
/* --------------------------------- Add Tag -------------------------------- */
pack.addFormula({
name: "TagOpportunity",
description: "Add a tag to a Copper Opportunity",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the opportunity",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "tag",
description: "The tag to apply to the opportunity",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.OpportunitySchema,
isAction: true,
execute: async function ([urlOrId, tag], context) {
return formulas.addOrRemoveTag(context, "opportunity", urlOrId, tag);
},
});
pack.addFormula({
name: "TagPerson",
description: "Add a tag to a Copper Person",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the person",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "tag",
description: "The tag to apply to the person",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.PersonSchema,
isAction: true,
execute: async function ([urlOrId, tag], context) {
return formulas.addOrRemoveTag(context, "person", urlOrId, tag);
},
});
pack.addFormula({
name: "TagCompany",
description: "Add a tag to a Copper Company",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the company",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "tag",
description: "The tag to apply to the company",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.CompanySchema,
isAction: true,
execute: async function ([urlOrId, tag], context) {
return formulas.addOrRemoveTag(context, "company", urlOrId, tag);
},
});
/* ------------------------------- Remove Tag ------------------------------- */
pack.addFormula({
name: "UntagOpportunity",
description: "Remove a tag from a Copper Opportunity",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the opportunity",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "tag",
description: "The tag to remove from the opportunity",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.OpportunitySchema,
isAction: true,
execute: async function ([urlOrId, tag], context) {
return formulas.addOrRemoveTag(context, "opportunity", urlOrId, tag, true);
},
});
pack.addFormula({
name: "UntagPerson",
description: "Remove a tag from a Copper Person",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the person",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "tag",
description: "The tag to remove from the person",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.PersonSchema,
isAction: true,
execute: async function ([urlOrId, tag], context) {
return formulas.addOrRemoveTag(context, "person", urlOrId, tag, true);
},
});
pack.addFormula({
name: "UntagCompany",
description: "Remove a tag from a Copper Company",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the company",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "tag",
description: "The tag to remove from the company",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.CompanySchema,
isAction: true,
execute: async function ([urlOrId, tag], context) {
return formulas.addOrRemoveTag(context, "company", urlOrId, tag, true);
},
});
/* ------------------------------ Custom Fields ----------------------------- */
pack.addFormula({
name: "UpdateOppCustomField",
description: "Update the value of a custom field on a Copper Opportunity",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the opportunity",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "fieldName",
description: "The name of the custom field",
autocomplete: async function (context) {
return formulas.autocompleteCustomFields(context, "opportunity");
},
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "newValue",
description: "The value to set the custom field to",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.OpportunitySchema,
isAction: true,
execute: async function ([urlOrId, fieldName, newValue], context) {
return formulas.updateCustomField(
context,
"opportunity",
urlOrId,
fieldName,
newValue
);
},
});
pack.addFormula({
name: "UpdateCompanyCustomField",
description: "Update the value of a custom field on a Copper Company",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the company",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "fieldName",
description: "The name of the custom field",
autocomplete: async function (context) {
return formulas.autocompleteCustomFields(context, "company");
},
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "newValue",
description: "The value to set the custom field to",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.CompanySchema,
isAction: true,
execute: async function ([urlOrId, fieldName, newValue], context) {
return formulas.updateCustomField(
context,
"company",
urlOrId,
fieldName,
newValue
);
},
});
pack.addFormula({
name: "UpdatePersonCustomField",
description: "Update the value of a custom field on a Copper Person",
parameters: [
coda.makeParameter({
type: coda.ParameterType.String,
name: "urlOrId",
description: "The URL or ID of the pesron",
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "fieldName",
description: "The name of the custom field",
autocomplete: async function (context) {
return formulas.autocompleteCustomFields(context, "person");
},
}),
coda.makeParameter({
type: coda.ParameterType.String,
name: "newValue",
description: "The value to set the custom field to",
}),
],
resultType: coda.ValueType.Object,
schema: schemas.PersonSchema,
isAction: true,
execute: async function ([urlOrId, fieldName, newValue], context) {
return formulas.updateCustomField(
context,
"person",
urlOrId,
fieldName,
newValue
);
},
});