@lilaquadrat/interfaces 1.16.0 → 1.17.0

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.17.0](https://github.com/lilaquadrat/interfaces/compare/v1.16.0...v1.17.0) (2025-01-14)
6
+
7
+
8
+ ### Features
9
+
10
+ * **nginx command:** added support for nginx command, remove docker commands ([1eba7b5](https://github.com/lilaquadrat/interfaces/commit/1eba7b566b95f0b3f4cb2faf00ff971fc6d70a2f))
11
+
5
12
  ## [1.16.0](https://github.com/lilaquadrat/interfaces/compare/v1.15.0...v1.16.0) (2025-01-05)
6
13
 
7
14
 
@@ -0,0 +1 @@
1
+ export type CommandNginx = 'restart' | 'reload' | 'start' | 'stop';
@@ -1,7 +1,6 @@
1
- import { Command } from "./Command";
1
+ import { CommandNginx } from "./CommandNginx";
2
2
  export interface HostingCommand {
3
- target: 'nginx' | 'docker';
4
- command: Command<HostingCommand['target']>;
3
+ command: CommandNginx;
5
4
  date: Date;
6
5
  state: 'new' | 'inProgress' | 'success' | 'error';
7
6
  data: {
@@ -11,7 +10,6 @@ export interface HostingCommand {
11
10
  company?: string;
12
11
  project?: string;
13
12
  after?: {
14
- target: 'nginx' | 'docker';
15
- command: Command<HostingCommand['target']>;
13
+ command: CommandNginx;
16
14
  };
17
15
  }
@@ -23,6 +23,7 @@ export * from './CertificateAction';
23
23
  export * from './CertificateActionResult';
24
24
  export * from './ChildData';
25
25
  export * from './Command';
26
+ export * from './CommandNginx';
26
27
  export * from './Company';
27
28
  export * from './CompanyAttribute';
28
29
  export * from './CompanyProject';
@@ -0,0 +1 @@
1
+ export type CommandNginx = 'restart' | 'reload' | 'start' | 'stop';
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=CommandNginx.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommandNginx.js","sourceRoot":"","sources":["../../src/CommandNginx.ts"],"names":[],"mappings":""}
@@ -1,7 +1,6 @@
1
- import { Command } from "./Command";
1
+ import { CommandNginx } from "./CommandNginx";
2
2
  export interface HostingCommand {
3
- target: 'nginx' | 'docker';
4
- command: Command<HostingCommand['target']>;
3
+ command: CommandNginx;
5
4
  date: Date;
6
5
  state: 'new' | 'inProgress' | 'success' | 'error';
7
6
  data: {
@@ -11,7 +10,6 @@ export interface HostingCommand {
11
10
  company?: string;
12
11
  project?: string;
13
12
  after?: {
14
- target: 'nginx' | 'docker';
15
- command: Command<HostingCommand['target']>;
13
+ command: CommandNginx;
16
14
  };
17
15
  }
@@ -23,6 +23,7 @@ export * from './CertificateAction';
23
23
  export * from './CertificateActionResult';
24
24
  export * from './ChildData';
25
25
  export * from './Command';
26
+ export * from './CommandNginx';
26
27
  export * from './Company';
27
28
  export * from './CompanyAttribute';
28
29
  export * from './CompanyProject';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lilaquadrat/interfaces",
3
- "version": "1.16.0",
3
+ "version": "1.17.0",
4
4
  "description": "interfaces in context of lilaquadrat STUDIO",
5
5
  "author": {
6
6
  "email": "m.schuebel@lila2.de",
@@ -38,5 +38,6 @@
38
38
  "commitizen": {
39
39
  "path": "./node_modules/cz-conventional-changelog"
40
40
  }
41
- }
41
+ },
42
+ "packageManager": "yarn@1.22.22"
42
43
  }
@@ -0,0 +1 @@
1
+ export type CommandNginx = 'restart' | 'reload' | 'start' | 'stop'
@@ -1,8 +1,7 @@
1
- import { Command } from "./Command";
1
+ import { CommandNginx } from "./CommandNginx";
2
2
 
3
3
  export interface HostingCommand {
4
- target: 'nginx' | 'docker';
5
- command: Command<HostingCommand['target']>;
4
+ command: CommandNginx;
6
5
  date: Date;
7
6
  state: 'new' | 'inProgress' | 'success' | 'error';
8
7
  data: { [key: string]: any };
@@ -10,7 +9,6 @@ export interface HostingCommand {
10
9
  company?: string;
11
10
  project?: string;
12
11
  after?: {
13
- target: 'nginx' | 'docker';
14
- command: Command<HostingCommand['target']>;
12
+ command: CommandNginx;
15
13
  };
16
14
  }