@goweekdays/core 2.11.19 → 2.12.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @goweekdays/core
2
2
 
3
+ ## 2.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 1279d60: Add job-status-config & options; refactor attrs
8
+
9
+ ## 2.12.0
10
+
11
+ ### Minor Changes
12
+
13
+ - ecbc875: Jobs profile management initial release
14
+
3
15
  ## 2.11.19
4
16
 
5
17
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1159,6 +1159,37 @@ declare function usePermissionGroupController(): {
1159
1159
  updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1160
1160
  };
1161
1161
 
1162
+ type TOption = {
1163
+ _id?: ObjectId;
1164
+ name: string;
1165
+ createdAt?: Date;
1166
+ };
1167
+ declare const schemaOption: Joi.StringSchema<string>;
1168
+ declare function modelOption(value: TOption): {
1169
+ _id: ObjectId | undefined;
1170
+ name: string;
1171
+ createdAt: Date;
1172
+ };
1173
+
1174
+ declare function useOptionRepo(namespace_collection: string): {
1175
+ createIndexes: () => Promise<string>;
1176
+ delCachedData: () => void;
1177
+ add: (value: TOption, session?: ClientSession) => Promise<bson.ObjectId>;
1178
+ getAll: ({ search, page, limit }?: {
1179
+ search?: string | undefined;
1180
+ page?: number | undefined;
1181
+ limit?: number | undefined;
1182
+ }) => Promise<Record<string, any>>;
1183
+ getByName: (name: string) => Promise<TOption | null>;
1184
+ };
1185
+
1186
+ declare function useOptionCtrl(): {
1187
+ getLocations: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1188
+ getJobTitles: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1189
+ getCurrencies: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1190
+ getAllCities: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1191
+ };
1192
+
1162
1193
  type TJobPost = {
1163
1194
  _id?: ObjectId;
1164
1195
  org: ObjectId | string;
@@ -1191,9 +1222,6 @@ declare function useJobPostController(): {
1191
1222
  updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1192
1223
  deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1193
1224
  updateStatusById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1194
- getLocations: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1195
- getJobTitles: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1196
- getCurrencies: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1197
1225
  };
1198
1226
 
1199
1227
  declare function useJobPostRepo(): {
@@ -1276,6 +1304,45 @@ declare function useLedgerBillingController(): {
1276
1304
  getSummary: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1277
1305
  };
1278
1306
 
1307
+ type TJobStatusSetup = {
1308
+ id: ObjectId | string;
1309
+ allowedFrom: string[];
1310
+ allowedTo: string[];
1311
+ roles?: ObjectId[];
1312
+ createdAt?: Date | string;
1313
+ updatedAt?: Date | string;
1314
+ };
1315
+ type TJobStatusTrans = {
1316
+ _id?: ObjectId;
1317
+ org: ObjectId | string;
1318
+ statusTransitions: TJobStatusSetup[];
1319
+ createdAt?: Date | string;
1320
+ updatedAt?: Date | string;
1321
+ };
1322
+ declare const schemaJobStatusSetup: Joi.ObjectSchema<any>;
1323
+ declare const schemaJobStatusSetupUpdate: Joi.ObjectSchema<any>;
1324
+ declare const schemaJobStatusTrans: Joi.ObjectSchema<any>;
1325
+ declare function modelJobStatusTrans(data: TJobStatusTrans): TJobStatusTrans;
1326
+ declare function modelJobStatusSetup(data: TJobStatusSetup): TJobStatusSetup;
1327
+ declare const DEFAULT_JOB_STATUS_SETUP: TJobStatusSetup[];
1328
+
1329
+ declare function useJobStatusConfigRepo(): {
1330
+ createIndexes: () => Promise<string>;
1331
+ delCachedData: () => void;
1332
+ add: (value: TJobStatusTrans, session?: ClientSession) => Promise<string>;
1333
+ getById: (id: ObjectId | string) => Promise<mongodb.WithId<bson.Document> | TJobStatusTrans | null>;
1334
+ addStatusSetup: (_id: ObjectId | string, options: TJobStatusSetup) => Promise<string>;
1335
+ updateStatusSetupById: (_id: ObjectId | string, statusId: ObjectId | string, options: Partial<TJobStatusSetup>) => Promise<string>;
1336
+ deleteStatusSetupById: (_id: ObjectId | string, statusId: ObjectId | string) => Promise<string>;
1337
+ };
1338
+
1339
+ declare function useJobStatusConfigController(): {
1340
+ getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1341
+ addStatusSetup: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1342
+ updateStatusSetupById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1343
+ deleteStatusSetupById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1344
+ };
1345
+
1279
1346
  type TJobApplicationMetadata = {
1280
1347
  resume?: string;
1281
1348
  resumeUrl?: string;
@@ -1333,6 +1400,241 @@ declare function useJobApplicationController(): {
1333
1400
  updateStatusById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1334
1401
  };
1335
1402
 
1403
+ type TJobProfileWorkExp = {
1404
+ id: ObjectId | string;
1405
+ jobTitle: string;
1406
+ company: string;
1407
+ country: string;
1408
+ cityState?: string;
1409
+ fromMonth: string;
1410
+ fromYear: string;
1411
+ toMonth?: string;
1412
+ toYear?: string;
1413
+ currentlyWorking?: boolean;
1414
+ description?: string;
1415
+ additionalInfo?: string;
1416
+ };
1417
+ type TJobProfileEdu = {
1418
+ id: ObjectId | string;
1419
+ levelOfEducation: string;
1420
+ fieldOfStudy: string;
1421
+ schoolName: string;
1422
+ country: string;
1423
+ location?: string;
1424
+ currentlyEnrolled?: boolean;
1425
+ fromMonth: string;
1426
+ fromYear: string;
1427
+ toMonth?: string;
1428
+ toYear?: string;
1429
+ additionalInfo?: string;
1430
+ };
1431
+ type TJobProfileSkill = {
1432
+ id: ObjectId | string;
1433
+ name: string;
1434
+ proficiency?: string;
1435
+ };
1436
+ type TJobProfileCert = {
1437
+ id: ObjectId | string;
1438
+ title: string;
1439
+ noExpiry: boolean;
1440
+ fromMonth: string;
1441
+ fromYear: string;
1442
+ toMonth?: string;
1443
+ toYear?: string;
1444
+ description?: string;
1445
+ };
1446
+ type TJobProfileAward = {
1447
+ id: ObjectId | string;
1448
+ title: string;
1449
+ fromMonth: string;
1450
+ fromYear: string;
1451
+ description?: string;
1452
+ };
1453
+ type TJobProfileGroup = {
1454
+ id: ObjectId | string;
1455
+ title: string;
1456
+ active: boolean;
1457
+ fromMonth: string;
1458
+ fromYear: string;
1459
+ toMonth?: string;
1460
+ toYear?: string;
1461
+ description?: string;
1462
+ };
1463
+ type TJobProfileLang = {
1464
+ id: ObjectId | string;
1465
+ language: string;
1466
+ proficiency: string;
1467
+ };
1468
+ type TJobProfileMilitaryExp = {
1469
+ country: string;
1470
+ branch: string;
1471
+ rank: string;
1472
+ serving: boolean;
1473
+ fromMonth: string;
1474
+ fromYear: string;
1475
+ toMonth?: string;
1476
+ toYear?: string;
1477
+ description?: string;
1478
+ commendations?: string;
1479
+ };
1480
+ type TJobProfilePatent = {
1481
+ id: ObjectId | string;
1482
+ title: string;
1483
+ patentNumber: string;
1484
+ url?: string;
1485
+ fromMonth: string;
1486
+ fromYear: string;
1487
+ description?: string;
1488
+ };
1489
+ type TJobProfilePublication = {
1490
+ id: ObjectId | string;
1491
+ title: string;
1492
+ url?: string;
1493
+ fromMonth: string;
1494
+ fromYear: string;
1495
+ description?: string;
1496
+ };
1497
+ type TJobProfile = {
1498
+ _id?: ObjectId;
1499
+ user: ObjectId;
1500
+ firstName: string;
1501
+ lastName: string;
1502
+ headline?: string;
1503
+ contact?: string;
1504
+ showContact?: boolean;
1505
+ email: string;
1506
+ verifiedEmail?: boolean;
1507
+ country: string;
1508
+ streetAddress?: string;
1509
+ cityState: string;
1510
+ postalCode?: string;
1511
+ relocate: boolean;
1512
+ summary?: string;
1513
+ citizenship?: string;
1514
+ workExperience?: TJobProfileWorkExp[];
1515
+ education: TJobProfileEdu[];
1516
+ skills?: TJobProfileSkill[];
1517
+ certifications?: TJobProfileCert[];
1518
+ additionalInfo?: string;
1519
+ awards?: TJobProfileAward[];
1520
+ groups?: TJobProfileGroup[];
1521
+ languages?: TJobProfileLang[];
1522
+ links?: string[];
1523
+ militaryExperience?: TJobProfileMilitaryExp;
1524
+ patents?: TJobProfilePatent[];
1525
+ publications?: TJobProfilePublication[];
1526
+ createdAt?: Date | String;
1527
+ updatedAt?: Date | String;
1528
+ deletedAt?: Date | String;
1529
+ };
1530
+ declare const schemaWorkExp: Joi.ObjectSchema<any>;
1531
+ declare const schemaEducation: Joi.ObjectSchema<any>;
1532
+ declare const schemaCertification: Joi.ObjectSchema<any>;
1533
+ declare const schemaJobProfileCert: Joi.ObjectSchema<any>;
1534
+ declare const schemaJobProfileCertDel: Joi.ObjectSchema<any>;
1535
+ declare const schemaSkill: Joi.ObjectSchema<any>;
1536
+ declare const schemaAward: Joi.ObjectSchema<any>;
1537
+ declare const schemaGroup: Joi.ObjectSchema<any>;
1538
+ declare const schemaLanguage: Joi.ObjectSchema<any>;
1539
+ declare const schemaMilitaryExp: Joi.ObjectSchema<any>;
1540
+ declare const schemaPatent: Joi.ObjectSchema<any>;
1541
+ declare const schemaPublication: Joi.ObjectSchema<any>;
1542
+ declare const schemaJobProfile: Joi.ObjectSchema<any>;
1543
+ declare const schemaJobProfileContactInfo: Joi.ObjectSchema<any>;
1544
+ declare const schemaJobProfileWorkExp: Joi.ObjectSchema<any>;
1545
+ declare const schemaJobProfilePersonalInfo: Joi.ObjectSchema<any>;
1546
+ declare const schemaJobProfileSummary: Joi.ObjectSchema<any>;
1547
+ declare const schemaJobProfileWorkExpDel: Joi.ObjectSchema<any>;
1548
+ declare const schemaJobProfileEdu: Joi.ObjectSchema<any>;
1549
+ declare const schemaJobProfileEduDel: Joi.ObjectSchema<any>;
1550
+ declare const schemaJobProfileSkill: Joi.ObjectSchema<any>;
1551
+ declare const schemaJobProfileSkillDel: Joi.ObjectSchema<any>;
1552
+ declare const schemaJobProfileLang: Joi.ObjectSchema<any>;
1553
+ declare const schemaJobProfileLangDel: Joi.ObjectSchema<any>;
1554
+ declare const schemaJobProfileAdditionalInfo: Joi.ObjectSchema<any>;
1555
+ declare function modelJobProfile(data: TJobProfile): TJobProfile;
1556
+ declare function modelJobProfileWorkExp(data: TJobProfileWorkExp): TJobProfileWorkExp;
1557
+ declare function modelJobProfileEdu(data: TJobProfileEdu): TJobProfileEdu;
1558
+ declare function modelJobProfileSkill(data: TJobProfileSkill): TJobProfileSkill;
1559
+ declare function modelJobProfileLang(data: TJobProfileLang): TJobProfileLang;
1560
+ declare function modelJobProfileCert(data: TJobProfileCert): TJobProfileCert;
1561
+
1562
+ declare function useJobProfileRepo(): {
1563
+ createIndexes: () => Promise<string>;
1564
+ delCachedData: () => void;
1565
+ add: (data: TJobProfile) => Promise<ObjectId>;
1566
+ getAll: ({ page, limit, search, status, }?: {
1567
+ page?: number | undefined;
1568
+ limit?: number | undefined;
1569
+ search?: string | undefined;
1570
+ status?: string | undefined;
1571
+ }) => Promise<{
1572
+ items: any[];
1573
+ pages: number;
1574
+ pageRange: string;
1575
+ } | {
1576
+ data: TJobProfile[];
1577
+ total: number;
1578
+ }>;
1579
+ getByUser: (user: string | ObjectId) => Promise<mongodb.WithId<bson.Document> | TJobProfile | null>;
1580
+ updateContactInfoById: (_id: string | ObjectId, options: {
1581
+ firstName?: string;
1582
+ lastName?: string;
1583
+ contact?: string;
1584
+ showContact?: boolean;
1585
+ country?: string;
1586
+ cityState?: string;
1587
+ streetAddress?: string;
1588
+ postalCode?: string;
1589
+ relocate?: boolean;
1590
+ }) => Promise<string>;
1591
+ updateSummaryById: (_id: string | ObjectId, summary: string) => Promise<string>;
1592
+ updatePersonalInfoById: (_id: string | ObjectId, options: {
1593
+ citizenship?: string;
1594
+ }) => Promise<string>;
1595
+ addWorkExpById: (_id: string | ObjectId, workExp: TJobProfileWorkExp) => Promise<string>;
1596
+ updateWorkExpById: (_id: string | ObjectId, workExp: TJobProfileWorkExp) => Promise<string>;
1597
+ deleteWorkExpById: (_id: string | ObjectId, workExpId: string | ObjectId) => Promise<string>;
1598
+ addEduById: (_id: string | ObjectId, edu: TJobProfileEdu) => Promise<string>;
1599
+ updateEduById: (_id: string | ObjectId, edu: TJobProfileEdu) => Promise<string>;
1600
+ deleteEduById: (_id: string | ObjectId, eduId: string | ObjectId) => Promise<string>;
1601
+ addSkillById: (_id: string | ObjectId, skill: TJobProfileSkill) => Promise<string>;
1602
+ updateSkillById: (_id: string | ObjectId, skill: TJobProfileSkill) => Promise<string>;
1603
+ deleteSkillById: (_id: string | ObjectId, skillId: string | ObjectId) => Promise<string>;
1604
+ addLangById: (_id: string | ObjectId, lang: TJobProfileLang) => Promise<string>;
1605
+ updateLangById: (_id: string | ObjectId, lang: TJobProfileLang) => Promise<string>;
1606
+ deleteLangById: (_id: string | ObjectId, langId: string | ObjectId) => Promise<string>;
1607
+ addCertById: (_id: string | ObjectId, cert: TJobProfileCert) => Promise<string>;
1608
+ updateCertById: (_id: string | ObjectId, cert: TJobProfileCert) => Promise<string>;
1609
+ deleteCertById: (_id: string | ObjectId, certId: string | ObjectId) => Promise<string>;
1610
+ updateAdditionalInfoById: (_id: string | ObjectId, additionalInfo: string) => Promise<string>;
1611
+ };
1612
+
1613
+ declare function useJobProfileCtrl(): {
1614
+ add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1615
+ getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1616
+ getByUser: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1617
+ updateContactInfoById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1618
+ updateSummaryById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1619
+ updatePersonalInfoById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1620
+ addWorkExpById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1621
+ updateWorkExpById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1622
+ deleteWorkExpById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1623
+ addEduById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1624
+ updateEduById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1625
+ deleteEduById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1626
+ addSkillById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1627
+ updateSkillById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1628
+ deleteSkillById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1629
+ addLangById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1630
+ updateLangById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1631
+ deleteLangById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1632
+ addCertById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1633
+ updateCertById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1634
+ deleteCertById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1635
+ updateAdditionalInfoById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1636
+ };
1637
+
1336
1638
  declare const MONGO_URI: string;
1337
1639
  declare const MONGO_DB: string;
1338
1640
  declare const PORT: number;
@@ -1372,4 +1674,4 @@ declare const XENDIT_BASE_URL: string;
1372
1674
  declare const DOMAIN: string;
1373
1675
  declare const APP_ORG: string;
1374
1676
 
1375
- export { ACCESS_TOKEN_EXPIRY, ACCESS_TOKEN_SECRET, APP_ACCOUNT, APP_MAIN, APP_ORG, DEFAULT_USER_EMAIL, DEFAULT_USER_FIRST_NAME, DEFAULT_USER_LAST_NAME, DEFAULT_USER_PASSWORD, DOMAIN, MAILER_EMAIL, MAILER_PASSWORD, MAILER_TRANSPORT_HOST, MAILER_TRANSPORT_PORT, MAILER_TRANSPORT_SECURE, MBuilding, MBuildingUnit, MFile, MONGO_DB, MONGO_URI, PAYPAL_API_URL, PAYPAL_CLIENT_ID, PAYPAL_CLIENT_SECRET, PAYPAL_WEBHOOK_ID, PORT, PaypalWebhookHeaders, REDIS_HOST, REDIS_PASSWORD, REDIS_PORT, REFRESH_TOKEN_EXPIRY, REFRESH_TOKEN_SECRET, SECRET_KEY, SPACES_ACCESS_KEY, SPACES_BUCKET, SPACES_ENDPOINT, SPACES_REGION, SPACES_SECRET_KEY, TApp, TBuilding, TBuildingUnit, TCounter, TFile, TJobApplication, TJobApplicationMetadata, TJobPost, TLedgerBill, TMember, TOrg, TPermission, TPermissionGroup, TPlan, TPromo, TRole, TSubscribe, TSubscription, TSubscriptionTransaction, TUser, TVerification, TVerificationMetadata, VERIFICATION_FORGET_PASSWORD_DURATION, VERIFICATION_USER_INVITE_DURATION, XENDIT_BASE_URL, XENDIT_SECRET_KEY, currencies, isDev, jobApplicationStatuses, ledgerBillStatuses, ledgerBillTypes, modelApp, modelJobApplication, modelJobPost, modelLedgerBill, modelMember, modelOrg, modelPermission, modelPermissionGroup, modelPlan, modelPromo, modelRole, modelSubscription, modelSubscriptionTransaction, modelUser, modelVerification, schemaApp, schemaAppUpdate, schemaBuilding, schemaBuildingUnit, schemaInviteMember, schemaJobApplication, schemaJobPost, schemaJobPostUpdate, schemaLedgerBill, schemaLedgerBillingSummary, schemaMember, schemaMemberRole, schemaMemberStatus, schemaOrg, schemaOrgAdd, schemaOrgPilot, schemaOrgUpdate, schemaPermission, schemaPermissionGroup, schemaPermissionGroupUpdate, schemaPermissionUpdate, schemaPlan, schemaPromo, schemaRole, schemaRoleUpdate, schemaSubscribe, schemaSubscription, schemaSubscriptionCompute, schemaSubscriptionPromoCode, schemaSubscriptionSeats, schemaSubscriptionTransaction, schemaSubscriptionUpdate, schemaUpdateOptions, schemaUser, schemaVerification, schemaVerificationOrgInvite, transactionSchema, useAppController, useAppRepo, useAppService, useAuthController, useAuthService, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useCounterModel, useCounterRepo, useFileController, useFileRepo, useFileService, useGitHubService, useJobApplicationController, useJobApplicationRepo, useJobPostController, useJobPostRepo, useJobPostService, useLedgerBillingController, useLedgerBillingRepo, useMemberController, useMemberRepo, useOrgController, useOrgRepo, useOrgService, usePaypalService, usePermissionController, usePermissionGroupController, usePermissionGroupRepo, usePermissionGroupService, usePermissionRepo, usePermissionService, usePlanController, usePlanRepo, usePlanService, usePromoController, usePromoRepo, usePromoUsageRepo, useRoleController, useRoleRepo, useRoleService, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useSubscriptionTransactionController, useSubscriptionTransactionRepo, useUserController, useUserRepo, useUserService, useUtilController, useVerificationController, useVerificationRepo, useVerificationService };
1677
+ export { ACCESS_TOKEN_EXPIRY, ACCESS_TOKEN_SECRET, APP_ACCOUNT, APP_MAIN, APP_ORG, DEFAULT_JOB_STATUS_SETUP, DEFAULT_USER_EMAIL, DEFAULT_USER_FIRST_NAME, DEFAULT_USER_LAST_NAME, DEFAULT_USER_PASSWORD, DOMAIN, MAILER_EMAIL, MAILER_PASSWORD, MAILER_TRANSPORT_HOST, MAILER_TRANSPORT_PORT, MAILER_TRANSPORT_SECURE, MBuilding, MBuildingUnit, MFile, MONGO_DB, MONGO_URI, PAYPAL_API_URL, PAYPAL_CLIENT_ID, PAYPAL_CLIENT_SECRET, PAYPAL_WEBHOOK_ID, PORT, PaypalWebhookHeaders, REDIS_HOST, REDIS_PASSWORD, REDIS_PORT, REFRESH_TOKEN_EXPIRY, REFRESH_TOKEN_SECRET, SECRET_KEY, SPACES_ACCESS_KEY, SPACES_BUCKET, SPACES_ENDPOINT, SPACES_REGION, SPACES_SECRET_KEY, TApp, TBuilding, TBuildingUnit, TCounter, TFile, TJobApplication, TJobApplicationMetadata, TJobPost, TJobProfile, TJobProfileAward, TJobProfileCert, TJobProfileEdu, TJobProfileGroup, TJobProfileLang, TJobProfileMilitaryExp, TJobProfilePatent, TJobProfilePublication, TJobProfileSkill, TJobProfileWorkExp, TJobStatusSetup, TJobStatusTrans, TLedgerBill, TMember, TOption, TOrg, TPermission, TPermissionGroup, TPlan, TPromo, TRole, TSubscribe, TSubscription, TSubscriptionTransaction, TUser, TVerification, TVerificationMetadata, VERIFICATION_FORGET_PASSWORD_DURATION, VERIFICATION_USER_INVITE_DURATION, XENDIT_BASE_URL, XENDIT_SECRET_KEY, currencies, isDev, jobApplicationStatuses, ledgerBillStatuses, ledgerBillTypes, modelApp, modelJobApplication, modelJobPost, modelJobProfile, modelJobProfileCert, modelJobProfileEdu, modelJobProfileLang, modelJobProfileSkill, modelJobProfileWorkExp, modelJobStatusSetup, modelJobStatusTrans, modelLedgerBill, modelMember, modelOption, modelOrg, modelPermission, modelPermissionGroup, modelPlan, modelPromo, modelRole, modelSubscription, modelSubscriptionTransaction, modelUser, modelVerification, schemaApp, schemaAppUpdate, schemaAward, schemaBuilding, schemaBuildingUnit, schemaCertification, schemaEducation, schemaGroup, schemaInviteMember, schemaJobApplication, schemaJobPost, schemaJobPostUpdate, schemaJobProfile, schemaJobProfileAdditionalInfo, schemaJobProfileCert, schemaJobProfileCertDel, schemaJobProfileContactInfo, schemaJobProfileEdu, schemaJobProfileEduDel, schemaJobProfileLang, schemaJobProfileLangDel, schemaJobProfilePersonalInfo, schemaJobProfileSkill, schemaJobProfileSkillDel, schemaJobProfileSummary, schemaJobProfileWorkExp, schemaJobProfileWorkExpDel, schemaJobStatusSetup, schemaJobStatusSetupUpdate, schemaJobStatusTrans, schemaLanguage, schemaLedgerBill, schemaLedgerBillingSummary, schemaMember, schemaMemberRole, schemaMemberStatus, schemaMilitaryExp, schemaOption, schemaOrg, schemaOrgAdd, schemaOrgPilot, schemaOrgUpdate, schemaPatent, schemaPermission, schemaPermissionGroup, schemaPermissionGroupUpdate, schemaPermissionUpdate, schemaPlan, schemaPromo, schemaPublication, schemaRole, schemaRoleUpdate, schemaSkill, schemaSubscribe, schemaSubscription, schemaSubscriptionCompute, schemaSubscriptionPromoCode, schemaSubscriptionSeats, schemaSubscriptionTransaction, schemaSubscriptionUpdate, schemaUpdateOptions, schemaUser, schemaVerification, schemaVerificationOrgInvite, schemaWorkExp, transactionSchema, useAppController, useAppRepo, useAppService, useAuthController, useAuthService, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useCounterModel, useCounterRepo, useFileController, useFileRepo, useFileService, useGitHubService, useJobApplicationController, useJobApplicationRepo, useJobPostController, useJobPostRepo, useJobPostService, useJobProfileCtrl, useJobProfileRepo, useJobStatusConfigController, useJobStatusConfigRepo, useLedgerBillingController, useLedgerBillingRepo, useMemberController, useMemberRepo, useOptionCtrl, useOptionRepo, useOrgController, useOrgRepo, useOrgService, usePaypalService, usePermissionController, usePermissionGroupController, usePermissionGroupRepo, usePermissionGroupService, usePermissionRepo, usePermissionService, usePlanController, usePlanRepo, usePlanService, usePromoController, usePromoRepo, usePromoUsageRepo, useRoleController, useRoleRepo, useRoleService, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useSubscriptionTransactionController, useSubscriptionTransactionRepo, useUserController, useUserRepo, useUserService, useUtilController, useVerificationController, useVerificationRepo, useVerificationService };