Skip to content
Draft
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: 2 additions & 0 deletions packages/accessmanagement/NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
### Internal Changes

### API Changes

- **Breaking (beta correction):** Unspecified enum constants now equal `""` because they represent absence and must not expose a sendable sentinel wire value.
2 changes: 1 addition & 1 deletion packages/accessmanagement/src/v1/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export type PermissionLevel =
*/
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const RequestAuthzIdentity = {
REQUEST_AUTHZ_IDENTITY_UNSPECIFIED: 'REQUEST_AUTHZ_IDENTITY_UNSPECIFIED',
REQUEST_AUTHZ_IDENTITY_UNSPECIFIED: '',
REQUEST_AUTHZ_IDENTITY_USER_CONTEXT: 'REQUEST_AUTHZ_IDENTITY_USER_CONTEXT',
REQUEST_AUTHZ_IDENTITY_SERVICE_IDENTITY:
'REQUEST_AUTHZ_IDENTITY_SERVICE_IDENTITY',
Expand Down
2 changes: 2 additions & 0 deletions packages/apps/NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
### Internal Changes

### API Changes

- **Breaking (beta correction):** Unspecified enum constants now equal `""` because they represent absence and must not expose a sendable sentinel wire value.
14 changes: 7 additions & 7 deletions packages/apps/src/v1/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ export type ErrorCode =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const SpaceUpdateState = {
SPACE_UPDATE_STATE_UNSPECIFIED: 'SPACE_UPDATE_STATE_UNSPECIFIED',
SPACE_UPDATE_STATE_UNSPECIFIED: '',
NOT_UPDATED: 'NOT_UPDATED',
IN_PROGRESS: 'IN_PROGRESS',
SUCCEEDED: 'SUCCEEDED',
Expand All @@ -535,7 +535,7 @@ export type SpaceUpdateState =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const AppDeployment_Mode = {
MODE_UNSPECIFIED: 'MODE_UNSPECIFIED',
MODE_UNSPECIFIED: '',
SNAPSHOT: 'SNAPSHOT',
AUTO_SYNC: 'AUTO_SYNC',
} as const;
Expand All @@ -546,7 +546,7 @@ export type AppDeployment_Mode =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const AppDeployment_State = {
STATE_UNSPECIFIED: 'STATE_UNSPECIFIED',
STATE_UNSPECIFIED: '',
SUCCEEDED: 'SUCCEEDED',
FAILED: 'FAILED',
IN_PROGRESS: 'IN_PROGRESS',
Expand Down Expand Up @@ -766,7 +766,7 @@ export type AppResourceUcSecurable_UcSecurableType =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const AppUpdate_UpdateStatus_UpdateState = {
UPDATE_STATE_UNSPECIFIED: 'UPDATE_STATE_UNSPECIFIED',
UPDATE_STATE_UNSPECIFIED: '',
NOT_UPDATED: 'NOT_UPDATED',
IN_PROGRESS: 'IN_PROGRESS',
SUCCEEDED: 'SUCCEEDED',
Expand All @@ -779,7 +779,7 @@ export type AppUpdate_UpdateStatus_UpdateState =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const ApplicationStatus_ApplicationState = {
APPLICATION_STATE_UNSPECIFIED: 'APPLICATION_STATE_UNSPECIFIED',
APPLICATION_STATE_UNSPECIFIED: '',
DEPLOYING: 'DEPLOYING',
RUNNING: 'RUNNING',
CRASHED: 'CRASHED',
Expand All @@ -792,7 +792,7 @@ export type ApplicationStatus_ApplicationState =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const ComputeStatus_ComputeState = {
COMPUTE_STATE_UNSPECIFIED: 'COMPUTE_STATE_UNSPECIFIED',
COMPUTE_STATE_UNSPECIFIED: '',
ERROR: 'ERROR',
DELETING: 'DELETING',
STARTING: 'STARTING',
Expand All @@ -808,7 +808,7 @@ export type ComputeStatus_ComputeState =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const SpaceStatus_SpaceState = {
SPACE_STATE_UNSPECIFIED: 'SPACE_STATE_UNSPECIFIED',
SPACE_STATE_UNSPECIFIED: '',
SPACE_CREATING: 'SPACE_CREATING',
SPACE_ACTIVE: 'SPACE_ACTIVE',
SPACE_ERROR: 'SPACE_ERROR',
Expand Down
2 changes: 2 additions & 0 deletions packages/budgetpolicy/NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
### Internal Changes

### API Changes

- **Breaking (beta correction):** Unspecified enum constants now equal `""` because they represent absence and must not expose a sendable sentinel wire value.
2 changes: 1 addition & 1 deletion packages/budgetpolicy/src/v1/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {z} from 'zod';
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const SortSpec_Field = {
/** If unspecified, the server will decide the default field to sort on. */
FIELD_UNSPECIFIED: 'FIELD_UNSPECIFIED',
FIELD_UNSPECIFIED: '',
/** Sort by policy name. */
POLICY_NAME: 'POLICY_NAME',
} as const;
Expand Down
2 changes: 2 additions & 0 deletions packages/cleanrooms/NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
### Internal Changes

### API Changes

- **Breaking (beta correction):** Unspecified enum constants now equal `""` because they represent absence and must not expose a sendable sentinel wire value.
44 changes: 19 additions & 25 deletions packages/cleanrooms/src/v1/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {z} from 'zod';
*/
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomTaskRunLifeCycleState = {
RUN_LIFE_CYCLE_STATE_UNSPECIFIED: 'RUN_LIFE_CYCLE_STATE_UNSPECIFIED',
RUN_LIFE_CYCLE_STATE_UNSPECIFIED: '',
PENDING: 'PENDING',
RUNNING: 'RUNNING',
TERMINATING: 'TERMINATING',
Expand All @@ -29,7 +29,7 @@ export type CleanRoomTaskRunLifeCycleState =
*/
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomTaskRunResultState = {
RUN_RESULT_STATE_UNSPECIFIED: 'RUN_RESULT_STATE_UNSPECIFIED',
RUN_RESULT_STATE_UNSPECIFIED: '',
SUCCESS: 'SUCCESS',
FAILED: 'FAILED',
TIMEDOUT: 'TIMEDOUT',
Expand All @@ -50,7 +50,7 @@ export type CleanRoomTaskRunResultState =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomTaskType = {
CLEAN_ROOM_TASK_TYPE_UNSPECIFIED: 'CLEAN_ROOM_TASK_TYPE_UNSPECIFIED',
CLEAN_ROOM_TASK_TYPE_UNSPECIFIED: '',
NOTEBOOK: 'NOTEBOOK',
JAR: 'JAR',
} as const;
Expand Down Expand Up @@ -93,7 +93,7 @@ export type ColumnTypeName =
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const ComplianceStandard = {
/** Sentinel value, should not be used in prod */
COMPLIANCE_STANDARD_UNSPECIFIED: 'COMPLIANCE_STANDARD_UNSPECIFIED',
COMPLIANCE_STANDARD_UNSPECIFIED: '',
/**
* For customers who buy Enhanced Security Compliance (ESC) product
* but don't belong to any standards.
Expand Down Expand Up @@ -154,7 +154,7 @@ export type CleanRoom_AccessRestricted =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoom_Status_Enum = {
ENUM_UNSPECIFIED: 'ENUM_UNSPECIFIED',
ENUM_UNSPECIFIED: '',
ACTIVE: 'ACTIVE',
PROVISIONING: 'PROVISIONING',
DELETED: 'DELETED',
Expand All @@ -167,7 +167,7 @@ export type CleanRoom_Status_Enum =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomAsset_AssetType = {
ASSET_TYPE_UNSPECIFIED: 'ASSET_TYPE_UNSPECIFIED',
ASSET_TYPE_UNSPECIFIED: '',
TABLE: 'TABLE',
NOTEBOOK_FILE: 'NOTEBOOK_FILE',
VOLUME: 'VOLUME',
Expand All @@ -182,7 +182,7 @@ export type CleanRoomAsset_AssetType =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomAsset_Status_Enum = {
ENUM_UNSPECIFIED: 'ENUM_UNSPECIFIED',
ENUM_UNSPECIFIED: '',
ACTIVE: 'ACTIVE',
PERMISSION_DENIED: 'PERMISSION_DENIED',
PENDING: 'PENDING',
Expand All @@ -194,7 +194,7 @@ export type CleanRoomAsset_Status_Enum =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomAutoApprovalRule_AuthorScope = {
AUTHOR_SCOPE_UNSPECIFIED: 'AUTHOR_SCOPE_UNSPECIFIED',
AUTHOR_SCOPE_UNSPECIFIED: '',
ANY_AUTHOR: 'ANY_AUTHOR',
} as const;
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.
Expand All @@ -204,8 +204,7 @@ export type CleanRoomAutoApprovalRule_AuthorScope =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomJarAnalysisReview_JarAnalysisReviewState = {
JAR_ANALYSIS_REVIEW_STATE_UNSPECIFIED:
'JAR_ANALYSIS_REVIEW_STATE_UNSPECIFIED',
JAR_ANALYSIS_REVIEW_STATE_UNSPECIFIED: '',
APPROVED: 'APPROVED',
REJECTED: 'REJECTED',
PENDING: 'PENDING',
Expand All @@ -217,8 +216,7 @@ export type CleanRoomJarAnalysisReview_JarAnalysisReviewState =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomJarAnalysisReview_JarAnalysisReviewSubReason = {
JAR_ANALYSIS_REVIEW_SUB_REASON_UNSPECIFIED:
'JAR_ANALYSIS_REVIEW_SUB_REASON_UNSPECIFIED',
JAR_ANALYSIS_REVIEW_SUB_REASON_UNSPECIFIED: '',
AUTO_APPROVED: 'AUTO_APPROVED',
} as const;
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.
Expand All @@ -228,7 +226,7 @@ export type CleanRoomJarAnalysisReview_JarAnalysisReviewSubReason =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomNotebookReview_NotebookReviewState = {
NOTEBOOK_REVIEW_STATE_UNSPECIFIED: 'NOTEBOOK_REVIEW_STATE_UNSPECIFIED',
NOTEBOOK_REVIEW_STATE_UNSPECIFIED: '',
APPROVED: 'APPROVED',
REJECTED: 'REJECTED',
PENDING: 'PENDING',
Expand All @@ -240,8 +238,7 @@ export type CleanRoomNotebookReview_NotebookReviewState =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomNotebookReview_NotebookReviewSubReason = {
NOTEBOOK_REVIEW_SUB_REASON_UNSPECIFIED:
'NOTEBOOK_REVIEW_SUB_REASON_UNSPECIFIED',
NOTEBOOK_REVIEW_SUB_REASON_UNSPECIFIED: '',
BACKFILLED: 'BACKFILLED',
AUTO_APPROVED: 'AUTO_APPROVED',
} as const;
Expand All @@ -252,7 +249,7 @@ export type CleanRoomNotebookReview_NotebookReviewSubReason =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CleanRoomOutputCatalog_OutputCatalogStatus = {
OUTPUT_CATALOG_STATUS_UNSPECIFIED: 'OUTPUT_CATALOG_STATUS_UNSPECIFIED',
OUTPUT_CATALOG_STATUS_UNSPECIFIED: '',
/** The clean room is not eligible for output catalog. */
NOT_ELIGIBLE: 'NOT_ELIGIBLE',
/** The output catalog of the clean room is not yet created. */
Expand All @@ -274,8 +271,7 @@ export type CleanRoomOutputCatalog_OutputCatalogStatus =
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const EgressNetworkPolicy_InternetAccessPolicy_InternetDestination_InternetDestinationFilteringProtocol =
{
INTERNET_DESTINATION_FILTERING_PROTOCOL_UNSPECIFIED:
'INTERNET_DESTINATION_FILTERING_PROTOCOL_UNSPECIFIED',
INTERNET_DESTINATION_FILTERING_PROTOCOL_UNSPECIFIED: '',
TCP: 'TCP',
} as const;
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.
Expand All @@ -287,8 +283,7 @@ export type EgressNetworkPolicy_InternetAccessPolicy_InternetDestination_Interne
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const EgressNetworkPolicy_InternetAccessPolicy_InternetDestination_InternetDestinationType =
{
INTERNET_DESTINATION_TYPE_UNSPECIFIED:
'INTERNET_DESTINATION_TYPE_UNSPECIFIED',
INTERNET_DESTINATION_TYPE_UNSPECIFIED: '',
FQDN: 'FQDN',
} as const;
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.
Expand All @@ -300,7 +295,7 @@ export type EgressNetworkPolicy_InternetAccessPolicy_InternetDestination_Interne
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const EgressNetworkPolicy_InternetAccessPolicy_LogOnlyMode_LogOnlyModeType =
{
LOG_ONLY_MODE_TYPE_UNSPECIFIED: 'LOG_ONLY_MODE_TYPE_UNSPECIFIED',
LOG_ONLY_MODE_TYPE_UNSPECIFIED: '',
ALL_SERVICES: 'ALL_SERVICES',
SELECTED_SERVICES: 'SELECTED_SERVICES',
} as const;
Expand All @@ -314,7 +309,7 @@ export type EgressNetworkPolicy_InternetAccessPolicy_LogOnlyMode_LogOnlyModeType
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const EgressNetworkPolicy_InternetAccessPolicy_LogOnlyMode_WorkloadType =
{
WORKLOAD_TYPE_UNSPECIFIED: 'WORKLOAD_TYPE_UNSPECIFIED',
WORKLOAD_TYPE_UNSPECIFIED: '',
DBSQL: 'DBSQL',
ML_SERVING: 'ML_SERVING',
} as const;
Expand All @@ -332,7 +327,7 @@ export type EgressNetworkPolicy_InternetAccessPolicy_LogOnlyMode_WorkloadType =
*/
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const EgressNetworkPolicy_InternetAccessPolicy_RestrictionMode = {
RESTRICTION_MODE_UNSPECIFIED: 'RESTRICTION_MODE_UNSPECIFIED',
RESTRICTION_MODE_UNSPECIFIED: '',
FULL_ACCESS: 'FULL_ACCESS',
PRIVATE_ACCESS_ONLY: 'PRIVATE_ACCESS_ONLY',
RESTRICTED_ACCESS: 'RESTRICTED_ACCESS',
Expand All @@ -345,8 +340,7 @@ export type EgressNetworkPolicy_InternetAccessPolicy_RestrictionMode =
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const EgressNetworkPolicy_InternetAccessPolicy_StorageDestination_StorageDestinationType =
{
STORAGE_DESTINATION_TYPE_UNSPECIFIED:
'STORAGE_DESTINATION_TYPE_UNSPECIFIED',
STORAGE_DESTINATION_TYPE_UNSPECIFIED: '',
AWS_S3: 'AWS_S3',
CLOUDFLARE_R2: 'CLOUDFLARE_R2',
AZURE_STORAGE: 'AZURE_STORAGE',
Expand Down
2 changes: 2 additions & 0 deletions packages/clusters/NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
### Internal Changes

### API Changes

- **Breaking (beta correction):** Unspecified enum constants now equal `""` because they represent absence and must not expose a sendable sentinel wire value.
11 changes: 5 additions & 6 deletions packages/clusters/src/v2/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export type CloudProviderNodeStatus =
*/
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const ComputeKind = {
COMPUTE_KIND_UNSPECIFIED: 'COMPUTE_KIND_UNSPECIFIED',
COMPUTE_KIND_UNSPECIFIED: '',
CLASSIC_PREVIEW: 'CLASSIC_PREVIEW',
} as const;
export type ComputeKind =
Expand All @@ -83,8 +83,7 @@ export type ComputeKind =
*/
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const ConfidentialComputeType = {
CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED:
'CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED',
CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED: '',
CONFIDENTIAL_COMPUTE_TYPE_NONE: 'CONFIDENTIAL_COMPUTE_TYPE_NONE',
SEV_SNP: 'SEV_SNP',
} as const;
Expand Down Expand Up @@ -974,7 +973,7 @@ export type ClusterState_ClusterState =
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const EnforcePolicyComplianceForClusterRequest_EnforceMode = {
/** Default value. This value is unused. */
ENFORCE_MODE_UNSPECIFIED: 'ENFORCE_MODE_UNSPECIFIED',
ENFORCE_MODE_UNSPECIFIED: '',
/**
* If the cluster is in the TERMINATED state, edit the cluster immediately.
* If the cluster is in the RUNNING state, edit and restart the cluster.
Expand All @@ -997,7 +996,7 @@ export type EnforcePolicyComplianceForClusterRequest_EnforceMode =
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const EnforcePolicyComplianceForClusterResponse_EnforceResult = {
/** Default value. This value is unused. */
ENFORCE_RESULT_UNSPECIFIED: 'ENFORCE_RESULT_UNSPECIFIED',
ENFORCE_RESULT_UNSPECIFIED: '',
/** No changes were made to the cluster. */
NO_CHANGES: 'NO_CHANGES',
/** Changes were applied to the cluster. */
Expand Down Expand Up @@ -1044,7 +1043,7 @@ export type InitScriptExecutionDetails_InitScriptExecutionStatus =
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const PendingEnforcement_EnforcementStatus = {
/** Default value. This value is unused. */
ENFORCEMENT_STATUS_UNSPECIFIED: 'ENFORCEMENT_STATUS_UNSPECIFIED',
ENFORCEMENT_STATUS_UNSPECIFIED: '',
/**
* The pending enforcement will be attempted on the next cluster terminate or
* restart.
Expand Down
2 changes: 2 additions & 0 deletions packages/commandexecution/NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
### Internal Changes

### API Changes

- **Breaking (beta correction):** Unspecified enum constants now equal `""` because they represent absence and must not expose a sendable sentinel wire value.
8 changes: 4 additions & 4 deletions packages/commandexecution/src/v2/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const jsonObjectSchema: z.ZodType<JsonObject> = z.record(

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const CommandStatus = {
COMMAND_STATUS_UNSPECIFIED: 'COMMAND_STATUS_UNSPECIFIED',
COMMAND_STATUS_UNSPECIFIED: '',
COMMAND_CANCELLED: 'Cancelled',
COMMAND_CANCELLING: 'Cancelling',
COMMAND_ERROR: 'Error',
Expand All @@ -34,7 +34,7 @@ export type CommandStatus =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const ContextStatus = {
CONTEXT_STATUS_UNSPECIFIED: 'CONTEXT_STATUS_UNSPECIFIED',
CONTEXT_STATUS_UNSPECIFIED: '',
CONTEXT_RUNNING: 'Running',
CONTEXT_PENDING: 'Pending',
CONTEXT_ERROR: 'Error',
Expand All @@ -45,7 +45,7 @@ export type ContextStatus =

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const Language = {
LANGUAGE_UNSPECIFIED: 'LANGUAGE_UNSPECIFIED',
LANGUAGE_UNSPECIFIED: '',
PYTHON: 'python',
SCALA: 'scala',
SQL: 'sql',
Expand All @@ -55,7 +55,7 @@ export type Language = (typeof Language)[keyof typeof Language] | (string & {});

// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const ResultType = {
RESULT_TYPE_UNSPECIFIED: 'RESULT_TYPE_UNSPECIFIED',
RESULT_TYPE_UNSPECIFIED: '',
ERROR_RESULT: 'error',
IMAGE_RESULT: 'image',
IMAGES_RESULT: 'images',
Expand Down
2 changes: 2 additions & 0 deletions packages/customllms/NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
### Internal Changes

### API Changes

- **Breaking (beta correction):** Unspecified enum constants now equal `""` because they represent absence and must not expose a sendable sentinel wire value.
2 changes: 1 addition & 1 deletion packages/customllms/src/v1/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {z} from 'zod';
/** States of Custom LLM optimization lifecycle. */
// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.
export const State = {
STATE_UNSPECIFIED: 'STATE_UNSPECIFIED',
STATE_UNSPECIFIED: '',
CREATED: 'CREATED',
RUNNING: 'RUNNING',
COMPLETED: 'COMPLETED',
Expand Down
2 changes: 2 additions & 0 deletions packages/database/NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
### Internal Changes

### API Changes

- **Breaking (beta correction):** Unspecified enum constants now equal `""` because they represent absence and must not expose a sendable sentinel wire value.
Loading
Loading