@microsoft/msgraph-sdk-privacy 1.0.0-preview.44 → 1.0.0-preview.46
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 +2 -2
- package/privacy/subjectRightsRequests/count/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/index.d.ts +6 -6
- package/privacy/subjectRightsRequests/item/approvers/count/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/item/approvers/index.d.ts +4 -4
- package/privacy/subjectRightsRequests/item/approvers/item/index.d.ts +4 -4
- package/privacy/subjectRightsRequests/item/approvers/item/mailboxSettings/index.d.ts +4 -4
- package/privacy/subjectRightsRequests/item/approvers/item/serviceProvisioningErrors/count/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/item/approvers/item/serviceProvisioningErrors/index.d.ts +3 -3
- package/privacy/subjectRightsRequests/item/approversWithUserPrincipalName/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/item/collaborators/count/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/item/collaborators/index.d.ts +4 -4
- package/privacy/subjectRightsRequests/item/collaborators/item/index.d.ts +4 -4
- package/privacy/subjectRightsRequests/item/collaborators/item/mailboxSettings/index.d.ts +4 -4
- package/privacy/subjectRightsRequests/item/collaborators/item/serviceProvisioningErrors/count/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/item/collaborators/item/serviceProvisioningErrors/index.d.ts +3 -3
- package/privacy/subjectRightsRequests/item/collaboratorsWithUserPrincipalName/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/item/getFinalAttachment/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/item/getFinalReport/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/item/index.d.ts +14 -14
- package/privacy/subjectRightsRequests/item/notes/count/index.d.ts +2 -2
- package/privacy/subjectRightsRequests/item/notes/index.d.ts +6 -6
- package/privacy/subjectRightsRequests/item/notes/item/index.d.ts +6 -6
- package/privacy/subjectRightsRequests/item/team/index.d.ts +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/msgraph-sdk-privacy",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.46",
|
|
4
4
|
"description": "Privacy fluent API for Microsoft Graph",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Microsoft",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"typescript": "^5.3.3"
|
|
38
38
|
},
|
|
39
39
|
"type": "module",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "bc7f59f15d76b04637fbd284da682de93541ac47"
|
|
41
41
|
}
|
|
@@ -8,14 +8,14 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
|
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
9
|
* @returns {Promise<number>}
|
|
10
10
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
14
14
|
/**
|
|
15
15
|
* Get the number of the resource
|
|
16
16
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
17
|
* @returns {RequestInformation}
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
21
21
|
}
|
|
@@ -8,14 +8,14 @@ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type
|
|
|
8
8
|
export interface SubjectRightsRequestsRequestBuilder extends BaseRequestBuilder<SubjectRightsRequestsRequestBuilder> {
|
|
9
9
|
/**
|
|
10
10
|
* Provides operations to count the resources in the collection.
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get count(): CountRequestBuilder;
|
|
14
14
|
/**
|
|
15
15
|
* Provides operations to manage the subjectRightsRequests property of the microsoft.graph.privacy entity.
|
|
16
16
|
* @param subjectRightsRequestId The unique identifier of subjectRightsRequest
|
|
17
17
|
* @returns {SubjectRightsRequestItemRequestBuilder}
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
bySubjectRightsRequestId(subjectRightsRequestId: string): SubjectRightsRequestItemRequestBuilder;
|
|
21
21
|
/**
|
|
@@ -23,7 +23,7 @@ export interface SubjectRightsRequestsRequestBuilder extends BaseRequestBuilder<
|
|
|
23
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
24
24
|
* @returns {Promise<SubjectRightsRequestCollectionResponse>}
|
|
25
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
26
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
26
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
27
27
|
* @see {@link https://learn.microsoft.com/graph/api/subjectrightsrequest-list?view=graph-rest-1.0|Find more info here}
|
|
28
28
|
*/
|
|
29
29
|
get(requestConfiguration?: RequestConfiguration<SubjectRightsRequestsRequestBuilderGetQueryParameters> | undefined): Promise<SubjectRightsRequestCollectionResponse | undefined>;
|
|
@@ -33,7 +33,7 @@ export interface SubjectRightsRequestsRequestBuilder extends BaseRequestBuilder<
|
|
|
33
33
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
34
34
|
* @returns {Promise<SubjectRightsRequest>}
|
|
35
35
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
36
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
36
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
37
37
|
* @see {@link https://learn.microsoft.com/graph/api/subjectrightsrequest-post?view=graph-rest-1.0|Find more info here}
|
|
38
38
|
*/
|
|
39
39
|
post(body: SubjectRightsRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<SubjectRightsRequest | undefined>;
|
|
@@ -41,7 +41,7 @@ export interface SubjectRightsRequestsRequestBuilder extends BaseRequestBuilder<
|
|
|
41
41
|
* Get a list of subjectRightsRequest objects and their properties.
|
|
42
42
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
43
43
|
* @returns {RequestInformation}
|
|
44
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
44
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
45
45
|
*/
|
|
46
46
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<SubjectRightsRequestsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
@@ -49,7 +49,7 @@ export interface SubjectRightsRequestsRequestBuilder extends BaseRequestBuilder<
|
|
|
49
49
|
* @param body The request body
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {RequestInformation}
|
|
52
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
52
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
53
53
|
*/
|
|
54
54
|
toPostRequestInformation(body: SubjectRightsRequest, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
55
55
|
}
|
|
@@ -8,14 +8,14 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
|
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
9
|
* @returns {Promise<number>}
|
|
10
10
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
14
14
|
/**
|
|
15
15
|
* Get the number of the resource
|
|
16
16
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
17
|
* @returns {RequestInformation}
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
21
21
|
}
|
|
@@ -8,14 +8,14 @@ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type
|
|
|
8
8
|
export interface ApproversRequestBuilder extends BaseRequestBuilder<ApproversRequestBuilder> {
|
|
9
9
|
/**
|
|
10
10
|
* Provides operations to count the resources in the collection.
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get count(): CountRequestBuilder;
|
|
14
14
|
/**
|
|
15
15
|
* Provides operations to manage the approvers property of the microsoft.graph.subjectRightsRequest entity.
|
|
16
16
|
* @param userId The unique identifier of user
|
|
17
17
|
* @returns {UserItemRequestBuilder}
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
byUserId(userId: string): UserItemRequestBuilder;
|
|
21
21
|
/**
|
|
@@ -23,14 +23,14 @@ export interface ApproversRequestBuilder extends BaseRequestBuilder<ApproversReq
|
|
|
23
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
24
24
|
* @returns {Promise<UserCollectionResponse>}
|
|
25
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
26
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
26
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
27
27
|
*/
|
|
28
28
|
get(requestConfiguration?: RequestConfiguration<ApproversRequestBuilderGetQueryParameters> | undefined): Promise<UserCollectionResponse | undefined>;
|
|
29
29
|
/**
|
|
30
30
|
* Collection of users who can approve the request. Currently only supported for requests of type delete.
|
|
31
31
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
32
32
|
* @returns {RequestInformation}
|
|
33
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
33
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
34
34
|
*/
|
|
35
35
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ApproversRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
36
36
|
}
|
|
@@ -8,12 +8,12 @@ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type
|
|
|
8
8
|
export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemRequestBuilder> {
|
|
9
9
|
/**
|
|
10
10
|
* The mailboxSettings property
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get mailboxSettings(): MailboxSettingsRequestBuilder;
|
|
14
14
|
/**
|
|
15
15
|
* The serviceProvisioningErrors property
|
|
16
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
16
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
17
17
|
*/
|
|
18
18
|
get serviceProvisioningErrors(): ServiceProvisioningErrorsRequestBuilder;
|
|
19
19
|
/**
|
|
@@ -21,14 +21,14 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
|
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<User>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
24
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
25
25
|
*/
|
|
26
26
|
get(requestConfiguration?: RequestConfiguration<UserItemRequestBuilderGetQueryParameters> | undefined): Promise<User | undefined>;
|
|
27
27
|
/**
|
|
28
28
|
* Collection of users who can approve the request. Currently only supported for requests of type delete.
|
|
29
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
30
|
* @returns {RequestInformation}
|
|
31
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
31
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
32
32
|
*/
|
|
33
33
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
34
34
|
}
|
|
@@ -9,7 +9,7 @@ export interface MailboxSettingsRequestBuilder extends BaseRequestBuilder<Mailbo
|
|
|
9
9
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
10
|
* @returns {Promise<MailboxSettings>}
|
|
11
11
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
12
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
12
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
13
13
|
*/
|
|
14
14
|
get(requestConfiguration?: RequestConfiguration<MailboxSettingsRequestBuilderGetQueryParameters> | undefined): Promise<MailboxSettings | undefined>;
|
|
15
15
|
/**
|
|
@@ -18,14 +18,14 @@ export interface MailboxSettingsRequestBuilder extends BaseRequestBuilder<Mailbo
|
|
|
18
18
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
19
19
|
* @returns {Promise<MailboxSettings>}
|
|
20
20
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
21
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
22
22
|
*/
|
|
23
23
|
patch(body: MailboxSettings, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MailboxSettings | undefined>;
|
|
24
24
|
/**
|
|
25
25
|
* Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select.
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {RequestInformation}
|
|
28
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
28
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
29
29
|
*/
|
|
30
30
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MailboxSettingsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
31
31
|
/**
|
|
@@ -33,7 +33,7 @@ export interface MailboxSettingsRequestBuilder extends BaseRequestBuilder<Mailbo
|
|
|
33
33
|
* @param body The request body
|
|
34
34
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
35
35
|
* @returns {RequestInformation}
|
|
36
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
36
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
37
37
|
*/
|
|
38
38
|
toPatchRequestInformation(body: MailboxSettings, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
39
39
|
}
|
package/privacy/subjectRightsRequests/item/approvers/item/serviceProvisioningErrors/count/index.d.ts
CHANGED
|
@@ -8,14 +8,14 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
|
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
9
|
* @returns {Promise<number>}
|
|
10
10
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
14
14
|
/**
|
|
15
15
|
* Get the number of the resource
|
|
16
16
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
17
|
* @returns {RequestInformation}
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
21
21
|
}
|
package/privacy/subjectRightsRequests/item/approvers/item/serviceProvisioningErrors/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type
|
|
|
7
7
|
export interface ServiceProvisioningErrorsRequestBuilder extends BaseRequestBuilder<ServiceProvisioningErrorsRequestBuilder> {
|
|
8
8
|
/**
|
|
9
9
|
* Provides operations to count the resources in the collection.
|
|
10
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
10
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
11
11
|
*/
|
|
12
12
|
get count(): CountRequestBuilder;
|
|
13
13
|
/**
|
|
@@ -15,14 +15,14 @@ export interface ServiceProvisioningErrorsRequestBuilder extends BaseRequestBuil
|
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<ServiceProvisioningErrorCollectionResponse>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
get(requestConfiguration?: RequestConfiguration<ServiceProvisioningErrorsRequestBuilderGetQueryParameters> | undefined): Promise<ServiceProvisioningErrorCollectionResponse | undefined>;
|
|
21
21
|
/**
|
|
22
22
|
* Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance).
|
|
23
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
24
24
|
* @returns {RequestInformation}
|
|
25
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
25
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
26
26
|
*/
|
|
27
27
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ServiceProvisioningErrorsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
28
28
|
}
|
|
@@ -9,14 +9,14 @@ export interface ApproversWithUserPrincipalNameRequestBuilder extends BaseReques
|
|
|
9
9
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
10
|
* @returns {Promise<User>}
|
|
11
11
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
12
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
12
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
13
13
|
*/
|
|
14
14
|
get(requestConfiguration?: RequestConfiguration<ApproversWithUserPrincipalNameRequestBuilderGetQueryParameters> | undefined): Promise<User | undefined>;
|
|
15
15
|
/**
|
|
16
16
|
* Collection of users who can approve the request. Currently only supported for requests of type delete.
|
|
17
17
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
18
18
|
* @returns {RequestInformation}
|
|
19
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
19
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
20
20
|
*/
|
|
21
21
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ApproversWithUserPrincipalNameRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
22
22
|
}
|
|
@@ -8,14 +8,14 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
|
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
9
|
* @returns {Promise<number>}
|
|
10
10
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
14
14
|
/**
|
|
15
15
|
* Get the number of the resource
|
|
16
16
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
17
|
* @returns {RequestInformation}
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
21
21
|
}
|
|
@@ -8,14 +8,14 @@ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type
|
|
|
8
8
|
export interface CollaboratorsRequestBuilder extends BaseRequestBuilder<CollaboratorsRequestBuilder> {
|
|
9
9
|
/**
|
|
10
10
|
* Provides operations to count the resources in the collection.
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get count(): CountRequestBuilder;
|
|
14
14
|
/**
|
|
15
15
|
* Provides operations to manage the collaborators property of the microsoft.graph.subjectRightsRequest entity.
|
|
16
16
|
* @param userId The unique identifier of user
|
|
17
17
|
* @returns {UserItemRequestBuilder}
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
byUserId(userId: string): UserItemRequestBuilder;
|
|
21
21
|
/**
|
|
@@ -23,14 +23,14 @@ export interface CollaboratorsRequestBuilder extends BaseRequestBuilder<Collabor
|
|
|
23
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
24
24
|
* @returns {Promise<UserCollectionResponse>}
|
|
25
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
26
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
26
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
27
27
|
*/
|
|
28
28
|
get(requestConfiguration?: RequestConfiguration<CollaboratorsRequestBuilderGetQueryParameters> | undefined): Promise<UserCollectionResponse | undefined>;
|
|
29
29
|
/**
|
|
30
30
|
* Collection of users who can collaborate on the request.
|
|
31
31
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
32
32
|
* @returns {RequestInformation}
|
|
33
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
33
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
34
34
|
*/
|
|
35
35
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CollaboratorsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
36
36
|
}
|
|
@@ -8,12 +8,12 @@ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type
|
|
|
8
8
|
export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemRequestBuilder> {
|
|
9
9
|
/**
|
|
10
10
|
* The mailboxSettings property
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get mailboxSettings(): MailboxSettingsRequestBuilder;
|
|
14
14
|
/**
|
|
15
15
|
* The serviceProvisioningErrors property
|
|
16
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
16
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
17
17
|
*/
|
|
18
18
|
get serviceProvisioningErrors(): ServiceProvisioningErrorsRequestBuilder;
|
|
19
19
|
/**
|
|
@@ -21,14 +21,14 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
|
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<User>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
24
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
25
25
|
*/
|
|
26
26
|
get(requestConfiguration?: RequestConfiguration<UserItemRequestBuilderGetQueryParameters> | undefined): Promise<User | undefined>;
|
|
27
27
|
/**
|
|
28
28
|
* Collection of users who can collaborate on the request.
|
|
29
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
30
|
* @returns {RequestInformation}
|
|
31
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
31
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
32
32
|
*/
|
|
33
33
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
34
34
|
}
|
|
@@ -9,7 +9,7 @@ export interface MailboxSettingsRequestBuilder extends BaseRequestBuilder<Mailbo
|
|
|
9
9
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
10
|
* @returns {Promise<MailboxSettings>}
|
|
11
11
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
12
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
12
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
13
13
|
*/
|
|
14
14
|
get(requestConfiguration?: RequestConfiguration<MailboxSettingsRequestBuilderGetQueryParameters> | undefined): Promise<MailboxSettings | undefined>;
|
|
15
15
|
/**
|
|
@@ -18,14 +18,14 @@ export interface MailboxSettingsRequestBuilder extends BaseRequestBuilder<Mailbo
|
|
|
18
18
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
19
19
|
* @returns {Promise<MailboxSettings>}
|
|
20
20
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
21
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
22
22
|
*/
|
|
23
23
|
patch(body: MailboxSettings, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MailboxSettings | undefined>;
|
|
24
24
|
/**
|
|
25
25
|
* Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select.
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {RequestInformation}
|
|
28
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
28
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
29
29
|
*/
|
|
30
30
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MailboxSettingsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
31
31
|
/**
|
|
@@ -33,7 +33,7 @@ export interface MailboxSettingsRequestBuilder extends BaseRequestBuilder<Mailbo
|
|
|
33
33
|
* @param body The request body
|
|
34
34
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
35
35
|
* @returns {RequestInformation}
|
|
36
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
36
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
37
37
|
*/
|
|
38
38
|
toPatchRequestInformation(body: MailboxSettings, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
39
39
|
}
|
|
@@ -8,14 +8,14 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
|
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
9
|
* @returns {Promise<number>}
|
|
10
10
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
*/
|
|
13
13
|
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
14
14
|
/**
|
|
15
15
|
* Get the number of the resource
|
|
16
16
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
17
|
* @returns {RequestInformation}
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
21
21
|
}
|
package/privacy/subjectRightsRequests/item/collaborators/item/serviceProvisioningErrors/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type
|
|
|
7
7
|
export interface ServiceProvisioningErrorsRequestBuilder extends BaseRequestBuilder<ServiceProvisioningErrorsRequestBuilder> {
|
|
8
8
|
/**
|
|
9
9
|
* Provides operations to count the resources in the collection.
|
|
10
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
10
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
11
11
|
*/
|
|
12
12
|
get count(): CountRequestBuilder;
|
|
13
13
|
/**
|
|
@@ -15,14 +15,14 @@ export interface ServiceProvisioningErrorsRequestBuilder extends BaseRequestBuil
|
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<ServiceProvisioningErrorCollectionResponse>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
18
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
19
19
|
*/
|
|
20
20
|
get(requestConfiguration?: RequestConfiguration<ServiceProvisioningErrorsRequestBuilderGetQueryParameters> | undefined): Promise<ServiceProvisioningErrorCollectionResponse | undefined>;
|
|
21
21
|
/**
|
|
22
22
|
* Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance).
|
|
23
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
24
24
|
* @returns {RequestInformation}
|
|
25
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
25
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
26
26
|
*/
|
|
27
27
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ServiceProvisioningErrorsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
28
28
|
}
|
|
@@ -9,14 +9,14 @@ export interface CollaboratorsWithUserPrincipalNameRequestBuilder extends BaseRe
|
|
|
9
9
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
10
|
* @returns {Promise<User>}
|
|
11
11
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
12
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
12
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
13
13
|
*/
|
|
14
14
|
get(requestConfiguration?: RequestConfiguration<CollaboratorsWithUserPrincipalNameRequestBuilderGetQueryParameters> | undefined): Promise<User | undefined>;
|
|
15
15
|
/**
|
|
16
16
|
* Collection of users who can collaborate on the request.
|
|
17
17
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
18
18
|
* @returns {RequestInformation}
|
|
19
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
19
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
20
20
|
*/
|
|
21
21
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CollaboratorsWithUserPrincipalNameRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
22
22
|
}
|
|
@@ -8,7 +8,7 @@ export interface GetFinalAttachmentRequestBuilder extends BaseRequestBuilder<Get
|
|
|
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
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
* @see {@link https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0|Find more info here}
|
|
13
13
|
*/
|
|
14
14
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
@@ -16,7 +16,7 @@ export interface GetFinalAttachmentRequestBuilder extends BaseRequestBuilder<Get
|
|
|
16
16
|
* Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator.
|
|
17
17
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
18
18
|
* @returns {RequestInformation}
|
|
19
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
19
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
20
20
|
*/
|
|
21
21
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
22
22
|
}
|
|
@@ -8,7 +8,7 @@ export interface GetFinalReportRequestBuilder extends BaseRequestBuilder<GetFina
|
|
|
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
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
11
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
12
12
|
* @see {@link https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-1.0|Find more info here}
|
|
13
13
|
*/
|
|
14
14
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
@@ -16,7 +16,7 @@ export interface GetFinalReportRequestBuilder extends BaseRequestBuilder<GetFina
|
|
|
16
16
|
* Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator.
|
|
17
17
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
18
18
|
* @returns {RequestInformation}
|
|
19
|
-
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
|
|
19
|
+
* @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
|
|
20
20
|
*/
|
|
21
21
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
22
22
|
}
|