@sigmaott/base-next 1.4.16 → 1.4.18

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sigmaott/base-next",
3
3
  "type": "module",
4
- "version": "1.4.16",
4
+ "version": "1.4.18",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -115,7 +115,7 @@ async function onLoadPath() {
115
115
  machineId: serverConfig?.machineId,
116
116
  machineType: serverConfig?.machineType,
117
117
  mode: serverConfig?.mode,
118
- specMachineId: input.value?.machineConfig.specMachineId || undefined,
118
+ specMachineId: input.value?.machineConfig?.specMachineId || undefined,
119
119
  },
120
120
  path: formPathValue.value.path,
121
121
  })
@@ -177,8 +177,8 @@ async function handleSelectConfig(id: string) {
177
177
  bchValue.value = config.bch || defaultTableForensic.value[0].bch
178
178
 
179
179
  defaultTableForensic.value[0].wm = config.wm
180
- defaultTableForensic.value[0].wmB = config.wmB
181
- defaultTableForensic.value[0].alpha = config.alpha
180
+ defaultTableForensic.value[0].wmB = config.wmB || '0xff'
181
+ defaultTableForensic.value[0].alpha = config.alpha || 0.15
182
182
  defaultTableForensic.value[0].crc = config.crc
183
183
  defaultTableForensic.value[0].step = config.step
184
184
  defaultTableForensic.value[0].bch = config.bch
@@ -75,7 +75,7 @@ const loadPathPlayoutMutation = useMutation(
75
75
  (payload: {
76
76
  machineConfig: any
77
77
  path: string
78
- }) => $playoutApi('/api/playout/pte/pte-info-model', {
78
+ }) => $playoutApi('/api/playout/ai-model/pte-info-model', {
79
79
  body: {
80
80
  ...payload.machineConfig,
81
81
  path: payload.path,