Skip to content
Closed
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
4 changes: 2 additions & 2 deletions components/ambient-sdk/go-sdk/types/project.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 12 additions & 2 deletions components/ambient-sdk/python-sdk/ambient_platform/project.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Code generated by ambient-sdk-generator from openapi.yaml — DO NOT EDIT.
# Source: ../../ambient-api-server/openapi/openapi.yaml
# Spec SHA256: 9a8e623edcfae33acf56edf974d1859a127c22915d4831cb786daba2b398ca37
# Generated: 2026-03-21T21:30:53Z
# Spec SHA256: c9d4494778eb0a006db1f289630460fb9b5dc58df1895903c42735b4f56b0314
# Generated: 2026-05-05T15:07:48Z

from __future__ import annotations

Expand All @@ -21,6 +21,7 @@ class Project:
updated_at: Optional[datetime] = None
annotations: str = ""
description: str = ""
display_name: str = ""
labels: str = ""
name: str = ""
prompt: str = ""
Expand All @@ -36,6 +37,7 @@ def from_dict(cls, data: dict) -> Project:
updated_at=_parse_datetime(data.get("updated_at")),
annotations=data.get("annotations", ""),
description=data.get("description", ""),
display_name=data.get("display_name", ""),
labels=data.get("labels", ""),
name=data.get("name", ""),
prompt=data.get("prompt", ""),
Expand Down Expand Up @@ -79,6 +81,10 @@ def description(self, value: str) -> ProjectBuilder:
self._data["description"] = value
return self

def display_name(self, value: str) -> ProjectBuilder:
self._data["display_name"] = value
return self

def labels(self, value: str) -> ProjectBuilder:
self._data["labels"] = value
return self
Expand Down Expand Up @@ -114,6 +120,10 @@ def description(self, value: str) -> ProjectPatch:
self._data["description"] = value
return self

def display_name(self, value: str) -> ProjectPatch:
self._data["display_name"] = value
return self

def labels(self, value: str) -> ProjectPatch:
self._data["labels"] = value
return self
Expand Down
17 changes: 15 additions & 2 deletions components/ambient-sdk/ts-sdk/src/project.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// Code generated by ambient-sdk-generator from openapi.yaml — DO NOT EDIT.
// Source: ../../ambient-api-server/openapi/openapi.yaml
// Spec SHA256: 9a8e623edcfae33acf56edf974d1859a127c22915d4831cb786daba2b398ca37
// Generated: 2026-03-21T21:30:53Z
// Spec SHA256: c9d4494778eb0a006db1f289630460fb9b5dc58df1895903c42735b4f56b0314
// Generated: 2026-05-05T15:07:48Z

import type { ObjectReference, ListMeta } from './base';

export type Project = ObjectReference & {
annotations: string;
description: string;
display_name: string;
labels: string;
name: string;
prompt: string;
Expand All @@ -21,6 +22,7 @@ export type ProjectList = ListMeta & {
export type ProjectCreateRequest = {
annotations?: string;
description?: string;
display_name?: string;
labels?: string;
name: string;
prompt?: string;
Expand All @@ -30,6 +32,7 @@ export type ProjectCreateRequest = {
export type ProjectPatchRequest = {
annotations?: string;
description?: string;
display_name?: string;
labels?: string;
name?: string;
prompt?: string;
Expand All @@ -50,6 +53,11 @@ export class ProjectBuilder {
return this;
}

displayName(value: string): this {
this.data['display_name'] = value;
return this;
}

labels(value: string): this {
this.data['labels'] = value;
return this;
Expand Down Expand Up @@ -92,6 +100,11 @@ export class ProjectPatchBuilder {
return this;
}

displayName(value: string): this {
this.data['display_name'] = value;
return this;
}

labels(value: string): this {
this.data['labels'] = value;
return this;
Expand Down
Loading