Socket
Socket
Sign inDemoInstall

@appsemble/types

Package Overview
Dependencies
Maintainers
4
Versions
206
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appsemble/types - npm Package Compare versions

Comparing version 0.15.9 to 0.15.10

24

dist/index.d.ts

@@ -341,2 +341,6 @@ import { Action, BaseMessage, HTTPMethods, LogAction, RequestLikeActionTypes, Theme } from '@appsemble/sdk/src/types';

/**
* The definition for the `resource.count` action.
*/
count?: ResourceCall;
/**
* The definition for the `resource.update` action.

@@ -518,2 +522,3 @@ */

export declare type ResourceQueryActionDefinition = ResourceActionDefinition<'resource.query'>;
export declare type ResourceCountActionDefinition = ResourceActionDefinition<'resource.count'>;
export declare type ResourceUpdateActionDefinition = ResourceActionDefinition<'resource.update'>;

@@ -539,2 +544,8 @@ export interface BaseResourceSubscribeActionDefinition<T extends Action['type']> extends BaseActionDefinition<T> {

event: string;
/**
* An event to wait for before resolving.
*
* If this is unspecified, the action will resolve with the input data.
*/
waitFor?: string;
}

@@ -871,2 +882,15 @@ export interface StaticActionDefinition extends BaseActionDefinition<'static'> {

/**
* Represents a team within an organization.
*/
export interface Team {
/**
* The ID of the team.
*/
id: number;
/**
* The display name of the team.
*/
name: string;
}
/**
* An invite for an organizaton.

@@ -873,0 +897,0 @@ */

4

package.json
{
"name": "@appsemble/types",
"version": "0.15.9",
"version": "0.15.10",
"description": "TypeScript definitions reused within Appsemble internally",

@@ -31,3 +31,3 @@ "keywords": [

"dependencies": {
"@appsemble/sdk": "0.15.9",
"@appsemble/sdk": "0.15.10",
"@fortawesome/fontawesome-common-types": "^0.2.32",

@@ -34,0 +34,0 @@ "openapi-types": "^7.0.1",

@@ -433,2 +433,7 @@ import {

/**
* The definition for the `resource.count` action.
*/
count?: ResourceCall;
/**
* The definition for the `resource.update` action.

@@ -648,2 +653,3 @@ */

export type ResourceQueryActionDefinition = ResourceActionDefinition<'resource.query'>;
export type ResourceCountActionDefinition = ResourceActionDefinition<'resource.count'>;
export type ResourceUpdateActionDefinition = ResourceActionDefinition<'resource.update'>;

@@ -686,2 +692,9 @@

event: string;
/**
* An event to wait for before resolving.
*
* If this is unspecified, the action will resolve with the input data.
*/
waitFor?: string;
}

@@ -1115,2 +1128,17 @@

/**
* Represents a team within an organization.
*/
export interface Team {
/**
* The ID of the team.
*/
id: number;
/**
* The display name of the team.
*/
name: string;
}
/**
* An invite for an organizaton.

@@ -1117,0 +1145,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