@tailor-platform/function-types 0.8.2 → 0.8.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @tailor-platform/function-types
2
2
 
3
+ ## 0.8.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#150](https://github.com/tailor-platform/function/pull/150) [`02134c6`](https://github.com/tailor-platform/function/commit/02134c6ce2014a7f82440650c4d4f9345be96f7b) Thanks [@k1LoW](https://github.com/k1LoW)! - Add `userByName` method to `tailor.idp.Client` for fetching a user by name
8
+
3
9
  ## 0.8.2
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tailor-platform/function-types",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "description": "TypeScript types for Tailor Platform Function service",
5
5
  "repository": {
6
6
  "type": "git",
package/tailor.d.ts CHANGED
@@ -381,6 +381,11 @@ declare namespace tailor.idp {
381
381
  */
382
382
  user(userId: string): Promise<User>;
383
383
 
384
+ /**
385
+ * Get a user by name.
386
+ */
387
+ userByName(name: string): Promise<User>;
388
+
384
389
  /**
385
390
  * Create a new user.
386
391
  */