dcdx 1.3.0-next.49 → 1.3.0-next.50
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/lib/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { program } from 'commander';
|
|
|
3
3
|
import { realpathSync, existsSync } from 'fs';
|
|
4
4
|
import { dirname, join } from 'path';
|
|
5
5
|
|
|
6
|
-
var version = "1.3.0-next.
|
|
6
|
+
var version = "1.3.0-next.50";
|
|
7
7
|
|
|
8
8
|
const toAbsolutePath = (relativePath) => {
|
|
9
9
|
const [, filePath] = process.argv;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { TAPTPerformanceTestOptions, TAPTTestMessages
|
|
2
|
-
export declare const runLuceneTimingTest: (
|
|
1
|
+
import { TAPTPerformanceTestOptions, TAPTTestMessages } from '../../types/DCAPT';
|
|
2
|
+
export declare const runLuceneTimingTest: (options: TAPTPerformanceTestOptions, messages: TAPTTestMessages) => Promise<void>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { TAPTPerformanceTestOptions, TAPTTestMessages
|
|
2
|
-
export declare const runPerformanceTest: (
|
|
1
|
+
import { TAPTPerformanceTestOptions, TAPTTestMessages } from '../../types/DCAPT';
|
|
2
|
+
export declare const runPerformanceTest: (options: TAPTPerformanceTestOptions, messages: TAPTTestMessages) => Promise<void>;
|
|
@@ -115,6 +115,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
115
115
|
archive: z.ZodOptional<z.ZodString>;
|
|
116
116
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
117
117
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
118
|
+
stage: z.ZodEnum<["baseline", "regression"]>;
|
|
118
119
|
aws_access_key_id: z.ZodOptional<z.ZodString>;
|
|
119
120
|
aws_secret_access_key: z.ZodOptional<z.ZodString>;
|
|
120
121
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -123,6 +124,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
123
124
|
environment: string;
|
|
124
125
|
license: string;
|
|
125
126
|
outputDir: string;
|
|
127
|
+
stage: "baseline" | "regression";
|
|
126
128
|
baseUrl?: string | undefined;
|
|
127
129
|
force?: boolean | undefined;
|
|
128
130
|
appKey?: string | undefined;
|
|
@@ -137,6 +139,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
137
139
|
environment: string;
|
|
138
140
|
license: string;
|
|
139
141
|
outputDir: string;
|
|
142
|
+
stage: "baseline" | "regression";
|
|
140
143
|
baseUrl?: string | undefined;
|
|
141
144
|
force?: boolean | undefined;
|
|
142
145
|
appKey?: string | undefined;
|
|
@@ -151,6 +154,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
151
154
|
environment: string;
|
|
152
155
|
license: string;
|
|
153
156
|
outputDir: string;
|
|
157
|
+
stage: "baseline" | "regression";
|
|
154
158
|
baseUrl?: string | undefined;
|
|
155
159
|
force?: boolean | undefined;
|
|
156
160
|
appKey?: string | undefined;
|
|
@@ -165,6 +169,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
165
169
|
environment: string;
|
|
166
170
|
license: string;
|
|
167
171
|
outputDir: string;
|
|
172
|
+
stage: "baseline" | "regression";
|
|
168
173
|
baseUrl?: string | undefined;
|
|
169
174
|
force?: boolean | undefined;
|
|
170
175
|
appKey?: string | undefined;
|