@azure/eventgrid-systemevents 1.0.0-alpha.20250609.1 → 1.0.0-alpha.20250610.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/generated/index.d.ts +1 -1
- package/dist/browser/generated/index.d.ts.map +1 -1
- package/dist/browser/generated/index.js +1 -1
- package/dist/browser/generated/index.js.map +1 -1
- package/dist/browser/generated/models/index.d.ts +1 -1
- package/dist/browser/generated/models/index.d.ts.map +1 -1
- package/dist/browser/generated/models/index.js +1 -1
- package/dist/browser/generated/models/index.js.map +1 -1
- package/dist/browser/generated/models/models.d.ts +43 -40
- package/dist/browser/generated/models/models.d.ts.map +1 -1
- package/dist/browser/generated/models/models.js +47 -45
- package/dist/browser/generated/models/models.js.map +1 -1
- package/dist/browser/index.d.ts +1 -1
- package/dist/browser/index.d.ts.map +1 -1
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/commonjs/generated/index.d.ts +1 -1
- package/dist/commonjs/generated/index.d.ts.map +1 -1
- package/dist/commonjs/generated/index.js +5 -4
- package/dist/commonjs/generated/index.js.map +1 -1
- package/dist/commonjs/generated/models/index.d.ts +1 -1
- package/dist/commonjs/generated/models/index.d.ts.map +1 -1
- package/dist/commonjs/generated/models/index.js +5 -5
- package/dist/commonjs/generated/models/index.js.map +1 -1
- package/dist/commonjs/generated/models/models.d.ts +43 -40
- package/dist/commonjs/generated/models/models.d.ts.map +1 -1
- package/dist/commonjs/generated/models/models.js +48 -46
- package/dist/commonjs/generated/models/models.js.map +1 -1
- package/dist/commonjs/index.d.ts +1 -1
- package/dist/commonjs/index.d.ts.map +1 -1
- package/dist/commonjs/index.js +4 -4
- package/dist/commonjs/index.js.map +1 -1
- package/dist/esm/generated/index.d.ts +1 -1
- package/dist/esm/generated/index.d.ts.map +1 -1
- package/dist/esm/generated/index.js +1 -1
- package/dist/esm/generated/index.js.map +1 -1
- package/dist/esm/generated/models/index.d.ts +1 -1
- package/dist/esm/generated/models/index.d.ts.map +1 -1
- package/dist/esm/generated/models/index.js +1 -1
- package/dist/esm/generated/models/index.js.map +1 -1
- package/dist/esm/generated/models/models.d.ts +43 -40
- package/dist/esm/generated/models/models.d.ts.map +1 -1
- package/dist/esm/generated/models/models.js +47 -45
- package/dist/esm/generated/models/models.js.map +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/react-native/generated/index.d.ts +1 -1
- package/dist/react-native/generated/index.d.ts.map +1 -1
- package/dist/react-native/generated/index.js +1 -1
- package/dist/react-native/generated/index.js.map +1 -1
- package/dist/react-native/generated/models/index.d.ts +1 -1
- package/dist/react-native/generated/models/index.d.ts.map +1 -1
- package/dist/react-native/generated/models/index.js +1 -1
- package/dist/react-native/generated/models/index.js.map +1 -1
- package/dist/react-native/generated/models/models.d.ts +43 -40
- package/dist/react-native/generated/models/models.d.ts.map +1 -1
- package/dist/react-native/generated/models/models.js +47 -45
- package/dist/react-native/generated/models/models.js.map +1 -1
- package/dist/react-native/index.d.ts +1 -1
- package/dist/react-native/index.d.ts.map +1 -1
- package/dist/react-native/index.js +1 -1
- package/dist/react-native/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -207,9 +207,9 @@ export declare function apiManagementCircuitBreakerClosedEventDataDeserializer(i
|
|
|
207
207
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayTokenNearExpiry event. */
|
|
208
208
|
export interface ApiManagementGatewayTokenNearExpiryEventData {
|
|
209
209
|
/** Information related to a given self-hosted gateway deployment. */
|
|
210
|
-
|
|
210
|
+
gateway: ApiManagementGateway;
|
|
211
211
|
/** Information related to a an expired gateway token for a self-hosted gateway deployment. */
|
|
212
|
-
|
|
212
|
+
token: ApiManagementNearExpiryGatewayToken;
|
|
213
213
|
}
|
|
214
214
|
export declare function apiManagementGatewayTokenNearExpiryEventDataDeserializer(item: any): ApiManagementGatewayTokenNearExpiryEventData;
|
|
215
215
|
/** Information related to a given self-hosted gateway deployment. */
|
|
@@ -223,21 +223,21 @@ export declare function apiManagementGatewayDeserializer(item: any): ApiManageme
|
|
|
223
223
|
/** Information related to a gateway token that is near expiry for a self-hosted gateway deployment. */
|
|
224
224
|
export interface ApiManagementNearExpiryGatewayToken {
|
|
225
225
|
/** Timestamp when the gateway token will expire. */
|
|
226
|
-
|
|
226
|
+
expiresOn: Date;
|
|
227
227
|
}
|
|
228
228
|
export declare function apiManagementNearExpiryGatewayTokenDeserializer(item: any): ApiManagementNearExpiryGatewayToken;
|
|
229
229
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayTokenExpired event. */
|
|
230
230
|
export interface ApiManagementGatewayTokenExpiredEventData {
|
|
231
231
|
/** Information related to a given self-hosted gateway deployment. */
|
|
232
|
-
|
|
232
|
+
gateway: ApiManagementGateway;
|
|
233
233
|
/** Information related to a an expired gateway token for a self-hosted gateway deployment. */
|
|
234
|
-
|
|
234
|
+
token: ApiManagementExpiredGatewayToken;
|
|
235
235
|
}
|
|
236
236
|
export declare function apiManagementGatewayTokenExpiredEventDataDeserializer(item: any): ApiManagementGatewayTokenExpiredEventData;
|
|
237
237
|
/** Information related to a gateway token that has expired for a self-hosted gateway deployment. */
|
|
238
238
|
export interface ApiManagementExpiredGatewayToken {
|
|
239
239
|
/** Timestamp when the gateway token has expired. */
|
|
240
|
-
|
|
240
|
+
expiresOn: Date;
|
|
241
241
|
}
|
|
242
242
|
export declare function apiManagementExpiredGatewayTokenDeserializer(item: any): ApiManagementExpiredGatewayToken;
|
|
243
243
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.KeyValueModified event. */
|
|
@@ -411,7 +411,9 @@ export declare enum KnownCommunicationIdentifierModelKind {
|
|
|
411
411
|
/** Phone Number */
|
|
412
412
|
PhoneNumber = "phoneNumber",
|
|
413
413
|
/** Microsoft Teams User */
|
|
414
|
-
MicrosoftTeamsUser = "microsoftTeamsUser"
|
|
414
|
+
MicrosoftTeamsUser = "microsoftTeamsUser",
|
|
415
|
+
/** Microsoft Teams App */
|
|
416
|
+
MicrosoftTeamsApp = "microsoftTeamsApp"
|
|
415
417
|
}
|
|
416
418
|
/**
|
|
417
419
|
* Communication model identifier kind \
|
|
@@ -421,7 +423,8 @@ export declare enum KnownCommunicationIdentifierModelKind {
|
|
|
421
423
|
* **unknown**: Unknown \
|
|
422
424
|
* **communicationUser**: Communication User \
|
|
423
425
|
* **phoneNumber**: Phone Number \
|
|
424
|
-
* **microsoftTeamsUser**: Microsoft Teams User
|
|
426
|
+
* **microsoftTeamsUser**: Microsoft Teams User \
|
|
427
|
+
* **microsoftTeamsApp**: Microsoft Teams App
|
|
425
428
|
*/
|
|
426
429
|
export type CommunicationIdentifierModelKind = string;
|
|
427
430
|
/** A user that got created with an Azure Communication Services resource. */
|
|
@@ -510,11 +513,11 @@ export interface AcsCallParticipant {
|
|
|
510
513
|
/** The communication identifier of the participant user */
|
|
511
514
|
communicationIdentifier?: CommunicationIdentifierModel;
|
|
512
515
|
/** The role of the participant */
|
|
513
|
-
role?:
|
|
516
|
+
role?: AcsCallParticipantKind;
|
|
514
517
|
}
|
|
515
518
|
export declare function acsCallParticipantDeserializer(item: any): AcsCallParticipant;
|
|
516
|
-
/** Call participant
|
|
517
|
-
export declare enum
|
|
519
|
+
/** Call participant kind. */
|
|
520
|
+
export declare enum KnownAcsCallParticipantKind {
|
|
518
521
|
/** Attendee */
|
|
519
522
|
Attendee = "Attendee",
|
|
520
523
|
/** Presenter */
|
|
@@ -527,8 +530,8 @@ export declare enum KnownAcsCallParticipantRoleKind {
|
|
|
527
530
|
Collaborator = "Collaborator"
|
|
528
531
|
}
|
|
529
532
|
/**
|
|
530
|
-
* Call participant
|
|
531
|
-
* {@link
|
|
533
|
+
* Call participant kind. \
|
|
534
|
+
* {@link KnownAcsCallParticipantKind} can be used interchangeably with AcsCallParticipantKind,
|
|
532
535
|
* this enum contains the known values that the service supports.
|
|
533
536
|
* ### Known values supported by the service
|
|
534
537
|
* **Attendee**: Attendee \
|
|
@@ -537,7 +540,7 @@ export declare enum KnownAcsCallParticipantRoleKind {
|
|
|
537
540
|
* **Consumer**: Consumer \
|
|
538
541
|
* **Collaborator**: Collaborator
|
|
539
542
|
*/
|
|
540
|
-
export type
|
|
543
|
+
export type AcsCallParticipantKind = string;
|
|
541
544
|
/** Schema of calling event group properties */
|
|
542
545
|
export interface AcsCallGroup {
|
|
543
546
|
/** Group Id. */
|
|
@@ -569,7 +572,7 @@ export interface AcsCallEndedBy {
|
|
|
569
572
|
/** The communication identifier of the call ended by */
|
|
570
573
|
communicationIdentifier: CommunicationIdentifierModel;
|
|
571
574
|
/** The type of call ended by. */
|
|
572
|
-
|
|
575
|
+
kind: AcsCallEndedByKind;
|
|
573
576
|
/** The name of the call ended by. */
|
|
574
577
|
name: string;
|
|
575
578
|
}
|
|
@@ -923,11 +926,11 @@ export interface AcsRecordingFileStatusUpdatedEventData {
|
|
|
923
926
|
/** The recording duration in milliseconds */
|
|
924
927
|
recordingDurationMs?: number;
|
|
925
928
|
/** The recording content type- AudioVideo, or Audio */
|
|
926
|
-
recordingContentType:
|
|
929
|
+
recordingContentType: AcsRecordingContentType;
|
|
927
930
|
/** The recording channel type - Mixed, Unmixed */
|
|
928
|
-
recordingChannelType:
|
|
931
|
+
recordingChannelType: AcsRecordingChannelType;
|
|
929
932
|
/** The recording format type - Mp4, Mp3, Wav */
|
|
930
|
-
recordingFormatType:
|
|
933
|
+
recordingFormatType: AcsRecordingFormatType;
|
|
931
934
|
/** The reason for ending recording session */
|
|
932
935
|
sessionEndReason?: string;
|
|
933
936
|
}
|
|
@@ -956,7 +959,7 @@ export interface AcsRecordingChunkInfo {
|
|
|
956
959
|
}
|
|
957
960
|
export declare function acsRecordingChunkInfoDeserializer(item: any): AcsRecordingChunkInfo;
|
|
958
961
|
/** Recording content type */
|
|
959
|
-
export declare enum
|
|
962
|
+
export declare enum KnownAcsRecordingContentType {
|
|
960
963
|
/** AudioVideo content type */
|
|
961
964
|
AudioVideo = "AudioVideo",
|
|
962
965
|
/** Audio content type */
|
|
@@ -964,15 +967,15 @@ export declare enum KnownRecordingContentType {
|
|
|
964
967
|
}
|
|
965
968
|
/**
|
|
966
969
|
* Recording content type \
|
|
967
|
-
* {@link
|
|
970
|
+
* {@link KnownAcsRecordingContentType} can be used interchangeably with AcsRecordingContentType,
|
|
968
971
|
* this enum contains the known values that the service supports.
|
|
969
972
|
* ### Known values supported by the service
|
|
970
973
|
* **AudioVideo**: AudioVideo content type \
|
|
971
974
|
* **Audio**: Audio content type
|
|
972
975
|
*/
|
|
973
|
-
export type
|
|
976
|
+
export type AcsRecordingContentType = string;
|
|
974
977
|
/** Recording channel type */
|
|
975
|
-
export declare enum
|
|
978
|
+
export declare enum KnownAcsRecordingChannelType {
|
|
976
979
|
/** Mixed channel type */
|
|
977
980
|
Mixed = "Mixed",
|
|
978
981
|
/** Unmixed channel type */
|
|
@@ -980,15 +983,15 @@ export declare enum KnownRecordingChannelType {
|
|
|
980
983
|
}
|
|
981
984
|
/**
|
|
982
985
|
* Recording channel type \
|
|
983
|
-
* {@link
|
|
986
|
+
* {@link KnownAcsRecordingChannelType} can be used interchangeably with AcsRecordingChannelType,
|
|
984
987
|
* this enum contains the known values that the service supports.
|
|
985
988
|
* ### Known values supported by the service
|
|
986
989
|
* **Mixed**: Mixed channel type \
|
|
987
990
|
* **Unmixed**: Unmixed channel type
|
|
988
991
|
*/
|
|
989
|
-
export type
|
|
992
|
+
export type AcsRecordingChannelType = string;
|
|
990
993
|
/** Recording format type */
|
|
991
|
-
export declare enum
|
|
994
|
+
export declare enum KnownAcsRecordingFormatType {
|
|
992
995
|
/** WAV format */
|
|
993
996
|
Wav = "Wav",
|
|
994
997
|
/** MP3 format */
|
|
@@ -998,14 +1001,14 @@ export declare enum KnownRecordingFormatType {
|
|
|
998
1001
|
}
|
|
999
1002
|
/**
|
|
1000
1003
|
* Recording format type \
|
|
1001
|
-
* {@link
|
|
1004
|
+
* {@link KnownAcsRecordingFormatType} can be used interchangeably with AcsRecordingFormatType,
|
|
1002
1005
|
* this enum contains the known values that the service supports.
|
|
1003
1006
|
* ### Known values supported by the service
|
|
1004
1007
|
* **Wav**: WAV format \
|
|
1005
1008
|
* **Mp3**: MP3 format \
|
|
1006
1009
|
* **Mp4**: MP4 format
|
|
1007
1010
|
*/
|
|
1008
|
-
export type
|
|
1011
|
+
export type AcsRecordingFormatType = string;
|
|
1009
1012
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.EmailDeliveryReportReceived event. */
|
|
1010
1013
|
export interface AcsEmailDeliveryReportReceivedEventData {
|
|
1011
1014
|
/** The Sender Email Address */
|
|
@@ -2123,13 +2126,13 @@ export declare function iotHubDeviceTelemetryEventDataDeserializer(item: any): I
|
|
|
2123
2126
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceCreated event. */
|
|
2124
2127
|
export interface HealthcareFhirResourceCreatedEventData {
|
|
2125
2128
|
/** Type of HL7 FHIR resource. */
|
|
2126
|
-
|
|
2129
|
+
fhirResourceType: HealthcareFhirResourceType;
|
|
2127
2130
|
/** Domain name of FHIR account for this resource. */
|
|
2128
|
-
|
|
2131
|
+
fhirServiceHostName: string;
|
|
2129
2132
|
/** Id of HL7 FHIR resource. */
|
|
2130
|
-
|
|
2133
|
+
fhirResourceId: string;
|
|
2131
2134
|
/** VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion). */
|
|
2132
|
-
|
|
2135
|
+
fhirResourceVersionId: number;
|
|
2133
2136
|
}
|
|
2134
2137
|
export declare function healthcareFhirResourceCreatedEventDataDeserializer(item: any): HealthcareFhirResourceCreatedEventData;
|
|
2135
2138
|
/** Schema of FHIR resource type enumeration. */
|
|
@@ -2628,25 +2631,25 @@ export type HealthcareFhirResourceType = string;
|
|
|
2628
2631
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceUpdated event. */
|
|
2629
2632
|
export interface HealthcareFhirResourceUpdatedEventData {
|
|
2630
2633
|
/** Type of HL7 FHIR resource. */
|
|
2631
|
-
|
|
2634
|
+
fhirResourceType: HealthcareFhirResourceType;
|
|
2632
2635
|
/** Domain name of FHIR account for this resource. */
|
|
2633
|
-
|
|
2636
|
+
fhirServiceHostName: string;
|
|
2634
2637
|
/** Id of HL7 FHIR resource. */
|
|
2635
|
-
|
|
2638
|
+
fhirResourceId: string;
|
|
2636
2639
|
/** VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion). */
|
|
2637
|
-
|
|
2640
|
+
fhirResourceVersionId: number;
|
|
2638
2641
|
}
|
|
2639
2642
|
export declare function healthcareFhirResourceUpdatedEventDataDeserializer(item: any): HealthcareFhirResourceUpdatedEventData;
|
|
2640
2643
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceDeleted event. */
|
|
2641
2644
|
export interface HealthcareFhirResourceDeletedEventData {
|
|
2642
2645
|
/** Type of HL7 FHIR resource. */
|
|
2643
|
-
|
|
2646
|
+
fhirResourceType: HealthcareFhirResourceType;
|
|
2644
2647
|
/** Domain name of FHIR account for this resource. */
|
|
2645
|
-
|
|
2648
|
+
fhirServiceHostName: string;
|
|
2646
2649
|
/** Id of HL7 FHIR resource. */
|
|
2647
|
-
|
|
2650
|
+
fhirResourceId: string;
|
|
2648
2651
|
/** VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion). */
|
|
2649
|
-
|
|
2652
|
+
fhirResourceVersionId: number;
|
|
2650
2653
|
}
|
|
2651
2654
|
export declare function healthcareFhirResourceDeletedEventDataDeserializer(item: any): HealthcareFhirResourceDeletedEventData;
|
|
2652
2655
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.DicomImageCreated event. */
|
|
@@ -3732,7 +3735,7 @@ export interface StorageTaskAssignmentCompletedEventData {
|
|
|
3732
3735
|
/** The task name for a storage task. */
|
|
3733
3736
|
taskName?: string;
|
|
3734
3737
|
/** The summary report blob url for a storage task */
|
|
3735
|
-
|
|
3738
|
+
summaryReportBlobUrl: string;
|
|
3736
3739
|
}
|
|
3737
3740
|
export declare function storageTaskAssignmentCompletedEventDataDeserializer(item: any): StorageTaskAssignmentCompletedEventData;
|
|
3738
3741
|
/** The status for a storage task. */
|