@lilaquadrat/interfaces 1.28.1 → 1.30.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 +14 -0
- package/lib/cjs/LoggingEntry.d.ts +5 -0
- package/lib/cjs/MulterFile.d.ts +0 -2
- package/lib/cjs/Project.d.ts +3 -2
- package/lib/cjs/ShareClient.d.ts +1 -1
- package/lib/cjs/ShareClientOptions.d.ts +3 -1
- package/lib/cjs/index.d.ts +1 -0
- package/lib/esm/LoggingEntry.d.ts +5 -0
- package/lib/esm/LoggingEntry.js +2 -0
- package/lib/esm/LoggingEntry.js.map +1 -0
- package/lib/esm/MulterFile.d.ts +0 -2
- package/lib/esm/Project.d.ts +3 -2
- package/lib/esm/ShareClient.d.ts +1 -1
- package/lib/esm/ShareClientOptions.d.ts +3 -1
- package/lib/esm/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/LoggingEntry.ts +5 -0
- package/src/Project.ts +4 -2
- package/src/ShareClient.ts +2 -0
- package/src/ShareClientOptions.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.30.0](https://github.com/lilaquadrat/interfaces/compare/v1.29.0...v1.30.0) (2025-07-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **ShareClient:** add getDownloadUrl method and update ShareClientOptions for optional connectionString ([a4bc9de](https://github.com/lilaquadrat/interfaces/commit/a4bc9de5e7ea2dcce0ca10c8260a4d8a7406f73b))
|
|
11
|
+
|
|
12
|
+
## [1.29.0](https://github.com/lilaquadrat/interfaces/compare/v1.28.1...v1.29.0) (2025-06-19)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **loggingentry, project:** updated project for features and ai. added loggingentry ([155c2eb](https://github.com/lilaquadrat/interfaces/commit/155c2eb5f61577cc40450b869bd98813b3fcd8c9))
|
|
18
|
+
|
|
5
19
|
### [1.28.1](https://github.com/lilaquadrat/interfaces/compare/v1.28.0...v1.28.1) (2025-04-30)
|
|
6
20
|
|
|
7
21
|
|
package/lib/cjs/MulterFile.d.ts
CHANGED
package/lib/cjs/Project.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { Auth0ProjectSettings } from "./Auth0ProjectSettings";
|
|
2
|
-
import { ShopifyProjectSettings } from "./ShopifyProjectSettings";
|
|
3
2
|
export interface Project {
|
|
4
3
|
name: string;
|
|
5
4
|
description?: string;
|
|
5
|
+
aiDescription?: string;
|
|
6
|
+
aiTone?: string;
|
|
6
7
|
license?: string;
|
|
7
8
|
company: string;
|
|
8
9
|
tags?: string[];
|
|
9
10
|
apps?: string[];
|
|
11
|
+
features?: string[];
|
|
10
12
|
auth0?: Auth0ProjectSettings;
|
|
11
|
-
shopify?: ShopifyProjectSettings;
|
|
12
13
|
}
|
package/lib/cjs/ShareClient.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
export interface ShareClientInterface {
|
|
3
2
|
createFolder(basePath: string, folder: string): Promise<boolean>;
|
|
4
3
|
removeFolder(path: string): Promise<boolean>;
|
|
@@ -29,4 +28,5 @@ export interface ShareClientInterface {
|
|
|
29
28
|
fullPath?: boolean;
|
|
30
29
|
}): Promise<string[]>;
|
|
31
30
|
copy(files: string[], sourceFolder: string, destinationFolder: string): Promise<boolean>;
|
|
31
|
+
getDownloadUrl(path: string, lifetimeInSeconds?: number): Promise<string>;
|
|
32
32
|
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { type StorageSharedKeyCredential } from '@azure/storage-blob';
|
|
1
2
|
export interface ShareClientOptions {
|
|
2
|
-
connectionString
|
|
3
|
+
connectionString?: string;
|
|
3
4
|
container?: string;
|
|
4
5
|
shareName?: string;
|
|
5
6
|
baseFolder?: string;
|
|
6
7
|
accountName?: string;
|
|
8
|
+
sharedKeyCredentials?: StorageSharedKeyCredential;
|
|
7
9
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ export * from './ListParticipantsDetails';
|
|
|
121
121
|
export * from './ListString';
|
|
122
122
|
export * from './Location';
|
|
123
123
|
export * from './LocationModule';
|
|
124
|
+
export * from './LoggingEntry';
|
|
124
125
|
export * from './MailFrom';
|
|
125
126
|
export * from './Me';
|
|
126
127
|
export * from './MePermissions';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LoggingEntry.js","sourceRoot":"","sources":["../../src/LoggingEntry.ts"],"names":[],"mappings":""}
|
package/lib/esm/MulterFile.d.ts
CHANGED
package/lib/esm/Project.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { Auth0ProjectSettings } from "./Auth0ProjectSettings";
|
|
2
|
-
import { ShopifyProjectSettings } from "./ShopifyProjectSettings";
|
|
3
2
|
export interface Project {
|
|
4
3
|
name: string;
|
|
5
4
|
description?: string;
|
|
5
|
+
aiDescription?: string;
|
|
6
|
+
aiTone?: string;
|
|
6
7
|
license?: string;
|
|
7
8
|
company: string;
|
|
8
9
|
tags?: string[];
|
|
9
10
|
apps?: string[];
|
|
11
|
+
features?: string[];
|
|
10
12
|
auth0?: Auth0ProjectSettings;
|
|
11
|
-
shopify?: ShopifyProjectSettings;
|
|
12
13
|
}
|
package/lib/esm/ShareClient.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
export interface ShareClientInterface {
|
|
3
2
|
createFolder(basePath: string, folder: string): Promise<boolean>;
|
|
4
3
|
removeFolder(path: string): Promise<boolean>;
|
|
@@ -29,4 +28,5 @@ export interface ShareClientInterface {
|
|
|
29
28
|
fullPath?: boolean;
|
|
30
29
|
}): Promise<string[]>;
|
|
31
30
|
copy(files: string[], sourceFolder: string, destinationFolder: string): Promise<boolean>;
|
|
31
|
+
getDownloadUrl(path: string, lifetimeInSeconds?: number): Promise<string>;
|
|
32
32
|
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { type StorageSharedKeyCredential } from '@azure/storage-blob';
|
|
1
2
|
export interface ShareClientOptions {
|
|
2
|
-
connectionString
|
|
3
|
+
connectionString?: string;
|
|
3
4
|
container?: string;
|
|
4
5
|
shareName?: string;
|
|
5
6
|
baseFolder?: string;
|
|
6
7
|
accountName?: string;
|
|
8
|
+
sharedKeyCredentials?: StorageSharedKeyCredential;
|
|
7
9
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ export * from './ListParticipantsDetails';
|
|
|
121
121
|
export * from './ListString';
|
|
122
122
|
export * from './Location';
|
|
123
123
|
export * from './LocationModule';
|
|
124
|
+
export * from './LoggingEntry';
|
|
124
125
|
export * from './MailFrom';
|
|
125
126
|
export * from './Me';
|
|
126
127
|
export * from './MePermissions';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lilaquadrat/interfaces",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.30.0",
|
|
4
4
|
"description": "interfaces in context of lilaquadrat STUDIO",
|
|
5
5
|
"author": {
|
|
6
6
|
"email": "m.schuebel@lila2.de",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
+
"@azure/storage-blob": "^12.27.0",
|
|
31
32
|
"@types/node": "^20.11.9",
|
|
32
33
|
"ajv": "^8.12.0",
|
|
33
34
|
"cz-conventional-changelog": "^3.3.0",
|
|
@@ -38,6 +39,5 @@
|
|
|
38
39
|
"commitizen": {
|
|
39
40
|
"path": "./node_modules/cz-conventional-changelog"
|
|
40
41
|
}
|
|
41
|
-
}
|
|
42
|
-
"packageManager": "yarn@1.22.22"
|
|
42
|
+
}
|
|
43
43
|
}
|
package/src/Project.ts
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import {Auth0ProjectSettings} from "./Auth0ProjectSettings"
|
|
2
|
-
import {ShopifyProjectSettings} from "./ShopifyProjectSettings"
|
|
3
2
|
|
|
4
3
|
export interface Project {
|
|
5
4
|
|
|
6
5
|
name: string
|
|
7
6
|
description?: string
|
|
7
|
+
aiDescription?: string
|
|
8
|
+
aiTone?: string
|
|
8
9
|
license?: string
|
|
9
10
|
company: string
|
|
10
11
|
tags?: string[]
|
|
11
12
|
apps?: string[]
|
|
12
13
|
|
|
14
|
+
features?: string[]
|
|
15
|
+
|
|
13
16
|
auth0?: Auth0ProjectSettings
|
|
14
|
-
shopify?: ShopifyProjectSettings
|
|
15
17
|
|
|
16
18
|
}
|
package/src/ShareClient.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { type StorageSharedKeyCredential } from '@azure/storage-blob';
|
|
1
2
|
|
|
2
3
|
export interface ShareClientOptions {
|
|
3
|
-
connectionString
|
|
4
|
+
connectionString?: string
|
|
4
5
|
container?: string
|
|
5
6
|
shareName?: string
|
|
6
7
|
baseFolder?: string
|
|
7
8
|
accountName?: string
|
|
9
|
+
sharedKeyCredentials?: StorageSharedKeyCredential
|
|
8
10
|
}
|