1# Account Subsystem Changelog
2
3## cl.account_os_account.1 Allowing Spaces in App Account Names
4
5Before the change, when an account name containing a space is passed in, an error will be returned. Now, the account names can contain spaces.
6
7**Change Impact**
8
9Applications developed based on earlier versions are not affected.
10From this version, the account names in app account APIs are no longer checked for spaces.
11
12**Key API/Component Changes**
13
14The following APIs are involved:
15- AppAccountManager
16  - createAccount(name: string, callback: AsyncCallback<void>): void;
17  - auth(name: string, owner: string, authType: string, callback: AuthCallback): void;
18  - setAppAccess(name: string, bundleName: string, isAccessible: boolean, callback: AsyncCallback<void>): void;
19  - setCredential(name: string, credentialType: string, credential: string, callback: AsyncCallback<void>): void;
20  - setCustomData(name: string, key: string, value: string, callback: AsyncCallback<void>): void;
21  - setAuthToken(name: string, authType: string, token: string, callback: AsyncCallback<void>): void;
22  - setAuthTokenVisibility(name: string, authType: string, bundleName: string, isVisible: boolean, callback: AsyncCallback<void>): void;
23