@infrab4a/connect-nestjs 1.0.0-beta.0 → 1.0.0-beta.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.
- package/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +1 -1
- package/src/nest-connect.module.d.ts +1 -2
package/index.cjs.js
CHANGED
|
@@ -509,7 +509,7 @@ exports.NestHasuraGraphQLModule = NestHasuraGraphQLModule_1 = __decorate([
|
|
|
509
509
|
|
|
510
510
|
var NestConnectModule_1;
|
|
511
511
|
exports.NestConnectModule = NestConnectModule_1 = class NestConnectModule {
|
|
512
|
-
static initializeApp(
|
|
512
|
+
static initializeApp(options) {
|
|
513
513
|
return {
|
|
514
514
|
module: NestConnectModule_1,
|
|
515
515
|
imports: [
|
package/index.esm.js
CHANGED
|
@@ -505,7 +505,7 @@ NestHasuraGraphQLModule = NestHasuraGraphQLModule_1 = __decorate([
|
|
|
505
505
|
|
|
506
506
|
var NestConnectModule_1;
|
|
507
507
|
let NestConnectModule = NestConnectModule_1 = class NestConnectModule {
|
|
508
|
-
static initializeApp(
|
|
508
|
+
static initializeApp(options) {
|
|
509
509
|
return {
|
|
510
510
|
module: NestConnectModule_1,
|
|
511
511
|
imports: [
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { Shops } from '@infrab4a/connect';
|
|
2
1
|
import { DynamicModule } from '@nestjs/common';
|
|
3
2
|
export declare class NestConnectModule {
|
|
4
|
-
static initializeApp(
|
|
3
|
+
static initializeApp(options: {
|
|
5
4
|
firebase: {
|
|
6
5
|
googleApplicationCredential: string;
|
|
7
6
|
};
|