added pako and te
This commit is contained in:
parent
f6a47f7a8c
commit
505565a09e
9 changed files with 62 additions and 3 deletions
|
|
@ -0,0 +1,6 @@
|
|||
export const TE_CONFIG = {
|
||||
// Add configuration constants here
|
||||
API_URL: 'https://api.example.com',
|
||||
REQUEST_TIMEOUT: 30000,
|
||||
KEY: 'tradingeconomics-charts-core-api-key',
|
||||
};
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
export * from './config';
|
||||
export * from './types';
|
||||
13
apps/stock/data-ingestion/src/handlers/te/shared/types.ts
Normal file
13
apps/stock/data-ingestion/src/handlers/te/shared/types.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// Define types and interfaces for the TE handler here
|
||||
|
||||
export interface TeData {
|
||||
id: string;
|
||||
name: string;
|
||||
// Add more fields as needed
|
||||
}
|
||||
|
||||
export interface TeResponse {
|
||||
data: TeData[];
|
||||
status: string;
|
||||
timestamp: Date;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue