@voiceflow/base-types 1.12.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/button/index.d.ts +1 -1
- package/build/index.d.ts +1 -0
- package/build/index.js +4 -0
- package/build/index.js.map +1 -1
- package/build/models/index.d.ts +0 -1
- package/build/models/index.js +0 -1
- package/build/models/index.js.map +1 -1
- package/build/models/project.d.ts +1 -1
- package/build/models/shared.d.ts +1 -1
- package/build/models/version.d.ts +1 -1
- package/build/node/_v1.d.ts +1 -1
- package/build/node/api.d.ts +1 -1
- package/build/node/buttons.d.ts +1 -1
- package/build/node/capture.d.ts +1 -1
- package/build/node/exit.d.ts +1 -1
- package/build/node/flow.d.ts +1 -1
- package/build/node/general.d.ts +1 -1
- package/build/node/googleSheets.d.ts +1 -1
- package/build/node/jump.d.ts +1 -1
- package/build/node/push.d.ts +1 -1
- package/build/node/set.d.ts +1 -1
- package/build/node/setV2.d.ts +1 -1
- package/build/node/speak.d.ts +1 -1
- package/build/node/utils/base.d.ts +1 -1
- package/build/node/utils/command.d.ts +1 -1
- package/build/node/utils/expression.d.ts +1 -1
- package/build/node/utils/integration.d.ts +1 -1
- package/build/node/utils/noMatch.d.ts +1 -1
- package/build/node/utils/reprompt.d.ts +1 -1
- package/build/node/visual.d.ts +1 -1
- package/build/{models/utils.d.ts → utils.d.ts} +0 -0
- package/build/{models/utils.js → utils.js} +0 -0
- package/build/utils.js.map +1 -0
- package/build/version/settings.d.ts +1 -1
- package/package.json +2 -2
- package/build/models/utils.js.map +0 -1
package/build/button/index.d.ts
CHANGED
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -18,6 +18,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
18
18
|
__setModuleDefault(result, mod);
|
|
19
19
|
return result;
|
|
20
20
|
};
|
|
21
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
22
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
23
|
+
};
|
|
21
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
25
|
exports.Version = exports.Trace = exports.Text = exports.Request = exports.Project = exports.Node = exports.Models = exports.Button = void 0;
|
|
23
26
|
exports.Button = __importStar(require("./button"));
|
|
@@ -27,5 +30,6 @@ exports.Project = __importStar(require("./project"));
|
|
|
27
30
|
exports.Request = __importStar(require("./request"));
|
|
28
31
|
exports.Text = __importStar(require("./text"));
|
|
29
32
|
exports.Trace = __importStar(require("./trace"));
|
|
33
|
+
__exportStar(require("./utils"), exports);
|
|
30
34
|
exports.Version = __importStar(require("./version"));
|
|
31
35
|
//# sourceMappingURL=index.js.map
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mDAAmC;AACnC,mDAAmC;AACnC,+CAA+B;AAC/B,qDAAqC;AACrC,qDAAqC;AACrC,+CAA+B;AAC/B,iDAAiC;AACjC,0CAAwB;AACxB,qDAAqC"}
|
package/build/models/index.d.ts
CHANGED
package/build/models/index.js
CHANGED
|
@@ -16,6 +16,5 @@ __exportStar(require("./member"), exports);
|
|
|
16
16
|
__exportStar(require("./program"), exports);
|
|
17
17
|
__exportStar(require("./project"), exports);
|
|
18
18
|
__exportStar(require("./shared"), exports);
|
|
19
|
-
__exportStar(require("./utils"), exports);
|
|
20
19
|
__exportStar(require("./version"), exports);
|
|
21
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAyB;AACzB,4CAA0B;AAC1B,2CAAyB;AACzB,4CAA0B;AAC1B,4CAA0B;AAC1B,2CAAyB;AACzB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAyB;AACzB,4CAA0B;AAC1B,2CAAyB;AACzB,4CAA0B;AAC1B,4CAA0B;AAC1B,2CAAyB;AACzB,4CAA0B"}
|
|
@@ -38,7 +38,7 @@ export interface Project<P extends BasePlatformData, M extends BasePlatformData>
|
|
|
38
38
|
image?: string;
|
|
39
39
|
privacy?: ProjectPrivacy.PRIVATE | ProjectPrivacy.PUBLIC;
|
|
40
40
|
platform: Platform;
|
|
41
|
-
linkType?:
|
|
41
|
+
linkType?: ProjectLinkType;
|
|
42
42
|
prototype?: ProjectPrototype;
|
|
43
43
|
devVersion?: VersionID;
|
|
44
44
|
liveVersion?: VersionID;
|
package/build/models/shared.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import { AnyRecord, Nullable } from '../utils';
|
|
1
2
|
import { BaseCommand, CreatorID, DiagramID, Intent, Name, Platform, ProjectID, PrototypeModel, Slot, Variable, VersionID } from './shared';
|
|
2
|
-
import { AnyRecord, Nullable } from './utils';
|
|
3
3
|
export declare type VersionPlatformDataSettings = Record<string, any>;
|
|
4
4
|
export declare type VersionPlatformDataPublishing = Record<string, any>;
|
|
5
5
|
export interface StrictVersionPlatformData<S extends AnyRecord = AnyRecord, P extends AnyRecord = AnyRecord> {
|
package/build/node/_v1.d.ts
CHANGED
package/build/node/api.d.ts
CHANGED
package/build/node/buttons.d.ts
CHANGED
package/build/node/capture.d.ts
CHANGED
package/build/node/exit.d.ts
CHANGED
package/build/node/flow.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Nullable } from "../
|
|
1
|
+
import { Nullable } from "../utils";
|
|
2
2
|
import { NodeType } from './constants';
|
|
3
3
|
import { BaseNode, BaseStep, BaseTraceFrame, NodeNextID, NodeVariablesMappings, TraceType } from './utils';
|
|
4
4
|
export declare type VariableMapping = [Nullable<string>, Nullable<string>][];
|
package/build/node/general.d.ts
CHANGED
package/build/node/jump.d.ts
CHANGED
package/build/node/push.d.ts
CHANGED
package/build/node/set.d.ts
CHANGED
package/build/node/setV2.d.ts
CHANGED
package/build/node/speak.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Nullable } from "../
|
|
1
|
+
import { Nullable } from "../utils";
|
|
2
2
|
import { NodeType } from './constants';
|
|
3
3
|
import { BaseNode, BaseStep, BaseTraceFrame, NodeNextID, StepCanvasNodeVisibility, TraceType } from './utils';
|
|
4
4
|
export interface StepDataDialog<Dialog> {
|
package/build/node/visual.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voiceflow/base-types",
|
|
3
3
|
"description": "Voiceflow base project types",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"author": "Voiceflow",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/voiceflow/libs/issues"
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"test:integration": "exit 0",
|
|
37
37
|
"test:unit": "exit 0"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "53085c0019d5a5a745416f25b6932e43e6786cd1"
|
|
40
40
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/models/utils.ts"],"names":[],"mappings":""}
|