@absolutejs/voice 0.0.22-beta.353 → 0.0.22-beta.355
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/client/index.d.ts +3 -0
- package/dist/client/index.js +346 -203
- package/dist/client/profileSwitchRecommendation.d.ts +19 -0
- package/dist/client/profileSwitchRecommendationWidget.d.ts +12 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +67 -0
- package/dist/profileSwitchRecommendation.d.ts +38 -0
- package/dist/react/VoiceProfileSwitchRecommendation.d.ts +6 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +561 -388
- package/dist/react/useVoiceProfileSwitchRecommendation.d.ts +8 -0
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export { createVoiceOpsStatusStore, fetchVoiceOpsStatus } from './opsStatus';
|
|
|
13
13
|
export { createVoicePlatformCoverageStore, fetchVoicePlatformCoverage } from './platformCoverage';
|
|
14
14
|
export { createVoiceProofTrendsStore, fetchVoiceProofTrends } from './proofTrends';
|
|
15
15
|
export { createVoiceProfileComparisonStore, fetchVoiceProfileComparison } from './profileComparison';
|
|
16
|
+
export { createVoiceProfileSwitchRecommendationStore, fetchVoiceProfileSwitchRecommendation } from './profileSwitchRecommendation';
|
|
16
17
|
export { createVoiceReadinessFailuresStore, fetchVoiceReadinessFailures } from './readinessFailures';
|
|
17
18
|
export { createVoiceOpsActionCenterActions, createVoiceOpsActionCenterStore, recordVoiceOpsActionResult, runVoiceOpsAction } from './opsActionCenter';
|
|
18
19
|
export { createVoiceLiveOpsStore, postVoiceLiveOpsAction } from './liveOps';
|
|
@@ -22,6 +23,7 @@ export { createVoiceOpsStatusViewModel, defineVoiceOpsStatusElement, getVoiceOps
|
|
|
22
23
|
export { createVoicePlatformCoverageViewModel, defineVoicePlatformCoverageElement, getVoicePlatformCoverageCSS, mountVoicePlatformCoverage, renderVoicePlatformCoverageHTML } from './platformCoverageWidget';
|
|
23
24
|
export { createVoiceProofTrendsViewModel, defineVoiceProofTrendsElement, getVoiceProofTrendsCSS, mountVoiceProofTrends, renderVoiceProofTrendsHTML } from './proofTrendsWidget';
|
|
24
25
|
export { createVoiceProfileComparisonViewModel, defineVoiceProfileComparisonElement, getVoiceProfileComparisonCSS, mountVoiceProfileComparison, renderVoiceProfileComparisonHTML } from './profileComparisonWidget';
|
|
26
|
+
export { defineVoiceProfileSwitchRecommendationElement, getVoiceProfileSwitchRecommendationCSS, mountVoiceProfileSwitchRecommendation, renderVoiceProfileSwitchRecommendationHTML } from './profileSwitchRecommendationWidget';
|
|
25
27
|
export { createVoiceReadinessFailuresViewModel, defineVoiceReadinessFailuresElement, getVoiceReadinessFailuresCSS, mountVoiceReadinessFailures, renderVoiceReadinessFailuresHTML } from './readinessFailuresWidget';
|
|
26
28
|
export { createVoiceOpsActionCenterViewModel, defineVoiceOpsActionCenterElement, getVoiceOpsActionCenterCSS, mountVoiceOpsActionCenter, renderVoiceOpsActionCenterHTML } from './opsActionCenterWidget';
|
|
27
29
|
export { createVoiceLiveOpsInput, defineVoiceLiveOpsElement, getVoiceLiveOpsCSS, mountVoiceLiveOps, renderVoiceLiveOpsHTML } from './liveOpsWidget';
|
|
@@ -50,6 +52,7 @@ export { createVoiceWorkflowStatusStore, fetchVoiceWorkflowStatus } from './work
|
|
|
50
52
|
export type { VoiceOpsStatusClientOptions, VoiceOpsStatusSnapshot } from './opsStatus';
|
|
51
53
|
export type { VoiceReadinessFailuresClientOptions, VoiceReadinessFailuresSnapshot } from './readinessFailures';
|
|
52
54
|
export type { VoiceProfileComparisonClientOptions, VoiceProfileComparisonSnapshot } from './profileComparison';
|
|
55
|
+
export type { VoiceProfileSwitchRecommendationClientOptions, VoiceProfileSwitchRecommendationSnapshot } from './profileSwitchRecommendation';
|
|
53
56
|
export type { VoiceReadinessFailureView, VoiceReadinessFailuresViewModel, VoiceReadinessFailuresWidgetOptions } from './readinessFailuresWidget';
|
|
54
57
|
export type { VoiceProfileComparisonProfileView, VoiceProfileComparisonViewModel, VoiceProfileComparisonWidgetOptions } from './profileComparisonWidget';
|
|
55
58
|
export type { VoiceOpsActionCenterClientOptions, VoiceOpsActionCenterPresetOptions, VoiceOpsActionCenterSnapshot, VoiceOpsActionDescriptor, VoiceOpsActionMethod, VoiceOpsActionRunResult } from './opsActionCenter';
|