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
2 changes: 1 addition & 1 deletion UPSTREAM_CODEX_VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.133.0
0.134.0
2 changes: 1 addition & 1 deletion external/codex
Submodule codex updated 333 files

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,6 @@ internal partial class Config
[System.Text.Json.Serialization.JsonPropertyName("model_verbosity")]
public Model_verbosity? Model_verbosity { get; set; } = default!;

[System.Text.Json.Serialization.JsonPropertyName("profile")]
public string? Profile { get; set; } = default!;

[System.Text.Json.Serialization.JsonPropertyName("profiles")]
public System.Collections.Generic.IDictionary<string, ProfileV2>? Profiles { get; set; } = default!;

[System.Text.Json.Serialization.JsonPropertyName("review_model")]
public string? Review_model { get; set; } = default!;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal partial class ConfigReadParams
public string? Cwd { get; set; } = default!;

[System.Text.Json.Serialization.JsonPropertyName("includeLayers")]
public bool? IncludeLayers { get; set; } = false;
public bool? IncludeLayers { get; set; } = default!;

private System.Collections.Generic.IDictionary<string, object>? _additionalProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ namespace JKToolKit.CodexSDK.Generated.Upstream.AppServer.V2;
internal partial class ConfigRequirements
{

[System.Text.Json.Serialization.JsonPropertyName("allowAppshots")]
public bool? AllowAppshots { get; set; } = default!;

[System.Text.Json.Serialization.JsonPropertyName("allowManagedHooksOnly")]
public bool? AllowManagedHooksOnly { get; set; } = default!;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal partial class FeedbackUploadParams
public System.Collections.Generic.ICollection<string>? ExtraLogFiles { get; set; } = default!;

[System.Text.Json.Serialization.JsonPropertyName("includeLogs")]
public bool IncludeLogs { get; set; } = default!;
public bool? IncludeLogs { get; set; } = default!;

[System.Text.Json.Serialization.JsonPropertyName("reason")]
public string? Reason { get; set; } = default!;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ internal partial class GetAccountParams
/// <br/>In managed auth mode this triggers the normal refresh-token flow. In external auth mode this flag is ignored. Clients should refresh tokens themselves and call `account/login/start` with `chatgptAuthTokens`.
/// </summary>
[System.Text.Json.Serialization.JsonPropertyName("refreshToken")]
public bool? RefreshToken { get; set; } = false;
public bool? RefreshToken { get; set; } = default!;

private System.Collections.Generic.IDictionary<string, object>? _additionalProperties;

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal partial class ThreadReadParams
/// When true, include turns and their items from rollout history.
/// </summary>
[System.Text.Json.Serialization.JsonPropertyName("includeTurns")]
public bool? IncludeTurns { get; set; } = false;
public bool? IncludeTurns { get; set; } = default!;

[System.Text.Json.Serialization.JsonPropertyName("threadId")]
public string ThreadId { get; set; } = default!;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@
namespace JKToolKit.CodexSDK.Generated.Upstream.AppServer.V2;

[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "11.5.2.0 (Newtonsoft.Json v13.0.0.0)")]
internal partial class Approval_policy2
internal partial class ThreadSearchResult
{

[System.Text.Json.Serialization.JsonPropertyName("snippet")]
public string Snippet { get; set; } = default!;

[System.Text.Json.Serialization.JsonPropertyName("thread")]
public Thread Thread { get; set; } = new Thread();

private System.Collections.Generic.IDictionary<string, object>? _additionalProperties;

[System.Text.Json.Serialization.JsonExtensionData]
Expand Down
25 changes: 0 additions & 25 deletions src/JKToolKit.CodexSDK/Generated/Upstream/AppServer/V2/Tools3.g.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal partial class ToolsV2
{

[System.Text.Json.Serialization.JsonPropertyName("web_search")]
public Web_search3? Web_search { get; set; } = default!;
public Web_search2? Web_search { get; set; } = default!;

private System.Collections.Generic.IDictionary<string, object>? _additionalProperties;

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"schemaPath": "external/codex/codex-rs/app-server-protocol/schema/json/codex_app_server_protocol.schemas.json",
"schemaByteCount": 506984,
"schemaSha256": "fe3d7242583858ec481189c54b6f9a8df070c267bad941921567e3ab26a678b9",
"codexCliVersion": "0.133.0",
"schemaByteCount": 504567,
"schemaSha256": "720c5d9901e8bca0b367a1ab520b8172428c83509ade0b332071f061da0238f0",
"codexCliVersion": "0.134.0",
"codexCliVersionPinPath": "UPSTREAM_CODEX_VERSION.txt",
"codexCliPackageJsonPath": "external/codex/codex-cli/package.json"
}
Loading