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

@droz-js/sdk

Package Overview
Dependencies
Maintainers
0
Versions
178
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@droz-js/sdk - npm Package Compare versions

Comparing version 0.9.14 to 0.9.15

2

package.json
{
"name": "@droz-js/sdk",
"description": "Droz SDK",
"version": "0.9.14",
"version": "0.9.15",
"private": false,

@@ -6,0 +6,0 @@ "exports": {

@@ -148,3 +148,2 @@ export type Maybe<T> = T;

name: Scalars['String']['input'];
prompt: Scalars['String']['input'];
tryToReplyOnTransition?: InputMaybe<Scalars['Boolean']['input']>;

@@ -231,3 +230,2 @@ };

name: Scalars['String']['output'];
prompt: Scalars['String']['output'];
tryToReplyOnTransition?: Maybe<Scalars['Boolean']['output']>;

@@ -347,3 +345,2 @@ updatedAt: Scalars['DateTime']['output'];

name?: InputMaybe<Scalars['String']['input']>;
prompt?: InputMaybe<Scalars['String']['input']>;
tryToReplyOnTransition?: InputMaybe<Scalars['Boolean']['input']>;

@@ -391,3 +388,3 @@ };

};
export type QnaFragmentFragment = Pick<QnAInstance, 'id' | 'name' | 'drn' | 'credentialsId' | 'prompt' | 'tryToReplyOnTransition' | 'createdAt' | 'updatedAt'>;
export type QnaFragmentFragment = Pick<QnAInstance, 'id' | 'name' | 'drn' | 'credentialsId' | 'tryToReplyOnTransition' | 'createdAt' | 'updatedAt'>;
export type GetQnAInstanceQueryVariables = Exact<{

@@ -434,3 +431,3 @@ id: Scalars['ID']['input'];

export declare const NlpInstanceFragmentDoc = "\n fragment nlpInstance on NlpInstance {\n id\n name\n drn\n options {\n transition\n samples\n }\n createdAt\n updatedAt\n}\n ";
export declare const QnaFragmentFragmentDoc = "\n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n prompt\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const QnaFragmentFragmentDoc = "\n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const GetNlpInstanceDocument = "\n query getNlpInstance($id: ID!) {\n getNlpInstance(id: $id) {\n ...nlpInstance\n }\n}\n \n fragment nlpInstance on NlpInstance {\n id\n name\n drn\n options {\n transition\n samples\n }\n createdAt\n updatedAt\n}\n ";

@@ -442,8 +439,8 @@ export declare const ListNlpInstancesDocument = "\n query listNlpInstances {\n listNlpInstances {\n ...nlpInstance\n }\n}\n \n fragment nlpInstance on NlpInstance {\n id\n name\n drn\n options {\n transition\n samples\n }\n createdAt\n updatedAt\n}\n ";

export declare const TestNlpInstanceDocument = "\n query testNlpInstance($id: ID!, $sample: String!) {\n testNlpInstance(id: $id, sample: $sample) {\n transition\n confidence\n }\n}\n ";
export declare const GetQnAInstanceDocument = "\n query getQnAInstance($id: ID!) {\n getQnAInstance(id: $id) {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n prompt\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const ListQnAInstancesDocument = "\n query listQnAInstances {\n listQnAInstances {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n prompt\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const GetQnAInstanceDocument = "\n query getQnAInstance($id: ID!) {\n getQnAInstance(id: $id) {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const ListQnAInstancesDocument = "\n query listQnAInstances {\n listQnAInstances {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const TestQnAInstanceDocument = "\n query testQnAInstance($id: ID!, $input: String!, $history: String) {\n testQnAInstance(id: $id, input: $input, history: $history) {\n answer\n context {\n id\n title\n url\n content\n }\n }\n}\n ";
export declare const CreateQnAInstanceDocument = "\n mutation createQnAInstance($input: CreateQnAInstanceInput!) {\n createQnAInstance(input: $input) {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n prompt\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const UpdateQnAInstanceDocument = "\n mutation updateQnAInstance($input: UpdateQnAInstanceInput!) {\n updateQnAInstance(input: $input) {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n prompt\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const RemoveQnAInstanceDocument = "\n mutation removeQnAInstance($input: RemoveQnAInstanceInput!) {\n removeQnAInstance(input: $input) {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n prompt\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const CreateQnAInstanceDocument = "\n mutation createQnAInstance($input: CreateQnAInstanceInput!) {\n createQnAInstance(input: $input) {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const UpdateQnAInstanceDocument = "\n mutation updateQnAInstance($input: UpdateQnAInstanceInput!) {\n updateQnAInstance(input: $input) {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export declare const RemoveQnAInstanceDocument = "\n mutation removeQnAInstance($input: RemoveQnAInstanceInput!) {\n removeQnAInstance(input: $input) {\n ...qnaFragment\n }\n}\n \n fragment qnaFragment on QnAInstance {\n id\n name\n drn\n credentialsId\n tryToReplyOnTransition\n createdAt\n updatedAt\n}\n ";
export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterableIterator<R>;

@@ -450,0 +447,0 @@ export declare function getSdk<C>(requester: Requester<C>): {

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

credentialsId
prompt
tryToReplyOnTransition

@@ -50,0 +49,0 @@ createdAt

@@ -148,2 +148,3 @@ export type Maybe<T> = T;

assigneeId?: Maybe<Array<Maybe<AnalyticsFacetValue>>>;
channelId?: Maybe<Array<Maybe<AnalyticsFacetValue>>>;
customerId?: Maybe<Array<Maybe<AnalyticsFacetValue>>>;

@@ -150,0 +151,0 @@ status?: Maybe<Array<Maybe<AnalyticsFacetValue>>>;

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