@apideck/unify 0.40.0 → 0.41.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/jsr.json +1 -1
  2. package/lib/config.d.ts +4 -4
  3. package/lib/config.js +4 -4
  4. package/package.json +6 -2
  5. package/src/__tests__/activities.test.ts +1141 -0
  6. package/src/__tests__/agedcreditors.test.ts +280 -0
  7. package/src/__tests__/ageddebtors.test.ts +280 -0
  8. package/src/__tests__/apideckcompanies.test.ts +1082 -0
  9. package/src/__tests__/apideckcustomers.test.ts +364 -0
  10. package/src/__tests__/apideckdepartments.test.ts +497 -0
  11. package/src/__tests__/apiresources.test.ts +62 -0
  12. package/src/__tests__/apis.test.ts +216 -0
  13. package/src/__tests__/applicants.test.ts +1445 -0
  14. package/src/__tests__/applications.test.ts +515 -0
  15. package/src/__tests__/assertions.ts +13 -0
  16. package/src/__tests__/attachments.test.ts +371 -0
  17. package/src/__tests__/balancesheet.test.ts +453 -0
  18. package/src/__tests__/bankaccounts.test.ts +324 -0
  19. package/src/__tests__/bankfeedaccounts.test.ts +343 -0
  20. package/src/__tests__/bankfeedstatements.test.ts +408 -0
  21. package/src/__tests__/billpayments.test.ts +1031 -0
  22. package/src/__tests__/bills.test.ts +1630 -0
  23. package/src/__tests__/categories.test.ts +127 -0
  24. package/src/__tests__/collections.test.ts +120 -0
  25. package/src/__tests__/collectiontags.test.ts +68 -0
  26. package/src/__tests__/collectionticketcomments.test.ts +501 -0
  27. package/src/__tests__/collectiontickets.test.ts +627 -0
  28. package/src/__tests__/collectionusers.test.ts +126 -0
  29. package/src/__tests__/companies.test.ts +1642 -0
  30. package/src/__tests__/companyinfo.test.ts +219 -0
  31. package/src/__tests__/connectionconsent.test.ts +89 -0
  32. package/src/__tests__/connectionconsents.test.ts +31 -0
  33. package/src/__tests__/connectioncustommappings.test.ts +69 -0
  34. package/src/__tests__/connections.test.ts +2127 -0
  35. package/src/__tests__/connectionsettings.test.ts +687 -0
  36. package/src/__tests__/connectordocs.test.ts +29 -0
  37. package/src/__tests__/connectors.test.ts +753 -0
  38. package/src/__tests__/consumerrequestcounts.test.ts +42 -0
  39. package/src/__tests__/consumers.test.ts +523 -0
  40. package/src/__tests__/contacts.test.ts +1421 -0
  41. package/src/__tests__/createcallback.test.ts +36 -0
  42. package/src/__tests__/creditnotes.test.ts +2040 -0
  43. package/src/__tests__/customers.test.ts +1600 -0
  44. package/src/__tests__/customfields.test.ts +52 -0
  45. package/src/__tests__/custommappings.test.ts +65 -0
  46. package/src/__tests__/customobjects.test.ts +408 -0
  47. package/src/__tests__/customobjectschemas.test.ts +734 -0
  48. package/src/__tests__/departments.test.ts +529 -0
  49. package/src/__tests__/drivegroups.test.ts +496 -0
  50. package/src/__tests__/drives.test.ts +487 -0
  51. package/src/__tests__/employeepayrolls.test.ts +491 -0
  52. package/src/__tests__/employees.test.ts +2968 -0
  53. package/src/__tests__/employeeschedules.test.ts +457 -0
  54. package/src/__tests__/eventlogs.test.ts +158 -0
  55. package/src/__tests__/expensecategories.test.ts +324 -0
  56. package/src/__tests__/expensereports.test.ts +634 -0
  57. package/src/__tests__/expenses.test.ts +867 -0
  58. package/src/__tests__/files.test.ts +506 -0
  59. package/src/__tests__/files.ts +56 -0
  60. package/src/__tests__/folders.test.ts +390 -0
  61. package/src/__tests__/invoiceitems.test.ts +855 -0
  62. package/src/__tests__/invoices.test.ts +2173 -0
  63. package/src/__tests__/jobs.test.ts +1150 -0
  64. package/src/__tests__/journalentries.test.ts +1542 -0
  65. package/src/__tests__/leads.test.ts +1341 -0
  66. package/src/__tests__/ledgeraccounts.test.ts +829 -0
  67. package/src/__tests__/locations.test.ts +856 -0
  68. package/src/__tests__/logs.test.ts +137 -0
  69. package/src/__tests__/messages.test.ts +588 -0
  70. package/src/__tests__/notes.test.ts +523 -0
  71. package/src/__tests__/opportunities.test.ts +718 -0
  72. package/src/__tests__/orders.test.ts +854 -0
  73. package/src/__tests__/payments.test.ts +867 -0
  74. package/src/__tests__/payrolls.test.ts +485 -0
  75. package/src/__tests__/pipelines.test.ts +574 -0
  76. package/src/__tests__/products.test.ts +509 -0
  77. package/src/__tests__/profitandloss.test.ts +223 -0
  78. package/src/__tests__/projects.test.ts +480 -0
  79. package/src/__tests__/proxy.test.ts +41 -0
  80. package/src/__tests__/purchaseorders.test.ts +2139 -0
  81. package/src/__tests__/quotes.test.ts +678 -0
  82. package/src/__tests__/refunds.test.ts +812 -0
  83. package/src/__tests__/sessions.test.ts +72 -0
  84. package/src/__tests__/sharedlinks.test.ts +511 -0
  85. package/src/__tests__/stores.test.ts +41 -0
  86. package/src/__tests__/subsidiaries.test.ts +496 -0
  87. package/src/__tests__/suppliers.test.ts +1574 -0
  88. package/src/__tests__/taxrates.test.ts +701 -0
  89. package/src/__tests__/testclient.ts +48 -0
  90. package/src/__tests__/timeoffrequests.test.ts +588 -0
  91. package/src/__tests__/trackingcategories.test.ts +515 -0
  92. package/src/__tests__/uploadsessions.test.ts +221 -0
  93. package/src/__tests__/users.test.ts +1020 -0
  94. package/src/__tests__/validateconnection.test.ts +34 -0
  95. package/src/__tests__/webhooks.test.ts +254 -0
  96. package/src/lib/config.ts +4 -4
