@stablyai/playwright-test 2.1.15 → 2.1.16
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/dist/index.cjs +1 -1
- package/dist/{index.d-CBqVmz24.d.cts → index.d-CYCd1ME4.d.cts} +2 -2
- package/dist/{index.d-CBqVmz24.d.cts.map → index.d-CYCd1ME4.d.cts.map} +1 -1
- package/dist/{index.d-CBqVmz24.d.ts → index.d-CYCd1ME4.d.mts} +2 -2
- package/dist/{index.d-CBqVmz24.d.mts.map → index.d-CYCd1ME4.d.mts.map} +1 -1
- package/dist/{index.d-CBqVmz24.d.mts → index.d-CYCd1ME4.d.ts} +2 -2
- package/dist/{index.d-CBqVmz24.d.ts.map → index.d-CYCd1ME4.d.ts.map} +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +1 -1
- package/dist/reporter.d.cts +1 -1
- package/dist/reporter.d.mts +1 -1
- package/package.json +4 -3
package/dist/index.cjs
CHANGED
|
@@ -32,7 +32,7 @@ require('zlib');
|
|
|
32
32
|
require('buffer');
|
|
33
33
|
|
|
34
34
|
const getApiUrl = () => process.env.STABLY_API_URL ?? "https://api.stably.ai";
|
|
35
|
-
const sdkVersion = "2.1.
|
|
35
|
+
const sdkVersion = "2.1.16" ;
|
|
36
36
|
const assertNonEmptyString = (value, fieldName) => {
|
|
37
37
|
if (!value.trim()) {
|
|
38
38
|
throw new Error(`Missing required field: ${fieldName}`);
|
|
@@ -45518,7 +45518,7 @@ type StablyEmailNotificationConfig = {
|
|
|
45518
45518
|
type StablySlackNotificationConfig = {
|
|
45519
45519
|
channelName: string;
|
|
45520
45520
|
notifyOnStart?: boolean;
|
|
45521
|
-
notifyOnResult?: NotificationResultPolicy;
|
|
45521
|
+
notifyOnResult?: NotificationResultPolicy | null;
|
|
45522
45522
|
};
|
|
45523
45523
|
type StablyNotificationConfig = {
|
|
45524
45524
|
email?: StablyEmailNotificationConfig | null;
|
|
@@ -45596,4 +45596,4 @@ declare function stablyReporter(options?: StablyReporterOptions): [string, any];
|
|
|
45596
45596
|
|
|
45597
45597
|
export { StablyReporter as d, stablyReporter as s };
|
|
45598
45598
|
export type { NotificationResultPolicy as N, ProjectNotificationConfig as P, StablyNotificationConfig as S, StablyEmailNotificationConfig as a, StablyReporterOptions as b, StablySlackNotificationConfig as c };
|
|
45599
|
-
//# sourceMappingURL=index.d-
|
|
45599
|
+
//# sourceMappingURL=index.d-CYCd1ME4.d.cts.map
|