@microsoft/msgraph-sdk-directory 1.0.0-preview.20 → 1.0.0-preview.21

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.
Files changed (57) hide show
  1. package/directory/administrativeUnits/index.d.ts +5 -7
  2. package/directory/administrativeUnits/index.d.ts.map +1 -1
  3. package/directory/administrativeUnits/item/index.d.ts +7 -10
  4. package/directory/administrativeUnits/item/index.d.ts.map +1 -1
  5. package/directory/administrativeUnits/item/members/index.d.ts +0 -2
  6. package/directory/administrativeUnits/item/members/index.d.ts.map +1 -1
  7. package/directory/administrativeUnits/item/members/item/ref/index.d.ts +2 -3
  8. package/directory/administrativeUnits/item/members/item/ref/index.d.ts.map +1 -1
  9. package/directory/administrativeUnits/item/members/ref/index.d.ts +3 -6
  10. package/directory/administrativeUnits/item/members/ref/index.d.ts.map +1 -1
  11. package/directory/administrativeUnits/item/scopedRoleMembers/index.d.ts +5 -7
  12. package/directory/administrativeUnits/item/scopedRoleMembers/index.d.ts.map +1 -1
  13. package/directory/administrativeUnits/item/scopedRoleMembers/item/index.d.ts +5 -7
  14. package/directory/administrativeUnits/item/scopedRoleMembers/item/index.d.ts.map +1 -1
  15. package/directory/attributeSets/index.d.ts +5 -7
  16. package/directory/attributeSets/index.d.ts.map +1 -1
  17. package/directory/attributeSets/item/index.d.ts +5 -7
  18. package/directory/attributeSets/item/index.d.ts.map +1 -1
  19. package/directory/customSecurityAttributeDefinitions/index.d.ts +5 -7
  20. package/directory/customSecurityAttributeDefinitions/index.d.ts.map +1 -1
  21. package/directory/customSecurityAttributeDefinitions/item/allowedValues/index.d.ts +5 -7
  22. package/directory/customSecurityAttributeDefinitions/item/allowedValues/index.d.ts.map +1 -1
  23. package/directory/customSecurityAttributeDefinitions/item/allowedValues/item/index.d.ts +5 -7
  24. package/directory/customSecurityAttributeDefinitions/item/allowedValues/item/index.d.ts.map +1 -1
  25. package/directory/customSecurityAttributeDefinitions/item/index.d.ts +5 -7
  26. package/directory/customSecurityAttributeDefinitions/item/index.d.ts.map +1 -1
  27. package/directory/deletedItems/index.d.ts +3 -3
  28. package/directory/deletedItems/item/index.d.ts +3 -5
  29. package/directory/deletedItems/item/index.d.ts.map +1 -1
  30. package/directory/deviceLocalCredentials/index.d.ts +3 -4
  31. package/directory/deviceLocalCredentials/index.d.ts.map +1 -1
  32. package/directory/deviceLocalCredentials/item/index.d.ts +3 -4
  33. package/directory/deviceLocalCredentials/item/index.d.ts.map +1 -1
  34. package/directory/federationConfigurations/availableProviderTypes/index.d.ts +4 -3
  35. package/directory/federationConfigurations/availableProviderTypes/index.d.ts.map +1 -1
  36. package/directory/federationConfigurations/item/index.d.ts +2 -3
  37. package/directory/federationConfigurations/item/index.d.ts.map +1 -1
  38. package/directory/index.d.ts +12 -0
  39. package/directory/index.d.ts.map +1 -1
  40. package/directory/index.js +11 -0
  41. package/directory/onPremisesSynchronization/index.d.ts +3 -3
  42. package/directory/onPremisesSynchronization/item/index.d.ts +5 -7
  43. package/directory/onPremisesSynchronization/item/index.d.ts.map +1 -1
  44. package/directory/subscriptions/count/index.d.ts +41 -0
  45. package/directory/subscriptions/count/index.d.ts.map +1 -0
  46. package/directory/subscriptions/count/index.js +36 -0
  47. package/directory/subscriptions/index.d.ts +97 -0
  48. package/directory/subscriptions/index.d.ts.map +1 -0
  49. package/directory/subscriptions/index.js +72 -0
  50. package/directory/subscriptions/item/index.d.ts +69 -0
  51. package/directory/subscriptions/item/index.d.ts.map +1 -0
  52. package/directory/subscriptions/item/index.js +58 -0
  53. package/directory/subscriptionsWithCommerceSubscriptionId/index.d.ts +69 -0
  54. package/directory/subscriptionsWithCommerceSubscriptionId/index.d.ts.map +1 -0
  55. package/directory/subscriptionsWithCommerceSubscriptionId/index.js +58 -0
  56. package/package.json +3 -3
  57. package/tsconfig.tsbuildinfo +1 -1
@@ -11,20 +11,18 @@ export interface AllowedValueItemRequestBuilder extends BaseRequestBuilder<Allow
11
11
  */
12
12
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13
13
  /**
14
- * Read the properties and relationships of an allowedValue object.
14
+ * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.
15
15
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
16
  * @returns {Promise<AllowedValue>}
17
17
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
18
- * @see {@link https://learn.microsoft.com/graph/api/allowedvalue-get?view=graph-rest-1.0|Find more info here}
19
18
  */
20
19
  get(requestConfiguration?: RequestConfiguration<AllowedValueItemRequestBuilderGetQueryParameters> | undefined): Promise<AllowedValue | undefined>;
