feathers-ucan 0.1.9 → 0.1.11

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.
@@ -33,4 +33,3 @@ export declare class UcanStrategy extends AuthenticationBaseStrategy {
33
33
  accessToken: string;
34
34
  } | null>;
35
35
  }
36
- export {};
@@ -0,0 +1 @@
1
+ export * from './auth-service/index';
@@ -31,4 +31,3 @@ export declare class CoreCall {
31
31
  _update(id: NullableId, data: AnyObj, params?: AnyObj): Promise<any>;
32
32
  _remove(id: NullableId, params?: AnyObj): Promise<any>;
33
33
  }
34
- export {};
package/lib/core.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './core/index';
@@ -1 +1 @@
1
- export declare const VERSION = "0.1.9";
1
+ export declare const VERSION = "0.1.11";
@@ -72,4 +72,3 @@ export declare type PassConfig = {
72
72
  export declare const checkUcan: (requiredCapabilities: UcanCap, options?: UcanAuthOptions & PassConfig) => (context: HookContext) => Promise<HookContext>;
73
73
  export declare const ucanAuth: <S>(requiredCapabilities?: UcanCap, options?: UcanAuthOptions) => (context: HookContext<S>) => Promise<HookContext<S>>;
74
74
  export declare const allUcanAuth: <S>(methods: UcanAllArgs, options?: UcanAuthOptions) => (context: HookContext<S>) => Promise<HookContext<S>>;
75
- export {};
package/lib/hooks.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './hooks/index';
@@ -1 +0,0 @@
1
- export {};
package/lib/types.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './types/index';
package/lib/utils.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './utils/index';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feathers-ucan",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "Ucan extension of feathers jwt auth",
5
5
  "source": "src/index.ts",
6
6
  "unpkg": "lib/index.umd.js",