@datapos/datapos-development 0.3.215 → 0.3.218

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.
@@ -2,7 +2,7 @@
2
2
  * Manage artifact operation.
3
3
  */
4
4
  declare function buildArtifact(): Promise<void>;
5
- declare function releaseArtifact(): Promise<void>;
5
+ declare function releaseArtifact(sendDeployNotice?: boolean): Promise<void>;
6
6
  declare function syncArtifactWithGitHub(): Promise<void>;
7
7
  declare function testArtifact(): void;
8
8
  export { buildArtifact, releaseArtifact, syncArtifactWithGitHub, testArtifact };
@@ -9,6 +9,6 @@ declare function logStepHeader(text: string): void;
9
9
  declare function readJSONFile<T>(path: string): Promise<T>;
10
10
  declare function readTextFile(path: string): Promise<string>;
11
11
  declare function spawnCommand(command: string, arguments_?: string[], ignoreErrors?: boolean): Promise<void>;
12
- declare function writeJSONFile(path: string, data: Record<string, unknown>): Promise<void>;
12
+ declare function writeJSONFile(path: string, data: object): Promise<void>;
13
13
  declare function writeTextFile(path: string, data: string): Promise<void>;
14
14
  export { determineConnectorUsageId, execCommand, extractOperationsFromSource, loadEnvironmentVariables, logOperationHeader, logOperationSuccess, logStepHeader, readJSONFile, readTextFile, spawnCommand, writeJSONFile, writeTextFile };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.215",
3
+ "version": "0.3.218",
4
4
  "description": "A library of utilities for managing the Data Positioning repositories.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",