@createiq/backend-licenses 1.0.0 → 1.0.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/dist/index.cjs +108 -189
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +108 -189
- package/dist/index.js.map +1 -1
- package/index.ts +5 -0
- package/oss-licenses.json +108 -117
- package/oss-licenses.json.sha256 +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -25,6 +25,10 @@ type LicenseInformation = {
|
|
|
25
25
|
* Any additional notice text for the package
|
|
26
26
|
*/
|
|
27
27
|
noticeText?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Parsed copyright text from the notice, if available
|
|
30
|
+
*/
|
|
31
|
+
copyrightText?: string;
|
|
28
32
|
};
|
|
29
33
|
declare const _default: readonly LicenseInformation[];
|
|
30
34
|
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,10 @@ type LicenseInformation = {
|
|
|
25
25
|
* Any additional notice text for the package
|
|
26
26
|
*/
|
|
27
27
|
noticeText?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Parsed copyright text from the notice, if available
|
|
30
|
+
*/
|
|
31
|
+
copyrightText?: string;
|
|
28
32
|
};
|
|
29
33
|
declare const _default: readonly LicenseInformation[];
|
|
30
34
|
|