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
37 changes: 37 additions & 0 deletions .github/workflows/pr-review-slack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: PR Review Slack

on:
pull_request:
types: [opened, reopened, ready_for_review]

jobs:
notify:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Post to Slack
uses: slackapi/slack-github-action@v2.0.0
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
payload: |
{
"channel": "C0AE0B1A874",
"text": "A new PR needs your review",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*A new PR needs your review*"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Repo:* ${{ github.repository }}\n*Title:* ${{ github.event.pull_request.title }}\n*Author:* ${{ github.event.pull_request.user.login }}\n<${{ github.event.pull_request.html_url }}|View PR>"
}
}
]
}
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.0"
".": "0.6.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 114
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/casemark%2Frouter-bd405528598f3651701eeddd54ea13fa8eeb40ac31f67456ef36972e6ab9ec3e.yml
openapi_spec_hash: b3fef85dfb46022c54c97dba898121ae
config_hash: 0b0fa7d7b7aca09da4b4f7e1d28f8c3c
configured_endpoints: 112
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/casemark%2Frouter-b7ad2a37a671b2b258b3a303fdfa84af4b003dcb28ce579f8eb5407d7b6483ae.yml
openapi_spec_hash: f86f6bb2c0fa3c011a2d400f26e99fa0
config_hash: 3f4ac44914c70706a4ad30173624bd72
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.6.0 (2026-02-10)

Full Changelog: [v0.5.0...v0.6.0](https://github.com/CaseMark/casedev-python/compare/v0.5.0...v0.6.0)

### Features

* **api:** api update ([36cbc0c](https://github.com/CaseMark/casedev-python/commit/36cbc0cf466fd98fcf58b7a40a2b2080ad9b21f3))


### Chores

* update SDK settings ([4f246c4](https://github.com/CaseMark/casedev-python/commit/4f246c445acecc3553791855f9eb9b24a1423c00))

## 0.5.0 (2026-02-06)

Full Changelog: [v0.4.0...v0.5.0](https://github.com/CaseMark/casedev-python/compare/v0.4.0...v0.5.0)
Expand Down
4 changes: 1 addition & 3 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,15 +429,13 @@ Methods:
Types:

```python
from casedev.types.vault import MultipartGetPartURLsResponse, MultipartInitResponse
from casedev.types.vault import MultipartGetPartURLsResponse
```

Methods:

- <code title="post /vault/{id}/multipart/abort">client.vault.multipart.<a href="./src/casedev/resources/vault/multipart.py">abort</a>(id, \*\*<a href="src/casedev/types/vault/multipart_abort_params.py">params</a>) -> None</code>
- <code title="post /vault/{id}/multipart/complete">client.vault.multipart.<a href="./src/casedev/resources/vault/multipart.py">complete</a>(id, \*\*<a href="src/casedev/types/vault/multipart_complete_params.py">params</a>) -> None</code>
- <code title="post /vault/{id}/multipart/part-urls">client.vault.multipart.<a href="./src/casedev/resources/vault/multipart.py">get_part_urls</a>(id, \*\*<a href="src/casedev/types/vault/multipart_get_part_urls_params.py">params</a>) -> <a href="./src/casedev/types/vault/multipart_get_part_urls_response.py">MultipartGetPartURLsResponse</a></code>
- <code title="post /vault/{id}/multipart/init">client.vault.multipart.<a href="./src/casedev/resources/vault/multipart.py">init</a>(id, \*\*<a href="src/casedev/types/vault/multipart_init_params.py">params</a>) -> <a href="./src/casedev/types/vault/multipart_init_response.py">MultipartInitResponse</a></code>

## Objects

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "casedev"
version = "0.5.0"
version = "0.6.0"
description = "The official Python library for the casedev API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/casedev/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "casedev"
__version__ = "0.5.0" # x-release-please-version
__version__ = "0.6.0" # x-release-please-version
Loading