guideai-app 0.4.3 → 0.5.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.
Files changed (73) hide show
  1. package/README.md +86 -5
  2. package/dist/GuideAI.d.ts +1 -1
  3. package/dist/GuideAI.js +1 -1
  4. package/dist/GuideAI.js.map +1 -1
  5. package/dist/components/AnimatedSettingsItem.d.ts +9 -0
  6. package/dist/components/Microphone.d.ts +19 -0
  7. package/dist/components/MuteButton.d.ts +11 -0
  8. package/dist/components/ResetButton.d.ts +9 -0
  9. package/dist/components/SettingsMenu.d.ts +16 -0
  10. package/dist/components/SettingsToggle.d.ts +7 -0
  11. package/dist/components/TranscriptBox.d.ts +19 -12
  12. package/dist/components/TranscriptMessages.d.ts +8 -0
  13. package/dist/components/TranscriptTextInput.d.ts +11 -0
  14. package/dist/components/TranscriptToggle.d.ts +7 -0
  15. package/dist/hooks/index.d.ts +3 -0
  16. package/dist/hooks/useGuideAIAPI.d.ts +22 -0
  17. package/dist/hooks/useTranscriptState.d.ts +21 -0
  18. package/dist/hooks/useWebRTC.d.ts +63 -0
  19. package/dist/index.d.ts +2 -1
  20. package/dist/styles/GuideAI.styles.d.ts +7 -1
  21. package/dist/types/GuideAI.types.d.ts +19 -21
  22. package/dist/utils/api.d.ts +17 -18
  23. package/dist/utils/constants.d.ts +20 -5
  24. package/dist/utils/conversationManager.d.ts +89 -0
  25. package/dist/utils/dataChannel.d.ts +85 -0
  26. package/dist/utils/elementInteractions.d.ts +38 -2
  27. package/dist/utils/highlightThenClick.d.ts +2 -1
  28. package/dist/utils/hover.d.ts +2 -0
  29. package/dist/utils/hoverThenClick.d.ts +2 -1
  30. package/dist/utils/isChromeExtension.d.ts +5 -0
  31. package/dist/utils/localStorageHelper.d.ts +57 -0
  32. package/dist/utils/logger.d.ts +50 -9
  33. package/dist/utils/messageStorage.d.ts +16 -3
  34. package/dist/utils/positionUtils.d.ts +39 -0
  35. package/dist/utils/webrtcConnection.d.ts +56 -0
  36. package/dist/visualContext/VisualContextScheduler.d.ts +11 -14
  37. package/dist/visualContext/domChangeTracker.d.ts +16 -0
  38. package/dist/visualContext/index.d.ts +8 -1
  39. package/dist/visualContext/types.d.ts +4 -0
  40. package/dist/visualContext/useVisualContext.d.ts +32 -0
  41. package/package.json +12 -6
  42. package/.workflow-test +0 -1
  43. package/API_DATA_CONTRACTS.md +0 -516
  44. package/API_SESSIONID_TESTING.md +0 -215
  45. package/GuideAI.d.ts +0 -19
  46. package/GuideAI.js +0 -1
  47. package/GuideAI.js.LICENSE.txt +0 -16
  48. package/GuideAI.js.map +0 -1
  49. package/PII_HASHING_EPIC.md +0 -886
  50. package/PII_HASHING_STORIES_SUMMARY.md +0 -275
  51. package/PRODUCTION_RELEASE.md +0 -126
  52. package/SESSION_ID_VERIFICATION.md +0 -122
  53. package/VISIT_COUNT_TESTING.md +0 -453
  54. package/dist/metric/event-listner.d.ts +0 -143
  55. package/dist/metric/index.d.ts +0 -2
  56. package/dist/metric/metadata-tracker.d.ts +0 -50
  57. package/dist/types/metadata.types.d.ts +0 -48
  58. package/dist/utils/gemini.d.ts +0 -5
  59. package/dist/utils/highlightAndClick.d.ts +0 -3
  60. package/dist/utils/hoverAndClick.d.ts +0 -4
  61. package/index.d.ts +0 -7
  62. package/jest.config.js +0 -26
  63. package/jest.setup.js +0 -21
  64. package/metadata-tracking-example.md +0 -324
  65. package/obfuscate.js +0 -40
  66. package/obfuscator.prod.json +0 -24
  67. package/rollup.config.js +0 -34
  68. package/structure.md +0 -128
  69. package/text-input-usage.md +0 -321
  70. package/transcript-toggle-usage.md +0 -267
  71. package/visit-tracking-usage.md +0 -134
  72. package/webpack.config.js +0 -55
  73. package/workflow-trigger-usage.md +0 -398
@@ -1,16 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright 2023 Google LLC
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing, software
12
- * distributed under the License is distributed on an "AS IS" BASIS,
13
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- * See the License for the specific language governing permissions and
15
- * limitations under the License.
16
- */