Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
9717989831 | |||
8cfaad2071 |
@ -1,5 +1,13 @@
|
||||
# Changelog
|
||||
|
||||
## 2025-04-12 - 8.2.1 - fix(business/job)
|
||||
Refactor job interface to support expanded employment details and improve type safety
|
||||
|
||||
- Changed exported IJob from a class to an interface
|
||||
- Removed obsolete properties (monthlyTotal, currency)
|
||||
- Added new types for contract, work location, experience level, and job status
|
||||
- Introduced detailed fields: url, location, postedDate, salary, contractType, skillTags, qualificationTags, languages, and history
|
||||
|
||||
## 2025-04-04 - 8.2.0 - feat(finance/payment)
|
||||
Add optional 'description' field to payment option info.
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "8.2.0",
|
||||
"version": "8.2.1",
|
||||
"private": false,
|
||||
"description": "Provides TypeScript definitions for various business, financial, networking, content, and other common classes.",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@tsclass/tsclass',
|
||||
version: '8.2.0',
|
||||
version: '8.2.1',
|
||||
description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
|
||||
}
|
||||
|
@ -1,17 +1,124 @@
|
||||
import * as finance from "../finance/index.js";
|
||||
import { type TContact } from "./contact.js";
|
||||
export class IJob {
|
||||
type: "contract" | "employment";
|
||||
techTags?: string[];
|
||||
qualificationTags?: string[];
|
||||
languages?: {
|
||||
name: string;
|
||||
level: "basic" | "intermediate" | "advanced" | "native";
|
||||
}[];
|
||||
|
||||
/**
|
||||
* Represents the type of employment contract
|
||||
*/
|
||||
export type TContractType =
|
||||
| 'full-time'
|
||||
| 'part-time'
|
||||
| 'contract'
|
||||
| 'freelance'
|
||||
| 'internship'
|
||||
| 'apprenticeship'
|
||||
| 'volunteer'
|
||||
| 'temporary'
|
||||
| 'seasonal';
|
||||
|
||||
/**
|
||||
* Represents the work location arrangement
|
||||
*/
|
||||
export type TWorkLocationType =
|
||||
| 'on-site'
|
||||
| 'hybrid'
|
||||
| 'remote';
|
||||
|
||||
/**
|
||||
* Represents the experience level required for the job
|
||||
*/
|
||||
export type TExperienceLevel =
|
||||
| 'entry'
|
||||
| 'mid'
|
||||
| 'senior'
|
||||
| 'executive';
|
||||
|
||||
/**
|
||||
* Represents the status of a job posting
|
||||
*/
|
||||
export type TJobStatus =
|
||||
| 'active'
|
||||
| 'closed'
|
||||
| 'expired'
|
||||
| 'filled'
|
||||
| 'archived';
|
||||
|
||||
/**
|
||||
* Language proficiency levels
|
||||
*/
|
||||
export type TLanguageProficiency =
|
||||
| 'basic'
|
||||
| 'intermediate'
|
||||
| 'advanced'
|
||||
| 'native';
|
||||
|
||||
/**
|
||||
* Represents a language requirement with name and proficiency level
|
||||
*/
|
||||
export interface ILanguageRequirement {
|
||||
name: string;
|
||||
description: string;
|
||||
monthlyTotal: number;
|
||||
currency: finance.TCurrency;
|
||||
from: TContact;
|
||||
contact: TContact;
|
||||
level: TLanguageProficiency;
|
||||
}
|
||||
|
||||
/**
|
||||
* Represents salary information with structure if needed
|
||||
*/
|
||||
export interface ISalaryInfo {
|
||||
min?: number;
|
||||
max?: number;
|
||||
currency?: finance.TCurrency;
|
||||
period?: 'hourly' | 'daily' | 'weekly' | 'monthly' | 'annually';
|
||||
}
|
||||
|
||||
/**
|
||||
* Represents a record in the job history
|
||||
*/
|
||||
export interface IJobHistory {
|
||||
timestamp: string;
|
||||
source: string;
|
||||
category?: string;
|
||||
action?: string;
|
||||
details?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Universal Job Interface representing a job posting
|
||||
*/
|
||||
export interface IJob {
|
||||
// Core job information
|
||||
id: string;
|
||||
title: string;
|
||||
company: string;
|
||||
description: string;
|
||||
url: string;
|
||||
|
||||
// Location information
|
||||
location: string;
|
||||
locationType?: TWorkLocationType;
|
||||
|
||||
// Dates
|
||||
postedDate?: string;
|
||||
|
||||
// Compensation
|
||||
salary?: ISalaryInfo;
|
||||
|
||||
// Classification
|
||||
contractType?: TContractType;
|
||||
category?: string;
|
||||
experienceLevel?: TExperienceLevel;
|
||||
|
||||
// Skills and requirements
|
||||
skillTags?: string[];
|
||||
qualificationTags?: string[];
|
||||
languages?: ILanguageRequirement[];
|
||||
|
||||
// Contact information
|
||||
from?: TContact;
|
||||
contact?: TContact;
|
||||
|
||||
// Metadata
|
||||
source: string;
|
||||
status: TJobStatus;
|
||||
firstScrapedAt: string;
|
||||
lastScrapedAt: string;
|
||||
history: IJobHistory[];
|
||||
}
|
Reference in New Issue
Block a user