@microsoft/msgraph-sdk 1.0.0-preview.46 → 1.0.0-preview.48

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 CHANGED
@@ -2144,6 +2144,24 @@ export interface AgreementFileVersionCollectionResponse extends BaseCollectionPa
2144
2144
  */
2145
2145
  value?: AgreementFileVersion[] | null;
2146
2146
  }
2147
+ export interface AirPrintSettings extends AdditionalDataHolder, BackedModel, Parsable {
2148
+ /**
2149
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
2150
+ */
2151
+ additionalData?: Record<string, unknown>;
2152
+ /**
2153
+ * Stores model information.
2154
+ */
2155
+ backingStoreEnabled?: boolean | null;
2156
+ /**
2157
+ * The incompatiblePrinters property
2158
+ */
2159
+ incompatiblePrinters?: IncompatiblePrinterSettings | null;
2160
+ /**
2161
+ * The OdataType property
2162
+ */
2163
+ odataType?: string | null;
2164
+ }
2147
2165
  export interface Album extends AdditionalDataHolder, BackedModel, Parsable {
2148
2166
  /**
2149
2167
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -9955,7 +9973,7 @@ export interface CloudPcProvisioningPolicy extends Entity, Parsable {
9955
9973
  */
9956
9974
  assignments?: CloudPcProvisioningPolicyAssignment[] | null;
9957
9975
  /**
9958
- * The autopatch property
9976
+ * Indicates the Windows Autopatch settings for Cloud PCs using this provisioning policy. The settings take effect when the tenant enrolls in Autopatch and the managedType of the microsoftManagedDesktop property is set as starterManaged. Supports $select.
9959
9977
  */
9960
9978
  autopatch?: CloudPcProvisioningPolicyAutopatch | null;
9961
9979
  /**
@@ -10037,7 +10055,7 @@ export interface CloudPcProvisioningPolicyAutopatch extends AdditionalDataHolder
10037
10055
  */
10038
10056
  additionalData?: Record<string, unknown>;
10039
10057
  /**
10040
- * The autopatchGroupId property
10058
+ * The unique identifier (ID) of a Windows Autopatch group. An Autopatch group is a logical container or unit that groups several Microsoft Entra groups and software update policies. Devices with the same Autopatch group ID share unified software update management. The default value is null that indicates that no Autopatch group is associated with the provisioning policy.
10041
10059
  */
10042
10060
  autopatchGroupId?: string | null;
10043
10061
  /**
@@ -12671,6 +12689,12 @@ export declare function createAgreementFileVersionFromDiscriminatorValue(parseNo
12671
12689
  * @returns {Agreement}
12672
12690
  */
12673
12691
  export declare function createAgreementFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12692
+ /**
12693
+ * Creates a new instance of the appropriate class based on discriminator value
12694
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12695
+ * @returns {AirPrintSettings}
12696
+ */
12697
+ export declare function createAirPrintSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12674
12698
  /**
12675
12699
  * Creates a new instance of the appropriate class based on discriminator value
12676
12700
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -20621,6 +20645,12 @@ export declare function createPrinterCreateOperationFromDiscriminatorValue(parse
20621
20645
  * @returns {PrinterDefaults}
20622
20646
  */
20623
20647
  export declare function createPrinterDefaultsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20648
+ /**
20649
+ * Creates a new instance of the appropriate class based on discriminator value
20650
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20651
+ * @returns {PrinterDiscoverySettings}
20652
+ */
20653
+ export declare function createPrinterDiscoverySettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20624
20654
  /**
20625
20655
  * Creates a new instance of the appropriate class based on discriminator value
20626
20656
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -27547,6 +27577,11 @@ export declare function deserializeIntoAgreementFileVersion(agreementFileVersion
27547
27577
  * @returns {Record<string, (node: ParseNode) => void>}
27548
27578
  */
27549
27579
  export declare function deserializeIntoAgreementFileVersionCollectionResponse(agreementFileVersionCollectionResponse?: Partial<AgreementFileVersionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
27580
+ /**
27581
+ * The deserialization information for the current model
27582
+ * @returns {Record<string, (node: ParseNode) => void>}
27583
+ */
27584
+ export declare function deserializeIntoAirPrintSettings(airPrintSettings?: Partial<AirPrintSettings> | undefined): Record<string, (node: ParseNode) => void>;
27550
27585
  /**
27551
27586
  * The deserialization information for the current model
27552
27587
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -34182,6 +34217,11 @@ export declare function deserializeIntoPrinterCreateOperation(printerCreateOpera
34182
34217
  * @returns {Record<string, (node: ParseNode) => void>}
34183
34218
  */
34184
34219
  export declare function deserializeIntoPrinterDefaults(printerDefaults?: Partial<PrinterDefaults> | undefined): Record<string, (node: ParseNode) => void>;
34220
+ /**
34221
+ * The deserialization information for the current model
34222
+ * @returns {Record<string, (node: ParseNode) => void>}
34223
+ */
34224
+ export declare function deserializeIntoPrinterDiscoverySettings(printerDiscoverySettings?: Partial<PrinterDiscoverySettings> | undefined): Record<string, (node: ParseNode) => void>;
34185
34225
  /**
34186
34226
  * The deserialization information for the current model
34187
34227
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -46063,6 +46103,7 @@ export interface IncomingContext extends AdditionalDataHolder, BackedModel, Pars
46063
46103
  */
46064
46104
  transferor?: IdentitySet | null;
46065
46105
  }
46106
+ export type IncompatiblePrinterSettings = (typeof IncompatiblePrinterSettingsObject)[keyof typeof IncompatiblePrinterSettingsObject];
46066
46107
  export interface IncompleteData extends AdditionalDataHolder, BackedModel, Parsable {
46067
46108
  /**
46068
46109
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -56925,10 +56966,18 @@ export interface PrintDocument extends Entity, Parsable {
56925
56966
  * The document's name. Read-only.
56926
56967
  */
56927
56968
  displayName?: string | null;
56969
+ /**
56970
+ * The time the document was downloaded. Read-only
56971
+ */
56972
+ downloadedDateTime?: Date | null;
56928
56973
  /**
56929
56974
  * The document's size in bytes. Read-only.
56930
56975
  */
56931
56976
  size?: number | null;
56977
+ /**
56978
+ * The time the document was uploaded. Read-only
56979
+ */
56980
+ uploadedDateTime?: Date | null;
56932
56981
  }
56933
56982
  export interface PrintDocumentCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
56934
56983
  /**
@@ -57243,6 +57292,24 @@ export interface PrinterDefaults extends AdditionalDataHolder, BackedModel, Pars
57243
57292
  */
57244
57293
  scaling?: PrintScaling | null;
57245
57294
  }
