@punks/backend-entity-manager 0.0.332 → 0.0.334

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.
@@ -6,5 +6,6 @@ export type UserLoginInput<TUserContext extends IAuthUserContext> = {
6
6
  };
7
7
  export type UserLoginResult = {
8
8
  token?: string;
9
+ userId?: string;
9
10
  success: boolean;
10
11
  };
@@ -45,6 +45,8 @@ export type PipelineOperationError = {
45
45
  exception?: Error;
46
46
  };
47
47
  export type PipelineOperationResult<TOperationInput, TOperationOutput> = {
48
+ key?: string;
49
+ name: string;
48
50
  input: TOperationInput;
49
51
  } & ({
50
52
  type: "success";
package/dist/index.d.ts CHANGED
@@ -442,6 +442,8 @@ type PipelineOperationError = {
442
442
  exception?: Error;
443
443
  };
444
444
  type PipelineOperationResult<TOperationInput, TOperationOutput> = {
445
+ key?: string;
446
+ name: string;
445
447
  input: TOperationInput;
446
448
  } & ({
447
449
  type: "success";
@@ -1624,6 +1626,7 @@ type UserLoginInput<TUserContext extends IAuthUserContext> = {
1624
1626
  };
1625
1627
  type UserLoginResult = {
1626
1628
  token?: string;
1629
+ userId?: string;
1627
1630
  success: boolean;
1628
1631
  };
1629
1632
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@punks/backend-entity-manager",
3
- "version": "0.0.332",
3
+ "version": "0.0.334",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",