@arkyn/types 1.3.150 → 1.3.152

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,9 @@
1
+ import type { Params } from "@remix-run/react";
1
2
  import type { InboxFlowDTO } from "./config/InboxFlowDTO";
2
3
  type ConfigProps = {
3
4
  request: Request;
4
- inbox_flow?: InboxFlowDTO;
5
+ params: Params;
6
+ inbox_flow: InboxFlowDTO;
5
7
  };
6
8
  type MonitoringErrorsDTO = (error: any, config: ConfigProps) => Promise<void>;
7
9
  export type { MonitoringErrorsDTO };
@@ -1 +1 @@
1
- {"version":3,"file":"MonitoringErrorsDTO.d.ts","sourceRoot":"","sources":["../../src/api/MonitoringErrorsDTO.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE1D,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,YAAY,CAAC;CAC3B,CAAC;AAEF,KAAK,mBAAmB,GAAG,CAAC,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;AAE9E,YAAY,EAAE,mBAAmB,EAAE,CAAC"}
1
+ {"version":3,"file":"MonitoringErrorsDTO.d.ts","sourceRoot":"","sources":["../../src/api/MonitoringErrorsDTO.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE1D,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,YAAY,CAAC;CAC1B,CAAC;AAEF,KAAK,mBAAmB,GAAG,CAAC,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;AAE9E,YAAY,EAAE,mBAAmB,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkyn/types",
3
- "version": "1.3.150",
3
+ "version": "1.3.152",
4
4
  "main": "./dist/bundle.js",
5
5
  "module": "./src/index.ts",
6
6
  "type": "module",
@@ -1,8 +1,10 @@
1
+ import type { Params } from "@remix-run/react";
1
2
  import type { InboxFlowDTO } from "./config/InboxFlowDTO";
2
3
 
3
4
  type ConfigProps = {
4
5
  request: Request;
5
- inbox_flow?: InboxFlowDTO;
6
+ params: Params;
7
+ inbox_flow: InboxFlowDTO;
6
8
  };
7
9
 
8
10
  type MonitoringErrorsDTO = (error: any, config: ConfigProps) => Promise<void>;