@microsoft/msgraph-sdk-organization 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.
- package/organization/delta/index.d.ts +4 -3
- package/organization/delta/index.d.ts.map +1 -1
- package/organization/index.d.ts +4 -4
- package/organization/item/branding/backgroundImage/index.d.ts +12 -1
- package/organization/item/branding/backgroundImage/index.d.ts.map +1 -1
- package/organization/item/branding/backgroundImage/index.js +8 -0
- package/organization/item/branding/bannerLogo/index.d.ts +12 -1
- package/organization/item/branding/bannerLogo/index.d.ts.map +1 -1
- package/organization/item/branding/bannerLogo/index.js +8 -0
- package/organization/item/branding/customCSS/index.d.ts +12 -1
- package/organization/item/branding/customCSS/index.d.ts.map +1 -1
- package/organization/item/branding/customCSS/index.js +8 -0
- package/organization/item/branding/favicon/index.d.ts +12 -1
- package/organization/item/branding/favicon/index.d.ts.map +1 -1
- package/organization/item/branding/favicon/index.js +8 -0
- package/organization/item/branding/headerLogo/index.d.ts +12 -1
- package/organization/item/branding/headerLogo/index.d.ts.map +1 -1
- package/organization/item/branding/headerLogo/index.js +8 -0
- package/organization/item/branding/localizations/item/backgroundImage/index.d.ts +12 -1
- package/organization/item/branding/localizations/item/backgroundImage/index.d.ts.map +1 -1
- package/organization/item/branding/localizations/item/backgroundImage/index.js +8 -0
- package/organization/item/branding/localizations/item/bannerLogo/index.d.ts +16 -3
- package/organization/item/branding/localizations/item/bannerLogo/index.d.ts.map +1 -1
- package/organization/item/branding/localizations/item/bannerLogo/index.js +8 -0
- package/organization/item/branding/localizations/item/customCSS/index.d.ts +12 -1
- package/organization/item/branding/localizations/item/customCSS/index.d.ts.map +1 -1
- package/organization/item/branding/localizations/item/customCSS/index.js +8 -0
- package/organization/item/branding/localizations/item/favicon/index.d.ts +12 -1
- package/organization/item/branding/localizations/item/favicon/index.d.ts.map +1 -1
- package/organization/item/branding/localizations/item/favicon/index.js +8 -0
- package/organization/item/branding/localizations/item/headerLogo/index.d.ts +12 -1
- package/organization/item/branding/localizations/item/headerLogo/index.d.ts.map +1 -1
- package/organization/item/branding/localizations/item/headerLogo/index.js +8 -0
- package/organization/item/branding/localizations/item/squareLogo/index.d.ts +12 -1
- package/organization/item/branding/localizations/item/squareLogo/index.d.ts.map +1 -1
- package/organization/item/branding/localizations/item/squareLogo/index.js +8 -0
- package/organization/item/branding/localizations/item/squareLogoDark/index.d.ts +12 -1
- package/organization/item/branding/localizations/item/squareLogoDark/index.d.ts.map +1 -1
- package/organization/item/branding/localizations/item/squareLogoDark/index.js +8 -0
- package/organization/item/branding/squareLogo/index.d.ts +12 -1
- package/organization/item/branding/squareLogo/index.d.ts.map +1 -1
- package/organization/item/branding/squareLogo/index.js +8 -0
- package/organization/item/branding/squareLogoDark/index.d.ts +12 -1
- package/organization/item/branding/squareLogoDark/index.d.ts.map +1 -1
- package/organization/item/branding/squareLogoDark/index.js +8 -0
- package/organization/item/index.d.ts +4 -4
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -17,21 +17,22 @@ export interface DeltaGetResponse extends BaseDeltaFunctionResponse, Parsable {
|
|
|
17
17
|
*/
|
|
18
18
|
export interface DeltaRequestBuilder extends BaseRequestBuilder<DeltaRequestBuilder> {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<DeltaGetResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<DeltaRequestBuilderGetQueryParameters> | undefined): Promise<DeltaGetResponse | undefined>;
|
|
26
27
|
/**
|
|
27
|
-
*
|
|
28
|
+
* Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details.
|
|
28
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
30
|
* @returns {RequestInformation}
|
|
30
31
|
*/
|
|
31
32
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<DeltaRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
32
33
|
}
|
|
33
34
|
/**
|
|
34
|
-
*
|
|
35
|
+
* Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details.
|
|
35
36
|
*/
|
|
36
37
|
export interface DeltaRequestBuilderGetQueryParameters {
|
|
37
38
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuJ,KAAK,yBAAyB,EAAE,KAAK,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAI3P,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;;;;GAIG;AACH,wBAAgB,4CAA4C,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,CAEpK;AACD,MAAM,WAAW,gBAAiB,SAAQ,yBAAyB,EAAE,QAAQ;IACzE;;OAEG;IACH,KAAK,CAAC,EAAE,eAAe,EAAE,CAAC;CAC7B;AACD;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuJ,KAAK,yBAAyB,EAAE,KAAK,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAI3P,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;;;;GAIG;AACH,wBAAgB,4CAA4C,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,CAEpK;AACD,MAAM,WAAW,gBAAiB,SAAQ,yBAAyB,EAAE,QAAQ;IACzE;;OAEG;IACH,KAAK,CAAC,EAAE,eAAe,EAAE,CAAC;CAC7B;AACD;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,gBAAgB,GAAG,SAAS,CAAC,CAAC;IAC7I;;;;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,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;;;GAGG;AACH,wBAAgB,+BAA+B,CAAC,gBAAgB,GAAE,OAAO,CAAC,gBAAgB,CAAC,GAAG,SAAc,GAAI,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAKxJ;AACD;;;GAGG;AACH,wBAAgB,yBAAyB,CAAC,MAAM,EAAE,mBAAmB,EAAE,gBAAgB,GAAE,OAAO,CAAC,gBAAgB,CAAC,GAAG,SAAc,GAAI,IAAI,CAG1I;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,iHAAiH,CAAC;AAc7J;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAWjD,CAAC"}
|
package/organization/index.d.ts
CHANGED
|
@@ -37,11 +37,11 @@ export interface OrganizationRequestBuilder extends BaseRequestBuilder<Organizat
|
|
|
37
37
|
*/
|
|
38
38
|
byOrganizationId(organizationId: string): OrganizationItemRequestBuilder;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* List properties and relationships of the organization objects.
|
|
41
41
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
42
42
|
* @returns {Promise<OrganizationCollectionResponse>}
|
|
43
43
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
44
|
-
* @see {@link https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-1.0|Find more info here}
|
|
44
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-organization-list?view=graph-rest-1.0|Find more info here}
|
|
45
45
|
*/
|
|
46
46
|
get(requestConfiguration?: RequestConfiguration<OrganizationRequestBuilderGetQueryParameters> | undefined): Promise<OrganizationCollectionResponse | undefined>;
|
|
47
47
|
/**
|
|
@@ -53,7 +53,7 @@ export interface OrganizationRequestBuilder extends BaseRequestBuilder<Organizat
|
|
|
53
53
|
*/
|
|
54
54
|
post(body: Organization, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Organization | undefined>;
|
|
55
55
|
/**
|
|
56
|
-
*
|
|
56
|
+
* List properties and relationships of the organization objects.
|
|
57
57
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
58
58
|
* @returns {RequestInformation}
|
|
59
59
|
*/
|
|
@@ -67,7 +67,7 @@ export interface OrganizationRequestBuilder extends BaseRequestBuilder<Organizat
|
|
|
67
67
|
toPostRequestInformation(body: Organization, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
|
-
*
|
|
70
|
+
* List properties and relationships of the organization objects.
|
|
71
71
|
*/
|
|
72
72
|
export interface OrganizationRequestBuilderGetQueryParameters {
|
|
73
73
|
/**
|
|
@@ -3,12 +3,17 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
3
3
|
* Provides operations to manage the media for the organization entity.
|
|
4
4
|
*/
|
|
5
5
|
export interface BackgroundImageRequestBuilder extends BaseRequestBuilder<BackgroundImageRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6
12
|
/**
|
|
7
13
|
* Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
|
|
8
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0|Find more info here}
|
|
12
17
|
*/
|
|
13
18
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
19
|
/**
|
|
@@ -20,6 +25,12 @@ export interface BackgroundImageRequestBuilder extends BaseRequestBuilder<Backgr
|
|
|
20
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
26
|
*/
|
|
22
27
|
put(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns {RequestInformation}
|
|
32
|
+
*/
|
|
33
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
23
34
|
/**
|
|
24
35
|
* Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
|
|
25
36
|
* @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":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG
|
|
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,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;;OAOG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzK;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;;OAMG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClL;AACD;;GAEG;AACH,eAAO,MAAM,wCAAwC,yEAAyE,CAAC;AAC/H;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,gBA4B3D,CAAC"}
|
|
@@ -14,6 +14,14 @@ exports.BackgroundImageRequestBuilderUriTemplate = "{+baseurl}/organization/{org
|
|
|
14
14
|
* Metadata for all the requests in the request builder.
|
|
15
15
|
*/
|
|
16
16
|
exports.BackgroundImageRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.BackgroundImageRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
17
25
|
get: {
|
|
18
26
|
uriTemplate: exports.BackgroundImageRequestBuilderUriTemplate,
|
|
19
27
|
responseBodyContentType: "image/bmp, image/jpg, image/jpeg, image/gif, image/vnd.microsoft.icon, image/png, image/tiff, application/json",
|
|
@@ -3,12 +3,17 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
3
3
|
* Provides operations to manage the media for the organization entity.
|
|
4
4
|
*/
|
|
5
5
|
export interface BannerLogoRequestBuilder extends BaseRequestBuilder<BannerLogoRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6
12
|
/**
|
|
7
13
|
* A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
8
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0|Find more info here}
|
|
12
17
|
*/
|
|
13
18
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
19
|
/**
|
|
@@ -20,6 +25,12 @@ export interface BannerLogoRequestBuilder extends BaseRequestBuilder<BannerLogoR
|
|
|
20
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
26
|
*/
|
|
22
27
|
put(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns {RequestInformation}
|
|
32
|
+
*/
|
|
33
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
23
34
|
/**
|
|
24
35
|
* A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
25
36
|
* @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":"AAMA,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
|
|
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,wBAAyB,SAAQ,kBAAkB,CAAC,wBAAwB,CAAC;IAC1F;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;;OAOG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzK;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;;OAMG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClL;AACD;;GAEG;AACH,eAAO,MAAM,mCAAmC,oEAAoE,CAAC;AACrH;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,gBA4BtD,CAAC"}
|
|
@@ -14,6 +14,14 @@ exports.BannerLogoRequestBuilderUriTemplate = "{+baseurl}/organization/{organiza
|
|
|
14
14
|
* Metadata for all the requests in the request builder.
|
|
15
15
|
*/
|
|
16
16
|
exports.BannerLogoRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.BannerLogoRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
17
25
|
get: {
|
|
18
26
|
uriTemplate: exports.BannerLogoRequestBuilderUriTemplate,
|
|
19
27
|
responseBodyContentType: "image/bmp, image/jpg, image/jpeg, image/gif, image/vnd.microsoft.icon, image/png, image/tiff, application/json",
|
|
@@ -3,12 +3,17 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
3
3
|
* Provides operations to manage the media for the organization entity.
|
|
4
4
|
*/
|
|
5
5
|
export interface CustomCSSRequestBuilder extends BaseRequestBuilder<CustomCSSRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6
12
|
/**
|
|
7
13
|
* CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
|
|
8
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0|Find more info here}
|
|
12
17
|
*/
|
|
13
18
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
19
|
/**
|
|
@@ -20,6 +25,12 @@ export interface CustomCSSRequestBuilder extends BaseRequestBuilder<CustomCSSReq
|
|
|
20
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
26
|
*/
|
|
22
27
|
put(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns {RequestInformation}
|
|
32
|
+
*/
|
|
33
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
23
34
|
/**
|
|
24
35
|
* CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
|
|
25
36
|
* @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":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF
|
|
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,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;;OAOG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzK;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;;OAMG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClL;AACD;;GAEG;AACH,eAAO,MAAM,kCAAkC,mEAAmE,CAAC;AACnH;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,gBA4BrD,CAAC"}
|
|
@@ -14,6 +14,14 @@ exports.CustomCSSRequestBuilderUriTemplate = "{+baseurl}/organization/{organizat
|
|
|
14
14
|
* Metadata for all the requests in the request builder.
|
|
15
15
|
*/
|
|
16
16
|
exports.CustomCSSRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.CustomCSSRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
17
25
|
get: {
|
|
18
26
|
uriTemplate: exports.CustomCSSRequestBuilderUriTemplate,
|
|
19
27
|
responseBodyContentType: "image/bmp, image/jpg, image/jpeg, image/gif, image/vnd.microsoft.icon, image/png, image/tiff, application/json",
|
|
@@ -3,12 +3,17 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
3
3
|
* Provides operations to manage the media for the organization entity.
|
|
4
4
|
*/
|
|
5
5
|
export interface FaviconRequestBuilder extends BaseRequestBuilder<FaviconRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6
12
|
/**
|
|
7
13
|
* A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
|
|
8
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0|Find more info here}
|
|
12
17
|
*/
|
|
13
18
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
19
|
/**
|
|
@@ -20,6 +25,12 @@ export interface FaviconRequestBuilder extends BaseRequestBuilder<FaviconRequest
|
|
|
20
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
26
|
*/
|
|
22
27
|
put(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns {RequestInformation}
|
|
32
|
+
*/
|
|
33
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
23
34
|
/**
|
|
24
35
|
* A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
|
|
25
36
|
* @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":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF
|
|
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,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;;OAOG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzK;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;;OAMG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClL;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,iEAAiE,CAAC;AAC/G;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBA4BnD,CAAC"}
|
|
@@ -14,6 +14,14 @@ exports.FaviconRequestBuilderUriTemplate = "{+baseurl}/organization/{organizatio
|
|
|
14
14
|
* Metadata for all the requests in the request builder.
|
|
15
15
|
*/
|
|
16
16
|
exports.FaviconRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.FaviconRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
17
25
|
get: {
|
|
18
26
|
uriTemplate: exports.FaviconRequestBuilderUriTemplate,
|
|
19
27
|
responseBodyContentType: "image/bmp, image/jpg, image/jpeg, image/gif, image/vnd.microsoft.icon, image/png, image/tiff, application/json",
|
|
@@ -3,12 +3,17 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
3
3
|
* Provides operations to manage the media for the organization entity.
|
|
4
4
|
*/
|
|
5
5
|
export interface HeaderLogoRequestBuilder extends BaseRequestBuilder<HeaderLogoRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6
12
|
/**
|
|
7
13
|
* A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
8
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0|Find more info here}
|
|
12
17
|
*/
|
|
13
18
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
19
|
/**
|
|
@@ -20,6 +25,12 @@ export interface HeaderLogoRequestBuilder extends BaseRequestBuilder<HeaderLogoR
|
|
|
20
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
26
|
*/
|
|
22
27
|
put(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns {RequestInformation}
|
|
32
|
+
*/
|
|
33
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
23
34
|
/**
|
|
24
35
|
* A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
25
36
|
* @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":"AAMA,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
|
|
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,wBAAyB,SAAQ,kBAAkB,CAAC,wBAAwB,CAAC;IAC1F;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;;OAOG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzK;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;;OAMG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClL;AACD;;GAEG;AACH,eAAO,MAAM,mCAAmC,oEAAoE,CAAC;AACrH;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,gBA4BtD,CAAC"}
|
|
@@ -14,6 +14,14 @@ exports.HeaderLogoRequestBuilderUriTemplate = "{+baseurl}/organization/{organiza
|
|
|
14
14
|
* Metadata for all the requests in the request builder.
|
|
15
15
|
*/
|
|
16
16
|
exports.HeaderLogoRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.HeaderLogoRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
17
25
|
get: {
|
|
18
26
|
uriTemplate: exports.HeaderLogoRequestBuilderUriTemplate,
|
|
19
27
|
responseBodyContentType: "image/bmp, image/jpg, image/jpeg, image/gif, image/vnd.microsoft.icon, image/png, image/tiff, application/json",
|
|
@@ -3,12 +3,17 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
3
3
|
* Provides operations to manage the media for the organization entity.
|
|
4
4
|
*/
|
|
5
5
|
export interface BackgroundImageRequestBuilder extends BaseRequestBuilder<BackgroundImageRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6
12
|
/**
|
|
7
13
|
* Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
|
|
8
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0|Find more info here}
|
|
12
17
|
*/
|
|
13
18
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
19
|
/**
|
|
@@ -20,6 +25,12 @@ export interface BackgroundImageRequestBuilder extends BaseRequestBuilder<Backgr
|
|
|
20
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
26
|
*/
|
|
22
27
|
put(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns {RequestInformation}
|
|
32
|
+
*/
|
|
33
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
23
34
|
/**
|
|
24
35
|
* Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
|
|
25
36
|
* @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":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG
|
|
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,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;;OAOG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzK;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;;OAMG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClL;AACD;;GAEG;AACH,eAAO,MAAM,wCAAwC,iIAAiI,CAAC;AACvL;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,gBA4B3D,CAAC"}
|
|
@@ -14,6 +14,14 @@ exports.BackgroundImageRequestBuilderUriTemplate = "{+baseurl}/organization/{org
|
|
|
14
14
|
* Metadata for all the requests in the request builder.
|
|
15
15
|
*/
|
|
16
16
|
exports.BackgroundImageRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.BackgroundImageRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
17
25
|
get: {
|
|
18
26
|
uriTemplate: exports.BackgroundImageRequestBuilderUriTemplate,
|
|
19
27
|
responseBodyContentType: "image/bmp, image/jpg, image/jpeg, image/gif, image/vnd.microsoft.icon, image/png, image/tiff, application/json",
|
|
@@ -6,18 +6,25 @@ export interface BannerLogoRequestBuilder extends BaseRequestBuilder<BannerLogoR
|
|
|
6
6
|
/**
|
|
7
7
|
* A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
12
|
+
/**
|
|
13
|
+
* Read the properties and relationships of an organizationalBrandingLocalization object. To retrieve a localization branding object, specify the value of id in the URL.
|
|
14
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
17
|
+
* @see {@link https://learn.microsoft.com/graph/api/organizationalbrandinglocalization-get?view=graph-rest-1.0|Find more info here}
|
|
12
18
|
*/
|
|
13
19
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
20
|
/**
|
|
15
|
-
*
|
|
21
|
+
* Update the properties of an organizationalBrandingLocalization object for a specific localization.
|
|
16
22
|
* @param body Binary request body
|
|
17
23
|
* @param contentType The request body content type.
|
|
18
24
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
19
25
|
* @returns {Promise<ArrayBuffer>}
|
|
20
26
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
+
* @see {@link https://learn.microsoft.com/graph/api/organizationalbrandinglocalization-update?view=graph-rest-1.0|Find more info here}
|
|
21
28
|
*/
|
|
22
29
|
put(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
23
30
|
/**
|
|
@@ -25,9 +32,15 @@ export interface BannerLogoRequestBuilder extends BaseRequestBuilder<BannerLogoR
|
|
|
25
32
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
26
33
|
* @returns {RequestInformation}
|
|
27
34
|
*/
|
|
35
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
|
+
/**
|
|
37
|
+
* Read the properties and relationships of an organizationalBrandingLocalization object. To retrieve a localization branding object, specify the value of id in the URL.
|
|
38
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
|
+
* @returns {RequestInformation}
|
|
40
|
+
*/
|
|
28
41
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
29
42
|
/**
|
|
30
|
-
*
|
|
43
|
+
* Update the properties of an organizationalBrandingLocalization object for a specific localization.
|
|
31
44
|
* @param body Binary request body
|
|
32
45
|
* @param contentType The request body content type.
|
|
33
46
|
* @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":"AAMA,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,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG
|
|
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,wBAAyB,SAAQ,kBAAkB,CAAC,wBAAwB,CAAC;IAC1F;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;;;OAQG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzK;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;;OAMG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClL;AACD;;GAEG;AACH,eAAO,MAAM,mCAAmC,4HAA4H,CAAC;AAC7K;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,gBA4BtD,CAAC"}
|
|
@@ -14,6 +14,14 @@ exports.BannerLogoRequestBuilderUriTemplate = "{+baseurl}/organization/{organiza
|
|
|
14
14
|
* Metadata for all the requests in the request builder.
|
|
15
15
|
*/
|
|
16
16
|
exports.BannerLogoRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.BannerLogoRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
17
25
|
get: {
|
|
18
26
|
uriTemplate: exports.BannerLogoRequestBuilderUriTemplate,
|
|
19
27
|
responseBodyContentType: "image/bmp, image/jpg, image/jpeg, image/gif, image/vnd.microsoft.icon, image/png, image/tiff, application/json",
|
|
@@ -3,12 +3,17 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
3
3
|
* Provides operations to manage the media for the organization entity.
|
|
4
4
|
*/
|
|
5
5
|
export interface CustomCSSRequestBuilder extends BaseRequestBuilder<CustomCSSRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6
12
|
/**
|
|
7
13
|
* CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
|
|
8
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0|Find more info here}
|
|
12
17
|
*/
|
|
13
18
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
19
|
/**
|
|
@@ -20,6 +25,12 @@ export interface CustomCSSRequestBuilder extends BaseRequestBuilder<CustomCSSReq
|
|
|
20
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
26
|
*/
|
|
22
27
|
put(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns {RequestInformation}
|
|
32
|
+
*/
|
|
33
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
23
34
|
/**
|
|
24
35
|
* CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
|
|
25
36
|
* @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":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF
|
|
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,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;;OAOG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzK;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;;OAMG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClL;AACD;;GAEG;AACH,eAAO,MAAM,kCAAkC,2HAA2H,CAAC;AAC3K;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,gBA4BrD,CAAC"}
|
|
@@ -14,6 +14,14 @@ exports.CustomCSSRequestBuilderUriTemplate = "{+baseurl}/organization/{organizat
|
|
|
14
14
|
* Metadata for all the requests in the request builder.
|
|
15
15
|
*/
|
|
16
16
|
exports.CustomCSSRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.CustomCSSRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
17
25
|
get: {
|
|
18
26
|
uriTemplate: exports.CustomCSSRequestBuilderUriTemplate,
|
|
19
27
|
responseBodyContentType: "image/bmp, image/jpg, image/jpeg, image/gif, image/vnd.microsoft.icon, image/png, image/tiff, application/json",
|
|
@@ -3,12 +3,17 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
3
3
|
* Provides operations to manage the media for the organization entity.
|
|
4
4
|
*/
|
|
5
5
|
export interface FaviconRequestBuilder extends BaseRequestBuilder<FaviconRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
|
|
8
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
+
*/
|
|
11
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6
12
|
/**
|
|
7
13
|
* A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
|
|
8
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
15
|
* @returns {Promise<ArrayBuffer>}
|
|
10
16
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0|Find more info here}
|
|
12
17
|
*/
|
|
13
18
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
19
|
/**
|
|
@@ -20,6 +25,12 @@ export interface FaviconRequestBuilder extends BaseRequestBuilder<FaviconRequest
|
|
|
20
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
26
|
*/
|
|
22
27
|
put(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
|
|
30
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
|
+
* @returns {RequestInformation}
|
|
32
|
+
*/
|
|
33
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
23
34
|
/**
|
|
24
35
|
* A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
|
|
25
36
|
* @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":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF
|
|
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,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzG;;;;;;;OAOG;IACF,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACzK;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;;OAMG;IACF,uBAAuB,CAAC,IAAI,EAAE,WAAW,GAAG,SAAS,EAAE,WAAW,EAAE,MAAM,GAAG,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClL;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,yHAAyH,CAAC;AACvK;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBA4BnD,CAAC"}
|
|
@@ -14,6 +14,14 @@ exports.FaviconRequestBuilderUriTemplate = "{+baseurl}/organization/{organizatio
|
|
|
14
14
|
* Metadata for all the requests in the request builder.
|
|
15
15
|
*/
|
|
16
16
|
exports.FaviconRequestBuilderRequestsMetadata = {
|
|
17
|
+
delete: {
|
|
18
|
+
uriTemplate: exports.FaviconRequestBuilderUriTemplate,
|
|
19
|
+
responseBodyContentType: "application/json",
|
|
20
|
+
errorMappings: {
|
|
21
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
adapterMethodName: "sendNoResponseContent",
|
|
24
|
+
},
|
|
17
25
|
get: {
|
|
18
26
|
uriTemplate: exports.FaviconRequestBuilderUriTemplate,
|
|
19
27
|
responseBodyContentType: "image/bmp, image/jpg, image/jpeg, image/gif, image/vnd.microsoft.icon, image/png, image/tiff, application/json",
|