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

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 (29) hide show
  1. package/directory/administrativeUnits/item/members/index.d.ts +5 -5
  2. package/directory/administrativeUnits/item/members/ref/index.d.ts +5 -5
  3. package/directory/deletedItems/graphGroup/index.d.ts +4 -3
  4. package/directory/deletedItems/graphGroup/index.d.ts.map +1 -1
  5. package/directory/deletedItems/item/graphGroup/index.d.ts +4 -3
  6. package/directory/deletedItems/item/graphGroup/index.d.ts.map +1 -1
  7. package/directory/deletedItems/item/index.d.ts +2 -2
  8. package/directory/deviceLocalCredentials/index.d.ts +5 -1
  9. package/directory/deviceLocalCredentials/index.d.ts.map +1 -1
  10. package/directory/deviceLocalCredentials/index.js +2 -1
  11. package/directory/federationConfigurations/availableProviderTypes/index.d.ts +4 -3
  12. package/directory/federationConfigurations/availableProviderTypes/index.d.ts.map +1 -1
  13. package/directory/index.d.ts +12 -0
  14. package/directory/index.d.ts.map +1 -1
  15. package/directory/index.js +11 -0
  16. package/directory/subscriptions/count/index.d.ts +41 -0
  17. package/directory/subscriptions/count/index.d.ts.map +1 -0
  18. package/directory/subscriptions/count/index.js +36 -0
  19. package/directory/subscriptions/index.d.ts +97 -0
  20. package/directory/subscriptions/index.d.ts.map +1 -0
  21. package/directory/subscriptions/index.js +72 -0
  22. package/directory/subscriptions/item/index.d.ts +69 -0
  23. package/directory/subscriptions/item/index.d.ts.map +1 -0
  24. package/directory/subscriptions/item/index.js +58 -0
  25. package/directory/subscriptionsWithCommerceSubscriptionId/index.d.ts +69 -0
  26. package/directory/subscriptionsWithCommerceSubscriptionId/index.d.ts.map +1 -0
  27. package/directory/subscriptionsWithCommerceSubscriptionId/index.js +58 -0
  28. package/package.json +3 -3
  29. package/tsconfig.tsbuildinfo +1 -1
@@ -52,7 +52,7 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
52
52
  */
53
53
  byDirectoryObjectId(directoryObjectId: string): DirectoryObjectItemRequestBuilder;
54
54
  /**
55
- * Users and groups that are members of this administrative unit. Supports $expand.
55
+ * Use this API to get the members list (users, groups, or devices) in an administrative unit.
56
56
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
57
57
  * @returns {Promise<DirectoryObjectCollectionResponse>}
58
58
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
@@ -60,7 +60,7 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
60
60
  */
