@lilaquadrat/interfaces 1.34.0 → 1.34.1
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.34.1](https://github.com/lilaquadrat/interfaces/compare/v1.34.0...v1.34.1) (2026-01-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **ProjectDomain:** rename interface to ProjectDomainWithSecret for clarity ([617e7ae](https://github.com/lilaquadrat/interfaces/commit/617e7aecc2efafd10227902754f5b32c18b8a5a7))
|
|
11
|
+
|
|
5
12
|
## [1.34.0](https://github.com/lilaquadrat/interfaces/compare/v1.33.2...v1.34.0) (2026-01-03)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Domain } from "./Domain";
|
|
2
2
|
import { Secret } from "./Secret";
|
|
3
|
-
export interface
|
|
3
|
+
export interface ProjectDomainWithSecret extends Omit<Domain, 'secret'> {
|
|
4
4
|
company: string;
|
|
5
5
|
project: string;
|
|
6
6
|
secret: Secret;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Domain } from "./Domain";
|
|
2
2
|
import { Secret } from "./Secret";
|
|
3
|
-
export interface
|
|
3
|
+
export interface ProjectDomainWithSecret extends Omit<Domain, 'secret'> {
|
|
4
4
|
company: string;
|
|
5
5
|
project: string;
|
|
6
6
|
secret: Secret;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Domain } from "./Domain";
|
|
2
2
|
import { Secret } from "./Secret";
|
|
3
3
|
|
|
4
|
-
export interface
|
|
4
|
+
export interface ProjectDomainWithSecret extends Omit<Domain, 'secret'> {
|
|
5
5
|
company: string
|
|
6
6
|
project: string
|
|
7
7
|
secret: Secret
|