@microsoft/msgraph-sdk-users 1.0.0-preview.17 → 1.0.0-preview.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/users/index.d.ts +3 -3
- package/users/item/chats/item/lastMessagePreview/index.d.ts +3 -3
- package/users/item/chats/item/messages/item/replies/index.d.ts +3 -3
- package/users/item/cloudClipboard/items/index.d.ts +3 -3
- package/users/item/cloudClipboard/items/item/index.d.ts +3 -3
- package/users/item/index.d.ts +3 -3
- package/users/item/joinedTeams/item/archive/index.d.ts +2 -2
- package/users/item/joinedTeams/item/channels/item/members/item/index.d.ts +3 -3
- package/users/item/joinedTeams/item/channels/item/messages/index.d.ts +3 -3
- package/users/item/joinedTeams/item/channels/item/messages/item/replies/index.d.ts +3 -3
- package/users/item/joinedTeams/item/channels/item/tabs/item/index.d.ts +2 -2
- package/users/item/joinedTeams/item/primaryChannel/members/item/index.d.ts +3 -3
- package/users/item/joinedTeams/item/primaryChannel/messages/index.d.ts +3 -3
- package/users/item/joinedTeams/item/primaryChannel/messages/item/replies/index.d.ts +3 -3
- package/users/item/joinedTeams/item/primaryChannel/tabs/item/index.d.ts +2 -2
- package/users/item/joinedTeams/item/unarchive/index.d.ts +2 -2
- package/users/item/mailFolders/item/childFolders/index.d.ts +3 -3
- package/users/item/mailFolders/item/childFolders/item/messages/item/attachments/index.d.ts +4 -4
- package/users/item/mailFolders/item/index.d.ts +3 -3
- package/users/item/mailFolders/item/messages/item/attachments/index.d.ts +4 -4
- package/users/item/messages/index.d.ts +4 -4
- package/users/item/messages/item/attachments/index.d.ts +4 -4
- package/users/item/messages/item/index.d.ts +7 -7
- package/users/item/messages/item/value/index.d.ts +1 -1
- package/users/item/settings/windows/index.d.ts +4 -3
- package/users/item/settings/windows/index.d.ts.map +1 -1
- package/users/item/settings/windows/item/index.d.ts +4 -3
- package/users/item/settings/windows/item/index.d.ts.map +1 -1
- package/users/item/settings/windows/item/instances/index.d.ts +4 -3
- package/users/item/settings/windows/item/instances/index.d.ts.map +1 -1
- package/users/item/settings/windows/item/instances/item/index.d.ts +4 -3
- package/users/item/settings/windows/item/instances/item/index.d.ts.map +1 -1
- package/users/item/todo/lists/item/tasks/item/linkedResources/item/index.d.ts +2 -2
|
@@ -65,10 +65,10 @@ export interface MessageItemRequestBuilder extends BaseRequestBuilder<MessageIte
|
|
|
65
65
|
*/
|
|
66
66
|
get send(): SendRequestBuilder;
|
|
67
67
|
/**
|
|
68
|
-
* Delete
|
|
68
|
+
* Delete a message in the specified user's mailbox, or delete a relationship of the message.
|
|
69
69
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
70
70
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
71
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
71
|
+
* @see {@link https://learn.microsoft.com/graph/api/message-delete?view=graph-rest-1.0|Find more info here}
|
|
72
72
|
*/
|
|
73
73
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
74
74
|
/**
|
|
@@ -76,20 +76,20 @@ export interface MessageItemRequestBuilder extends BaseRequestBuilder<MessageIte
|
|
|
76
76
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
77
77
|
* @returns {Promise<Message>}
|
|
78
78
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
79
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
79
|
+
* @see {@link https://learn.microsoft.com/graph/api/singlevaluelegacyextendedproperty-get?view=graph-rest-1.0|Find more info here}
|
|
80
80
|
*/
|
|
81
81
|
get(requestConfiguration?: RequestConfiguration<MessageItemRequestBuilderGetQueryParameters> | undefined): Promise<Message | undefined>;
|
|
82
82
|
/**
|
|
83
|
-
* Update the properties of
|
|
83
|
+
* Update the properties of a message object.
|
|
84
84
|
* @param body The request body
|
|
85
85
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
86
86
|
* @returns {Promise<Message>}
|
|
87
87
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
88
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
88
|
+
* @see {@link https://learn.microsoft.com/graph/api/message-update?view=graph-rest-1.0|Find more info here}
|
|
89
89
|
*/
|
|
90
90
|
patch(body: Message, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Message | undefined>;
|
|
91
91
|
/**
|
|
92
|
-
* Delete
|
|
92
|
+
* Delete a message in the specified user's mailbox, or delete a relationship of the message.
|
|
93
93
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
94
94
|
* @returns {RequestInformation}
|
|
95
95
|
*/
|
|
@@ -101,7 +101,7 @@ export interface MessageItemRequestBuilder extends BaseRequestBuilder<MessageIte
|
|
|
101
101
|
*/
|
|
102
102
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MessageItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
103
103
|
/**
|
|
104
|
-
* Update the properties of
|
|
104
|
+
* Update the properties of a message object.
|
|
105
105
|
* @param body The request body
|
|
106
106
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
107
107
|
* @returns {RequestInformation}
|
|
@@ -8,7 +8,7 @@ export interface ContentRequestBuilder extends BaseRequestBuilder<ContentRequest
|
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
9
|
* @returns {Promise<ArrayBuffer>}
|
|
10
10
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
11
|
+
* @see {@link https://learn.microsoft.com/graph/api/user-list-messages?view=graph-rest-1.0|Find more info here}
|
|
12
12
|
*/
|
|
13
13
|
get(requestConfiguration?: RequestConfiguration<ContentRequestBuilderGetQueryParameters> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
14
|
/**
|
|
@@ -17,10 +17,11 @@ export interface WindowsRequestBuilder extends BaseRequestBuilder<WindowsRequest
|
|
|
17
17
|
*/
|
|
18
18
|
byWindowsSettingId(windowsSettingId: string): WindowsSettingItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
* Get
|
|
20
|
+
* Get a list of windowsSetting objects and their properties for the signed in user.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<WindowsSettingCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/usersettings-list-windows?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<WindowsRequestBuilderGetQueryParameters> | undefined): Promise<WindowsSettingCollectionResponse | undefined>;
|
|
26
27
|
/**
|
|
@@ -32,7 +33,7 @@ export interface WindowsRequestBuilder extends BaseRequestBuilder<WindowsRequest
|
|
|
32
33
|
*/
|
|
33
34
|
post(body: WindowsSetting, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WindowsSetting | undefined>;
|
|
34
35
|
/**
|
|
35
|
-
* Get
|
|
36
|
+
* Get a list of windowsSetting objects and their properties for the signed in user.
|
|
36
37
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
38
|
* @returns {RequestInformation}
|
|
38
39
|
*/
|
|
@@ -46,7 +47,7 @@ export interface WindowsRequestBuilder extends BaseRequestBuilder<WindowsRequest
|
|
|
46
47
|
toPostRequestInformation(body: WindowsSetting, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
48
|
}
|
|
48
49
|
/**
|
|
49
|
-
* Get
|
|
50
|
+
* Get a list of windowsSetting objects and their properties for the signed in user.
|
|
50
51
|
*/
|
|
51
52
|
export interface WindowsRequestBuilderGetQueryParameters {
|
|
52
53
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAqI,KAAK,cAAc,EAAE,KAAK,gCAAgC,EAAE,MAAM,gCAAgC,CAAC;AAE/O,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzF,OAAO,EAAE,KAAK,gCAAgC,EAAwG,MAAM,SAAS,CAAC;AACtK,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,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,kBAAkB,CAAC,gBAAgB,EAAE,MAAM,GAAI,gCAAgC,CAAC;IACjF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAqI,KAAK,cAAc,EAAE,KAAK,gCAAgC,EAAE,MAAM,gCAAgC,CAAC;AAE/O,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzF,OAAO,EAAE,KAAK,gCAAgC,EAAwG,MAAM,SAAS,CAAC;AACtK,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,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,kBAAkB,CAAC,gBAAgB,EAAE,MAAM,GAAI,gCAAgC,CAAC;IACjF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IAC/J;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,cAAc,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,cAAc,GAAG,SAAS,CAAC,CAAC;IACnI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,cAAc,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACzI;AACD;;GAEG;AACH,MAAM,WAAW,uCAAuC;IACpD;;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,gCAAgC,+HAA+H,CAAC;AAc7K;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qBAAqB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CASxJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBAuBnD,CAAC"}
|
|
@@ -16,10 +16,11 @@ export interface WindowsSettingItemRequestBuilder extends BaseRequestBuilder<Win
|
|
|
16
16
|
*/
|
|
17
17
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Read the properties and relationships of a windowsSetting object by passing the ID of the setting in the URL. This method gets the setting for the signed-in user.
|
|
20
20
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
21
21
|
* @returns {Promise<WindowsSetting>}
|
|
22
22
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
23
|
+
* @see {@link https://learn.microsoft.com/graph/api/windowssetting-get?view=graph-rest-1.0|Find more info here}
|
|
23
24
|
*/
|
|
24
25
|
get(requestConfiguration?: RequestConfiguration<WindowsSettingItemRequestBuilderGetQueryParameters> | undefined): Promise<WindowsSetting | undefined>;
|
|
25
26
|
/**
|
|
@@ -37,7 +38,7 @@ export interface WindowsSettingItemRequestBuilder extends BaseRequestBuilder<Win
|
|
|
37
38
|
*/
|
|
38
39
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
39
40
|
/**
|
|
40
|
-
*
|
|
41
|
+
* Read the properties and relationships of a windowsSetting object by passing the ID of the setting in the URL. This method gets the setting for the signed-in user.
|
|
41
42
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
42
43
|
* @returns {RequestInformation}
|
|
43
44
|
*/
|
|
@@ -51,7 +52,7 @@ export interface WindowsSettingItemRequestBuilder extends BaseRequestBuilder<Win
|
|
|
51
52
|
toPatchRequestInformation(body: WindowsSetting, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
52
53
|
}
|
|
53
54
|
/**
|
|
54
|
-
*
|
|
55
|
+
* Read the properties and relationships of a windowsSetting object by passing the ID of the setting in the URL. This method gets the setting for the signed-in user.
|
|
55
56
|
*/
|
|
56
57
|
export interface WindowsSettingItemRequestBuilderGetQueryParameters {
|
|
57
58
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAuE,KAAK,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAE1I,OAAO,EAAsF,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAChJ,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,gCAAiC,SAAQ,kBAAkB,CAAC,gCAAgC,CAAC;IAC1G;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAuE,KAAK,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAE1I,OAAO,EAAsF,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAChJ,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,gCAAiC,SAAQ,kBAAkB,CAAC,gCAAgC,CAAC;IAC1G;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;;;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,kDAAkD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,cAAc,GAAG,SAAS,CAAC,CAAC;IACxJ;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,cAAc,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,cAAc,GAAG,SAAS,CAAC,CAAC;IACpI;;;;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,kDAAkD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC3J;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,cAAc,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC1I;AACD;;GAEG;AACH,MAAM,WAAW,kDAAkD;IAC/D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,2CAA2C,8FAA8F,CAAC;AAQvJ;;GAEG;AACH,eAAO,MAAM,kDAAkD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,gCAAgC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAK9K,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,gDAAgD,EAAE,gBA+B9D,CAAC"}
|
|
@@ -17,10 +17,11 @@ export interface InstancesRequestBuilder extends BaseRequestBuilder<InstancesReq
|
|
|
17
17
|
*/
|
|
18
18
|
byWindowsSettingInstanceId(windowsSettingInstanceId: string): WindowsSettingInstanceItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
* Get
|
|
20
|
+
* Get a list of windowsSettingInstance objects and their properties for the signed-in user.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<WindowsSettingInstanceCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/windowssetting-list-instances?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<InstancesRequestBuilderGetQueryParameters> | undefined): Promise<WindowsSettingInstanceCollectionResponse | undefined>;
|
|
26
27
|
/**
|
|
@@ -32,7 +33,7 @@ export interface InstancesRequestBuilder extends BaseRequestBuilder<InstancesReq
|
|
|
32
33
|
*/
|
|
33
34
|
post(body: WindowsSettingInstance, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WindowsSettingInstance | undefined>;
|
|
34
35
|
/**
|
|
35
|
-
* Get
|
|
36
|
+
* Get a list of windowsSettingInstance objects and their properties for the signed-in user.
|
|
36
37
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
38
|
* @returns {RequestInformation}
|
|
38
39
|
*/
|
|
@@ -46,7 +47,7 @@ export interface InstancesRequestBuilder extends BaseRequestBuilder<InstancesReq
|
|
|
46
47
|
toPostRequestInformation(body: WindowsSettingInstance, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
48
|
}
|
|
48
49
|
/**
|
|
49
|
-
* Get
|
|
50
|
+
* Get a list of windowsSettingInstance objects and their properties for the signed-in user.
|
|
50
51
|
*/
|
|
51
52
|
export interface InstancesRequestBuilderGetQueryParameters {
|
|
52
53
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAA6J,KAAK,sBAAsB,EAAE,KAAK,wCAAwC,EAAE,MAAM,gCAAgC,CAAC;AAEvR,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzF,OAAO,EAAE,KAAK,wCAAwC,EAA4D,MAAM,SAAS,CAAC;AAClI,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,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,0BAA0B,CAAC,wBAAwB,EAAE,MAAM,GAAI,wCAAwC,CAAC;IACzG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAA6J,KAAK,sBAAsB,EAAE,KAAK,wCAAwC,EAAE,MAAM,gCAAgC,CAAC;AAEvR,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzF,OAAO,EAAE,KAAK,wCAAwC,EAA4D,MAAM,SAAS,CAAC;AAClI,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,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,0BAA0B,CAAC,wBAAwB,EAAE,MAAM,GAAI,wCAAwC,CAAC;IACzG;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,wCAAwC,GAAG,SAAS,CAAC,CAAC;IACzK;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,sBAAsB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,sBAAsB,GAAG,SAAS,CAAC,CAAC;IACnJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,sBAAsB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,yCAAyC;IACtD;;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,kCAAkC,+JAA+J,CAAC;AAc/M;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uBAAuB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQ5J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,gBAuBrD,CAAC"}
|
|
@@ -11,10 +11,11 @@ export interface WindowsSettingInstanceItemRequestBuilder extends BaseRequestBui
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read the properties and relationships of a windowsSettingInstance object by passing the Windows setting ID and Windows setting instance ID in the URL. This method gets a windowsSettingInstance for the signed-in user.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<WindowsSettingInstance>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
+
* @see {@link https://learn.microsoft.com/graph/api/windowssettinginstance-get?view=graph-rest-1.0|Find more info here}
|
|
18
19
|
*/
|
|
19
20
|
get(requestConfiguration?: RequestConfiguration<WindowsSettingInstanceItemRequestBuilderGetQueryParameters> | undefined): Promise<WindowsSettingInstance | undefined>;
|
|
20
21
|
/**
|
|
@@ -32,7 +33,7 @@ export interface WindowsSettingInstanceItemRequestBuilder extends BaseRequestBui
|
|
|
32
33
|
*/
|
|
33
34
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
34
35
|
/**
|
|
35
|
-
*
|
|
36
|
+
* Read the properties and relationships of a windowsSettingInstance object by passing the Windows setting ID and Windows setting instance ID in the URL. This method gets a windowsSettingInstance for the signed-in user.
|
|
36
37
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
38
|
* @returns {RequestInformation}
|
|
38
39
|
*/
|
|
@@ -46,7 +47,7 @@ export interface WindowsSettingInstanceItemRequestBuilder extends BaseRequestBui
|
|
|
46
47
|
toPatchRequestInformation(body: WindowsSettingInstance, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
48
|
}
|
|
48
49
|
/**
|
|
49
|
-
*
|
|
50
|
+
* Read the properties and relationships of a windowsSettingInstance object by passing the Windows setting ID and Windows setting instance ID in the URL. This method gets a windowsSettingInstance for the signed-in user.
|
|
50
51
|
*/
|
|
51
52
|
export interface WindowsSettingInstanceItemRequestBuilderGetQueryParameters {
|
|
52
53
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAuF,KAAK,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAElK,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,wCAAyC,SAAQ,kBAAkB,CAAC,wCAAwC,CAAC;IAC1H;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAuF,KAAK,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAElK,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,wCAAyC,SAAQ,kBAAkB,CAAC,wCAAwC,CAAC;IAC1H;;;;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,0DAA0D,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,sBAAsB,GAAG,SAAS,CAAC,CAAC;IACxK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,sBAAsB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,sBAAsB,GAAG,SAAS,CAAC,CAAC;IACpJ;;;;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,0DAA0D,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACnK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,sBAAsB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClJ;AACD;;GAEG;AACH,MAAM,WAAW,0DAA0D;IACvE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,mDAAmD,sIAAsI,CAAC;AAQvM;;GAEG;AACH,eAAO,MAAM,wDAAwD,EAAE,gBA+BtE,CAAC"}
|
|
@@ -5,7 +5,7 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
5
5
|
*/
|
|
6
6
|
export interface LinkedResourceItemRequestBuilder extends BaseRequestBuilder<LinkedResourceItemRequestBuilder> {
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Delete a linkedResource object.
|
|
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
11
|
* @see {@link https://learn.microsoft.com/graph/api/linkedresource-delete?view=graph-rest-1.0|Find more info here}
|
|
@@ -29,7 +29,7 @@ export interface LinkedResourceItemRequestBuilder extends BaseRequestBuilder<Lin
|
|
|
29
29
|
*/
|
|
30
30
|
patch(body: LinkedResource, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<LinkedResource | undefined>;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Delete a linkedResource object.
|
|
33
33
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
34
34
|
* @returns {RequestInformation}
|
|
35
35
|
*/
|