Skip to content

Commit cbbdaee

Browse files
feat: Remove price gating on computer endpoints
1 parent fcdf068 commit cbbdaee

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 65
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-015c11efc34c81d4d82a937c017f5eb789ea3ca21a05b70e2ed31c069b839293.yml
3-
openapi_spec_hash: 3dcab2044da305f376cecf4eca38caee
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-8c7e0b9069a18bc9437269618cde251ba15568771f2b4811d57f0d5f0fd5692d.yml
3+
openapi_spec_hash: aa2544d0bf0e7e875939aaa8e2e114d3
44
config_hash: 0fbdda3a736cc2748ca33371871e61b3

src/kernel/resources/apps.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ def list(
6363
Args:
6464
app_name: Filter results by application name.
6565
66-
limit: Limit the number of app to return.
66+
limit: Limit the number of apps to return.
6767
68-
offset: Offset the number of app to return.
68+
offset: Offset the number of apps to return.
6969
7070
version: Filter results by version label.
7171
@@ -140,9 +140,9 @@ def list(
140140
Args:
141141
app_name: Filter results by application name.
142142
143-
limit: Limit the number of app to return.
143+
limit: Limit the number of apps to return.
144144
145-
offset: Offset the number of app to return.
145+
offset: Offset the number of apps to return.
146146
147147
version: Filter results by version label.
148148

src/kernel/types/app_list_params.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ class AppListParams(TypedDict, total=False):
1212
"""Filter results by application name."""
1313

1414
limit: int
15-
"""Limit the number of app to return."""
15+
"""Limit the number of apps to return."""
1616

1717
offset: int
18-
"""Offset the number of app to return."""
18+
"""Offset the number of apps to return."""
1919

2020
version: str
2121
"""Filter results by version label."""

0 commit comments

Comments
 (0)