@aws-sdk/client-workspaces-web 3.948.0 → 3.951.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.
@@ -8,10 +8,12 @@ export declare var Description: StaticSimpleSchema;
8
8
  export declare var DescriptionSafe: StaticSimpleSchema;
9
9
  export declare var DisplayName: StaticSimpleSchema;
10
10
  export declare var DisplayNameSafe: StaticSimpleSchema;
11
+ export declare var IconImage: StaticSimpleSchema;
11
12
  export declare var IdentityProviderName: StaticSimpleSchema;
12
13
  export declare var InlineRedactionUrl: StaticSimpleSchema;
13
14
  export declare var IpAddress: StaticSimpleSchema;
14
15
  export declare var IpRange: StaticSimpleSchema;
16
+ export declare var Markdown: StaticSimpleSchema;
15
17
  export declare var PatternName: StaticSimpleSchema;
16
18
  export declare var RedactionPlaceHolderText: StaticSimpleSchema;
17
19
  export declare var Regex: StaticSimpleSchema;
@@ -21,6 +23,7 @@ export declare var TagKey: StaticSimpleSchema;
21
23
  export declare var TagValue: StaticSimpleSchema;
22
24
  export declare var UrlPattern: StaticSimpleSchema;
23
25
  export declare var Username: StaticSimpleSchema;
26
+ export declare var WallpaperImage: StaticSimpleSchema;
24
27
  export declare var AccessDeniedException: StaticErrorSchema;
25
28
  export declare var AssociateBrowserSettingsRequest: StaticStructureSchema;
26
29
  export declare var AssociateBrowserSettingsResponse: StaticStructureSchema;
@@ -38,6 +41,9 @@ export declare var AssociateUserAccessLoggingSettingsRequest: StaticStructureSch
38
41
  export declare var AssociateUserAccessLoggingSettingsResponse: StaticStructureSchema;
39
42
  export declare var AssociateUserSettingsRequest: StaticStructureSchema;
40
43
  export declare var AssociateUserSettingsResponse: StaticStructureSchema;
44
+ export declare var BrandingConfiguration: StaticStructureSchema;
45
+ export declare var BrandingConfigurationCreateInput: StaticStructureSchema;
46
+ export declare var BrandingConfigurationUpdateInput: StaticStructureSchema;
41
47
  export declare var BrowserSettings: StaticStructureSchema;
42
48
  export declare var BrowserSettingsSummary: StaticStructureSchema;
43
49
  export declare var Certificate: StaticStructureSchema;
@@ -134,6 +140,7 @@ export declare var GetUserSettingsRequest: StaticStructureSchema;
134
140
  export declare var GetUserSettingsResponse: StaticStructureSchema;
135
141
  export declare var IdentityProvider: StaticStructureSchema;
136
142
  export declare var IdentityProviderSummary: StaticStructureSchema;
143
+ export declare var ImageMetadata: StaticStructureSchema;
137
144
  export declare var InlineRedactionConfiguration: StaticStructureSchema;
138
145
  export declare var InlineRedactionPattern: StaticStructureSchema;
139
146
  export declare var InternalServerException: StaticErrorSchema;
@@ -166,6 +173,7 @@ export declare var ListUserAccessLoggingSettingsRequest: StaticStructureSchema;
166
173
  export declare var ListUserAccessLoggingSettingsResponse: StaticStructureSchema;
167
174
  export declare var ListUserSettingsRequest: StaticStructureSchema;
168
175
  export declare var ListUserSettingsResponse: StaticStructureSchema;
176
+ export declare var LocalizedBrandingStrings: StaticStructureSchema;
169
177
  export declare var LogConfiguration: StaticStructureSchema;
170
178
  export declare var NetworkSettings: StaticStructureSchema;
171
179
  export declare var NetworkSettingsSummary: StaticStructureSchema;
@@ -250,7 +258,10 @@ export declare var UserSettingsList: StaticListSchema;
250
258
  export declare var ValidationExceptionFieldList: StaticListSchema;
251
259
  export declare var EncryptionContextMap: number;
252
260
  export declare var IdentityProviderDetails: StaticMapSchema;
261
+ export declare var LocalizedBrandingStringMap: StaticMapSchema;
253
262
  export declare var EventFilter: StaticStructureSchema;
263
+ export declare var IconImageInput: StaticStructureSchema;
264
+ export declare var WallpaperImageInput: StaticStructureSchema;
254
265
  export declare var AssociateBrowserSettings: StaticOperationSchema;
255
266
  export declare var AssociateDataProtectionSettings: StaticOperationSchema;
