@timeax/digital-service-engine 0.2.7 → 0.2.9
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/core/index.cjs +1688 -1218
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +21 -1
- package/dist/core/index.d.ts +21 -1
- package/dist/core/index.js +1686 -1218
- package/dist/core/index.js.map +1 -1
- package/dist/react/index.cjs +586 -376
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +8 -0
- package/dist/react/index.d.ts +8 -0
- package/dist/react/index.js +586 -376
- package/dist/react/index.js.map +1 -1
- package/dist/workspace/index.cjs +595 -389
- package/dist/workspace/index.cjs.map +1 -1
- package/dist/workspace/index.d.cts +8 -0
- package/dist/workspace/index.d.ts +8 -0
- package/dist/workspace/index.js +595 -389
- package/dist/workspace/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1846,6 +1846,14 @@ declare class Editor {
|
|
|
1846
1846
|
fallbackSettings?: FallbackSettings;
|
|
1847
1847
|
/** Backward-compatible alias */
|
|
1848
1848
|
fallback?: FallbackSettings;
|
|
1849
|
+
rateContext?: {
|
|
1850
|
+
mode: "context";
|
|
1851
|
+
} | {
|
|
1852
|
+
mode: "custom_primary_rate";
|
|
1853
|
+
source: "manual" | "service";
|
|
1854
|
+
primaryRate?: number;
|
|
1855
|
+
primaryServiceId?: number | string;
|
|
1856
|
+
};
|
|
1849
1857
|
}): ServiceCheck[];
|
|
1850
1858
|
private moduleCtx;
|
|
1851
1859
|
}
|
|
@@ -1846,6 +1846,14 @@ declare class Editor {
|
|
|
1846
1846
|
fallbackSettings?: FallbackSettings;
|
|
1847
1847
|
/** Backward-compatible alias */
|
|
1848
1848
|
fallback?: FallbackSettings;
|
|
1849
|
+
rateContext?: {
|
|
1850
|
+
mode: "context";
|
|
1851
|
+
} | {
|
|
1852
|
+
mode: "custom_primary_rate";
|
|
1853
|
+
source: "manual" | "service";
|
|
1854
|
+
primaryRate?: number;
|
|
1855
|
+
primaryServiceId?: number | string;
|
|
1856
|
+
};
|
|
1849
1857
|
}): ServiceCheck[];
|
|
1850
1858
|
private moduleCtx;
|
|
1851
1859
|
}
|