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

@dapr/dapr-dev

Package Overview
Dependencies
Maintainers
3
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dapr/dapr-dev - npm Package Compare versions

Comparing version 3.0.0-20230608164322-af71496 to 3.0.0-20230608204250-5e42a79

implementation/Client/GRPCClient/workflow.d.ts

40

implementation/Client/DaprClient.d.ts

@@ -0,15 +1,16 @@

import IClient from "../../interfaces/Client/IClient";
import IClientActorBuilder from "../../interfaces/Client/IClientActorBuilder";
import IClientBinding from "../../interfaces/Client/IClientBinding";
import IClientConfiguration from "../../interfaces/Client/IClientConfiguration";
import IClientCrypto from "../../interfaces/Client/IClientCrypto";
import IClientHealth from "../../interfaces/Client/IClientHealth";
import IClientInvoker from "../../interfaces/Client/IClientInvoker";
import IClientLock from "../../interfaces/Client/IClientLock";
import IClientMetadata from "../../interfaces/Client/IClientMetadata";
import IClientProxy from "../../interfaces/Client/IClientProxy";
import IClientPubSub from "../../interfaces/Client/IClientPubSub";
import IClientState from "../../interfaces/Client/IClientState";
import IClientInvoker from "../../interfaces/Client/IClientInvoker";
import IClientSecret from "../../interfaces/Client/IClientSecret";
import IClientHealth from "../../interfaces/Client/IClientHealth";
import IClientMetadata from "../../interfaces/Client/IClientMetadata";
import IClientSidecar from "../../interfaces/Client/IClientSidecar";
import IClientConfiguration from "../../interfaces/Client/IClientConfiguration";
import IClientProxy from "../../interfaces/Client/IClientProxy";
import IClientLock from "../../interfaces/Client/IClientLock";
import IClientCrypto from "../../interfaces/Client/IClientCrypto";
import IClientActorBuilder from "../../interfaces/Client/IClientActorBuilder";
import IClient from "../../interfaces/Client/IClient";
import IClientState from "../../interfaces/Client/IClientState";
import IClientWorkflow from "../../interfaces/Client/IClientWorkflow";
import { DaprClientOptions } from "../../types/DaprClientOptions";

@@ -20,15 +21,16 @@ import { Logger } from "../../logger/Logger";

readonly daprClient: IClient;
readonly pubsub: IClientPubSub;
readonly state: IClientState;
readonly actor: IClientActorBuilder;
readonly binding: IClientBinding;
readonly configuration: IClientConfiguration;
readonly crypto: IClientCrypto;
readonly health: IClientHealth;
readonly invoker: IClientInvoker;
readonly lock: IClientLock;
readonly metadata: IClientMetadata;
readonly proxy: IClientProxy;
readonly pubsub: IClientPubSub;
readonly secret: IClientSecret;
readonly health: IClientHealth;
readonly metadata: IClientMetadata;
readonly sidecar: IClientSidecar;
readonly configuration: IClientConfiguration;
readonly proxy: IClientProxy;
readonly lock: IClientLock;
readonly crypto: IClientCrypto;
readonly actor: IClientActorBuilder;
readonly state: IClientState;
readonly workflow: IClientWorkflow;
private readonly logger;

@@ -35,0 +37,0 @@ constructor(options?: Partial<DaprClientOptions>);

