Socket
Socket
Sign inDemoInstall

@furystack/rest-service

Package Overview
Dependencies
Maintainers
1
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@furystack/rest-service - npm Package Compare versions

Comparing version 6.2.4 to 6.2.5

18

dist/validate.integration.spec.schema.json

@@ -63,4 +63,13 @@ {

"properties": {
"$endsWith": {
"type": "string"
},
"$like": {
"type": "string"
},
"$regex": {
"type": "string"
},
"$startsWith": {
"type": "string"
}

@@ -107,4 +116,13 @@ },

"properties": {
"$endsWith": {
"type": "string"
},
"$like": {
"type": "string"
},
"$regex": {
"type": "string"
},
"$startsWith": {
"type": "string"
}

@@ -111,0 +129,0 @@ },

22

package.json
{
"name": "@furystack/rest-service",
"version": "6.2.4",
"version": "6.2.5",
"description": "Repository implementation for FuryStack",

@@ -32,10 +32,10 @@ "main": "dist/index.js",

"dependencies": {
"@furystack/core": "^11.2.0",
"@furystack/inject": "^7.1.2",
"@furystack/logging": "^3.1.2",
"@furystack/repository": "^6.1.2",
"@furystack/rest": "^4.1.2",
"@furystack/security": "^2.1.2",
"@furystack/utils": "^3.1.2",
"ajv": "^8.11.0",
"@furystack/core": "^11.2.1",
"@furystack/inject": "^7.1.3",
"@furystack/logging": "^3.1.3",
"@furystack/repository": "^6.1.3",
"@furystack/rest": "^4.1.3",
"@furystack/security": "^2.1.3",
"@furystack/utils": "^3.1.3",
"ajv": "^8.11.2",
"ajv-formats": "^2.1.1",

@@ -46,4 +46,4 @@ "path-to-regexp": "^6.2.1",

"devDependencies": {
"@furystack/rest-client-fetch": "^4.1.2",
"@types/jest": "^29.2.2",
"@furystack/rest-client-fetch": "^4.1.3",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9"

@@ -50,0 +50,0 @@ },

@@ -63,4 +63,13 @@ {

"properties": {
"$endsWith": {
"type": "string"
},
"$like": {
"type": "string"
},
"$regex": {
"type": "string"
},
"$startsWith": {
"type": "string"
}

@@ -107,4 +116,13 @@ },

"properties": {
"$endsWith": {
"type": "string"
},
"$like": {
"type": "string"
},
"$regex": {
"type": "string"
},
"$startsWith": {
"type": "string"
}

@@ -111,0 +129,0 @@ },

@@ -8,3 +8,3 @@ import type { Disposable } from '@furystack/utils';

import type { RequestAction } from './request-action-implementation';
export declare type RestApiImplementation<T extends RestApi> = {
export type RestApiImplementation<T extends RestApi> = {
[TMethod in keyof T]: {

@@ -25,3 +25,3 @@ [TUrl in keyof T[TMethod]]: T[TMethod][TUrl] extends {

}
export declare type CompiledApi = {
export type CompiledApi = {
[K: string]: {

@@ -35,3 +35,3 @@ [R: string]: {

};
export declare type OnRequestOptions = OnRequest & {
export type OnRequestOptions = OnRequest & {
compiledApi: CompiledApi;

@@ -38,0 +38,0 @@ hostName?: string;

@@ -24,3 +24,3 @@ import type { Injector } from '@furystack/inject';

export declare const BypassResult: () => ActionResult<"BypassResult">;
export declare type RequestActionOptions<T extends {
export type RequestActionOptions<T extends {
result: unknown;

@@ -52,5 +52,5 @@ }> = {

} : unknown);
export declare type RequestAction<T extends {
export type RequestAction<T extends {
result: unknown;
}> = (options: RequestActionOptions<T>) => Promise<ActionResult<T['result']>>;
//# sourceMappingURL=request-action-implementation.d.ts.map
/**
* example string literal type - needed for Typescipt Generics
*/
export declare type Language = 'en' | 'hu' | 'de' | 'all';
export type Language = 'en' | 'hu' | 'de' | 'all';
/**

@@ -6,0 +6,0 @@ * example object type - needed for TypeScipt Generics

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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