traitify-widgets 1.10.1 → 1.12.0-alpha.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.
package/README.md CHANGED
@@ -263,6 +263,37 @@ Here is a list of the available locales (`en-us` is the default):
263
263
  assessment.perspective("thirdPerson");
264
264
  ```
265
265
 
266
+ ## Reports
267
+
268
+ Set the perspective and view options to display our Big Five Personality Reports.
269
+
270
+ ### Big Five Hiring Manager Report
271
+
272
+ ```
273
+ assessment.perspective("thirdPerson");
274
+ assessment.view("candidate");
275
+ ```
276
+
277
+ This report also makes use of a benchmark/recommendation. It will default to the benchmark used to create an assessment. To use a different benchmark, you can pass the ID as an option.
278
+
279
+ ```
280
+ assessment.benchmarkID(benchmarkID);
281
+ ```
282
+
283
+ ### Big Five Candidate Report
284
+
285
+ ```
286
+ assessment.perspective("firstPerson");
287
+ assessment.view("candidate");
288
+ ```
289
+
290
+ ### Engage Employee Report
291
+
292
+ ```
293
+ assessment.perspective("thirdPerson");
294
+ assessment.view("employee");
295
+ ```
296
+
266
297
  ## Traitify Client
267
298
  We expose our JavaScript api client that you can use to make additional calls to our API from the client side. We make available `get`, `put`, and `post` functions. These methods will use the api key and url you configured when you initialized the Traitify library. Here is an example that returns career matches for a `career-deck` assessment. Further documentation on the API methods available can be found at https://app.traitify.com/developer/documentation.
268
299