@aws-sdk/client-workspaces-web 3.991.0 → 3.992.0

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.
@@ -672,13 +672,13 @@ exports.AssociateUserSettingsResponse$ = [3, n0, _AUSRs,
672
672
  ];
673
673
  exports.BrandingConfiguration$ = [3, n0, _BC,
674
674
  0,
675
- [_l, _w, _f, _lS, _cT, _tOS],
676
- [() => exports.ImageMetadata$, () => exports.ImageMetadata$, () => exports.ImageMetadata$, () => LocalizedBrandingStringMap, 0, [() => Markdown, 0]], 5
675
+ [_l, _f, _lS, _cT, _w, _tOS],
676
+ [() => exports.ImageMetadata$, () => exports.ImageMetadata$, () => LocalizedBrandingStringMap, 0, () => exports.ImageMetadata$, [() => Markdown, 0]], 4
677
677
  ];
678
678
  exports.BrandingConfigurationCreateInput$ = [3, n0, _BCCI,
679
679
  0,
680
- [_l, _w, _f, _lS, _cT, _tOS],
681
- [[() => exports.IconImageInput$, 0], [() => exports.WallpaperImageInput$, 0], [() => exports.IconImageInput$, 0], () => LocalizedBrandingStringMap, 0, [() => Markdown, 0]], 5
680
+ [_l, _f, _lS, _cT, _w, _tOS],
681
+ [[() => exports.IconImageInput$, 0], [() => exports.IconImageInput$, 0], () => LocalizedBrandingStringMap, 0, [() => exports.WallpaperImageInput$, 0], [() => Markdown, 0]], 4
682
682
  ];
