tnp-helpers 19.0.53 → 19.0.55
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/fesm2022/tnp-helpers.mjs +5 -275
- package/browser/fesm2022/tnp-helpers.mjs.map +1 -1
- package/browser/lib/base/tcp-udp-ports/tcp-udp-ports.context.d.ts +6 -0
- package/browser/lib/build-info._auto-generated_.d.ts +1 -1
- package/browser/lib/utils.d.ts +0 -16
- package/browser/package.json +1 -1
- package/lib/base/classes/base-cli-worker/base-cli-worker.js +9 -10
- package/lib/base/classes/base-cli-worker/base-cli-worker.js.map +1 -1
- package/lib/base/classes/base-docker.js +3 -4
- package/lib/base/classes/base-docker.js.map +1 -1
- package/lib/base/classes/base-global-command-line.backend.js +4 -4
- package/lib/base/classes/base-global-command-line.backend.js.map +1 -1
- package/lib/base/classes/base-project.js +58 -57
- package/lib/base/classes/base-project.js.map +1 -1
- package/lib/base/tcp-udp-ports/not-assignable-port.entity.js +2 -2
- package/lib/base/tcp-udp-ports/tcp-udp-ports.context.d.ts +6 -0
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/env-backend._auto-generated_.d.ts +34 -0
- package/lib/env-backend._auto-generated_.js +38 -0
- package/lib/env-backend._auto-generated_.js.map +1 -0
- package/lib/env-browser._auto-generated_.d.ts +34 -0
- package/lib/env-browser._auto-generated_.js +38 -0
- package/lib/env-browser._auto-generated_.js.map +1 -0
- package/lib/env.backend.d.ts +34 -0
- package/lib/env.backend.js +40 -0
- package/lib/env.backend.js.map +1 -0
- package/lib/env.browser.d.ts +34 -0
- package/lib/helpers/for-backend/helpers-dependencies.backend.d.ts +0 -1
- package/lib/helpers/for-backend/helpers-dependencies.backend.js +0 -27
- package/lib/helpers/for-backend/helpers-dependencies.backend.js.map +1 -1
- package/lib/helpers/for-backend/helpers-git.backend.js +12 -1
- package/lib/helpers/for-backend/helpers-git.backend.js.map +1 -1
- package/lib/helpers/for-browser/angular.helper.js +2 -2
- 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 +0 -16
- package/lib/utils.js +1 -221
- package/lib/utils.js.map +1 -1
- package/lib/validators/validators-git.js.map +1 -1
- package/package.json +1 -1
- package/tmp-environment.json +2 -2
- package/websql/fesm2022/tnp-helpers.mjs +5 -275
- package/websql/fesm2022/tnp-helpers.mjs.map +1 -1
- package/websql/lib/base/tcp-udp-ports/tcp-udp-ports.context.d.ts +6 -0
- package/websql/lib/build-info._auto-generated_.d.ts +1 -1
- package/websql/lib/utils.d.ts +0 -16
- package/websql/package.json +1 -1
- package/lib/base/classes/base-file-operations.d.ts +0 -0
- package/lib/base/classes/base-file-operations.js +0 -5
- package/lib/base/classes/base-file-operations.js.map +0 -1
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
export declare const PortsContextTemplate: () => {
|
|
3
3
|
readonly contextName: string;
|
|
4
4
|
readonly appId: string;
|
|
5
|
+
cloneAsRemote: (cloneOpt?: {
|
|
6
|
+
overrideRemoteHost?: string;
|
|
7
|
+
}) => any;
|
|
8
|
+
cloneAsNormal: (cloneOpt?: {
|
|
9
|
+
overrideHost?: string;
|
|
10
|
+
}) => any;
|
|
5
11
|
__ref(): Promise<import("taon/websql").EndpointContext>;
|
|
6
12
|
readonly __refSync: import("taon/websql").EndpointContext;
|
|
7
13
|
getClassInstance<T>(ctor: new (...args: any[]) => T): T;
|
package/websql/lib/utils.d.ts
CHANGED
|
@@ -156,22 +156,6 @@ export declare namespace UtilsVSCode {
|
|
|
156
156
|
const vscodeImport: () => any;
|
|
157
157
|
const regenerateVsCodeSettingsColors: (cwd: string, overideBottomColor?: string) => void;
|
|
158
158
|
}
|
|
159
|
-
export declare namespace UtilsDotFile {
|
|
160
|
-
const setValueToDotFile: (dotFileAbsPath: string | string[], key: string, value: string | number | boolean) => void;
|
|
161
|
-
const setCommentToKeyInDotFile: (dotFileAbsPath: string | string[], key: string, comment: string) => void;
|
|
162
|
-
const getValueFromDotFile: (dotFileAbsPath: string | string[], key: string) => string | number | boolean;
|
|
163
|
-
const setValuesKeysFromObject: (dotFileAbsPath: string | string[], obj: Record<string, string | number | boolean>, options?: {
|
|
164
|
-
/**
|
|
165
|
-
* if true, it will overwrite existing keys
|
|
166
|
-
*/
|
|
167
|
-
setAsNewFile?: boolean;
|
|
168
|
-
}) => void;
|
|
169
|
-
const getValuesKeysAsJsonObject: <T = Record<string, string | number | boolean>>(dotFileAbsPath: string | string[]) => T;
|
|
170
|
-
/**
|
|
171
|
-
* @returns key|comment pairs as json object
|
|
172
|
-
*/
|
|
173
|
-
const getCommentsKeysAsJsonObject: <T = Record<string, string>>(dotFileAbsPath: string | string[]) => T;
|
|
174
|
-
}
|
|
175
159
|
export declare namespace UtilsZipBrowser {
|
|
176
160
|
const zipDirBrowser: (fileList: FileList) => Promise<Blob>;
|
|
177
161
|
const unzipArchiveBrowser: (zipBlob: Blob) => Promise<Map<string, Blob>>;
|
package/websql/package.json
CHANGED
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base-file-operations.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
|