nucleus-core-ts 0.9.776 → 0.9.778

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.
@@ -212,6 +212,7 @@ export function generateAdminEndpoints(config: any): {
212
212
  _error: undefined;
213
213
  };
214
214
  };
215
+ export function decodeHeaderList(header: any): any;
215
216
  export function createServerFactory(endpoints: any, config: any, getCookies: any, getHeaders: any): (endpointKey: any, payload: any) => Promise<{
216
217
  isSuccess: boolean;
217
218
  errors: {
package/dist/index.d.ts CHANGED
@@ -2,10 +2,12 @@ import 'reflect-metadata';
2
2
  export * from './src/Client';
3
3
  export type { SystemAddressEntity, SystemClaimEntity, SystemFileEntity, SystemMonitoringMetricEntity, SystemPaymentCustomerEntity, SystemPaymentInvoiceEntity, SystemPaymentMethodEntity, SystemPaymentPriceEntity, SystemPaymentProductEntity, SystemPaymentSubscriptionEntity, SystemPaymentTransactionEntity, SystemPaymentWebhookLogEntity, SystemPhoneEntity, SystemProfileEntity, SystemRoleClaimEntity, SystemRoleEntity, SystemUserCohortEntity, SystemUserEntity, SystemUserRoleEntity, } from './src/Client/ApiCaller/types';
4
4
  export { NucleusElysiaPlugin } from './src/ElysiaPlugin';
5
+ export type { NucleusContext, NucleusRuntime } from './src/ElysiaPlugin/runtime';
5
6
  export type { AuthorizationCheckResult, AuthorizationConfig, Claim, Role, RoleClaim, UserRole, } from './src/Services/Authorization/types';
6
7
  export type { AzureEmailServiceConfig } from './src/Services/Email/AzureEmailService';
7
8
  export { AzureEmailService } from './src/Services/Email/AzureEmailService';
8
9
  export type { EmailAttachment, EmailPayload, EmailSendResult, EmailService, } from './src/Services/Email/types';
9
- export { GmailService } from './src/Services/Gmail';
10
10
  export type { GmailServiceConfig } from './src/Services/Gmail';
11
+ export { GmailService } from './src/Services/Gmail';
11
12
  export type * from './src/types';
13
+ export { decodeHeaderList } from './src/Utils/headerList';