@umbraco/playwright-testhelpers 2.0.0-beta.60 → 2.0.0-beta.61

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.
@@ -12,15 +12,18 @@ export declare class UserApiHelper {
12
12
  delete(id: string): Promise<import("playwright-core").APIResponse>;
13
13
  deleteByName(name: string): Promise<import("playwright-core").APIResponse | null>;
14
14
  saveUser(user: any): Promise<import("playwright-core").APIResponse>;
15
- addAvatar(id: string, fileId: any): Promise<import("playwright-core").APIResponse>;
15
+ addAvatar(id: string, fileId: string): Promise<import("playwright-core").APIResponse>;
16
16
  removeAvatar(id: string): Promise<import("playwright-core").APIResponse>;
17
- disable(ids: any): Promise<import("playwright-core").APIResponse>;
18
- enable(ids: any): Promise<import("playwright-core").APIResponse>;
19
- unlock(ids: any): Promise<import("playwright-core").APIResponse>;
17
+ disable(ids: string[]): Promise<import("playwright-core").APIResponse>;
18
+ enable(ids: string[]): Promise<import("playwright-core").APIResponse>;
19
+ unlock(ids: string[]): Promise<import("playwright-core").APIResponse>;
20
20
  getCurrentUser(): Promise<any>;
21
- setUserGroups(userIds: any, userGroupIds: any): Promise<import("playwright-core").APIResponse>;
21
+ setUserGroups(userIds: string[], userGroupIds: string[]): Promise<import("playwright-core").APIResponse>;
22
22
  updatePassword(newPassword: string, oldPassword: string): Promise<import("playwright-core").APIResponse>;
23
- invite(email: string, name: string, userGroupIds: any, message: string): Promise<import("playwright-core").APIResponse>;
24
- createDefaultUser(nameOfUser: any, email: any, userGroupOneId: any, userGroupTwoId?: any): Promise<string | undefined>;
23
+ invite(email: string, name: string, userGroupIds: string[], message: string): Promise<import("playwright-core").APIResponse>;
24
+ createDefaultUser(nameOfUser: string, email: string, userGroupIds: string[]): Promise<string | undefined>;
25
25
  addDefaultAvatarImageToUser(userId: string): Promise<import("playwright-core").APIResponse>;
26
+ doesUserContainUserGroupIds(userName: string, userGroupIds: string[]): Promise<any>;
27
+ doesUserContainContentStartNodeIds(userName: string, documentStartNodeIds: string[]): Promise<any>;
28
+ doesUserContainMediaStartNodeIds(userName: string, mediaStartNodeIds: string[]): Promise<any>;
26
29
  }
