Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[@azure/eventgrid] Fix Timestamp deserialization #30399

Merged
merged 3 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,15 @@ export interface AcsChatThreadCreatedEventData extends AcsChatThreadEventInThrea
createdByCommunicationIdentifier: CommunicationIdentifierModel;
metadata: Record<string, string>;
participants: AcsChatThreadParticipant[];
properties: Record<string, unknown>;
properties: Record<string, any>;
sarangan12 marked this conversation as resolved.
Show resolved Hide resolved
}

// @public
export interface AcsChatThreadCreatedWithUserEventData extends AcsChatThreadEventBase {
createdByCommunicationIdentifier: CommunicationIdentifierModel;
metadata: Record<string, string>;
participants: AcsChatThreadParticipant[];
properties: Record<string, unknown>;
properties: Record<string, any>;
}

// @public
Expand Down Expand Up @@ -149,15 +149,15 @@ export interface AcsChatThreadPropertiesUpdatedEventData extends AcsChatThreadEv
editedByCommunicationIdentifier: CommunicationIdentifierModel;
editTime: Date;
metadata: Record<string, string>;
properties: Record<string, unknown>;
properties: Record<string, any>;
}

// @public
export interface AcsChatThreadPropertiesUpdatedPerUserEventData extends AcsChatThreadEventBase {
editedByCommunicationIdentifier: CommunicationIdentifierModel;
editTime: Date;
metadata: Record<string, string>;
properties: Record<string, unknown>;
properties: Record<string, any>;
}

// @public
Expand Down Expand Up @@ -526,7 +526,7 @@ export interface AcsRouterWorkerSelector {
expirationTime: Date;
key?: string;
labelOperator: AcsRouterLabelOperator;
labelValue: unknown;
labelValue: any;
state: AcsRouterWorkerSelectorState;
ttlSeconds: number;
}
Expand Down Expand Up @@ -1061,7 +1061,7 @@ export interface DeviceLifeCycleEvent {

// @public
export interface DeviceTelemetryEvent {
body: Record<string, unknown>;
body: Record<string, any>;
properties: Record<string, string>;
systemProperties: Record<string, string>;
}
Expand Down Expand Up @@ -1781,15 +1781,15 @@ export interface MachineLearningServicesModelDeployedEventData {
modelIds?: string;
serviceComputeType?: string;
serviceName?: string;
serviceProperties: Record<string, unknown>;
serviceTags: Record<string, unknown>;
serviceProperties: Record<string, any>;
serviceTags: Record<string, any>;
}

// @public
export interface MachineLearningServicesModelRegisteredEventData {
modelName?: string;
modelProperties: Record<string, unknown>;
modelTags: Record<string, unknown>;
modelProperties: Record<string, any>;
modelTags: Record<string, any>;
modelVersion?: string;
}

Expand All @@ -1798,8 +1798,8 @@ export interface MachineLearningServicesRunCompletedEventData {
experimentId?: string;
experimentName?: string;
runId?: string;
runProperties: Record<string, unknown>;
runTags: Record<string, unknown>;
runProperties: Record<string, any>;
runTags: Record<string, any>;
runType?: string;
}

Expand All @@ -1808,9 +1808,9 @@ export interface MachineLearningServicesRunStatusChangedEventData {
experimentId?: string;
experimentName?: string;
runId?: string;
runProperties: Record<string, unknown>;
runProperties: Record<string, any>;
runStatus?: string;
runTags: Record<string, unknown>;
runTags: Record<string, any>;
runType?: string;
}

Expand Down Expand Up @@ -2298,7 +2298,7 @@ export interface ResourceNotificationsResourceUpdatedDetails {
id?: string;
location?: string;
name?: string;
properties: Record<string, unknown>;
properties: Record<string, any>;
tags: Record<string, string>;
type?: string;
}
Expand Down Expand Up @@ -2356,7 +2356,7 @@ export interface ResourceWriteSuccessEventData {
}

// @public
export type ServiceApiVersions = string;
export type ServiceApiVersions = "2024-01-01";

// @public
export interface ServiceBusActiveMessagesAvailablePeriodicNotificationsEventData {
Expand Down Expand Up @@ -2428,7 +2428,7 @@ export interface StorageAsyncOperationInitiatedEventData {
identity?: string;
requestId?: string;
sequencer?: string;
storageDiagnostics: Record<string, unknown>;
storageDiagnostics: Record<string, any>;
url?: string;
}

Expand All @@ -2444,7 +2444,7 @@ export interface StorageBlobCreatedEventData {
identity?: string;
requestId?: string;
sequencer?: string;
storageDiagnostics: Record<string, unknown>;
storageDiagnostics: Record<string, any>;
url?: string;
}

Expand All @@ -2457,7 +2457,7 @@ export interface StorageBlobDeletedEventData {
identity?: string;
requestId?: string;
sequencer?: string;
storageDiagnostics: Record<string, unknown>;
storageDiagnostics: Record<string, any>;
url?: string;
}

Expand All @@ -2481,7 +2481,7 @@ export interface StorageBlobRenamedEventData {
requestId?: string;
sequencer?: string;
sourceUrl?: string;
storageDiagnostics: Record<string, unknown>;
storageDiagnostics: Record<string, any>;
}

// @public
Expand All @@ -2494,7 +2494,7 @@ export interface StorageBlobTierChangedEventData {
identity?: string;
requestId?: string;
sequencer?: string;
storageDiagnostics: Record<string, unknown>;
storageDiagnostics: Record<string, any>;
url?: string;
}

Expand All @@ -2506,7 +2506,7 @@ export interface StorageDirectoryCreatedEventData {
identity?: string;
requestId?: string;
sequencer?: string;
storageDiagnostics: Record<string, unknown>;
storageDiagnostics: Record<string, any>;
url?: string;
}

Expand All @@ -2518,7 +2518,7 @@ export interface StorageDirectoryDeletedEventData {
recursive?: string;
requestId?: string;
sequencer?: string;
storageDiagnostics: Record<string, unknown>;
storageDiagnostics: Record<string, any>;
url?: string;
}

Expand All @@ -2531,7 +2531,7 @@ export interface StorageDirectoryRenamedEventData {
requestId?: string;
sequencer?: string;
sourceUrl?: string;
storageDiagnostics: Record<string, unknown>;
storageDiagnostics: Record<string, any>;
}

// @public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ export {
AcsRecordingFileStatusUpdatedEventData,
AcsRecordingStorageInfo,
AcsRecordingChunkInfo,
recordingContentType,
recordingChannelType,
recordingFormatType,
RecordingContentType,
RecordingChannelType,
RecordingFormatType,
AcsEmailDeliveryReportReceivedEventData,
AcsEmailDeliveryReportStatus,
AcsEmailDeliveryReportStatusDetails,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ export {
AcsRecordingFileStatusUpdatedEventData,
AcsRecordingStorageInfo,
AcsRecordingChunkInfo,
recordingContentType,
recordingChannelType,
recordingFormatType,
RecordingContentType,
RecordingChannelType,
RecordingFormatType,
AcsEmailDeliveryReportReceivedEventData,
AcsEmailDeliveryReportStatus,
AcsEmailDeliveryReportStatusDetails,
Expand Down
Loading