256
267
  export declare var AssociateIpAccessSettings: StaticOperationSchema;
@@ -118,6 +118,31 @@ export declare const LogFileFormat: {
118
118
  readonly JSON_LINES: "JSONLines";
119
119
  };
120
120
  export type LogFileFormat = (typeof LogFileFormat)[keyof typeof LogFileFormat];
121
+ export declare const ColorTheme: {
122
+ readonly DARK: "Dark";
123
+ readonly LIGHT: "Light";
124
+ };
125
+ export type ColorTheme = (typeof ColorTheme)[keyof typeof ColorTheme];
126
+ export declare const MimeType: {
127
+ readonly ICO: "image/x-icon";
128
+ readonly JPEG: "image/jpeg";
129
+ readonly PNG: "image/png";
130
+ };
131
+ export type MimeType = (typeof MimeType)[keyof typeof MimeType];
132
+ export declare const Locale: {
133
+ readonly BR: "pt-BR";
134
+ readonly CN: "zh-CN";
135
+ readonly DE: "de-DE";
136
+ readonly EN: "en-US";
137
+ readonly ES: "es-ES";
138
+ readonly FR: "fr-FR";
139
+ readonly ID: "id-ID";
140
+ readonly IT: "it-IT";
141
+ readonly JP: "ja-JP";
142
+ readonly KR: "ko-KR";
143
+ readonly TW: "zh-TW";
144
+ };
145
+ export type Locale = (typeof Locale)[keyof typeof Locale];
121
146
  export declare const EnabledType: {
122
147
  readonly DISABLED: "Disabled";
123
148
  readonly ENABLED: "Enabled";
@@ -3,12 +3,15 @@ import {
3
3
  AuthenticationType,
4
4
  BrowserType,
5
5
  Category,
6
+ ColorTheme,
6
7
  EnabledType,
7
8
  Event,
8
9
  FolderStructure,
9
10
  IdentityProviderType,
11
+ Locale,
10
12
  LogFileFormat,
11
13
  MaxDisplayResolution,
14
+ MimeType,
12
15
  PortalStatus,
13
16
  RedactionPlaceHolderType,
14
17
  RendererType,
@@ -777,6 +780,31 @@ export interface UpdateUserAccessLoggingSettingsRequest {
777
780
  export interface UpdateUserAccessLoggingSettingsResponse {
778
781
  userAccessLoggingSettings: UserAccessLoggingSettings | undefined;
779
782
  }
783
+ export interface ImageMetadata {
784
+ mimeType: MimeType | undefined;
785
+ fileExtension: string | undefined;
786
+ lastUploadTimestamp: Date | undefined;
787
+ }
788
+ export interface LocalizedBrandingStrings {
789
+ browserTabTitle: string | undefined;
790
+ welcomeText: string | undefined;
791
+ loginTitle?: string | undefined;
792
+ loginDescription?: string | undefined;
793
+ loginButtonText?: string | undefined;
794
+ contactLink?: string | undefined;
795
+ contactButtonText?: string | undefined;
796
+ loadingText?: string | undefined;
797
+ }
798
+ export interface BrandingConfiguration {
799
+ logo: ImageMetadata | undefined;
800
+ wallpaper: ImageMetadata | undefined;
801
+ favicon: ImageMetadata | undefined;
802
+ localizedStrings:
803
+ | Partial<Record<Locale, LocalizedBrandingStrings>>
804
+ | undefined;
805
+ colorTheme: ColorTheme | undefined;
806
+ termsOfService?: string | undefined;
807
+ }
780
808
  export interface CookieSpecification {
781
809
  domain: string | undefined;
782
810
  name?: string | undefined;
@@ -786,6 +814,68 @@ export interface CookieSynchronizationConfiguration {
786
814
  allowlist: CookieSpecification[] | undefined;
787
815
  blocklist?: CookieSpecification[] | undefined;
788
816
  }
817
+ export type IconImageInput =
818
+ | IconImageInput.BlobMember
819
+ | IconImageInput.S3UriMember
820
+ | IconImageInput.$UnknownMember;
821
+ export declare namespace IconImageInput {
822
+ interface BlobMember {
823
+ blob: Uint8Array;
824
+ s3Uri?: never;
825
+ $unknown?: never;
826
+ }
827
+ interface S3UriMember {
828
+ blob?: never;
829
+ s3Uri: string;
830
+ $unknown?: never;
831
+ }
832
+ interface $UnknownMember {
833
+ blob?: never;
834
+ s3Uri?: never;
835
+ $unknown: [string, any];
836
+ }
837
+ interface Visitor<T> {
838
+ blob: (value: Uint8Array) => T;
839
+ s3Uri: (value: string) => T;
840
+ _: (name: string, value: any) => T;
841
+ }
842
+ }
843
+ export type WallpaperImageInput =
844
+ | WallpaperImageInput.BlobMember
845
+ | WallpaperImageInput.S3UriMember
846
+ | WallpaperImageInput.$UnknownMember;
847
+ export declare namespace WallpaperImageInput {
848
+ interface BlobMember {
849
+ blob: Uint8Array;
850
+ s3Uri?: never;
851
+ $unknown?: never;
852
+ }
853
+ interface S3UriMember {
854
+ blob?: never;
855
+ s3Uri: string;
856
+ $unknown?: never;
857
+ }
858
+ interface $UnknownMember {
859
+ blob?: never;
860
+ s3Uri?: never;
861
+ $unknown: [string, any];
862
+ }
863
+ interface Visitor<T> {
864
+ blob: (value: Uint8Array) => T;
865
+ s3Uri: (value: string) => T;
866
+ _: (name: string, value: any) => T;
867
+ }
868
+ }
869
+ export interface BrandingConfigurationCreateInput {
870
+ logo: IconImageInput | undefined;
871
+ wallpaper: WallpaperImageInput | undefined;
872
+ favicon: IconImageInput | undefined;
873
+ localizedStrings:
874
+ | Partial<Record<Locale, LocalizedBrandingStrings>>
875
+ | undefined;
876
+ colorTheme: ColorTheme | undefined;
877
+ termsOfService?: string | undefined;
878
+ }
789
879
  export interface ToolbarConfiguration {
790
880
  toolbarType?: ToolbarType | undefined;
791
881
  visualMode?: VisualMode | undefined;
@@ -809,6 +899,7 @@ export interface CreateUserSettingsRequest {
809
899
  additionalEncryptionContext?: Record<string, string> | undefined;
810
900
  deepLinkAllowed?: EnabledType | undefined;
811
901
  toolbarConfiguration?: ToolbarConfiguration | undefined;
902
+ brandingConfigurationInput?: BrandingConfigurationCreateInput | undefined;
812
903
  }
813
904
  export interface CreateUserSettingsResponse {
814
905
  userSettingsArn: string | undefined;
@@ -837,6 +928,7 @@ export interface UserSettings {
837
928
  additionalEncryptionContext?: Record<string, string> | undefined;
838
929
  deepLinkAllowed?: EnabledType | undefined;
839
930
  toolbarConfiguration?: ToolbarConfiguration | undefined;
931
+ brandingConfiguration?: BrandingConfiguration | undefined;
840
932
  }
841
933
  export interface GetUserSettingsResponse {
842
934
  userSettings?: UserSettings | undefined;
@@ -859,11 +951,22 @@ export interface UserSettingsSummary {
859
951
  | undefined;
860
952
  deepLinkAllowed?: EnabledType | undefined;
861
953
  toolbarConfiguration?: ToolbarConfiguration | undefined;
954
+ brandingConfiguration?: BrandingConfiguration | undefined;
862
955
  }
863
956
  export interface ListUserSettingsResponse {
864
957
  userSettings?: UserSettingsSummary[] | undefined;
865
958
  nextToken?: string | undefined;
866
959
  }
960
+ export interface BrandingConfigurationUpdateInput {
961
+ logo?: IconImageInput | undefined;
962
+ wallpaper?: WallpaperImageInput | undefined;
963
+ favicon?: IconImageInput | undefined;
964
+ localizedStrings?:
965
+ | Partial<Record<Locale, LocalizedBrandingStrings>>
966
+ | undefined;
967
+ colorTheme?: ColorTheme | undefined;
968
+ termsOfService?: string | undefined;
969
+ }
867
970
  export interface UpdateUserSettingsRequest {
868
971
  userSettingsArn: string | undefined;
869
972
  copyAllowed?: EnabledType | undefined;
@@ -879,6 +982,7 @@ export interface UpdateUserSettingsRequest {
879
982
  | undefined;
880
983
  deepLinkAllowed?: EnabledType | undefined;
881
984
  toolbarConfiguration?: ToolbarConfiguration | undefined;
985
+ brandingConfigurationInput?: BrandingConfigurationUpdateInput | undefined;
882
986
  }
883
987
  export interface UpdateUserSettingsResponse {
884
988
  userSettings: UserSettings | undefined;
@@ -15,10 +15,12 @@ export declare var Description: StaticSimpleSchema;
15
15
  export declare var DescriptionSafe: StaticSimpleSchema;
16
16
  export declare var DisplayName: StaticSimpleSchema;
17
17
  export declare var DisplayNameSafe: StaticSimpleSchema;
18
+ export declare var IconImage: StaticSimpleSchema;
18
19
  export declare var IdentityProviderName: StaticSimpleSchema;
19
20
  export declare var InlineRedactionUrl: StaticSimpleSchema;
20
21
  export declare var IpAddress: StaticSimpleSchema;
21
22
  export declare var IpRange: StaticSimpleSchema;
23
+ export declare var Markdown: StaticSimpleSchema;
22
24
  export declare var PatternName: StaticSimpleSchema;
23
25
  export declare var RedactionPlaceHolderText: StaticSimpleSchema;
24
26
  export declare var Regex: StaticSimpleSchema;
@@ -28,6 +30,7 @@ export declare var TagKey: StaticSimpleSchema;
28
30
  export declare var TagValue: StaticSimpleSchema;
29
31
  export declare var UrlPattern: StaticSimpleSchema;
30
32
  export declare var Username: StaticSimpleSchema;
33
+ export declare var WallpaperImage: StaticSimpleSchema;
31
34
  export declare var AccessDeniedException: StaticErrorSchema;
32
35
  export declare var AssociateBrowserSettingsRequest: StaticStructureSchema;
33
36
  export declare var AssociateBrowserSettingsResponse: StaticStructureSchema;
@@ -45,6 +48,9 @@ export declare var AssociateUserAccessLoggingSettingsRequest: StaticStructureSch
45
48
  export declare var AssociateUserAccessLoggingSettingsResponse: StaticStructureSchema;
46
49
  export declare var AssociateUserSettingsRequest: StaticStructureSchema;
47
50
  export declare var AssociateUserSettingsResponse: StaticStructureSchema;
51
+ export declare var BrandingConfiguration: StaticStructureSchema;
52
+ export declare var BrandingConfigurationCreateInput: StaticStructureSchema;
53
+ export declare var BrandingConfigurationUpdateInput: StaticStructureSchema;
48
54
  export declare var BrowserSettings: StaticStructureSchema;
49
55
  export declare var BrowserSettingsSummary: StaticStructureSchema;
50
56
  export declare var Certificate: StaticStructureSchema;
@@ -141,6 +147,7 @@ export declare var GetUserSettingsRequest: StaticStructureSchema;
141
147
  export declare var GetUserSettingsResponse: StaticStructureSchema;
142
148
  export declare var IdentityProvider: StaticStructureSchema;
143
149
  export declare var IdentityProviderSummary: StaticStructureSchema;
150
+ export declare var ImageMetadata: StaticStructureSchema;
144
151
  export declare var InlineRedactionConfiguration: StaticStructureSchema;
145
152
  export declare var InlineRedactionPattern: StaticStructureSchema;
146
153
  export declare var InternalServerException: StaticErrorSchema;
@@ -173,6 +180,7 @@ export declare var ListUserAccessLoggingSettingsRequest: StaticStructureSchema;
173
180
  export declare var ListUserAccessLoggingSettingsResponse: StaticStructureSchema;
174
181
  export declare var ListUserSettingsRequest: StaticStructureSchema;
175
182
  export declare var ListUserSettingsResponse: StaticStructureSchema;
183
+ export declare var LocalizedBrandingStrings: StaticStructureSchema;
176
184
  export declare var LogConfiguration: StaticStructureSchema;
177
185
  export declare var NetworkSettings: StaticStructureSchema;
178
186
  export declare var NetworkSettingsSummary: StaticStructureSchema;
@@ -257,7 +265,10 @@ export declare var UserSettingsList: StaticListSchema;
257
265
  export declare var ValidationExceptionFieldList: StaticListSchema;
258
266
  export declare var EncryptionContextMap: number;
259
267
  export declare var IdentityProviderDetails: StaticMapSchema;
268
+ export declare var LocalizedBrandingStringMap: StaticMapSchema;
260
269
  export declare var EventFilter: StaticStructureSchema;
270
+ export declare var IconImageInput: StaticStructureSchema;
271
+ export declare var WallpaperImageInput: StaticStructureSchema;
261
272
  export declare var AssociateBrowserSettings: StaticOperationSchema;
262
273
  export declare var AssociateDataProtectionSettings: StaticOperationSchema;
263
274
  export declare var AssociateIpAccessSettings: StaticOperationSchema;
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.948.0",
4
+ "version": "3.951.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-workspaces-web",