New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nuclia/core

Package Overview
Dependencies
Maintainers
3
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuclia/core - npm Package Compare versions

Comparing version 1.11.7 to 1.11.8

8

CHANGELOG.md

@@ -0,1 +1,7 @@

# 1.11.8 (unreleased)
### Improvements
- Support `all`, `any`, `none` and `not_all` operators in `filters` parameter
# 1.11.7 (2024-02-15)

@@ -32,3 +38,3 @@

- Add `resource_title` to `BaseNotificationData` model
- Add `resource_title` to `BaseNotificationData` model
- Create an interface for `listenToProcessingNotifications` response (`ResourceProcessingNotification`) including the resource title and a timestamp

@@ -35,0 +41,0 @@ - Improve `getStreamMessages`: reconnect if the connection is lost and there was no error for the last 10s

@@ -16,5 +16,14 @@ import type { ExtractedDataTypes, FIELD_TYPE, FieldId, IFieldData, IResource, RelationEntityType, RelationType } from '../resource';

}
export declare enum FilterOperator {
all = "all",
any = "any",
none = "none",
not_all = "not_all"
}
export type Filter = {
[operator in FilterOperator]: string[];
};
export interface BaseSearchOptions {
fields?: string[];
filters?: string[];
filters?: string[] | Filter[];
min_score?: number;

@@ -21,0 +30,0 @@ range_creation_start?: string;

2

package.json
{
"name": "@nuclia/core",
"version": "1.11.7",
"version": "1.11.8",
"description": "SDK allowing to integrate Nuclia services in your frontend application",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -16,5 +16,14 @@ import type { ExtractedDataTypes, FIELD_TYPE, FieldId, IFieldData, IResource, RelationEntityType, RelationType } from '../resource';

}
export declare enum FilterOperator {
all = "all",
any = "any",
none = "none",
not_all = "not_all"
}
export type Filter = {
[operator in FilterOperator]: string[];
};
export interface BaseSearchOptions {
fields?: string[];
filters?: string[];
filters?: string[] | Filter[];
min_score?: number;

@@ -21,0 +30,0 @@ range_creation_start?: string;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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