@@ -0,0 +1,574 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ import { expect, test } from "vitest";
6
+ import { Apideck } from "../index.js";
7
+ import { createTestHTTPClient } from "./testclient.js";
8
+
9
+ test("Pipelines Crm Pipelines All", async () => {
10
+ const testHttpClient = createTestHTTPClient("crm.pipelinesAll");
11
+
12
+ const apideck = new Apideck({
13
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
14
+ httpClient: testHttpClient,
15
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
16
+ });
17
+
18
+ const result = await apideck.crm.pipelines.list({
19
+ consumerId: "test-consumer",
20
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
21
+ serviceId: "salesforce",
22
+ passThrough: {
23
+ "search": "San Francisco",
24
+ },
25
+ fields: "id,updated_at",
26
+ });
27
+ expect(result.httpMeta.response.status).toBe(200);
28
+ expect(result.getPipelinesResponse).toBeDefined();
29
+ expect(result.getPipelinesResponse).toEqual({
30
+ statusCode: 200,
31
+ status: "OK",
32
+ service: "zoho-crm",
33
+ resource: "pipelines",
34
+ operation: "all",
35
+ data: [
36
+ {
37
+ id: "default",
38
+ name: "Sales Pipeline",
39
+ currency: "USD",
40
+ archived: false,
41
+ active: false,
42
+ displayOrder: 1,
43
+ winProbabilityEnabled: true,
44
+ stages: [
45
+ {
46
+ id: "contractsent",
47
+ name: "Contract Sent",
48
+ value: "CONTRACT_SENT",
49
+ winProbability: 50,
50
+ displayOrder: 1,
51
+ },
52
+ {
53
+ id: "contractsent",
54
+ name: "Contract Sent",
55
+ value: "CONTRACT_SENT",
56
+ winProbability: 50,
57
+ displayOrder: 1,
58
+ },
59
+ ],
60
+ updatedAt: new Date("2020-09-30T07:43:32.000Z"),
61
+ createdAt: new Date("2020-09-30T07:43:32.000Z"),
62
+ passThrough: [
63
+ {
64
+ serviceId: "<id>",
65
+ extendPaths: [
66
+ {
67
+ path: "$.nested.property",
68
+ value: {
69
+ "TaxClassificationRef": {
70
+ "value": "EUC-99990201-V1-00020000",
71
+ },
72
+ },
73
+ },
74
+ ],
75
+ },
76
+ {
77
+ serviceId: "<id>",
78
+ extendPaths: [
79
+ {
80
+ path: "$.nested.property",
81
+ value: {
82
+ "TaxClassificationRef": {
83
+ "value": "EUC-99990201-V1-00020000",
84
+ },
85
+ },
86
+ },
87
+ ],
88
+ },
89
+ {
90
+ serviceId: "<id>",
91
+ extendPaths: [
92
+ {
93
+ path: "$.nested.property",
94
+ value: {
95
+ "TaxClassificationRef": {
96
+ "value": "EUC-99990201-V1-00020000",
97
+ },
98
+ },
99
+ },
100
+ ],
101
+ },
102
+ ],
103
+ },
104
+ {
105
+ id: "default",
106
+ name: "Sales Pipeline",
107
+ currency: "USD",
108
+ archived: false,
109
+ active: false,
110
+ displayOrder: 1,
111
+ winProbabilityEnabled: true,
112
+ stages: [
113
+ {
114
+ id: "contractsent",
115
+ name: "Contract Sent",
116
+ value: "CONTRACT_SENT",
117
+ winProbability: 50,
118
+ displayOrder: 1,
119
+ },
120
+ {
121
+ id: "contractsent",
122
+ name: "Contract Sent",
123
+ value: "CONTRACT_SENT",
124
+ winProbability: 50,
125
+ displayOrder: 1,
126
+ },
127
+ ],
128
+ updatedAt: new Date("2020-09-30T07:43:32.000Z"),
129
+ createdAt: new Date("2020-09-30T07:43:32.000Z"),
130
+ passThrough: [
131
+ {
132
+ serviceId: "<id>",
133
+ extendPaths: [
134
+ {
135
+ path: "$.nested.property",
136
+ value: {
137
+ "TaxClassificationRef": {
138
+ "value": "EUC-99990201-V1-00020000",
139
+ },
140
+ },
141
+ },
142
+ ],
143
+ },
144
+ {
145
+ serviceId: "<id>",
146
+ extendPaths: [
147
+ {
148
+ path: "$.nested.property",
149
+ value: {
150
+ "TaxClassificationRef": {
151
+ "value": "EUC-99990201-V1-00020000",
152
+ },
153
+ },
154
+ },
155
+ {
156
+ path: "$.nested.property",
157
+ value: {
158
+ "TaxClassificationRef": {
159
+ "value": "EUC-99990201-V1-00020000",
160
+ },
161
+ },
162
+ },
163
+ {
164
+ path: "$.nested.property",
165
+ value: {
166
+ "TaxClassificationRef": {
167
+ "value": "EUC-99990201-V1-00020000",
168
+ },
169
+ },
170
+ },
171
+ ],
172
+ },
173
+ ],
174
+ },
175
+ {
176
+ id: "default",
177
+ name: "Sales Pipeline",
178
+ currency: "USD",
179
+ archived: false,
180
+ active: false,
181
+ displayOrder: 1,
182
+ winProbabilityEnabled: true,
183
+ stages: [
184
+ {
185
+ id: "contractsent",
186
+ name: "Contract Sent",
187
+ value: "CONTRACT_SENT",
188
+ winProbability: 50,
189
+ displayOrder: 1,
190
+ },
191
+ ],
192
+ updatedAt: new Date("2020-09-30T07:43:32.000Z"),
193
+ createdAt: new Date("2020-09-30T07:43:32.000Z"),
194
+ passThrough: [
195
+ {
196
+ serviceId: "<id>",
197
+ extendPaths: [
198
+ {
199
+ path: "$.nested.property",
200
+ value: {
201
+ "TaxClassificationRef": {
202
+ "value": "EUC-99990201-V1-00020000",
203
+ },
204
+ },
205
+ },
206
+ {
207
+ path: "$.nested.property",
208
+ value: {
209
+ "TaxClassificationRef": {
210
+ "value": "EUC-99990201-V1-00020000",
211
+ },
212
+ },
213
+ },
214
+ {
215
+ path: "$.nested.property",
216
+ value: {
217
+ "TaxClassificationRef": {
218
+ "value": "EUC-99990201-V1-00020000",
219
+ },
220
+ },
221
+ },
222
+ ],
223
+ },
224
+ ],
225
+ },
226
+ ],
227
+ meta: {
228
+ itemsOnPage: 50,
229
+ cursors: {
230
+ previous: "em9oby1jcm06OnBhZ2U6OjE=",
231
+ current: "em9oby1jcm06OnBhZ2U6OjI=",
232
+ next: "em9oby1jcm06OnBhZ2U6OjM=",
233
+ },
234
+ },
235
+ links: {
236
+ previous:
237
+ "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D",
238
+ current: "https://unify.apideck.com/crm/companies",
239
+ next:
240
+ "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM",
241
+ },
242
+ });
243
+ });
244
+
245
+ test("Pipelines Crm Pipelines Add", async () => {
246
+ const testHttpClient = createTestHTTPClient("crm.pipelinesAdd");
247
+
248
+ const apideck = new Apideck({
249
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
250
+ httpClient: testHttpClient,
251
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
252
+ });
253
+
254
+ const result = await apideck.crm.pipelines.create({
255
+ consumerId: "test-consumer",
256
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
257
+ serviceId: "salesforce",
258
+ pipeline: {
259
+ id: "default",
260
+ name: "Sales Pipeline",
261
+ currency: "USD",
262
+ archived: false,
263
+ active: false,
264
+ displayOrder: 1,
265
+ winProbabilityEnabled: true,
266
+ stages: [
267
+ {
268
+ name: "Contract Sent",
269
+ value: "CONTRACT_SENT",
270
+ winProbability: 50,
271
+ displayOrder: 1,
272
+ },
273
+ {
274
+ name: "Contract Sent",
275
+ value: "CONTRACT_SENT",
276
+ winProbability: 50,
277
+ displayOrder: 1,
278
+ },
279
+ ],
280
+ passThrough: [
281
+ {
282
+ serviceId: "<id>",
283
+ extendPaths: [
284
+ {
285
+ path: "$.nested.property",
286
+ value: {
287
+ "TaxClassificationRef": {
288
+ "value": "EUC-99990201-V1-00020000",
289
+ },
290
+ },
291
+ },
292
+ {
293
+ path: "$.nested.property",
294
+ value: {
295
+ "TaxClassificationRef": {
296
+ "value": "EUC-99990201-V1-00020000",
297
+ },
298
+ },
299
+ },
300
+ ],
301
+ },
302
+ {
303
+ serviceId: "<id>",
304
+ extendPaths: [
305
+ {
306
+ path: "$.nested.property",
307
+ value: {
308
+ "TaxClassificationRef": {
309
+ "value": "EUC-99990201-V1-00020000",
310
+ },
311
+ },
312
+ },
313
+ ],
314
+ },
315
+ ],
316
+ },
317
+ });
318
+ expect(result.httpMeta.response.status).toBe(201);
319
+ expect(result.createPipelineResponse).toBeDefined();
320
+ expect(result.createPipelineResponse).toEqual({
321
+ statusCode: 200,
322
+ status: "OK",
323
+ service: "zoho-crm",
324
+ resource: "pipelines",
325
+ operation: "add",
326
+ data: {
327
+ id: "12345",
328
+ },
329
+ });
330
+ });
331
+
332
+ test("Pipelines Crm Pipelines One", async () => {
333
+ const testHttpClient = createTestHTTPClient("crm.pipelinesOne");
334
+
335
+ const apideck = new Apideck({
336
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
337
+ httpClient: testHttpClient,
338
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
339
+ });
340
+
341
+ const result = await apideck.crm.pipelines.get({
342
+ id: "<id>",
343
+ consumerId: "test-consumer",
344
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
345
+ serviceId: "salesforce",
346
+ fields: "id,updated_at",
347
+ });
348
+ expect(result.httpMeta.response.status).toBe(200);
349
+ expect(result.getPipelineResponse).toBeDefined();
350
+ expect(result.getPipelineResponse).toEqual({
351
+ statusCode: 200,
352
+ status: "OK",
353
+ service: "zoho-crm",
354
+ resource: "pipelines",
355
+ operation: "one",
356
+ data: {
357
+ id: "default",
358
+ name: "Sales Pipeline",
359
+ currency: "USD",
360
+ archived: false,
361
+ active: false,
362
+ displayOrder: 1,
363
+ winProbabilityEnabled: true,
364
+ stages: [
365
+ {
366
+ id: "contractsent",
367
+ name: "Contract Sent",
368
+ value: "CONTRACT_SENT",
369
+ winProbability: 50,
370
+ displayOrder: 1,
371
+ },
372
+ {
373
+ id: "contractsent",
374
+ name: "Contract Sent",
375
+ value: "CONTRACT_SENT",
376
+ winProbability: 50,
377
+ displayOrder: 1,
378
+ },
379
+ {
380
+ id: "contractsent",
381
+ name: "Contract Sent",
382
+ value: "CONTRACT_SENT",
383
+ winProbability: 50,
384
+ displayOrder: 1,
385
+ },
386
+ ],
387
+ updatedAt: new Date("2020-09-30T07:43:32.000Z"),
388
+ createdAt: new Date("2020-09-30T07:43:32.000Z"),
389
+ passThrough: [
390
+ {
391
+ serviceId: "<id>",
392
+ extendPaths: [
393
+ {
394
+ path: "$.nested.property",
395
+ value: {
396
+ "TaxClassificationRef": {
397
+ "value": "EUC-99990201-V1-00020000",
398
+ },
399
+ },
400
+ },
401
+ {
402
+ path: "$.nested.property",
403
+ value: {
404
+ "TaxClassificationRef": {
405
+ "value": "EUC-99990201-V1-00020000",
406
+ },
407
+ },
408
+ },
409
+ ],
410
+ },
411
+ {
412
+ serviceId: "<id>",
413
+ extendPaths: [
414
+ {
415
+ path: "$.nested.property",
416
+ value: {
417
+ "TaxClassificationRef": {
418
+ "value": "EUC-99990201-V1-00020000",
419
+ },
420
+ },
421
+ },
422
+ {
423
+ path: "$.nested.property",
424
+ value: {
425
+ "TaxClassificationRef": {
426
+ "value": "EUC-99990201-V1-00020000",
427
+ },
428
+ },
429
+ },
430
+ ],
431
+ },
432
+ ],
433
+ },
434
+ });
435
+ });
436
+
437
+ test("Pipelines Crm Pipelines Update", async () => {
438
+ const testHttpClient = createTestHTTPClient("crm.pipelinesUpdate");
439
+
440
+ const apideck = new Apideck({
441
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
442
+ httpClient: testHttpClient,
443
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
444
+ });
445
+
446
+ const result = await apideck.crm.pipelines.update({
447
+ id: "<id>",
448
+ consumerId: "test-consumer",
449
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
450
+ serviceId: "salesforce",
451
+ pipeline: {
452
+ id: "default",
453
+ name: "Sales Pipeline",
454
+ currency: "USD",
455
+ archived: false,
456
+ active: false,
457
+ displayOrder: 1,
458
+ winProbabilityEnabled: true,
459
+ stages: [
460
+ {
461
+ name: "Contract Sent",
462
+ value: "CONTRACT_SENT",
463
+ winProbability: 50,
464
+ displayOrder: 1,
465
+ },
466
+ {
467
+ name: "Contract Sent",
468
+ value: "CONTRACT_SENT",
469
+ winProbability: 50,
470
+ displayOrder: 1,
471
+ },
472
+ {
473
+ name: "Contract Sent",
474
+ value: "CONTRACT_SENT",
475
+ winProbability: 50,
476
+ displayOrder: 1,
477
+ },
478
+ ],
479
+ passThrough: [
480
+ {
481
+ serviceId: "<id>",
482
+ extendPaths: [
483
+ {
484
+ path: "$.nested.property",
485
+ value: {
486
+ "TaxClassificationRef": {
487
+ "value": "EUC-99990201-V1-00020000",
488
+ },
489
+ },
490
+ },
491
+ {
492
+ path: "$.nested.property",
493
+ value: {
494
+ "TaxClassificationRef": {
495
+ "value": "EUC-99990201-V1-00020000",
496
+ },
497
+ },
498
+ },
499
+ ],
500
+ },
501
+ {
502
+ serviceId: "<id>",
503
+ extendPaths: [
504
+ {
505
+ path: "$.nested.property",
506
+ value: {
507
+ "TaxClassificationRef": {
508
+ "value": "EUC-99990201-V1-00020000",
509
+ },
510
+ },
511
+ },
512
+ {
513
+ path: "$.nested.property",
514
+ value: {
515
+ "TaxClassificationRef": {
516
+ "value": "EUC-99990201-V1-00020000",
517
+ },
518
+ },
519
+ },
520
+ {
521
+ path: "$.nested.property",
522
+ value: {
523
+ "TaxClassificationRef": {
524
+ "value": "EUC-99990201-V1-00020000",
525
+ },
526
+ },
527
+ },
528
+ ],
529
+ },
530
+ ],
531
+ },
532
+ });
533
+ expect(result.httpMeta.response.status).toBe(200);
534
+ expect(result.updatePipelineResponse).toBeDefined();
535
+ expect(result.updatePipelineResponse).toEqual({
536
+ statusCode: 200,
537
+ status: "OK",
538
+ service: "zoho-crm",
539
+ resource: "pipelines",
540
+ operation: "update",
541
+ data: {
542
+ id: "12345",
543
+ },
544
+ });
545
+ });
546
+
547
+ test("Pipelines Crm Pipelines Delete", async () => {
548
+ const testHttpClient = createTestHTTPClient("crm.pipelinesDelete");
549
+
550
+ const apideck = new Apideck({
551
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
552
+ httpClient: testHttpClient,
553
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
554
+ });
555
+
556
+ const result = await apideck.crm.pipelines.delete({
557
+ id: "<id>",
558
+ consumerId: "test-consumer",
559
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
560
+ serviceId: "salesforce",
561
+ });
562
+ expect(result.httpMeta.response.status).toBe(200);
563
+ expect(result.deletePipelineResponse).toBeDefined();
564
+ expect(result.deletePipelineResponse).toEqual({
565
+ statusCode: 200,
566
+ status: "OK",
567
+ service: "zoho-crm",
568
+ resource: "companies",
569
+ operation: "delete",
570
+ data: {
571
+ id: "12345",
572
+ },
573
+ });
574
+ });