New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@culturehq/client

Package Overview
Dependencies
Maintainers
1
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@culturehq/client - npm Package Compare versions

Comparing version 8.7.0 to 9.0.0

16

CHANGELOG.md

@@ -9,2 +9,15 @@ # Changelog

## [9.0.0] - 2019-02-20
### Added
- The optional `names` param to the `listProfileSuggestedInterests` and the `listProfileSuggestedSkills` calls.
- The optional `skillIds` param to the `listUsers` call.
- The `listUserSkills`, `profileAutocompleteInterests`, `profileAutocompleteSkills`, and `reorderProfileSkills` calls.
### Changed
- The required param on `createProfileSkill` and `createProfileUserInterest` from `tag_id` and `interest_id` to `name`.
- Corrected the path param on `deleteProfileSkill` and `deleteProfileUserInterest`.
### Removed
- The `profileAutocompleteTags` call.
## [8.7.0] - 2019-02-19

@@ -971,3 +984,4 @@ ### Added

[Unreleased]: https://github.com/CultureHQ/client/compare/v8.7.0...HEAD
[Unreleased]: https://github.com/CultureHQ/client/compare/v9.0.0...HEAD
[9.0.0]: https://github.com/CultureHQ/client/compare/v8.7.0...v9.0.0
[8.7.0]: https://github.com/CultureHQ/client/compare/v8.6.0...v8.7.0

@@ -974,0 +988,0 @@ [8.6.0]: https://github.com/CultureHQ/client/compare/v8.5.0...v8.6.0

17

dist/calls.json