683
683
  exports.BrandingConfigurationUpdateInput$ = [3, n0, _BCUI,
684
684
  0,
@@ -664,13 +664,13 @@ export var AssociateUserSettingsResponse$ = [3, n0, _AUSRs,
664
664
  ];
665
665
  export var BrandingConfiguration$ = [3, n0, _BC,
666
666
  0,
667
- [_l, _w, _f, _lS, _cT, _tOS],
668
- [() => ImageMetadata$, () => ImageMetadata$, () => ImageMetadata$, () => LocalizedBrandingStringMap, 0, [() => Markdown, 0]], 5
667
+ [_l, _f, _lS, _cT, _w, _tOS],
668
+ [() => ImageMetadata$, () => ImageMetadata$, () => LocalizedBrandingStringMap, 0, () => ImageMetadata$, [() => Markdown, 0]], 4
669
669
  ];
670
670
  export var BrandingConfigurationCreateInput$ = [3, n0, _BCCI,
671
671
  0,
672
- [_l, _w, _f, _lS, _cT, _tOS],
673
- [[() => IconImageInput$, 0], [() => WallpaperImageInput$, 0], [() => IconImageInput$, 0], () => LocalizedBrandingStringMap, 0, [() => Markdown, 0]], 5
672
+ [_l, _f, _lS, _cT, _w, _tOS],
673
+ [[() => IconImageInput$, 0], [() => IconImageInput$, 0], () => LocalizedBrandingStringMap, 0, [() => WallpaperImageInput$, 0], [() => Markdown, 0]], 4
674
674
  ];
675
675
  export var BrandingConfigurationUpdateInput$ = [3, n0, _BCUI,
676
676
  0,
@@ -3082,7 +3082,7 @@ export interface BrandingConfiguration {
3082
3082
  * <p>Metadata for the wallpaper image file, including the MIME type, file extension, and upload timestamp.</p>
3083
3083
  * @public
3084
3084
  */
3085
- wallpaper: ImageMetadata | undefined;
3085
+ wallpaper?: ImageMetadata | undefined;
3086
3086
  /**
3087
3087
  * <p>Metadata for the favicon image file, including the MIME type, file extension, and upload timestamp.</p>
3088
3088
  * @public
@@ -3242,10 +3242,10 @@ export interface BrandingConfigurationCreateInput {
3242
3242
  */
3243
3243
  logo: IconImageInput | undefined;
3244
3244
  /**
3245
- * <p>The wallpaper image for the portal. Provide either a binary image file or an S3 URI pointing to the image file. Maximum 5 MB in JPEG or PNG format.</p>
3245
+ * <p>The wallpaper image for the portal. Provide either a binary image file or an S3 URI pointing to the image file. Maximum 5 MB in JPEG or PNG format. If not provided, a default wallpaper will be used as the background image.</p>
3246
3246
  * @public
3247
3247
  */
3248
- wallpaper: WallpaperImageInput | undefined;
3248
+ wallpaper?: WallpaperImageInput | undefined;
3249
3249
  /**
3250
3250
  * <p>The favicon image for the portal. Provide either a binary image file or an S3 URI pointing to the image file. Maximum 100 KB in JPEG, PNG, or ICO format.</p>
3251
3251
  * @public
@@ -3368,7 +3368,7 @@ export interface CreateUserSettingsRequest {
3368
3368
  */
3369
3369
  toolbarConfiguration?: ToolbarConfiguration | undefined;
3370
3370
  /**
3371
- * <p>The branding configuration input that customizes the appearance of the web portal for end users. This includes a custom logo, favicon, wallpaper, localized strings, color theme, and an optional terms of service.</p>
3371
+ * <p>The branding configuration input that customizes the appearance of the web portal for end users. This includes a custom logo, favicon, localized strings, color theme, and optionally a wallpaper and terms of service.</p>
3372
3372
  * @public
3373
3373
  */
3374
3374
  brandingConfigurationInput?: BrandingConfigurationCreateInput | undefined;
@@ -3711,7 +3711,7 @@ export interface UpdateUserSettingsRequest {
3711
3711
  */
3712
3712
  toolbarConfiguration?: ToolbarConfiguration | undefined;
3713
3713
  /**
3714
- * <p>The branding configuration that customizes the appearance of the web portal for end users. When updating user settings without an existing branding configuration, all fields (logo, favicon, wallpaper, localized strings, and color theme) are required except for terms of service. When updating user settings with an existing branding configuration, all fields are optional.</p>
3714
+ * <p>The branding configuration that customizes the appearance of the web portal for end users. When updating user settings without an existing branding configuration, all fields (logo, favicon, localized strings, and color theme) are required except for wallpaper and terms of service. When updating user settings with an existing branding configuration, all fields are optional.</p>
3715
3715
  * @public
3716
3716
  */
3717
3717
  brandingConfigurationInput?: BrandingConfigurationUpdateInput | undefined;
@@ -801,7 +801,7 @@ export interface LocalizedBrandingStrings {
801
801
  }
802
802
  export interface BrandingConfiguration {
803
803
  logo: ImageMetadata | undefined;
804
- wallpaper: ImageMetadata | undefined;
804
+ wallpaper?: ImageMetadata | undefined;
805
805
  favicon: ImageMetadata | undefined;
806
806
  localizedStrings:
807
807
  | Partial<Record<Locale, LocalizedBrandingStrings>>
@@ -872,7 +872,7 @@ export declare namespace WallpaperImageInput {
872
872
  }
873
873
  export interface BrandingConfigurationCreateInput {
874
874
  logo: IconImageInput | undefined;
875
- wallpaper: WallpaperImageInput | undefined;
875
+ wallpaper?: WallpaperImageInput | undefined;
876
876
  favicon: IconImageInput | undefined;
877
877
  localizedStrings:
878
878
  | Partial<Record<Locale, LocalizedBrandingStrings>>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workspaces-web",
3
3
  "description": "AWS SDK for JavaScript Workspaces Web Client for Node.js, Browser and React Native",
4
- "version": "3.991.0",
4
+ "version": "3.992.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-workspaces-web",
@@ -29,7 +29,7 @@
29
29
  "@aws-sdk/middleware-user-agent": "^3.972.10",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.3",
31
31
  "@aws-sdk/types": "^3.973.1",
32
- "@aws-sdk/util-endpoints": "3.991.0",
32
+ "@aws-sdk/util-endpoints": "3.992.0",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.3",
34
34
  "@aws-sdk/util-user-agent-node": "^3.972.8",
35
35
  "@smithy/config-resolver": "^4.4.6",