@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
package/dist/react/index.d.cts
CHANGED
|
@@ -1671,6 +1671,14 @@ declare class Editor {
|
|
|
1671
1671
|
fallbackSettings?: FallbackSettings;
|
|
1672
1672
|
/** Backward-compatible alias */
|
|
1673
1673
|
fallback?: FallbackSettings;
|
|
1674
|
+
rateContext?: {
|
|
1675
|
+
mode: "context";
|
|
1676
|
+
} | {
|
|
1677
|
+
mode: "custom_primary_rate";
|
|
1678
|
+
source: "manual" | "service";
|
|
1679
|
+
primaryRate?: number;
|
|
1680
|
+
primaryServiceId?: number | string;
|
|
1681
|
+
};
|
|
1674
1682
|
}): ServiceCheck[];
|
|
1675
1683
|
private moduleCtx;
|
|
1676
1684
|
}
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1671,6 +1671,14 @@ declare class Editor {
|
|
|
1671
1671
|
fallbackSettings?: FallbackSettings;
|
|
1672
1672
|
/** Backward-compatible alias */
|
|
1673
1673
|
fallback?: FallbackSettings;
|
|
1674
|
+
rateContext?: {
|
|
1675
|
+
mode: "context";
|
|
1676
|
+
} | {
|
|
1677
|
+
mode: "custom_primary_rate";
|
|
1678
|
+
source: "manual" | "service";
|
|
1679
|
+
primaryRate?: number;
|
|
1680
|
+
primaryServiceId?: number | string;
|
|
1681
|
+
};
|
|
1674
1682
|
}): ServiceCheck[];
|
|
1675
1683
|
private moduleCtx;
|
|
1676
1684
|
}
|