Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
193 changes: 121 additions & 72 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ generation:
generateNewTests: true
skipResponseBodyAssertions: false
python:
version: 1.3.3
version: 1.3.4
additionalDependencies:
dev:
inline-snapshot: '>=0.13.0'
Expand Down
12 changes: 6 additions & 6 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
speakeasyVersion: 1.790.2
speakeasyVersion: 1.790.3
sources:
kombo-prepared-spec:
sourceNamespace: kombo-api
sourceRevisionDigest: sha256:bb4087e9aeff9c8256008685ac49958f5351988bc6ecb84c056b819750a9401c
sourceBlobDigest: sha256:72a46cf0dbad03b44640806a1ed02bca908631315f77459c76e7a46c2eabb4b9
sourceRevisionDigest: sha256:71f5342aa2d61fa65adf2c2c23b309d0f57de38c4fbefb3e8087db9e8c75e4c0
sourceBlobDigest: sha256:a2595eea65c57fa99de14be705908ecc133009cc082fa952a9270fc5ffd0dec6
tags:
- latest
- 1.0.0
targets:
kombo-python:
source: kombo-prepared-spec
sourceNamespace: kombo-api
sourceRevisionDigest: sha256:bb4087e9aeff9c8256008685ac49958f5351988bc6ecb84c056b819750a9401c
sourceBlobDigest: sha256:72a46cf0dbad03b44640806a1ed02bca908631315f77459c76e7a46c2eabb4b9
sourceRevisionDigest: sha256:71f5342aa2d61fa65adf2c2c23b309d0f57de38c4fbefb3e8087db9e8c75e4c0
sourceBlobDigest: sha256:a2595eea65c57fa99de14be705908ecc133009cc082fa952a9270fc5ffd0dec6
codeSamplesNamespace: kombo-api-python-code-samples
codeSamplesRevisionDigest: sha256:79c98368bdc4420455a735a1ecdcfb2aff60e46a6a4ed5deee8a23cad10eb912
codeSamplesRevisionDigest: sha256:07cfa526caad923864aac3cb510562170265f9a3d4a6d0093f04078ad99fb2ca
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,4 +258,14 @@ Based on:
### Generated
- [python v1.3.3] .
### Releases
- [PyPI v1.3.3] https://pypi.org/project/kombo/1.3.3 - .
- [PyPI v1.3.3] https://pypi.org/project/kombo/1.3.3 - .

## 2026-07-22 00:36:44
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.790.3 (2.918.4) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v1.3.4] .
### Releases
- [PyPI v1.3.4] https://pypi.org/project/kombo/1.3.4 - .
16 changes: 16 additions & 0 deletions docs/models/currentstagestatus.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# CurrentStageStatus

Whether the application stage is active in the ATS. Inactive stages (also e.g., archived or hidden) may still be referenced by existing applications but are typically not part of the current hiring workflow.

## Example Usage

```python
from kombo.models import CurrentStageStatus
value: CurrentStageStatus = "ACTIVE"
```


## Values

- `"ACTIVE"`
- `"INACTIVE"`
19 changes: 19 additions & 0 deletions docs/models/expectedproficiency.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# ExpectedProficiency

The expected proficiency for this role. `null` when the source system carries no proficiency on the role side.


## Supported Types

### `models.ExpectedProficiencyNumeric`

```python
value: models.ExpectedProficiencyNumeric = /* values here */
```

### `models.ExpectedProficiencySingleSelect`

```python
value: models.ExpectedProficiencySingleSelect = /* values here */
```

9 changes: 9 additions & 0 deletions docs/models/expectedproficiencynumeric.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# ExpectedProficiencyNumeric


## Fields

| Field | Type | Required | Description |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
| `type` | *Literal["NUMERIC"]* | :heavy_check_mark: | N/A |
| `value` | *float* | :heavy_check_mark: | The numeric proficiency value on the scale. |
9 changes: 9 additions & 0 deletions docs/models/expectedproficiencysingleselect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# ExpectedProficiencySingleSelect


## Fields

| Field | Type | Required | Description |
| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
| `type` | *Literal["SINGLE_SELECT"]* | :heavy_check_mark: | N/A |
| `selected_option_id` | *str* | :heavy_check_mark: | The Kombo ID of the selected option on the scale (`proficiency_scale.ordered_options[].id`). |
8 changes: 4 additions & 4 deletions docs/models/getatsapplicationspositiveresponse.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
| `id` | *str* | :heavy_check_mark: | The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing. | |
| `remote_id` | *Nullable[str]* | :heavy_check_mark: | The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key. | |
| `name` | *Nullable[str]* | :heavy_check_mark: | The application stage name. For example, "Initial Screening". | |
| `status` | [Nullable[models.CurrentStageStatus]](../models/currentstagestatus.md) | :heavy_check_mark: | Whether the application stage is active in the ATS. Inactive stages (also e.g., archived or hidden) may still be referenced by existing applications but are typically not part of the current hiring workflow. | |
| `custom_fields` | Dict[str, *Any*] | :heavy_check_mark: | A key-value store of fields not covered by the schema. [Read more](/custom-fields) | |
| `index` | *Nullable[int]* | :heavy_check_mark: | N/A | 2 |
Loading
Loading