@umbraco/playwright-testhelpers 16.0.55 → 17.0.0-beta.2

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.
@@ -34,7 +34,6 @@ export declare class DataTypeApiHelper {
34
34
  createDateTimeDataTypeWithDateFormat(name: string, dateFormat: string): Promise<string | undefined>;
35
35
  createDropdownDataType(name: string, isMultiple: boolean, options: string[]): Promise<string | undefined>;
36
36
  createEmptyBlockListDataType(name: string): Promise<string | undefined>;
37
- createBlockListDataTypeWithTwoBlocks(name: string, firstContentElementTypeId: string, secondContentElementTypeId: string): Promise<string | undefined>;
38
37
  createBlockListDataTypeWithABlock(name: string, contentElementTypeId: string): Promise<string | undefined>;
39
38
  createBlockListDataTypeWithContentAndSettingsElementType(name: string, contentElementTypeId: string, settingsElementTypeId: string): Promise<string | undefined>;
40
39
  createBlockListDataTypeWithMinAndMaxAmount(name: string, minAmount?: number, maxAmount?: number): Promise<string | undefined>;
@@ -242,19 +242,6 @@ class DataTypeApiHelper {
242
242
  .build();
243
243
  return await this.save(blockList);
244
244
  }
245
- async createBlockListDataTypeWithTwoBlocks(name, firstContentElementTypeId, secondContentElementTypeId) {
246
- await this.ensureNameNotExists(name);
247
- const blockList = new json_models_builders_1.BlockListDataTypeBuilder()
248
- .withName(name)
249
- .addBlock()
250
- .withContentElementTypeKey(firstContentElementTypeId)
251
- .done()
252
- .addBlock()
253
- .withContentElementTypeKey(secondContentElementTypeId)
254
- .done()
255
- .build();
256
- return await this.save(blockList);
257
- }
258
245
  async createBlockListDataTypeWithABlock(name, contentElementTypeId) {
259
246
  await this.ensureNameNotExists(name);
260
247
  const blockList = new json_models_builders_1.BlockListDataTypeBuilder()