@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.
- package/dist/cjs/index.js +7 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-login/types.d.ts +1 -0
- package/dist/cjs/types/types/pipelines.d.ts +2 -0
- package/dist/esm/index.js +7 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-login/types.d.ts +1 -0
- package/dist/esm/types/types/pipelines.d.ts +2 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
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
|
|