2024-10-01 13:49:18 +02:00
|
|
|
// Native scope
|
2026-04-20 08:12:07 +00:00
|
|
|
import * as crypto from 'node:crypto';
|
2024-09-29 13:56:38 +02:00
|
|
|
import * as path from 'path';
|
2026-04-20 08:12:07 +00:00
|
|
|
export { crypto, path };
|
2024-09-29 13:56:38 +02:00
|
|
|
|
2024-10-01 13:49:18 +02:00
|
|
|
// Project scope
|
2024-10-07 10:26:21 +02:00
|
|
|
import * as idpInterfaces from '../dist_ts_interfaces/index.js';
|
|
|
|
|
export { idpInterfaces };
|
2024-09-29 13:56:38 +02:00
|
|
|
|
2024-10-01 13:49:18 +02:00
|
|
|
// @api.global scope
|
|
|
|
|
import * as typedserver from '@api.global/typedserver';
|
2024-09-29 13:56:38 +02:00
|
|
|
import * as typedrequest from '@api.global/typedrequest';
|
|
|
|
|
import * as typedsocket from '@api.global/typedsocket';
|
|
|
|
|
|
2024-10-01 13:49:18 +02:00
|
|
|
export { typedserver, typedrequest, typedsocket };
|
2024-09-29 13:56:38 +02:00
|
|
|
|
|
|
|
|
// @serve.zone scope
|
|
|
|
|
import * as szPlatformClient from '@serve.zone/platformclient';
|
|
|
|
|
export { szPlatformClient };
|
|
|
|
|
|
2024-10-01 13:49:18 +02:00
|
|
|
// @push.rocks scope
|
2024-09-29 13:56:38 +02:00
|
|
|
import * as lik from '@push.rocks/lik';
|
|
|
|
|
import * as projectinfo from '@push.rocks/projectinfo';
|
|
|
|
|
import * as qenv from '@push.rocks/qenv';
|
|
|
|
|
import * as smartdata from '@push.rocks/smartdata';
|
|
|
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
2024-10-01 13:49:18 +02:00
|
|
|
import * as smartjwt from '@push.rocks/smartjwt';
|
|
|
|
|
import * as smartlog from '@push.rocks/smartlog';
|
2024-09-29 13:56:38 +02:00
|
|
|
import * as smartmail from '@push.rocks/smartmail';
|
|
|
|
|
import * as smarthash from '@push.rocks/smarthash';
|
|
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
|
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
|
import * as smarttime from '@push.rocks/smarttime';
|
|
|
|
|
import * as smartunique from '@push.rocks/smartunique';
|
|
|
|
|
import * as taskbuffer from '@push.rocks/taskbuffer';
|
2026-04-20 08:12:07 +00:00
|
|
|
import * as argon2 from 'argon2';
|
2024-09-29 13:56:38 +02:00
|
|
|
|
|
|
|
|
export {
|
2026-04-20 08:12:07 +00:00
|
|
|
argon2,
|
2024-09-29 13:56:38 +02:00
|
|
|
lik,
|
|
|
|
|
projectinfo,
|
|
|
|
|
qenv,
|
|
|
|
|
smartdata,
|
|
|
|
|
smartdelay,
|
|
|
|
|
smarthash,
|
|
|
|
|
smartjwt,
|
2024-10-01 13:49:18 +02:00
|
|
|
smartlog,
|
|
|
|
|
smartmail,
|
2024-09-29 13:56:38 +02:00
|
|
|
smartpath,
|
|
|
|
|
smartpromise,
|
|
|
|
|
smarttime,
|
|
|
|
|
smartunique,
|
|
|
|
|
taskbuffer,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// @tsclass scope
|
|
|
|
|
import * as tsclass from '@tsclass/tsclass';
|
2026-04-20 08:12:07 +00:00
|
|
|
export { tsclass };
|