entropic-bond 1.52.1 → 1.53.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.
@@ -1,7 +1,6 @@
1
- import { UserCredentials, SignData, AuthProvider } from './user-auth-types';
2
- import { AuthService } from './auth';
3
1
  import { Collection } from '../types/utility-types';
4
-
2
+ import { AuthService } from './auth';
3
+ import { UserCredentials, SignData, AuthProvider } from './user-auth-types';
5
4
  export declare class AuthMock extends AuthService {
6
5
  signUp<T extends {}>(signData: SignData): Promise<UserCredentials<T>>;
7
6
  login<T extends {}>(signData: SignData): Promise<UserCredentials<T>>;
@@ -1,5 +1,4 @@
1
1
  import { AuthProvider, SignData, UserCredentials } from './user-auth-types';
2
-
3
2
  /**
4
3
  * The AuthService class is an abstract class that defines the interface of an authentication service.
5
4
  * You should derive from this class to implement your own authentication service.
@@ -101,7 +100,7 @@ export declare class Auth extends AuthService {
101
100
  * }
102
101
  * })
103
102
  */
104
- onAuthStateChange<T extends {}>(onChange: (userCredentials: UserCredentials<T>) => void): import('../observable/observable').Unsubscriber;
103
+ onAuthStateChange<T extends {}>(onChange: (userCredentials: UserCredentials<T>) => void): import('..').Unsubscriber;
105
104
  /**
106
105
  * Removes a listener that was added by `onAuthStateChange` method.
107
106
  * @param onChange the listener to be removed
@@ -1,5 +1,4 @@
1
1
  import { CloudFunction, CloudFunctionsService } from './cloud-functions';
2
-
3
2
  interface FunctionCollection {
4
3
  [key: string]: CloudFunction<any, any>;
5
4
  }
@@ -1,5 +1,4 @@
1
1
  import { CloudStorage, StorableData, UploadControl } from './cloud-storage';
2
-
3
2
  export declare class MockCloudStorage extends CloudStorage {
4
3
  constructor(pathToMockFiles?: string);
5
4
  /**
@@ -1,7 +1,6 @@
1
- import { CloudStorage, StorableData, UploadControl, UploadProgress } from './cloud-storage';
2
- import { Persistent } from '../persistent/persistent';
3
1
  import { Callback } from '../observable/observable';
4
-
2
+ import { Persistent } from '../persistent/persistent';
3
+ import { CloudStorage, StorableData, UploadControl, UploadProgress } from './cloud-storage';
5
4
  export declare enum StoredFileEvent {
6
5
  stored = 0,
7
6
  pendingDataSet = 1,
@@ -28,7 +27,7 @@ export declare class StoredFile extends Persistent {
28
27
  get mimeType(): string | undefined;
29
28
  setDataToStore(data: StorableData): this;
30
29
  get originalFileName(): string | undefined;
31
- onChange(listenerCallback: Callback<StoredFileChange>): import('../observable/observable').Unsubscriber;
30
+ onChange(listenerCallback: Callback<StoredFileChange>): import('..').Unsubscriber;
32
31
  private _reference;
33
32
  private _url;
34
33
  private _cloudStorageProviderName;