@bigbinary/neeto-playwright-commons 1.9.33 → 1.9.34

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.
package/index.d.ts CHANGED
@@ -2190,7 +2190,7 @@ declare class OrganizationPage {
2190
2190
  appName: string;
2191
2191
  }) => Promise<{
2192
2192
  STORAGE_STATE: {
2193
- cookies: {
2193
+ cookies: Array<{
2194
2194
  name: string;
2195
2195
  value: string;
2196
2196
  domain: string;
@@ -2199,14 +2199,14 @@ declare class OrganizationPage {
2199
2199
  httpOnly: boolean;
2200
2200
  secure: boolean;
2201
2201
  sameSite: "Strict" | "Lax" | "None";
2202
- }[];
2203
- origins: {
2202
+ }>;
2203
+ origins: Array<{
2204
2204
  origin: string;
2205
- localStorage: {
2205
+ localStorage: Array<{
2206
2206
  name: string;
2207
2207
  value: string;
2208
- }[];
2209
- }[];
2208
+ }>;
2209
+ }>;
2210
2210
  };
2211
2211
  baseURL: string | undefined;
2212
2212
  }>;