Skip to content

Commit 3cb9652

Browse files
Codegen: CMS HubDB
1 parent fdb3f18 commit 3cb9652

37 files changed

+514
-254
lines changed

codegen/cms/hubdb/apis/RowsApi.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ export class RowsApiRequestFactory extends BaseAPIRequestFactory {
233233
}
234234

235235
/**
236-
* Returns a set of rows in the published version of the specified table. Row results can be filtered and sorted. Filtering and sorting options will be sent as query parameters to the API request. For example, by adding the query parameters `column1__gt=5&sort=-column1`, API returns the rows with values for column `column1` greater than 5 and in the descending order of `column1` values. Refer to the [overview section](https://developers.hubspot.com/docs/api-reference/cms-hubdb-v3/guide#filter-returned-rows) for detailed filtering and sorting options. **Note:** This endpoint can be accessed without any authentication, if the table is set to be allowed for public access.
236+
* Returns a set of rows in the published version of the specified table. Row results can be filtered and sorted. Filtering and sorting options will be sent as query parameters to the API request. For example, by adding the query parameters `column1__gt=5&sort=-column1`, API returns the rows with values for column `column1` greater than 5 and in the descending order of `column1` values. Refer to the [overview section](https://developers.hubspot.com/docs/api/cms/hubdb#filtering-and-sorting-table-rows) for detailed filtering and sorting options. **Note:** This endpoint can be accessed without any authentication, if the table is set to be allowed for public access.
237237
* Get rows for a table
238238
* @param tableIdOrName The ID or name of the table to query.
239239
* @param sort Specifies the column names to sort the results by. See the above description for more details.
@@ -365,13 +365,13 @@ export class RowsApiRequestFactory extends BaseAPIRequestFactory {
365365
}
366366

367367
/**
368-
* Returns rows in the draft version of the specified table. Row results can be filtered and sorted. Filtering and sorting options will be sent as query parameters to the API request. For example, by adding the query parameters `column1__gt=5&sort=-column1`, API returns the rows with values for column `column1` greater than 5 and in the descending order of `column1` values. Refer to the [overview section](https://developers.hubspot.com/docs/api-reference/cms-hubdb-v3/guide#filter-returned-rows) for detailed filtering and sorting options.
368+
* Returns rows in the draft version of the specified table. Row results can be filtered and sorted. Filtering and sorting options will be sent as query parameters to the API request. For example, by adding the query parameters `column1__gt=5&sort=-column1`, API returns the rows with values for column `column1` greater than 5 and in the descending order of `column1` values. Refer to the [overview section](https://developers.hubspot.com/docs/api/cms/hubdb#filtering-and-sorting-table-rows) for detailed filtering and sorting options.
369369
* Get rows from draft table
370370
* @param tableIdOrName The ID or name of the table to query.
371371
* @param sort Specifies the column names to sort the results by.
372372
* @param after The cursor token value to get the next set of results. You can get this from the `paging.next.after` JSON property of a paged response containing more results.
373373
* @param limit The maximum number of results to return. Default is `1000`.
374-
* @param properties Specify the column names to get results containing only the required columns instead of all column details. If you want to include multiple columns in the result, use this query param as many times.
374+
* @param properties Specify the column names to get results containing only the required columns instead of all column details. If you want to include multiple columns in the result, use this query param as many times.
375375
* @param offset
376376
* @param archived
377377
*/

codegen/cms/hubdb/apis/TablesApi.ts

Lines changed: 134 additions & 42 deletions
Large diffs are not rendered by default.

codegen/cms/hubdb/models/BatchInputHubDbTableRowBatchCloneRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Hubdb
3-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3+
* Basepom for all HubSpot Projects
44
*
55
* OpenAPI spec version: v3
66
*

codegen/cms/hubdb/models/BatchInputHubDbTableRowV3BatchUpdateRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Hubdb
3-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3+
* Basepom for all HubSpot Projects
44
*
55
* OpenAPI spec version: v3
66
*

codegen/cms/hubdb/models/BatchInputHubDbTableRowV3Request.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Hubdb
3-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3+
* Basepom for all HubSpot Projects
44
*
55
* OpenAPI spec version: v3
66
*
@@ -13,9 +13,6 @@
1313
import { HubDbTableRowV3Request } from '../models/HubDbTableRowV3Request';
1414

1515
export class BatchInputHubDbTableRowV3Request {
16-
/**
17-
*
18-
*/
1916
'inputs': Array<HubDbTableRowV3Request>;
2017

2118
static readonly discriminator: string | undefined = undefined;

codegen/cms/hubdb/models/BatchInputString.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Hubdb
3-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3+
* Basepom for all HubSpot Projects
44
*
55
* OpenAPI spec version: v3
66
*
@@ -12,9 +12,6 @@
1212

1313

1414
export class BatchInputString {
15-
/**
16-
*
17-
*/
1815
'inputs': Array<string>;
1916

2017
static readonly discriminator: string | undefined = undefined;

codegen/cms/hubdb/models/BatchResponseHubDbTableRowV3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Hubdb
3-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3+
* Basepom for all HubSpot Projects
44
*
55
* OpenAPI spec version: v3
66
*

codegen/cms/hubdb/models/BatchResponseHubDbTableRowV3WithErrors.ts

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Hubdb
3-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3+
* Basepom for all HubSpot Projects
44
*
55
* OpenAPI spec version: v3
66
*
@@ -14,37 +14,13 @@ import { HubDbTableRowV3 } from '../models/HubDbTableRowV3';
1414
import { StandardError } from '../models/StandardError';
1515

1616
export class BatchResponseHubDbTableRowV3WithErrors {
17-
/**
18-
*
19-
*/
2017
'completedAt': Date;
21-
/**
22-
*
23-
*/
2418
'numErrors'?: number;
25-
/**
26-
*
27-
*/
2819
'requestedAt'?: Date;
29-
/**
30-
*
31-
*/
3220
'startedAt': Date;
33-
/**
34-
*
35-
*/
3621
'links'?: { [key: string]: string; };
37-
/**
38-
*
39-
*/
4022
'results': Array<HubDbTableRowV3>;
41-
/**
42-
*
43-
*/
4423
'errors'?: Array<StandardError>;
45-
/**
46-
*
47-
*/
4824
'status': BatchResponseHubDbTableRowV3WithErrorsStatusEnum;
4925

5026
static readonly discriminator: string | undefined = undefined;

codegen/cms/hubdb/models/BoundedNextPage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Hubdb
3-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3+
* Basepom for all HubSpot Projects
44
*
55
* OpenAPI spec version: v3
66
*

codegen/cms/hubdb/models/BoundedPaging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Hubdb
3-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3+
* Basepom for all HubSpot Projects
44
*
55
* OpenAPI spec version: v3
66
*

0 commit comments

Comments
 (0)