Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
210 changes: 115 additions & 95 deletions functions/package-lock.json

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "functions",
"version": "2.5.0",
"version": "2.5.1",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
Expand All @@ -19,21 +19,21 @@
},
"main": "lib/index.js",
"dependencies": {
"@google-cloud/translate": "^9.0.1",
"compressing": "^1.10.1",
"@google-cloud/translate": "^9.1.0",
"compressing": "^1.10.3",
"cors": "^2.8.5",
"deepl-node": "^1.18.0",
"exiftool-vendored": "^29.3.0",
"exiftool-vendored": "^30.0.0",
"express": "^5.1.0",
"firebase-admin": "^13.3.0",
"firebase-admin": "^13.4.0",
"firebase-functions": "^6.3.2",
"fluent-ffmpeg": "^2.1.3",
"sharp": "^0.34.1",
"sharp": "^0.34.2",
"uuid": "^11.1.0",
"zod": "^3.24.4"
"zod": "^3.25.30"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/express": "^5.0.2",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
Expand Down
2 changes: 1 addition & 1 deletion functions/src/services/open-api.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export function generateOpenApi(schemasById: Map<string, Schema>): OpenAPIObject
openapi: '3.0.3',
info: {
title: 'Localess Open API Specification',
version: '2.5.0',
version: '2.5.1',
description: 'Fetch data from Localess via REST API',
contact: {
name: 'Lessify Team',
Expand Down
73 changes: 43 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "localess",
"version": "2.5.0",
"version": "2.5.1",
"engines": {
"node": "20"
},
Expand Down Expand Up @@ -39,9 +39,9 @@
"@angular/platform-browser": "^19.2.2",
"@angular/platform-browser-dynamic": "^19.2.2",
"@angular/router": "^19.2.2",
"@ngrx/operators": "^19.1.0",
"@ngrx/signals": "^19.1.0",
"@ngrx/store-devtools": "^19.1.0",
"@ngrx/operators": "^19.2.0",
"@ngrx/signals": "^19.2.0",
"@ngrx/store-devtools": "^19.2.0",
"@stoplight/elements": "^9.0.1",
"@tiptap/core": "^2.7.1",
"@tiptap/extension-bold": "^2.7.1",
Expand Down Expand Up @@ -103,7 +103,7 @@
"prettier": "^3.5.3",
"prettier-eslint": "^16.4.2",
"tailwindcss": "^3.4.17",
"tsup": "^8.4.0",
"tsup": "^8.5.0",
"typescript": "~5.8.2",
"webpack-bundle-analyzer": "^4.10.2"
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/features/admin/spaces/spaces.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<ng-container matColumnDef="id">
<mat-header-cell *matHeaderCellDef mat-sort-header="id"> ID</mat-header-cell>
<mat-cell *matCellDef="let element">
{{ element.id }}
<code>{{ element.id }}</code>
<button mat-icon-button [cdkCopyToClipboard]="element.id" matTooltip="Copy Id">
<mat-icon>content_copy</mat-icon>
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<ng-container matColumnDef="id">
<mat-header-cell *matHeaderCellDef mat-sort-header="id"> Id </mat-header-cell>
<mat-cell *matCellDef="let element">
{{ element.id }}
<code>{{ element.id.substring(0, 10) }}...</code>
<button mat-icon-button [cdkCopyToClipboard]="element.id" matTooltip="Copy Id">
<mat-icon>content_copy</mat-icon>
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ export class AddDialogComponent {
private readonly fb: FormBuilder,
readonly fe: FormErrorHandlerService,
@Inject(MAT_DIALOG_DATA) public data: AddDialogModel,
) {
this.form.valueChanges.subscribe(it => console.log(it));
}
) {}

addLabel(event: MatChipInputEvent): void {
const input = event.chipInput?.inputElement;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export interface TranslationNode {
name: string;
key: string;
children?: TranslationNode[];
}
Loading