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.
- package/dist/dist/index.d.ts +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +5 -5
- package/dist/src/ElysiaPlugin/routes/entity/anonymousCreate.d.ts +27 -0
- package/dist/src/ElysiaPlugin/routes/entity/anonymousCreate.test.d.ts +1 -0
- package/dist/src/ElysiaPlugin/routes/secrets/types.d.ts +8 -0
- package/dist/src/ElysiaPlugin/runtime.d.ts +49 -0
- package/dist/src/ElysiaPlugin/runtime.test.d.ts +1 -0
- package/dist/src/Managers/Storage/SmbStorageProvider.d.ts +7 -0
- package/dist/src/Managers/Storage/index.d.ts +1 -0
- package/dist/src/Managers/Storage/migrate.d.ts +39 -0
- package/dist/src/Managers/Storage/migrate.test.d.ts +1 -0
- package/dist/src/Managers/Storage/types.d.ts +5 -0
- package/dist/src/types.d.ts +25 -0
- package/package.json +1 -1
- package/schemas/table.schema.json +21 -1
package/dist/dist/index.d.ts
CHANGED
|
@@ -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';
|