@@ -46,29 +46,31 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
const GRPCClient_1 = __importDefault(require("./GRPCClient/GRPCClient"));
const actor_1 = __importDefault(require("./GRPCClient/actor"));
const binding_1 = __importDefault(require("./GRPCClient/binding"));
const configuration_1 = __importDefault(require("./GRPCClient/configuration"));
const crypto_1 = __importDefault(require("./GRPCClient/crypto"));
const health_1 = __importDefault(require("./GRPCClient/health"));
const invoker_1 = __importDefault(require("./GRPCClient/invoker"));
const lock_1 = __importDefault(require("./GRPCClient/lock"));
const metadata_1 = __importDefault(require("./GRPCClient/metadata"));
const pubsub_1 = __importDefault(require("./GRPCClient/pubsub"));
const state_1 = __importDefault(require("./GRPCClient/state"));
const invoker_1 = __importDefault(require("./GRPCClient/invoker"));
const secret_1 = __importDefault(require("./GRPCClient/secret"));
const health_1 = __importDefault(require("./GRPCClient/health"));
const metadata_1 = __importDefault(require("./GRPCClient/metadata"));
const sidecar_1 = __importDefault(require("./GRPCClient/sidecar"));
const configuration_1 = __importDefault(require("./GRPCClient/configuration"));
const lock_1 = __importDefault(require("./GRPCClient/lock"));
const crypto_1 = __importDefault(require("./GRPCClient/crypto"));
const actor_1 = __importDefault(require("./GRPCClient/actor"));
const GRPCClient_1 = __importDefault(require("./GRPCClient/GRPCClient"));
const state_1 = __importDefault(require("./GRPCClient/state"));
const workflow_1 = __importDefault(require("./GRPCClient/workflow"));
const HTTPClient_1 = __importDefault(require("./HTTPClient/HTTPClient"));
const actor_2 = __importDefault(require("./HTTPClient/actor"));
const binding_2 = __importDefault(require("./HTTPClient/binding"));
const configuration_2 = __importDefault(require("./HTTPClient/configuration"));
const crypto_2 = __importDefault(require("./HTTPClient/crypto"));
const health_2 = __importDefault(require("./HTTPClient/health"));
const invoker_2 = __importDefault(require("./HTTPClient/invoker"));
const lock_2 = __importDefault(require("./HTTPClient/lock"));
const metadata_2 = __importDefault(require("./HTTPClient/metadata"));
const proxy_1 = __importDefault(require("./HTTPClient/proxy"));
const pubsub_2 = __importDefault(require("./HTTPClient/pubsub"));
const state_2 = __importDefault(require("./HTTPClient/state"));
const invoker_2 = __importDefault(require("./HTTPClient/invoker"));
const secret_2 = __importDefault(require("./HTTPClient/secret"));
const health_2 = __importDefault(require("./HTTPClient/health"));
const metadata_2 = __importDefault(require("./HTTPClient/metadata"));
const sidecar_2 = __importDefault(require("./HTTPClient/sidecar"));
const configuration_2 = __importDefault(require("./HTTPClient/configuration"));
const proxy_1 = __importDefault(require("./HTTPClient/proxy"));
const lock_2 = __importDefault(require("./HTTPClient/lock"));
const crypto_2 = __importDefault(require("./HTTPClient/crypto"));
const actor_2 = __importDefault(require("./HTTPClient/actor"));
const HTTPClient_1 = __importDefault(require("./HTTPClient/HTTPClient"));
const state_2 = __importDefault(require("./HTTPClient/state"));
const workflow_2 = __importDefault(require("./HTTPClient/workflow"));
const CommunicationProtocol_enum_1 = __importDefault(require("../../enum/CommunicationProtocol.enum"));

@@ -106,2 +108,3 @@ const Settings_util_1 = require("../../utils/Settings.util");

this.actor = new actor_1.default(client); // we use an abstractor here since we interface through a builder with the Actor Runtime
this.workflow = new workflow_1.default(client);
break;

@@ -113,15 +116,16 @@ }

this.daprClient = client;
this.state = new state_2.default(client);
this.pubsub = new pubsub_2.default(client);
this.actor = new actor_2.default(client); // we use an abstractor here since we interface through a builder with the Actor Runtime
this.binding = new binding_2.default(client);
this.configuration = new configuration_2.default(client);
this.crypto = new crypto_2.default(client);
this.health = new health_2.default(client);
this.invoker = new invoker_2.default(client);
this.lock = new lock_2.default(client);
this.metadata = new metadata_2.default(client);
this.proxy = new proxy_1.default(client);
this.pubsub = new pubsub_2.default(client);
this.secret = new secret_2.default(client);
this.health = new health_2.default(client);
this.metadata = new metadata_2.default(client);
this.sidecar = new sidecar_2.default(client);
this.configuration = new configuration_2.default(client);
this.proxy = new proxy_1.default(client);
this.lock = new lock_2.default(client);
this.crypto = new crypto_2.default(client);
this.actor = new actor_2.default(client); // we use an abstractor here since we interface through a builder with the Actor Runtime
this.state = new state_2.default(client);
this.workflow = new workflow_2.default(client);
break;

@@ -128,0 +132,0 @@ }

{
"name": "@dapr/dapr-dev",
"version": "3.0.0-20230608164322-af71496",
"version": "3.0.0-20230608204250-5e42a79",
"description": "The official Dapr (https://dapr.io) SDK for Node.js",

@@ -5,0 +5,0 @@ "types": "./build/index.d.ts",

@@ -1,2 +0,2 @@

export declare const SDK_VERSION = "3.0.0-20230608164322-af71496";
export declare const SDK_VERSION = "3.0.0-20230608204250-5e42a79";
export declare const SDK_PACKAGE_NAME = "@dapr/dapr-dev";

@@ -18,3 +18,3 @@ "use strict";

// It is not checked in to the git repository.
exports.SDK_VERSION = "3.0.0-20230608164322-af71496";
exports.SDK_VERSION = "3.0.0-20230608204250-5e42a79";
exports.SDK_PACKAGE_NAME = "@dapr/dapr-dev";
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