@ningboyz/apis 1.6.75 → 1.6.76

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/apis",
3
- "version": "1.6.75",
3
+ "version": "1.6.76",
4
4
  "private": false,
5
5
  "description": "宁波甬政请求库",
6
6
  "author": "nbyt-syq",
@@ -17,7 +17,7 @@
17
17
  "registry": "https://registry.npmjs.org/"
18
18
  },
19
19
  "dependencies": {
20
- "@ningboyz/types": "1.6.75",
20
+ "@ningboyz/types": "1.6.76",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -10,7 +10,8 @@ import {
10
10
  IFlowFlowUserMemoDeletedbQuerys,
11
11
  IFlowFlowUserMemoInsertdbQuerys,
12
12
  IFlowFlowUserMemoSelectdbQuerys,
13
- TFlowUserNotiUpdatedbQuerys
13
+ TFlowUserNotiUpdatedbQuerys,
14
+ IFlowFlowStarToneQuerys
14
15
  } from "./types";
15
16
 
16
17
  class FlowRequest {
@@ -159,6 +160,11 @@ class FlowRequest {
159
160
  redoflow(querys: IFlowFlowRedoflowQuerys, params: object) {
160
161
  return this.httpRequest.post<TFlow.IFlowDataResponse[]>("/flow/tflow/redoflow", querys, params);
161
162
  }
163
+
164
+ /**获取首岗节点 */
165
+ startone(querys: IFlowFlowStarToneQuerys, params: object) {
166
+ return this.httpRequest.post<TFlow.IFlowDataResponse[]>("/flow/tflow/startone", querys, params);
167
+ }
162
168
  }
163
169
 
164
170
  export default FlowRequest;
@@ -267,3 +267,11 @@ export class TFlowFlowUserMemoDeletedbQuerys implements IFlowFlowUserMemoDeleted
267
267
  export interface IFlowFlowRedoflowQuerys {}
268
268
 
269
269
  export class TFlowFlowRedoflowQuerys implements IFlowFlowRedoflowQuerys {}
270
+
271
+ export interface IFlowFlowStarToneQuerys {
272
+ flowmain: number;
273
+ }
274
+
275
+ export class TFlowFlowStarToneQuerys implements IFlowFlowStarToneQuerys {
276
+ flowmain: number = -1;
277
+ }