@grafana/k6-test-builder 0.3.4 → 0.4.0
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.d.ts +6 -1
- package/dist/index.js +1359 -125
- package/dist/module.js +1360 -126
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -109,6 +109,9 @@ interface APMConfig {
|
|
|
109
109
|
providerName: string;
|
|
110
110
|
id: string;
|
|
111
111
|
providerConfig: PrometheusConfig | AzureMonitorConfig | DatadogConfig;
|
|
112
|
+
organization: number;
|
|
113
|
+
created: string;
|
|
114
|
+
updated: string;
|
|
112
115
|
}
|
|
113
116
|
enum ConfigType {
|
|
114
117
|
Base = "base",
|
|
@@ -333,8 +336,10 @@ interface TestBuilderStandaloneProps {
|
|
|
333
336
|
ScriptEditorComponent?: (props: ScriptEditorProps) => ReactElement;
|
|
334
337
|
TestBuilderIconComponent?: typeof TestBuilderIcon;
|
|
335
338
|
readonlyScriptScenarios?: boolean;
|
|
339
|
+
apmConfigs?: APMConfig[];
|
|
340
|
+
hasCloudAPM?: boolean;
|
|
336
341
|
}
|
|
337
|
-
export function TestBuilder({ loading, saving, k6Test, hasCloudExecution, availableLoadZones, DocsLinkComponent, onViewChange, StagesVirtualizationComponent, ScriptEditorComponent, TestBuilderIconComponent, readonlyScriptScenarios, }: TestBuilderStandaloneProps): JSX.Element;
|
|
342
|
+
export function TestBuilder({ loading, saving, k6Test, hasCloudExecution, availableLoadZones, DocsLinkComponent, onViewChange, StagesVirtualizationComponent, ScriptEditorComponent, TestBuilderIconComponent, readonlyScriptScenarios, apmConfigs, hasCloudAPM, }: TestBuilderStandaloneProps): JSX.Element;
|
|
338
343
|
interface TestMetaInformationProps {
|
|
339
344
|
className?: string;
|
|
340
345
|
}
|