@apideck/unify 0.26.0 → 0.28.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 (142) hide show
  1. package/README.md +5 -5
  2. package/docs/sdks/companies/README.md +4 -4
  3. package/examples/README.md +26 -0
  4. package/examples/accountingTaxRatesList.example.ts +41 -0
  5. package/examples/package-lock.json +613 -0
  6. package/examples/package.json +18 -0
  7. package/funcs/crmCompaniesCreate.js +1 -1
  8. package/funcs/crmCompaniesCreate.js.map +1 -1
  9. package/funcs/crmCompaniesUpdate.js +1 -1
  10. package/funcs/crmCompaniesUpdate.js.map +1 -1
  11. package/jsr.json +1 -1
  12. package/lib/config.d.ts +4 -4
  13. package/lib/config.js +4 -4
  14. package/models/components/bankaccount.d.ts +5 -0
  15. package/models/components/bankaccount.d.ts.map +1 -1
  16. package/models/components/bankaccount.js +2 -0
  17. package/models/components/bankaccount.js.map +1 -1
  18. package/models/components/bankaccount1.d.ts +123 -0
  19. package/models/components/bankaccount1.d.ts.map +1 -0
  20. package/models/components/bankaccount1.js +128 -0
  21. package/models/components/bankaccount1.js.map +1 -0
  22. package/models/components/{company.d.ts → company1.d.ts} +32 -32
  23. package/models/components/company1.d.ts.map +1 -0
  24. package/models/components/{company.js → company1.js} +37 -37
  25. package/models/components/company1.js.map +1 -0
  26. package/models/components/companyinfo.d.ts +5 -0
  27. package/models/components/companyinfo.d.ts.map +1 -1
  28. package/models/components/companyinfo.js +4 -0
  29. package/models/components/companyinfo.js.map +1 -1
  30. package/models/components/getcompaniesresponse.d.ts +3 -3
  31. package/models/components/getcompaniesresponse.d.ts.map +1 -1
  32. package/models/components/getcompaniesresponse.js +3 -3
  33. package/models/components/getcompaniesresponse.js.map +1 -1
  34. package/models/components/getcompanyresponse.d.ts +3 -3
  35. package/models/components/getcompanyresponse.d.ts.map +1 -1
  36. package/models/components/getcompanyresponse.js +3 -3
  37. package/models/components/getcompanyresponse.js.map +1 -1
  38. package/models/components/index.d.ts +2 -1
  39. package/models/components/index.d.ts.map +1 -1
  40. package/models/components/index.js +2 -1
  41. package/models/components/index.js.map +1 -1
  42. package/models/components/ledgeraccount.d.ts +9 -9
  43. package/models/components/ledgeraccount.d.ts.map +1 -1
  44. package/models/components/ledgeraccount.js +19 -15
  45. package/models/components/ledgeraccount.js.map +1 -1
  46. package/models/components/ledgeraccountsfilter.d.ts +61 -0
  47. package/models/components/ledgeraccountsfilter.d.ts.map +1 -1
  48. package/models/components/ledgeraccountsfilter.js +33 -1
  49. package/models/components/ledgeraccountsfilter.js.map +1 -1
  50. package/models/components/supplier.d.ts +10 -0
  51. package/models/components/supplier.d.ts.map +1 -1
  52. package/models/components/supplier.js +4 -0
  53. package/models/components/supplier.js.map +1 -1
  54. package/models/errors/apierror.d.ts.map +1 -1
  55. package/models/errors/apierror.js +8 -2
  56. package/models/errors/apierror.js.map +1 -1
  57. package/models/errors/badrequestresponse.js +1 -1
  58. package/models/errors/badrequestresponse.js.map +1 -1
  59. package/models/errors/notfoundresponse.js +1 -1
  60. package/models/errors/notfoundresponse.js.map +1 -1
  61. package/models/errors/paymentrequiredresponse.js +1 -1
  62. package/models/errors/paymentrequiredresponse.js.map +1 -1
  63. package/models/errors/unauthorizedresponse.js +1 -1
  64. package/models/errors/unauthorizedresponse.js.map +1 -1
  65. package/models/errors/unprocessableresponse.js +1 -1
  66. package/models/errors/unprocessableresponse.js.map +1 -1
  67. package/models/operations/crmcompaniesadd.d.ts +2 -2
  68. package/models/operations/crmcompaniesadd.d.ts.map +1 -1
  69. package/models/operations/crmcompaniesadd.js +4 -4
  70. package/models/operations/crmcompaniesadd.js.map +1 -1
  71. package/models/operations/crmcompaniesupdate.d.ts +2 -2
  72. package/models/operations/crmcompaniesupdate.d.ts.map +1 -1
  73. package/models/operations/crmcompaniesupdate.js +4 -4
  74. package/models/operations/crmcompaniesupdate.js.map +1 -1
  75. package/package.json +1 -1
  76. package/src/__tests__/activities.test.ts +360 -9
  77. package/src/__tests__/apideckcompanies.test.ts +373 -9
  78. package/src/__tests__/apideckdepartments.test.ts +181 -9
  79. package/src/__tests__/applicants.test.ts +473 -9
  80. package/src/__tests__/applications.test.ts +189 -9
  81. package/src/__tests__/billpayments.test.ts +367 -9
  82. package/src/__tests__/bills.test.ts +500 -9
  83. package/src/__tests__/collectionticketcomments.test.ts +183 -7
  84. package/src/__tests__/collectiontickets.test.ts +191 -7
  85. package/src/__tests__/companies.test.ts +538 -9
  86. package/src/__tests__/connections.test.ts +409 -5
  87. package/src/__tests__/connectionsettings.test.ts +410 -5
  88. package/src/__tests__/contacts.test.ts +466 -9
  89. package/src/__tests__/creditnotes.test.ts +758 -87
  90. package/src/__tests__/customers.test.ts +513 -9
  91. package/src/__tests__/customobjects.test.ts +150 -9
  92. package/src/__tests__/customobjectschemas.test.ts +321 -9
  93. package/src/__tests__/departments.test.ts +173 -9
  94. package/src/__tests__/drivegroups.test.ts +181 -9
  95. package/src/__tests__/drives.test.ts +179 -9
  96. package/src/__tests__/employees.test.ts +829 -94
  97. package/src/__tests__/expenses.test.ts +332 -9
  98. package/src/__tests__/files.test.ts +106 -5
  99. package/src/__tests__/folders.test.ts +296 -13
  100. package/src/__tests__/invoiceitems.test.ts +272 -9
  101. package/src/__tests__/invoices.test.ts +673 -67
  102. package/src/__tests__/journalentries.test.ts +490 -8
  103. package/src/__tests__/leads.test.ts +446 -9
  104. package/src/__tests__/ledgeraccounts.test.ts +237 -8
  105. package/src/__tests__/locations.test.ts +298 -9
  106. package/src/__tests__/messages.test.ts +195 -9
  107. package/src/__tests__/notes.test.ts +191 -9
  108. package/src/__tests__/opportunities.test.ts +218 -9
  109. package/src/__tests__/payments.test.ts +312 -9
  110. package/src/__tests__/pipelines.test.ts +194 -9
  111. package/src/__tests__/purchaseorders.test.ts +773 -104
  112. package/src/__tests__/sharedlinks.test.ts +183 -9
  113. package/src/__tests__/subsidiaries.test.ts +183 -9
  114. package/src/__tests__/suppliers.test.ts +505 -9
  115. package/src/__tests__/taxrates.test.ts +232 -9
  116. package/src/__tests__/timeoffrequests.test.ts +210 -9
  117. package/src/__tests__/trackingcategories.test.ts +187 -7
  118. package/src/__tests__/uploadsessions.test.ts +78 -5
  119. package/src/__tests__/users.test.ts +356 -9
  120. package/src/funcs/crmCompaniesCreate.ts +1 -1
  121. package/src/funcs/crmCompaniesUpdate.ts +1 -1
  122. package/src/lib/config.ts +4 -4
  123. package/src/models/components/bankaccount.ts +7 -0
  124. package/src/models/components/bankaccount1.ts +207 -0
  125. package/src/models/components/{company.ts → company1.ts} +131 -128
  126. package/src/models/components/companyinfo.ts +9 -0
  127. package/src/models/components/getcompaniesresponse.ts +9 -9
  128. package/src/models/components/getcompanyresponse.ts +9 -9
  129. package/src/models/components/index.ts +2 -1
  130. package/src/models/components/ledgeraccount.ts +25 -19
  131. package/src/models/components/ledgeraccountsfilter.ts +49 -0
  132. package/src/models/components/supplier.ts +14 -0
  133. package/src/models/errors/apierror.ts +8 -2
  134. package/src/models/errors/badrequestresponse.ts +1 -1
  135. package/src/models/errors/notfoundresponse.ts +1 -1
  136. package/src/models/errors/paymentrequiredresponse.ts +1 -1
  137. package/src/models/errors/unauthorizedresponse.ts +1 -1
  138. package/src/models/errors/unprocessableresponse.ts +1 -1
  139. package/src/models/operations/crmcompaniesadd.ts +6 -6
  140. package/src/models/operations/crmcompaniesupdate.ts +6 -6
  141. package/models/components/company.d.ts.map +0 -1
  142. package/models/components/company.js.map +0 -1
