tnp-helpers 19.0.47 → 19.0.49
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/browser/README.md +24 -24
- package/browser/fesm2022/tnp-helpers.mjs +77 -9
- package/browser/fesm2022/tnp-helpers.mjs.map +1 -1
- package/browser/lib/base/classes/base-git.d.ts +1 -1
- package/browser/lib/base/linked-project.d.ts +1 -1
- package/browser/lib/build-info._auto-generated_.d.ts +1 -1
- package/browser/lib/utils.d.ts +4 -0
- package/browser/package.json +1 -1
- package/lib/base/classes/base-cli-worker/base-cli-worker-terminal-ui.js +0 -2
- package/lib/base/classes/base-cli-worker/base-cli-worker-terminal-ui.js.map +1 -1
- package/lib/base/classes/base-git.d.ts +1 -1
- package/lib/base/classes/base-git.js.map +1 -1
- package/lib/base/classes/base-global-command-line.backend.d.ts +6 -0
- package/lib/base/classes/base-global-command-line.backend.js +71 -0
- package/lib/base/classes/base-global-command-line.backend.js.map +1 -1
- package/lib/base/classes/base-linked-projects.js +3 -1
- package/lib/base/classes/base-linked-projects.js.map +1 -1
- package/lib/base/linked-project.js +9 -2
- package/lib/base/linked-project.js.map +1 -1
- package/lib/base/tcp-udp-ports/not-assignable-port.entity.js +2 -2
- package/lib/base/tcp-udp-ports/ports.entity.d.ts +1 -1
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/helpers/for-backend/helpers-git.backend.js +5 -4
- package/lib/helpers/for-backend/helpers-git.backend.js.map +1 -1
- package/lib/helpers/for-browser/angular.helper.js +2 -2
- package/lib/helpers/helpers-numbers.js.map +1 -1
- package/lib/old/base-component.js +2 -2
- package/lib/old/base-formly-component.js +2 -2
- package/lib/old/dual-component-ctrl.js +2 -2
- package/lib/utils.d.ts +4 -0
- package/lib/utils.js +56 -2
- package/lib/utils.js.map +1 -1
- package/package.json +1 -1
- package/scss/vars.scss +6 -6
- package/tmp-environment.json +7 -3
- package/websql/README.md +24 -24
- package/websql/fesm2022/tnp-helpers.mjs +77 -9
- package/websql/fesm2022/tnp-helpers.mjs.map +1 -1
- package/websql/lib/base/classes/base-git.d.ts +1 -1
- package/websql/lib/base/linked-project.d.ts +1 -1
- package/websql/lib/build-info._auto-generated_.d.ts +1 -1
- package/websql/lib/utils.d.ts +4 -0
- package/websql/package.json +1 -1
|
@@ -170,7 +170,7 @@ export declare class BaseGit<PROJECT extends BaseProject = any> extends BaseFeat
|
|
|
170
170
|
skipCloneGitChildren?: boolean;
|
|
171
171
|
setOrigin?: 'ssh' | 'http';
|
|
172
172
|
}): Promise<void>;
|
|
173
|
-
|
|
173
|
+
validateEmailDomain(allowedEmailsEnds: string[]): Promise<void>;
|
|
174
174
|
protected _afterPullProcessAction(setOrigin: 'ssh' | 'http'): Promise<void>;
|
|
175
175
|
pushProcess(options?: PushProcessOptions): Promise<void>;
|
|
176
176
|
_beforeAnyActionOnGitRoot(): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
export declare class LinkedProject {
|
|
3
3
|
static from(options: Partial<LinkedProject>): LinkedProject;
|
|
4
|
-
static fromName(projectName: string, currentRemoteUrl?: string, currentBranch?: string):
|
|
4
|
+
static fromName(projectName: string, currentRemoteUrl?: string, currentBranch?: string): any;
|
|
5
5
|
static detect(insideLocation: string, options?: {
|
|
6
6
|
recursive?: boolean;
|
|
7
7
|
checkAlsoNonRepos?: boolean;
|
package/websql/lib/utils.d.ts
CHANGED
|
@@ -202,4 +202,8 @@ export declare namespace UtilsJava {
|
|
|
202
202
|
const updateJavaHomePath: (selectedPath: string) => void;
|
|
203
203
|
const selectTomcatVersion: () => Promise<string>;
|
|
204
204
|
const updateTomcatHomePath: (selectedPath: string) => void;
|
|
205
|
+
}
|
|
206
|
+
export declare namespace UtilsPasswords {
|
|
207
|
+
const hashPassword: (password: string) => Promise<string>;
|
|
208
|
+
const verifyPassword: (password: string, stored: string) => Promise<boolean>;
|
|
205
209
|
}
|