Skip to content

Commit e701b7b

Browse files
release: 0.1.0-alpha.8 (#10)
* codegen metadata * chore: configure new SDK language * feat(api): manual updates * release: 0.1.0-alpha.8 * Update CHANGELOG to remove Chores section Removed the 'Chores' section from the CHANGELOG. --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: atanasiuk-hubspot <57258334+atanasiuk-hubspot@users.noreply.github.com>
1 parent 1d33ed6 commit e701b7b

86 files changed

Lines changed: 12589 additions & 10297 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.7"
2+
".": "0.1.0-alpha.8"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 959
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/hubspot/hubspot-sdk-35257acc7f22a48c219d500e01eb99063e7a9194568504e1beb3bb1373078184.yml
3-
openapi_spec_hash: 3a53f40c597fb1a8ded7d5f8939b8cc1
4-
config_hash: 4c441c8f58590070a737ee66d9efe666
1+
configured_endpoints: 955
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/hubspot/hubspot-sdk-8aa2c4935982d3998769d656b2caae13c71151b5f00caaa875357ceb83f6e0a6.yml
3+
openapi_spec_hash: 47d20b6496315d47f4f64441d4682f47
4+
config_hash: 9c2a17b9755f3edac92a3ec4b93ac51c

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.1.0-alpha.8 (2026-05-18)
4+
5+
Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/HubSpot/hubspot-sdk-typescript/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)
6+
7+
### Features
8+
9+
* **api:** manual updates ([390ce2b](https://github.com/HubSpot/hubspot-sdk-typescript/commit/390ce2bd42528bbb004c17d460fe5299a86c1cb0))
10+
311
## 0.1.0-alpha.7 (2026-05-14)
412

513
Full Changelog: [v0.1.0-alpha.6...v0.1.0-alpha.7](https://github.com/HubSpot/hubspot-sdk-typescript/compare/v0.1.0-alpha.6...v0.1.0-alpha.7)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hubspot/sdk",
3-
"version": "0.1.0-alpha.7",
3+
"version": "0.1.0-alpha.8",
44
"description": "The official TypeScript library for the HubSpot API",
55
"author": "HubSpot <>",
66
"types": "dist/index.d.ts",

src/resources/automation/actions/actions.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export interface ArrayFieldSchema {
8686
/**
8787
* Specifies that the field is of type 'ARRAY'.
8888
*/
89-
type: 'ARRAY';
89+
type: 'ARRAY' | 'BOOLEAN' | 'DOUBLE' | 'INTEGER' | 'LONG' | 'OBJECT' | 'STRING';
9090
}
9191

9292
export interface BatchInputCallbackCompletionBatchRequest {
@@ -98,7 +98,7 @@ export interface BooleanFieldSchema {
9898
* Specifies the field type as BOOLEAN, indicating that the field can hold a true
9999
* or false value.
100100
*/
101-
type: 'BOOLEAN';
101+
type: 'ARRAY' | 'BOOLEAN' | 'DOUBLE' | 'INTEGER' | 'LONG' | 'OBJECT' | 'STRING';
102102
}
103103

104104
export interface CallbackCompletionBatchRequest {
@@ -302,7 +302,7 @@ export interface DoubleFieldSchema {
302302
/**
303303
* Indicates the field type as DOUBLE.
304304
*/
305-
type: 'DOUBLE';
305+
type: 'ARRAY' | 'BOOLEAN' | 'DOUBLE' | 'INTEGER' | 'LONG' | 'OBJECT' | 'STRING';
306306

307307
/**
308308
* The maximum allowable value for the double field.
@@ -581,7 +581,7 @@ export interface IntegerFieldSchema {
581581
/**
582582
* The type of the field, which is set to INTEGER.
583583
*/
584-
type: 'INTEGER';
584+
type: 'ARRAY' | 'BOOLEAN' | 'DOUBLE' | 'INTEGER' | 'LONG' | 'OBJECT' | 'STRING';
585585

586586
/**
587587
* The maximum value allowed for the integer field.
@@ -598,7 +598,7 @@ export interface LongFieldSchema {
598598
/**
599599
* The type of the field, which is LONG by default.
600600
*/
601-
type: 'LONG';
601+
type: 'ARRAY' | 'BOOLEAN' | 'DOUBLE' | 'INTEGER' | 'LONG' | 'OBJECT' | 'STRING';
602602

603603
/**
604604
* The maximum value allowed for the long field.
@@ -620,7 +620,7 @@ export interface ObjectFieldSchema {
620620
/**
621621
* Specifies the type of the field, which is 'OBJECT' by default.
622622
*/
623-
type: 'OBJECT';
623+
type: 'ARRAY' | 'BOOLEAN' | 'DOUBLE' | 'INTEGER' | 'LONG' | 'OBJECT' | 'STRING';
624624
}
625625

626626
export interface OutputFieldDefinition {
@@ -1001,7 +1001,7 @@ export interface StringFieldSchema {
10011001
/**
10021002
* Indicates that the type is a string, with the default value being STRING.
10031003
*/
1004-
type: 'STRING';
1004+
type: 'ARRAY' | 'BOOLEAN' | 'DOUBLE' | 'INTEGER' | 'LONG' | 'OBJECT' | 'STRING';
10051005

10061006
/**
10071007
* Specifies the format of the string, with accepted values: DATE, DATE_TIME,

src/resources/cms/api.md

Lines changed: 104 additions & 69 deletions
Large diffs are not rendered by default.

src/resources/cms/blogs/authors/authors.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,6 +1268,8 @@ export interface BlogAuthorCloneRequestVNext {
12681268
* Primary language in multi-language group.
12691269
*/
12701270
primaryLanguage?: string;
1271+
1272+
usePublished?: boolean;
12711273
}
12721274

12731275
export interface CollectionResponseWithTotalBlogAuthorForwardPaging {
@@ -4926,6 +4928,8 @@ export interface AuthorCreateLanguageVariationParams {
49264928
* Primary language in multi-language group.
49274929
*/
49284930
primaryLanguage?: string;
4931+
4932+
usePublished?: boolean;
49294933
}
49304934

49314935
export interface AuthorDetachFromLangGroupParams {

src/resources/cms/blogs/posts/multi-language.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1806,6 +1806,8 @@ export interface MultiLanguageCreateLangVariationParams {
18061806
* Target language of new variant.
18071807
*/
18081808
language?: string;
1809+
1810+
usePublished?: boolean;
18091811
}
18101812

18111813
export interface MultiLanguageDetachFromLangGroupParams {

src/resources/cms/blogs/posts/posts.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1568,6 +1568,8 @@ export interface BlogPostLanguageCloneRequestVNext {
15681568
* Target language of new variant.
15691569
*/
15701570
language?: string;
1571+
1572+
usePublished?: boolean;
15711573
}
15721574

15731575
export interface BlogPostVersion {

src/resources/cms/blogs/settings/multi-language.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1810,6 +1810,8 @@ export interface MultiLanguageCreateLanguageVariationParams {
18101810
* Path to this blog.
18111811
*/
18121812
slug?: string;
1813+
1814+
usePublished?: boolean;
18131815
}
18141816

18151817
export interface MultiLanguageDetachFromLangGroupParams {

0 commit comments

Comments
 (0)