@microsoft/msgraph-sdk 1.0.0-preview.45 → 1.0.0-preview.47

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.
@@ -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
  */
@@ -57683,13 +57758,17 @@ export interface PrintSettings extends AdditionalDataHolder, BackedModel, Parsab
57683
57758
  */
57684
57759
  backingStoreEnabled?: boolean | null;
57685
57760
  /**
57686
- * Specifies whether document conversion is enabled for the tenant. If document conversion is enabled, Universal Print service will automatically convert documents into a format compatible with the printer (xps to pdf) when needed.
57761
+ * Specifies whether document conversion is enabled for the tenant. If document conversion is enabled, Universal Print service converts documents into a format compatible with the printer (xps to pdf) when needed.
57687
57762
  */
57688
57763
  documentConversionEnabled?: boolean | null;
57689
57764
  /**
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
@@ -75263,7 +75352,7 @@ export interface SignInActivity extends AdditionalDataHolder, BackedModel, Parsa
75263
75352
  */
75264
75353
  lastSignInRequestId?: string | null;
75265
75354
  /**
75266
- * The date and time of the user's most recent successful interactive sign-in. Use this property if you need to determine when the account was truly accessed. This field can be used to build reports, such as inactive users. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID.
75355
+ * The date and time of the user's most recent successful interactive or non-interactive sign-in. Use this property if you need to determine when the account was truly accessed. This field can be used to build reports, such as inactive users. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Microsoft Entra ID.
75267
75356
  */
75268
75357
  lastSuccessfulSignInDateTime?: Date | null;
75269
75358
  /**
@@ -77542,6 +77631,10 @@ export interface Team extends Entity, Parsable {
77542
77631
  * The name of the team.
77543
77632
  */
77544
77633
  displayName?: string | null;
77634
+ /**
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.
77636
+ */
77637
+ firstChannelName?: string | null;
77545
77638
  /**
77546
77639
  * Settings to configure use of Giphy, memes, and stickers in the team.
77547
77640
  */
@@ -91455,6 +91548,11 @@ export declare const IncludedUserTypesObject: {
91455
91548
  readonly Guest: "guest";
91456
91549
  readonly UnknownFutureValue: "unknownFutureValue";
91457
91550
  };
91551
+ export declare const IncompatiblePrinterSettingsObject: {
91552
+ readonly Show: "show";
91553
+ readonly Hide: "hide";
91554
+ readonly UnknownFutureValue: "unknownFutureValue";
91555
+ };
91458
91556
  export declare const InferenceClassificationTypeObject: {
91459
91557
  readonly Focused: "focused";
91460
91558
  readonly Other: "other";