Skip to content

Commit

Permalink
[@Azure/eventgrid] Fix Timestamp deserialization (#30399)
Browse files Browse the repository at this point in the history
### Packages impacted by this PR

@Azure/eventgrid

### Issues associated with this PR

NA

### Describe the problem that is addressed by this PR

Fix Timestamp deserialization


### What are the possible designs available to address the problem? If
there are more than one possible design, why was the one in this PR
chosen?

No special design considerations

### Are there test cases added in this PR? _(If not, why?)_

No

### Provide a list of related PRs _(if any)_

Azure/azure-sdk-for-net#44982

### Command used to generate this PR:**_(Applicable only to SDK release
request PRs)_

```autorest --typescript swagger\README.md```


### Checklists
- [X] Added impacted package name to the issue description
- [ ] Does this PR needs any fixes in the SDK Generator?** _(If so, create an Issue in the [Autorest/typescript](https://github.com/Azure/autorest.typescript) repository and link it here)_
- [X] Added a changelog (if necessary)
  • Loading branch information
sarangan12 authored Jul 16, 2024
1 parent 2332bfd commit c8b33a3
Show file tree
Hide file tree
Showing 10 changed files with 79 additions and 82 deletions.
12 changes: 4 additions & 8 deletions sdk/eventgrid/eventgrid-system-events/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
# Release History

## 1.0.0-beta.2 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 1.0.0-beta.2 (2024-07-16)

### Other Changes

## 1.0.0-beta.1 (2026-06-11)
- Regenerated SDK with latest commit. Refer [#30399](https://github.com/Azure/azure-sdk-for-js/pull/30399) for further details.

## 1.0.0-beta.1 (2024-06-11)

### Features Added

Expand Down
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>;
}

// @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

0 comments on commit c8b33a3

Please sign in to comment.