diff --git a/appointment.ts b/appointment.ts index 099cbccf..4be9931a 100644 --- a/appointment.ts +++ b/appointment.ts @@ -238,6 +238,10 @@ export interface AppointmentExternalAccess { * @generated from protobuf field: string URL = 2 */ URL: string; // Signed TinyURL embedding a JWT; external clients resolve this URL to authenticate and call the appointment public APIs + /** + * @generated from protobuf field: int64 ExpirationTime = 3 + */ + ExpirationTime: bigint; // Unix timestamp indicating when the signed URL expires (seconds since epoch) } // @generated message type with reflection information, may provide speed optimized methods class Appointment$Type extends MessageType { @@ -604,13 +608,15 @@ class AppointmentExternalAccess$Type extends MessageType): AppointmentExternalAccess { const message = globalThis.Object.create((this.messagePrototype!)); message.Hash = ""; message.URL = ""; + message.ExpirationTime = 0n; if (value !== undefined) reflectionMergePartial(this, message, value); return message; @@ -626,6 +632,9 @@ class AppointmentExternalAccess$Type extends MessageType