Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vivocha/public-wrappers

Package Overview
Dependencies
Maintainers
0
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vivocha/public-wrappers - npm Package Compare versions

Comparing version 1.0.5-contact-ani.0 to 1.1.0-ai-messages-channels.0

37

CHANGELOG.md

@@ -6,3 +6,3 @@ # Change Log

## [1.0.4](https://github.com/vivocha/vivocha/compare/@vivocha/public-wrappers@1.0.4-multi-attachment.1...@vivocha/public-wrappers@1.0.4) (2024-07-24)
# [1.1.0-gaia.7](https://github.com/vivocha/vivocha/compare/@vivocha/public-wrappers@1.1.0-gaia.6...@vivocha/public-wrappers@1.1.0-gaia.7) (2024-09-09)

@@ -15,2 +15,37 @@ **Note:** Version bump only for package @vivocha/public-wrappers

# [1.1.0-gaia.6](https://github.com/vivocha/vivocha/compare/@vivocha/public-wrappers@1.1.0-gaia.5...@vivocha/public-wrappers@1.1.0-gaia.6) (2024-08-27)
**Note:** Version bump only for package @vivocha/public-wrappers
# [1.1.0-gaia.5](https://github.com/vivocha/vivocha/compare/@vivocha/public-wrappers@1.1.0-gaia.4...@vivocha/public-wrappers@1.1.0-gaia.5) (2024-08-09)
### Bug Fixes
* **public-wrappers:** add param to return empty string w/o constant ([a137ac7](https://github.com/vivocha/vivocha/commit/a137ac7eb5525de043ed503ef2893917841f62c5))
# [1.1.0-gaia.4](https://github.com/vivocha/vivocha/compare/@vivocha/public-wrappers@1.1.0-gaia.3...@vivocha/public-wrappers@1.1.0-gaia.4) (2024-07-25)
**Note:** Version bump only for package @vivocha/public-wrappers
# [1.1.0-gaia.3](https://github.com/vivocha/vivocha/compare/@vivocha/public-wrappers@1.1.0-gaia.2...@vivocha/public-wrappers@1.1.0-gaia.3) (2024-07-18)
**Note:** Version bump only for package @vivocha/public-wrappers
## [1.0.3](https://github.com/vivocha/vivocha/compare/@vivocha/public-wrappers@1.0.2...@vivocha/public-wrappers@1.0.3) (2024-06-19)

@@ -17,0 +52,0 @@

3

dist/data_collection.d.ts

@@ -10,5 +10,6 @@ import { ContactDataCollection, ContactDataCollectionForm } from '@vivocha/public-types';

* @param def Data collection definition from database
* @param defEmptyString If true, will return empty string for fields not configured as constant
* @returns only value in variables configured as constant
*/
export declare function dataCollectionDefaultConstantToObject(def: any): {};
export declare function dataCollectionDefaultConstantToObject(def: any, defEmptyString?: boolean): any;
export declare function dataCollectionToObject(form: ContactDataCollectionForm): any;

@@ -15,0 +16,0 @@ export declare function findInDataCollection(forms: ContactDataCollection, type: string): any[];

@@ -119,5 +119,6 @@ "use strict";

* @param def Data collection definition from database
* @param defEmptyString If true, will return empty string for fields not configured as constant
* @returns only value in variables configured as constant
*/
function dataCollectionDefaultConstantToObject(def) {
function dataCollectionDefaultConstantToObject(def, defEmptyString) {
let tmp = {};

@@ -129,2 +130,5 @@ if (def.fields && def.fields.length > 0) {

}
else if (defEmptyString) {
tmp[f.id] = '';
}
}

@@ -131,0 +135,0 @@ }

@@ -5,3 +5,1 @@ export * from './data_collection';

export * from './script';
export * from './widget';
export * from './widget_browser';

@@ -17,4 +17,2 @@ "use strict";

__exportStar(require("./script"), exports);
__exportStar(require("./widget"), exports);
__exportStar(require("./widget_browser"), exports);
//# sourceMappingURL=index.js.map
{
"name": "@vivocha/public-wrappers",
"version": "1.0.5-contact-ani.0",
"version": "1.1.0-ai-messages-channels.0",
"description": "Vivocha public wrappers",

@@ -30,7 +30,4 @@ "main": "dist/index.js",

"dependencies": {
"@vivocha/public-types": "1.2.2-contact-ani.0",
"eredita": "^1.1.4",
"node-sass": "^4.12.0",
"request": "^2.88.0",
"sass.js": "^0.10.13"
"@vivocha/public-types": "1.3.0-ai-messages-channels.0",
"eredita": "^1.1.4"
},

@@ -45,3 +42,3 @@ "devDependencies": {

},
"gitHead": "4c1f598db8115b19f7f969787bde42300e705909"
"gitHead": "b9df3d594c4121512a081601166b9badb59c1bce"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc