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

@cyklang/core

Package Overview
Dependencies
Maintainers
0
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cyklang/core - npm Package Compare versions

Comparing version 0.25.2 to 0.25.3

2

dist/DBModels.d.ts

@@ -13,2 +13,3 @@ import { FunctionData, ObjectDataType, Scope, Tag, Variables } from "./Structure";

company: number | undefined;
co_label: string | undefined;
setFromRecord(record: any): void;

@@ -27,2 +28,3 @@ getRecord(): UserRecord;

user_company?: number | undefined;
co_label?: string | undefined;
}

@@ -29,0 +31,0 @@ export declare class DBColumn {

4

dist/DBModels.js

@@ -26,2 +26,3 @@ "use strict";

this.company = record.user_company;
this.co_label = record.co_label;
}

@@ -37,3 +38,4 @@ getRecord() {

user_lang: this.lang,
user_company: this.company
user_company: this.company,
co_label: this.co_label
};

@@ -40,0 +42,0 @@ return record;

{
"name": "@cyklang/core",
"version": "0.25.2",
"version": "0.25.3",
"description": "XML script language",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/pchaneyo/cyk-core",

@@ -22,2 +22,3 @@ import { FunctionData, ObjectData, ObjectDataType, Scope, Tag, Variables, XmlError } from "./Structure"

company: number | undefined
co_label: string | undefined
setFromRecord(record: any) {

@@ -33,2 +34,3 @@ this.id = record.user_id

this.company = record.user_company
this.co_label = record.co_label
}

@@ -44,3 +46,4 @@ getRecord(): UserRecord {

user_lang: this.lang,
user_company: this.company
user_company: this.company,
co_label: this.co_label
}

@@ -61,2 +64,3 @@ return record

user_company?: number | undefined;
co_label?: string | undefined
}

@@ -63,0 +67,0 @@

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