quilt-sdk 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/generated/platform-contract.d.ts +3447 -897
- package/dist/generated/platform-contract.d.ts.map +1 -1
- package/dist/generated/platform-contract.js +180 -15
- package/dist/generated/platform-contract.js.map +1 -1
- package/dist/modules/containers.d.ts +4 -1
- package/dist/modules/containers.d.ts.map +1 -1
- package/dist/modules/containers.js +3 -2
- package/dist/modules/containers.js.map +1 -1
- package/dist/modules/elasticity.d.ts +22 -12
- package/dist/modules/elasticity.d.ts.map +1 -1
- package/dist/modules/elasticity.js +1 -1
- package/dist/modules/elasticity.js.map +1 -1
- package/dist/modules/platform.d.ts +3 -2
- package/dist/modules/platform.d.ts.map +1 -1
- package/dist/modules/platform.js +6 -4
- package/dist/modules/platform.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -190,6 +190,10 @@ Recent contract-alignment details now reflected in the SDK:
|
|
|
190
190
|
|
|
191
191
|
- `client.containers.create()` and `createBatch()` accept the full backend request shape, including `gpu_count` and `gpu_ids`
|
|
192
192
|
- snapshot responses include `source_container_name` when the backend captured it at snapshot creation time
|
|
193
|
+
- `client.platform.renameContainer(...)` sends backend-correct `new_name`
|
|
194
|
+
- tenant-scoped snapshot and fork routes require `X-Tenant-Id`; typed snapshot and fork helpers now accept explicit tenant headers
|
|
195
|
+
- elasticity control mutation helpers require the full control header set: `X-Tenant-Id`, `Idempotency-Key`, and `X-Orch-Action-Id`
|
|
196
|
+
- workload function-binding control writes return an elasticity operation envelope; the current binding is under `result`
|
|
193
197
|
|
|
194
198
|
## Realtime
|
|
195
199
|
|
|
@@ -248,6 +252,7 @@ Example files:
|
|
|
248
252
|
- `examples/sdk-runtime-and-functions.ts`
|
|
249
253
|
- `examples/clusters-nodes-workloads-and-k8s.ts`
|
|
250
254
|
- `examples/terminal-and-icc.ts`
|
|
255
|
+
- `examples/container-stream.ts`
|
|
251
256
|
- `examples/elasticity-control.ts`
|
|
252
257
|
- `examples/lifecycle-and-failures.ts`
|
|
253
258
|
|
|
@@ -261,6 +266,7 @@ bun run example:images
|
|
|
261
266
|
bun run example:sdk
|
|
262
267
|
bun run example:clusters
|
|
263
268
|
bun run example:terminal
|
|
269
|
+
bun run example:stream
|
|
264
270
|
bun run example:elasticity
|
|
265
271
|
bun run example:lifecycle
|
|
266
272
|
bun run examples:all
|