61
61
  get(requestConfiguration?: RequestConfiguration<MembersRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObjectCollectionResponse | undefined>;
62
62
  /**
63
- * Create new navigation property to members for directory
63
+ * Use this API to add a member (user, group, or device) to an administrative unit. Currently it's only possible to add one member at a time to an administrative unit.
64
64
  * @param body The request body
65
65
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
66
66
  * @returns {Promise<DirectoryObject>}
@@ -69,13 +69,13 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
69
69
  */
70
70
  post(body: DirectoryObject, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DirectoryObject | undefined>;
71
71
  /**
72
- * Users and groups that are members of this administrative unit. Supports $expand.
72
+ * Use this API to get the members list (users, groups, or devices) in an administrative unit.
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<MembersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
77
77
  /**
78
- * Create new navigation property to members for directory
78
+ * Use this API to add a member (user, group, or device) to an administrative unit. Currently it's only possible to add one member at a time to an administrative unit.
79
79
  * @param body The request body
80
80
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
81
81
  * @returns {RequestInformation}
@@ -83,7 +83,7 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
83
83
  toPostRequestInformation(body: DirectoryObject, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
84
84
  }
85
85
  /**
86
- * Users and groups that are members of this administrative unit. Supports $expand.
86
+ * Use this API to get the members list (users, groups, or devices) in an administrative unit.
87
87
  */
88
88
  export interface MembersRequestBuilderGetQueryParameters {
89
89
  /**
@@ -12,7 +12,7 @@ export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder>
12
12
  */
13
13
  delete(requestConfiguration?: RequestConfiguration<RefRequestBuilderDeleteQueryParameters> | undefined): Promise<void>;
14
14
  /**
15
- * Users and groups that are members of this administrative unit. Supports $expand.
15
+ * Use this API to get the members list (users, groups, or devices) in an administrative unit.
16
16
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
17
17
  * @returns {Promise<StringCollectionResponse>}
18
18
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
@@ -20,7 +20,7 @@ export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder>
20
20
  */
21
21
  get(requestConfiguration?: RequestConfiguration<RefRequestBuilderGetQueryParameters> | undefined): Promise<StringCollectionResponse | undefined>;
22
22
  /**
23
- * Create new navigation property ref to members for directory
23
+ * Use this API to add a member (user, group, or device) to an administrative unit. Currently it's only possible to add one member at a time to an administrative unit.
24
24
  * @param body The request body
25
25
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
26
26
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
@@ -34,13 +34,13 @@ export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder>
34
34
  */
35
35
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<RefRequestBuilderDeleteQueryParameters> | undefined): RequestInformation;
36
36
  /**
37
- * Users and groups that are members of this administrative unit. Supports $expand.
37
+ * Use this API to get the members list (users, groups, or devices) in an administrative unit.
38
38
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
39
39
  * @returns {RequestInformation}
40
40
  */
41
41
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<RefRequestBuilderGetQueryParameters> | undefined): RequestInformation;
42
42
  /**
43
- * Create new navigation property ref to members for directory
43
+ * Use this API to add a member (user, group, or device) to an administrative unit. Currently it's only possible to add one member at a time to an administrative unit.
44
44
  * @param body The request body
45
45
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
46
46
  * @returns {RequestInformation}
@@ -57,7 +57,7 @@ export interface RefRequestBuilderDeleteQueryParameters {
57
57
  id?: string;
58
58
  }
59
59
  /**
60
- * Users and groups that are members of this administrative unit. Supports $expand.
60
+ * Use this API to get the members list (users, groups, or devices) in an administrative unit.
61
61
  */
62
62
  export interface RefRequestBuilderGetQueryParameters {
63
63
  /**
@@ -10,21 +10,22 @@ export interface GraphGroupRequestBuilder extends BaseRequestBuilder<GraphGroupR
10
10
  */
11
11
  get count(): CountRequestBuilder;
12
12
  /**
13
- * Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection
13
+ * Retrieve a list of recently deleted directory objects. Currently, deleted items functionality is only supported for the application, servicePrincipal, group, administrative unit, and user resources.
14
14
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
15
15
  * @returns {Promise<GroupCollectionResponse>}
16
16
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
17
+ * @see {@link https://learn.microsoft.com/graph/api/directory-deleteditems-list?view=graph-rest-1.0|Find more info here}
17
18
  */
18
19
  get(requestConfiguration?: RequestConfiguration<GraphGroupRequestBuilderGetQueryParameters> | undefined): Promise<GroupCollectionResponse | undefined>;
19
20
  /**
20
- * Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection
21
+ * Retrieve a list of recently deleted directory objects. Currently, deleted items functionality is only supported for the application, servicePrincipal, group, administrative unit, and user resources.
21
22
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
23
  * @returns {RequestInformation}
23
24
  */
24
25
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<GraphGroupRequestBuilderGetQueryParameters> | undefined): RequestInformation;
25
26
  }
26
27
  /**
27
- * Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection
28
+ * Retrieve a list of recently deleted directory objects. Currently, deleted items functionality is only supported for the application, servicePrincipal, group, administrative unit, and user resources.
28
29
  */
29
30
  export interface GraphGroupRequestBuilderGetQueryParameters {
30
31
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuD,KAAK,uBAAuB,EAAE,MAAM,gCAAgC,CAAC;AAInI,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,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,wBAAyB,SAAQ,kBAAkB,CAAC,wBAAwB,CAAC;IAC1F;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,uBAAuB,GAAG,SAAS,CAAC,CAAC;IACzJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACtJ;AACD;;GAEG;AACH,MAAM,WAAW,0CAA0C;IACvD;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;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,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,mCAAmC,+HAA+H,CAAC;AAchL;;GAEG;AACH,eAAO,MAAM,0CAA0C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,wBAAwB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAI9J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,gBAWtD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuD,KAAK,uBAAuB,EAAE,MAAM,gCAAgC,CAAC;AAInI,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,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,wBAAyB,SAAQ,kBAAkB,CAAC,wBAAwB,CAAC;IAC1F;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,uBAAuB,GAAG,SAAS,CAAC,CAAC;IACzJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACtJ;AACD;;GAEG;AACH,MAAM,WAAW,0CAA0C;IACvD;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;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,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,mCAAmC,+HAA+H,CAAC;AAchL;;GAEG;AACH,eAAO,MAAM,0CAA0C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,wBAAwB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAI9J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,gBAWtD,CAAC"}
@@ -5,21 +5,22 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface GraphGroupRequestBuilder extends BaseRequestBuilder<GraphGroupRequestBuilder> {
7
7
  /**
8
- * Get the item of type microsoft.graph.directoryObject as microsoft.graph.group
8
+ * Retrieve a list of recently deleted directory objects. Currently, deleted items functionality is only supported for the application, servicePrincipal, group, administrative unit, and user resources.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<Group>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
+ * @see {@link https://learn.microsoft.com/graph/api/directory-deleteditems-list?view=graph-rest-1.0|Find more info here}
12
13
  */
13
14
  get(requestConfiguration?: RequestConfiguration<GraphGroupRequestBuilderGetQueryParameters> | undefined): Promise<Group | undefined>;
14
15
  /**
15
- * Get the item of type microsoft.graph.directoryObject as microsoft.graph.group
16
+ * Retrieve a list of recently deleted directory objects. Currently, deleted items functionality is only supported for the application, servicePrincipal, group, administrative unit, and user resources.
16
17
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
17
18
  * @returns {RequestInformation}
18
19
  */
19
20
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<GraphGroupRequestBuilderGetQueryParameters> | undefined): RequestInformation;
20
21
  }