@@ -2,7 +2,7 @@
2
2
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
3
  */
4
4
 
5
- import { assert, expect, it, test } from "vitest";
5
+ import { expect, test } from "vitest";
6
6
  import { Apideck } from "../index.js";
7
7
  import { createTestHTTPClient } from "./testclient.js";
8
8
 
@@ -188,10 +188,85 @@ test("Applications Ats Applications All", async () => {
188
188
  });
189
189
  });
190
190
 
191
- it.skip("Applications Ats Applications Add", async () => {
192
- assert.fail(
193
- "incomplete test found please make sure to address the following errors: [`workflow step ats.applicationsAdd.test referencing operation ats.applicationsAdd with expression in requestBody with type not currently supported`, `workflow step ats.applicationsAdd.test referencing operation ats.applicationsAdd with expression in requestBody with type not currently supported`, `workflow step ats.applicationsAdd.test referencing operation ats.applicationsAdd with expression in requestBody with type not currently supported`, `workflow step ats.applicationsAdd.test referencing operation ats.applicationsAdd with expression in requestBody with type not currently supported`]",
194
- );
191
+ test("Applications Ats Applications Add", async () => {
192
+ const testHttpClient = createTestHTTPClient("ats.applicationsAdd");
193
+
194
+ const apideck = new Apideck({
195
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
196
+ httpClient: testHttpClient,
197
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
198
+ });
199
+
200
+ const result = await apideck.ats.applications.create({
201
+ consumerId: "test-consumer",
202
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
203
+ serviceId: "salesforce",
204
+ application: {
205
+ applicantId: "12345",
206
+ jobId: "12345",
207
+ status: "open",
208
+ stage: {
209
+ id: "12345",
210
+ name: "12345",
211
+ },
212
+ passThrough: [
213
+ {
214
+ serviceId: "<id>",
215
+ extendPaths: [
216
+ {
217
+ path: "$.nested.property",
218
+ value: {
219
+ "TaxClassificationRef": {
220
+ "value": "EUC-99990201-V1-00020000",
221
+ },
222
+ },
223
+ },
224
+ {
225
+ path: "$.nested.property",
226
+ value: {
227
+ "TaxClassificationRef": {
228
+ "value": "EUC-99990201-V1-00020000",
229
+ },
230
+ },
231
+ },
232
+ ],
233
+ },
234
+ {
235
+ serviceId: "<id>",
236
+ extendPaths: [
237
+ {
238
+ path: "$.nested.property",
239
+ value: {
240
+ "TaxClassificationRef": {
241
+ "value": "EUC-99990201-V1-00020000",
242
+ },
243
+ },
244
+ },
245
+ {
246
+ path: "$.nested.property",
247
+ value: {
248
+ "TaxClassificationRef": {
249
+ "value": "EUC-99990201-V1-00020000",
250
+ },
251
+ },
252
+ },
253
+ ],
254
+ },
255
+ ],
256
+ },
257
+ });
258
+ expect(result.httpMeta.response.status).toBe(201);
259
+ expect(result.createApplicationResponse).toBeDefined();
260
+ expect(result.createApplicationResponse).toEqual({
261
+ statusCode: 200,
262
+ status: "OK",
263
+ service: "sap-successfactors",
264
+ resource: "Applications",
265
+ operation: "add",
266
+ data: {
267
+ id: "12345",
268
+ },
269
+ });
195
270
  });
196
271
 
197
272
  test("Applications Ats Applications One", async () => {
@@ -299,10 +374,115 @@ test("Applications Ats Applications One", async () => {
299
374
  });
300
375
  });
301
376
 
302
- it.skip("Applications Ats Applications Update", async () => {
303
- assert.fail(
304
- "incomplete test found please make sure to address the following errors: [`workflow step ats.applicationsUpdate.test referencing operation ats.applicationsUpdate with expression in requestBody with type not currently supported`, `workflow step ats.applicationsUpdate.test referencing operation ats.applicationsUpdate with expression in requestBody with type not currently supported`, `workflow step ats.applicationsUpdate.test referencing operation ats.applicationsUpdate with expression in requestBody with type not currently supported`, `workflow step ats.applicationsUpdate.test referencing operation ats.applicationsUpdate with expression in requestBody with type not currently supported`, `workflow step ats.applicationsUpdate.test referencing operation ats.applicationsUpdate with expression in requestBody with type not currently supported`, `workflow step ats.applicationsUpdate.test referencing operation ats.applicationsUpdate with expression in requestBody with type not currently supported`, `workflow step ats.applicationsUpdate.test referencing operation ats.applicationsUpdate with expression in requestBody with type not currently supported`]",
305
- );
377
+ test("Applications Ats Applications Update", async () => {
378
+ const testHttpClient = createTestHTTPClient("ats.applicationsUpdate");
379
+
380
+ const apideck = new Apideck({
381
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
382
+ httpClient: testHttpClient,
383
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
384
+ });
385
+
386
+ const result = await apideck.ats.applications.update({
387
+ id: "<id>",
388
+ consumerId: "test-consumer",
389
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
390
+ serviceId: "salesforce",
391
+ application: {
392
+ applicantId: "12345",
393
+ jobId: "12345",
394
+ status: "open",
395
+ stage: {
396
+ id: "12345",
397
+ name: "12345",
398
+ },
399
+ passThrough: [
400
+ {
401
+ serviceId: "<id>",
402
+ extendPaths: [
403
+ {
404
+ path: "$.nested.property",
405
+ value: {
406
+ "TaxClassificationRef": {
407
+ "value": "EUC-99990201-V1-00020000",
408
+ },
409
+ },
410
+ },
411
+ {
412
+ path: "$.nested.property",
413
+ value: {
414
+ "TaxClassificationRef": {
415
+ "value": "EUC-99990201-V1-00020000",
416
+ },
417
+ },
418
+ },
419
+ ],
420
+ },
421
+ {
422
+ serviceId: "<id>",
423
+ extendPaths: [
424
+ {
425
+ path: "$.nested.property",
426
+ value: {
427
+ "TaxClassificationRef": {
428
+ "value": "EUC-99990201-V1-00020000",
429
+ },
430
+ },
431
+ },
432
+ {
433
+ path: "$.nested.property",
434
+ value: {
435
+ "TaxClassificationRef": {
436
+ "value": "EUC-99990201-V1-00020000",
437
+ },
438
+ },
439
+ },
440
+ ],
441
+ },
442
+ {
443
+ serviceId: "<id>",
444
+ extendPaths: [
445
+ {
446
+ path: "$.nested.property",
447
+ value: {
448
+ "TaxClassificationRef": {
449
+ "value": "EUC-99990201-V1-00020000",
450
+ },
451
+ },
452
+ },
453
+ {
454
+ path: "$.nested.property",
455
+ value: {
456
+ "TaxClassificationRef": {
457
+ "value": "EUC-99990201-V1-00020000",
458
+ },
459
+ },
460
+ },
461
+ {
462
+ path: "$.nested.property",
463
+ value: {
464
+ "TaxClassificationRef": {
465
+ "value": "EUC-99990201-V1-00020000",
466
+ },
467
+ },
468
+ },
469
+ ],
470
+ },
471
+ ],
472
+ },
473
+ });
474
+ expect(result.httpMeta.response.status).toBe(200);
475
+ expect(result.updateApplicationResponse).toBeDefined();
476
+ expect(result.updateApplicationResponse).toEqual({
477
+ statusCode: 200,
478
+ status: "OK",
479
+ service: "sap-successfactors",
480
+ resource: "Applications",
481
+ operation: "update",
482
+ data: {
483
+ id: "12345",
484
+ },
485
+ });
306
486
  });
307
487
 
308
488
  test("Applications Ats Applications Delete", async () => {
@@ -2,7 +2,7 @@
2
2
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
3
  */
4
4
 
5
- import { assert, expect, it, test } from "vitest";
5
+ import { expect, test } from "vitest";
6
6
  import { Apideck } from "../index.js";
7
7
  import { createTestHTTPClient } from "./testclient.js";
8
8
 
@@ -465,10 +465,180 @@ test("Billpayments Accounting Bill Payments All", async () => {
465
465
  });
466
466
  });
467
467
 
468
- it.skip("Billpayments Accounting Bill Payments Add", async () => {
469
- assert.fail(
470
- "incomplete test found please make sure to address the following errors: [`workflow step accounting.billPaymentsAdd.test referencing operation accounting.billPaymentsAdd with expression in requestBody with type not currently supported`, `workflow step accounting.billPaymentsAdd.test referencing operation accounting.billPaymentsAdd with expression in requestBody with type not currently supported`, `workflow step accounting.billPaymentsAdd.test referencing operation accounting.billPaymentsAdd with expression in requestBody with type not currently supported`, `workflow step accounting.billPaymentsAdd.test referencing operation accounting.billPaymentsAdd with expression in requestBody with type not currently supported`, `workflow step accounting.billPaymentsAdd.test referencing operation accounting.billPaymentsAdd with expression in requestBody with type not currently supported`]",
471
- );
468
+ test("Billpayments Accounting Bill Payments Add", async () => {
469
+ const testHttpClient = createTestHTTPClient("accounting.billPaymentsAdd");
470
+
471
+ const apideck = new Apideck({
472
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
473
+ httpClient: testHttpClient,
474
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
475
+ });
476
+
477
+ const result = await apideck.accounting.billPayments.create({
478
+ consumerId: "test-consumer",
479
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
480
+ serviceId: "salesforce",
481
+ billPayment: {
482
+ currency: "USD",
483
+ currencyRate: 0.69,
484
+ totalAmount: 49.99,
485
+ reference: "123456",
486
+ paymentMethod: "cash",
487
+ paymentMethodReference: "123456",
488
+ paymentMethodId: "12345",
489
+ account: {
490
+ id: "123456",
491
+ nominalCode: "N091",
492
+ code: "453",
493
+ },
494
+ transactionDate: new Date("2021-05-01T12:00:00.000Z"),
495
+ supplier: {
496
+ id: "12345",
497
+ displayName: "Windsurf Shop",
498
+ address: {
499
+ id: "123",
500
+ type: "primary",
501
+ string: "25 Spring Street, Blackburn, VIC 3130",
502
+ name: "HQ US",
503
+ line1: "Main street",
504
+ line2: "apt #",
505
+ line3: "Suite #",
506
+ line4: "delivery instructions",
507
+ streetNumber: "25",
508
+ city: "San Francisco",
509
+ state: "CA",
510
+ postalCode: "94104",
511
+ country: "US",
512
+ latitude: "40.759211",
513
+ longitude: "-73.984638",
514
+ county: "Santa Clara",
515
+ contactName: "Elon Musk",
516
+ salutation: "Mr",
517
+ phoneNumber: "111-111-1111",
518
+ fax: "122-111-1111",
519
+ email: "elon@musk.com",
520
+ website: "https://elonmusk.com",
521
+ notes: "Address notes or delivery instructions.",
522
+ rowVersion: "1-12345",
523
+ },
524
+ },
525
+ companyId: "12345",
526
+ reconciled: true,
527
+ status: "authorised",
528
+ type: "accounts_payable",
529
+ allocations: [
530
+ {
531
+ id: "12345",
532
+ type: "bill",
533
+ amount: 49.99,
534
+ allocationId: "123456",
535
+ },
536
+ {
537
+ id: "12345",
538
+ type: "bill",
539
+ amount: 49.99,
540
+ allocationId: "123456",
541
+ },
542
+ ],
543
+ note: "Some notes about this transaction",
544
+ number: "123456",
545
+ trackingCategories: [
546
+ {
547
+ id: "123456",
548
+ name: "New York",
549
+ },
550
+ {
551
+ id: "123456",
552
+ name: "New York",
553
+ },
554
+ ],
555
+ customFields: [
556
+ {
557
+ id: "2389328923893298",
558
+ name: "employee_level",
559
+ description: "Employee Level",
560
+ value: "Uses Salesforce and Marketo",
561
+ },
562
+ {
563
+ id: "2389328923893298",
564
+ name: "employee_level",
565
+ description: "Employee Level",
566
+ value: "Uses Salesforce and Marketo",
567
+ },
568
+ ],
569
+ rowVersion: "1-12345",
570
+ displayId: "123456",
571
+ passThrough: [
572
+ {
573
+ serviceId: "<id>",
574
+ extendPaths: [
575
+ {
576
+ path: "$.nested.property",
577
+ value: {
578
+ "TaxClassificationRef": {
579
+ "value": "EUC-99990201-V1-00020000",
580
+ },
581
+ },
582
+ },
583
+ {
584
+ path: "$.nested.property",
585
+ value: {
586
+ "TaxClassificationRef": {
587
+ "value": "EUC-99990201-V1-00020000",
588
+ },
589
+ },
590
+ },
591
+ {
592
+ path: "$.nested.property",
593
+ value: {
594
+ "TaxClassificationRef": {
595
+ "value": "EUC-99990201-V1-00020000",
596
+ },
597
+ },
598
+ },
599
+ ],
600
+ },
601
+ {
602
+ serviceId: "<id>",
603
+ extendPaths: [
604
+ {
605
+ path: "$.nested.property",
606
+ value: {
607
+ "TaxClassificationRef": {
608
+ "value": "EUC-99990201-V1-00020000",
609
+ },
610
+ },
611
+ },
612
+ ],
613
+ },
614
+ {
615
+ serviceId: "<id>",
616
+ extendPaths: [
617
+ {
618
+ path: "$.nested.property",
619
+ value: {
620
+ "TaxClassificationRef": {
621
+ "value": "EUC-99990201-V1-00020000",
622
+ },
623
+ },
624
+ },
625
+ ],
626
+ },
627
+ ],
628
+ },
629
+ });
630
+ expect(result.httpMeta.response.status).toBe(201);
631
+ expect(result.createBillPaymentResponse).toBeDefined();
632
+ expect(result.createBillPaymentResponse).toEqual({
633
+ statusCode: 200,
634
+ status: "OK",
635
+ service: "xero",
636
+ resource: "payments",
637
+ operation: "add",
638
+ data: {
639
+ id: "12345",
640
+ },
641
+ });
472
642
  });
473
643
 
474
644
  test("Billpayments Accounting Bill Payments One", async () => {
@@ -637,10 +807,198 @@ test("Billpayments Accounting Bill Payments One", async () => {
637
807
  });
638
808
  });
639
809
 
640
- it.skip("Billpayments Accounting Bill Payments Update", async () => {
641
- assert.fail(
642
- "incomplete test found please make sure to address the following errors: [`workflow step accounting.billPaymentsUpdate.test referencing operation accounting.billPaymentsUpdate with expression in requestBody with type not currently supported`, `workflow step accounting.billPaymentsUpdate.test referencing operation accounting.billPaymentsUpdate with expression in requestBody with type not currently supported`, `workflow step accounting.billPaymentsUpdate.test referencing operation accounting.billPaymentsUpdate with expression in requestBody with type not currently supported`, `workflow step accounting.billPaymentsUpdate.test referencing operation accounting.billPaymentsUpdate with expression in requestBody with type not currently supported`, `workflow step accounting.billPaymentsUpdate.test referencing operation accounting.billPaymentsUpdate with expression in requestBody with type not currently supported`, `workflow step accounting.billPaymentsUpdate.test referencing operation accounting.billPaymentsUpdate with expression in requestBody with type not currently supported`]",
643
- );
810
+ test("Billpayments Accounting Bill Payments Update", async () => {
811
+ const testHttpClient = createTestHTTPClient("accounting.billPaymentsUpdate");
812
+
813
+ const apideck = new Apideck({
814
+ serverURL: process.env["TEST_SERVER_URL"] ?? "http://localhost:18080",
815
+ httpClient: testHttpClient,
816
+ apiKey: process.env["APIDECK_API_KEY"] ?? "value",
817
+ });
818
+
819
+ const result = await apideck.accounting.billPayments.update({
820
+ id: "<id>",
821
+ consumerId: "test-consumer",
822
+ appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
823
+ serviceId: "salesforce",
824
+ billPayment: {
825
+ currency: "USD",
826
+ currencyRate: 0.69,
827
+ totalAmount: 49.99,
828
+ reference: "123456",
829
+ paymentMethod: "cash",
830
+ paymentMethodReference: "123456",
831
+ paymentMethodId: "12345",
832
+ account: {
833
+ id: "123456",
834
+ nominalCode: "N091",
835
+ code: "453",
836
+ },
837
+ transactionDate: new Date("2021-05-01T12:00:00.000Z"),
838
+ supplier: {
839
+ id: "12345",
840
+ displayName: "Windsurf Shop",
841
+ address: {
842
+ id: "123",
843
+ type: "primary",
844
+ string: "25 Spring Street, Blackburn, VIC 3130",
845
+ name: "HQ US",
846
+ line1: "Main street",
847
+ line2: "apt #",
848
+ line3: "Suite #",
849
+ line4: "delivery instructions",
850
+ streetNumber: "25",
851
+ city: "San Francisco",
852
+ state: "CA",
853
+ postalCode: "94104",
854
+ country: "US",
855
+ latitude: "40.759211",
856
+ longitude: "-73.984638",
857
+ county: "Santa Clara",
858
+ contactName: "Elon Musk",
859
+ salutation: "Mr",
860
+ phoneNumber: "111-111-1111",
861
+ fax: "122-111-1111",
862
+ email: "elon@musk.com",
863
+ website: "https://elonmusk.com",
864
+ notes: "Address notes or delivery instructions.",
865
+ rowVersion: "1-12345",
866
+ },
867
+ },
868
+ companyId: "12345",
869
+ reconciled: true,
870
+ status: "authorised",
871
+ type: "accounts_payable",
872
+ allocations: [
873
+ {
874
+ id: "12345",
875
+ type: "bill",
876
+ amount: 49.99,
877
+ allocationId: "123456",
878
+ },
879
+ {
880
+ id: "12345",
881
+ type: "bill",
882
+ amount: 49.99,
883
+ allocationId: "123456",
884
+ },
885
+ {
886
+ id: "12345",
887
+ type: "bill",
888
+ amount: 49.99,
889
+ allocationId: "123456",
890
+ },
891
+ ],
892
+ note: "Some notes about this transaction",
893
+ number: "123456",
894
+ trackingCategories: [
895
+ {
896
+ id: "123456",
897
+ name: "New York",
898
+ },
899
+ {
900
+ id: "123456",
901
+ name: "New York",
902
+ },
903
+ ],
904
+ customFields: [
905
+ {
906
+ id: "2389328923893298",
907
+ name: "employee_level",
908
+ description: "Employee Level",
909
+ value: [
910
+ {},
911
+ {},
912
+ ],
913
+ },
914
+ {
915
+ id: "2389328923893298",
916
+ name: "employee_level",
917
+ description: "Employee Level",
918
+ value: true,
919
+ },
920
+ ],
921
+ rowVersion: "1-12345",
922
+ displayId: "123456",
923
+ passThrough: [
924
+ {
925
+ serviceId: "<id>",
926
+ extendPaths: [
927
+ {
928
+ path: "$.nested.property",
929
+ value: {
930
+ "TaxClassificationRef": {
931
+ "value": "EUC-99990201-V1-00020000",
932
+ },
933
+ },
934
+ },
935
+ ],
936
+ },
937
+ {
938
+ serviceId: "<id>",
939
+ extendPaths: [
940
+ {
941
+ path: "$.nested.property",
942
+ value: {
943
+ "TaxClassificationRef": {
944
+ "value": "EUC-99990201-V1-00020000",
945
+ },
946
+ },
947
+ },
948
+ {
949
+ path: "$.nested.property",
950
+ value: {
951
+ "TaxClassificationRef": {
952
+ "value": "EUC-99990201-V1-00020000",
953
+ },
954
+ },
955
+ },
956
+ {
957
+ path: "$.nested.property",
958
+ value: {
959
+ "TaxClassificationRef": {
960
+ "value": "EUC-99990201-V1-00020000",
961
+ },
962
+ },
963
+ },
964
+ ],
965
+ },
966
+ {
967
+ serviceId: "<id>",
968
+ extendPaths: [
969
+ {
970
+ path: "$.nested.property",
971
+ value: {
972
+ "TaxClassificationRef": {
973
+ "value": "EUC-99990201-V1-00020000",
974
+ },
975
+ },
976
+ },
977
+ {
978
+ path: "$.nested.property",
979
+ value: {
980
+ "TaxClassificationRef": {
981
+ "value": "EUC-99990201-V1-00020000",
982
+ },
983
+ },
984
+ },
985
+ ],
986
+ },
987
+ ],
988
+ },
989
+ });
990
+ expect(result.httpMeta.response.status).toBe(200);
991
+ expect(result.updateBillPaymentResponse).toBeDefined();
992
+ expect(result.updateBillPaymentResponse).toEqual({
993
+ statusCode: 200,
994
+ status: "OK",
995
+ service: "xero",
996
+ resource: "payments",
997
+ operation: "update",
998
+ data: {
999
+ id: "12345",
1000
+ },
1001
+ });
644
1002
  });
645
1003
 
646
1004
  test("Billpayments Accounting Bill Payments Delete", async () => {