21
20
  /**
22
- * Update the properties of an allowedValue object.
21
+ * Update the navigation property allowedValues in directory
23
22
  * @param body The request body
24
23
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
25
24
  * @returns {Promise<AllowedValue>}
26
25
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
27
- * @see {@link https://learn.microsoft.com/graph/api/allowedvalue-update?view=graph-rest-1.0|Find more info here}
28
26
  */
29
27
  patch(body: AllowedValue, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AllowedValue | undefined>;
30
28
  /**
@@ -34,13 +32,13 @@ export interface AllowedValueItemRequestBuilder extends BaseRequestBuilder<Allow
34
32
  */
35
33
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
36
34
  /**
37
- * Read the properties and relationships of an allowedValue object.
35
+ * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.
38
36
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
39
37
  * @returns {RequestInformation}
40
38
  */
41
39
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<AllowedValueItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
42
40
  /**
43
- * Update the properties of an allowedValue object.
41
+ * Update the navigation property allowedValues in directory
44
42
  * @param body The request body
45
43
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
46
44
  * @returns {RequestInformation}
@@ -48,7 +46,7 @@ export interface AllowedValueItemRequestBuilder extends BaseRequestBuilder<Allow
48
46
  toPatchRequestInformation(body: AllowedValue, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
49
47
  }
50
48
  /**
51
- * Read the properties and relationships of an allowedValue object.
49
+ * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.
52
50
  */
53
51
  export interface AllowedValueItemRequestBuilderGetQueryParameters {
54
52
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmE,KAAK,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAIpI,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,8BAA+B,SAAQ,kBAAkB,CAAC,8BAA8B,CAAC;IACtG;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gDAAgD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IACpJ;;;;;;;OAOG;IACF,KAAK,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAChI;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gDAAgD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACzJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxI;AACD;;GAEG;AACH,MAAM,WAAW,gDAAgD;IAC7D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,yCAAyC,6JAA6J,CAAC;AAQpN;;GAEG;AACH,eAAO,MAAM,8CAA8C,EAAE,gBA+B5D,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmE,KAAK,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAIpI,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,8BAA+B,SAAQ,kBAAkB,CAAC,8BAA8B,CAAC;IACtG;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gDAAgD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IACpJ;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAChI;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gDAAgD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACzJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxI;AACD;;GAEG;AACH,MAAM,WAAW,gDAAgD;IAC7D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,yCAAyC,6JAA6J,CAAC;AAQpN;;GAEG;AACH,eAAO,MAAM,8CAA8C,EAAE,gBA+B5D,CAAC"}
@@ -16,20 +16,18 @@ export interface CustomSecurityAttributeDefinitionItemRequestBuilder extends Bas
16
16
  */
17
17
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
18
18
  /**
19
- * Read the properties and relationships of a customSecurityAttributeDefinition object.
19
+ * Schema of a custom security attributes (key-value pairs).
20
20
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
21
21
  * @returns {Promise<CustomSecurityAttributeDefinition>}
22
22
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
23
- * @see {@link https://learn.microsoft.com/graph/api/customsecurityattributedefinition-get?view=graph-rest-1.0|Find more info here}
24
23
  */
25
24
  get(requestConfiguration?: RequestConfiguration<CustomSecurityAttributeDefinitionItemRequestBuilderGetQueryParameters> | undefined): Promise<CustomSecurityAttributeDefinition | undefined>;
26
25
  /**
27
- * Update the properties of a customSecurityAttributeDefinition object.
26
+ * Update the navigation property customSecurityAttributeDefinitions in directory
28
27
  * @param body The request body
29
28
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
30
29
  * @returns {Promise<CustomSecurityAttributeDefinition>}
31
30
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
32
- * @see {@link https://learn.microsoft.com/graph/api/customsecurityattributedefinition-update?view=graph-rest-1.0|Find more info here}
33
31
  */
34
32
  patch(body: CustomSecurityAttributeDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CustomSecurityAttributeDefinition | undefined>;
35
33
  /**
@@ -39,13 +37,13 @@ export interface CustomSecurityAttributeDefinitionItemRequestBuilder extends Bas
39
37
  */
40
38
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
41
39
  /**
42
- * Read the properties and relationships of a customSecurityAttributeDefinition object.
40
+ * Schema of a custom security attributes (key-value pairs).
43
41
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
44
42
  * @returns {RequestInformation}
45
43
  */
46
44
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<CustomSecurityAttributeDefinitionItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
47
45
  /**
48
- * Update the properties of a customSecurityAttributeDefinition object.
46
+ * Update the navigation property customSecurityAttributeDefinitions in directory
49
47
  * @param body The request body
50
48
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
51
49
  * @returns {RequestInformation}
@@ -53,7 +51,7 @@ export interface CustomSecurityAttributeDefinitionItemRequestBuilder extends Bas
53
51
  toPatchRequestInformation(body: CustomSecurityAttributeDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
54
52
  }
55
53
  /**
56
- * Read the properties and relationships of a customSecurityAttributeDefinition object.
54
+ * Schema of a custom security attributes (key-value pairs).
57
55
  */
58
56
  export interface CustomSecurityAttributeDefinitionItemRequestBuilderGetQueryParameters {
59
57
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6G,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAInM,OAAO,EAA8F,KAAK,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAEhK,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mDAAoD,SAAQ,kBAAkB,CAAC,mDAAmD,CAAC;IAChJ;;OAEG;IACH,IAAI,aAAa,IAAI,2BAA2B,CAAC;IACjD;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qEAAqE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAC9L;;;;;;;OAOG;IACF,KAAK,CAAC,IAAI,EAAE,iCAAiC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAC1K;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qEAAqE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC9K;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,iCAAiC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC7J;AACD;;GAEG;AACH,MAAM,WAAW,qEAAqE;IAClF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,8DAA8D,2HAA2H,CAAC;AAQvM;;GAEG;AACH,eAAO,MAAM,qEAAqE,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,mDAAmD,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAKpN,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mEAAmE,EAAE,gBA+BjF,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6G,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAInM,OAAO,EAA8F,KAAK,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAEhK,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mDAAoD,SAAQ,kBAAkB,CAAC,mDAAmD,CAAC;IAChJ;;OAEG;IACH,IAAI,aAAa,IAAI,2BAA2B,CAAC;IACjD;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qEAAqE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAC9L;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,iCAAiC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAC1K;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qEAAqE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC9K;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,iCAAiC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC7J;AACD;;GAEG;AACH,MAAM,WAAW,qEAAqE;IAClF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,8DAA8D,2HAA2H,CAAC;AAQvM;;GAEG;AACH,eAAO,MAAM,qEAAqE,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,mDAAmD,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAKpN,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mEAAmE,EAAE,gBA+BjF,CAAC"}
@@ -62,21 +62,21 @@ export interface DeletedItemsRequestBuilder extends BaseRequestBuilder<DeletedIt
62
62
  */
63
63
  byDirectoryObjectId(directoryObjectId: string): DirectoryObjectItemRequestBuilder;
64
64
  /**
65
- * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items.
65
+ * Recently deleted items. Read-only. Nullable.
66
66
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
67
67
  * @returns {Promise<DirectoryObjectCollectionResponse>}
68
68
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
69
69
  */
70
70
  get(requestConfiguration?: RequestConfiguration<DeletedItemsRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObjectCollectionResponse | undefined>;
71
71
  /**
72
- * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items.
72
+ * Recently deleted items. Read-only. Nullable.
73
73
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
74
74
  * @returns {RequestInformation}
75
75
  */
76
76
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<DeletedItemsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
77
77
  }
78
78
  /**
79
- * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items.
79
+ * Recently deleted items. Read-only. Nullable.
80
80
  */
81
81
  export interface DeletedItemsRequestBuilderGetQueryParameters {
82
82
  /**
@@ -63,15 +63,13 @@ export interface DirectoryObjectItemRequestBuilder extends BaseRequestBuilder<Di
63
63
  * Delete navigation property deletedItems for directory
64
64
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
65
65
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
66
- * @see {@link https://learn.microsoft.com/graph/api/directory-deleteditems-delete?view=graph-rest-1.0|Find more info here}
67
66
  */
68
67
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
69
68
  /**
70
- * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items.
69
+ * Recently deleted items. Read-only. Nullable.
71
70
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
72
71
  * @returns {Promise<DirectoryObject>}
73
72
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
74
- * @see {@link https://learn.microsoft.com/graph/api/directory-deleteditems-get?view=graph-rest-1.0|Find more info here}
75
73
  */
76
74
  get(requestConfiguration?: RequestConfiguration<DirectoryObjectItemRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObject | undefined>;
77
75
  /**
@@ -81,14 +79,14 @@ export interface DirectoryObjectItemRequestBuilder extends BaseRequestBuilder<Di
81
79
  */
82
80
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
83
81
  /**
84
- * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items.
82
+ * Recently deleted items. Read-only. Nullable.
85
83
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
86
84
  * @returns {RequestInformation}
87
85
  */
88
86
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<DirectoryObjectItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
89
87
  }
90
88
  /**
91
- * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items.
89
+ * Recently deleted items. Read-only. Nullable.
92
90
  */
93
91
  export interface DirectoryObjectItemRequestBuilderGetQueryParameters {
94
92
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
@@ -17,11 +17,10 @@ export interface DeviceLocalCredentialsRequestBuilder extends BaseRequestBuilder
17
17
  */
18
18
  byDeviceLocalCredentialInfoId(deviceLocalCredentialInfoId: string): DeviceLocalCredentialInfoItemRequestBuilder;
19
19
  /**
20
- * Get a list of the deviceLocalCredentialInfo objects and their properties, excluding the credentials property.
20
+ * The credentials of the device's local administrator account backed up to Microsoft Entra ID.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<DeviceLocalCredentialInfoCollectionResponse>}
23
23
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
- * @see {@link https://learn.microsoft.com/graph/api/directory-list-devicelocalcredentials?view=graph-rest-1.0|Find more info here}
25
24
  */
26
25
  get(requestConfiguration?: RequestConfiguration<DeviceLocalCredentialsRequestBuilderGetQueryParameters> | undefined): Promise<DeviceLocalCredentialInfoCollectionResponse | undefined>;
27
26
  /**
@@ -33,7 +32,7 @@ export interface DeviceLocalCredentialsRequestBuilder extends BaseRequestBuilder
33
32
  */
34
33
  post(body: DeviceLocalCredentialInfo, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DeviceLocalCredentialInfo | undefined>;
35
34
  /**
36
- * Get a list of the deviceLocalCredentialInfo objects and their properties, excluding the credentials property.
35
+ * The credentials of the device's local administrator account backed up to Microsoft Entra ID.
37
36
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
38
37
  * @returns {RequestInformation}
39
38
  */
@@ -47,7 +46,7 @@ export interface DeviceLocalCredentialsRequestBuilder extends BaseRequestBuilder
47
46
  toPostRequestInformation(body: DeviceLocalCredentialInfo, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
48
47
  }
49
48
  /**
50
- * Get a list of the deviceLocalCredentialInfo objects and their properties, excluding the credentials property.
49
+ * The credentials of the device's local administrator account backed up to Microsoft Entra ID.
51
50
  */
52
51
  export interface DeviceLocalCredentialsRequestBuilderGetQueryParameters {
53
52
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAsK,KAAK,yBAAyB,EAAE,KAAK,2CAA2C,EAAE,MAAM,gCAAgC,CAAC;AAItS,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA+D,KAAK,2CAA2C,EAAE,MAAM,SAAS,CAAC;AAExI,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,6BAA6B,CAAC,2BAA2B,EAAE,MAAM,GAAI,2CAA2C,CAAC;IAClH;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,2CAA2C,GAAG,SAAS,CAAC,CAAC;IACzL;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,yBAAyB,GAAG,SAAS,CAAC,CAAC;IACzJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/J;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACpJ;AACD;;GAEG;AACH,MAAM,WAAW,sDAAsD;IACnE;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,+CAA+C,2GAA2G,CAAC;AAYxK;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,oCAAoC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQtL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oDAAoD,EAAE,gBAuBlE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAsK,KAAK,yBAAyB,EAAE,KAAK,2CAA2C,EAAE,MAAM,gCAAgC,CAAC;AAItS,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA+D,KAAK,2CAA2C,EAAE,MAAM,SAAS,CAAC;AAExI,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,6BAA6B,CAAC,2BAA2B,EAAE,MAAM,GAAI,2CAA2C,CAAC;IAClH;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,2CAA2C,GAAG,SAAS,CAAC,CAAC;IACzL;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,yBAAyB,GAAG,SAAS,CAAC,CAAC;IACzJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/J;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACpJ;AACD;;GAEG;AACH,MAAM,WAAW,sDAAsD;IACnE;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,+CAA+C,2GAA2G,CAAC;AAYxK;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,oCAAoC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQtL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oDAAoD,EAAE,gBAuBlE,CAAC"}
@@ -11,11 +11,10 @@ export interface DeviceLocalCredentialInfoItemRequestBuilder extends BaseRequest
11
11
  */
12
12
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13
13
  /**
14
- * Retrieve the properties of a deviceLocalCredentialInfo for a specified device object.
14
+ * The credentials of the device's local administrator account backed up to Microsoft Entra ID.
15
15
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
16
  * @returns {Promise<DeviceLocalCredentialInfo>}
17
17
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
18
- * @see {@link https://learn.microsoft.com/graph/api/devicelocalcredentialinfo-get?view=graph-rest-1.0|Find more info here}
19
18
  */
20
19
  get(requestConfiguration?: RequestConfiguration<DeviceLocalCredentialInfoItemRequestBuilderGetQueryParameters> | undefined): Promise<DeviceLocalCredentialInfo | undefined>;
21
20
  /**
@@ -33,7 +32,7 @@ export interface DeviceLocalCredentialInfoItemRequestBuilder extends BaseRequest
33
32
  */
34
33
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
35
34
  /**
36
- * Retrieve the properties of a deviceLocalCredentialInfo for a specified device object.
35
+ * The credentials of the device's local administrator account backed up to Microsoft Entra ID.
37
36
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
38
37
  * @returns {RequestInformation}
39
38
  */
@@ -47,7 +46,7 @@ export interface DeviceLocalCredentialInfoItemRequestBuilder extends BaseRequest
47
46
  toPatchRequestInformation(body: DeviceLocalCredentialInfo, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
48
47
  }
49
48
  /**
50
- * Retrieve the properties of a deviceLocalCredentialInfo for a specified device object.
49
+ * The credentials of the device's local administrator account backed up to Microsoft Entra ID.
51
50
  */
52
51
  export interface DeviceLocalCredentialInfoItemRequestBuilderGetQueryParameters {
53
52
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6F,KAAK,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAI3K,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,2CAA4C,SAAQ,kBAAkB,CAAC,2CAA2C,CAAC;IAChI;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6DAA6D,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,yBAAyB,GAAG,SAAS,CAAC,CAAC;IAC9K;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,yBAAyB,GAAG,SAAS,CAAC,CAAC;IAC1J;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6DAA6D,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrJ;AACD;;GAEG;AACH,MAAM,WAAW,6DAA6D;IAC1E;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,sDAAsD,6FAA6F,CAAC;AAOjK;;GAEG;AACH,eAAO,MAAM,2DAA2D,EAAE,gBA+BzE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6F,KAAK,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAI3K,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,2CAA4C,SAAQ,kBAAkB,CAAC,2CAA2C,CAAC;IAChI;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6DAA6D,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,yBAAyB,GAAG,SAAS,CAAC,CAAC;IAC9K;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,yBAAyB,GAAG,SAAS,CAAC,CAAC;IAC1J;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6DAA6D,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrJ;AACD;;GAEG;AACH,MAAM,WAAW,6DAA6D;IAC1E;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,sDAAsD,6FAA6F,CAAC;AAOjK;;GAEG;AACH,eAAO,MAAM,2DAA2D,EAAE,gBA+BzE,CAAC"}
@@ -11,21 +11,22 @@ export interface AvailableProviderTypesGetResponse extends BaseCollectionPaginat
11
11
  */
12
12
  export interface AvailableProviderTypesRequestBuilder extends BaseRequestBuilder<AvailableProviderTypesRequestBuilder> {
13
13
  /**
14
- * Invoke function availableProviderTypes
14
+ * Get all identity providers supported in a directory.
15
15
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
16
  * @returns {Promise<AvailableProviderTypesGetResponse>}
17
17
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
18
+ * @see {@link https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-1.0|Find more info here}
18
19
  */
19
20
  get(requestConfiguration?: RequestConfiguration<AvailableProviderTypesRequestBuilderGetQueryParameters> | undefined): Promise<AvailableProviderTypesGetResponse | undefined>;
20
21
  /**
21
- * Invoke function availableProviderTypes
22
+ * Get all identity providers supported in a directory.
22
23
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
23
24
  * @returns {RequestInformation}
24
25
  */
25
26
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<AvailableProviderTypesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
26
27
  }
27
28
  /**
28
- * Invoke function availableProviderTypes
29
+ * Get all identity providers supported in a directory.
29
30
  */
30
31
  export interface AvailableProviderTypesRequestBuilderGetQueryParameters {
31
32
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAwG,KAAK,qCAAqC,EAAE,MAAM,gCAAgC,CAAC;AAIlM,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,QAAQ,EAAwB,KAAK,SAAS,EAAE,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,KAAK,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAElO,MAAM,WAAW,iCAAkC,SAAQ,qCAAqC,EAAE,QAAQ;IACtG;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;CACpB;AACD;;GAEG;AACH,MAAM,WAAW,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAC/K;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClK;AACD;;GAEG;AACH,MAAM,WAAW,sDAAsD;IACnE;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;;;GAIG;AACH,wBAAgB,6DAA6D,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS,GAAI,CAAC,CAAC,QAAQ,CAAC,EAAE,QAAQ,KAAK,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAAC,CAErL;AACD;;;GAGG;AACH,wBAAgB,gDAAgD,CAAC,iCAAiC,GAAE,OAAO,CAAC,iCAAiC,CAAC,GAAG,SAAc,GAAI,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAK3M;AACD;;;GAGG;AACH,wBAAgB,0CAA0C,CAAC,MAAM,EAAE,mBAAmB,EAAE,iCAAiC,GAAE,OAAO,CAAC,iCAAiC,CAAC,GAAG,SAAc,GAAI,IAAI,CAG7L;AACD;;GAEG;AACH,eAAO,MAAM,+CAA+C,yHAAyH,CAAC;AAWtL;;GAEG;AACH,eAAO,MAAM,oDAAoD,EAAE,gBAWlE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAwG,KAAK,qCAAqC,EAAE,MAAM,gCAAgC,CAAC;AAIlM,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,QAAQ,EAAwB,KAAK,SAAS,EAAE,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,KAAK,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAElO,MAAM,WAAW,iCAAkC,SAAQ,qCAAqC,EAAE,QAAQ;IACtG;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;CACpB;AACD;;GAEG;AACH,MAAM,WAAW,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAC/K;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClK;AACD;;GAEG;AACH,MAAM,WAAW,sDAAsD;IACnE;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;;;GAIG;AACH,wBAAgB,6DAA6D,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS,GAAI,CAAC,CAAC,QAAQ,CAAC,EAAE,QAAQ,KAAK,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAAC,CAErL;AACD;;;GAGG;AACH,wBAAgB,gDAAgD,CAAC,iCAAiC,GAAE,OAAO,CAAC,iCAAiC,CAAC,GAAG,SAAc,GAAI,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAK3M;AACD;;;GAGG;AACH,wBAAgB,0CAA0C,CAAC,MAAM,EAAE,mBAAmB,EAAE,iCAAiC,GAAE,OAAO,CAAC,iCAAiC,CAAC,GAAG,SAAc,GAAI,IAAI,CAG7L;AACD;;GAEG;AACH,eAAO,MAAM,+CAA+C,yHAAyH,CAAC;AAWtL;;GAEG;AACH,eAAO,MAAM,oDAAoD,EAAE,gBAWlE,CAAC"}
@@ -5,10 +5,9 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface IdentityProviderBaseItemRequestBuilder extends BaseRequestBuilder<IdentityProviderBaseItemRequestBuilder> {
7
7
  /**
8
- * Delete a samlOrWsFedExternalDomainFederation object.
8
+ * Delete navigation property federationConfigurations for directory
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
11
- * @see {@link https://learn.microsoft.com/graph/api/samlorwsfedexternaldomainfederation-delete?view=graph-rest-1.0|Find more info here}
12
11
  */
13
12
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
14
13
  /**
@@ -27,7 +26,7 @@ export interface IdentityProviderBaseItemRequestBuilder extends BaseRequestBuild
27
26
  */
28
27
  patch(body: IdentityProviderBase, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<IdentityProviderBase | undefined>;
29
28
  /**
30
- * Delete a samlOrWsFedExternalDomainFederation object.
29
+ * Delete navigation property federationConfigurations for directory
31
30
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
32
31
  * @returns {RequestInformation}
33
32
  */
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmF,KAAK,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAI5J,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,sCAAuC,SAAQ,kBAAkB,CAAC,sCAAsC,CAAC;IACtH;;;;;OAKG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wDAAwD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IACpK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IAChJ;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wDAAwD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACjK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,wDAAwD;IACrE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,iDAAiD,oGAAoG,CAAC;AAQnK;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,gBA+BpE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmF,KAAK,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAI5J,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,sCAAuC,SAAQ,kBAAkB,CAAC,sCAAsC,CAAC;IACtH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wDAAwD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IACpK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IAChJ;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wDAAwD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACjK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,wDAAwD;IACrE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,iDAAiD,oGAAoG,CAAC;AAQnK;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,gBA+BpE,CAAC"}
@@ -6,6 +6,8 @@ import { type DeletedItemsRequestBuilder } from './deletedItems/';
6
6
  import { type DeviceLocalCredentialsRequestBuilder } from './deviceLocalCredentials/';
7
7
  import { type FederationConfigurationsRequestBuilder } from './federationConfigurations/';
8
8
  import { type OnPremisesSynchronizationRequestBuilder } from './onPremisesSynchronization/';
9
+ import { type SubscriptionsRequestBuilder } from './subscriptions/';
10
+ import { type SubscriptionsWithCommerceSubscriptionIdRequestBuilder } from './subscriptionsWithCommerceSubscriptionId/';
9
11
  import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
10
12
  /**
11
13
  * Provides operations to manage the directory singleton.
@@ -39,6 +41,10 @@ export interface DirectoryRequestBuilder extends BaseRequestBuilder<DirectoryReq
39
41
  * Provides operations to manage the onPremisesSynchronization property of the microsoft.graph.directory entity.
40
42
  */
41
43
  get onPremisesSynchronization(): OnPremisesSynchronizationRequestBuilder;
44
+ /**
45
+ * Provides operations to manage the subscriptions property of the microsoft.graph.directory entity.
46
+ */
47
+ get subscriptions(): SubscriptionsRequestBuilder;
42
48
  /**
43
49
  * Get directory
44
50
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -54,6 +60,12 @@ export interface DirectoryRequestBuilder extends BaseRequestBuilder<DirectoryReq
54
60
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
55
61
  */
56
62
  patch(body: Directory, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Directory | undefined>;
63
+ /**
64
+ * Provides operations to manage the subscriptions property of the microsoft.graph.directory entity.
65
+ * @param commerceSubscriptionId Alternate key of companySubscription
66
+ * @returns {SubscriptionsWithCommerceSubscriptionIdRequestBuilder}
67
+ */
68
+ subscriptionsWithCommerceSubscriptionId(commerceSubscriptionId: string | undefined): SubscriptionsWithCommerceSubscriptionIdRequestBuilder;
57
69
  /**
58
70
  * Get directory
59
71
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6D,KAAK,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAI3H,OAAO,EAA0G,KAAK,iCAAiC,EAAE,MAAM,wBAAwB,CAAC;AAExL,OAAO,EAA8F,KAAK,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAEhK,OAAO,EAAwI,KAAK,gDAAgD,EAAE,MAAM,uCAAuC,CAAC;AAEpP,OAAO,EAA4F,KAAK,0BAA0B,EAAE,MAAM,iBAAiB,CAAC;AAE5J,OAAO,EAAgH,KAAK,oCAAoC,EAAE,MAAM,2BAA2B,CAAC;AAEpM,OAAO,EAAoH,KAAK,sCAAsC,EAAE,MAAM,6BAA6B,CAAC;AAE5M,OAAO,EAAsH,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAEhN,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,mBAAmB,IAAI,iCAAiC,CAAC;IAC7D;;OAEG;IACH,IAAI,aAAa,IAAI,2BAA2B,CAAC;IACjD;;OAEG;IACH,IAAI,kCAAkC,IAAI,gDAAgD,CAAC;IAC3F;;OAEG;IACH,IAAI,YAAY,IAAI,0BAA0B,CAAC;IAC/C;;OAEG;IACH,IAAI,sBAAsB,IAAI,oCAAoC,CAAC;IACnE;;OAEG;IACH,IAAI,wBAAwB,IAAI,sCAAsC,CAAC;IACvE;;OAEG;IACH,IAAI,yBAAyB,IAAI,uCAAuC,CAAC;IACzE;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC1I;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC1H;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrI;AACD;;GAEG;AACH,MAAM,WAAW,yCAAyC;IACtD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,kCAAkC,+CAA+C,CAAC;AAQ/F;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uBAAuB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CA6B5J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,gBAuBrD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6D,KAAK,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAI3H,OAAO,EAA0G,KAAK,iCAAiC,EAAE,MAAM,wBAAwB,CAAC;AAExL,OAAO,EAA8F,KAAK,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAEhK,OAAO,EAAwI,KAAK,gDAAgD,EAAE,MAAM,uCAAuC,CAAC;AAEpP,OAAO,EAA4F,KAAK,0BAA0B,EAAE,MAAM,iBAAiB,CAAC;AAE5J,OAAO,EAAgH,KAAK,oCAAoC,EAAE,MAAM,2BAA2B,CAAC;AAEpM,OAAO,EAAoH,KAAK,sCAAsC,EAAE,MAAM,6BAA6B,CAAC;AAE5M,OAAO,EAAsH,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAEhN,OAAO,EAA8F,KAAK,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAEhK,OAAO,EAAyE,KAAK,qDAAqD,EAAE,MAAM,4CAA4C,CAAC;AAE/L,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,mBAAmB,IAAI,iCAAiC,CAAC;IAC7D;;OAEG;IACH,IAAI,aAAa,IAAI,2BAA2B,CAAC;IACjD;;OAEG;IACH,IAAI,kCAAkC,IAAI,gDAAgD,CAAC;IAC3F;;OAEG;IACH,IAAI,YAAY,IAAI,0BAA0B,CAAC;IAC/C;;OAEG;IACH,IAAI,sBAAsB,IAAI,oCAAoC,CAAC;IACnE;;OAEG;IACH,IAAI,wBAAwB,IAAI,sCAAsC,CAAC;IACvE;;OAEG;IACH,IAAI,yBAAyB,IAAI,uCAAuC,CAAC;IACzE;;OAEG;IACH,IAAI,aAAa,IAAI,2BAA2B,CAAC;IACjD;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC1I;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC1H;;;;OAIG;IACF,uCAAuC,CAAC,sBAAsB,EAAE,MAAM,GAAG,SAAS,GAAI,qDAAqD,CAAC;IAC7I;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrI;AACD;;GAEG;AACH,MAAM,WAAW,yCAAyC;IACtD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,kCAAkC,+CAA+C,CAAC;AAQ/F;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uBAAuB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAoC5J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,gBAuBrD,CAAC"}
@@ -22,6 +22,10 @@ const deviceLocalCredentials_1 = require("./deviceLocalCredentials/");
22
22
  const federationConfigurations_1 = require("./federationConfigurations/");
23
23
  // @ts-ignore
24
24
  const onPremisesSynchronization_1 = require("./onPremisesSynchronization/");
25
+ // @ts-ignore
26
+ const subscriptions_1 = require("./subscriptions/");
27
+ // @ts-ignore
28
+ const subscriptionsWithCommerceSubscriptionId_1 = require("./subscriptionsWithCommerceSubscriptionId/");
25
29
  /**
26
30
  * Uri template for the request builder.
27
31
  */
@@ -37,6 +41,9 @@ const DirectoryRequestBuilderGetQueryParametersMapper = {
37
41
  * Metadata for all the navigation properties in the request builder.
38
42
  */
39
43
  exports.DirectoryRequestBuilderNavigationMetadata = {
44
+ subscriptionsWithCommerceSubscriptionId: {
45
+ requestsMetadata: subscriptionsWithCommerceSubscriptionId_1.SubscriptionsWithCommerceSubscriptionIdRequestBuilderRequestsMetadata,
46
+ },
40
47
  administrativeUnits: {
41
48
  requestsMetadata: administrativeUnits_1.AdministrativeUnitsRequestBuilderRequestsMetadata,
42
49
  navigationMetadata: administrativeUnits_1.AdministrativeUnitsRequestBuilderNavigationMetadata,
@@ -65,6 +72,10 @@ exports.DirectoryRequestBuilderNavigationMetadata = {
65
72
  requestsMetadata: onPremisesSynchronization_1.OnPremisesSynchronizationRequestBuilderRequestsMetadata,
66
73
  navigationMetadata: onPremisesSynchronization_1.OnPremisesSynchronizationRequestBuilderNavigationMetadata,
67
74
  },
75
+ subscriptions: {
76
+ requestsMetadata: subscriptions_1.SubscriptionsRequestBuilderRequestsMetadata,
77
+ navigationMetadata: subscriptions_1.SubscriptionsRequestBuilderNavigationMetadata,
78
+ },
68
79
  };
69
80
  /**
70
81
  * Metadata for all the requests in the request builder.
@@ -17,7 +17,7 @@ export interface OnPremisesSynchronizationRequestBuilder extends BaseRequestBuil
17
17
  */
18
18
  byOnPremisesDirectorySynchronizationId(onPremisesDirectorySynchronizationId: string): OnPremisesDirectorySynchronizationItemRequestBuilder;
19
19
  /**
20
- * Read the properties and relationships of an onPremisesDirectorySynchronization object.
20
+ * A container for on-premises directory synchronization functionalities that are available for the organization.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<OnPremisesDirectorySynchronizationCollectionResponse>}
23
23
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
@@ -32,7 +32,7 @@ export interface OnPremisesSynchronizationRequestBuilder extends BaseRequestBuil
32
32
  */
33
33
  post(body: OnPremisesDirectorySynchronization, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<OnPremisesDirectorySynchronization | undefined>;
34
34
  /**
35
- * Read the properties and relationships of an onPremisesDirectorySynchronization object.
35
+ * A container for on-premises directory synchronization functionalities that are available for the organization.
36
36
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
37
37
  * @returns {RequestInformation}
38
38
  */
@@ -46,7 +46,7 @@ export interface OnPremisesSynchronizationRequestBuilder extends BaseRequestBuil
46
46
  toPostRequestInformation(body: OnPremisesDirectorySynchronization, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
47
47
  }
48
48
  /**
49
- * Read the properties and relationships of an onPremisesDirectorySynchronization object.
49
+ * A container for on-premises directory synchronization functionalities that are available for the organization.
50
50
  */
51
51
  export interface OnPremisesSynchronizationRequestBuilderGetQueryParameters {
52
52
  /**
@@ -11,20 +11,18 @@ export interface OnPremisesDirectorySynchronizationItemRequestBuilder extends Ba
11
11
  */
12
12
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13
13
  /**
14
- * Read the properties and relationships of an onPremisesDirectorySynchronization object.
14
+ * A container for on-premises directory synchronization functionalities that are available for the organization.
15
15
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
16
  * @returns {Promise<OnPremisesDirectorySynchronization>}
17
17
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
18
- * @see {@link https://learn.microsoft.com/graph/api/onpremisesdirectorysynchronization-get?view=graph-rest-1.0|Find more info here}
19
18
  */
20
19
  get(requestConfiguration?: RequestConfiguration<OnPremisesDirectorySynchronizationItemRequestBuilderGetQueryParameters> | undefined): Promise<OnPremisesDirectorySynchronization | undefined>;
21
20
  /**
22
- * Update the properties of an onPremisesDirectorySynchronization object.
21
+ * Update the navigation property onPremisesSynchronization in directory
23
22
  * @param body The request body
24
23
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
25
24
  * @returns {Promise<OnPremisesDirectorySynchronization>}
26
25
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
27
- * @see {@link https://learn.microsoft.com/graph/api/onpremisesdirectorysynchronization-update?view=graph-rest-1.0|Find more info here}
28
26
  */
29
27
  patch(body: OnPremisesDirectorySynchronization, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<OnPremisesDirectorySynchronization | undefined>;
30
28
  /**
@@ -34,13 +32,13 @@ export interface OnPremisesDirectorySynchronizationItemRequestBuilder extends Ba
34
32
  */
35
33
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
36
34
  /**
37
- * Read the properties and relationships of an onPremisesDirectorySynchronization object.
35
+ * A container for on-premises directory synchronization functionalities that are available for the organization.
38
36
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
39
37
  * @returns {RequestInformation}
40
38
  */
41
39
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<OnPremisesDirectorySynchronizationItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
42
40
  /**
43
- * Update the properties of an onPremisesDirectorySynchronization object.
41
+ * Update the navigation property onPremisesSynchronization in directory
44
42
  * @param body The request body
45
43
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
46
44
  * @returns {RequestInformation}
@@ -48,7 +46,7 @@ export interface OnPremisesDirectorySynchronizationItemRequestBuilder extends Ba
48
46
  toPatchRequestInformation(body: OnPremisesDirectorySynchronization, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
49
47
  }
50
48
  /**
51
- * Read the properties and relationships of an onPremisesDirectorySynchronization object.
49
+ * A container for on-premises directory synchronization functionalities that are available for the organization.
52
50
  */
53
51
  export interface OnPremisesDirectorySynchronizationItemRequestBuilderGetQueryParameters {
54
52
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+G,KAAK,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAItM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,oDAAqD,SAAQ,kBAAkB,CAAC,oDAAoD,CAAC;IAClJ;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sEAAsE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IAChM;;;;;;;OAOG;IACF,KAAK,CAAC,IAAI,EAAE,kCAAkC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IAC5K;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sEAAsE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/K;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,kCAAkC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9J;AACD;;GAEG;AACH,MAAM,WAAW,sEAAsE;IACnF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,+DAA+D,mHAAmH,CAAC;AAQhM;;GAEG;AACH,eAAO,MAAM,oEAAoE,EAAE,gBA+BlF,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+G,KAAK,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAItM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,oDAAqD,SAAQ,kBAAkB,CAAC,oDAAoD,CAAC;IAClJ;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sEAAsE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IAChM;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,kCAAkC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IAC5K;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sEAAsE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/K;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,kCAAkC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9J;AACD;;GAEG;AACH,MAAM,WAAW,sEAAsE;IACnF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,+DAA+D,mHAAmH,CAAC;AAQhM;;GAEG;AACH,eAAO,MAAM,oEAAoE,EAAE,gBA+BlF,CAAC"}
@@ -0,0 +1,41 @@
1
+ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
2
+ /**
3
+ * Provides operations to count the resources in the collection.
4
+ */
5
+ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuilder> {
6
+ /**
7
+ * Get the number of the resource
8
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9
+ * @returns {Promise<number>}
10
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
11
+ */
12
+ get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
13
+ /**
14
+ * Get the number of the resource
15
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
+ * @returns {RequestInformation}
17
+ */
18
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
19
+ }
20
+ /**
21
+ * Get the number of the resource
22
+ */
23
+ export interface CountRequestBuilderGetQueryParameters {
24
+ /**
25
+ * Filter items by property values
26
+ */
27
+ filter?: string;
28
+ /**
29
+ * Search items by search phrases
30
+ */
31
+ search?: string;
32
+ }
33
+ /**
34
+ * Uri template for the request builder.
35
+ */
36
+ export declare const CountRequestBuilderUriTemplate = "{+baseurl}/directory/subscriptions/$count{?%24filter,%24search}";
37
+ /**
38
+ * Metadata for all the requests in the request builder.
39
+ */
40
+ export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata;
41
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,oEAAoE,CAAC;AAQhH;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAWjD,CAAC"}
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CountRequestBuilderRequestsMetadata = exports.CountRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ // @ts-ignore
8
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
9
+ /**
10
+ * Uri template for the request builder.
11
+ */
12
+ exports.CountRequestBuilderUriTemplate = "{+baseurl}/directory/subscriptions/$count{?%24filter,%24search}";
13
+ /**
14
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
15
+ */
16
+ const CountRequestBuilderGetQueryParametersMapper = {
17
+ "filter": "%24filter",
18
+ "search": "%24search",
19
+ };
20
+ /**
21
+ * Metadata for all the requests in the request builder.
22
+ */
23
+ exports.CountRequestBuilderRequestsMetadata = {
24
+ get: {
25
+ uriTemplate: exports.CountRequestBuilderUriTemplate,
26
+ responseBodyContentType: "text/plain;q=0.9",
27
+ errorMappings: {
28
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
29
+ },
30
+ adapterMethodName: "sendPrimitive",
31
+ responseBodyFactory: "number",
32
+ queryParametersMapper: CountRequestBuilderGetQueryParametersMapper,
33
+ },
34
+ };
35
+ /* tslint:enable */
36
+ /* eslint-enable */