eventmodeler 0.4.5 → 0.4.7
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/dist/api/index.d.ts +3 -0
- package/dist/api/index.js +3 -0
- package/dist/eventmodeler.js +5646 -0
- package/dist/index.js +64 -19
- package/dist/slices/guide/guides/codegen.d.ts +5 -0
- package/dist/slices/guide/guides/codegen.js +339 -0
- package/dist/slices/guide/guides/connect-slices.d.ts +5 -0
- package/dist/slices/guide/guides/connect-slices.js +227 -0
- package/dist/slices/guide/guides/create-slices.d.ts +5 -0
- package/dist/slices/guide/guides/create-slices.js +303 -0
- package/dist/slices/guide/guides/explore.d.ts +5 -0
- package/dist/slices/guide/guides/explore.js +227 -0
- package/dist/slices/guide/guides/information-flow.d.ts +5 -0
- package/dist/slices/guide/guides/information-flow.js +316 -0
- package/dist/slices/guide/guides/scenarios.d.ts +5 -0
- package/dist/slices/guide/guides/scenarios.js +269 -0
- package/dist/slices/guide/index.d.ts +1 -0
- package/dist/slices/guide/index.js +40 -0
- package/dist/slices/open-app/index.js +1 -1
- package/package.json +5 -10
package/dist/api/index.d.ts
CHANGED
|
@@ -143,6 +143,9 @@ export declare function removeScenario(modelId: string, scenarioName: string, sl
|
|
|
143
143
|
export declare function createFlow(modelId: string, fromName: string, toName: string): Promise<{
|
|
144
144
|
success: boolean;
|
|
145
145
|
}>;
|
|
146
|
+
export declare function removeFlow(modelId: string, fromName: string, toName: string): Promise<{
|
|
147
|
+
flowId: string;
|
|
148
|
+
}>;
|
|
146
149
|
export interface CompoundFieldInput {
|
|
147
150
|
name: string;
|
|
148
151
|
fieldType: string;
|
package/dist/api/index.js
CHANGED
|
@@ -206,6 +206,9 @@ export async function removeScenario(modelId, scenarioName, sliceName) {
|
|
|
206
206
|
export async function createFlow(modelId, fromName, toName) {
|
|
207
207
|
return cliPost('/cli/create-flow', { modelId, fromName, toName });
|
|
208
208
|
}
|
|
209
|
+
export async function removeFlow(modelId, fromName, toName) {
|
|
210
|
+
return cliPost('/cli/remove-flow', { modelId, fromName, toName });
|
|
211
|
+
}
|
|
209
212
|
export async function createStateChangeSlice(modelId, input) {
|
|
210
213
|
return cliPost('/cli/create-state-change-slice', { modelId, ...input });
|
|
211
214
|
}
|