@nexusclawhq/cli 0.3.46 → 0.3.48

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.
Files changed (35) hide show
  1. package/dist/build-info.json +4 -4
  2. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.d.ts +270 -12
  3. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js +277 -19
  4. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js.map +1 -1
  5. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/index.d.ts +540 -24
  6. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.d.ts +270 -12
  7. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js +277 -19
  8. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js.map +1 -1
  9. package/dist/nexus-cli/src/commands/ai/help.test.js +4 -4
  10. package/dist/nexus-cli/src/commands/commands.test.js +1 -1
  11. package/dist/nexus-cli/src/commands/commands.test.js.map +1 -1
  12. package/dist/nexus-cli/src/commands/workforce/learning.js +26 -0
  13. package/dist/nexus-cli/src/commands/workforce/learning.js.map +1 -1
  14. package/dist/nexus-cli/src/contracts/command-contract-matrix.generated.test.js +3 -3
  15. package/dist/nexus-cli/src/contracts/command-inventory.test.js +4 -4
  16. package/dist/nexus-cli/src/contracts/command-policy.exporter.test.js +2 -2
  17. package/dist/nexus-cli/src/contracts/command-policy.registry.test.js +4 -4
  18. package/dist/nexus-cli/src/contracts/command-policy.validator.test.js +2 -2
  19. package/dist/nexus-cli/src/contracts/workforce-contracts.js +2 -0
  20. package/dist/nexus-cli/src/contracts/workforce-contracts.js.map +1 -1
  21. package/dist/nexus-cli/src/services/workforce-bundle-archive.d.ts +1 -1
  22. package/dist/nexus-cli/src/services/workforce-bundle-remote.d.ts +1 -1
  23. package/dist/nexus-cli/src/services/workforce-learning-remote.d.ts +48 -0
  24. package/dist/nexus-cli/src/services/workforce-learning-remote.js +40 -0
  25. package/dist/nexus-cli/src/services/workforce-learning-remote.js.map +1 -1
  26. package/dist/nexus-cli/src/services/workforce-observe-remote.d.ts +19 -8
  27. package/dist/nexus-cli/src/services/workforce-observe-remote.js +28 -14
  28. package/dist/nexus-cli/src/services/workforce-observe-remote.js.map +1 -1
  29. package/dist/nexus-cli/src/services/workforce-observe-remote.test.js +38 -0
  30. package/dist/nexus-cli/src/services/workforce-observe-remote.test.js.map +1 -1
  31. package/dist/nexus-cli/src/services/workforce-test-remote.d.ts +1 -1
  32. package/dist/nexus-cli/src/services/workforce-test-remote.js +1 -1
  33. package/dist/nexus-cli/src/services/workforce-test-remote.test.js +2 -2
  34. package/dist/tsconfig.tsbuildinfo +1 -1
  35. package/package.json +1 -1
