Compare commits
2 Commits
5dd087c16a
...
edb7690eb8
Author | SHA1 | Date | |
---|---|---|---|
edb7690eb8 | |||
1a54bf5979 |
66
.gitea/workflows/default_nottags.yaml
Normal file
66
.gitea/workflows/default_nottags.yaml
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
name: Default (not tags)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags-ignore:
|
||||||
|
- '**'
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE: code.foss.global/host.today/ht-docker-node:npmci
|
||||||
|
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@/${{gitea.repository}}.git
|
||||||
|
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||||
|
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||||
|
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||||
|
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
security:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
continue-on-error: true
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install pnpm and npmci
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @ship.zone/npmci
|
||||||
|
|
||||||
|
- name: Run npm prepare
|
||||||
|
run: npmci npm prepare
|
||||||
|
|
||||||
|
- name: Audit production dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --prod
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Audit development dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --dev
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
test:
|
||||||
|
if: ${{ always() }}
|
||||||
|
needs: security
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Test stable
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm test
|
||||||
|
|
||||||
|
- name: Test build
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm build
|
124
.gitea/workflows/default_tags.yaml
Normal file
124
.gitea/workflows/default_tags.yaml
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
name: Default (tags)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE: code.foss.global/host.today/ht-docker-node:npmci
|
||||||
|
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@/${{gitea.repository}}.git
|
||||||
|
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||||
|
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||||
|
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||||
|
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
security:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
continue-on-error: true
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @ship.zone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Audit production dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --prod
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Audit development dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --dev
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
test:
|
||||||
|
if: ${{ always() }}
|
||||||
|
needs: security
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @ship.zone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Test stable
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm test
|
||||||
|
|
||||||
|
- name: Test build
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm build
|
||||||
|
|
||||||
|
release:
|
||||||
|
needs: test
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @ship.zone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Release
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm publish
|
||||||
|
|
||||||
|
metadata:
|
||||||
|
needs: test
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @ship.zone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Code quality
|
||||||
|
run: |
|
||||||
|
npmci command npm install -g typescript
|
||||||
|
npmci npm install
|
||||||
|
|
||||||
|
- name: Trigger
|
||||||
|
run: npmci trigger
|
||||||
|
|
||||||
|
- name: Build docs and upload artifacts
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
pnpm install -g @git.zone/tsdoc
|
||||||
|
npmci command tsdoc
|
||||||
|
continue-on-error: true
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,7 +3,6 @@
|
|||||||
# artifacts
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
public/
|
public/
|
||||||
pages/
|
|
||||||
|
|
||||||
# installs
|
# installs
|
||||||
node_modules/
|
node_modules/
|
||||||
@ -17,4 +16,4 @@ node_modules/
|
|||||||
dist/
|
dist/
|
||||||
dist_*/
|
dist_*/
|
||||||
|
|
||||||
# custom
|
#------# custom
|
@ -1,5 +1,14 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-03-24 - 8.0.3 - fix(ci)
|
||||||
|
Add Gitea workflow files for CI/CD, update repository URLs, and standardize formatting
|
||||||
|
|
||||||
|
- Added .gitea/workflows/default_nottags.yaml and default_tags.yaml to manage CI for tagged and non-tagged pushes
|
||||||
|
- Updated package.json repository, homepage, and bugs URLs to reflect the new code.foss.global location
|
||||||
|
- Modified .gitignore custom section comment for clarity
|
||||||
|
- Standardized code formatting and string quoting across various source files
|
||||||
|
- Enhanced tsconfig.json by adding baseUrl and paths settings
|
||||||
|
|
||||||
## 2025-03-24 - 8.0.2 - fix(commitinfo)
|
## 2025-03-24 - 8.0.2 - fix(commitinfo)
|
||||||
Refresh autogenerated commit info and internal metadata for version consistency
|
Refresh autogenerated commit info and internal metadata for version consistency
|
||||||
|
|
||||||
|
13
package.json
13
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "8.0.2",
|
"version": "8.0.3",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Provides TypeScript definitions for various business, financial, networking, content, and other common classes.",
|
"description": "Provides TypeScript definitions for various business, financial, networking, content, and other common classes.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -13,7 +13,7 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/tsclass/tsclass.git"
|
"url": "https://code.foss.global/tsclass/tsclass.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"TypeScript",
|
"TypeScript",
|
||||||
@ -33,9 +33,9 @@
|
|||||||
"author": "Task Venture Capital GmbH",
|
"author": "Task Venture Capital GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/tsclass/tsclass/issues"
|
"url": "https://code.foss.global/tsclass/tsclass/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/tsclass/tsclass#readme",
|
"homepage": "https://code.foss.global/tsclass/tsclass#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"type-fest": "^4.37.0"
|
"type-fest": "^4.37.0"
|
||||||
},
|
},
|
||||||
@ -60,5 +60,8 @@
|
|||||||
],
|
],
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"last 1 chrome versions"
|
"last 1 chrome versions"
|
||||||
]
|
],
|
||||||
|
"pnpm": {
|
||||||
|
"overrides": {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@tsclass/tsclass',
|
name: '@tsclass/tsclass',
|
||||||
version: '8.0.2',
|
version: '8.0.3',
|
||||||
description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
|
description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { business, finance } from "../index.js";
|
import { business, finance } from '../index.js';
|
||||||
import type { TCurrency } from "./currency.js";
|
import type { TCurrency } from './currency.js';
|
||||||
|
|
||||||
export type TInvoiceStatus = "draft" | "invoice" | "paid" | "refunded";
|
export type TInvoiceStatus = 'draft' | 'invoice' | 'paid' | 'refunded';
|
||||||
|
|
||||||
export type TInvoiceItem = {
|
export type TInvoiceItem = {
|
||||||
position: number;
|
position: number;
|
||||||
@ -14,10 +14,10 @@ export type TInvoiceItem = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type TInvoiceEnvelope<
|
export type TInvoiceEnvelope<
|
||||||
TYPE extends "creditnote" | "debitnote",
|
TYPE extends 'creditnote' | 'debitnote',
|
||||||
FIELDS
|
FIELDS,
|
||||||
> = business.TLetterEnvelope<
|
> = business.TLetterEnvelope<
|
||||||
"invoice",
|
'invoice',
|
||||||
{
|
{
|
||||||
invoiceId: string;
|
invoiceId: string;
|
||||||
invoiceType: TYPE;
|
invoiceType: TYPE;
|
||||||
@ -56,8 +56,8 @@ export type TInvoiceEnvelope<
|
|||||||
} & FIELDS
|
} & FIELDS
|
||||||
>;
|
>;
|
||||||
|
|
||||||
export type TCreditNote = TInvoiceEnvelope<"creditnote", {}>;
|
export type TCreditNote = TInvoiceEnvelope<'creditnote', {}>;
|
||||||
export type TDebitNote = TInvoiceEnvelope<"debitnote", {}>;
|
export type TDebitNote = TInvoiceEnvelope<'debitnote', {}>;
|
||||||
|
|
||||||
export type TInvoice = TCreditNote | TDebitNote;
|
export type TInvoice = TCreditNote | TDebitNote;
|
||||||
|
|
||||||
|
14
ts/index.ts
14
ts/index.ts
@ -31,7 +31,19 @@ import * as storage from './storage/index.js';
|
|||||||
// Website
|
// Website
|
||||||
import * as website from './website/index.js';
|
import * as website from './website/index.js';
|
||||||
|
|
||||||
export { business, container, code, database, finance, content, general, network, saas, storage, website };
|
export {
|
||||||
|
business,
|
||||||
|
container,
|
||||||
|
code,
|
||||||
|
database,
|
||||||
|
finance,
|
||||||
|
content,
|
||||||
|
general,
|
||||||
|
network,
|
||||||
|
saas,
|
||||||
|
storage,
|
||||||
|
website,
|
||||||
|
};
|
||||||
|
|
||||||
import type * as typeFest from 'type-fest';
|
import type * as typeFest from 'type-fest';
|
||||||
import * as typeFestOwn from './typefest.own.js';
|
import * as typeFestOwn from './typefest.own.js';
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { type ICert } from "./cert.js";
|
import { type ICert } from './cert.js';
|
||||||
|
|
||||||
export class ICnameDescriptor {
|
export class ICnameDescriptor {
|
||||||
/**
|
/**
|
||||||
@ -26,4 +26,4 @@ export class ICnameDescriptor {
|
|||||||
* the ssl certificate
|
* the ssl certificate
|
||||||
*/
|
*/
|
||||||
sslCertificate?: ICert;
|
sslCertificate?: ICert;
|
||||||
};
|
}
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
export type TDnsRecordType =
|
export type TDnsRecordType =
|
||||||
| "A"
|
| 'A'
|
||||||
| "AAAA"
|
| 'AAAA'
|
||||||
| "CNAME"
|
| 'CNAME'
|
||||||
| "LOC"
|
| 'LOC'
|
||||||
| "PTR"
|
| 'PTR'
|
||||||
| "MX"
|
| 'MX'
|
||||||
| "NAPTR"
|
| 'NAPTR'
|
||||||
| "NS"
|
| 'NS'
|
||||||
| "SRV"
|
| 'SRV'
|
||||||
| "TXT"
|
| 'TXT'
|
||||||
| "CAA"
|
| 'CAA'
|
||||||
| "CERT"
|
| 'CERT'
|
||||||
| "DNSKEY"
|
| 'DNSKEY'
|
||||||
| "DS"
|
| 'DS'
|
||||||
| "HTTPS"
|
| 'HTTPS'
|
||||||
| "SMIMEA"
|
| 'SMIMEA'
|
||||||
| "SSHFP"
|
| 'SSHFP'
|
||||||
| "SVCB"
|
| 'SVCB'
|
||||||
| "TLSA"
|
| 'TLSA'
|
||||||
| "URI";
|
| 'URI';
|
||||||
|
|
||||||
export interface IDnsRecord {
|
export interface IDnsRecord {
|
||||||
name: string;
|
name: string;
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
import type { TCompany } from "../business/contact.js";
|
import type { TCompany } from '../business/contact.js';
|
||||||
|
|
||||||
export interface IProduct {
|
export interface IProduct {
|
||||||
name: string;
|
name: string;
|
||||||
slogan: string;
|
slogan: string;
|
||||||
description: string;
|
description: string;
|
||||||
os: "web-based";
|
os: 'web-based';
|
||||||
category: "Business Application";
|
category: 'Business Application';
|
||||||
offers: any[];
|
offers: any[];
|
||||||
features: IProductFeature[];
|
features: IProductFeature[];
|
||||||
landingPage: string;
|
landingPage: string;
|
||||||
|
@ -2,7 +2,4 @@ type SecondArgument<T> = T extends (arg1: any, arg2: infer P, ...args: any[]) =>
|
|||||||
|
|
||||||
type ValueType<T> = T extends { [key: string]: infer U } ? U : never;
|
type ValueType<T> = T extends { [key: string]: infer U } ? U : never;
|
||||||
|
|
||||||
export type {
|
export type { SecondArgument, ValueType };
|
||||||
SecondArgument,
|
|
||||||
ValueType
|
|
||||||
}
|
|
||||||
|
@ -6,7 +6,9 @@
|
|||||||
"module": "NodeNext",
|
"module": "NodeNext",
|
||||||
"moduleResolution": "NodeNext",
|
"moduleResolution": "NodeNext",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"verbatimModuleSyntax": true
|
"verbatimModuleSyntax": true,
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {}
|
||||||
},
|
},
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"dist_*/**/*.d.ts"
|
"dist_*/**/*.d.ts"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user