@voiceflow/base-types
Advanced tools
Comparing version 2.89.1 to 2.90.0
export declare enum ProjectNLP { | ||
LUIS = "LUIS" | ||
/** | ||
* @deprecated | ||
* LUIS NLU is being sunset by Microsoft and we are replacing it with VFNLU. Use | ||
* `ProjectNLP.VFNLU` instead. | ||
*/ | ||
LUIS = "LUIS", | ||
VFNLU = "VFNLU" | ||
} | ||
export declare type Variable = string; |
@@ -6,4 +6,10 @@ "use strict"; | ||
(function (ProjectNLP) { | ||
/** | ||
* @deprecated | ||
* LUIS NLU is being sunset by Microsoft and we are replacing it with VFNLU. Use | ||
* `ProjectNLP.VFNLU` instead. | ||
*/ | ||
ProjectNLP["LUIS"] = "LUIS"; | ||
ProjectNLP["VFNLU"] = "VFNLU"; | ||
})(ProjectNLP = exports.ProjectNLP || (exports.ProjectNLP = {})); | ||
//# sourceMappingURL=common.js.map |
@@ -6,2 +6,7 @@ import { AnyRecord } from '@voiceflow/common'; | ||
} | ||
/** | ||
* @deprecated | ||
* LUIS NLU is being sunset by Microsoft and we are replacing it with VFNLU. Use `PrototypeNLPVFNLU` | ||
* instead. | ||
*/ | ||
export interface PrototypeNLPLuis extends PrototypeNLPBase { | ||
@@ -12,3 +17,6 @@ type: ProjectNLP.LUIS; | ||
} | ||
export declare type PrototypeNLP = PrototypeNLPLuis; | ||
export interface PrototypeNLPVFNLU extends PrototypeNLPBase { | ||
type: ProjectNLP.VFNLU; | ||
} | ||
export declare type PrototypeNLP = PrototypeNLPLuis | PrototypeNLPVFNLU; | ||
export interface Prototype<Data extends AnyRecord = AnyRecord> { | ||
@@ -15,0 +23,0 @@ nlp?: PrototypeNLP; |
export declare enum ProjectNLP { | ||
LUIS = "LUIS" | ||
/** | ||
* @deprecated | ||
* LUIS NLU is being sunset by Microsoft and we are replacing it with VFNLU. Use | ||
* `ProjectNLP.VFNLU` instead. | ||
*/ | ||
LUIS = "LUIS", | ||
VFNLU = "VFNLU" | ||
} | ||
export declare type Variable = string; |
export var ProjectNLP; | ||
(function (ProjectNLP) { | ||
/** | ||
* @deprecated | ||
* LUIS NLU is being sunset by Microsoft and we are replacing it with VFNLU. Use | ||
* `ProjectNLP.VFNLU` instead. | ||
*/ | ||
ProjectNLP["LUIS"] = "LUIS"; | ||
ProjectNLP["VFNLU"] = "VFNLU"; | ||
})(ProjectNLP || (ProjectNLP = {})); | ||
//# sourceMappingURL=common.js.map |
@@ -6,2 +6,7 @@ import { AnyRecord } from '@voiceflow/common'; | ||
} | ||
/** | ||
* @deprecated | ||
* LUIS NLU is being sunset by Microsoft and we are replacing it with VFNLU. Use `PrototypeNLPVFNLU` | ||
* instead. | ||
*/ | ||
export interface PrototypeNLPLuis extends PrototypeNLPBase { | ||
@@ -12,3 +17,6 @@ type: ProjectNLP.LUIS; | ||
} | ||
export declare type PrototypeNLP = PrototypeNLPLuis; | ||
export interface PrototypeNLPVFNLU extends PrototypeNLPBase { | ||
type: ProjectNLP.VFNLU; | ||
} | ||
export declare type PrototypeNLP = PrototypeNLPLuis | PrototypeNLPVFNLU; | ||
export interface Prototype<Data extends AnyRecord = AnyRecord> { | ||
@@ -15,0 +23,0 @@ nlp?: PrototypeNLP; |
{ | ||
"name": "@voiceflow/base-types", | ||
"description": "Voiceflow base project types", | ||
"version": "2.89.1", | ||
"version": "2.90.0", | ||
"author": "Voiceflow", | ||
@@ -48,3 +48,3 @@ "bugs": { | ||
"types": "build/cjs/index.d.ts", | ||
"gitHead": "afd2a202b8caea5b74d37329256ebb15322fdfec" | ||
"gitHead": "0e67c85513ea112784d630fdc0dde0e0667dbf01" | ||
} |
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
Sorry, the diff of this file is not supported yet
506470
8756