@tellescope/sdk 1.236.1 → 1.236.2

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 (32) hide show
  1. package/lib/cjs/enduser.d.ts +20 -0
  2. package/lib/cjs/enduser.d.ts.map +1 -1
  3. package/lib/cjs/sdk.d.ts +42 -0
  4. package/lib/cjs/sdk.d.ts.map +1 -1
  5. package/lib/cjs/sdk.js +1 -0
  6. package/lib/cjs/sdk.js.map +1 -1
  7. package/lib/cjs/tests/api_tests/auto_merge_form_submission.test.d.ts +9 -0
  8. package/lib/cjs/tests/api_tests/auto_merge_form_submission.test.d.ts.map +1 -0
  9. package/lib/cjs/tests/api_tests/auto_merge_form_submission.test.js +1399 -0
  10. package/lib/cjs/tests/api_tests/auto_merge_form_submission.test.js.map +1 -0
  11. package/lib/cjs/tests/tests.d.ts.map +1 -1
  12. package/lib/cjs/tests/tests.js +111 -106
  13. package/lib/cjs/tests/tests.js.map +1 -1
  14. package/lib/esm/enduser.d.ts +20 -0
  15. package/lib/esm/enduser.d.ts.map +1 -1
  16. package/lib/esm/sdk.d.ts +42 -0
  17. package/lib/esm/sdk.d.ts.map +1 -1
  18. package/lib/esm/sdk.js +1 -0
  19. package/lib/esm/sdk.js.map +1 -1
  20. package/lib/esm/tests/api_tests/auto_merge_form_submission.test.d.ts +9 -0
  21. package/lib/esm/tests/api_tests/auto_merge_form_submission.test.d.ts.map +1 -0
  22. package/lib/esm/tests/api_tests/auto_merge_form_submission.test.js +1372 -0
  23. package/lib/esm/tests/api_tests/auto_merge_form_submission.test.js.map +1 -0
  24. package/lib/esm/tests/tests.d.ts.map +1 -1
  25. package/lib/esm/tests/tests.js +111 -106
  26. package/lib/esm/tests/tests.js.map +1 -1
  27. package/lib/tsconfig.tsbuildinfo +1 -1
  28. package/package.json +10 -10
  29. package/src/sdk.ts +2 -1
  30. package/src/tests/api_tests/auto_merge_form_submission.test.ts +876 -0
  31. package/src/tests/tests.ts +4 -1
  32. package/test_generated.pdf +0 -0
@@ -75,6 +75,7 @@ import { calendar_event_limits_tests } from "./api_tests/calendar_event_limits.t
75
75
  import { custom_aggregation_tests } from "./api_tests/custom_aggregation.test";
76
76
  import { bulk_assignment_tests } from "./api_tests/bulk_assignment.test";
77
77
  import { managed_content_enduser_access_tests } from "./api_tests/managed_content_enduser_access.test";
78
+ import { auto_merge_form_submission_tests } from "./api_tests/auto_merge_form_submission.test";
78
79
 
79
80
  const UniquenessViolationMessage = 'Uniqueness Violation'
80
81
 
@@ -9015,6 +9016,7 @@ const tests: { [K in keyof ClientModelForName]: () => void } = {
9015
9016
  enduser_encounters: NO_TEST,
9016
9017
  enduser_orders: enduser_orders_tests,
9017
9018
  ticket_queues: NO_TEST,
9019
+ ticket_templates: NO_TEST,
9018
9020
  phone_trees: NO_TEST,
9019
9021
  enduser_medications: NO_TEST,
9020
9022
  automation_triggers: NO_TEST,
@@ -13171,6 +13173,8 @@ const ip_address_form_tests = async () => {
13171
13173
  await replace_enduser_template_values_tests()
13172
13174
  await mfa_tests()
13173
13175
  await setup_tests(sdk, sdkNonAdmin)
13176
+ await auto_merge_form_submission_tests({ sdk, sdkNonAdmin })
13177
+ await threadKeyTests()
13174
13178
  await automation_trigger_tests()
13175
13179
  await managed_content_enduser_access_tests({ sdk, sdkNonAdmin })
13176
13180
  await afteraction_day_of_month_delay_tests({ sdk, sdkNonAdmin })
@@ -13247,7 +13251,6 @@ const ip_address_form_tests = async () => {
13247
13251
  await badInputTests()
13248
13252
  await filterTests()
13249
13253
  await updatesTests()
13250
- await threadKeyTests()
13251
13254
  } catch(err: any) {
13252
13255
  console.error("Failed during custom test")
13253
13256
  if (err.message && err.info) {
Binary file