@unified-api/typescript-sdk 1.0.9 → 1.0.10

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.
@@ -2,6 +2,10 @@ import { SpeakeasyBase } from "../../../internal/utils";
2
2
  import * as shared from "../../../sdk/models/shared";
3
3
  import { AxiosResponse } from "axios";
4
4
  export declare class ListEnrichPeopleRequest extends SpeakeasyBase {
5
+ /**
6
+ * The name of the company the person is associated with. Not valid by itself.
7
+ */
8
+ companyName?: string;
5
9
  /**
6
10
  * ID of the connection
7
11
  */
@@ -58,6 +58,10 @@ var ListEnrichPeopleRequest = /** @class */ (function (_super) {
58
58
  function ListEnrichPeopleRequest() {
59
59
  return _super !== null && _super.apply(this, arguments) || this;
60
60
  }
61
+ __decorate([
62
+ (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=company_name" }),
63
+ __metadata("design:type", String)
64
+ ], ListEnrichPeopleRequest.prototype, "companyName", void 0);
61
65
  __decorate([
62
66
  (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
63
67
  __metadata("design:type", String)
package/dist/sdk/sdk.js CHANGED
@@ -81,9 +81,9 @@ var SDKConfiguration = /** @class */ (function () {
81
81
  function SDKConfiguration(init) {
82
82
  this.language = "typescript";
83
83
  this.openapiDocVersion = "1.0";
84
- this.sdkVersion = "1.0.9";
84
+ this.sdkVersion = "1.0.10";
85
85
  this.genVersion = "2.292.0";
86
- this.userAgent = "speakeasy-sdk/typescript 1.0.9 2.292.0 1.0 @unified-api/typescript-sdk";
86
+ this.userAgent = "speakeasy-sdk/typescript 1.0.10 2.292.0 1.0 @unified-api/typescript-sdk";
87
87
  Object.assign(this, init);
88
88
  }
89
89
  return SDKConfiguration;
@@ -3,10 +3,11 @@
3
3
 
4
4
  ## Fields
5
5
 
6
- | Field | Type | Required | Description |
7
- | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ |
8
- | `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
9
- | `email` | *string* | :heavy_minus_sign: | The email of the person to search |
10
- | `linkedinUrl` | *string* | :heavy_minus_sign: | The LinkedIn URL of the person to search |
11
- | `name` | *string* | :heavy_minus_sign: | The name of the person to search |
12
- | `twitter` | *string* | :heavy_minus_sign: | The twitter handle of the person to search |
6
+ | Field | Type | Required | Description |
7
+ | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
8
+ | `companyName` | *string* | :heavy_minus_sign: | The name of the company the person is associated with. Not valid by itself. |
9
+ | `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
10
+ | `email` | *string* | :heavy_minus_sign: | The email of the person to search |
11
+ | `linkedinUrl` | *string* | :heavy_minus_sign: | The LinkedIn URL of the person to search |
12
+ | `name` | *string* | :heavy_minus_sign: | The name of the person to search |
13
+ | `twitter` | *string* | :heavy_minus_sign: | The twitter handle of the person to search |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unified-api/typescript-sdk",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "author": "Unified",
5
5
  "scripts": {
6
6
  "prepare": "tsc --build",