@unified-api/typescript-sdk 1.0.12 → 1.0.13

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.
@@ -17,7 +17,7 @@ export declare class AtsCandidate extends SpeakeasyBase {
17
17
  createdAt?: Date;
18
18
  dateOfBirth?: Date;
19
19
  emails?: AtsEmail[];
20
- externalId?: string;
20
+ externalIdentifier?: string;
21
21
  id?: string;
22
22
  imageUrl?: string;
23
23
  /**
@@ -32,4 +32,5 @@ export declare class AtsCandidate extends SpeakeasyBase {
32
32
  telephones?: AtsTelephone[];
33
33
  title?: string;
34
34
  updatedAt?: Date;
35
+ userId?: string;
35
36
  }
@@ -89,9 +89,9 @@ var AtsCandidate = /** @class */ (function (_super) {
89
89
  ], AtsCandidate.prototype, "emails", void 0);
90
90
  __decorate([
91
91
  (0, utils_1.SpeakeasyMetadata)(),
92
- (0, class_transformer_1.Expose)({ name: "external_id" }),
92
+ (0, class_transformer_1.Expose)({ name: "external_identifier" }),
93
93
  __metadata("design:type", String)
94
- ], AtsCandidate.prototype, "externalId", void 0);
94
+ ], AtsCandidate.prototype, "externalIdentifier", void 0);
95
95
  __decorate([
96
96
  (0, utils_1.SpeakeasyMetadata)(),
97
97
  (0, class_transformer_1.Expose)({ name: "id" }),
@@ -152,6 +152,11 @@ var AtsCandidate = /** @class */ (function (_super) {
152
152
  }, { toClassOnly: true }),
153
153
  __metadata("design:type", Date)
154
154
  ], AtsCandidate.prototype, "updatedAt", void 0);
155
+ __decorate([
156
+ (0, utils_1.SpeakeasyMetadata)(),
157
+ (0, class_transformer_1.Expose)({ name: "user_id" }),
158
+ __metadata("design:type", String)
159
+ ], AtsCandidate.prototype, "userId", void 0);
155
160
  return AtsCandidate;
156
161
  }(utils_1.SpeakeasyBase));
157
162
  exports.AtsCandidate = AtsCandidate;
package/dist/sdk/sdk.js CHANGED
@@ -83,9 +83,9 @@ var SDKConfiguration = /** @class */ (function () {
83
83
  function SDKConfiguration(init) {
84
84
  this.language = "typescript";
85
85
  this.openapiDocVersion = "1.0";
86
- this.sdkVersion = "1.0.12";
86
+ this.sdkVersion = "1.0.13";
87
87
  this.genVersion = "2.304.1";
88
- this.userAgent = "speakeasy-sdk/typescript 1.0.12 2.304.1 1.0 @unified-api/typescript-sdk";
88
+ this.userAgent = "speakeasy-sdk/typescript 1.0.13 2.304.1 1.0 @unified-api/typescript-sdk";
89
89
  Object.assign(this, init);
90
90
  }
91
91
  return SDKConfiguration;
@@ -11,7 +11,7 @@
11
11
  | `createdAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
12
12
  | `dateOfBirth` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
13
13
  | `emails` | [shared.AtsEmail](../../../sdk/models/shared/atsemail.md)[] | :heavy_minus_sign: | N/A |
14
- | `externalId` | *string* | :heavy_minus_sign: | N/A |
14
+ | `externalIdentifier` | *string* | :heavy_minus_sign: | N/A |
15
15
  | `id` | *string* | :heavy_minus_sign: | N/A |
16
16
  | `imageUrl` | *string* | :heavy_minus_sign: | N/A |
17
17
  | `linkUrls` | *string*[] | :heavy_minus_sign: | a list of social media links associated with the candidate. eg. LinkedIn URL |
@@ -22,4 +22,5 @@
22
22
  | `tags` | *string*[] | :heavy_minus_sign: | N/A |
23
23
  | `telephones` | [shared.AtsTelephone](../../../sdk/models/shared/atstelephone.md)[] | :heavy_minus_sign: | N/A |
24
24
  | `title` | *string* | :heavy_minus_sign: | N/A |
25
- | `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
25
+ | `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
26
+ | `userId` | *string* | :heavy_minus_sign: | N/A |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unified-api/typescript-sdk",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "author": "Unified",
5
5
  "scripts": {
6
6
  "prepare": "tsc --build",