@@ -87,4 +87,4 @@ {

"createProfilePointNotificationView": ["POST", "/profile/point_notification_views"],
"createProfileSkill": ["POST", "/profile/skills", ["tag_id"]],
"createProfileUserInterest": ["POST", "/profile/user_interests", ["interest_id"]],
"createProfileSkill": ["POST", "/profile/skills", ["name"]],
"createProfileUserInterest": ["POST", "/profile/user_interests", ["name"]],
"createRecognition": ["POST", "/recognitions", ["body", "userIds"]],

@@ -124,4 +124,4 @@ "createRecognitionComment": ["POST", "/recognitions/:recognitionId/comments", ["body"], ["parentCommentId"]],

"deletePost": ["DELETE", "/posts/:postId"],
"deleteProfileSkill": ["DELETE", "/profile/skills/:skill_id"],
"deleteProfileUserInterest": ["DELETE", "/profile/user_interests/:user_interest_id"],
"deleteProfileSkill": ["DELETE", "/profile/skills/:skillId"],
"deleteProfileUserInterest": ["DELETE", "/profile/user_interests/:userInterestId"],
"deleteRecognition": ["DELETE", "/recognitions/:recognitionId"],

@@ -246,3 +246,4 @@ "deleteRecognitionType": ["DELETE", "/recognitions/recognition_types/:recognitionTypeId"],

"listProfileSkills": ["GET", "/profile/skills"],
"listProfileSuggestedInterests": ["GET", "/profile/suggestions/interests", [], ["num"]],
"listProfileSuggestedInterests": ["GET", "/profile/suggestions/interests", [], ["num", "names"]],
"listProfileSuggestedSkills": ["GET", "/profile/suggestions/skills", [], ["num", "names"]],
"listProfileUserInterests": ["GET", "/profile/user_interests"],

@@ -275,2 +276,3 @@ "listRecognitionCheers": ["GET", "/recognitions/:recognitionId/cheers", [], ["page"]],

"listUserRsvpdEvents": ["GET", "/users/:userId/rsvpd_events", [], ["when", "sort"]],
"listUserSkills": ["GET", "/users/:userId/skills"],
"listUsers": [

@@ -290,2 +292,3 @@ "GET",

"interestIds",
"skillIds",
"locationIds"

@@ -296,6 +299,8 @@ ]

"pinUserActivity": ["POST", "/user_activities/:userActivityId/pin"],
"profileAutocompleteTags": ["GET", "/profile/autocomplete/tags", ["query"]],
"profileAutocompleteInterests": ["GET", "/profile/autocomplete/interests", ["query"]],
"profileAutocompleteSkills": ["GET", "/profile/autocomplete/skills", ["query"]],
"reactivateUser": ["DELETE", "/users/:userId/deactivation"],
"registerUser": ["POST", "/invites/:token/users", ["password"]],
"reorderProfileInterests": ["PATCH", "/profile/interest_order", ["order"]],
"reorderProfileSkills": ["PATCH", "/profile/skill_order", ["order"]],
"reorderSurveyItemResponseOptions": [

@@ -302,0 +307,0 @@ "PATCH",

{
"name": "@culturehq/client",
"version": "8.7.0",
"version": "9.0.0",
"description": "A JavaScript client that wraps the CultureHQ API",

@@ -5,0 +5,0 @@ "main": "dist/client.js",

@@ -87,4 +87,4 @@ {

"createProfilePointNotificationView": ["POST", "/profile/point_notification_views"],
"createProfileSkill": ["POST", "/profile/skills", ["tag_id"]],
"createProfileUserInterest": ["POST", "/profile/user_interests", ["interest_id"]],
"createProfileSkill": ["POST", "/profile/skills", ["name"]],
"createProfileUserInterest": ["POST", "/profile/user_interests", ["name"]],
"createRecognition": ["POST", "/recognitions", ["body", "userIds"]],

@@ -124,4 +124,4 @@ "createRecognitionComment": ["POST", "/recognitions/:recognitionId/comments", ["body"], ["parentCommentId"]],

"deletePost": ["DELETE", "/posts/:postId"],
"deleteProfileSkill": ["DELETE", "/profile/skills/:skill_id"],
"deleteProfileUserInterest": ["DELETE", "/profile/user_interests/:user_interest_id"],
"deleteProfileSkill": ["DELETE", "/profile/skills/:skillId"],
"deleteProfileUserInterest": ["DELETE", "/profile/user_interests/:userInterestId"],
"deleteRecognition": ["DELETE", "/recognitions/:recognitionId"],

@@ -246,3 +246,4 @@ "deleteRecognitionType": ["DELETE", "/recognitions/recognition_types/:recognitionTypeId"],

"listProfileSkills": ["GET", "/profile/skills"],
"listProfileSuggestedInterests": ["GET", "/profile/suggestions/interests", [], ["num"]],
"listProfileSuggestedInterests": ["GET", "/profile/suggestions/interests", [], ["num", "names"]],
"listProfileSuggestedSkills": ["GET", "/profile/suggestions/skills", [], ["num", "names"]],
"listProfileUserInterests": ["GET", "/profile/user_interests"],

@@ -275,2 +276,3 @@ "listRecognitionCheers": ["GET", "/recognitions/:recognitionId/cheers", [], ["page"]],

"listUserRsvpdEvents": ["GET", "/users/:userId/rsvpd_events", [], ["when", "sort"]],
"listUserSkills": ["GET", "/users/:userId/skills"],
"listUsers": [

@@ -290,2 +292,3 @@ "GET",

"interestIds",
"skillIds",
"locationIds"

@@ -296,6 +299,8 @@ ]

"pinUserActivity": ["POST", "/user_activities/:userActivityId/pin"],
"profileAutocompleteTags": ["GET", "/profile/autocomplete/tags", ["query"]],
"profileAutocompleteInterests": ["GET", "/profile/autocomplete/interests", ["query"]],
"profileAutocompleteSkills": ["GET", "/profile/autocomplete/skills", ["query"]],
"reactivateUser": ["DELETE", "/users/:userId/deactivation"],
"registerUser": ["POST", "/invites/:token/users", ["password"]],
"reorderProfileInterests": ["PATCH", "/profile/interest_order", ["order"]],
"reorderProfileSkills": ["PATCH", "/profile/skill_order", ["order"]],
"reorderSurveyItemResponseOptions": [

@@ -302,0 +307,0 @@ "PATCH",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc