@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,487 @@
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("Drives File Storage Drives All", async () => {
10
+ const testHttpClient = createTestHTTPClient("fileStorage.drivesAll");
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.fileStorage.drives.list({
19
+ consumerId: "test-consumer",
20
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
21
+ serviceId: "salesforce",
22
+ filter: {
23
+ groupId: "1234",
24
+ },
25
+ fields: "id,updated_at",
26
+ });
27
+ expect(result.httpMeta.response.status).toBe(200);
28
+ expect(result.getDrivesResponse).toBeDefined();
29
+ expect(result.getDrivesResponse).toEqual({
30
+ statusCode: 200,
31
+ status: "OK",
32
+ service: "google-drive",
33
+ resource: "Drives",
34
+ operation: "all",
35
+ data: [
36
+ {
37
+ id: "12345",
38
+ name: "Project Resources",
39
+ description: "A description",
40
+ updatedBy: "12345",
41
+ createdBy: "12345",
42
+ updatedAt: new Date("2020-09-30T07:43:32.000Z"),
43
+ createdAt: new Date("2020-09-30T07:43:32.000Z"),
44
+ passThrough: [
45
+ {
46
+ serviceId: "<id>",
47
+ extendPaths: [
48
+ {
49
+ path: "$.nested.property",
50
+ value: {
51
+ "TaxClassificationRef": {
52
+ "value": "EUC-99990201-V1-00020000",
53
+ },
54
+ },
55
+ },
56
+ {
57
+ path: "$.nested.property",
58
+ value: {
59
+ "TaxClassificationRef": {
60
+ "value": "EUC-99990201-V1-00020000",
61
+ },
62
+ },
63
+ },
64
+ {
65
+ path: "$.nested.property",
66
+ value: {
67
+ "TaxClassificationRef": {
68
+ "value": "EUC-99990201-V1-00020000",
69
+ },
70
+ },
71
+ },
72
+ ],
73
+ },
74
+ {
75
+ serviceId: "<id>",
76
+ extendPaths: [
77
+ {
78
+ path: "$.nested.property",
79
+ value: {
80
+ "TaxClassificationRef": {
81
+ "value": "EUC-99990201-V1-00020000",
82
+ },
83
+ },
84
+ },
85
+ ],
86
+ },
87
+ ],
88
+ },
89
+ {
90
+ id: "12345",
91
+ name: "Project Resources",
92
+ description: "A description",
93
+ updatedBy: "12345",
94
+ createdBy: "12345",
95
+ updatedAt: new Date("2020-09-30T07:43:32.000Z"),
96
+ createdAt: new Date("2020-09-30T07:43:32.000Z"),
97
+ passThrough: [
98
+ {
99
+ serviceId: "<id>",
100
+ extendPaths: [
101
+ {
102
+ path: "$.nested.property",
103
+ value: {
104
+ "TaxClassificationRef": {
105
+ "value": "EUC-99990201-V1-00020000",
106
+ },
107
+ },
108
+ },
109
+ ],
110
+ },
111
+ ],
112
+ },
113
+ {
114
+ id: "12345",
115
+ name: "Project Resources",
116
+ description: "A description",
117
+ updatedBy: "12345",
118
+ createdBy: "12345",
119
+ updatedAt: new Date("2020-09-30T07:43:32.000Z"),
120
+ createdAt: new Date("2020-09-30T07:43:32.000Z"),
121
+ passThrough: [
122
+ {
123
+ serviceId: "<id>",
124
+ extendPaths: [
125
+ {
126
+ path: "$.nested.property",
127
+ value: {
128
+ "TaxClassificationRef": {
129
+ "value": "EUC-99990201-V1-00020000",
130
+ },
131
+ },
132
+ },
133
+ {
134
+ path: "$.nested.property",
135
+ value: {
136
+ "TaxClassificationRef": {
137
+ "value": "EUC-99990201-V1-00020000",
138
+ },
139
+ },
140
+ },
141
+ ],
142
+ },
143
+ {
144
+ serviceId: "<id>",
145
+ extendPaths: [
146
+ {
147
+ path: "$.nested.property",
148
+ value: {
149
+ "TaxClassificationRef": {
150
+ "value": "EUC-99990201-V1-00020000",
151
+ },
152
+ },
153
+ },
154
+ ],
155
+ },
156
+ ],
157
+ },
158
+ ],
159
+ meta: {
160
+ itemsOnPage: 50,
161
+ cursors: {
162
+ previous: "em9oby1jcm06OnBhZ2U6OjE=",
163
+ current: "em9oby1jcm06OnBhZ2U6OjI=",
164
+ next: "em9oby1jcm06OnBhZ2U6OjM=",
165
+ },
166
+ },
167
+ links: {
168
+ previous:
169
+ "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D",
170
+ current: "https://unify.apideck.com/crm/companies",
171
+ next:
172
+ "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM",
173
+ },
174
+ });
175
+ });
176
+
177
+ test("Drives File Storage Drives Add", async () => {
178
+ const testHttpClient = createTestHTTPClient("fileStorage.drivesAdd");
179
+
180
+ const apideck = new Apideck({
181
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
182
+ httpClient: testHttpClient,
183
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
184
+ });
185
+
186
+ const result = await apideck.fileStorage.drives.create({
187
+ consumerId: "test-consumer",
188
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
189
+ serviceId: "salesforce",
190
+ drive: {
191
+ name: "Project Resources",
192
+ description: "A description",
193
+ passThrough: [
194
+ {
195
+ serviceId: "<id>",
196
+ extendPaths: [
197
+ {
198
+ path: "$.nested.property",
199
+ value: {
200
+ "TaxClassificationRef": {
201
+ "value": "EUC-99990201-V1-00020000",
202
+ },
203
+ },
204
+ },
205
+ {
206
+ path: "$.nested.property",
207
+ value: {
208
+ "TaxClassificationRef": {
209
+ "value": "EUC-99990201-V1-00020000",
210
+ },
211
+ },
212
+ },
213
+ ],
214
+ },
215
+ {
216
+ serviceId: "<id>",
217
+ extendPaths: [
218
+ {
219
+ path: "$.nested.property",
220
+ value: {
221
+ "TaxClassificationRef": {
222
+ "value": "EUC-99990201-V1-00020000",
223
+ },
224
+ },
225
+ },
226
+ {
227
+ path: "$.nested.property",
228
+ value: {
229
+ "TaxClassificationRef": {
230
+ "value": "EUC-99990201-V1-00020000",
231
+ },
232
+ },
233
+ },
234
+ ],
235
+ },
236
+ ],
237
+ },
238
+ });
239
+ expect(result.httpMeta.response.status).toBe(201);
240
+ expect(result.createDriveResponse).toBeDefined();
241
+ expect(result.createDriveResponse).toEqual({
242
+ statusCode: 200,
243
+ status: "OK",
244
+ service: "google-drive",
245
+ resource: "Drives",
246
+ operation: "add",
247
+ data: {
248
+ id: "12345",
249
+ },
250
+ });
251
+ });
252
+
253
+ test("Drives File Storage Drives One", async () => {
254
+ const testHttpClient = createTestHTTPClient("fileStorage.drivesOne");
255
+
256
+ const apideck = new Apideck({
257
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
258
+ httpClient: testHttpClient,
259
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
260
+ });
261
+
262
+ const result = await apideck.fileStorage.drives.get({
263
+ id: "<id>",
264
+ consumerId: "test-consumer",
265
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
266
+ serviceId: "salesforce",
267
+ fields: "id,updated_at",
268
+ });
269
+ expect(result.httpMeta.response.status).toBe(200);
270
+ expect(result.getDriveResponse).toBeDefined();
271
+ expect(result.getDriveResponse).toEqual({
272
+ statusCode: 200,
273
+ status: "OK",
274
+ service: "google-drive",
275
+ resource: "Drives",
276
+ operation: "one",
277
+ data: {
278
+ id: "12345",
279
+ name: "Project Resources",
280
+ description: "A description",
281
+ updatedBy: "12345",
282
+ createdBy: "12345",
283
+ updatedAt: new Date("2020-09-30T07:43:32.000Z"),
284
+ createdAt: new Date("2020-09-30T07:43:32.000Z"),
285
+ passThrough: [
286
+ {
287
+ serviceId: "<id>",
288
+ extendPaths: [
289
+ {
290
+ path: "$.nested.property",
291
+ value: {
292
+ "TaxClassificationRef": {
293
+ "value": "EUC-99990201-V1-00020000",
294
+ },
295
+ },
296
+ },
297
+ {
298
+ path: "$.nested.property",
299
+ value: {
300
+ "TaxClassificationRef": {
301
+ "value": "EUC-99990201-V1-00020000",
302
+ },
303
+ },
304
+ },
305
+ ],
306
+ },
307
+ {
308
+ serviceId: "<id>",
309
+ extendPaths: [
310
+ {
311
+ path: "$.nested.property",
312
+ value: {
313
+ "TaxClassificationRef": {
314
+ "value": "EUC-99990201-V1-00020000",
315
+ },
316
+ },
317
+ },
318
+ {
319
+ path: "$.nested.property",
320
+ value: {
321
+ "TaxClassificationRef": {
322
+ "value": "EUC-99990201-V1-00020000",
323
+ },
324
+ },
325
+ },
326
+ ],
327
+ },
328
+ {
329
+ serviceId: "<id>",
330
+ extendPaths: [
331
+ {
332
+ path: "$.nested.property",
333
+ value: {
334
+ "TaxClassificationRef": {
335
+ "value": "EUC-99990201-V1-00020000",
336
+ },
337
+ },
338
+ },
339
+ {
340
+ path: "$.nested.property",
341
+ value: {
342
+ "TaxClassificationRef": {
343
+ "value": "EUC-99990201-V1-00020000",
344
+ },
345
+ },
346
+ },
347
+ ],
348
+ },
349
+ ],
350
+ },
351
+ });
352
+ });
353
+
354
+ test("Drives File Storage Drives Update", async () => {
355
+ const testHttpClient = createTestHTTPClient("fileStorage.drivesUpdate");
356
+
357
+ const apideck = new Apideck({
358
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
359
+ httpClient: testHttpClient,
360
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
361
+ });
362
+
363
+ const result = await apideck.fileStorage.drives.update({
364
+ id: "<id>",
365
+ consumerId: "test-consumer",
366
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
367
+ serviceId: "salesforce",
368
+ drive: {
369
+ name: "Project Resources",
370
+ description: "A description",
371
+ passThrough: [
372
+ {
373
+ serviceId: "<id>",
374
+ extendPaths: [
375
+ {
376
+ path: "$.nested.property",
377
+ value: {
378
+ "TaxClassificationRef": {
379
+ "value": "EUC-99990201-V1-00020000",
380
+ },
381
+ },
382
+ },
383
+ {
384
+ path: "$.nested.property",
385
+ value: {
386
+ "TaxClassificationRef": {
387
+ "value": "EUC-99990201-V1-00020000",
388
+ },
389
+ },
390
+ },
391
+ ],
392
+ },
393
+ {
394
+ serviceId: "<id>",
395
+ extendPaths: [
396
+ {
397
+ path: "$.nested.property",
398
+ value: {
399
+ "TaxClassificationRef": {
400
+ "value": "EUC-99990201-V1-00020000",
401
+ },
402
+ },
403
+ },
404
+ {
405
+ path: "$.nested.property",
406
+ value: {
407
+ "TaxClassificationRef": {
408
+ "value": "EUC-99990201-V1-00020000",
409
+ },
410
+ },
411
+ },
412
+ ],
413
+ },
414
+ {
415
+ serviceId: "<id>",
416
+ extendPaths: [
417
+ {
418
+ path: "$.nested.property",
419
+ value: {
420
+ "TaxClassificationRef": {
421
+ "value": "EUC-99990201-V1-00020000",
422
+ },
423
+ },
424
+ },
425
+ {
426
+ path: "$.nested.property",
427
+ value: {
428
+ "TaxClassificationRef": {
429
+ "value": "EUC-99990201-V1-00020000",
430
+ },
431
+ },
432
+ },
433
+ {
434
+ path: "$.nested.property",
435
+ value: {
436
+ "TaxClassificationRef": {
437
+ "value": "EUC-99990201-V1-00020000",
438
+ },
439
+ },
440
+ },
441
+ ],
442
+ },
443
+ ],
444
+ },
445
+ });
446
+ expect(result.httpMeta.response.status).toBe(200);
447
+ expect(result.updateDriveResponse).toBeDefined();
448
+ expect(result.updateDriveResponse).toEqual({
449
+ statusCode: 200,
450
+ status: "OK",
451
+ service: "google-drive",
452
+ resource: "Drives",
453
+ operation: "update",
454
+ data: {
455
+ id: "12345",
456
+ },
457
+ });
458
+ });
459
+
460
+ test("Drives File Storage Drives Delete", async () => {
461
+ const testHttpClient = createTestHTTPClient("fileStorage.drivesDelete");
462
+
463
+ const apideck = new Apideck({
464
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
465
+ httpClient: testHttpClient,
466
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
467
+ });
468
+
469
+ const result = await apideck.fileStorage.drives.delete({
470
+ id: "<id>",
471
+ consumerId: "test-consumer",
472
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
473
+ serviceId: "salesforce",
474
+ });
475
+ expect(result.httpMeta.response.status).toBe(200);
476
+ expect(result.deleteDriveResponse).toBeDefined();
477
+ expect(result.deleteDriveResponse).toEqual({
478
+ statusCode: 200,
479
+ status: "OK",
480
+ service: "google-drive",
481
+ resource: "Drives",
482
+ operation: "delete",
483
+ data: {
484
+ id: "12345",
485
+ },
486
+ });
487
+ });