@microsoft/msgraph-sdk 1.0.0-preview.61 → 1.0.0-preview.62
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/models/index.d.ts +149 -32
- package/models/index.d.ts.map +1 -1
- package/models/index.js +126 -1
- package/models/index.js.map +1 -1
- package/models/partners/billing/index.d.ts +22 -0
- package/models/partners/billing/index.d.ts.map +1 -1
- package/models/partners/billing/index.js +29 -1
- package/models/partners/billing/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/models/index.d.ts
CHANGED
|
@@ -1930,7 +1930,7 @@ export interface AdministrativeUnit extends DirectoryObject, Parsable {
|
|
|
1930
1930
|
*/
|
|
1931
1931
|
extensions?: Extension[] | null;
|
|
1932
1932
|
/**
|
|
1933
|
-
*
|
|
1933
|
+
* true if members of this administrative unit should be treated as sensitive, which requires specific permissions to manage. If not set, the default value is null and the default behavior is false. Use this property to define administrative units with roles that don't inherit from tenant-level administrators, and where the management of individual member objects is limited to administrators scoped to a restricted management administrative unit. This property is immutable and can't be changed later. For more information on how to work with restricted management administrative units, see Restricted management administrative units in Microsoft Entra ID.
|
|
1934
1934
|
*/
|
|
1935
1935
|
isMemberManagementRestricted?: boolean | null;
|
|
1936
1936
|
/**
|
|
@@ -8354,6 +8354,21 @@ export interface CallEndedEventMessageDetail extends EventMessageDetail, Parsabl
|
|
|
8354
8354
|
*/
|
|
8355
8355
|
initiator?: IdentitySet | null;
|
|
8356
8356
|
}
|
|
8357
|
+
export interface CallEvent extends Entity, Parsable {
|
|
8358
|
+
/**
|
|
8359
|
+
* The callEventType property
|
|
8360
|
+
*/
|
|
8361
|
+
callEventType?: CallEventType | null;
|
|
8362
|
+
/**
|
|
8363
|
+
* The eventDateTime property
|
|
8364
|
+
*/
|
|
8365
|
+
eventDateTime?: Date | null;
|
|
8366
|
+
/**
|
|
8367
|
+
* The participants property
|
|
8368
|
+
*/
|
|
8369
|
+
participants?: Participant[] | null;
|
|
8370
|
+
}
|
|
8371
|
+
export type CallEventType = (typeof CallEventTypeObject)[keyof typeof CallEventTypeObject];
|
|
8357
8372
|
export interface CallMediaState extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8358
8373
|
/**
|
|
8359
8374
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -8662,19 +8677,19 @@ export interface CertificateAuthority extends AdditionalDataHolder, BackedModel,
|
|
|
8662
8677
|
}
|
|
8663
8678
|
export interface CertificateAuthorityDetail extends DirectoryObject, Parsable {
|
|
8664
8679
|
/**
|
|
8665
|
-
* The certificate
|
|
8680
|
+
* The public key of the certificate authority.
|
|
8666
8681
|
*/
|
|
8667
8682
|
certificate?: ArrayBuffer | null;
|
|
8668
8683
|
/**
|
|
8669
|
-
* The
|
|
8684
|
+
* The type of certificate authority. The possible values are: root, intermediate, unknownFutureValue. Supports $filter (eq).
|
|
8670
8685
|
*/
|
|
8671
8686
|
certificateAuthorityType?: CertificateAuthorityType | null;
|
|
8672
8687
|
/**
|
|
8673
|
-
* The
|
|
8688
|
+
* The URL to check if the certificate is revoked.
|
|
8674
8689
|
*/
|
|
8675
8690
|
certificateRevocationListUrl?: string | null;
|
|
8676
8691
|
/**
|
|
8677
|
-
* The
|
|
8692
|
+
* The date and time when the certificate authority was created.
|
|
8678
8693
|
*/
|
|
8679
8694
|
createdDateTime?: Date | null;
|
|
8680
8695
|
/**
|
|
@@ -8682,27 +8697,27 @@ export interface CertificateAuthorityDetail extends DirectoryObject, Parsable {
|
|
|
8682
8697
|
*/
|
|
8683
8698
|
deltaCertificateRevocationListUrl?: string | null;
|
|
8684
8699
|
/**
|
|
8685
|
-
* The
|
|
8700
|
+
* The display name of the certificate authority.
|
|
8686
8701
|
*/
|
|
8687
8702
|
displayName?: string | null;
|
|
8688
8703
|
/**
|
|
8689
|
-
* The
|
|
8704
|
+
* The date and time when the certificate authority expires. Supports $filter (eq) and $orderby.
|
|
8690
8705
|
*/
|
|
8691
8706
|
expirationDateTime?: Date | null;
|
|
8692
8707
|
/**
|
|
8693
|
-
*
|
|
8708
|
+
* Indicates whether the certificate picker presents the certificate authority to the user to use for authentication. Default value is false. Optional.
|
|
8694
8709
|
*/
|
|
8695
8710
|
isIssuerHintEnabled?: boolean | null;
|
|
8696
8711
|
/**
|
|
8697
|
-
* The issuer
|
|
8712
|
+
* The issuer of the certificate authority.
|
|
8698
8713
|
*/
|
|
8699
8714
|
issuer?: string | null;
|
|
8700
8715
|
/**
|
|
8701
|
-
* The
|
|
8716
|
+
* The subject key identifier of certificate authority.
|
|
8702
8717
|
*/
|
|
8703
8718
|
issuerSubjectKeyIdentifier?: string | null;
|
|
8704
8719
|
/**
|
|
8705
|
-
* The thumbprint
|
|
8720
|
+
* The thumbprint of certificate authority certificate. Supports $filter (eq, startswith).
|
|
8706
8721
|
*/
|
|
8707
8722
|
thumbprint?: string | null;
|
|
8708
8723
|
}
|
|
@@ -8727,23 +8742,23 @@ export interface CertificateBasedAuthConfigurationCollectionResponse extends Bas
|
|
|
8727
8742
|
}
|
|
8728
8743
|
export interface CertificateBasedAuthPki extends DirectoryObject, Parsable {
|
|
8729
8744
|
/**
|
|
8730
|
-
* The
|
|
8745
|
+
* The collection of certificate authorities contained in this public key infrastructure resource.
|
|
8731
8746
|
*/
|
|
8732
8747
|
certificateAuthorities?: CertificateAuthorityDetail[] | null;
|
|
8733
8748
|
/**
|
|
8734
|
-
* The
|
|
8749
|
+
* The name of the object. Maximum length is 256 characters.
|
|
8735
8750
|
*/
|
|
8736
8751
|
displayName?: string | null;
|
|
8737
8752
|
/**
|
|
8738
|
-
* The
|
|
8753
|
+
* The date and time when the object was created or last modified.
|
|
8739
8754
|
*/
|
|
8740
8755
|
lastModifiedDateTime?: Date | null;
|
|
8741
8756
|
/**
|
|
8742
|
-
* The status
|
|
8757
|
+
* The status of any asynchronous jobs runs on the object which can be upload or delete.
|
|
8743
8758
|
*/
|
|
8744
8759
|
status?: string | null;
|
|
8745
8760
|
/**
|
|
8746
|
-
* The
|
|
8761
|
+
* The status details of the upload/deleted operation of PKI (Public Key Infrastructure).
|
|
8747
8762
|
*/
|
|
8748
8763
|
statusDetails?: string | null;
|
|
8749
8764
|
}
|
|
@@ -14510,6 +14525,12 @@ export declare function createCallCollectionResponseFromDiscriminatorValue(parse
|
|
|
14510
14525
|
* @returns {CallEndedEventMessageDetail}
|
|
14511
14526
|
*/
|
|
14512
14527
|
export declare function createCallEndedEventMessageDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14528
|
+
/**
|
|
14529
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14530
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14531
|
+
* @returns {CallEvent}
|
|
14532
|
+
*/
|
|
14533
|
+
export declare function createCallEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14513
14534
|
/**
|
|
14514
14535
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14515
14536
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17300,6 +17321,18 @@ export declare function createEmailPayloadDetailFromDiscriminatorValue(parseNode
|
|
|
17300
17321
|
* @returns {EmailSettings}
|
|
17301
17322
|
*/
|
|
17302
17323
|
export declare function createEmailSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17324
|
+
/**
|
|
17325
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17326
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17327
|
+
* @returns {EmergencyCallerInfo}
|
|
17328
|
+
*/
|
|
17329
|
+
export declare function createEmergencyCallerInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17330
|
+
/**
|
|
17331
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17332
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17333
|
+
* @returns {EmergencyCallEvent}
|
|
17334
|
+
*/
|
|
17335
|
+
export declare function createEmergencyCallEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17303
17336
|
/**
|
|
17304
17337
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17305
17338
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -29396,6 +29429,11 @@ export declare function deserializeIntoCallCollectionResponse(callCollectionResp
|
|
|
29396
29429
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29397
29430
|
*/
|
|
29398
29431
|
export declare function deserializeIntoCallEndedEventMessageDetail(callEndedEventMessageDetail?: Partial<CallEndedEventMessageDetail> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29432
|
+
/**
|
|
29433
|
+
* The deserialization information for the current model
|
|
29434
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29435
|
+
*/
|
|
29436
|
+
export declare function deserializeIntoCallEvent(callEvent?: Partial<CallEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29399
29437
|
/**
|
|
29400
29438
|
* The deserialization information for the current model
|
|
29401
29439
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31716,6 +31754,16 @@ export declare function deserializeIntoEmailPayloadDetail(emailPayloadDetail?: P
|
|
|
31716
31754
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31717
31755
|
*/
|
|
31718
31756
|
export declare function deserializeIntoEmailSettings(emailSettings?: Partial<EmailSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31757
|
+
/**
|
|
31758
|
+
* The deserialization information for the current model
|
|
31759
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31760
|
+
*/
|
|
31761
|
+
export declare function deserializeIntoEmergencyCallerInfo(emergencyCallerInfo?: Partial<EmergencyCallerInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31762
|
+
/**
|
|
31763
|
+
* The deserialization information for the current model
|
|
31764
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31765
|
+
*/
|
|
31766
|
+
export declare function deserializeIntoEmergencyCallEvent(emergencyCallEvent?: Partial<EmergencyCallEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31719
31767
|
/**
|
|
31720
31768
|
* The deserialization information for the current model
|
|
31721
31769
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -39408,7 +39456,7 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
39408
39456
|
*/
|
|
39409
39457
|
isManaged?: boolean | null;
|
|
39410
39458
|
/**
|
|
39411
|
-
*
|
|
39459
|
+
* Indicates whether the device is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a device that's a member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. Returned only on $select.
|
|
39412
39460
|
*/
|
|
39413
39461
|
isManagementRestricted?: boolean | null;
|
|
39414
39462
|
/**
|
|
@@ -41798,7 +41846,7 @@ export interface Directory extends Entity, Parsable {
|
|
|
41798
41846
|
*/
|
|
41799
41847
|
onPremisesSynchronization?: OnPremisesDirectorySynchronization[] | null;
|
|
41800
41848
|
/**
|
|
41801
|
-
* The
|
|
41849
|
+
* The collection of public key infrastructure instances for the certificate-based authentication feature for users in a Microsoft Entra tenant.
|
|
41802
41850
|
*/
|
|
41803
41851
|
publicKeyInfrastructure?: PublicKeyInfrastructureRoot | null;
|
|
41804
41852
|
/**
|
|
@@ -44115,6 +44163,54 @@ export interface EmailSettings extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
44115
44163
|
*/
|
|
44116
44164
|
useCompanyBranding?: boolean | null;
|
|
44117
44165
|
}
|
|
44166
|
+
export interface EmergencyCallerInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
44167
|
+
/**
|
|
44168
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
44169
|
+
*/
|
|
44170
|
+
additionalData?: Record<string, unknown>;
|
|
44171
|
+
/**
|
|
44172
|
+
* Stores model information.
|
|
44173
|
+
*/
|
|
44174
|
+
backingStoreEnabled?: boolean | null;
|
|
44175
|
+
/**
|
|
44176
|
+
* The displayName property
|
|
44177
|
+
*/
|
|
44178
|
+
displayName?: string | null;
|
|
44179
|
+
/**
|
|
44180
|
+
* The location property
|
|
44181
|
+
*/
|
|
44182
|
+
location?: Location | null;
|
|
44183
|
+
/**
|
|
44184
|
+
* The OdataType property
|
|
44185
|
+
*/
|
|
44186
|
+
odataType?: string | null;
|
|
44187
|
+
/**
|
|
44188
|
+
* The phoneNumber property
|
|
44189
|
+
*/
|
|
44190
|
+
phoneNumber?: string | null;
|
|
44191
|
+
/**
|
|
44192
|
+
* The tenantId property
|
|
44193
|
+
*/
|
|
44194
|
+
tenantId?: string | null;
|
|
44195
|
+
/**
|
|
44196
|
+
* The upn property
|
|
44197
|
+
*/
|
|
44198
|
+
upn?: string | null;
|
|
44199
|
+
}
|
|
44200
|
+
export interface EmergencyCallEvent extends CallEvent, Parsable {
|
|
44201
|
+
/**
|
|
44202
|
+
* The callerInfo property
|
|
44203
|
+
*/
|
|
44204
|
+
callerInfo?: EmergencyCallerInfo | null;
|
|
44205
|
+
/**
|
|
44206
|
+
* The emergencyNumberDialed property
|
|
44207
|
+
*/
|
|
44208
|
+
emergencyNumberDialed?: string | null;
|
|
44209
|
+
/**
|
|
44210
|
+
* The policyName property
|
|
44211
|
+
*/
|
|
44212
|
+
policyName?: string | null;
|
|
44213
|
+
}
|
|
44118
44214
|
/**
|
|
44119
44215
|
* Represents a container that exposes navigation properties for employee experience resources.
|
|
44120
44216
|
*/
|
|
@@ -45959,7 +46055,7 @@ export interface Group extends DirectoryObject, Parsable {
|
|
|
45959
46055
|
*/
|
|
45960
46056
|
isAssignableToRole?: boolean | null;
|
|
45961
46057
|
/**
|
|
45962
|
-
*
|
|
46058
|
+
* Indicates whether the group is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a group member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. Returned only on $select.
|
|
45963
46059
|
*/
|
|
45964
46060
|
isManagementRestricted?: boolean | null;
|
|
45965
46061
|
/**
|
|
@@ -59913,7 +60009,7 @@ export interface PublicInnerError extends AdditionalDataHolder, BackedModel, Par
|
|
|
59913
60009
|
}
|
|
59914
60010
|
export interface PublicKeyInfrastructureRoot extends Entity, Parsable {
|
|
59915
60011
|
/**
|
|
59916
|
-
* The
|
|
60012
|
+
* The collection of public key infrastructure instances for the certificate-based authentication feature for users.
|
|
59917
60013
|
*/
|
|
59918
60014
|
certificateBasedAuthConfigurations?: CertificateBasedAuthPki[] | null;
|
|
59919
60015
|
}
|
|
@@ -65044,6 +65140,11 @@ export declare function serializeCallCollectionResponse(writer: SerializationWri
|
|
|
65044
65140
|
* @param writer Serialization writer to use to serialize this model
|
|
65045
65141
|
*/
|
|
65046
65142
|
export declare function serializeCallEndedEventMessageDetail(writer: SerializationWriter, callEndedEventMessageDetail?: Partial<CallEndedEventMessageDetail> | undefined | null): void;
|
|
65143
|
+
/**
|
|
65144
|
+
* Serializes information the current object
|
|
65145
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65146
|
+
*/
|
|
65147
|
+
export declare function serializeCallEvent(writer: SerializationWriter, callEvent?: Partial<CallEvent> | undefined | null): void;
|
|
65047
65148
|
/**
|
|
65048
65149
|
* Serializes information the current object
|
|
65049
65150
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -67364,6 +67465,16 @@ export declare function serializeEmailPayloadDetail(writer: SerializationWriter,
|
|
|
67364
67465
|
* @param writer Serialization writer to use to serialize this model
|
|
67365
67466
|
*/
|
|
67366
67467
|
export declare function serializeEmailSettings(writer: SerializationWriter, emailSettings?: Partial<EmailSettings> | undefined | null): void;
|
|
67468
|
+
/**
|
|
67469
|
+
* Serializes information the current object
|
|
67470
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67471
|
+
*/
|
|
67472
|
+
export declare function serializeEmergencyCallerInfo(writer: SerializationWriter, emergencyCallerInfo?: Partial<EmergencyCallerInfo> | undefined | null): void;
|
|
67473
|
+
/**
|
|
67474
|
+
* Serializes information the current object
|
|
67475
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67476
|
+
*/
|
|
67477
|
+
export declare function serializeEmergencyCallEvent(writer: SerializationWriter, emergencyCallEvent?: Partial<EmergencyCallEvent> | undefined | null): void;
|
|
67367
67478
|
/**
|
|
67368
67479
|
* Serializes information the current object
|
|
67369
67480
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -82411,7 +82522,7 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
82411
82522
|
*/
|
|
82412
82523
|
interests?: string[] | null;
|
|
82413
82524
|
/**
|
|
82414
|
-
*
|
|
82525
|
+
* true if the user is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a user who is a member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. Returned only on $select.
|
|
82415
82526
|
*/
|
|
82416
82527
|
isManagementRestricted?: boolean | null;
|
|
82417
82528
|
/**
|
|
@@ -90278,47 +90389,47 @@ export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder
|
|
|
90278
90389
|
*/
|
|
90279
90390
|
additionalData?: Record<string, unknown>;
|
|
90280
90391
|
/**
|
|
90281
|
-
*
|
|
90392
|
+
* Represents the worksheet protection option of allowing using auto filter feature.
|
|
90282
90393
|
*/
|
|
90283
90394
|
allowAutoFilter?: boolean | null;
|
|
90284
90395
|
/**
|
|
90285
|
-
*
|
|
90396
|
+
* Represents the worksheet protection option of allowing deleting columns.
|
|
90286
90397
|
*/
|
|
90287
90398
|
allowDeleteColumns?: boolean | null;
|
|
90288
90399
|
/**
|
|
90289
|
-
*
|
|
90400
|
+
* Represents the worksheet protection option of allowing deleting rows.
|
|
90290
90401
|
*/
|
|
90291
90402
|
allowDeleteRows?: boolean | null;
|
|
90292
90403
|
/**
|
|
90293
|
-
*
|
|
90404
|
+
* Represents the worksheet protection option of allowing formatting cells.
|
|
90294
90405
|
*/
|
|
90295
90406
|
allowFormatCells?: boolean | null;
|
|
90296
90407
|
/**
|
|
90297
|
-
*
|
|
90408
|
+
* Represents the worksheet protection option of allowing formatting columns.
|
|
90298
90409
|
*/
|
|
90299
90410
|
allowFormatColumns?: boolean | null;
|
|
90300
90411
|
/**
|
|
90301
|
-
*
|
|
90412
|
+
* Represents the worksheet protection option of allowing formatting rows.
|
|
90302
90413
|
*/
|
|
90303
90414
|
allowFormatRows?: boolean | null;
|
|
90304
90415
|
/**
|
|
90305
|
-
*
|
|
90416
|
+
* Represents the worksheet protection option of allowing inserting columns.
|
|
90306
90417
|
*/
|
|
90307
90418
|
allowInsertColumns?: boolean | null;
|
|
90308
90419
|
/**
|
|
90309
|
-
*
|
|
90420
|
+
* Represents the worksheet protection option of allowing inserting hyperlinks.
|
|
90310
90421
|
*/
|
|
90311
90422
|
allowInsertHyperlinks?: boolean | null;
|
|
90312
90423
|
/**
|
|
90313
|
-
*
|
|
90424
|
+
* Represents the worksheet protection option of allowing inserting rows.
|
|
90314
90425
|
*/
|
|
90315
90426
|
allowInsertRows?: boolean | null;
|
|
90316
90427
|
/**
|
|
90317
|
-
*
|
|
90428
|
+
* Represents the worksheet protection option of allowing using pivot table feature.
|
|
90318
90429
|
*/
|
|
90319
90430
|
allowPivotTables?: boolean | null;
|
|
90320
90431
|
/**
|
|
90321
|
-
*
|
|
90432
|
+
* Represents the worksheet protection option of allowing using sort feature.
|
|
90322
90433
|
*/
|
|
90323
90434
|
allowSort?: boolean | null;
|
|
90324
90435
|
/**
|
|
@@ -91411,6 +91522,12 @@ export declare const CallDirectionObject: {
|
|
|
91411
91522
|
readonly Incoming: "incoming";
|
|
91412
91523
|
readonly Outgoing: "outgoing";
|
|
91413
91524
|
};
|
|
91525
|
+
export declare const CallEventTypeObject: {
|
|
91526
|
+
readonly CallStarted: "callStarted";
|
|
91527
|
+
readonly CallEnded: "callEnded";
|
|
91528
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
91529
|
+
readonly RosterUpdated: "rosterUpdated";
|
|
91530
|
+
};
|
|
91414
91531
|
export declare const CallRecordingStatusObject: {
|
|
91415
91532
|
readonly Success: "success";
|
|
91416
91533
|
readonly Failure: "failure";
|