@@ -94,19 +94,19 @@ class UserApiHelper {
94
94
  // Enable/Disabled and Unlock
95
95
  async disable(ids) {
96
96
  const users = {
97
- "userIds": ids
97
+ "userIds": ids.map(id => ({ id }))
98
98
  };
99
99
  return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/disable', users);
100
100
  }
101
101
  async enable(ids) {
102
102
  const users = {
103
- "userIds": ids
103
+ "userIds": ids.map(id => ({ id }))
104
104
  };
105
105
  return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/enable', users);
106
106
  }
107
107
  async unlock(ids) {
108
108
  const users = {
109
- "userIds": ids
109
+ "userIds": ids.map(id => ({ id }))
110
110
  };
111
111
  return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/unlock', users);
112
112
  }
@@ -117,8 +117,8 @@ class UserApiHelper {
117
117
  // Set User Groups for Users
118
118
  async setUserGroups(userIds, userGroupIds) {
119
119
  const userGroupsForUsers = {
120
- "userIds": userIds,
121
- "userGroupIds": userGroupIds
120
+ "userIds": userIds.map(id => ({ id })),
121
+ "userGroupIds": userGroupIds.map(id => ({ id }))
122
122
  };
123
123
  return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/set-user-groups', userGroupsForUsers);
124
124
  }
@@ -136,19 +136,18 @@ class UserApiHelper {
136
136
  "email": email,
137
137
  "userName": email,
138
138
  "name": name,
139
- "userGroupIds": userGroupIds,
139
+ "userGroupIds": userGroupIds.map(id => ({ id })),
140
140
  "message": message
141
141
  };
142
142
  return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/invite', userInvite);
143
143
  }
144
- async createDefaultUser(nameOfUser, email, userGroupOneId, userGroupTwoId) {
144
+ async createDefaultUser(nameOfUser, email, userGroupIds) {
145
145
  const user = new json_models_builders_1.UserBuilder()
146
146
  .withName(nameOfUser)
147
- .addUserGroupId(userGroupOneId)
148
147
  .withEmail(email)
149
148
  .build();
150
- if (userGroupTwoId) {
151
- user.userGroupIds.push(userGroupTwoId);
149
+ for (const userGroupId of userGroupIds) {
150
+ user.userGroupIds.push({ id: userGroupId });
152
151
  }
153
152
  return await this.create(user);
154
153
  }
@@ -161,6 +160,30 @@ class UserApiHelper {
161
160
  await this.api.temporaryFile.create(temporaryFileId, fileName, mimeType, filePath);
162
161
  return await this.addAvatar(userId, temporaryFileId);
163
162
  }
163
+ async doesUserContainUserGroupIds(userName, userGroupIds) {
164
+ const user = await this.getByName(userName);
165
+ if (!user.userGroupIds || user.userGroupIds.length === 0) {
166
+ return false;
167
+ }
168
+ const userGroupIdsArray = user.userGroupIds.map(group => group.id);
169
+ return userGroupIdsArray.every(id => userGroupIds.includes(id));
170
+ }
171
+ async doesUserContainContentStartNodeIds(userName, documentStartNodeIds) {
172
+ const user = await this.getByName(userName);
173
+ if (!user.documentStartNodeIds || user.documentStartNodeIds.length === 0) {
174
+ return false;
175
+ }
176
+ const documentStartNodeIdsArray = user.documentStartNodeIds.map(documentStartNode => documentStartNode.id);
177
+ return documentStartNodeIdsArray.every(id => documentStartNodeIds.includes(id));
178
+ }
179
+ async doesUserContainMediaStartNodeIds(userName, mediaStartNodeIds) {
180
+ const user = await this.getByName(userName);
181
+ if (!user.mediaStartNodeIds || user.mediaStartNodeIds.length === 0) {
182
+ return false;
183
+ }
184
+ const mediaStartNodeIdsArray = user.mediaStartNodeIds.map(mediaStartNode => mediaStartNode.id);
185
+ return mediaStartNodeIdsArray.every(id => mediaStartNodeIds.includes(id));
186
+ }
164
187
  }
165
188
  exports.UserApiHelper = UserApiHelper;
166
189
  //# sourceMappingURL=UserApiHelper.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"UserApiHelper.js","sourceRoot":"","sources":["../../../lib/helpers/UserApiHelper.ts"],"names":[],"mappings":"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","sourcesContent":["import {ApiHelpers} from \"./ApiHelpers\";\nimport {UserBuilder} from \"@umbraco/json-models-builders\";\n\nexport class UserApiHelper {\n api: ApiHelpers\n\n constructor(api: ApiHelpers) {\n this.api = api;\n }\n\n async ensureNameNotExists(name: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user?skip=0&take=10000');\n const json = await response.json();\n\n for (const sb of json.items) {\n if (sb.name === name) {\n if (sb.id !== null) {\n return await this.api.delete(this.api.baseUrl + '/umbraco/management/api/v1/user/' + sb.id);\n }\n }\n }\n return null;\n }\n\n async doesExist(id: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user/' + id);\n return response.status() === 200;\n }\n\n async doesNameExist(name: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user?skip=0&take=10000');\n const json = await response.json();\n\n for (const sb of json.items) {\n if (sb.name === name) {\n return true;\n }\n }\n return false;\n }\n\n async get(id: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user/' + id);\n const json = await response.json();\n\n if (json !== null) {\n return json;\n }\n return null;\n }\n\n async getByName(name: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user?skip=0&take=10000');\n const json = await response.json();\n\n for (const sb of json.items) {\n if (sb.name === name) {\n if (sb.id !== null) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user/' + sb.id);\n return await response.json();\n }\n\n }\n }\n return null;\n }\n\n async create(userData) {\n const response = await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user', userData);\n return response.headers().location.split(\"/\").pop();\n }\n\n async update(id: string, userData) {\n return await this.api.put(this.api.baseUrl + '/umbraco/management/api/v1/user/' + id, userData);\n }\n\n async delete(id: string) {\n return await this.api.delete(this.api.baseUrl + '/umbraco/management/api/v1/user/' + id);\n }\n\n async deleteByName(name: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user?skip=0&take=10000');\n const json = await response.json();\n\n for (const sb of json.items) {\n if (sb.name === name) {\n if (sb.id !== null) {\n return await this.api.delete(this.api.baseUrl + '/umbraco/management/api/v1/user/' + sb.id);\n\n }\n }\n }\n return null;\n }\n\n async saveUser(user) {\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user', user);\n }\n\n // Avatar\n async addAvatar(id: string, fileId) {\n const avatar = {\n 'file':\n {\n 'id': fileId\n }\n };\n\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/avatar/' + id, avatar);\n }\n\n async removeAvatar(id: string) {\n return await this.api.delete(this.api.baseUrl + '/umbraco/management/api/v1/user/avatar/' + id);\n }\n\n // Enable/Disabled and Unlock\n\n async disable(ids) {\n const users = {\n \"userIds\": ids\n };\n\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/disable', users);\n }\n\n async enable(ids) {\n const users = {\n \"userIds\": ids\n };\n\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/enable', users);\n }\n\n async unlock(ids) {\n const users = {\n \"userIds\": ids\n };\n\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/unlock', users);\n }\n\n async getCurrentUser() {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user/current');\n return await response.json();\n }\n\n // Set User Groups for Users\n async setUserGroups(userIds, userGroupIds) {\n const userGroupsForUsers = {\n \"userIds\": userIds,\n \"userGroupIds\": userGroupIds\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/set-user-groups', userGroupsForUsers);\n }\n\n // Password\n async updatePassword(newPassword: string, oldPassword: string) {\n const updatePassword = {\n \"newPassword\": newPassword,\n \"oldPassword\": oldPassword\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/change-password/', updatePassword);\n }\n\n // Invite\n async invite(email: string, name: string, userGroupIds, message: string) {\n const userInvite = {\n \"email\": email,\n \"userName\": email,\n \"name\": name,\n \"userGroupIds\": userGroupIds,\n \"message\": message\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/invite', userInvite);\n }\n\n async createDefaultUser(nameOfUser, email, userGroupOneId, userGroupTwoId?) {\n const user = new UserBuilder()\n .withName(nameOfUser)\n .addUserGroupId(userGroupOneId)\n .withEmail(email)\n .build();\n\n if (userGroupTwoId) {\n user.userGroupIds.push(userGroupTwoId);\n }\n return await this.create(user);\n }\n\n async addDefaultAvatarImageToUser(userId: string) {\n const crypto = require('crypto');\n const temporaryFileId = crypto.randomUUID();\n const filePath = './fixtures/mediaLibrary/Umbraco.png';\n const fileName = 'Umbraco.png';\n const mimeType = 'image/png';\n await this.api.temporaryFile.create(temporaryFileId, fileName, mimeType, filePath);\n\n return await this.addAvatar(userId, temporaryFileId);\n }\n}"]}
1
+ {"version":3,"file":"UserApiHelper.js","sourceRoot":"","sources":["../../../lib/helpers/UserApiHelper.ts"],"names":[],"mappings":"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","sourcesContent":["import {ApiHelpers} from \"./ApiHelpers\";\nimport {UserBuilder} from \"@umbraco/json-models-builders\";\n\nexport class UserApiHelper {\n api: ApiHelpers\n\n constructor(api: ApiHelpers) {\n this.api = api;\n }\n\n async ensureNameNotExists(name: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user?skip=0&take=10000');\n const json = await response.json();\n\n for (const sb of json.items) {\n if (sb.name === name) {\n if (sb.id !== null) {\n return await this.api.delete(this.api.baseUrl + '/umbraco/management/api/v1/user/' + sb.id);\n }\n }\n }\n return null;\n }\n\n async doesExist(id: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user/' + id);\n return response.status() === 200;\n }\n\n async doesNameExist(name: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user?skip=0&take=10000');\n const json = await response.json();\n\n for (const sb of json.items) {\n if (sb.name === name) {\n return true;\n }\n }\n return false;\n }\n\n async get(id: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user/' + id);\n const json = await response.json();\n\n if (json !== null) {\n return json;\n }\n return null;\n }\n\n async getByName(name: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user?skip=0&take=10000');\n const json = await response.json();\n\n for (const sb of json.items) {\n if (sb.name === name) {\n if (sb.id !== null) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user/' + sb.id);\n return await response.json();\n }\n }\n }\n return null;\n }\n\n async create(userData) {\n const response = await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user', userData);\n return response.headers().location.split(\"/\").pop();\n }\n\n async update(id: string, userData) {\n return await this.api.put(this.api.baseUrl + '/umbraco/management/api/v1/user/' + id, userData);\n }\n\n async delete(id: string) {\n return await this.api.delete(this.api.baseUrl + '/umbraco/management/api/v1/user/' + id);\n }\n\n async deleteByName(name: string) {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user?skip=0&take=10000');\n const json = await response.json();\n\n for (const sb of json.items) {\n if (sb.name === name) {\n if (sb.id !== null) {\n return await this.api.delete(this.api.baseUrl + '/umbraco/management/api/v1/user/' + sb.id);\n }\n }\n }\n return null;\n }\n\n async saveUser(user) {\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user', user);\n }\n\n // Avatar\n async addAvatar(id: string, fileId: string) {\n const avatar = {\n 'file':\n {\n 'id': fileId\n }\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/avatar/' + id, avatar);\n }\n\n async removeAvatar(id: string) {\n return await this.api.delete(this.api.baseUrl + '/umbraco/management/api/v1/user/avatar/' + id);\n }\n\n // Enable/Disabled and Unlock\n async disable(ids: string[]) {\n const users = {\n \"userIds\": ids.map(id => ({id}))\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/disable', users);\n }\n\n async enable(ids: string[]) {\n const users = {\n \"userIds\": ids.map(id => ({id}))\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/enable', users);\n }\n\n async unlock(ids: string[]) {\n const users = {\n \"userIds\": ids.map(id => ({id}))\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/unlock', users);\n }\n\n async getCurrentUser() {\n const response = await this.api.get(this.api.baseUrl + '/umbraco/management/api/v1/user/current');\n return await response.json();\n }\n\n // Set User Groups for Users\n async setUserGroups(userIds: string[], userGroupIds: string[]) {\n const userGroupsForUsers = {\n \"userIds\": userIds.map(id => ({id})),\n \"userGroupIds\": userGroupIds.map(id => ({id}))\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/set-user-groups', userGroupsForUsers);\n }\n\n // Password\n async updatePassword(newPassword: string, oldPassword: string) {\n const updatePassword = {\n \"newPassword\": newPassword,\n \"oldPassword\": oldPassword\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/change-password/', updatePassword);\n }\n\n // Invite\n async invite(email: string, name: string, userGroupIds: string[], message: string) {\n const userInvite = {\n \"email\": email,\n \"userName\": email,\n \"name\": name,\n \"userGroupIds\": userGroupIds.map(id => ({id})),\n \"message\": message\n };\n return await this.api.post(this.api.baseUrl + '/umbraco/management/api/v1/user/invite', userInvite);\n }\n\n async createDefaultUser(nameOfUser: string, email: string, userGroupIds: string[]) {\n const user = new UserBuilder()\n .withName(nameOfUser)\n .withEmail(email)\n .build();\n\n for (const userGroupId of userGroupIds) {\n user.userGroupIds.push({id: userGroupId});\n }\n return await this.create(user);\n }\n\n async addDefaultAvatarImageToUser(userId: string) {\n const crypto = require('crypto');\n const temporaryFileId = crypto.randomUUID();\n const filePath = './fixtures/mediaLibrary/Umbraco.png';\n const fileName = 'Umbraco.png';\n const mimeType = 'image/png';\n await this.api.temporaryFile.create(temporaryFileId, fileName, mimeType, filePath);\n return await this.addAvatar(userId, temporaryFileId);\n }\n\n async doesUserContainUserGroupIds(userName: string, userGroupIds: string[]) {\n const user = await this.getByName(userName);\n if (!user.userGroupIds || user.userGroupIds.length === 0) {\n return false;\n }\n const userGroupIdsArray = user.userGroupIds.map(group => group.id);\n return userGroupIdsArray.every(id => userGroupIds.includes(id));\n }\n\n async doesUserContainContentStartNodeIds(userName: string, documentStartNodeIds: string[]) {\n const user = await this.getByName(userName);\n if (!user.documentStartNodeIds || user.documentStartNodeIds.length === 0) {\n return false;\n }\n const documentStartNodeIdsArray = user.documentStartNodeIds.map(documentStartNode => documentStartNode.id);\n return documentStartNodeIdsArray.every(id => documentStartNodeIds.includes(id));\n }\n\n async doesUserContainMediaStartNodeIds(userName: string, mediaStartNodeIds: string[]) {\n const user = await this.getByName(userName);\n if (!user.mediaStartNodeIds || user.mediaStartNodeIds.length === 0) {\n return false;\n }\n const mediaStartNodeIdsArray = user.mediaStartNodeIds.map(mediaStartNode => mediaStartNode.id);\n return mediaStartNodeIdsArray.every(id => mediaStartNodeIds.includes(id));\n }\n}"]}
@@ -15,14 +15,31 @@ export declare class UserUiHelper extends UiBaseLocators {
15
15
  private readonly removePhotoBtn;
16
16
  private readonly searchInUserSectionTxt;
17
17
  private readonly userSectionCard;
18
+ private readonly mediaSectionCard;
18
19
  private readonly statusBtn;
19
20
  private readonly groupBtn;
21
+ private readonly chooseUserGroupsBtn;
22
+ private readonly allowAccessToAllDocumentsBtn;
23
+ private readonly allowAccessToAllMediaBtn;
24
+ private readonly chooseDocumentInputBtn;
25
+ private readonly chooseMediaInputBtn;
26
+ private readonly documentInput;
27
+ private readonly mediaInput;
28
+ private readonly chooseContainerBtn;
29
+ private readonly languageBtn;
30
+ private readonly disabledTxt;
31
+ private readonly activeTxt;
32
+ private readonly orderByBtn;
33
+ private readonly orderByNewestBtn;
34
+ private readonly documentStartNode;
35
+ private readonly mediaStartNode;
20
36
  constructor(page: Page);
21
37
  clickUsersTabButton(): Promise<void>;
22
38
  clickCreateUserButton(): Promise<void>;
23
39
  enterNameOfTheUser(name: string): Promise<void>;
24
40
  enterUserEmail(email: string): Promise<void>;
25
41
  clickAddUserGroupsButton(): Promise<void>;
42
+ clickChooseUserGroupsButton(): Promise<void>;
26
43
  clickOpenUserGroupsButton(): Promise<void>;
27
44
  enterUpdatedNameOfUser(name: string): Promise<void>;
28
45
  clickUserWithName(name: string): Promise<void>;
@@ -30,6 +47,7 @@ export declare class UserUiHelper extends UiBaseLocators {
30
47
  updatePassword(newPassword: string): Promise<void>;
31
48
  isUserVisible(name: string, isVisible?: boolean): Promise<void>;
32
49
  clickChangePhotoButton(): Promise<void>;
50
+ clickRemoveButtonForUserGroupWithName(userGroupName: string): Promise<void>;
33
51
  clickRemovePhotoButton(): Promise<void>;
34
52
  changePhotoWithFileChooser(filePath: string): Promise<void>;
35
53
  searchInUserSection(name: string): Promise<void>;
@@ -38,4 +56,19 @@ export declare class UserUiHelper extends UiBaseLocators {
38
56
  filterByStatusName(statusName: string): Promise<void>;
39
57
  filterByGroupName(groupName: string): Promise<void>;
40
58
  isPasswordUpdatedForUserWithId(userId: string): Promise<void>;
59
+ clickChooseContentStartNodeButton(): Promise<void>;
60
+ clickChooseMediaStartNodeButton(): Promise<void>;
61
+ clickChooseContainerButton(): Promise<void>;
62
+ selectUserLanguage(language: string): Promise<void>;
63
+ clickRemoveButtonForContentNodeWithName(name: string): Promise<void>;
64
+ clickRemoveButtonForMediaNodeWithName(name: string): Promise<void>;
65
+ clickMediaCardWithName(name: string): Promise<void>;
66
+ clickAllowAccessToAllDocumentsSlider(): Promise<void>;
67
+ clickAllowAccessToAllMediaSlider(): Promise<void>;
68
+ isUserDisabledTextVisible(): Promise<void>;
69
+ isUserActiveTextVisible(): Promise<void>;
70
+ orderByNewestUser(): Promise<void>;
71
+ isUserWithNameTheFirstUserInList(name: string): Promise<void>;
72
+ doesUserHaveAccessToContentNode(name: string): Promise<void>;
73
+ doesUserHaveAccessToMediaNode(name: string): Promise<void>;
41
74
  }
@@ -19,26 +19,58 @@ class UserUiHelper extends UiBaseLocators_1.UiBaseLocators {
19
19
  removePhotoBtn;
20
20
  searchInUserSectionTxt;
21
21
  userSectionCard;
22
+ mediaSectionCard;
22
23
  statusBtn;
23
24
  groupBtn;
25
+ chooseUserGroupsBtn;
26
+ allowAccessToAllDocumentsBtn;
27
+ allowAccessToAllMediaBtn;
28
+ chooseDocumentInputBtn;
29
+ chooseMediaInputBtn;
30
+ documentInput;
31
+ mediaInput;
32
+ chooseContainerBtn;
33
+ languageBtn;
34
+ disabledTxt;
35
+ activeTxt;
36
+ orderByBtn;
37
+ orderByNewestBtn;
38
+ documentStartNode;
39
+ mediaStartNode;
24
40
  constructor(page) {
25
41
  super(page);
26
42
  this.usersTabBtn = page.locator('#views').getByRole('tab', { name: 'Users' });
27
43
  this.createUserBtn = page.getByLabel('Create user');
28
- this.nameOfTheUserTxt = page.getByLabel('name');
44
+ this.nameOfTheUserTxt = page.getByLabel('name', { exact: true });
29
45
  this.userEmailTxt = page.getByLabel('email');
30
46
  this.addUserGroupsBtn = page.locator('#userGroups').getByLabel('open', { exact: true });
31
47
  this.openUserGroupsBtn = page.locator('[label="Groups"]').getByLabel('open', { exact: true });
48
+ this.chooseUserGroupsBtn = page.locator('umb-user-group-input').getByLabel('Choose');
32
49
  this.updatedNameOfTheUserTxt = page.locator('#name #input');
33
- this.changePasswordBtn = page.getByLabel('Change Password');
50
+ this.changePasswordBtn = page.getByLabel('Change your password');
34
51
  this.newPasswordTxt = page.locator('input[name="newPassword"]');
35
52
  this.confirmPasswordTxt = page.locator('input[name="confirmPassword"]');
36
53
  this.changePhotoBtn = page.getByLabel('Change photo');
37
54
  this.removePhotoBtn = page.getByLabel('Remove photo');
38
55
  this.searchInUserSectionTxt = page.getByLabel('Search the users section');
39
56
  this.userSectionCard = page.locator('uui-card-user');
57
+ this.mediaSectionCard = page.locator('uui-card-media');
40
58
  this.statusBtn = page.locator('uui-button', { hasText: 'Status' });
41
59
  this.groupBtn = page.locator('uui-button', { hasText: 'Groups' });
60
+ this.allowAccessToAllDocumentsBtn = page.locator('umb-property-layout').filter({ hasText: 'Allow access to all documents' }).locator('#slider');
61
+ this.allowAccessToAllMediaBtn = page.locator('umb-property-layout').filter({ hasText: 'Allow access to all media' }).locator('#slider');
62
+ this.chooseDocumentInputBtn = page.locator('umb-input-document').getByLabel('Choose');
63
+ this.chooseMediaInputBtn = page.locator('umb-input-media').getByLabel('Choose');
64
+ this.documentInput = page.locator('umb-input-document');
65
+ this.mediaInput = page.locator('umb-input-media');
66
+ this.chooseContainerBtn = page.locator('#container').getByLabel('Choose');
67
+ this.languageBtn = page.locator('[label="UI Culture"] [label="combobox-input"]');
68
+ this.disabledTxt = page.getByText('Disabled', { exact: true });
69
+ this.activeTxt = page.getByText('Active', { exact: true });
70
+ this.orderByBtn = page.getByLabel('order by');
71
+ this.orderByNewestBtn = page.getByLabel('Newest');
72
+ this.documentStartNode = page.locator('umb-user-document-start-node');
73
+ this.mediaStartNode = page.locator('umb-user-media-start-node');
42
74
  }
43
75
  async clickUsersTabButton() {
44
76
  await this.usersTabBtn.click({ force: true });
@@ -57,6 +89,9 @@ class UserUiHelper extends UiBaseLocators_1.UiBaseLocators {
57
89
  // This wait is necessary to avoid the click on the user group button to be ignored
58
90
  await this.page.waitForTimeout(200);
59
91
  }
92
+ async clickChooseUserGroupsButton() {
93
+ await this.chooseUserGroupsBtn.click();
94
+ }
60
95
  async clickOpenUserGroupsButton() {
61
96
  await this.openUserGroupsBtn.click();
62
97
  }
@@ -64,6 +99,7 @@ class UserUiHelper extends UiBaseLocators_1.UiBaseLocators {
64
99
  await this.updatedNameOfTheUserTxt.fill(name);
65
100
  }
66
101
  async clickUserWithName(name) {
102
+ await (0, test_1.expect)(this.page.getByText(name, { exact: true })).toBeVisible();
67
103
  await this.page.getByText(name, { exact: true }).click();
68
104
  }
69
105
  async clickChangePasswordButton() {
@@ -79,6 +115,9 @@ class UserUiHelper extends UiBaseLocators_1.UiBaseLocators {
79
115
  async clickChangePhotoButton() {
80
116
  await this.changePhotoBtn.click();
81
117
  }
118
+ async clickRemoveButtonForUserGroupWithName(userGroupName) {
119
+ await this.page.locator('umb-user-group-ref', { hasText: userGroupName }).locator('[label="Remove"]').click();
120
+ }
82
121
  async clickRemovePhotoButton() {
83
122
  await this.removePhotoBtn.click();
84
123
  }
@@ -111,6 +150,53 @@ class UserUiHelper extends UiBaseLocators_1.UiBaseLocators {
111
150
  await this.clickConfirmButton()
112
151
  ]);
113
152
  }
153
+ async clickChooseContentStartNodeButton() {
154
+ await this.chooseDocumentInputBtn.click({ force: true });
155
+ }
156
+ async clickChooseMediaStartNodeButton() {
157
+ await this.chooseMediaInputBtn.click({ force: true });
158
+ }
159
+ async clickChooseContainerButton() {
160
+ await this.chooseContainerBtn.click();
161
+ }
162
+ async selectUserLanguage(language) {
163
+ await this.languageBtn.click();
164
+ await this.page.getByText(language).click();
165
+ }
166
+ async clickRemoveButtonForContentNodeWithName(name) {
167
+ await this.documentInput.locator('[name="' + name + '"]').locator('[label="Remove"]').click();
168
+ }
169
+ async clickRemoveButtonForMediaNodeWithName(name) {
170
+ await this.mediaInput.locator('[name="' + name + '"]').locator('[label="Remove"]').click();
171
+ }
172
+ async clickMediaCardWithName(name) {
173
+ await this.mediaSectionCard.filter({ hasText: name }).locator('umb-icon').click();
174
+ }
175
+ async clickAllowAccessToAllDocumentsSlider() {
176
+ await this.allowAccessToAllDocumentsBtn.click();
177
+ }
178
+ async clickAllowAccessToAllMediaSlider() {
179
+ await this.allowAccessToAllMediaBtn.click();
180
+ }
181
+ async isUserDisabledTextVisible() {
182
+ return await (0, test_1.expect)(this.disabledTxt).toBeVisible();
183
+ }
184
+ async isUserActiveTextVisible() {
185
+ return await (0, test_1.expect)(this.activeTxt).toBeVisible();
186
+ }
187
+ async orderByNewestUser() {
188
+ await this.orderByBtn.click({ force: true });
189
+ await this.orderByNewestBtn.click();
190
+ }
191
+ async isUserWithNameTheFirstUserInList(name) {
192
+ await (0, test_1.expect)(this.userSectionCard.first()).toContainText(name);
193
+ }
194
+ async doesUserHaveAccessToContentNode(name) {
195
+ return await (0, test_1.expect)(this.documentStartNode.locator('[name="' + name + '"]')).toBeVisible();
196
+ }
197
+ async doesUserHaveAccessToMediaNode(name) {
198
+ return await (0, test_1.expect)(this.mediaStartNode.locator('[name="' + name + '"]')).toBeVisible();
199
+ }
114
200
  }
115
201
  exports.UserUiHelper = UserUiHelper;
116
202
  //# sourceMappingURL=UserUiHelper.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"UserUiHelper.js","sourceRoot":"","sources":["../../../lib/helpers/UserUiHelper.ts"],"names":[],"mappings":"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","sourcesContent":["import {expect, Locator, Page} from \"@playwright/test\"\nimport {UiBaseLocators} from \"./UiBaseLocators\";\nimport {umbracoConfig} from \"../../umbraco.config\";\n\nexport class UserUiHelper extends UiBaseLocators {\n private readonly usersTabBtn: Locator;\n private readonly createUserBtn: Locator;\n private readonly nameOfTheUserTxt: Locator;\n private readonly userEmailTxt: Locator;\n private readonly addUserGroupsBtn: Locator;\n private readonly openUserGroupsBtn: Locator;\n private readonly updatedNameOfTheUserTxt : Locator;\n private readonly changePasswordBtn: Locator;\n private readonly newPasswordTxt: Locator;\n private readonly confirmPasswordTxt: Locator;\n private readonly changePhotoBtn: Locator;\n private readonly removePhotoBtn: Locator;\n private readonly searchInUserSectionTxt: Locator;\n private readonly userSectionCard: Locator;\n private readonly statusBtn: Locator;\n private readonly groupBtn: Locator;\n\n constructor(page: Page) {\n super(page);\n this.usersTabBtn = page.locator('#views').getByRole('tab', {name: 'Users'});\n this.createUserBtn = page.getByLabel('Create user');\n this.nameOfTheUserTxt = page.getByLabel('name');\n this.userEmailTxt = page.getByLabel('email');\n this.addUserGroupsBtn = page.locator('#userGroups').getByLabel('open', {exact: true});\n this.openUserGroupsBtn = page.locator('[label=\"Groups\"]').getByLabel('open', {exact: true});\n this.updatedNameOfTheUserTxt = page.locator('#name #input');\n this.changePasswordBtn = page.getByLabel('Change Password');\n this.newPasswordTxt = page.locator('input[name=\"newPassword\"]');\n this.confirmPasswordTxt = page.locator('input[name=\"confirmPassword\"]');\n this.changePhotoBtn = page.getByLabel('Change photo');\n this.removePhotoBtn = page.getByLabel('Remove photo');\n this.searchInUserSectionTxt = page.getByLabel('Search the users section');\n this.userSectionCard = page.locator('uui-card-user');\n this.statusBtn = page.locator('uui-button', {hasText: 'Status'});\n this.groupBtn = page.locator('uui-button', {hasText: 'Groups'});\n }\n\n async clickUsersTabButton() {\n await this.usersTabBtn.click({force: true});\n }\n\n async clickCreateUserButton() {\n await this.createUserBtn.click();\n }\n\n async enterNameOfTheUser(name: string) {\n await this.nameOfTheUserTxt.fill(name);\n }\n\n async enterUserEmail(email: string) {\n await this.userEmailTxt.fill(email);\n }\n\n async clickAddUserGroupsButton() {\n await this.addUserGroupsBtn.click();\n // This wait is necessary to avoid the click on the user group button to be ignored\n await this.page.waitForTimeout(200);\n }\n\n async clickOpenUserGroupsButton() {\n await this.openUserGroupsBtn.click();\n }\n\n async enterUpdatedNameOfUser(name: string) {\n await this.updatedNameOfTheUserTxt .fill(name);\n }\n\n async clickUserWithName(name: string) {\n await this.page.getByText(name, {exact: true}).click();\n }\n\n async clickChangePasswordButton() {\n await this.changePasswordBtn.click();\n }\n\n async updatePassword(newPassword: string) {\n await this.newPasswordTxt.fill(newPassword);\n await this.confirmPasswordTxt.fill(newPassword);\n }\n\n async isUserVisible(name: string, isVisible = true) {\n return await expect(this.page.getByText(name, {exact: true})).toBeVisible({visible: isVisible});\n }\n\n async clickChangePhotoButton() {\n await this.changePhotoBtn.click();\n }\n\n async clickRemovePhotoButton() {\n await this.removePhotoBtn.click();\n }\n\n async changePhotoWithFileChooser(filePath: string) {\n const fileChooserPromise = this.page.waitForEvent('filechooser');\n await this.clickChangePhotoButton();\n const fileChooser = await fileChooserPromise;\n await fileChooser.setFiles(filePath);\n }\n\n async searchInUserSection(name: string) {\n await this.searchInUserSectionTxt.fill(name);\n }\n\n async doesUserSectionContainUserAmount(amount: number) {\n return await expect(this.userSectionCard).toHaveCount(amount);\n }\n\n async doesUserSectionContainUserWithText(name: string) {\n return await expect(this.userSectionCard).toContainText(name);\n }\n\n async filterByStatusName(statusName: string) {\n await this.statusBtn.click();\n await this.page.locator('label').filter({hasText: statusName}).click();\n }\n\n async filterByGroupName(groupName: string) {\n await this.groupBtn.click();\n await this.page.locator('label').filter({hasText: groupName}).click();\n }\n\n async isPasswordUpdatedForUserWithId(userId: string) {\n await Promise.all([\n this.page.waitForResponse(resp => resp.url().includes(umbracoConfig.environment.baseUrl + '/umbraco/management/api/v1/user/' + userId + '/change-password') && resp.status() === 200),\n await this.clickConfirmButton()\n ]);\n }\n}"]}
1
+ {"version":3,"file":"UserUiHelper.js","sourceRoot":"","sources":["../../../lib/helpers/UserUiHelper.ts"],"names":[],"mappings":"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","sourcesContent":["import {expect, Locator, Page} from \"@playwright/test\"\nimport {UiBaseLocators} from \"./UiBaseLocators\";\nimport {umbracoConfig} from \"../../umbraco.config\";\n\nexport class UserUiHelper extends UiBaseLocators {\n private readonly usersTabBtn: Locator;\n private readonly createUserBtn: Locator;\n private readonly nameOfTheUserTxt: Locator;\n private readonly userEmailTxt: Locator;\n private readonly addUserGroupsBtn: Locator;\n private readonly openUserGroupsBtn: Locator;\n private readonly updatedNameOfTheUserTxt: Locator;\n private readonly changePasswordBtn: Locator;\n private readonly newPasswordTxt: Locator;\n private readonly confirmPasswordTxt: Locator;\n private readonly changePhotoBtn: Locator;\n private readonly removePhotoBtn: Locator;\n private readonly searchInUserSectionTxt: Locator;\n private readonly userSectionCard: Locator;\n private readonly mediaSectionCard: Locator;\n private readonly statusBtn: Locator;\n private readonly groupBtn: Locator;\n private readonly chooseUserGroupsBtn: Locator;\n private readonly allowAccessToAllDocumentsBtn: Locator;\n private readonly allowAccessToAllMediaBtn: Locator;\n private readonly chooseDocumentInputBtn: Locator;\n private readonly chooseMediaInputBtn: Locator;\n private readonly documentInput: Locator;\n private readonly mediaInput: Locator;\n private readonly chooseContainerBtn: Locator;\n private readonly languageBtn: Locator;\n private readonly disabledTxt: Locator;\n private readonly activeTxt: Locator;\n private readonly orderByBtn: Locator;\n private readonly orderByNewestBtn: Locator;\n private readonly documentStartNode: Locator;\n private readonly mediaStartNode: Locator;\n\n constructor(page: Page) {\n super(page);\n this.usersTabBtn = page.locator('#views').getByRole('tab', {name: 'Users'});\n this.createUserBtn = page.getByLabel('Create user');\n this.nameOfTheUserTxt = page.getByLabel('name', {exact: true});\n this.userEmailTxt = page.getByLabel('email');\n this.addUserGroupsBtn = page.locator('#userGroups').getByLabel('open', {exact: true});\n this.openUserGroupsBtn = page.locator('[label=\"Groups\"]').getByLabel('open', {exact: true});\n this.chooseUserGroupsBtn = page.locator('umb-user-group-input').getByLabel('Choose');\n this.updatedNameOfTheUserTxt = page.locator('#name #input');\n this.changePasswordBtn = page.getByLabel('Change your password');\n this.newPasswordTxt = page.locator('input[name=\"newPassword\"]');\n this.confirmPasswordTxt = page.locator('input[name=\"confirmPassword\"]');\n this.changePhotoBtn = page.getByLabel('Change photo');\n this.removePhotoBtn = page.getByLabel('Remove photo');\n this.searchInUserSectionTxt = page.getByLabel('Search the users section');\n this.userSectionCard = page.locator('uui-card-user');\n this.mediaSectionCard = page.locator('uui-card-media');\n this.statusBtn = page.locator('uui-button', {hasText: 'Status'});\n this.groupBtn = page.locator('uui-button', {hasText: 'Groups'});\n this.allowAccessToAllDocumentsBtn = page.locator('umb-property-layout').filter({hasText: 'Allow access to all documents'}).locator('#slider');\n this.allowAccessToAllMediaBtn = page.locator('umb-property-layout').filter({hasText: 'Allow access to all media'}).locator('#slider');\n this.chooseDocumentInputBtn = page.locator('umb-input-document').getByLabel('Choose');\n this.chooseMediaInputBtn = page.locator('umb-input-media').getByLabel('Choose');\n this.documentInput = page.locator('umb-input-document');\n this.mediaInput = page.locator('umb-input-media');\n this.chooseContainerBtn = page.locator('#container').getByLabel('Choose');\n this.languageBtn = page.locator('[label=\"UI Culture\"] [label=\"combobox-input\"]');\n this.disabledTxt = page.getByText('Disabled', {exact: true});\n this.activeTxt = page.getByText('Active', {exact: true});\n this.orderByBtn = page.getByLabel('order by');\n this.orderByNewestBtn = page.getByLabel('Newest');\n this.documentStartNode = page.locator('umb-user-document-start-node');\n this.mediaStartNode = page.locator('umb-user-media-start-node');\n }\n\n async clickUsersTabButton() {\n await this.usersTabBtn.click({force: true});\n }\n\n async clickCreateUserButton() {\n await this.createUserBtn.click();\n }\n\n async enterNameOfTheUser(name: string) {\n await this.nameOfTheUserTxt.fill(name);\n }\n\n async enterUserEmail(email: string) {\n await this.userEmailTxt.fill(email);\n }\n\n async clickAddUserGroupsButton() {\n await this.addUserGroupsBtn.click();\n // This wait is necessary to avoid the click on the user group button to be ignored\n await this.page.waitForTimeout(200);\n }\n\n async clickChooseUserGroupsButton() {\n await this.chooseUserGroupsBtn.click();\n }\n\n async clickOpenUserGroupsButton() {\n await this.openUserGroupsBtn.click();\n }\n\n async enterUpdatedNameOfUser(name: string) {\n await this.updatedNameOfTheUserTxt.fill(name);\n }\n\n async clickUserWithName(name: string) {\n await expect(this.page.getByText(name, {exact: true})).toBeVisible();\n await this.page.getByText(name, {exact: true}).click();\n }\n\n async clickChangePasswordButton() {\n await this.changePasswordBtn.click();\n }\n\n async updatePassword(newPassword: string) {\n await this.newPasswordTxt.fill(newPassword);\n await this.confirmPasswordTxt.fill(newPassword);\n }\n\n async isUserVisible(name: string, isVisible = true) {\n return await expect(this.page.getByText(name, {exact: true})).toBeVisible({visible: isVisible});\n }\n\n async clickChangePhotoButton() {\n await this.changePhotoBtn.click();\n }\n\n async clickRemoveButtonForUserGroupWithName(userGroupName: string) {\n await this.page.locator('umb-user-group-ref', {hasText: userGroupName}).locator('[label=\"Remove\"]').click();\n }\n\n async clickRemovePhotoButton() {\n await this.removePhotoBtn.click();\n }\n\n async changePhotoWithFileChooser(filePath: string) {\n const fileChooserPromise = this.page.waitForEvent('filechooser');\n await this.clickChangePhotoButton();\n const fileChooser = await fileChooserPromise;\n await fileChooser.setFiles(filePath);\n }\n\n async searchInUserSection(name: string) {\n await this.searchInUserSectionTxt.fill(name);\n }\n\n async doesUserSectionContainUserAmount(amount: number) {\n return await expect(this.userSectionCard).toHaveCount(amount);\n }\n\n async doesUserSectionContainUserWithText(name: string) {\n return await expect(this.userSectionCard).toContainText(name);\n }\n\n async filterByStatusName(statusName: string) {\n await this.statusBtn.click();\n await this.page.locator('label').filter({hasText: statusName}).click();\n }\n\n async filterByGroupName(groupName: string) {\n await this.groupBtn.click();\n await this.page.locator('label').filter({hasText: groupName}).click();\n }\n\n async isPasswordUpdatedForUserWithId(userId: string) {\n await Promise.all([\n this.page.waitForResponse(resp => resp.url().includes(umbracoConfig.environment.baseUrl + '/umbraco/management/api/v1/user/' + userId + '/change-password') && resp.status() === 200),\n await this.clickConfirmButton()\n ]);\n }\n\n async clickChooseContentStartNodeButton() {\n await this.chooseDocumentInputBtn.click({force: true});\n }\n\n async clickChooseMediaStartNodeButton() {\n await this.chooseMediaInputBtn.click({force: true});\n }\n\n async clickChooseContainerButton() {\n await this.chooseContainerBtn.click();\n }\n\n async selectUserLanguage(language: string) {\n await this.languageBtn.click();\n await this.page.getByText(language).click();\n }\n\n async clickRemoveButtonForContentNodeWithName(name: string) {\n await this.documentInput.locator('[name=\"' + name + '\"]').locator('[label=\"Remove\"]').click();\n }\n\n async clickRemoveButtonForMediaNodeWithName(name: string) {\n await this.mediaInput.locator('[name=\"' + name + '\"]').locator('[label=\"Remove\"]').click();\n }\n\n async clickMediaCardWithName(name: string) {\n await this.mediaSectionCard.filter({hasText: name}).locator('umb-icon').click();\n }\n\n async clickAllowAccessToAllDocumentsSlider() {\n await this.allowAccessToAllDocumentsBtn.click();\n }\n\n async clickAllowAccessToAllMediaSlider() {\n await this.allowAccessToAllMediaBtn.click();\n }\n\n async isUserDisabledTextVisible() {\n return await expect(this.disabledTxt).toBeVisible();\n }\n\n async isUserActiveTextVisible() {\n return await expect(this.activeTxt).toBeVisible();\n }\n\n async orderByNewestUser() {\n await this.orderByBtn.click({force: true});\n await this.orderByNewestBtn.click();\n }\n\n async isUserWithNameTheFirstUserInList(name: string) {\n await expect(this.userSectionCard.first()).toContainText(name);\n }\n\n async doesUserHaveAccessToContentNode(name: string) {\n return await expect(this.documentStartNode.locator('[name=\"' + name + '\"]')).toBeVisible();\n }\n\n async doesUserHaveAccessToMediaNode(name: string) {\n return await expect(this.mediaStartNode.locator('[name=\"' + name + '\"]')).toBeVisible();\n }\n}"]}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/tslib/tslib.d.ts","../node_modules/playwright-core/types/protocol.d.ts","../node_modules/playwright-core/types/structs.d.ts","../node_modules/playwright-core/types/types.d.ts","../node_modules/playwright/types/test.d.ts","../node_modules/playwright/test.d.ts","../node_modules/@playwright/test/index.d.ts","../umbraco.config.ts","../lib/helpers/ReportHelper.ts","../lib/helpers/TelemetryDataApiHelper.ts","../lib/helpers/LanguageApiHelper.ts","../lib/helpers/DictionaryApiHelper.ts","../lib/helpers/RelationTypeApiHelper.ts","../node_modules/@umbraco/json-models-builders/dist/lib/helpers/AliasHelper.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/packages/packageBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/packages/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/dataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/sliderDataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/textAreaDataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/numericDataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/datePickerDataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/document/documentValueBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/document/documentVariantBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/document/documentBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/document/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypePropertyBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeContainerBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeAllowedDocumentTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeCompositionBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeAllowedTemplateBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypePropertyBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypeContainerBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypeAllowedMediaTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypeCompositionBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/media/mediaValueBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/media/mediaVariantBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/media/mediaBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/media/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/users/userBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/users/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/userGroups/userGroupPermissionBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/userGroups/userGroupBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/userGroups/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/member/memberValueBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/member/memberVariantBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/member/memberBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/member/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/memberTypeCompositionBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/memberTypeContainerBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/memberTypePropertyBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/memberTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentBlueprints/documentBlueprintsValueBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentBlueprints/documentBlueprintsVariantBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentBlueprints/documentBlueprintsBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentBlueprints/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/index.d.ts","../lib/helpers/UserGroupApiHelper.ts","../lib/helpers/AliasHelper.ts","../lib/helpers/TemplateApiHelper.ts","../lib/helpers/DataTypeApiHelper.ts","../lib/helpers/UserApiHelper.ts","../lib/helpers/TemporaryFileApiHelper.ts","../lib/helpers/PackageApiHelper.ts","../lib/helpers/ScriptApiHelper.ts","../lib/helpers/PartialViewApiHelper.ts","../lib/helpers/StylesheetApiHelper.ts","../lib/helpers/LogViewerApiHelper.ts","../lib/helpers/DocumentTypeApiHelper.ts","../lib/helpers/DocumentApiHelper.ts","../lib/helpers/MediaTypeApiHelper.ts","../lib/helpers/MediaApiHelper.ts","../lib/helpers/ObjectTypesApiHelper.ts","../lib/helpers/ModelsBuilderApiHelper.ts","../lib/helpers/HealthCheckApiHelper.ts","../lib/helpers/IndexerApiHelper.ts","../lib/helpers/PublishedCacheApiHelper.ts","../lib/helpers/RedirectManagementApiHelper.ts","../lib/helpers/MemberGroupApiHelper.ts","../lib/helpers/MemberApiHelper.ts","../lib/helpers/MemberTypeApiHelper.ts","../lib/helpers/DocumentBlueprintApiHelper.ts","../lib/helpers/ApiHelpers.ts","../lib/helpers/ConstantHelper.ts","../lib/helpers/UiBaseLocators.ts","../lib/helpers/StylesheetUiHelper.ts","../lib/helpers/PartialViewUiHelper.ts","../lib/helpers/ScriptUiHelper.ts","../lib/helpers/TemplateUiHelper.ts","../lib/helpers/TranslationUiHelper.ts","../lib/helpers/LoginUiHelper.ts","../lib/helpers/LogViewerUiHelper.ts","../lib/helpers/TelemetryDataUiHelper.ts","../lib/helpers/DataTypeUiHelper.ts","../lib/helpers/RelationTypeUiHelper.ts","../lib/helpers/PackageUiHelper.ts","../lib/helpers/LanguageUiHelper.ts","../lib/helpers/ModelsBuilderUiHelper.ts","../lib/helpers/ExamineManagementUiHelper.ts","../lib/helpers/PublishedStatusUiHelper.ts","../lib/helpers/HealthCheckUiHelper.ts","../lib/helpers/ProfilingUiHelper.ts","../lib/helpers/WelcomeDashboardUiHelper.ts","../lib/helpers/ContentUiHelper.ts","../lib/helpers/DocumentTypeUiHelper.ts","../lib/helpers/RedirectManagementUiHelper.ts","../lib/helpers/MemberGroupUiHelper.ts","../lib/helpers/MemberUiHelper.ts","../lib/helpers/MemberTypeUiHelper.ts","../lib/helpers/MediaTypeUiHelper.ts","../lib/helpers/UserUiHelper.ts","../lib/helpers/UserGroupUiHelper.ts","../lib/helpers/MediaUiHelper.ts","../lib/helpers/DocumentBlueprintUiHelper.ts","../lib/helpers/UiHelpers.ts","../lib/helpers/testExtension.ts","../lib/helpers/index.ts","../lib/index.ts","../node_modules/@types/node/ts4.8/assert.d.ts","../node_modules/@types/node/ts4.8/assert/strict.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/ts4.8/globals.d.ts","../node_modules/@types/node/ts4.8/async_hooks.d.ts","../node_modules/@types/node/ts4.8/buffer.d.ts","../node_modules/@types/node/ts4.8/child_process.d.ts","../node_modules/@types/node/ts4.8/cluster.d.ts","../node_modules/@types/node/ts4.8/console.d.ts","../node_modules/@types/node/ts4.8/constants.d.ts","../node_modules/@types/node/ts4.8/crypto.d.ts","../node_modules/@types/node/ts4.8/dgram.d.ts","../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../node_modules/@types/node/ts4.8/dns.d.ts","../node_modules/@types/node/ts4.8/dns/promises.d.ts","../node_modules/@types/node/ts4.8/domain.d.ts","../node_modules/@types/node/ts4.8/dom-events.d.ts","../node_modules/@types/node/ts4.8/events.d.ts","../node_modules/@types/node/ts4.8/fs.d.ts","../node_modules/@types/node/ts4.8/fs/promises.d.ts","../node_modules/@types/node/ts4.8/http.d.ts","../node_modules/@types/node/ts4.8/http2.d.ts","../node_modules/@types/node/ts4.8/https.d.ts","../node_modules/@types/node/ts4.8/inspector.d.ts","../node_modules/@types/node/ts4.8/module.d.ts","../node_modules/@types/node/ts4.8/net.d.ts","../node_modules/@types/node/ts4.8/os.d.ts","../node_modules/@types/node/ts4.8/path.d.ts","../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../node_modules/@types/node/ts4.8/process.d.ts","../node_modules/@types/node/ts4.8/punycode.d.ts","../node_modules/@types/node/ts4.8/querystring.d.ts","../node_modules/@types/node/ts4.8/readline.d.ts","../node_modules/@types/node/ts4.8/readline/promises.d.ts","../node_modules/@types/node/ts4.8/repl.d.ts","../node_modules/@types/node/ts4.8/stream.d.ts","../node_modules/@types/node/ts4.8/stream/promises.d.ts","../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../node_modules/@types/node/ts4.8/stream/web.d.ts","../node_modules/@types/node/ts4.8/string_decoder.d.ts","../node_modules/@types/node/ts4.8/test.d.ts","../node_modules/@types/node/ts4.8/timers.d.ts","../node_modules/@types/node/ts4.8/timers/promises.d.ts","../node_modules/@types/node/ts4.8/tls.d.ts","../node_modules/@types/node/ts4.8/trace_events.d.ts","../node_modules/@types/node/ts4.8/tty.d.ts","../node_modules/@types/node/ts4.8/url.d.ts","../node_modules/@types/node/ts4.8/util.d.ts","../node_modules/@types/node/ts4.8/v8.d.ts","../node_modules/@types/node/ts4.8/vm.d.ts","../node_modules/@types/node/ts4.8/wasi.d.ts","../node_modules/@types/node/ts4.8/worker_threads.d.ts","../node_modules/@types/node/ts4.8/zlib.d.ts","../node_modules/@types/node/ts4.8/globals.global.d.ts","../node_modules/@types/node/ts4.8/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"3260e3386d9535b804205bdddb5618a9a27735bd22927f48ad54363abcd23d45","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","5e0b584983b80e389db30120f1eac5bf6e51d4974d34f48d6fc04a5d4b60f8ca","32727845ab5bd8a9ef3e4844c567c09f6d418fcf0f90d381c00652a6f23e7f6e","f572efaf802df1a14519a0e1217525d84e96bf70d0b3158e61c3e03a628dd43a",{"version":"47339283feea4e3d0b6d580c3787eb6a9bf5c50b224dfbf47048b2501347a142","affectsGlobalScope":true},"3f00324f263189b385c3a9383b1f4dae6237697bcf0801f96aa35c340512d79c","ec8997c2e5cea26befc76e7bf990750e96babb16977673a9ff3b5c0575d01e48",{"version":"ac566ad371d04b0c1a4e9303085f14385dd9cea96515646ca1a6a4bfb79c7968","signature":"22fea8c28752d1a841afd4b34f886b6ddd7701982943de4a92694a371824b818"},{"version":"e598311445ebe4378af1cb00abfb7222659a7851aaa3d9549c64628857ab4838","signature":"d9e590839d9b5259ea85c4b7b8abedd8459bfadad3aa2ab707df5f06d838a879"},{"version":"16bc0fd4adf6f83440a9f0401fc64bd45c73ca0e5e3efa7a3df152e884420ccd","signature":"f4c914bf76148b4feba712d9e6b2b33b52ee537448d9002e48faaadd12d8f1e9"},{"version":"b167cb984d4a63a547354f22c011fa36b8c6ca52081a705de5a1a32f89369b77","signature":"474a342b5d6ca2d7fddb0b6677fc762f732d49829c88be7a8bb01ab12231bf69"},{"version":"68f09543fa1964b7589e02e2ae23600a3fe1095bc779724631c1155d875cd095","signature":"7931acf2186d2590d9ab45126666c3c6978bfbc5d5cf3912c515893f2f3b81db"},{"version":"ad9cb996e3a752abbfa8ebfb0e601bf6eb7f3b3d8c17390c600a73b408238afa","signature":"d521080ce5075b637966ad9caca3ec81b81ae03f4fad43e3f5d312208561093c"},"7c9803e8b478726fc90dac32492eb1904cf2ddf6cacc9393a823a1f56c8de2b6","735f4251ea4b4790bcfa837d95e2128ca3259524e2b6f3b1d0c56a6edd5789ec","fbeb32592d935d0a8394e889bdd60dde93b35c3274a8823e2717bbe490086cc6","7e6eb742c70b49586e10458e8534ce581c9d22a9c9f70449ee4e8c5d7deddc89","312a2551e6cdcd53d3699f40ede6e682bdb17b1f15c6708f060fae2e29212bbd","2d0c888fee03ecc5d3395659bef30a1fb6a1851af29a28beddba1dbeccce2e3f","23b070999f9643c7d237483488008a8324f3e58c9710565bac5ce1251fb20e00","e537175b8599f39a69a7d60e93db9034a768ad9b5a05a44d5888b4c46eaa1366","82255fab04f4d85a1d6079cea054af60dc4912a23ff947161c9b34a230698f9c","dc593eba16c652364b441615164f1f5ac912493e7cb2693840a428308c1051b7","a461cc5ab62a829a65e0663387d8ebad9c15e7d4392ffbf971e8682313ad9384","6d00f9c09d48112240a2b56bfd2c7cec446f014d8c5c1b817d9df780f7cb1f65","7487f90ba023ddfdb3e4d68bc44ece8dfb9cb10823d2ef08ad76c052eb8a504a","1d018ec10663264ba121d22bb237fabf71d9147b949d69518bcb5770aa3a2f88","859334213ea02d45aec5b54ff1d54ef18b3a5ac715a52c0ef8a6ae75050b50a2","9cb6270351ef5ea1c6cbcf75097c63937f106f21ce46fe693482f46bc34bfb96","fb1192ef5c5db2eeac7f996bf882bd99062a742eba7d229519f8964d35f19423","46c0c38ca7829481d9f8989636eaecf3c85a48ce9f1467564cd14cc58eecc39d","aa212fd5fbc67d37391ed675ddbf279d777810aa3701b69f26b27f8cd6940f5b","a7070c25054200db28f04abf7e5829970f22870c50f4795abab0bec193c9cbb7","fbc73b8d844b5d4ca9b6f91cd1c3f8fc230dc79430016df3940c3b50d7743208","6f084acd88dd7c9e7a1c801e09597b3de7714898cfe98a6a4772c14ffeac1b0a","2ea4f3b7a09612b2510ba1699e0b7969b7e668345495d4efec4474143364bab8","fffd55ccb0e275d0cfe6aa05d95a42c0fcc6d0f749b30d7419bd5d08b2ca8fb9","79584f80c79a9c50842cf5486802d8e37652ab6b1a2f6241dfd97d7af52286ae","98e3cbe57ce44ac1c1af9dded0a70e070b4b733a7b2ee1ac4139b63b9cdda7e8","e297b69197175403a8333fa866a23edda557ebd405668117daba79467710951b","33ad481a4f005ca22db6c3e8e3dd24ac7175d7b24bc0bf167787e7ea0ca8c2c0","9a6d9544722b46204265a986841ce27fc47c99a6e9f567826412789179c26f24","895440dd2b4c65c4b904cebfff11b835aa037fccf835bd6c0e99a2da95b5d24d","5b6720800c5d5bf1402a0b78ef79a20e29b1521bbd8eb83989e640e7163e37b5","1be065122adefc5329252a7ee7d13bd480744049e1f57131e585b6c8763081f4","3ef0c952b7aa46d7ec44efc1f824377dd550bcf2f05e9f6eaa3bff52e0ab6630","068eaa781afecfa2b12f3f6fa90e6823315ae29237efd347264286fdcadbf2b9","4f3f090fa3b9300054f5ebef080c682c7c2c399024a16cb0d3b14b3e61b66bac","84c1a5494578c5affca53779468eff24fc912615128aaeba0443a7d084da1c81","d57106aed70ae121f2abbeafb903630c64b3d24ad708d331b5e39ee4154cdef2","317589f5460dfdb1386cd7feda7c57b03861c33c40f136da2239657ec9625028","755cb989f97ae212f7d67804513c0404e19d60085d50a2d821c1e7898622afb9","a73e2f83376a0533d2534cf39db9326f7b17e10258343d743dc8e4be9fa7d7e6","0104f554c856d43470d5143b76a858630948864dbb525ba503abf2495ea32d62","d2720cc47e5116280f94ea51b12443bdb6d34f6dbc2cc718eb22bc9fdf6d1c22","1c2088b528dbbfd94b68d0b391e5a753194beb4f816d01bcf45424a48490a3d8","1e9f7113fbfa4e026da90e21a0b8a0d2693ea17b396f840a35f763d00e52acd9","cc14dda6b48f2c3403ac82cbe03cb14769c11d9834fa7651d584f2c2194e568c","27955c2eada51f900146f6e08e98e7fc3c78b3c45299fa224d59751a2a67c2cf","fb9ba1c96f887d253a1cc6364e979ffea0c323945607f8c62b62dab15be4f0dd","eb3f968aec915281401fe9587625aaf032a5ded4d6e76cc79754572d638b711f","736a8b235bda37b5d1bb63730f2c149fc38ccd3e7f21e1ef27e3c136afce4ca4","b63b1bb2b9961efa84cb580dd9369838250b2d7dc26db0ae2396b75ec4df1b2c",{"version":"b90911de1515156ee23138731e27c3eba901c2390fa2caeb96350731050480d5","signature":"4a0dacea6d9687717d728fcaa64fd6c6135e01876920f0535da80b47058aa554"},{"version":"e17f07b028b14f80d6c625470844ec2f52f37efcd58f80dffc607fb8653cd4d0","signature":"7c9803e8b478726fc90dac32492eb1904cf2ddf6cacc9393a823a1f56c8de2b6"},{"version":"6fb2e60054648f522196c0bf8c154be32814cef9aaeff74a34b63b9ecc29c6bf","signature":"268255fe720a6ccc432b25021ac084c78a040eb586d3e3c6638d7ab602b52b47"},{"version":"d57081a43444d31f6c024c385473a217e0586eabd78dde612e45b121ae2e341f","signature":"d8058da97efb68e266376874bfaa454db214b7ac0bb35d3f4c6c640bb4925365"},{"version":"ccfb732194bf585afcd5bbe63b03fc42960ecfb6fba3385f6d15b552792dc8c7","signature":"6c8cc201f27dd1ed08909bdd67c27a0ec86a5599ad8ae9d7651bff923733140f"},{"version":"840ba1246f1c18bc4e405e6d6b13e6fd2684f5afb7106c5b629b65ed29889740","signature":"aa598e42a94a23cfc3aab39ddc3224722d0141b44486403203445749e953f8d7"},{"version":"cabd0d5b08b9df681c7d96ebb233547f3ff5afff1258fb4fd989c48cfa4b696d","signature":"0b46a5aa62769d95c500231b1c18bf8f75a79bb758ee37b1a212d4608abff3cc"},{"version":"801d15dc62fba78b6eba681a278e1513fae40bc2c1cc63b654689993027653af","signature":"f34e4769145e2478659e5fb416f7daa3329137c2d83ba78bb657582bdac5f50b"},{"version":"9aa03437de8e8312f9c38664eb81758f4aef3116c81fb0ba24502e079eaf531d","signature":"6abcd0c4ef723adaa273858de49546a5270b1498bec2329a7a7611a15b2778f2"},{"version":"f4168dc5ebefd765ab0cea0fae26fa261460cf9aef27c67dc5593ac815d385fb","signature":"697628e31760e18943ae773536abbf4c49c0a9d7b6bd9f606cb00454b756e06d"},{"version":"f1bd24334e503e833a2cecf306de16ba4c5cf2fefd6fda9d57c19d838f6cb8ec","signature":"35d0dad48d46ff699954fd32afe947a9191acfd3a0dbf1d9d75f4f8785d41cc3"},{"version":"e750f42ac121eda2a3f4658236b6381104bedf67830718fcc082e9a53e810c3c","signature":"ead8430d5d3e1d831233d97a5b7a19eb5b0e819fc86e30fdd19a3b7c62e37802"},{"version":"12e362faf2273b145dea47bfbf23ad64dfe13b00ae8952eb1ca00de8f8c6fff8","signature":"706318ef90b8f40fa8539e0b0e5c03aa76ed838366d408cb9418ca7f3d3e58dc"},{"version":"4168c3a7fe60b0621398ad39d77b926a19bf46949db420b60a1beb629a4c9591","signature":"15a64c85ff626de1630c32a968b0e6ba93831b9d66d6e5a8c7ab4d48ab5305ea"},{"version":"e5e2075207ac681aaf89be8ab88f96993365751bef2dc415ee4462530e9b8826","signature":"5e3407e9ef1ffcd6569a77677515f32c4b4811f249ffbfb57bf05931dab382ff"},{"version":"58b36cc8aa8df872016ddc8269da9e1d09f894e0260baa6d576e55a6eebdfa4a","signature":"d7e67bbc423e3fe460466cc7e84fabf003d0756d9386d894062e6fb09f53e640"},{"version":"31b8e49f0e99e1470a80b9e273fac5700c56fe8d234059cd1bb2ad21b820b0b9","signature":"85bb21606bafbcba87c9fc4c9b64fcc55e1ed9f625bfdcfecb013a0ccce0835f"},{"version":"91e881ba6c6c9dea00855969f278cf4a0a182eb7a0014643cd702d4b6c2d823e","signature":"f8e4d7dd0140c412232ec41e3d92bd3e52eaa65c040d404313d3119693f4f9d7"},{"version":"093412a58431807d86f292735937204c5733c2b33cff45ca392dc2e1b0d710a1","signature":"36958eeed010fd5dbd61070cb9f1dcf65951f523cf00f9fe4f057e072cffcb0c"},{"version":"25c502fca47c551749ae8050e73c7e6346ea5e32b1fef84f6d6d461e9a872ce6","signature":"f789f70171e3c0b4ce8fee345c5b6fd6cb2e39835db65da25f1c218ce5970c4d"},{"version":"2c0a55550a7c81b013bb87470a726d5adcb38caa793853b285b59a1e9dbcae3c","signature":"047c892f5ed530ba1388c4bb4aa1376987caa69ea3b6a09accff3b3831bb7ea4"},{"version":"082479941b759c52dd1ec4c86e79cdd98221878a3c4bff7866b9d297f093347b","signature":"a1dbb77028ab261d8f1e556f050161f358f3e14410c94cfeaefc6ecb0aef9d8b"},{"version":"cb2868c73b78dd4ab29af567a3b7a890cd73756ac9ea11f4b1523dbabfb1b475","signature":"7bd245389f77c48754e28c66782ac10d36438dda660d7f61efdf2216b4a3ff29"},{"version":"fa6052471f16ff21b4339723cf5e59aeae57103695fe4ae901c441f690bf4de4","signature":"a2f2dda048d4e932f639ed87095a550e9d379d029c0cae7145b960eb207f39a8"},{"version":"9e731ea19fdd5786c9f684d93797bc4431fcff1774294fc1acf28b8c05a81fa9","signature":"7e75d7603e00629abab8924db82fb0e97f7c3b3d31875166c1350e0584eaea10"},{"version":"642f386f429d3631458f0dd5dfebe118499f4073a694d64b251b009705a2b971","signature":"f6a98f2d4855295373650e1589681eaecf3bcf1a09cfa0504889f8112e53a97e"},{"version":"d9bdf915e3ee8d431158938340ab2f10da2a4e23cdde79c85c65403fd7ecb17a","signature":"e6dc128216b2de5c61f00de0344b23976d0d993896e0b70346ce2d29b4754b6e"},{"version":"a5b7dce6e9c4a136d1b80dbaf4350dc29605b6a47c14a8be1d174b5cad5b156d","signature":"d9684409c8eb8534ade61e5fa4ef023a669287f23eb693fbfb68bbba5b3b26a6"},{"version":"21993430db8282163ba7887d0aacb63061a34f4d8caf9319a0ed6df13f34c077","signature":"3653b6bc4a1f7cd5009ef78fa566ed5e07503a6a7ce7d85396fa2cc79c9a7b56"},{"version":"7abbca158c2204fb051b47d3c27c711700652740a67b9d6cd02b3a2f1dc4188e","signature":"de1d2d1e4b674d4f0e0099db99973d48ffeee46d669d369ce681427608c79621"},{"version":"083eb878d386d0b8ea51cb45454bc9ae37129e9679efac21349507279327a75a","signature":"c6113855c06c16f77ad43ddb21272c512fec264feac915087ee6210fdf4b2833"},{"version":"5c0e35a2fcd143623739fc9a075e00b409c259b273afd17be72da34892de9718","signature":"286f241d68cc0cce828d17c33b24df5a52c817ca34ae56f9fb43365e8f35baa7"},{"version":"10200ed9e3be3ffedbc198f0a2b7594865a016dce493bb7acb331759ead3d6f4","signature":"dac94bd2b0b75bc1aa2883937aa946b6736a3bdebb88cec9e1ec098f9c1cde11"},{"version":"4efdc2ea4a22c2ec266cbd13c42dc0bb8965bdc2c7d6a5202fca48013e42cd0c","signature":"441a7dd1f6a3e908d08de6d57c14679d199699ae59ec4b2c6f6909ee4e7a01dd"},{"version":"2ee14a353d86a1d5afd0bcef4dc52c6784a7c22caf49232a111d58fece0c5364","signature":"5b6af1305a4c918d33730d4c9043d4075b36f9ca51b6fdf5ec49c4874e9d75ce"},{"version":"443026f892363dacd3c6e5b8db4b2d8f5e00c0158413f56b4ea0fd3bd66cee59","signature":"465498afd1f73b5c21176540a7fc8049c167dfc38e55a3c6b2045c2ae2518ff6"},{"version":"6fec1803941aeba218d4fd7349c11518890c5327277ed3fc6a693d360c4a7aa5","signature":"dc252d73474d45ded4886dfd27affbeb7f1d23208a5b6838dbccded1e379c213"},{"version":"61b024f06c15085b253732fbfa5f8da00eebd68e2142dd20b8d0e2026a260190","signature":"76196e924bfd1c52d90cd14b733dc39295f91d2fe6a1af1d19d8b4f3ecc46200"},{"version":"44be52888d4de8676e0e119860f32abb7c8d91fe66890f734a091b5946e5fd69","signature":"2371428db20903bd7351600dead95f6deda4c398b826becd7dc4accb39a6a295"},{"version":"16f8786ebdc732eafeaf64df44d61c6f5c211009b17853562566997cc2fe96ba","signature":"26f328b93796ec08dfc19ee8196e18518b658a87fe31e3630ef7079722203cb2"},{"version":"70082ebcdffb51a4f232d04e7a72fa796d6f058e0a5ffaa81d51b2bdaa4dcacd","signature":"56544ec521b04c8619ecbb1fc134cd36e27f3fc52cbac2c6d0d66caa5e2bcf1c"},{"version":"f683588eb6f67d093e22010f727767dc12ccf947c4fcd56cfbf042e8b396dfc8","signature":"c89e2d183a3683530fc7c5fd94368e05bf62438940c1da5e3b73c71b00b1cbce"},{"version":"19a1a3e1f5321005e623b2ae3665f2968a7284f33f485e611d11f8c127fd6b46","signature":"a917c20caa02cf7636797e7872d5d5fd0355770e67808dc8c0525154fe5df041"},{"version":"c694cc36fdfeda4e7ad3ec79875a395d94c0e983469f6f8b1f747ef24674f4e0","signature":"708167176f8be143ef9e9adb420b236bd96b640ac8718a5d35c03248db221029"},{"version":"6ab351e24f0a799d04759e594e23875777e4a2adfeb494e1a0cba5e391da07c9","signature":"3bf19102eebc41e4a232a2434d49019f85df851e560191bb9657d043ff35d41b"},{"version":"4a0cfb0d136c13a6f5df928908838752f1f49ec89974acc27d69c3e93cbd5e50","signature":"e89d36d87b8f081e39accdb95e7d8b1518f56ca3250a52ff198f7490690232b6"},{"version":"8f6014089f1ced34e7dc99feb6dd2787c9417ab8ba52814e75d1644e87452a22","signature":"be765d418daf62dba7554d006a121edc3313c13efb27b6cde71db1dbcc666aa9"},{"version":"78526f514c7d451d6473767d60135afc28b293a43f52f4bd63c9c8907539f459","signature":"f89afc38ed75b7dcc5a7f22aba7003eaac55766cf16f059034f47f0521353f30"},{"version":"f0f337daea9b8ef0a90c72de16b4127cc5b923848e8517a478acfc2000dfc5e6","signature":"b97dd1e64aa5e3342df88a0a89ffd5ac3dbae9784497cafff8c7bf2f9602ac53"},{"version":"dc4bb7cb57b62e8c0cc8506ea225432b72440a9aeda2ecc566e7a94efb362c08","signature":"d72955998ba844deea604724a13e2fc50416bedf6a3d07a4dcee02e55c227a03"},{"version":"07dbbd0e014a7d454ef6eb574d20685c7335c48989f1b10c0efd0a69589153a1","signature":"70b8d528a3e6742ade7bc44e018784fa591a0f7bd7f675f183efb72e6f7463ee"},{"version":"16b0e97d18dee16d5ca821a0fdefe07047a58e994e8d15651a091f4b76299b00","signature":"c2b78ad093c430807ae5afa6c56a12577970453c0d23a5a39249d4c9f4f04c9a"},{"version":"024dbe04ab741c6bb1e4d2882cea3a3510d32d22af7da9783c10f570b43792c7","signature":"5d0d919a448daeb3f24ea39e50dd38c948063f4e2dffe9d8e3c9539868d96eea"},{"version":"156bbde259e9d75f624ad232b8ba45c779a02641517a5942f2adb37026e8cba8","signature":"1366457bfa6fe9f6b8467010221ad246f31384669e9f50c6fabffcdde222ef96"},{"version":"5547b082896f113bbe4c189a7f5aba61443bef27fdefc8874739478da653f39c","signature":"b1aac86d982a813a1aa943732dbd6449a660c77863576ab3b60bf1fcfc3aed93"},{"version":"e73439f64bd79386e8f9430d06a32f5d4e778cbf3b0bbf8690eda2341d164b94","signature":"dcdb99c4f0e5089bcd1d681961918d8486b95e24ba46f353cd900be758051e3c"},{"version":"a78bd6cd5c482c963b576c1305f10da2d3300640eb7b4f79a37ad89e47379ebc","signature":"d9b61d07c211be80ca2e4733c50e376b1fc616230586cde831dcb9799d64bb89"},{"version":"3934937d608ace18997a7cdab19bf6eed59c2a30e63699c8815030d869a8a46d","signature":"2d56ff0cb4d0167567312f89fa1e6cadc785f2188266ac9429e5c0f27e73699b"},{"version":"3f878b9e4454fb63f4a7c6bc05c998cab5392fc6968a8231537b2bdf1d21eb11","signature":"302280c749ac14a35a70667829db1fb7118cc298f4a9c98dbde1a69899158aeb"},{"version":"0ae539fcb9305ceed033478dad6057ca783cd05639a5ffec46236b181329b73d","signature":"fb2248233522d52bc64ce2a6cbbb7a48063c27fe937586687f86ec9e59f356be"},{"version":"b9181bea4a29329594d5c5a53bec78507fcc67ad0c5afa2a580dc51d6f19a4f7","signature":"4f7d54c603949113f45505330caae6f41e8dbb59841d4ae20b42307dc4579835"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","daece0d85f8783595463f509f7d82b03b2c210cc064cc793096b5f9c73a6db43","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"bd27e23daf177808fc4b00c86f7d67d64dc42bbc3c855ea41bfed7a529150a1d","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","30c2ec6abf6aaa60eb4f32fb1235531506b7961c6d1bdc7430711aec8fd85295","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"603df4e91a0c2fd815c6619927468373fb00b6c13066334982ee684f5c7d40b2","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"527e6e7c1e60184879fe97517f0d51dbfab72c4625cef50179f27f46d7fd69a1","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"emitDeclarationOnly":false,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":1,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictPropertyInitialization":false,"target":99},"fileIdsList":[[43,245],[43,49,50,51,52,53,54,55,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,216,245],[43,49,133,245],[43,105,131,245],[43,131,245],[43,105,107,131,245],[43,49,132,133,245],[43,49,50,133,245],[43,49,131,245],[43,107,131,245],[43,49,132,245],[43,49,50,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,245],[43,107,131,132,163,164,245],[43,49,165,245],[43,165,245],[48,245],[167,245],[202,245],[203,208,236,245],[204,215,216,223,233,244,245],[204,205,215,223,245],[206,245],[207,208,216,224,245],[208,233,241,245],[209,211,215,223,245],[210,245],[211,212,245],[215,245],[213,215,245],[215,216,217,233,244,245],[215,216,217,230,233,236,245],[200,245,249],[245],[211,215,218,223,233,244,245],[215,216,218,219,223,233,241,244,245],[218,220,233,241,244,245],[167,168,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],[215,221,245],[222,244,245,249],[211,215,223,233,245],[224,245],[225,245],[202,226,245],[227,243,245,249],[228,245],[229,245],[215,230,231,245],[230,232,245,247],[203,215,233,234,235,236,245],[203,233,235,245],[233,234,245],[236,245],[237,245],[202,233,245],[215,239,240,245],[239,240,245],[208,223,233,241,245],[242,245],[223,243,245],[203,218,229,244,245],[208,245],[233,245,246],[222,245,247],[245,248],[203,208,215,217,226,233,244,245,247,249],[233,245,250],[59,245],[59,60,61,62,63,245],[65,66,245],[67,245],[65,66,67,245],[100,101,245],[102,245],[100,101,102,245],[74,245],[69,70,71,72,73,245],[69,70,71,72,73,74,245],[58,64,68,75,81,85,87,90,94,99,103,245],[82,83,84,245],[82,83,245],[84,245],[76,77,78,79,80,245],[80,245],[76,77,78,79,245],[91,92,93,245],[91,92,245],[93,245],[95,96,97,98,245],[95,96,97,245],[98,245],[57,245],[88,89,245],[88,245],[89,245],[86,245],[56,104,245],[46,245],[44,45,204,215,216,233,245],[47,245],[177,181,244,245],[177,233,244,245],[172,245],[174,177,241,244,245],[223,241,245],[245,252],[172,245,252],[174,177,223,244,245],[169,170,173,176,203,215,233,244,245],[169,175,245],[173,177,203,236,244,245,252],[203,245,252],[193,203,245,252],[171,172,245,252],[177,245],[171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,197,198,199,245],[177,184,185,245],[175,177,185,186,245],[176,245],[169,172,177,245],[177,181,185,186,245],[181,245],[175,177,180,244,245],[169,174,175,177,181,184,245],[203,233,245],[172,177,193,203,245,249,252],[46,49,51,52,53,54,55,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],[49,133],[46,131],[131],[49,131],[49],[49,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[107,131,132,163,164],[49,165],[165]],"referencedMap":[[107,1],[131,2],[132,1],[152,3],[109,4],[142,3],[54,5],[118,6],[130,4],[162,7],[117,6],[153,3],[147,3],[123,5],[149,3],[124,5],[53,5],[145,3],[116,5],[140,3],[139,3],[120,4],[119,6],[158,3],[161,3],[128,4],[127,5],[155,3],[129,6],[157,3],[156,3],[122,5],[146,3],[121,5],[112,5],[144,8],[114,5],[135,3],[150,3],[125,5],[148,3],[126,5],[154,3],[55,5],[143,3],[51,9],[113,5],[136,7],[115,5],[134,7],[52,5],[141,3],[108,10],[137,7],[111,5],[138,3],[133,11],[163,12],[110,4],[106,4],[160,3],[159,8],[151,3],[165,13],[164,14],[166,15],[49,16],[167,17],[168,17],[202,18],[203,19],[204,20],[205,21],[206,22],[207,23],[208,24],[209,25],[210,26],[211,27],[212,27],[214,28],[213,29],[215,28],[216,30],[217,31],[201,32],[251,33],[218,34],[219,35],[220,36],[252,37],[221,38],[222,39],[223,40],[224,41],[225,42],[226,43],[227,44],[228,45],[229,46],[230,47],[231,47],[232,48],[233,49],[235,50],[234,51],[236,52],[237,53],[238,54],[239,55],[240,56],[241,57],[242,58],[243,59],[244,60],[245,61],[246,62],[247,63],[248,64],[249,65],[250,66],[59,33],[63,67],[64,68],[62,67],[60,67],[61,67],[67,69],[65,70],[66,70],[68,71],[102,72],[100,73],[101,73],[103,74],[71,75],[73,75],[74,76],[72,75],[70,75],[69,75],[75,77],[104,78],[85,79],[84,80],[82,81],[83,81],[81,82],[78,83],[80,84],[79,83],[77,83],[76,83],[94,85],[93,86],[91,87],[92,87],[99,88],[98,89],[95,90],[96,90],[97,90],[58,91],[57,33],[90,92],[89,93],[88,94],[87,95],[86,33],[56,33],[105,96],[44,33],[45,97],[46,98],[48,99],[47,97],[43,33],[8,33],[9,33],[11,33],[10,33],[2,33],[12,33],[13,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[3,33],[4,33],[23,33],[20,33],[21,33],[22,33],[24,33],[25,33],[26,33],[5,33],[27,33],[28,33],[29,33],[30,33],[6,33],[31,33],[32,33],[33,33],[34,33],[7,33],[35,33],[40,33],[41,33],[36,33],[37,33],[38,33],[39,33],[1,33],[42,33],[184,100],[191,101],[183,100],[198,102],[175,103],[174,104],[197,105],[192,106],[195,107],[177,108],[176,109],[172,110],[171,111],[194,112],[173,113],[178,114],[179,33],[182,114],[169,33],[200,115],[199,114],[186,116],[187,117],[189,118],[185,119],[188,120],[193,105],[180,121],[181,122],[190,123],[170,124],[196,125],[50,1]],"exportedModulesMap":[[131,126],[152,127],[109,128],[142,127],[54,128],[118,128],[130,128],[162,127],[117,128],[153,127],[147,127],[123,129],[149,127],[124,129],[53,128],[145,127],[116,129],[140,127],[139,127],[120,128],[119,128],[158,127],[161,127],[128,128],[127,128],[155,127],[129,128],[157,127],[156,127],[122,129],[146,127],[121,129],[112,128],[144,127],[114,128],[135,127],[150,127],[125,129],[148,127],[126,128],[154,127],[55,128],[143,127],[51,130],[113,128],[136,127],[115,128],[134,127],[52,128],[141,127],[108,128],[137,127],[111,128],[138,127],[133,131],[163,132],[110,128],[106,128],[160,127],[159,127],[151,127],[165,133],[164,134],[166,135],[49,16],[167,17],[168,17],[202,18],[203,19],[204,20],[205,21],[206,22],[207,23],[208,24],[209,25],[210,26],[211,27],[212,27],[214,28],[213,29],[215,28],[216,30],[217,31],[201,32],[251,33],[218,34],[219,35],[220,36],[252,37],[221,38],[222,39],[223,40],[224,41],[225,42],[226,43],[227,44],[228,45],[229,46],[230,47],[231,47],[232,48],[233,49],[235,50],[234,51],[236,52],[237,53],[238,54],[239,55],[240,56],[241,57],[242,58],[243,59],[244,60],[245,61],[246,62],[247,63],[248,64],[249,65],[250,66],[59,33],[63,67],[64,68],[62,67],[60,67],[61,67],[67,69],[65,70],[66,70],[68,71],[102,72],[100,73],[101,73],[103,74],[71,75],[73,75],[74,76],[72,75],[70,75],[69,75],[75,77],[104,78],[85,79],[84,80],[82,81],[83,81],[81,82],[78,83],[80,84],[79,83],[77,83],[76,83],[94,85],[93,86],[91,87],[92,87],[99,88],[98,89],[95,90],[96,90],[97,90],[58,91],[57,33],[90,92],[89,93],[88,94],[87,95],[86,33],[56,33],[105,96],[44,33],[45,97],[46,98],[48,99],[47,97],[43,33],[8,33],[9,33],[11,33],[10,33],[2,33],[12,33],[13,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[3,33],[4,33],[23,33],[20,33],[21,33],[22,33],[24,33],[25,33],[26,33],[5,33],[27,33],[28,33],[29,33],[30,33],[6,33],[31,33],[32,33],[33,33],[34,33],[7,33],[35,33],[40,33],[41,33],[36,33],[37,33],[38,33],[39,33],[1,33],[42,33],[184,100],[191,101],[183,100],[198,102],[175,103],[174,104],[197,105],[192,106],[195,107],[177,108],[176,109],[172,110],[171,111],[194,112],[173,113],[178,114],[179,33],[182,114],[169,33],[200,115],[199,114],[186,116],[187,117],[189,118],[185,119],[188,120],[193,105],[180,121],[181,122],[190,123],[170,124],[196,125]],"semanticDiagnosticsPerFile":[107,131,132,152,109,142,54,118,130,162,117,153,147,123,149,124,53,145,116,140,139,120,119,158,161,128,127,155,129,157,156,122,146,121,112,144,114,135,150,125,148,126,154,55,143,51,113,136,115,134,52,141,108,137,111,138,133,163,110,106,160,159,151,165,164,166,49,167,168,202,203,204,205,206,207,208,209,210,211,212,214,213,215,216,217,201,251,218,219,220,252,221,222,223,224,225,226,227,228,229,230,231,232,233,235,234,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,59,63,64,62,60,61,67,65,66,68,102,100,101,103,71,73,74,72,70,69,75,104,85,84,82,83,81,78,80,79,77,76,94,93,91,92,99,98,95,96,97,58,57,90,89,88,87,86,56,105,44,45,46,48,47,43,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,35,40,41,36,37,38,39,1,42,184,191,183,198,175,174,197,192,195,177,176,172,171,194,173,178,179,182,169,200,199,186,187,189,185,188,193,180,181,190,170,196,50],"latestChangedDtsFile":"./lib/index.d.ts"},"version":"4.8.3"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/tslib/tslib.d.ts","../node_modules/playwright-core/types/protocol.d.ts","../node_modules/playwright-core/types/structs.d.ts","../node_modules/playwright-core/types/types.d.ts","../node_modules/playwright/types/test.d.ts","../node_modules/playwright/test.d.ts","../node_modules/@playwright/test/index.d.ts","../umbraco.config.ts","../lib/helpers/ReportHelper.ts","../lib/helpers/TelemetryDataApiHelper.ts","../lib/helpers/LanguageApiHelper.ts","../lib/helpers/DictionaryApiHelper.ts","../lib/helpers/RelationTypeApiHelper.ts","../node_modules/@umbraco/json-models-builders/dist/lib/helpers/AliasHelper.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/packages/packageBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/packages/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/dataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/sliderDataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/textAreaDataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/numericDataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/datePickerDataTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/dataTypes/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/document/documentValueBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/document/documentVariantBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/document/documentBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/document/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypePropertyBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeContainerBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeAllowedDocumentTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeCompositionBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeAllowedTemplateBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/documentTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentTypes/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypePropertyBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypeContainerBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypeAllowedMediaTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypeCompositionBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/mediaTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/mediaTypes/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/media/mediaValueBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/media/mediaVariantBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/media/mediaBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/media/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/users/userBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/users/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/userGroups/userGroupPermissionBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/userGroups/userGroupBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/userGroups/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/member/memberValueBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/member/memberVariantBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/member/memberBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/member/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/memberTypeCompositionBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/memberTypeContainerBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/memberTypePropertyBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/memberTypeBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/memberTypes/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentBlueprints/documentBlueprintsValueBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentBlueprints/documentBlueprintsVariantBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentBlueprints/documentBlueprintsBuilder.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/documentBlueprints/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/builders/index.d.ts","../node_modules/@umbraco/json-models-builders/dist/lib/index.d.ts","../lib/helpers/UserGroupApiHelper.ts","../lib/helpers/AliasHelper.ts","../lib/helpers/TemplateApiHelper.ts","../lib/helpers/DataTypeApiHelper.ts","../lib/helpers/UserApiHelper.ts","../lib/helpers/TemporaryFileApiHelper.ts","../lib/helpers/PackageApiHelper.ts","../lib/helpers/ScriptApiHelper.ts","../lib/helpers/PartialViewApiHelper.ts","../lib/helpers/StylesheetApiHelper.ts","../lib/helpers/LogViewerApiHelper.ts","../lib/helpers/DocumentTypeApiHelper.ts","../lib/helpers/DocumentApiHelper.ts","../lib/helpers/MediaTypeApiHelper.ts","../lib/helpers/MediaApiHelper.ts","../lib/helpers/ObjectTypesApiHelper.ts","../lib/helpers/ModelsBuilderApiHelper.ts","../lib/helpers/HealthCheckApiHelper.ts","../lib/helpers/IndexerApiHelper.ts","../lib/helpers/PublishedCacheApiHelper.ts","../lib/helpers/RedirectManagementApiHelper.ts","../lib/helpers/MemberGroupApiHelper.ts","../lib/helpers/MemberApiHelper.ts","../lib/helpers/MemberTypeApiHelper.ts","../lib/helpers/DocumentBlueprintApiHelper.ts","../lib/helpers/ApiHelpers.ts","../lib/helpers/ConstantHelper.ts","../lib/helpers/UiBaseLocators.ts","../lib/helpers/StylesheetUiHelper.ts","../lib/helpers/PartialViewUiHelper.ts","../lib/helpers/ScriptUiHelper.ts","../lib/helpers/TemplateUiHelper.ts","../lib/helpers/TranslationUiHelper.ts","../lib/helpers/LoginUiHelper.ts","../lib/helpers/LogViewerUiHelper.ts","../lib/helpers/TelemetryDataUiHelper.ts","../lib/helpers/DataTypeUiHelper.ts","../lib/helpers/RelationTypeUiHelper.ts","../lib/helpers/PackageUiHelper.ts","../lib/helpers/LanguageUiHelper.ts","../lib/helpers/ModelsBuilderUiHelper.ts","../lib/helpers/ExamineManagementUiHelper.ts","../lib/helpers/PublishedStatusUiHelper.ts","../lib/helpers/HealthCheckUiHelper.ts","../lib/helpers/ProfilingUiHelper.ts","../lib/helpers/WelcomeDashboardUiHelper.ts","../lib/helpers/ContentUiHelper.ts","../lib/helpers/DocumentTypeUiHelper.ts","../lib/helpers/RedirectManagementUiHelper.ts","../lib/helpers/MemberGroupUiHelper.ts","../lib/helpers/MemberUiHelper.ts","../lib/helpers/MemberTypeUiHelper.ts","../lib/helpers/MediaTypeUiHelper.ts","../lib/helpers/UserUiHelper.ts","../lib/helpers/UserGroupUiHelper.ts","../lib/helpers/MediaUiHelper.ts","../lib/helpers/DocumentBlueprintUiHelper.ts","../lib/helpers/UiHelpers.ts","../lib/helpers/testExtension.ts","../lib/helpers/index.ts","../lib/index.ts","../node_modules/@types/node/ts4.8/assert.d.ts","../node_modules/@types/node/ts4.8/assert/strict.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/ts4.8/globals.d.ts","../node_modules/@types/node/ts4.8/async_hooks.d.ts","../node_modules/@types/node/ts4.8/buffer.d.ts","../node_modules/@types/node/ts4.8/child_process.d.ts","../node_modules/@types/node/ts4.8/cluster.d.ts","../node_modules/@types/node/ts4.8/console.d.ts","../node_modules/@types/node/ts4.8/constants.d.ts","../node_modules/@types/node/ts4.8/crypto.d.ts","../node_modules/@types/node/ts4.8/dgram.d.ts","../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../node_modules/@types/node/ts4.8/dns.d.ts","../node_modules/@types/node/ts4.8/dns/promises.d.ts","../node_modules/@types/node/ts4.8/domain.d.ts","../node_modules/@types/node/ts4.8/dom-events.d.ts","../node_modules/@types/node/ts4.8/events.d.ts","../node_modules/@types/node/ts4.8/fs.d.ts","../node_modules/@types/node/ts4.8/fs/promises.d.ts","../node_modules/@types/node/ts4.8/http.d.ts","../node_modules/@types/node/ts4.8/http2.d.ts","../node_modules/@types/node/ts4.8/https.d.ts","../node_modules/@types/node/ts4.8/inspector.d.ts","../node_modules/@types/node/ts4.8/module.d.ts","../node_modules/@types/node/ts4.8/net.d.ts","../node_modules/@types/node/ts4.8/os.d.ts","../node_modules/@types/node/ts4.8/path.d.ts","../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../node_modules/@types/node/ts4.8/process.d.ts","../node_modules/@types/node/ts4.8/punycode.d.ts","../node_modules/@types/node/ts4.8/querystring.d.ts","../node_modules/@types/node/ts4.8/readline.d.ts","../node_modules/@types/node/ts4.8/readline/promises.d.ts","../node_modules/@types/node/ts4.8/repl.d.ts","../node_modules/@types/node/ts4.8/stream.d.ts","../node_modules/@types/node/ts4.8/stream/promises.d.ts","../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../node_modules/@types/node/ts4.8/stream/web.d.ts","../node_modules/@types/node/ts4.8/string_decoder.d.ts","../node_modules/@types/node/ts4.8/test.d.ts","../node_modules/@types/node/ts4.8/timers.d.ts","../node_modules/@types/node/ts4.8/timers/promises.d.ts","../node_modules/@types/node/ts4.8/tls.d.ts","../node_modules/@types/node/ts4.8/trace_events.d.ts","../node_modules/@types/node/ts4.8/tty.d.ts","../node_modules/@types/node/ts4.8/url.d.ts","../node_modules/@types/node/ts4.8/util.d.ts","../node_modules/@types/node/ts4.8/v8.d.ts","../node_modules/@types/node/ts4.8/vm.d.ts","../node_modules/@types/node/ts4.8/wasi.d.ts","../node_modules/@types/node/ts4.8/worker_threads.d.ts","../node_modules/@types/node/ts4.8/zlib.d.ts","../node_modules/@types/node/ts4.8/globals.global.d.ts","../node_modules/@types/node/ts4.8/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"3260e3386d9535b804205bdddb5618a9a27735bd22927f48ad54363abcd23d45","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","5e0b584983b80e389db30120f1eac5bf6e51d4974d34f48d6fc04a5d4b60f8ca","32727845ab5bd8a9ef3e4844c567c09f6d418fcf0f90d381c00652a6f23e7f6e","f572efaf802df1a14519a0e1217525d84e96bf70d0b3158e61c3e03a628dd43a",{"version":"47339283feea4e3d0b6d580c3787eb6a9bf5c50b224dfbf47048b2501347a142","affectsGlobalScope":true},"3f00324f263189b385c3a9383b1f4dae6237697bcf0801f96aa35c340512d79c","ec8997c2e5cea26befc76e7bf990750e96babb16977673a9ff3b5c0575d01e48",{"version":"ac566ad371d04b0c1a4e9303085f14385dd9cea96515646ca1a6a4bfb79c7968","signature":"22fea8c28752d1a841afd4b34f886b6ddd7701982943de4a92694a371824b818"},{"version":"e598311445ebe4378af1cb00abfb7222659a7851aaa3d9549c64628857ab4838","signature":"d9e590839d9b5259ea85c4b7b8abedd8459bfadad3aa2ab707df5f06d838a879"},{"version":"16bc0fd4adf6f83440a9f0401fc64bd45c73ca0e5e3efa7a3df152e884420ccd","signature":"f4c914bf76148b4feba712d9e6b2b33b52ee537448d9002e48faaadd12d8f1e9"},{"version":"b167cb984d4a63a547354f22c011fa36b8c6ca52081a705de5a1a32f89369b77","signature":"474a342b5d6ca2d7fddb0b6677fc762f732d49829c88be7a8bb01ab12231bf69"},{"version":"68f09543fa1964b7589e02e2ae23600a3fe1095bc779724631c1155d875cd095","signature":"7931acf2186d2590d9ab45126666c3c6978bfbc5d5cf3912c515893f2f3b81db"},{"version":"ad9cb996e3a752abbfa8ebfb0e601bf6eb7f3b3d8c17390c600a73b408238afa","signature":"d521080ce5075b637966ad9caca3ec81b81ae03f4fad43e3f5d312208561093c"},"7c9803e8b478726fc90dac32492eb1904cf2ddf6cacc9393a823a1f56c8de2b6","735f4251ea4b4790bcfa837d95e2128ca3259524e2b6f3b1d0c56a6edd5789ec","fbeb32592d935d0a8394e889bdd60dde93b35c3274a8823e2717bbe490086cc6","7e6eb742c70b49586e10458e8534ce581c9d22a9c9f70449ee4e8c5d7deddc89","312a2551e6cdcd53d3699f40ede6e682bdb17b1f15c6708f060fae2e29212bbd","2d0c888fee03ecc5d3395659bef30a1fb6a1851af29a28beddba1dbeccce2e3f","23b070999f9643c7d237483488008a8324f3e58c9710565bac5ce1251fb20e00","e537175b8599f39a69a7d60e93db9034a768ad9b5a05a44d5888b4c46eaa1366","82255fab04f4d85a1d6079cea054af60dc4912a23ff947161c9b34a230698f9c","dc593eba16c652364b441615164f1f5ac912493e7cb2693840a428308c1051b7","a461cc5ab62a829a65e0663387d8ebad9c15e7d4392ffbf971e8682313ad9384","6d00f9c09d48112240a2b56bfd2c7cec446f014d8c5c1b817d9df780f7cb1f65","7487f90ba023ddfdb3e4d68bc44ece8dfb9cb10823d2ef08ad76c052eb8a504a","1d018ec10663264ba121d22bb237fabf71d9147b949d69518bcb5770aa3a2f88","859334213ea02d45aec5b54ff1d54ef18b3a5ac715a52c0ef8a6ae75050b50a2","9cb6270351ef5ea1c6cbcf75097c63937f106f21ce46fe693482f46bc34bfb96","fb1192ef5c5db2eeac7f996bf882bd99062a742eba7d229519f8964d35f19423","46c0c38ca7829481d9f8989636eaecf3c85a48ce9f1467564cd14cc58eecc39d","aa212fd5fbc67d37391ed675ddbf279d777810aa3701b69f26b27f8cd6940f5b","a7070c25054200db28f04abf7e5829970f22870c50f4795abab0bec193c9cbb7","fbc73b8d844b5d4ca9b6f91cd1c3f8fc230dc79430016df3940c3b50d7743208","6f084acd88dd7c9e7a1c801e09597b3de7714898cfe98a6a4772c14ffeac1b0a","2ea4f3b7a09612b2510ba1699e0b7969b7e668345495d4efec4474143364bab8","fffd55ccb0e275d0cfe6aa05d95a42c0fcc6d0f749b30d7419bd5d08b2ca8fb9","79584f80c79a9c50842cf5486802d8e37652ab6b1a2f6241dfd97d7af52286ae","98e3cbe57ce44ac1c1af9dded0a70e070b4b733a7b2ee1ac4139b63b9cdda7e8","0434be58b83aa08b37601ddc9fe38efb5a95e4fce2c1d577c768288eea7ad580","33ad481a4f005ca22db6c3e8e3dd24ac7175d7b24bc0bf167787e7ea0ca8c2c0","332b1265e3c9166cc350ecb5881d3ef38bec57c2215f24928f6b78b6243f2aad","895440dd2b4c65c4b904cebfff11b835aa037fccf835bd6c0e99a2da95b5d24d","5eeb407ada49af95dd06c0055fff5554c4d4dcc3559f79099797bc0c911aa817","1be065122adefc5329252a7ee7d13bd480744049e1f57131e585b6c8763081f4","3ef0c952b7aa46d7ec44efc1f824377dd550bcf2f05e9f6eaa3bff52e0ab6630","271dd1bdc128e8bde40b8b4771d788816a2a56bb079f40c2af87cc7cbbea171d","4f3f090fa3b9300054f5ebef080c682c7c2c399024a16cb0d3b14b3e61b66bac","84c1a5494578c5affca53779468eff24fc912615128aaeba0443a7d084da1c81","d57106aed70ae121f2abbeafb903630c64b3d24ad708d331b5e39ee4154cdef2","317589f5460dfdb1386cd7feda7c57b03861c33c40f136da2239657ec9625028","755cb989f97ae212f7d67804513c0404e19d60085d50a2d821c1e7898622afb9","a73e2f83376a0533d2534cf39db9326f7b17e10258343d743dc8e4be9fa7d7e6","0104f554c856d43470d5143b76a858630948864dbb525ba503abf2495ea32d62","d2720cc47e5116280f94ea51b12443bdb6d34f6dbc2cc718eb22bc9fdf6d1c22","1c2088b528dbbfd94b68d0b391e5a753194beb4f816d01bcf45424a48490a3d8","1e9f7113fbfa4e026da90e21a0b8a0d2693ea17b396f840a35f763d00e52acd9","cc14dda6b48f2c3403ac82cbe03cb14769c11d9834fa7651d584f2c2194e568c","27955c2eada51f900146f6e08e98e7fc3c78b3c45299fa224d59751a2a67c2cf","fb9ba1c96f887d253a1cc6364e979ffea0c323945607f8c62b62dab15be4f0dd","eb3f968aec915281401fe9587625aaf032a5ded4d6e76cc79754572d638b711f","736a8b235bda37b5d1bb63730f2c149fc38ccd3e7f21e1ef27e3c136afce4ca4","b63b1bb2b9961efa84cb580dd9369838250b2d7dc26db0ae2396b75ec4df1b2c",{"version":"b90911de1515156ee23138731e27c3eba901c2390fa2caeb96350731050480d5","signature":"4a0dacea6d9687717d728fcaa64fd6c6135e01876920f0535da80b47058aa554"},{"version":"e17f07b028b14f80d6c625470844ec2f52f37efcd58f80dffc607fb8653cd4d0","signature":"7c9803e8b478726fc90dac32492eb1904cf2ddf6cacc9393a823a1f56c8de2b6"},{"version":"6fb2e60054648f522196c0bf8c154be32814cef9aaeff74a34b63b9ecc29c6bf","signature":"268255fe720a6ccc432b25021ac084c78a040eb586d3e3c6638d7ab602b52b47"},{"version":"d57081a43444d31f6c024c385473a217e0586eabd78dde612e45b121ae2e341f","signature":"d8058da97efb68e266376874bfaa454db214b7ac0bb35d3f4c6c640bb4925365"},{"version":"110d5045a2b89b84bffc9b69e29dea2b7fa6be905e68ee9aa32a04e010b12769","signature":"5a28e38c7ae204c2b8a2d5b19b475f7c7444e09b089885cd721646a91d8449fd"},{"version":"840ba1246f1c18bc4e405e6d6b13e6fd2684f5afb7106c5b629b65ed29889740","signature":"aa598e42a94a23cfc3aab39ddc3224722d0141b44486403203445749e953f8d7"},{"version":"cabd0d5b08b9df681c7d96ebb233547f3ff5afff1258fb4fd989c48cfa4b696d","signature":"0b46a5aa62769d95c500231b1c18bf8f75a79bb758ee37b1a212d4608abff3cc"},{"version":"801d15dc62fba78b6eba681a278e1513fae40bc2c1cc63b654689993027653af","signature":"f34e4769145e2478659e5fb416f7daa3329137c2d83ba78bb657582bdac5f50b"},{"version":"9aa03437de8e8312f9c38664eb81758f4aef3116c81fb0ba24502e079eaf531d","signature":"6abcd0c4ef723adaa273858de49546a5270b1498bec2329a7a7611a15b2778f2"},{"version":"f4168dc5ebefd765ab0cea0fae26fa261460cf9aef27c67dc5593ac815d385fb","signature":"697628e31760e18943ae773536abbf4c49c0a9d7b6bd9f606cb00454b756e06d"},{"version":"f1bd24334e503e833a2cecf306de16ba4c5cf2fefd6fda9d57c19d838f6cb8ec","signature":"35d0dad48d46ff699954fd32afe947a9191acfd3a0dbf1d9d75f4f8785d41cc3"},{"version":"e750f42ac121eda2a3f4658236b6381104bedf67830718fcc082e9a53e810c3c","signature":"ead8430d5d3e1d831233d97a5b7a19eb5b0e819fc86e30fdd19a3b7c62e37802"},{"version":"12e362faf2273b145dea47bfbf23ad64dfe13b00ae8952eb1ca00de8f8c6fff8","signature":"706318ef90b8f40fa8539e0b0e5c03aa76ed838366d408cb9418ca7f3d3e58dc"},{"version":"4168c3a7fe60b0621398ad39d77b926a19bf46949db420b60a1beb629a4c9591","signature":"15a64c85ff626de1630c32a968b0e6ba93831b9d66d6e5a8c7ab4d48ab5305ea"},{"version":"e5e2075207ac681aaf89be8ab88f96993365751bef2dc415ee4462530e9b8826","signature":"5e3407e9ef1ffcd6569a77677515f32c4b4811f249ffbfb57bf05931dab382ff"},{"version":"58b36cc8aa8df872016ddc8269da9e1d09f894e0260baa6d576e55a6eebdfa4a","signature":"d7e67bbc423e3fe460466cc7e84fabf003d0756d9386d894062e6fb09f53e640"},{"version":"31b8e49f0e99e1470a80b9e273fac5700c56fe8d234059cd1bb2ad21b820b0b9","signature":"85bb21606bafbcba87c9fc4c9b64fcc55e1ed9f625bfdcfecb013a0ccce0835f"},{"version":"91e881ba6c6c9dea00855969f278cf4a0a182eb7a0014643cd702d4b6c2d823e","signature":"f8e4d7dd0140c412232ec41e3d92bd3e52eaa65c040d404313d3119693f4f9d7"},{"version":"093412a58431807d86f292735937204c5733c2b33cff45ca392dc2e1b0d710a1","signature":"36958eeed010fd5dbd61070cb9f1dcf65951f523cf00f9fe4f057e072cffcb0c"},{"version":"25c502fca47c551749ae8050e73c7e6346ea5e32b1fef84f6d6d461e9a872ce6","signature":"f789f70171e3c0b4ce8fee345c5b6fd6cb2e39835db65da25f1c218ce5970c4d"},{"version":"2c0a55550a7c81b013bb87470a726d5adcb38caa793853b285b59a1e9dbcae3c","signature":"047c892f5ed530ba1388c4bb4aa1376987caa69ea3b6a09accff3b3831bb7ea4"},{"version":"082479941b759c52dd1ec4c86e79cdd98221878a3c4bff7866b9d297f093347b","signature":"a1dbb77028ab261d8f1e556f050161f358f3e14410c94cfeaefc6ecb0aef9d8b"},{"version":"cb2868c73b78dd4ab29af567a3b7a890cd73756ac9ea11f4b1523dbabfb1b475","signature":"7bd245389f77c48754e28c66782ac10d36438dda660d7f61efdf2216b4a3ff29"},{"version":"fa6052471f16ff21b4339723cf5e59aeae57103695fe4ae901c441f690bf4de4","signature":"a2f2dda048d4e932f639ed87095a550e9d379d029c0cae7145b960eb207f39a8"},{"version":"9e731ea19fdd5786c9f684d93797bc4431fcff1774294fc1acf28b8c05a81fa9","signature":"7e75d7603e00629abab8924db82fb0e97f7c3b3d31875166c1350e0584eaea10"},{"version":"642f386f429d3631458f0dd5dfebe118499f4073a694d64b251b009705a2b971","signature":"f6a98f2d4855295373650e1589681eaecf3bcf1a09cfa0504889f8112e53a97e"},{"version":"d9bdf915e3ee8d431158938340ab2f10da2a4e23cdde79c85c65403fd7ecb17a","signature":"e6dc128216b2de5c61f00de0344b23976d0d993896e0b70346ce2d29b4754b6e"},{"version":"a5b7dce6e9c4a136d1b80dbaf4350dc29605b6a47c14a8be1d174b5cad5b156d","signature":"d9684409c8eb8534ade61e5fa4ef023a669287f23eb693fbfb68bbba5b3b26a6"},{"version":"21993430db8282163ba7887d0aacb63061a34f4d8caf9319a0ed6df13f34c077","signature":"3653b6bc4a1f7cd5009ef78fa566ed5e07503a6a7ce7d85396fa2cc79c9a7b56"},{"version":"7abbca158c2204fb051b47d3c27c711700652740a67b9d6cd02b3a2f1dc4188e","signature":"de1d2d1e4b674d4f0e0099db99973d48ffeee46d669d369ce681427608c79621"},{"version":"083eb878d386d0b8ea51cb45454bc9ae37129e9679efac21349507279327a75a","signature":"c6113855c06c16f77ad43ddb21272c512fec264feac915087ee6210fdf4b2833"},{"version":"5c0e35a2fcd143623739fc9a075e00b409c259b273afd17be72da34892de9718","signature":"286f241d68cc0cce828d17c33b24df5a52c817ca34ae56f9fb43365e8f35baa7"},{"version":"10200ed9e3be3ffedbc198f0a2b7594865a016dce493bb7acb331759ead3d6f4","signature":"dac94bd2b0b75bc1aa2883937aa946b6736a3bdebb88cec9e1ec098f9c1cde11"},{"version":"4efdc2ea4a22c2ec266cbd13c42dc0bb8965bdc2c7d6a5202fca48013e42cd0c","signature":"441a7dd1f6a3e908d08de6d57c14679d199699ae59ec4b2c6f6909ee4e7a01dd"},{"version":"2ee14a353d86a1d5afd0bcef4dc52c6784a7c22caf49232a111d58fece0c5364","signature":"5b6af1305a4c918d33730d4c9043d4075b36f9ca51b6fdf5ec49c4874e9d75ce"},{"version":"443026f892363dacd3c6e5b8db4b2d8f5e00c0158413f56b4ea0fd3bd66cee59","signature":"465498afd1f73b5c21176540a7fc8049c167dfc38e55a3c6b2045c2ae2518ff6"},{"version":"6fec1803941aeba218d4fd7349c11518890c5327277ed3fc6a693d360c4a7aa5","signature":"dc252d73474d45ded4886dfd27affbeb7f1d23208a5b6838dbccded1e379c213"},{"version":"61b024f06c15085b253732fbfa5f8da00eebd68e2142dd20b8d0e2026a260190","signature":"76196e924bfd1c52d90cd14b733dc39295f91d2fe6a1af1d19d8b4f3ecc46200"},{"version":"44be52888d4de8676e0e119860f32abb7c8d91fe66890f734a091b5946e5fd69","signature":"2371428db20903bd7351600dead95f6deda4c398b826becd7dc4accb39a6a295"},{"version":"16f8786ebdc732eafeaf64df44d61c6f5c211009b17853562566997cc2fe96ba","signature":"26f328b93796ec08dfc19ee8196e18518b658a87fe31e3630ef7079722203cb2"},{"version":"70082ebcdffb51a4f232d04e7a72fa796d6f058e0a5ffaa81d51b2bdaa4dcacd","signature":"56544ec521b04c8619ecbb1fc134cd36e27f3fc52cbac2c6d0d66caa5e2bcf1c"},{"version":"f683588eb6f67d093e22010f727767dc12ccf947c4fcd56cfbf042e8b396dfc8","signature":"c89e2d183a3683530fc7c5fd94368e05bf62438940c1da5e3b73c71b00b1cbce"},{"version":"19a1a3e1f5321005e623b2ae3665f2968a7284f33f485e611d11f8c127fd6b46","signature":"a917c20caa02cf7636797e7872d5d5fd0355770e67808dc8c0525154fe5df041"},{"version":"c694cc36fdfeda4e7ad3ec79875a395d94c0e983469f6f8b1f747ef24674f4e0","signature":"708167176f8be143ef9e9adb420b236bd96b640ac8718a5d35c03248db221029"},{"version":"6ab351e24f0a799d04759e594e23875777e4a2adfeb494e1a0cba5e391da07c9","signature":"3bf19102eebc41e4a232a2434d49019f85df851e560191bb9657d043ff35d41b"},{"version":"4a0cfb0d136c13a6f5df928908838752f1f49ec89974acc27d69c3e93cbd5e50","signature":"e89d36d87b8f081e39accdb95e7d8b1518f56ca3250a52ff198f7490690232b6"},{"version":"8f6014089f1ced34e7dc99feb6dd2787c9417ab8ba52814e75d1644e87452a22","signature":"be765d418daf62dba7554d006a121edc3313c13efb27b6cde71db1dbcc666aa9"},{"version":"78526f514c7d451d6473767d60135afc28b293a43f52f4bd63c9c8907539f459","signature":"f89afc38ed75b7dcc5a7f22aba7003eaac55766cf16f059034f47f0521353f30"},{"version":"f0f337daea9b8ef0a90c72de16b4127cc5b923848e8517a478acfc2000dfc5e6","signature":"b97dd1e64aa5e3342df88a0a89ffd5ac3dbae9784497cafff8c7bf2f9602ac53"},{"version":"dc4bb7cb57b62e8c0cc8506ea225432b72440a9aeda2ecc566e7a94efb362c08","signature":"d72955998ba844deea604724a13e2fc50416bedf6a3d07a4dcee02e55c227a03"},{"version":"07dbbd0e014a7d454ef6eb574d20685c7335c48989f1b10c0efd0a69589153a1","signature":"70b8d528a3e6742ade7bc44e018784fa591a0f7bd7f675f183efb72e6f7463ee"},{"version":"16b0e97d18dee16d5ca821a0fdefe07047a58e994e8d15651a091f4b76299b00","signature":"c2b78ad093c430807ae5afa6c56a12577970453c0d23a5a39249d4c9f4f04c9a"},{"version":"024dbe04ab741c6bb1e4d2882cea3a3510d32d22af7da9783c10f570b43792c7","signature":"5d0d919a448daeb3f24ea39e50dd38c948063f4e2dffe9d8e3c9539868d96eea"},{"version":"8cec9ab911940158cc71c29999a04466a18b99258b50a772ec688a7d3c999db7","signature":"7a482801bb7b209c32caaa91395641ebcb34d5f325d1c8007f545dff3a84bafa"},{"version":"5547b082896f113bbe4c189a7f5aba61443bef27fdefc8874739478da653f39c","signature":"b1aac86d982a813a1aa943732dbd6449a660c77863576ab3b60bf1fcfc3aed93"},{"version":"e73439f64bd79386e8f9430d06a32f5d4e778cbf3b0bbf8690eda2341d164b94","signature":"dcdb99c4f0e5089bcd1d681961918d8486b95e24ba46f353cd900be758051e3c"},{"version":"a78bd6cd5c482c963b576c1305f10da2d3300640eb7b4f79a37ad89e47379ebc","signature":"d9b61d07c211be80ca2e4733c50e376b1fc616230586cde831dcb9799d64bb89"},{"version":"3934937d608ace18997a7cdab19bf6eed59c2a30e63699c8815030d869a8a46d","signature":"2d56ff0cb4d0167567312f89fa1e6cadc785f2188266ac9429e5c0f27e73699b"},{"version":"3f878b9e4454fb63f4a7c6bc05c998cab5392fc6968a8231537b2bdf1d21eb11","signature":"302280c749ac14a35a70667829db1fb7118cc298f4a9c98dbde1a69899158aeb"},{"version":"0ae539fcb9305ceed033478dad6057ca783cd05639a5ffec46236b181329b73d","signature":"fb2248233522d52bc64ce2a6cbbb7a48063c27fe937586687f86ec9e59f356be"},{"version":"b9181bea4a29329594d5c5a53bec78507fcc67ad0c5afa2a580dc51d6f19a4f7","signature":"4f7d54c603949113f45505330caae6f41e8dbb59841d4ae20b42307dc4579835"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","daece0d85f8783595463f509f7d82b03b2c210cc064cc793096b5f9c73a6db43","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"bd27e23daf177808fc4b00c86f7d67d64dc42bbc3c855ea41bfed7a529150a1d","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","30c2ec6abf6aaa60eb4f32fb1235531506b7961c6d1bdc7430711aec8fd85295","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"603df4e91a0c2fd815c6619927468373fb00b6c13066334982ee684f5c7d40b2","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"527e6e7c1e60184879fe97517f0d51dbfab72c4625cef50179f27f46d7fd69a1","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"emitDeclarationOnly":false,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":1,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictPropertyInitialization":false,"target":99},"fileIdsList":[[43,245],[43,49,50,51,52,53,54,55,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,216,245],[43,49,133,245],[43,105,131,245],[43,131,245],[43,105,107,131,245],[43,49,132,133,245],[43,49,50,133,245],[43,49,131,245],[43,107,131,245],[43,49,132,245],[43,49,50,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,245],[43,107,131,132,163,164,245],[43,49,165,245],[43,165,245],[48,245],[167,245],[202,245],[203,208,236,245],[204,215,216,223,233,244,245],[204,205,215,223,245],[206,245],[207,208,216,224,245],[208,233,241,245],[209,211,215,223,245],[210,245],[211,212,245],[215,245],[213,215,245],[215,216,217,233,244,245],[215,216,217,230,233,236,245],[200,245,249],[245],[211,215,218,223,233,244,245],[215,216,218,219,223,233,241,244,245],[218,220,233,241,244,245],[167,168,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],[215,221,245],[222,244,245,249],[211,215,223,233,245],[224,245],[225,245],[202,226,245],[227,243,245,249],[228,245],[229,245],[215,230,231,245],[230,232,245,247],[203,215,233,234,235,236,245],[203,233,235,245],[233,234,245],[236,245],[237,245],[202,233,245],[215,239,240,245],[239,240,245],[208,223,233,241,245],[242,245],[223,243,245],[203,218,229,244,245],[208,245],[233,245,246],[222,245,247],[245,248],[203,208,215,217,226,233,244,245,247,249],[233,245,250],[59,245],[59,60,61,62,63,245],[65,66,245],[67,245],[65,66,67,245],[100,101,245],[102,245],[100,101,102,245],[74,245],[69,70,71,72,73,245],[69,70,71,72,73,74,245],[58,64,68,75,81,85,87,90,94,99,103,245],[82,83,84,245],[82,83,245],[84,245],[76,77,78,79,80,245],[80,245],[76,77,78,79,245],[91,92,93,245],[91,92,245],[93,245],[95,96,97,98,245],[95,96,97,245],[98,245],[57,245],[88,89,245],[88,245],[89,245],[86,245],[56,104,245],[46,245],[44,45,204,215,216,233,245],[47,245],[177,181,244,245],[177,233,244,245],[172,245],[174,177,241,244,245],[223,241,245],[245,252],[172,245,252],[174,177,223,244,245],[169,170,173,176,203,215,233,244,245],[169,175,245],[173,177,203,236,244,245,252],[203,245,252],[193,203,245,252],[171,172,245,252],[177,245],[171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,197,198,199,245],[177,184,185,245],[175,177,185,186,245],[176,245],[169,172,177,245],[177,181,185,186,245],[181,245],[175,177,180,244,245],[169,174,175,177,181,184,245],[203,233,245],[172,177,193,203,245,249,252],[46,49,51,52,53,54,55,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],[49,133],[46,131],[131],[49,131],[49],[49,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[107,131,132,163,164],[49,165],[165]],"referencedMap":[[107,1],[131,2],[132,1],[152,3],[109,4],[142,3],[54,5],[118,6],[130,4],[162,7],[117,6],[153,3],[147,3],[123,5],[149,3],[124,5],[53,5],[145,3],[116,5],[140,3],[139,3],[120,4],[119,6],[158,3],[161,3],[128,4],[127,5],[155,3],[129,6],[157,3],[156,3],[122,5],[146,3],[121,5],[112,5],[144,8],[114,5],[135,3],[150,3],[125,5],[148,3],[126,5],[154,3],[55,5],[143,3],[51,9],[113,5],[136,7],[115,5],[134,7],[52,5],[141,3],[108,10],[137,7],[111,5],[138,3],[133,11],[163,12],[110,4],[106,4],[160,3],[159,8],[151,3],[165,13],[164,14],[166,15],[49,16],[167,17],[168,17],[202,18],[203,19],[204,20],[205,21],[206,22],[207,23],[208,24],[209,25],[210,26],[211,27],[212,27],[214,28],[213,29],[215,28],[216,30],[217,31],[201,32],[251,33],[218,34],[219,35],[220,36],[252,37],[221,38],[222,39],[223,40],[224,41],[225,42],[226,43],[227,44],[228,45],[229,46],[230,47],[231,47],[232,48],[233,49],[235,50],[234,51],[236,52],[237,53],[238,54],[239,55],[240,56],[241,57],[242,58],[243,59],[244,60],[245,61],[246,62],[247,63],[248,64],[249,65],[250,66],[59,33],[63,67],[64,68],[62,67],[60,67],[61,67],[67,69],[65,70],[66,70],[68,71],[102,72],[100,73],[101,73],[103,74],[71,75],[73,75],[74,76],[72,75],[70,75],[69,75],[75,77],[104,78],[85,79],[84,80],[82,81],[83,81],[81,82],[78,83],[80,84],[79,83],[77,83],[76,83],[94,85],[93,86],[91,87],[92,87],[99,88],[98,89],[95,90],[96,90],[97,90],[58,91],[57,33],[90,92],[89,93],[88,94],[87,95],[86,33],[56,33],[105,96],[44,33],[45,97],[46,98],[48,99],[47,97],[43,33],[8,33],[9,33],[11,33],[10,33],[2,33],[12,33],[13,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[3,33],[4,33],[23,33],[20,33],[21,33],[22,33],[24,33],[25,33],[26,33],[5,33],[27,33],[28,33],[29,33],[30,33],[6,33],[31,33],[32,33],[33,33],[34,33],[7,33],[35,33],[40,33],[41,33],[36,33],[37,33],[38,33],[39,33],[1,33],[42,33],[184,100],[191,101],[183,100],[198,102],[175,103],[174,104],[197,105],[192,106],[195,107],[177,108],[176,109],[172,110],[171,111],[194,112],[173,113],[178,114],[179,33],[182,114],[169,33],[200,115],[199,114],[186,116],[187,117],[189,118],[185,119],[188,120],[193,105],[180,121],[181,122],[190,123],[170,124],[196,125],[50,1]],"exportedModulesMap":[[131,126],[152,127],[109,128],[142,127],[54,128],[118,128],[130,128],[162,127],[117,128],[153,127],[147,127],[123,129],[149,127],[124,129],[53,128],[145,127],[116,129],[140,127],[139,127],[120,128],[119,128],[158,127],[161,127],[128,128],[127,128],[155,127],[129,128],[157,127],[156,127],[122,129],[146,127],[121,129],[112,128],[144,127],[114,128],[135,127],[150,127],[125,129],[148,127],[126,128],[154,127],[55,128],[143,127],[51,130],[113,128],[136,127],[115,128],[134,127],[52,128],[141,127],[108,128],[137,127],[111,128],[138,127],[133,131],[163,132],[110,128],[106,128],[160,127],[159,127],[151,127],[165,133],[164,134],[166,135],[49,16],[167,17],[168,17],[202,18],[203,19],[204,20],[205,21],[206,22],[207,23],[208,24],[209,25],[210,26],[211,27],[212,27],[214,28],[213,29],[215,28],[216,30],[217,31],[201,32],[251,33],[218,34],[219,35],[220,36],[252,37],[221,38],[222,39],[223,40],[224,41],[225,42],[226,43],[227,44],[228,45],[229,46],[230,47],[231,47],[232,48],[233,49],[235,50],[234,51],[236,52],[237,53],[238,54],[239,55],[240,56],[241,57],[242,58],[243,59],[244,60],[245,61],[246,62],[247,63],[248,64],[249,65],[250,66],[59,33],[63,67],[64,68],[62,67],[60,67],[61,67],[67,69],[65,70],[66,70],[68,71],[102,72],[100,73],[101,73],[103,74],[71,75],[73,75],[74,76],[72,75],[70,75],[69,75],[75,77],[104,78],[85,79],[84,80],[82,81],[83,81],[81,82],[78,83],[80,84],[79,83],[77,83],[76,83],[94,85],[93,86],[91,87],[92,87],[99,88],[98,89],[95,90],[96,90],[97,90],[58,91],[57,33],[90,92],[89,93],[88,94],[87,95],[86,33],[56,33],[105,96],[44,33],[45,97],[46,98],[48,99],[47,97],[43,33],[8,33],[9,33],[11,33],[10,33],[2,33],[12,33],[13,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[3,33],[4,33],[23,33],[20,33],[21,33],[22,33],[24,33],[25,33],[26,33],[5,33],[27,33],[28,33],[29,33],[30,33],[6,33],[31,33],[32,33],[33,33],[34,33],[7,33],[35,33],[40,33],[41,33],[36,33],[37,33],[38,33],[39,33],[1,33],[42,33],[184,100],[191,101],[183,100],[198,102],[175,103],[174,104],[197,105],[192,106],[195,107],[177,108],[176,109],[172,110],[171,111],[194,112],[173,113],[178,114],[179,33],[182,114],[169,33],[200,115],[199,114],[186,116],[187,117],[189,118],[185,119],[188,120],[193,105],[180,121],[181,122],[190,123],[170,124],[196,125]],"semanticDiagnosticsPerFile":[107,131,132,152,109,142,54,118,130,162,117,153,147,123,149,124,53,145,116,140,139,120,119,158,161,128,127,155,129,157,156,122,146,121,112,144,114,135,150,125,148,126,154,55,143,51,113,136,115,134,52,141,108,137,111,138,133,163,110,106,160,159,151,165,164,166,49,167,168,202,203,204,205,206,207,208,209,210,211,212,214,213,215,216,217,201,251,218,219,220,252,221,222,223,224,225,226,227,228,229,230,231,232,233,235,234,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,59,63,64,62,60,61,67,65,66,68,102,100,101,103,71,73,74,72,70,69,75,104,85,84,82,83,81,78,80,79,77,76,94,93,91,92,99,98,95,96,97,58,57,90,89,88,87,86,56,105,44,45,46,48,47,43,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,35,40,41,36,37,38,39,1,42,184,191,183,198,175,174,197,192,195,177,176,172,171,194,173,178,179,182,169,200,199,186,187,189,185,188,193,180,181,190,170,196,50],"latestChangedDtsFile":"./lib/index.d.ts"},"version":"4.8.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco/playwright-testhelpers",
3
- "version": "2.0.0-beta.60",
3
+ "version": "2.0.0-beta.61",
4
4
  "description": "Test helpers for making playwright tests for Umbraco solutions",
5
5
  "main": "dist/lib/index.js",
6
6
  "files": [
@@ -34,7 +34,7 @@
34
34
  "typescript": "^4.8.3"
35
35
  },
36
36
  "dependencies": {
37
- "@umbraco/json-models-builders": "2.0.6",
37
+ "@umbraco/json-models-builders": "2.0.7",
38
38
  "camelize": "^1.0.0",
39
39
  "faker": "^4.1.0",
40
40
  "form-data": "^4.0.0",