57295
+ export interface PrinterDiscoverySettings extends AdditionalDataHolder, BackedModel, Parsable {
57296
+ /**
57297
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
57298
+ */
57299
+ additionalData?: Record<string, unknown>;
57300
+ /**
57301
+ * The airPrint property
57302
+ */
57303
+ airPrint?: AirPrintSettings | null;
57304
+ /**
57305
+ * Stores model information.
57306
+ */
57307
+ backingStoreEnabled?: boolean | null;
57308
+ /**
57309
+ * The OdataType property
57310
+ */
57311
+ odataType?: string | null;
57312
+ }
57246
57313
  export type PrinterFeedOrientation = (typeof PrinterFeedOrientationObject)[keyof typeof PrinterFeedOrientationObject];
57247
57314
  export interface PrinterLocation extends AdditionalDataHolder, BackedModel, Parsable {
57248
57315
  /**
@@ -57407,6 +57474,10 @@ export interface PrinterStatus extends AdditionalDataHolder, BackedModel, Parsab
57407
57474
  export type PrintEvent = (typeof PrintEventObject)[keyof typeof PrintEventObject];
57408
57475
  export type PrintFinishing = (typeof PrintFinishingObject)[keyof typeof PrintFinishingObject];
57409
57476
  export interface PrintJob extends Entity, Parsable {
57477
+ /**
57478
+ * The dateTimeOffset when the job was acknowledged. Read-only.
57479
+ */
57480
+ acknowledgedDateTime?: Date | null;
57410
57481
  /**
57411
57482
  * The configuration property
57412
57483
  */
@@ -57423,6 +57494,10 @@ export interface PrintJob extends Entity, Parsable {
57423
57494
  * The documents property
57424
57495
  */
57425
57496
  documents?: PrintDocument[] | null;
57497
+ /**
57498
+ * The error code of the print job. Read-only.
57499
+ */
57500
+ errorCode?: number | null;
57426
57501
  /**
57427
57502
  * If true, document can be fetched by printer.
57428
57503
  */
@@ -57690,6 +57765,10 @@ export interface PrintSettings extends AdditionalDataHolder, BackedModel, Parsab
57690
57765
  * The OdataType property
57691
57766
  */
57692
57767
  odataType?: string | null;
57768
+ /**
57769
+ * Specifies settings that affect printer discovery when using Universal Print.
57770
+ */
57771
+ printerDiscoverySettings?: PrinterDiscoverySettings | null;
57693
57772
  }
57694
57773
  export interface PrintTask extends Entity, Parsable {
57695
57774
  /**
@@ -62645,6 +62724,11 @@ export declare function serializeAgreementFileVersion(writer: SerializationWrite
62645
62724
  * @param writer Serialization writer to use to serialize this model
62646
62725
  */
62647
62726
  export declare function serializeAgreementFileVersionCollectionResponse(writer: SerializationWriter, agreementFileVersionCollectionResponse?: Partial<AgreementFileVersionCollectionResponse> | undefined | null): void;
62727
+ /**
62728
+ * Serializes information the current object
62729
+ * @param writer Serialization writer to use to serialize this model
62730
+ */
62731
+ export declare function serializeAirPrintSettings(writer: SerializationWriter, airPrintSettings?: Partial<AirPrintSettings> | undefined | null): void;
62648
62732
  /**
62649
62733
  * Serializes information the current object
62650
62734
  * @param writer Serialization writer to use to serialize this model
@@ -69280,6 +69364,11 @@ export declare function serializePrinterCreateOperation(writer: SerializationWri
69280
69364
  * @param writer Serialization writer to use to serialize this model
69281
69365
  */
69282
69366
  export declare function serializePrinterDefaults(writer: SerializationWriter, printerDefaults?: Partial<PrinterDefaults> | undefined | null): void;
69367
+ /**
69368
+ * Serializes information the current object
69369
+ * @param writer Serialization writer to use to serialize this model
69370
+ */
69371
+ export declare function serializePrinterDiscoverySettings(writer: SerializationWriter, printerDiscoverySettings?: Partial<PrinterDiscoverySettings> | undefined | null): void;
69283
69372
  /**
69284
69373
  * Serializes information the current object
69285
69374
  * @param writer Serialization writer to use to serialize this model
@@ -77543,7 +77632,7 @@ export interface Team extends Entity, Parsable {
77543
77632
  */
77544
77633
  displayName?: string | null;
77545
77634
  /**
77546
- * The firstChannelName property
77635
+ * The name of the first channel in the team. This is an optional property, only used during team creation and isn't returned in methods to get and list teams.
77547
77636
  */
77548
77637
  firstChannelName?: string | null;
77549
77638
  /**
@@ -88894,47 +88983,47 @@ export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder
88894
88983
  */
88895
88984
  additionalData?: Record<string, unknown>;
88896
88985
  /**
88897
- * Represents the worksheet protection option of allowing using auto filter feature.
88986
+ * Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
88898
88987
  */
88899
88988
  allowAutoFilter?: boolean | null;
88900
88989
  /**
88901
- * Represents the worksheet protection option of allowing deleting columns.
88990
+ * Indicates whether the worksheet protection option to allow deleting columns is enabled.
88902
88991
  */
88903
88992
  allowDeleteColumns?: boolean | null;
88904
88993
  /**
88905
- * Represents the worksheet protection option of allowing deleting rows.
88994
+ * Indicates whether the worksheet protection option to allow deleting rows is enabled.
88906
88995
  */
88907
88996
  allowDeleteRows?: boolean | null;
88908
88997
  /**
88909
- * Represents the worksheet protection option of allowing formatting cells.
88998
+ * Indicates whether the worksheet protection option to allow formatting cells is enabled.
88910
88999
  */
88911
89000
  allowFormatCells?: boolean | null;
88912
89001
  /**
88913
- * Represents the worksheet protection option of allowing formatting columns.
89002
+ * Indicates whether the worksheet protection option to allow formatting columns is enabled.
88914
89003
  */
88915
89004
  allowFormatColumns?: boolean | null;
88916
89005
  /**
88917
- * Represents the worksheet protection option of allowing formatting rows.
89006
+ * Indicates whether the worksheet protection option to allow formatting rows is enabled.
88918
89007
  */
88919
89008
  allowFormatRows?: boolean | null;
88920
89009
  /**
88921
- * Represents the worksheet protection option of allowing inserting columns.
89010
+ * Indicates whether the worksheet protection option to allow inserting columns is enabled.
88922
89011
  */
88923
89012
  allowInsertColumns?: boolean | null;
88924
89013
  /**
88925
- * Represents the worksheet protection option of allowing inserting hyperlinks.
89014
+ * Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
88926
89015
  */
88927
89016
  allowInsertHyperlinks?: boolean | null;
88928
89017
  /**
88929
- * Represents the worksheet protection option of allowing inserting rows.
89018
+ * Indicates whether the worksheet protection option to allow inserting rows is enabled.
88930
89019
  */
88931
89020
  allowInsertRows?: boolean | null;
88932
89021
  /**
88933
- * Represents the worksheet protection option of allowing using pivot table feature.
89022
+ * Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
88934
89023
  */
88935
89024
  allowPivotTables?: boolean | null;
88936
89025
  /**
88937
- * Represents the worksheet protection option of allowing using sort feature.
89026
+ * Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
88938
89027
  */
88939
89028
  allowSort?: boolean | null;
88940
89029
  /**
@@ -91459,6 +91548,11 @@ export declare const IncludedUserTypesObject: {
91459
91548
  readonly Guest: "guest";
91460
91549
  readonly UnknownFutureValue: "unknownFutureValue";
91461
91550
  };
91551
+ export declare const IncompatiblePrinterSettingsObject: {
91552
+ readonly Show: "show";
91553
+ readonly Hide: "hide";
91554
+ readonly UnknownFutureValue: "unknownFutureValue";
91555
+ };
91462
91556
  export declare const InferenceClassificationTypeObject: {
91463
91557
  readonly Focused: "focused";
91464
91558
  readonly Other: "other";