@unified-api/typescript-sdk 1.0.41 → 1.0.43

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.
@@ -13,6 +13,7 @@ export declare enum AtsApplicationStatus {
13
13
  Accepted = "ACCEPTED",
14
14
  Hired = "HIRED",
15
15
  Rejected = "REJECTED",
16
+ Declined = "DECLINED",
16
17
  Withdrawn = "WITHDRAWN"
17
18
  }
18
19
  export declare class AtsApplication extends SpeakeasyBase {
@@ -45,6 +45,7 @@ var AtsApplicationStatus;
45
45
  AtsApplicationStatus["Accepted"] = "ACCEPTED";
46
46
  AtsApplicationStatus["Hired"] = "HIRED";
47
47
  AtsApplicationStatus["Rejected"] = "REJECTED";
48
+ AtsApplicationStatus["Declined"] = "DECLINED";
48
49
  AtsApplicationStatus["Withdrawn"] = "WITHDRAWN";
49
50
  })(AtsApplicationStatus = exports.AtsApplicationStatus || (exports.AtsApplicationStatus = {}));
50
51
  var AtsApplication = /** @class */ (function (_super) {
@@ -12,6 +12,7 @@ export declare enum AtsStatusStatus {
12
12
  Accepted = "ACCEPTED",
13
13
  Hired = "HIRED",
14
14
  Rejected = "REJECTED",
15
+ Declined = "DECLINED",
15
16
  Withdrawn = "WITHDRAWN"
16
17
  }
17
18
  export declare class AtsStatus extends SpeakeasyBase {
@@ -44,6 +44,7 @@ var AtsStatusStatus;
44
44
  AtsStatusStatus["Accepted"] = "ACCEPTED";
45
45
  AtsStatusStatus["Hired"] = "HIRED";
46
46
  AtsStatusStatus["Rejected"] = "REJECTED";
47
+ AtsStatusStatus["Declined"] = "DECLINED";
47
48
  AtsStatusStatus["Withdrawn"] = "WITHDRAWN";
48
49
  })(AtsStatusStatus = exports.AtsStatusStatus || (exports.AtsStatusStatus = {}));
49
50
  var AtsStatus = /** @class */ (function (_super) {
@@ -17,6 +17,7 @@ export declare class CommerceCollection extends SpeakeasyBase {
17
17
  isVisible?: boolean;
18
18
  media?: CommerceItemMedia[];
19
19
  name: string;
20
+ parentId?: string;
20
21
  publicDescription?: string;
21
22
  publicName?: string;
22
23
  raw?: Record<string, any>;
@@ -90,6 +90,11 @@ var CommerceCollection = /** @class */ (function (_super) {
90
90
  (0, class_transformer_1.Expose)({ name: "name" }),
91
91
  __metadata("design:type", String)
92
92
  ], CommerceCollection.prototype, "name", void 0);
93
+ __decorate([
94
+ (0, utils_1.SpeakeasyMetadata)(),
95
+ (0, class_transformer_1.Expose)({ name: "parent_id" }),
96
+ __metadata("design:type", String)
97
+ ], CommerceCollection.prototype, "parentId", void 0);
93
98
  __decorate([
94
99
  (0, utils_1.SpeakeasyMetadata)(),
95
100
  (0, class_transformer_1.Expose)({ name: "public_description" }),
@@ -12,6 +12,7 @@ export declare class CommerceItem extends SpeakeasyBase {
12
12
  publicDescription?: string;
13
13
  publicName?: string;
14
14
  raw?: Record<string, any>;
15
+ slug?: string;
15
16
  tags?: string[];
16
17
  type?: string;
17
18
  updatedAt?: Date;
@@ -92,6 +92,11 @@ var CommerceItem = /** @class */ (function (_super) {
92
92
  (0, class_transformer_1.Expose)({ name: "raw" }),
93
93
  __metadata("design:type", Object)
94
94
  ], CommerceItem.prototype, "raw", void 0);
95
+ __decorate([
96
+ (0, utils_1.SpeakeasyMetadata)(),
97
+ (0, class_transformer_1.Expose)({ name: "slug" }),
98
+ __metadata("design:type", String)
99
+ ], CommerceItem.prototype, "slug", void 0);
95
100
  __decorate([
96
101
  (0, utils_1.SpeakeasyMetadata)(),
97
102
  (0, class_transformer_1.Expose)({ name: "tags" }),
@@ -66,6 +66,7 @@ export declare enum ListItemId {
66
66
  NotSupported = "not-supported"
67
67
  }
68
68
  export declare enum ListItemVariantId {
69
+ SupportedRequired = "supported-required",
69
70
  Supported = "supported",
70
71
  NotSupported = "not-supported"
71
72
  }
@@ -111,6 +111,7 @@ var ListItemId;
111
111
  })(ListItemId = exports.ListItemId || (exports.ListItemId = {}));
112
112
  var ListItemVariantId;
113
113
  (function (ListItemVariantId) {
114
+ ListItemVariantId["SupportedRequired"] = "supported-required";
114
115
  ListItemVariantId["Supported"] = "supported";
115
116
  ListItemVariantId["NotSupported"] = "not-supported";
116
117
  })(ListItemVariantId = exports.ListItemVariantId || (exports.ListItemVariantId = {}));
package/dist/sdk/sdk.js CHANGED
@@ -95,9 +95,9 @@ var SDKConfiguration = /** @class */ (function () {
95
95
  function SDKConfiguration(init) {
96
96
  this.language = "typescript";
97
97
  this.openapiDocVersion = "1.0";
98
- this.sdkVersion = "1.0.41";
98
+ this.sdkVersion = "1.0.43";
99
99
  this.genVersion = "2.342.6";
100
- this.userAgent = "speakeasy-sdk/typescript 1.0.41 2.342.6 1.0 @unified-api/typescript-sdk";
100
+ this.userAgent = "speakeasy-sdk/typescript 1.0.43 2.342.6 1.0 @unified-api/typescript-sdk";
101
101
  Object.assign(this, init);
102
102
  }
103
103
  return SDKConfiguration;
@@ -17,4 +17,5 @@
17
17
  | `Accepted` | ACCEPTED |
18
18
  | `Hired` | HIRED |
19
19
  | `Rejected` | REJECTED |
20
+ | `Declined` | DECLINED |
20
21
  | `Withdrawn` | WITHDRAWN |
@@ -17,4 +17,5 @@
17
17
  | `Accepted` | ACCEPTED |
18
18
  | `Hired` | HIRED |
19
19
  | `Rejected` | REJECTED |
20
+ | `Declined` | DECLINED |
20
21
  | `Withdrawn` | WITHDRAWN |
@@ -15,6 +15,7 @@ A collection of items/products/services
15
15
  | `isVisible` | *boolean* | :heavy_minus_sign: | N/A |
16
16
  | `media` | [shared.CommerceItemMedia](../../../sdk/models/shared/commerceitemmedia.md)[] | :heavy_minus_sign: | N/A |
17
17
  | `name` | *string* | :heavy_check_mark: | N/A |
18
+ | `parentId` | *string* | :heavy_minus_sign: | N/A |
18
19
  | `publicDescription` | *string* | :heavy_minus_sign: | N/A |
19
20
  | `publicName` | *string* | :heavy_minus_sign: | N/A |
20
21
  | `raw` | Record<string, *any*> | :heavy_minus_sign: | N/A |
@@ -15,6 +15,7 @@
15
15
  | `publicDescription` | *string* | :heavy_minus_sign: | N/A |
16
16
  | `publicName` | *string* | :heavy_minus_sign: | N/A |
17
17
  | `raw` | Record<string, *any*> | :heavy_minus_sign: | N/A |
18
+ | `slug` | *string* | :heavy_minus_sign: | N/A |
18
19
  | `tags` | *string*[] | :heavy_minus_sign: | N/A |
19
20
  | `type` | *string* | :heavy_minus_sign: | N/A |
20
21
  | `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
@@ -3,7 +3,8 @@
3
3
 
4
4
  ## Values
5
5
 
6
- | Name | Value |
7
- | -------------- | -------------- |
8
- | `Supported` | supported |
9
- | `NotSupported` | not-supported |
6
+ | Name | Value |
7
+ | ------------------- | ------------------- |
8
+ | `SupportedRequired` | supported-required |
9
+ | `Supported` | supported |
10
+ | `NotSupported` | not-supported |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unified-api/typescript-sdk",
3
- "version": "1.0.41",
3
+ "version": "1.0.43",
4
4
  "author": "Unified",
5
5
  "scripts": {
6
6
  "prepare": "tsc --build",