@ztimson/momentum 0.15.2 → 0.17.0
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/actions.d.ts +3 -3
- package/dist/auth.d.ts +3 -3
- package/dist/data.d.ts +2 -2
- package/dist/email.d.ts +1 -1
- package/dist/groups.d.ts +2 -2
- package/dist/logger.d.ts +1 -1
- package/dist/momentum.d.ts +12 -12
- package/dist/settings.d.ts +2 -2
- package/dist/static.d.ts +2 -2
- package/dist/storage.d.ts +2 -2
- package/dist/users.d.ts +3 -3
- package/package.json +1 -1
package/dist/actions.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Meta } from './core';
|
|
2
|
-
import { BehaviorSubject } from 'rxjs';
|
|
3
|
-
import { TypedEmitter, XhrOptions, TypedEvents } from '@ztimson/utils';
|
|
4
1
|
import { Api } from './api';
|
|
2
|
+
import { TypedEmitter, XhrOptions, TypedEvents } from '@ztimson/utils';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { Meta } from './core';
|
|
5
5
|
|
|
6
6
|
export type Action = Meta & {
|
|
7
7
|
name: string;
|
package/dist/auth.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
2
|
-
import { Meta } from './core';
|
|
3
|
-
import { Api } from './api';
|
|
4
1
|
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { Api } from './api';
|
|
3
|
+
import { Meta } from './core';
|
|
4
|
+
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
5
5
|
|
|
6
6
|
export type Group = Meta & {
|
|
7
7
|
name: string;
|
package/dist/data.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
2
|
-
import { Meta } from './core';
|
|
3
1
|
import { Api } from './api';
|
|
2
|
+
import { Meta } from './core';
|
|
3
|
+
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
4
4
|
|
|
5
5
|
export type DataEvents = TypedEvents & {
|
|
6
6
|
DELETE: (collection: string, document: string) => any;
|
package/dist/email.d.ts
CHANGED
package/dist/groups.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
2
|
-
import { Group } from './auth';
|
|
3
1
|
import { Api } from './api';
|
|
2
|
+
import { Group } from './auth';
|
|
3
|
+
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
4
4
|
|
|
5
5
|
export type GroupEvents = TypedEvents & {
|
|
6
6
|
LIST: (users: Group[]) => any;
|
package/dist/logger.d.ts
CHANGED
package/dist/momentum.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { Static, StaticEvents } from './static';
|
|
2
|
-
import { Settings, SettingEvents } from './settings';
|
|
3
|
-
import { Users } from './users';
|
|
4
|
-
import { Storage, StorageEvents } from './storage';
|
|
5
|
-
import { Socket } from './sockets';
|
|
6
|
-
import { Logger, LogLevel } from './logger';
|
|
7
|
-
import { TypedEmitter, TypedEvents, XhrOptions } from '@ztimson/utils';
|
|
8
|
-
import { Groups } from './groups';
|
|
9
|
-
import { Email, EmailEvents } from './email';
|
|
10
|
-
import { Data, DataEvents } from './data';
|
|
11
|
-
import { Auth, AuthEvents, AuthOptions } from './auth';
|
|
12
|
-
import { Api, ApiEvents } from './api';
|
|
13
1
|
import { Actions } from './actions';
|
|
2
|
+
import { Api, ApiEvents } from './api';
|
|
3
|
+
import { Auth, AuthEvents, AuthOptions } from './auth';
|
|
4
|
+
import { Data, DataEvents } from './data';
|
|
5
|
+
import { Email, EmailEvents } from './email';
|
|
6
|
+
import { Groups } from './groups';
|
|
7
|
+
import { TypedEmitter, TypedEvents, XhrOptions } from '@ztimson/utils';
|
|
8
|
+
import { Logger, LogLevel } from './logger';
|
|
9
|
+
import { Socket } from './sockets';
|
|
10
|
+
import { Storage, StorageEvents } from './storage';
|
|
11
|
+
import { Users } from './users';
|
|
12
|
+
import { Settings, SettingEvents } from './settings';
|
|
13
|
+
import { Static, StaticEvents } from './static';
|
|
14
14
|
|
|
15
15
|
export type MomentumEvents = TypedEvents & ApiEvents & AuthEvents & DataEvents & EmailEvents & StaticEvents & StorageEvents & SettingEvents;
|
|
16
16
|
export type MomentumOptions = AuthOptions & {
|
package/dist/settings.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BehaviorSubject } from 'rxjs';
|
|
2
|
-
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
3
1
|
import { Api } from './api';
|
|
2
|
+
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
4
4
|
|
|
5
5
|
/** Momentum variable */
|
|
6
6
|
export type Setting<T> = {
|
package/dist/static.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FileMeta } from './storage';
|
|
2
|
-
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
3
1
|
import { Api } from './api';
|
|
2
|
+
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
3
|
+
import { FileMeta } from './storage';
|
|
4
4
|
|
|
5
5
|
export type StaticEvents = TypedEvents & {
|
|
6
6
|
LIST: (path: string, response: string[] | FileMeta) => any;
|
package/dist/storage.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PromiseProgress, RequestOptions, TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
2
|
-
import { Meta } from './core';
|
|
3
1
|
import { Api } from './api';
|
|
2
|
+
import { Meta } from './core';
|
|
3
|
+
import { PromiseProgress, RequestOptions, TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
4
4
|
|
|
5
5
|
export type DirMeta = {
|
|
6
6
|
children: (DirMeta | FileMeta)[];
|
package/dist/users.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BehaviorSubject } from 'rxjs';
|
|
2
|
-
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
3
|
-
import { User } from './auth';
|
|
4
1
|
import { Api } from './api';
|
|
2
|
+
import { User } from './auth';
|
|
3
|
+
import { TypedEmitter, TypedEvents } from '@ztimson/utils';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
5
|
|
|
6
6
|
export type UserEvents = TypedEvents & {
|
|
7
7
|
LIST: (users: User[]) => any;
|