@veloceapps/sdk 8.0.0-120 → 8.0.0-121

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.
@@ -1152,6 +1152,9 @@ class FlowStateService {
1152
1152
  }));
1153
1153
  })
1154
1154
  .filter(isDefined);
1155
+ if (!owners$.length) {
1156
+ return of(undefined);
1157
+ }
1155
1158
  return forkJoin(owners$).pipe(map$1(noop));
1156
1159
  }
1157
1160
  executeActionScript(request, executable) {
@@ -1187,6 +1190,9 @@ class FlowStateService {
1187
1190
  actions: [],
1188
1191
  selectors: {},
1189
1192
  };
1193
+ if (this.getFlowSafe().properties.standalone) {
1194
+ return request;
1195
+ }
1190
1196
  const ownerId = this.getOwnerIdByScope(UITemplateType.FLOW_ENGINE);
1191
1197
  request.actions?.push({
1192
1198
  apiName: 'INITIALIZE_STATE',