@microsoft/typespec-msgraph-reference 1.0.2 → 1.0.3

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.
@@ -1662,6 +1662,11 @@ namespace reference.`microsoft.graph` {
1662
1662
  outboundAllowed: boolean | null;
1663
1663
  }
1664
1664
 
1665
+ @complex model includeTarget {
1666
+ id: string;
1667
+ targetType: authenticationMethodTargetType;
1668
+ }
1669
+
1665
1670
  @complex model incomingContext {
1666
1671
  observedParticipantId: string | null;
1667
1672
  onBehalfOf: identitySet | null;
@@ -3619,6 +3624,65 @@ namespace reference.`microsoft.graph` {
3619
3624
  type: websiteType | null;
3620
3625
  }
3621
3626
 
3627
+ @complex model workbookFilterCriteria {
3628
+ color: string | null;
3629
+ criterion1: string | null;
3630
+ criterion2: string | null;
3631
+ dynamicCriteria: string;
3632
+ filterOn: string;
3633
+ icon: workbookIcon | null;
3634
+ operator: string;
3635
+ values: Json | null;
3636
+ }
3637
+
3638
+ @complex model workbookFilterDatetime {
3639
+ date: string | null;
3640
+ specificity: string;
3641
+ }
3642
+
3643
+ @complex model workbookIcon {
3644
+ index: int32;
3645
+ set: string;
3646
+ }
3647
+
3648
+ @complex model workbookOperationError {
3649
+ code: string | null;
3650
+ innerError: workbookOperationError | null;
3651
+ message: string | null;
3652
+ }
3653
+
3654
+ @complex model workbookRangeReference {
3655
+ address: string | null;
3656
+ }
3657
+
3658
+ @complex model workbookSessionInfo {
3659
+ id: string | null;
3660
+ persistChanges: boolean | null;
3661
+ }
3662
+
3663
+ @complex model workbookSortField {
3664
+ ascending: boolean;
3665
+ color: string | null;
3666
+ dataOption: string;
3667
+ icon: workbookIcon | null;
3668
+ key: int32;
3669
+ sortOn: string;
3670
+ }
3671
+
3672
+ @complex model workbookWorksheetProtectionOptions {
3673
+ allowAutoFilter: boolean;
3674
+ allowDeleteColumns: boolean;
3675
+ allowDeleteRows: boolean;
3676
+ allowFormatCells: boolean;
3677
+ allowFormatColumns: boolean;
3678
+ allowFormatRows: boolean;
3679
+ allowInsertColumns: boolean;
3680
+ allowInsertHyperlinks: boolean;
3681
+ allowInsertRows: boolean;
3682
+ allowPivotTables: boolean;
3683
+ allowSort: boolean;
3684
+ }
3685
+
3622
3686
  @complex model workingHours {
3623
3687
  daysOfWeek: dayOfWeek[] | null;
3624
3688
  endTime: offsetDateTime | null;
@@ -3632,11 +3696,21 @@ namespace reference.`microsoft.graph` {
3632
3696
  x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
3633
3697
  }
3634
3698
 
3699
+ @complex model x509CertificateAuthorityScope {
3700
+ includeTargets: includeTarget[] | null;
3701
+ publicKeyInfrastructureIdentifier: string | null;
3702
+ subjectKeyIdentifier: string | null;
3703
+ }
3704
+
3635
3705
  @complex model x509CertificateCRLValidationConfiguration {
3636
3706
  exemptedCertificateAuthoritiesSubjectKeyIdentifiers: string[] | null;
3637
3707
  state: x509CertificateCRLValidationConfigurationState;
3638
3708
  }
3639
3709
 
3710
+ @complex model x509CertificateIssuerHintsConfiguration {
3711
+ state: x509CertificateIssuerHintsState | null;
3712
+ }
3713
+
3640
3714
  @complex model x509CertificateRule {
3641
3715
  identifier: string | null;
3642
3716
  issuerSubjectIdentifier: string | null;
@@ -5071,6 +5145,7 @@ namespace reference.`microsoft.graph` {
5071
5145
  @contains subscriptions: subscription[];
5072
5146
  @contains thumbnails: thumbnailSet[];
5073
5147
  @contains versions: driveItemVersion[];
5148
+ @contains workbook: workbook | null;
5074
5149
  }
5075
5150
 
5076
5151
  @entity model driveItemVersion extends baseItemVersion {
@@ -7403,10 +7478,337 @@ namespace reference.`microsoft.graph` {
7403
7478
  @references device: device | null;
7404
7479
  }
7405
7480
 
7481
+ @entity model workbook extends entity {
7482
+ @contains application: workbookApplication | null;
7483
+ @contains comments: workbookComment[];
7484
+ @contains functions: workbookFunctions | null;
7485
+ @contains names: workbookNamedItem[];
7486
+ @contains operations: workbookOperation[];
7487
+ @contains tables: workbookTable[];
7488
+ @contains worksheets: workbookWorksheet[];
7489
+ }
7490
+
7491
+ @entity model workbookApplication extends entity {
7492
+ calculationMode: string;
7493
+ }
7494
+
7495
+ @entity model workbookChart extends entity {
7496
+ height: float64;
7497
+ left: float64;
7498
+ name: string | null;
7499
+ top: float64;
7500
+ width: float64;
7501
+ @contains axes: workbookChartAxes | null;
7502
+ @contains dataLabels: workbookChartDataLabels | null;
7503
+ @contains format: workbookChartAreaFormat | null;
7504
+ @contains legend: workbookChartLegend | null;
7505
+ @contains series: workbookChartSeries[];
7506
+ @contains title: workbookChartTitle | null;
7507
+ @contains worksheet: workbookWorksheet | null;
7508
+ }
7509
+
7510
+ @entity model workbookChartAreaFormat extends entity {
7511
+ @contains fill: workbookChartFill | null;
7512
+ @contains font: workbookChartFont | null;
7513
+ }
7514
+
7515
+ @entity model workbookChartAxes extends entity {
7516
+ @contains categoryAxis: workbookChartAxis | null;
7517
+ @contains seriesAxis: workbookChartAxis | null;
7518
+ @contains valueAxis: workbookChartAxis | null;
7519
+ }
7520
+
7521
+ @entity model workbookChartAxis extends entity {
7522
+ majorUnit: Json | null;
7523
+ maximum: Json | null;
7524
+ minimum: Json | null;
7525
+ minorUnit: Json | null;
7526
+ @contains format: workbookChartAxisFormat | null;
7527
+ @contains majorGridlines: workbookChartGridlines | null;
7528
+ @contains minorGridlines: workbookChartGridlines | null;
7529
+ @contains title: workbookChartAxisTitle | null;
7530
+ }
7531
+
7532
+ @entity model workbookChartAxisFormat extends entity {
7533
+ @contains font: workbookChartFont | null;
7534
+ @contains line: workbookChartLineFormat | null;
7535
+ }
7536
+
7537
+ @entity model workbookChartAxisTitle extends entity {
7538
+ text: string | null;
7539
+ visible: boolean;
7540
+ @contains format: workbookChartAxisTitleFormat | null;
7541
+ }
7542
+
7543
+ @entity model workbookChartAxisTitleFormat extends entity {
7544
+ @contains font: workbookChartFont | null;
7545
+ }
7546
+
7547
+ @entity model workbookChartDataLabelFormat extends entity {
7548
+ @contains fill: workbookChartFill | null;
7549
+ @contains font: workbookChartFont | null;
7550
+ }
7551
+
7552
+ @entity model workbookChartDataLabels extends entity {
7553
+ position: string | null;
7554
+ separator: string | null;
7555
+ showBubbleSize: boolean | null;
7556
+ showCategoryName: boolean | null;
7557
+ showLegendKey: boolean | null;
7558
+ showPercentage: boolean | null;
7559
+ showSeriesName: boolean | null;
7560
+ showValue: boolean | null;
7561
+ @contains format: workbookChartDataLabelFormat | null;
7562
+ }
7563
+
7564
+ @entity model workbookChartFill extends entity {
7565
+ }
7566
+
7567
+ @entity model workbookChartFont extends entity {
7568
+ bold: boolean | null;
7569
+ color: string | null;
7570
+ italic: boolean | null;
7571
+ name: string | null;
7572
+ size: float64 | null;
7573
+ underline: string | null;
7574
+ }
7575
+
7576
+ @entity model workbookChartGridlines extends entity {
7577
+ visible: boolean;
7578
+ @contains format: workbookChartGridlinesFormat | null;
7579
+ }
7580
+
7581
+ @entity model workbookChartGridlinesFormat extends entity {
7582
+ @contains line: workbookChartLineFormat | null;
7583
+ }
7584
+
7585
+ @entity model workbookChartLegend extends entity {
7586
+ overlay: boolean | null;
7587
+ position: string | null;
7588
+ visible: boolean;
7589
+ @contains format: workbookChartLegendFormat | null;
7590
+ }
7591
+
7592
+ @entity model workbookChartLegendFormat extends entity {
7593
+ @contains fill: workbookChartFill | null;
7594
+ @contains font: workbookChartFont | null;
7595
+ }
7596
+
7597
+ @entity model workbookChartLineFormat extends entity {
7598
+ color: string | null;
7599
+ }
7600
+
7601
+ @entity model workbookChartPoint extends entity {
7602
+ value: Json | null;
7603
+ @contains format: workbookChartPointFormat | null;
7604
+ }
7605
+
7606
+ @entity model workbookChartPointFormat extends entity {
7607
+ @contains fill: workbookChartFill | null;
7608
+ }
7609
+
7610
+ @entity model workbookChartSeries extends entity {
7611
+ name: string | null;
7612
+ @contains format: workbookChartSeriesFormat | null;
7613
+ @contains points: workbookChartPoint[];
7614
+ }
7615
+
7616
+ @entity model workbookChartSeriesFormat extends entity {
7617
+ @contains fill: workbookChartFill | null;
7618
+ @contains line: workbookChartLineFormat | null;
7619
+ }
7620
+
7621
+ @entity model workbookChartTitle extends entity {
7622
+ overlay: boolean | null;
7623
+ text: string | null;
7624
+ visible: boolean;
7625
+ @contains format: workbookChartTitleFormat | null;
7626
+ }
7627
+
7628
+ @entity model workbookChartTitleFormat extends entity {
7629
+ @contains fill: workbookChartFill | null;
7630
+ @contains font: workbookChartFont | null;
7631
+ }
7632
+
7633
+ @entity model workbookComment extends entity {
7634
+ content: string | null;
7635
+ contentType: string;
7636
+ @contains replies: workbookCommentReply[];
7637
+ }
7638
+
7639
+ @entity model workbookCommentReply extends entity {
7640
+ content: string | null;
7641
+ contentType: string;
7642
+ }
7643
+
7644
+ @entity model workbookFilter extends entity {
7645
+ criteria: workbookFilterCriteria | null;
7646
+ }
7647
+
7648
+ @entity model workbookFormatProtection extends entity {
7649
+ formulaHidden: boolean | null;
7650
+ locked: boolean | null;
7651
+ }
7652
+
7653
+ @entity model workbookFunctionResult extends entity {
7654
+ error: string | null;
7655
+ value: Json | null;
7656
+ }
7657
+
7658
+ @entity model workbookFunctions extends entity {
7659
+ }
7660
+
7661
+ @entity model workbookNamedItem extends entity {
7662
+ comment: string | null;
7663
+ name: string | null;
7664
+ scope: string;
7665
+ type: string | null;
7666
+ value: Json | null;
7667
+ visible: boolean;
7668
+ @contains worksheet: workbookWorksheet | null;
7669
+ }
7670
+
7671
+ @entity model workbookOperation extends entity {
7672
+ error: workbookOperationError | null;
7673
+ resourceLocation: string | null;
7674
+ status: workbookOperationStatus;
7675
+ }
7676
+
7677
+ @entity model workbookPivotTable extends entity {
7678
+ name: string | null;
7679
+ @contains worksheet: workbookWorksheet | null;
7680
+ }
7681
+
7682
+ @entity model workbookRange extends entity {
7683
+ address: string | null;
7684
+ addressLocal: string | null;
7685
+ cellCount: int32;
7686
+ columnCount: int32;
7687
+ columnHidden: boolean | null;
7688
+ columnIndex: int32;
7689
+ formulas: Json | null;
7690
+ formulasLocal: Json | null;
7691
+ formulasR1C1: Json | null;
7692
+ hidden: boolean | null;
7693
+ numberFormat: Json | null;
7694
+ rowCount: int32;
7695
+ rowHidden: boolean | null;
7696
+ rowIndex: int32;
7697
+ text: Json | null;
7698
+ values: Json | null;
7699
+ valueTypes: Json | null;
7700
+ @contains format: workbookRangeFormat | null;
7701
+ @contains sort: workbookRangeSort | null;
7702
+ @contains worksheet: workbookWorksheet | null;
7703
+ }
7704
+
7705
+ @entity model workbookRangeBorder extends entity {
7706
+ color: string | null;
7707
+ sideIndex: string | null;
7708
+ style: string | null;
7709
+ weight: string | null;
7710
+ }
7711
+
7712
+ @entity model workbookRangeFill extends entity {
7713
+ color: string | null;
7714
+ }
7715
+
7716
+ @entity model workbookRangeFont extends entity {
7717
+ bold: boolean | null;
7718
+ color: string | null;
7719
+ italic: boolean | null;
7720
+ name: string | null;
7721
+ size: float64 | null;
7722
+ underline: string | null;
7723
+ }
7724
+
7725
+ @entity model workbookRangeFormat extends entity {
7726
+ columnWidth: float64 | null;
7727
+ horizontalAlignment: string | null;
7728
+ rowHeight: float64 | null;
7729
+ verticalAlignment: string | null;
7730
+ wrapText: boolean | null;
7731
+ @contains borders: workbookRangeBorder[];
7732
+ @contains fill: workbookRangeFill | null;
7733
+ @contains font: workbookRangeFont | null;
7734
+ @contains protection: workbookFormatProtection | null;
7735
+ }
7736
+
7737
+ @entity model workbookRangeSort extends entity {
7738
+ }
7739
+
7740
+ @entity model workbookRangeView extends entity {
7741
+ cellAddresses: Json | null;
7742
+ columnCount: int32;
7743
+ formulas: Json | null;
7744
+ formulasLocal: Json | null;
7745
+ formulasR1C1: Json | null;
7746
+ index: int32;
7747
+ numberFormat: Json | null;
7748
+ rowCount: int32;
7749
+ text: Json | null;
7750
+ values: Json | null;
7751
+ valueTypes: Json | null;
7752
+ @contains rows: workbookRangeView[];
7753
+ }
7754
+
7755
+ @entity model workbookTable extends entity {
7756
+ highlightFirstColumn: boolean;
7757
+ highlightLastColumn: boolean;
7758
+ legacyId: string | null;
7759
+ name: string | null;
7760
+ showBandedColumns: boolean;
7761
+ showBandedRows: boolean;
7762
+ showFilterButton: boolean;
7763
+ showHeaders: boolean;
7764
+ showTotals: boolean;
7765
+ style: string | null;
7766
+ @contains columns: workbookTableColumn[];
7767
+ @contains rows: workbookTableRow[];
7768
+ @contains sort: workbookTableSort | null;
7769
+ @contains worksheet: workbookWorksheet | null;
7770
+ }
7771
+
7772
+ @entity model workbookTableColumn extends entity {
7773
+ index: int32;
7774
+ name: string | null;
7775
+ values: Json | null;
7776
+ @contains filter: workbookFilter | null;
7777
+ }
7778
+
7779
+ @entity model workbookTableRow extends entity {
7780
+ index: int32;
7781
+ values: Json | null;
7782
+ }
7783
+
7784
+ @entity model workbookTableSort extends entity {
7785
+ fields: workbookSortField[] | null;
7786
+ matchCase: boolean;
7787
+ method: string;
7788
+ }
7789
+
7790
+ @entity model workbookWorksheet extends entity {
7791
+ name: string | null;
7792
+ position: int32;
7793
+ visibility: string;
7794
+ @contains charts: workbookChart[];
7795
+ @contains names: workbookNamedItem[];
7796
+ @contains pivotTables: workbookPivotTable[];
7797
+ @contains protection: workbookWorksheetProtection | null;
7798
+ @contains tables: workbookTable[];
7799
+ }
7800
+
7801
+ @entity model workbookWorksheetProtection extends entity {
7802
+ options: workbookWorksheetProtectionOptions | null;
7803
+ protected: boolean;
7804
+ }
7805
+
7406
7806
  @entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
7407
7807
  authenticationModeConfiguration: x509CertificateAuthenticationModeConfiguration | null;
7808
+ certificateAuthorityScopes: x509CertificateAuthorityScope[] | null;
7408
7809
  certificateUserBindings: x509CertificateUserBinding[] | null;
7409
7810
  crlValidationConfiguration: x509CertificateCRLValidationConfiguration;
7811
+ issuerHintsConfiguration: x509CertificateIssuerHintsConfiguration | null;
7410
7812
  @contains includeTargets: authenticationMethodTarget[];
7411
7813
  }
7412
7814
 
@@ -9839,6 +10241,14 @@ namespace reference.`microsoft.graph` {
9839
10241
  unknownFutureValue: 524288,
9840
10242
  }
9841
10243
 
10244
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
10245
+ enum workbookOperationStatus {
10246
+ notStarted: 0,
10247
+ running: 1,
10248
+ succeeded: 2,
10249
+ failed: 3,
10250
+ }
10251
+
9842
10252
  enum x509CertificateAffinityLevel {
9843
10253
  low: 0,
9844
10254
  high: 1,
@@ -9857,6 +10267,12 @@ namespace reference.`microsoft.graph` {
9857
10267
  unknownFutureValue: 2,
9858
10268
  }
9859
10269
 
10270
+ enum x509CertificateIssuerHintsState {
10271
+ disabled: 0,
10272
+ enabled: 1,
10273
+ unknownFutureValue: 2,
10274
+ }
10275
+
9860
10276
  enum x509CertificateRuleType {
9861
10277
  issuerSubject: 0,
9862
10278
  policyOID: 1,