@@ -760,6 +760,22 @@ export declare const locales: {
760
760
  confidenceChipTooltip: string;
761
761
  riskChipTooltip: string;
762
762
  draftIntroHint: string;
763
+ changeSummary: string;
764
+ changeReason: string;
765
+ releaseProgress: string;
766
+ nextStep: string;
767
+ viewAndHandle: string;
768
+ businessScope: string;
769
+ technicalDetails: string;
770
+ evidenceCount: string;
771
+ evidenceIds: string;
772
+ actionHintBehavior: string;
773
+ actionHintMaterialize: string;
774
+ actionHintBlocked: string;
775
+ stepDraft: string;
776
+ stepSimulation: string;
777
+ stepApproval: string;
778
+ stepPublish: string;
763
779
  runSimulation: string;
764
780
  runSimulationTooltip: string;
765
781
  runSimulationSuccess: string;
@@ -1887,6 +1903,18 @@ export declare const locales: {
1887
1903
  planStarterName: string;
1888
1904
  planGrowthName: string;
1889
1905
  planEnterpriseName: string;
1906
+ planStarterFeature1: string;
1907
+ planStarterFeature2: string;
1908
+ planStarterFeature3: string;
1909
+ planStarterFeature4: string;
1910
+ planGrowthFeature1: string;
1911
+ planGrowthFeature2: string;
1912
+ planGrowthFeature3: string;
1913
+ planGrowthFeature4: string;
1914
+ planEnterpriseFeature1: string;
1915
+ planEnterpriseFeature2: string;
1916
+ planEnterpriseFeature3: string;
1917
+ planEnterpriseFeature4: string;
1890
1918
  upgrade: string;
1891
1919
  invoiceHistory: string;
1892
1920
  invoicePeriod: string;
@@ -2664,6 +2692,7 @@ export declare const locales: {
2664
2692
  aiKcUpdateOk: string;
2665
2693
  aiKcDeleteOk: string;
2666
2694
  aiKcDeleteConfirm: string;
2695
+ aiKcDeleteFailed: string;
2667
2696
  aiSopStatusDraft: string;
2668
2697
  aiSopStatusReviewed: string;
2669
2698
  aiSopStatusActive: string;
@@ -2961,6 +2990,7 @@ export declare const locales: {
2961
2990
  emptyHint: string;
2962
2991
  totalCount: string;
2963
2992
  actionTest: string;
2993
+ actionEdit: string;
2964
2994
  actionDisable: string;
2965
2995
  actionEnable: string;
2966
2996
  actionDelete: string;
@@ -2970,11 +3000,14 @@ export declare const locales: {
2970
3000
  msgDeleted: string;
2971
3001
  msgDeleteFailed: string;
2972
3002
  msgCreated: string;
3003
+ msgUpdated: string;
2973
3004
  msgCreateFailed: string;
3005
+ msgUpdateFailed: string;
2974
3006
  msgTesting: string;
2975
3007
  msgTestSent: string;
2976
3008
  msgTestFailed: string;
2977
3009
  createTitle: string;
3010
+ editTitle: string;
2978
3011
  fieldTargetUrl: string;
2979
3012
  fieldTargetUrlRequired: string;
2980
3013
  fieldTargetUrlInvalid: string;
@@ -2985,6 +3018,7 @@ export declare const locales: {
2985
3018
  fieldOperationsPlaceholder: string;
2986
3019
  btnCancel: string;
2987
3020
  btnCreate: string;
3021
+ btnSave: string;
2988
3022
  btnDelete: string;
2989
3023
  deleteConfirmTitle: string;
2990
3024
  deleteConfirmText: string;
@@ -4462,6 +4496,16 @@ export declare const locales: {
4462
4496
  pickEmployee: string;
4463
4497
  searchEmployee: string;
4464
4498
  online: string;
4499
+ selectEmployeeTitle: string;
4500
+ selectEmployeeDescription: string;
4501
+ sessionGoalTitle: string;
4502
+ sessionGoalDescription: string;
4503
+ defaultEmployeeGoal: string;
4504
+ sessionResultTitle: string;
4505
+ sessionResultDescription: string;
4506
+ finishAndStartNew: string;
4507
+ openTestCenter: string;
4508
+ openExecutions: string;
4465
4509
  modeVoice: string;
4466
4510
  modeVideo: string;
4467
4511
  servingCustomer: string;
@@ -5076,6 +5120,9 @@ export declare const locales: {
5076
5120
  commentLabel: string;
5077
5121
  rejectReasonRequired: string;
5078
5122
  approveCommentPlaceholder: string;
5123
+ statusNeedsConfirmation: string;
5124
+ valueListSummary: string;
5125
+ valueObjectSummary: string;
5079
5126
  riskLevel: {
5080
5127
  critical: string;
5081
5128
  high: string;
@@ -9451,6 +9498,7 @@ export declare const locales: {
9451
9498
  colTest: string;
9452
9499
  testConnection: string;
9453
9500
  testProviderAria: string;
9501
+ noExecutableTestTarget: string;
9454
9502
  colActions: string;
9455
9503
  systemProviderNoEdit: string;
9456
9504
  confirmDeleteProvider: string;
@@ -12767,6 +12815,10 @@ export declare const locales: {
12767
12815
  };
12768
12816
  };
12769
12817
  formulaFieldUi: {
12818
+ completion: {
12819
+ fieldsSection: string;
12820
+ functionsSection: string;
12821
+ };
12770
12822
  batchRecalculate: {
12771
12823
  title: string;
12772
12824
  skip: string;
@@ -12823,7 +12875,6 @@ export declare const locales: {
12823
12875
  categoriesAriaLabel: string;
12824
12876
  categoryFunctionsAriaLabel: string;
12825
12877
  };
12826
- completion: {};
12827
12878
  };
12828
12879
  navigationUi: {
12829
12880
  searchPlaceholder: string;
@@ -16977,19 +17028,44 @@ export declare const locales: {
16977
17028
  adminPanel: string;
16978
17029
  adminHealth: {
16979
17030
  indicators: {
16980
- database: {};
16981
- redis: {};
17031
+ database: {
17032
+ label: string;
17033
+ description: string;
17034
+ error: string;
17035
+ };
17036
+ redis: {
17037
+ label: string;
17038
+ description: string;
17039
+ error: string;
17040
+ };
16982
17041
  worker: {
16983
17042
  label: string;
16984
17043
  description: string;
16985
17044
  error: string;
16986
17045
  };
16987
- connectedAccount: {};
17046
+ connectedAccount: {
17047
+ label: string;
17048
+ description: string;
17049
+ error: string;
17050
+ };
16988
17051
  app: {
17052
+ label: string;
16989
17053
  description: string;
17054
+ error: string;
16990
17055
  };
16991
17056
  };
16992
- detailLabels: {};
17057
+ detailLabels: {
17058
+ configuredCheck: string;
17059
+ status: string;
17060
+ waiting: string;
17061
+ active: string;
17062
+ completed: string;
17063
+ failed: string;
17064
+ delayed: string;
17065
+ paused: string;
17066
+ workerCount: string;
17067
+ consumerActive: string;
17068
+ };
16993
17069
  notConfigured: string;
16994
17070
  yes: string;
16995
17071
  no: string;
@@ -17530,6 +17606,24 @@ export declare const locales: {
17530
17606
  searchPlaceholder: string;
17531
17607
  noMatchingItems: string;
17532
17608
  menuPlatformAdminHome: string;
17609
+ sectionPlatformOperations: string;
17610
+ sectionProviderControlPlane: string;
17611
+ sectionSupportGovernance: string;
17612
+ sectionReleaseGovernance: string;
17613
+ sectionPlatformInfrastructure: string;
17614
+ menuOpsSubscriptions: string;
17615
+ menuOpsHealth: string;
17616
+ menuOpsBilling: string;
17617
+ menuOpsRenewals: string;
17618
+ menuAiProvider: string;
17619
+ menuDemoAccess: string;
17620
+ menuTenantExecutionAudit: string;
17621
+ menuPackagePromotions: string;
17622
+ menuPackageRollouts: string;
17623
+ menuAdminPanel: string;
17624
+ menuQueues: string;
17625
+ menuCronJobs: string;
17626
+ menuSystemLogs: string;
17533
17627
  providerControlPlaneUi: {
17534
17628
  family: {
17535
17629
  ai: string;
@@ -18436,6 +18530,34 @@ export declare const locales: {
18436
18530
  sensitiveAllow: string;
18437
18531
  };
18438
18532
  imBotSetup: {
18533
+ testConnectivity: string;
18534
+ connectivityTestFailed: string;
18535
+ connectivityOutcome: {
18536
+ PASS: string;
18537
+ PARTIAL: string;
18538
+ FAIL: string;
18539
+ REDIRECT_REQUIRED: string;
18540
+ };
18541
+ connectivityOutcomeDetail: {
18542
+ PASS: string;
18543
+ PARTIAL: string;
18544
+ FAIL: string;
18545
+ REDIRECT_REQUIRED: string;
18546
+ };
18547
+ connectivityCode: {
18548
+ WEBHOOK_DELIVERY_OK: string;
18549
+ WEBHOOK_HTTP_REJECTED: string;
18550
+ WEBHOOK_PROVIDER_REJECTED: string;
18551
+ CONNECTION_FAILED: string;
18552
+ TARGET_BLOCKED: string;
18553
+ CONFIG_INCOMPLETE: string;
18554
+ TEST_MESSAGE_REQUIRED: string;
18555
+ TEST_MESSAGE_TOO_LONG: string;
18556
+ };
18557
+ webhookTestTitle: string;
18558
+ webhookTestDescription: string;
18559
+ webhookTestPlaceholder: string;
18560
+ webhookTestSend: string;
18439
18561
  toolLabel: {
18440
18562
  recordQuery: string;
18441
18563
  recordAggregate: string;
@@ -18492,6 +18614,11 @@ export declare const locales: {
18492
18614
  step2: string;
18493
18615
  step3: string;
18494
18616
  };
18617
+ webhook: {
18618
+ label: string;
18619
+ step1: string;
18620
+ note: string;
18621
+ };
18495
18622
  phone_agent: {
18496
18623
  label: string;
18497
18624
  step1: string;
@@ -18500,6 +18627,9 @@ export declare const locales: {
18500
18627
  };
18501
18628
  };
18502
18629
  field: {
18630
+ webhook: {
18631
+ webhookUrl: string;
18632
+ };
18503
18633
  wecom: {
18504
18634
  corpId: string;
18505
18635
  agentId: string;
@@ -18550,6 +18680,15 @@ export declare const locales: {
18550
18680
  modePerAgent: string;
18551
18681
  modeDispatcher: string;
18552
18682
  modeSmart: string;
18683
+ explicitBindingRoute: string;
18684
+ boundEmployeeLabel: string;
18685
+ boundEmployeeHelp: string;
18686
+ employeePlaceholder: string;
18687
+ employeeRequired: string;
18688
+ employeeUnavailable: string;
18689
+ selectedEmployeeOverflow: string;
18690
+ selectedEmployeeCount: string;
18691
+ selectedEmployeeListAria: string;
18553
18692
  priorityLabel: string;
18554
18693
  priorityTip: string;
18555
18694
  defaultDispatcherLabel: string;
@@ -18565,6 +18704,8 @@ export declare const locales: {
18565
18704
  deleteChannelAria: string;
18566
18705
  simTitle: string;
18567
18706
  simHint: string;
18707
+ simNoChannel: string;
18708
+ simNoEmployees: string;
18568
18709
  simServing: string;
18569
18710
  simToolsUsed: string;
18570
18711
  simThinking: string;
@@ -18574,25 +18715,104 @@ export declare const locales: {
18574
18715
  addTitle: string;
18575
18716
  pickPlatform: string;
18576
18717
  howTo: string;
18718
+ webhookHowTo: string;
18577
18719
  openConsole: string;
18578
18720
  console: string;
18579
18721
  fillIn: string;
18722
+ webhookFillIn: string;
18723
+ webhookUrlRequired: string;
18724
+ webhookSetupTitle: string;
18725
+ webhookSetupDescription: string;
18726
+ webhookStepAdd: string;
18727
+ webhookStepAddDescription: string;
18728
+ webhookStepUrl: string;
18729
+ webhookStepUrlDescription: string;
18730
+ webhookStepEmployees: string;
18731
+ webhookStepEmployeesDescription: string;
18732
+ webhookConfigured: string;
18733
+ webhookDisabled: string;
18734
+ webhookDeliveryReady: string;
18735
+ webhookDeliveryPaused: string;
18736
+ webhookSendingEmployees: string;
18737
+ webhookSendingEmployeesHelp: string;
18738
+ webhookDeliveryMode: string;
18739
+ webhookDeliveryModeValue: string;
18740
+ webhookUrlConfigured: string;
18741
+ webhookUrlConfiguredValue: string;
18742
+ webhookUrlMissing: string;
18743
+ pauseWebhookDelivery: string;
18744
+ enableWebhookDelivery: string;
18745
+ webhookChannelColumn: string;
18746
+ webhookSenderColumn: string;
18747
+ webhookDeliveryColumn: string;
18748
+ webhookDeliveryEnabled: string;
18749
+ webhookDeliveryPausedLabel: string;
18750
+ webhookConfigHeader: string;
18751
+ flow: {
18752
+ inbound_callback: {
18753
+ title: string;
18754
+ description: string;
18755
+ howTo: string;
18756
+ configure: string;
18757
+ employeesLabel: string;
18758
+ employeesHelp: string;
18759
+ configHeader: string;
18760
+ };
18761
+ inbound_adapter_pending: {
18762
+ title: string;
18763
+ description: string;
18764
+ howTo: string;
18765
+ configure: string;
18766
+ employeesLabel: string;
18767
+ employeesHelp: string;
18768
+ configHeader: string;
18769
+ };
18770
+ embedded_web_chat: {
18771
+ title: string;
18772
+ description: string;
18773
+ howTo: string;
18774
+ configure: string;
18775
+ employeesLabel: string;
18776
+ employeesHelp: string;
18777
+ configHeader: string;
18778
+ };
18779
+ authenticated_api: {
18780
+ title: string;
18781
+ description: string;
18782
+ howTo: string;
18783
+ configure: string;
18784
+ employeesLabel: string;
18785
+ employeesHelp: string;
18786
+ configHeader: string;
18787
+ };
18788
+ outbound_webhook: {
18789
+ title: string;
18790
+ description: string;
18791
+ howTo: string;
18792
+ configure: string;
18793
+ employeesLabel: string;
18794
+ employeesHelp: string;
18795
+ configHeader: string;
18796
+ };
18797
+ voice_channel: {
18798
+ title: string;
18799
+ description: string;
18800
+ howTo: string;
18801
+ configure: string;
18802
+ employeesLabel: string;
18803
+ employeesHelp: string;
18804
+ configHeader: string;
18805
+ };
18806
+ };
18580
18807
  nameLabel: string;
18581
18808
  namePh: string;
18582
18809
  groupLabel: string;
18583
18810
  groupPh: string;
18584
18811
  routingLabel: string;
18585
- routingTip: string;
18586
18812
  credsHeader: string;
18587
18813
  keepSecret: string;
18588
18814
  pastePh: string;
18589
18815
  save: string;
18590
- simExample: {
18591
- salesPioneer: string;
18592
- serviceSteward: string;
18593
- revenueAnalyst: string;
18594
- opsCoach: string;
18595
- };
18596
18816
  };
18597
18817
  settingsRestPages: {
18598
18818
  sopDetail: {
@@ -19336,6 +19556,14 @@ export declare const locales: {
19336
19556
  publishRequiresApproval: string;
19337
19557
  draftActionsLocked: string;
19338
19558
  approvalActionUnavailable: string;
19559
+ agentChangeSummaryTitle: string;
19560
+ agentChangeSummaryDescription: string;
19561
+ agentPersonaLabel: string;
19562
+ agentPersonaHelp: string;
19563
+ agentInstructionsLabel: string;
19564
+ agentInstructionsHelp: string;
19565
+ agentIdentityPolicyLabel: string;
19566
+ agentIdentityPolicyHelp: string;
19339
19567
  };
19340
19568
  table: {
19341
19569
  tabRecommendations: string;
@@ -19456,6 +19684,14 @@ export declare const locales: {
19456
19684
  operatingLoopTitle: string;
19457
19685
  operatingLoopSubtitle: string;
19458
19686
  operatingLoopAction: string;
19687
+ operatingLoopActionByStage: {
19688
+ discover: string;
19689
+ hire: string;
19690
+ prove: string;
19691
+ deploy: string;
19692
+ learn: string;
19693
+ improve: string;
19694
+ };
19459
19695
  operatingLoopStage: {
19460
19696
  discover: string;
19461
19697
  hire: string;
@@ -19601,6 +19837,28 @@ export declare const locales: {
19601
19837
  truncation: string;
19602
19838
  composerOpen: string;
19603
19839
  composerCancel: string;
19840
+ impact: string;
19841
+ confidence: string;
19842
+ testCandidateCount: string;
19843
+ nextStep: string;
19844
+ noDraftTitle: string;
19845
+ noDraftDescription: string;
19846
+ noDraftHowTitle: string;
19847
+ noDraftHowEvidence: string;
19848
+ noDraftHowCandidate: string;
19849
+ noDraftHowContinue: string;
19850
+ stageNavigation: string;
19851
+ stageNumber: string;
19852
+ selectItemHint: string;
19853
+ evidenceOpenHint: string;
19854
+ cardNextStep: string;
19855
+ stageHint: {
19856
+ evidence: string;
19857
+ recommendations: string;
19858
+ blueprints: string;
19859
+ gate: string;
19860
+ artifacts: string;
19861
+ };
19604
19862
  column: {
19605
19863
  evidence: string;
19606
19864
  recommendations: string;
@@ -20842,6 +21100,22 @@ export declare const locales: {
20842
21100
  confidenceChipTooltip: string;
20843
21101
  riskChipTooltip: string;
20844
21102
  draftIntroHint: string;
21103
+ changeSummary: string;
21104
+ changeReason: string;
21105
+ releaseProgress: string;
21106
+ nextStep: string;
21107
+ viewAndHandle: string;
21108
+ businessScope: string;
21109
+ technicalDetails: string;
21110
+ evidenceCount: string;
21111
+ evidenceIds: string;
21112
+ actionHintBehavior: string;
21113
+ actionHintMaterialize: string;
21114
+ actionHintBlocked: string;
21115
+ stepDraft: string;
21116
+ stepSimulation: string;
21117
+ stepApproval: string;
21118
+ stepPublish: string;
20845
21119
  runSimulation: string;
20846
21120
  runSimulationTooltip: string;
20847
21121
  runSimulationSuccess: string;
@@ -21969,6 +22243,18 @@ export declare const locales: {
21969
22243
  planStarterName: string;
21970
22244
  planGrowthName: string;
21971
22245
  planEnterpriseName: string;
22246
+ planStarterFeature1: string;
22247
+ planStarterFeature2: string;
22248
+ planStarterFeature3: string;
22249
+ planStarterFeature4: string;
22250
+ planGrowthFeature1: string;
22251
+ planGrowthFeature2: string;
22252
+ planGrowthFeature3: string;
22253
+ planGrowthFeature4: string;
22254
+ planEnterpriseFeature1: string;
22255
+ planEnterpriseFeature2: string;
22256
+ planEnterpriseFeature3: string;
22257
+ planEnterpriseFeature4: string;
21972
22258
  upgrade: string;
21973
22259
  invoiceHistory: string;
21974
22260
  invoicePeriod: string;
@@ -22746,6 +23032,7 @@ export declare const locales: {
22746
23032
  aiKcUpdateOk: string;
22747
23033
  aiKcDeleteOk: string;
22748
23034
  aiKcDeleteConfirm: string;
23035
+ aiKcDeleteFailed: string;
22749
23036
  aiSopStatusDraft: string;
22750
23037
  aiSopStatusReviewed: string;
22751
23038
  aiSopStatusActive: string;
@@ -23043,6 +23330,7 @@ export declare const locales: {
23043
23330
  emptyHint: string;
23044
23331
  totalCount: string;
23045
23332
  actionTest: string;
23333
+ actionEdit: string;
23046
23334
  actionDisable: string;
23047
23335
  actionEnable: string;
23048
23336
  actionDelete: string;
@@ -23052,11 +23340,14 @@ export declare const locales: {
23052
23340
  msgDeleted: string;
23053
23341
  msgDeleteFailed: string;
23054
23342
  msgCreated: string;
23343
+ msgUpdated: string;
23055
23344
  msgCreateFailed: string;
23345
+ msgUpdateFailed: string;
23056
23346
  msgTesting: string;
23057
23347
  msgTestSent: string;
23058
23348
  msgTestFailed: string;
23059
23349
  createTitle: string;
23350
+ editTitle: string;
23060
23351
  fieldTargetUrl: string;
23061
23352
  fieldTargetUrlRequired: string;
23062
23353
  fieldTargetUrlInvalid: string;
@@ -23067,6 +23358,7 @@ export declare const locales: {
23067
23358
  fieldOperationsPlaceholder: string;
23068
23359
  btnCancel: string;
23069
23360
  btnCreate: string;
23361
+ btnSave: string;
23070
23362
  btnDelete: string;
23071
23363
  deleteConfirmTitle: string;
23072
23364
  deleteConfirmText: string;
@@ -24544,6 +24836,16 @@ export declare const locales: {
24544
24836
  pickEmployee: string;
24545
24837
  searchEmployee: string;
24546
24838
  online: string;
24839
+ selectEmployeeTitle: string;
24840
+ selectEmployeeDescription: string;
24841
+ sessionGoalTitle: string;
24842
+ sessionGoalDescription: string;
24843
+ defaultEmployeeGoal: string;
24844
+ sessionResultTitle: string;
24845
+ sessionResultDescription: string;
24846
+ finishAndStartNew: string;
24847
+ openTestCenter: string;
24848
+ openExecutions: string;
24547
24849
  modeVoice: string;
24548
24850
  modeVideo: string;
24549
24851
  servingCustomer: string;
@@ -25158,6 +25460,9 @@ export declare const locales: {
25158
25460
  commentLabel: string;
25159
25461
  rejectReasonRequired: string;
25160
25462
  approveCommentPlaceholder: string;
25463
+ statusNeedsConfirmation: string;
25464
+ valueListSummary: string;
25465
+ valueObjectSummary: string;
25161
25466
  riskLevel: {
25162
25467
  critical: string;
25163
25468
  high: string;
@@ -29535,6 +29840,7 @@ export declare const locales: {
29535
29840
  colTest: string;
29536
29841
  testConnection: string;
29537
29842
  testProviderAria: string;
29843
+ noExecutableTestTarget: string;
29538
29844
  colActions: string;
29539
29845
  systemProviderNoEdit: string;
29540
29846
  confirmDeleteProvider: string;
@@ -32849,6 +33155,10 @@ export declare const locales: {
32849
33155
  };
32850
33156
  };
32851
33157
  formulaFieldUi: {
33158
+ completion: {
33159
+ fieldsSection: string;
33160
+ functionsSection: string;
33161
+ };
32852
33162
  batchRecalculate: {
32853
33163
  title: string;
32854
33164
  skip: string;
@@ -32905,7 +33215,6 @@ export declare const locales: {
32905
33215
  categoriesAriaLabel: string;
32906
33216
  categoryFunctionsAriaLabel: string;
32907
33217
  };
32908
- completion: {};
32909
33218
  };
32910
33219
  navigationUi: {
32911
33220
  searchPlaceholder: string;
@@ -37059,19 +37368,44 @@ export declare const locales: {
37059
37368
  adminPanel: string;
37060
37369
  adminHealth: {
37061
37370
  indicators: {
37062
- database: {};
37063
- redis: {};
37371
+ database: {
37372
+ label: string;
37373
+ description: string;
37374
+ error: string;
37375
+ };
37376
+ redis: {
37377
+ label: string;
37378
+ description: string;
37379
+ error: string;
37380
+ };
37064
37381
  worker: {
37065
37382
  label: string;
37066
37383
  description: string;
37067
37384
  error: string;
37068
37385
  };
37069
- connectedAccount: {};
37386
+ connectedAccount: {
37387
+ label: string;
37388
+ description: string;
37389
+ error: string;
37390
+ };
37070
37391
  app: {
37392
+ label: string;
37071
37393
  description: string;
37394
+ error: string;
37072
37395
  };
37073
37396
  };
37074
- detailLabels: {};
37397
+ detailLabels: {
37398
+ configuredCheck: string;
37399
+ status: string;
37400
+ waiting: string;
37401
+ active: string;
37402
+ completed: string;
37403
+ failed: string;
37404
+ delayed: string;
37405
+ paused: string;
37406
+ workerCount: string;
37407
+ consumerActive: string;
37408
+ };
37075
37409
  notConfigured: string;
37076
37410
  yes: string;
37077
37411
  no: string;
@@ -37612,6 +37946,24 @@ export declare const locales: {
37612
37946
  searchPlaceholder: string;
37613
37947
  noMatchingItems: string;
37614
37948
  menuPlatformAdminHome: string;
37949
+ sectionPlatformOperations: string;
37950
+ sectionProviderControlPlane: string;
37951
+ sectionSupportGovernance: string;
37952
+ sectionReleaseGovernance: string;
37953
+ sectionPlatformInfrastructure: string;
37954
+ menuOpsSubscriptions: string;
37955
+ menuOpsHealth: string;
37956
+ menuOpsBilling: string;
37957
+ menuOpsRenewals: string;
37958
+ menuAiProvider: string;
37959
+ menuDemoAccess: string;
37960
+ menuTenantExecutionAudit: string;
37961
+ menuPackagePromotions: string;
37962
+ menuPackageRollouts: string;
37963
+ menuAdminPanel: string;
37964
+ menuQueues: string;
37965
+ menuCronJobs: string;
37966
+ menuSystemLogs: string;
37615
37967
  providerControlPlaneUi: {
37616
37968
  family: {
37617
37969
  ai: string;
@@ -38518,6 +38870,34 @@ export declare const locales: {
38518
38870
  sensitiveAllow: string;
38519
38871
  };
38520
38872
  imBotSetup: {
38873
+ testConnectivity: string;
38874
+ connectivityTestFailed: string;
38875
+ connectivityOutcome: {
38876
+ PASS: string;
38877
+ PARTIAL: string;
38878
+ FAIL: string;
38879
+ REDIRECT_REQUIRED: string;
38880
+ };
38881
+ connectivityOutcomeDetail: {
38882
+ PASS: string;
38883
+ PARTIAL: string;
38884
+ FAIL: string;
38885
+ REDIRECT_REQUIRED: string;
38886
+ };
38887
+ connectivityCode: {
38888
+ WEBHOOK_DELIVERY_OK: string;
38889
+ WEBHOOK_HTTP_REJECTED: string;
38890
+ WEBHOOK_PROVIDER_REJECTED: string;
38891
+ CONNECTION_FAILED: string;
38892
+ TARGET_BLOCKED: string;
38893
+ CONFIG_INCOMPLETE: string;
38894
+ TEST_MESSAGE_REQUIRED: string;
38895
+ TEST_MESSAGE_TOO_LONG: string;
38896
+ };
38897
+ webhookTestTitle: string;
38898
+ webhookTestDescription: string;
38899
+ webhookTestPlaceholder: string;
38900
+ webhookTestSend: string;
38521
38901
  toolLabel: {
38522
38902
  recordQuery: string;
38523
38903
  recordAggregate: string;
@@ -38574,6 +38954,11 @@ export declare const locales: {
38574
38954
  step2: string;
38575
38955
  step3: string;
38576
38956
  };
38957
+ webhook: {
38958
+ label: string;
38959
+ step1: string;
38960
+ note: string;
38961
+ };
38577
38962
  phone_agent: {
38578
38963
  label: string;
38579
38964
  step1: string;
@@ -38582,6 +38967,9 @@ export declare const locales: {
38582
38967
  };
38583
38968
  };
38584
38969
  field: {
38970
+ webhook: {
38971
+ webhookUrl: string;
38972
+ };
38585
38973
  wecom: {
38586
38974
  corpId: string;
38587
38975
  agentId: string;
@@ -38632,6 +39020,15 @@ export declare const locales: {
38632
39020
  modePerAgent: string;
38633
39021
  modeDispatcher: string;
38634
39022
  modeSmart: string;
39023
+ explicitBindingRoute: string;
39024
+ boundEmployeeLabel: string;
39025
+ boundEmployeeHelp: string;
39026
+ employeePlaceholder: string;
39027
+ employeeRequired: string;
39028
+ employeeUnavailable: string;
39029
+ selectedEmployeeOverflow: string;
39030
+ selectedEmployeeCount: string;
39031
+ selectedEmployeeListAria: string;
38635
39032
  priorityLabel: string;
38636
39033
  priorityTip: string;
38637
39034
  defaultDispatcherLabel: string;
@@ -38647,6 +39044,8 @@ export declare const locales: {
38647
39044
  deleteChannelAria: string;
38648
39045
  simTitle: string;
38649
39046
  simHint: string;
39047
+ simNoChannel: string;
39048
+ simNoEmployees: string;
38650
39049
  simServing: string;
38651
39050
  simToolsUsed: string;
38652
39051
  simThinking: string;
@@ -38656,25 +39055,104 @@ export declare const locales: {
38656
39055
  addTitle: string;
38657
39056
  pickPlatform: string;
38658
39057
  howTo: string;
39058
+ webhookHowTo: string;
38659
39059
  openConsole: string;
38660
39060
  console: string;
38661
39061
  fillIn: string;
39062
+ webhookFillIn: string;
39063
+ webhookUrlRequired: string;
39064
+ webhookSetupTitle: string;
39065
+ webhookSetupDescription: string;
39066
+ webhookStepAdd: string;
39067
+ webhookStepAddDescription: string;
39068
+ webhookStepUrl: string;
39069
+ webhookStepUrlDescription: string;
39070
+ webhookStepEmployees: string;
39071
+ webhookStepEmployeesDescription: string;
39072
+ webhookConfigured: string;
39073
+ webhookDisabled: string;
39074
+ webhookDeliveryReady: string;
39075
+ webhookDeliveryPaused: string;
39076
+ webhookSendingEmployees: string;
39077
+ webhookSendingEmployeesHelp: string;
39078
+ webhookDeliveryMode: string;
39079
+ webhookDeliveryModeValue: string;
39080
+ webhookUrlConfigured: string;
39081
+ webhookUrlConfiguredValue: string;
39082
+ webhookUrlMissing: string;
39083
+ pauseWebhookDelivery: string;
39084
+ enableWebhookDelivery: string;
39085
+ webhookChannelColumn: string;
39086
+ webhookSenderColumn: string;
39087
+ webhookDeliveryColumn: string;
39088
+ webhookDeliveryEnabled: string;
39089
+ webhookDeliveryPausedLabel: string;
39090
+ webhookConfigHeader: string;
39091
+ flow: {
39092
+ inbound_callback: {
39093
+ title: string;
39094
+ description: string;
39095
+ howTo: string;
39096
+ configure: string;
39097
+ employeesLabel: string;
39098
+ employeesHelp: string;
39099
+ configHeader: string;
39100
+ };
39101
+ inbound_adapter_pending: {
39102
+ title: string;
39103
+ description: string;
39104
+ howTo: string;
39105
+ configure: string;
39106
+ employeesLabel: string;
39107
+ employeesHelp: string;
39108
+ configHeader: string;
39109
+ };
39110
+ embedded_web_chat: {
39111
+ title: string;
39112
+ description: string;
39113
+ howTo: string;
39114
+ configure: string;
39115
+ employeesLabel: string;
39116
+ employeesHelp: string;
39117
+ configHeader: string;
39118
+ };
39119
+ authenticated_api: {
39120
+ title: string;
39121
+ description: string;
39122
+ howTo: string;
39123
+ configure: string;
39124
+ employeesLabel: string;
39125
+ employeesHelp: string;
39126
+ configHeader: string;
39127
+ };
39128
+ outbound_webhook: {
39129
+ title: string;
39130
+ description: string;
39131
+ howTo: string;
39132
+ configure: string;
39133
+ employeesLabel: string;
39134
+ employeesHelp: string;
39135
+ configHeader: string;
39136
+ };
39137
+ voice_channel: {
39138
+ title: string;
39139
+ description: string;
39140
+ howTo: string;
39141
+ configure: string;
39142
+ employeesLabel: string;
39143
+ employeesHelp: string;
39144
+ configHeader: string;
39145
+ };
39146
+ };
38662
39147
  nameLabel: string;
38663
39148
  namePh: string;
38664
39149
  groupLabel: string;
38665
39150
  groupPh: string;
38666
39151
  routingLabel: string;
38667
- routingTip: string;
38668
39152
  credsHeader: string;
38669
39153
  keepSecret: string;
38670
39154
  pastePh: string;
38671
39155
  save: string;
38672
- simExample: {
38673
- salesPioneer: string;
38674
- serviceSteward: string;
38675
- revenueAnalyst: string;
38676
- opsCoach: string;
38677
- };
38678
39156
  };
38679
39157
  settingsRestPages: {
38680
39158
  sopDetail: {
@@ -39418,6 +39896,14 @@ export declare const locales: {
39418
39896
  publishRequiresApproval: string;
39419
39897
  draftActionsLocked: string;
39420
39898
  approvalActionUnavailable: string;
39899
+ agentChangeSummaryTitle: string;
39900
+ agentChangeSummaryDescription: string;
39901
+ agentPersonaLabel: string;
39902
+ agentPersonaHelp: string;
39903
+ agentInstructionsLabel: string;
39904
+ agentInstructionsHelp: string;
39905
+ agentIdentityPolicyLabel: string;
39906
+ agentIdentityPolicyHelp: string;
39421
39907
  };
39422
39908
  table: {
39423
39909
  tabRecommendations: string;
@@ -39538,6 +40024,14 @@ export declare const locales: {
39538
40024
  operatingLoopTitle: string;
39539
40025
  operatingLoopSubtitle: string;
39540
40026
  operatingLoopAction: string;
40027
+ operatingLoopActionByStage: {
40028
+ discover: string;
40029
+ hire: string;
40030
+ prove: string;
40031
+ deploy: string;
40032
+ learn: string;
40033
+ improve: string;
40034
+ };
39541
40035
  operatingLoopStage: {
39542
40036
  discover: string;
39543
40037
  hire: string;
@@ -39683,6 +40177,28 @@ export declare const locales: {
39683
40177
  truncation: string;
39684
40178
  composerOpen: string;
39685
40179
  composerCancel: string;
40180
+ impact: string;
40181
+ confidence: string;
40182
+ testCandidateCount: string;
40183
+ nextStep: string;
40184
+ noDraftTitle: string;
40185
+ noDraftDescription: string;
40186
+ noDraftHowTitle: string;
40187
+ noDraftHowEvidence: string;
40188
+ noDraftHowCandidate: string;
40189
+ noDraftHowContinue: string;
40190
+ stageNavigation: string;
40191
+ stageNumber: string;
40192
+ selectItemHint: string;
40193
+ evidenceOpenHint: string;
40194
+ cardNextStep: string;
40195
+ stageHint: {
40196
+ evidence: string;
40197
+ recommendations: string;
40198
+ blueprints: string;
40199
+ gate: string;
40200
+ artifacts: string;
40201
+ };
39686
40202
  column: {
39687
40203
  evidence: string;
39688
40204
  recommendations: string;