21
22
  /**
22
- * Get the item of type microsoft.graph.directoryObject as microsoft.graph.group
23
+ * Retrieve a list of recently deleted directory objects. Currently, deleted items functionality is only supported for the application, servicePrincipal, group, administrative unit, and user resources.
23
24
  */
24
25
  export interface GraphGroupRequestBuilderGetQueryParameters {
25
26
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqC,KAAK,KAAK,EAAE,MAAM,gCAAgC,CAAC;AAI/F,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,wBAAyB,SAAQ,kBAAkB,CAAC,wBAAwB,CAAC;IAC1F;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,KAAK,GAAG,SAAS,CAAC,CAAC;IACvI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACtJ;AACD;;GAEG;AACH,MAAM,WAAW,0CAA0C;IACvD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,mCAAmC,+FAA+F,CAAC;AAQhJ;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,gBAWtD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqC,KAAK,KAAK,EAAE,MAAM,gCAAgC,CAAC;AAI/F,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,wBAAyB,SAAQ,kBAAkB,CAAC,wBAAwB,CAAC;IAC1F;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,KAAK,GAAG,SAAS,CAAC,CAAC;IACvI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACtJ;AACD;;GAEG;AACH,MAAM,WAAW,0CAA0C;IACvD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,mCAAmC,+FAA+F,CAAC;AAQhJ;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,gBAWtD,CAAC"}
@@ -60,7 +60,7 @@ export interface DirectoryObjectItemRequestBuilder extends BaseRequestBuilder<Di
60
60
  */
61
61
  get restore(): RestoreRequestBuilder;
62
62
  /**
63
- * Delete navigation property deletedItems for directory
63
+ * Permanently delete a recently deleted application, group, servicePrincipal, or user object from deleted items. After an item is permanently deleted, it cannot be restored. Administrative units cannot be permanently deleted by using the deletedItems API. Soft-deleted administrative units will be permanently deleted 30 days after initial deletion unless they are restored.
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
66
  * @see {@link https://learn.microsoft.com/graph/api/directory-deleteditems-delete?view=graph-rest-1.0|Find more info here}
@@ -75,7 +75,7 @@ export interface DirectoryObjectItemRequestBuilder extends BaseRequestBuilder<Di
75
75
  */
76
76
  get(requestConfiguration?: RequestConfiguration<DirectoryObjectItemRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObject | undefined>;
77
77
  /**
78
- * Delete navigation property deletedItems for directory
78
+ * Permanently delete a recently deleted application, group, servicePrincipal, or user object from deleted items. After an item is permanently deleted, it cannot be restored. Administrative units cannot be permanently deleted by using the deletedItems API. Soft-deleted administrative units will be permanently deleted 30 days after initial deletion unless they are restored.
79
79
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
80
80
  * @returns {RequestInformation}
81
81
  */
@@ -70,6 +70,10 @@ export interface DeviceLocalCredentialsRequestBuilderGetQueryParameters {
70
70
  * Select properties to be returned
71
71
  */
72
72
  select?: string[];
73
+ /**
74
+ * Skip the first n items
75
+ */
76
+ skip?: number;
73
77
  /**
74
78
  * Show only the first n items
75
79
  */
@@ -78,7 +82,7 @@ export interface DeviceLocalCredentialsRequestBuilderGetQueryParameters {
78
82
  /**
79
83
  * Uri template for the request builder.
80
84
  */
81
- export declare const DeviceLocalCredentialsRequestBuilderUriTemplate = "{+baseurl}/directory/deviceLocalCredentials{?%24count,%24filter,%24orderby,%24search,%24select,%24top}";
85
+ export declare const DeviceLocalCredentialsRequestBuilderUriTemplate = "{+baseurl}/directory/deviceLocalCredentials{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
82
86
  /**
83
87
  * Metadata for all the navigation properties in the request builder.
84
88
  */
@@ -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;;;;;;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,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,+CAA+C,mHAAmH,CAAC;AAahL;;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"}
@@ -15,7 +15,7 @@ const item_1 = require("./item/");
15
15
  /**
16
16
  * Uri template for the request builder.
17
17
  */
18
- exports.DeviceLocalCredentialsRequestBuilderUriTemplate = "{+baseurl}/directory/deviceLocalCredentials{?%24count,%24filter,%24orderby,%24search,%24select,%24top}";
18
+ exports.DeviceLocalCredentialsRequestBuilderUriTemplate = "{+baseurl}/directory/deviceLocalCredentials{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
19
19
  /**
20
20
  * Mapper for query parameters from symbol name to serialization name represented as a constant.
21
21
  */
@@ -25,6 +25,7 @@ const DeviceLocalCredentialsRequestBuilderGetQueryParametersMapper = {
25
25
  "orderby": "%24orderby",
26
26
  "search": "%24search",
27
27
  "select": "%24select",
28
+ "skip": "%24skip",
28
29
  "top": "%24top",
29
30
  };
30
31
  /**
@@ -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"}
@@ -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.
@@ -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 */
@@ -0,0 +1,97 @@
1
+ import { type CompanySubscription, type CompanySubscriptionCollectionResponse } from '@microsoft/msgraph-sdk/models/';
2
+ import { type CountRequestBuilder } from './count/';
3
+ import { type CompanySubscriptionItemRequestBuilder } from './item/';
4
+ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
5
+ /**
6
+ * Provides operations to manage the subscriptions property of the microsoft.graph.directory entity.
7
+ */
8
+ export interface SubscriptionsRequestBuilder extends BaseRequestBuilder<SubscriptionsRequestBuilder> {
9
+ /**
10
+ * Provides operations to count the resources in the collection.
11
+ */
12
+ get count(): CountRequestBuilder;
13
+ /**
14
+ * Provides operations to manage the subscriptions property of the microsoft.graph.directory entity.
15
+ * @param companySubscriptionId The unique identifier of companySubscription
16
+ * @returns {CompanySubscriptionItemRequestBuilder}
17
+ */
18
+ byCompanySubscriptionId(companySubscriptionId: string): CompanySubscriptionItemRequestBuilder;
19
+ /**
20
+ * Get subscriptions from directory
21
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
+ * @returns {Promise<CompanySubscriptionCollectionResponse>}
23
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
+ */
25
+ get(requestConfiguration?: RequestConfiguration<SubscriptionsRequestBuilderGetQueryParameters> | undefined): Promise<CompanySubscriptionCollectionResponse | undefined>;
26
+ /**
27
+ * Create new navigation property to subscriptions for directory
28
+ * @param body The request body
29
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
30
+ * @returns {Promise<CompanySubscription>}
31
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
32
+ */
33
+ post(body: CompanySubscription, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CompanySubscription | undefined>;
34
+ /**
35
+ * Get subscriptions from directory
36
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
37
+ * @returns {RequestInformation}
38
+ */
39
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<SubscriptionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
40
+ /**
41
+ * Create new navigation property to subscriptions for directory
42
+ * @param body The request body
43
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
44
+ * @returns {RequestInformation}
45
+ */
46
+ toPostRequestInformation(body: CompanySubscription, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
47
+ }
48
+ /**
49
+ * Get subscriptions from directory
50
+ */
51
+ export interface SubscriptionsRequestBuilderGetQueryParameters {
52
+ /**
53
+ * Include count of items
54
+ */
55
+ count?: boolean;
56
+ /**
57
+ * Expand related entities
58
+ */
59
+ expand?: string[];
60
+ /**
61
+ * Filter items by property values
62
+ */
63
+ filter?: string;
64
+ /**
65
+ * Order items by property values
66
+ */
67
+ orderby?: string[];
68
+ /**
69
+ * Search items by search phrases
70
+ */
71
+ search?: string;
72
+ /**
73
+ * Select properties to be returned
74
+ */
75
+ select?: string[];
76
+ /**
77
+ * Skip the first n items
78
+ */
79
+ skip?: number;
80
+ /**
81
+ * Show only the first n items
82
+ */
83
+ top?: number;
84
+ }
85
+ /**
86
+ * Uri template for the request builder.
87
+ */
88
+ export declare const SubscriptionsRequestBuilderUriTemplate = "{+baseurl}/directory/subscriptions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
89
+ /**
90
+ * Metadata for all the navigation properties in the request builder.
91
+ */
92
+ export declare const SubscriptionsRequestBuilderNavigationMetadata: Record<Exclude<keyof SubscriptionsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
93
+ /**
94
+ * Metadata for all the requests in the request builder.
95
+ */
96
+ export declare const SubscriptionsRequestBuilderRequestsMetadata: RequestsMetadata;
97
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAoJ,KAAK,mBAAmB,EAAE,KAAK,qCAAqC,EAAE,MAAM,gCAAgC,CAAC;AAIxQ,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAyD,KAAK,qCAAqC,EAAE,MAAM,SAAS,CAAC;AAE5H,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,2BAA4B,SAAQ,kBAAkB,CAAC,2BAA2B,CAAC;IAChG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,uBAAuB,CAAC,qBAAqB,EAAE,MAAM,GAAI,qCAAqC,CAAC;IAChG;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qCAAqC,GAAG,SAAS,CAAC,CAAC;IAC1K;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,mBAAmB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mBAAmB,GAAG,SAAS,CAAC,CAAC;IAC7I;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,mBAAmB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9I;AACD;;GAEG;AACH,MAAM,WAAW,6CAA6C;IAC1D;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;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,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,sCAAsC,oHAAoH,CAAC;AAcxK;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,2BAA2B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQpK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,2CAA2C,EAAE,gBAuBzD,CAAC"}
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SubscriptionsRequestBuilderRequestsMetadata = exports.SubscriptionsRequestBuilderNavigationMetadata = exports.SubscriptionsRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ // @ts-ignore
8
+ const models_1 = require("@microsoft/msgraph-sdk/models/");
9
+ // @ts-ignore
10
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
11
+ // @ts-ignore
12
+ const count_1 = require("./count/");
13
+ // @ts-ignore
14
+ const item_1 = require("./item/");
15
+ /**
16
+ * Uri template for the request builder.
17
+ */
18
+ exports.SubscriptionsRequestBuilderUriTemplate = "{+baseurl}/directory/subscriptions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
19
+ /**
20
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
21
+ */
22
+ const SubscriptionsRequestBuilderGetQueryParametersMapper = {
23
+ "count": "%24count",
24
+ "expand": "%24expand",
25
+ "filter": "%24filter",
26
+ "orderby": "%24orderby",
27
+ "search": "%24search",
28
+ "select": "%24select",
29
+ "skip": "%24skip",
30
+ "top": "%24top",
31
+ };
32
+ /**
33
+ * Metadata for all the navigation properties in the request builder.
34
+ */
35
+ exports.SubscriptionsRequestBuilderNavigationMetadata = {
36
+ byCompanySubscriptionId: {
37
+ requestsMetadata: item_1.CompanySubscriptionItemRequestBuilderRequestsMetadata,
38
+ pathParametersMappings: ["companySubscription%2Did"],
39
+ },
40
+ count: {
41
+ requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
42
+ },
43
+ };
44
+ /**
45
+ * Metadata for all the requests in the request builder.
46
+ */
47
+ exports.SubscriptionsRequestBuilderRequestsMetadata = {
48
+ get: {
49
+ uriTemplate: exports.SubscriptionsRequestBuilderUriTemplate,
50
+ responseBodyContentType: "application/json",
51
+ errorMappings: {
52
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
53
+ },
54
+ adapterMethodName: "send",
55
+ responseBodyFactory: models_1.createCompanySubscriptionCollectionResponseFromDiscriminatorValue,
56
+ queryParametersMapper: SubscriptionsRequestBuilderGetQueryParametersMapper,
57
+ },
58
+ post: {
59
+ uriTemplate: exports.SubscriptionsRequestBuilderUriTemplate,
60
+ responseBodyContentType: "application/json",
61
+ errorMappings: {
62
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
63
+ },
64
+ adapterMethodName: "send",
65
+ responseBodyFactory: models_1.createCompanySubscriptionFromDiscriminatorValue,
66
+ requestBodyContentType: "application/json",
67
+ requestBodySerializer: models_1.serializeCompanySubscription,
68
+ requestInformationContentSetMethod: "setContentFromParsable",
69
+ },
70
+ };
71
+ /* tslint:enable */
72
+ /* eslint-enable */