cloudcommerce 0.0.35 → 0.0.38
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/CHANGELOG.md +25 -0
- package/package.json +1 -1
- package/packages/api/package.json +1 -1
- package/packages/apps/discounts/package.json +1 -1
- package/packages/cli/config/firebase.json +22 -4
- package/packages/cli/lib/build.js +18 -0
- package/packages/cli/lib/index.js +8 -3
- package/packages/cli/package.json +1 -1
- package/packages/cli/src/build.ts +21 -0
- package/packages/cli/src/index.ts +8 -3
- package/packages/firebase/lib/config.js +18 -22
- package/packages/firebase/lib/defaults.js +1 -4
- package/packages/firebase/lib/env.js +17 -17
- package/packages/firebase/lib/handlers/check-store-events.js +26 -26
- package/packages/firebase/lib/handlers/check-store-events.js.map +1 -1
- package/packages/firebase/lib/index.d.ts +0 -2
- package/packages/firebase/lib/index.js +6 -32
- package/packages/firebase/lib/index.js.map +1 -1
- package/packages/firebase/lib/types.js +1 -1
- package/packages/firebase/package.json +2 -2
- package/packages/firebase/src/handlers/check-store-events.ts +3 -2
- package/packages/firebase/src/index.ts +5 -28
- package/packages/modules/firebase.js +1 -0
- package/packages/modules/lib/{firebase/index.js → firebase.js} +4 -4
- package/packages/modules/lib/firebase.js.map +1 -0
- package/packages/modules/package.json +5 -1
- package/packages/modules/src/firebase/.gitkeep +0 -0
- package/packages/modules/src/{firebase/index.ts → firebase.ts} +3 -3
- package/packages/passport/CHANGELOG.md +1 -0
- package/packages/passport/README.md +1 -0
- package/packages/passport/firebase.js +1 -0
- package/packages/passport/lib/firebase.js +16 -0
- package/packages/passport/lib/firebase.js.map +1 -0
- package/packages/passport/lib/index.js +1 -0
- package/packages/passport/lib/index.js.map +1 -0
- package/packages/passport/package.json +36 -0
- package/packages/passport/src/firebase/.gitkeep +0 -0
- package/packages/passport/src/firebase.ts +16 -0
- package/packages/passport/src/index.ts +0 -0
- package/packages/passport/tsconfig.json +3 -0
- package/packages/ssr/CHANGELOG.md +1 -0
- package/packages/ssr/README.md +1 -0
- package/packages/ssr/firebase.js +1 -0
- package/packages/ssr/lib/firebase.js +15 -0
- package/packages/ssr/lib/firebase.js.map +1 -0
- package/packages/ssr/lib/index.js +1 -0
- package/packages/ssr/lib/index.js.map +1 -0
- package/packages/ssr/package.json +37 -0
- package/packages/ssr/src/firebase/.gitkeep +0 -0
- package/packages/ssr/src/firebase.ts +15 -0
- package/packages/ssr/src/index.ts +0 -0
- package/packages/ssr/tsconfig.json +3 -0
- package/packages/storefront/package.json +1 -1
- package/packages/types/package.json +1 -1
- package/pnpm-lock.yaml +45 -5
- package/packages/modules/lib/firebase/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.38](https://github.com/ecomplus/cloud-commerce/compare/v0.0.37...v0.0.38) (2022-07-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* Add root `firebase.js` as complement to pkg named export to prevent no-unresolved eslint error ([a65587b](https://github.com/ecomplus/cloud-commerce/commit/a65587b840015aa9224df2458eb5b10385002c81))
|
|
11
|
+
* **firebase:** Edit `/config` pkg export to `./lib/config.js` to get TS declaration ([b873572](https://github.com/ecomplus/cloud-commerce/commit/b873572e16162094249f6bdc6a25ec8c1b344111))
|
|
12
|
+
|
|
13
|
+
### [0.0.37](https://github.com/ecomplus/cloud-commerce/compare/v0.0.36...v0.0.37) (2022-07-27)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **passport:** Setup `@cloudcommerce/passport` pkg for passport API (customers authentication) ([00a5c4b](https://github.com/ecomplus/cloud-commerce/commit/00a5c4bfb08083a770a9148377e506b920037242))
|
|
19
|
+
* **ssr:** Setup `@cloudcommerce/ssr` pkg to deploy isolated function ([59b8686](https://github.com/ecomplus/cloud-commerce/commit/59b8686efece3256b7a3809762601d4949d116f3))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **firebase:** Proper named imports from `firebase-admin` (cjs) package ([74aca73](https://github.com/ecomplus/cloud-commerce/commit/74aca73a76431d7d8f3f3e5c862085284cb2a6bd))
|
|
25
|
+
* **firebase:** Remove (test only) z function and ssr (moved to `@cloudcommerce/ssr`) ([dc8b8e5](https://github.com/ecomplus/cloud-commerce/commit/dc8b8e5d706f535806b306d8b24c34e4acdf8d7f))
|
|
26
|
+
* **modules:** Add `/firebase` named export to package.json ([0d3520f](https://github.com/ecomplus/cloud-commerce/commit/0d3520fc9b24877af5b14127e168ad2280b8ca4e))
|
|
27
|
+
|
|
28
|
+
### [0.0.36](https://github.com/ecomplus/cloud-commerce/compare/v0.0.35...v0.0.36) (2022-07-27)
|
|
29
|
+
|
|
5
30
|
### [0.0.35](https://github.com/ecomplus/cloud-commerce/compare/v0.0.34...v0.0.35) (2022-07-27)
|
|
6
31
|
|
|
7
32
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.38",
|
|
5
5
|
"description": "Open fair-code headless commerce platform: API-first, microservices based, event driven and cloud native",
|
|
6
6
|
"main": "packages/api/lib/index.js",
|
|
7
7
|
"author": "E-Com Club Softwares para E-commerce <ti@e-com.club>",
|
|
@@ -3,10 +3,28 @@
|
|
|
3
3
|
"rules": "firestore.rules",
|
|
4
4
|
"indexes": "firestore.indexes.json"
|
|
5
5
|
},
|
|
6
|
-
"functions":
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
"functions": [
|
|
7
|
+
{
|
|
8
|
+
"predeploy": "npm run build -- --codebase core --dir \"$RESOURCE_DIR\"",
|
|
9
|
+
"source": "functions/core",
|
|
10
|
+
"codebase": "core"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"predeploy": "npm run build -- --codebase modules --dir \"$RESOURCE_DIR\"",
|
|
14
|
+
"source": "functions/modules",
|
|
15
|
+
"codebase": "modules"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"predeploy": "npm run build -- --codebase passport --dir \"$RESOURCE_DIR\"",
|
|
19
|
+
"source": "functions/passport",
|
|
20
|
+
"codebase": "passport"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"predeploy": "npm run build -- --codebase ssr --dir \"$RESOURCE_DIR\"",
|
|
24
|
+
"source": "functions/ssr",
|
|
25
|
+
"codebase": "ssr"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
10
28
|
"hosting": {
|
|
11
29
|
"public": "public",
|
|
12
30
|
"ignore": [
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
import { fs } from 'zx';
|
|
3
|
+
|
|
4
|
+
const copyFunctionsConfig = async () => {
|
|
5
|
+
const functionsDir = path.join(process.cwd(), 'functions');
|
|
6
|
+
const filesToCopy = ['.env', 'config.json'];
|
|
7
|
+
const dirents = await fs.readdir(functionsDir, { withFileTypes: true });
|
|
8
|
+
for (let i = 0; i < dirents.length; i++) {
|
|
9
|
+
if (dirents[i].isDirectory()) {
|
|
10
|
+
for (let ii = 0; ii < filesToCopy.length; ii++) {
|
|
11
|
+
// eslint-disable-next-line no-await-in-loop
|
|
12
|
+
await fs.copy(path.join(functionsDir, filesToCopy[ii]), path.join(functionsDir, dirents[i].name, filesToCopy[ii]));
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export default copyFunctionsConfig;
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
$, argv, fs, echo, chalk,
|
|
5
5
|
} from 'zx';
|
|
6
6
|
import login from './login.js';
|
|
7
|
+
import build from './build.js';
|
|
7
8
|
|
|
8
9
|
const { FIREBASE_PROJECT_ID, GOOGLE_APPLICATION_CREDENTIALS } = process.env;
|
|
9
10
|
const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
|
|
@@ -33,7 +34,7 @@ if (projectId) {
|
|
|
33
34
|
}
|
|
34
35
|
|
|
35
36
|
export default async () => {
|
|
36
|
-
fs.
|
|
37
|
+
await fs.copy(path.join(__dirname, '..', 'config'), pwd);
|
|
37
38
|
const options = Object.keys(argv).reduce((opts, key) => {
|
|
38
39
|
if (key !== '_' && key !== 'deploy' && key !== 'commit') {
|
|
39
40
|
// eslint-disable-next-line no-param-reassign
|
|
@@ -62,6 +63,9 @@ ${chalk.bold('npx kill-port 4000 9099 5001 8080 5000 8085 9199 4400 4500')}
|
|
|
62
63
|
if (argv._.find((cmd) => /^(\w+:)?logs?$/.test(cmd))) {
|
|
63
64
|
return $firebase('functions:log');
|
|
64
65
|
}
|
|
66
|
+
if (argv._.includes('build')) {
|
|
67
|
+
return build();
|
|
68
|
+
}
|
|
65
69
|
if (argv._.includes('deploy')) {
|
|
66
70
|
return $firebase('deploy');
|
|
67
71
|
}
|
|
@@ -71,7 +75,7 @@ ${chalk.bold('npx kill-port 4000 9099 5001 8080 5000 8085 9199 4400 4500')}
|
|
|
71
75
|
}
|
|
72
76
|
if (argv._.includes('setup')) {
|
|
73
77
|
const { storeId, authenticationId, apiKey } = await login();
|
|
74
|
-
fs.
|
|
78
|
+
await fs.writeFile(path.join(pwd, 'functions', '.env'), `ECOM_AUTHENTICATION_ID=${authenticationId}
|
|
75
79
|
ECOM_API_KEY=${apiKey}
|
|
76
80
|
ECOM_STORE_ID=${storeId}
|
|
77
81
|
`);
|
|
@@ -79,7 +83,8 @@ ECOM_STORE_ID=${storeId}
|
|
|
79
83
|
await $firebase('deploy');
|
|
80
84
|
}
|
|
81
85
|
if (argv.commit !== false) {
|
|
82
|
-
fs.
|
|
86
|
+
await fs.writeFile(path.join(pwd, 'functions', 'config.json'), JSON.stringify({ storeId }, null, 2));
|
|
87
|
+
await build();
|
|
83
88
|
try {
|
|
84
89
|
await $`git add .firebaserc functions/config.json`;
|
|
85
90
|
await $`git commit -m "Setup store [skip ci]"`;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
import { fs } from 'zx';
|
|
3
|
+
|
|
4
|
+
const copyFunctionsConfig = async () => {
|
|
5
|
+
const functionsDir = path.join(process.cwd(), 'functions');
|
|
6
|
+
const filesToCopy = ['.env', 'config.json'];
|
|
7
|
+
const dirents = await fs.readdir(functionsDir, { withFileTypes: true });
|
|
8
|
+
for (let i = 0; i < dirents.length; i++) {
|
|
9
|
+
if (dirents[i].isDirectory()) {
|
|
10
|
+
for (let ii = 0; ii < filesToCopy.length; ii++) {
|
|
11
|
+
// eslint-disable-next-line no-await-in-loop
|
|
12
|
+
await fs.copy(
|
|
13
|
+
path.join(functionsDir, filesToCopy[ii]),
|
|
14
|
+
path.join(functionsDir, dirents[i].name, filesToCopy[ii]),
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export default copyFunctionsConfig;
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
chalk,
|
|
9
9
|
} from 'zx';
|
|
10
10
|
import login from './login';
|
|
11
|
+
import build from './build';
|
|
11
12
|
|
|
12
13
|
const {
|
|
13
14
|
FIREBASE_PROJECT_ID,
|
|
@@ -45,7 +46,7 @@ if (projectId) {
|
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
export default async () => {
|
|
48
|
-
fs.
|
|
49
|
+
await fs.copy(path.join(__dirname, '..', 'config'), pwd);
|
|
49
50
|
|
|
50
51
|
const options = Object.keys(argv).reduce((opts, key) => {
|
|
51
52
|
if (key !== '_' && key !== 'deploy' && key !== 'commit') {
|
|
@@ -77,6 +78,9 @@ ${chalk.bold('npx kill-port 4000 9099 5001 8080 5000 8085 9199 4400 4500')}
|
|
|
77
78
|
if (argv._.find((cmd) => /^(\w+:)?logs?$/.test(cmd))) {
|
|
78
79
|
return $firebase('functions:log');
|
|
79
80
|
}
|
|
81
|
+
if (argv._.includes('build')) {
|
|
82
|
+
return build();
|
|
83
|
+
}
|
|
80
84
|
if (argv._.includes('deploy')) {
|
|
81
85
|
return $firebase('deploy');
|
|
82
86
|
}
|
|
@@ -87,7 +91,7 @@ ${chalk.bold('npx kill-port 4000 9099 5001 8080 5000 8085 9199 4400 4500')}
|
|
|
87
91
|
|
|
88
92
|
if (argv._.includes('setup')) {
|
|
89
93
|
const { storeId, authenticationId, apiKey } = await login();
|
|
90
|
-
fs.
|
|
94
|
+
await fs.writeFile(
|
|
91
95
|
path.join(pwd, 'functions', '.env'),
|
|
92
96
|
`ECOM_AUTHENTICATION_ID=${authenticationId}
|
|
93
97
|
ECOM_API_KEY=${apiKey}
|
|
@@ -98,10 +102,11 @@ ECOM_STORE_ID=${storeId}
|
|
|
98
102
|
await $firebase('deploy');
|
|
99
103
|
}
|
|
100
104
|
if (argv.commit !== false) {
|
|
101
|
-
fs.
|
|
105
|
+
await fs.writeFile(
|
|
102
106
|
path.join(pwd, 'functions', 'config.json'),
|
|
103
107
|
JSON.stringify({ storeId }, null, 2),
|
|
104
108
|
);
|
|
109
|
+
await build();
|
|
105
110
|
try {
|
|
106
111
|
await $`git add .firebaserc functions/config.json`;
|
|
107
112
|
await $`git commit -m "Setup store [skip ci]"`;
|
|
@@ -1,29 +1,25 @@
|
|
|
1
1
|
import Deepmerge from '@fastify/deepmerge';
|
|
2
|
-
import {
|
|
3
|
-
DEFAULT_LANG, DEFAULT_CURRENCY, DEFAULT_CURRENCY_SYMBOL, DEFAULT_COUNTRY_CODE,
|
|
4
|
-
} from './defaults.js';
|
|
5
|
-
|
|
2
|
+
import { DEFAULT_LANG, DEFAULT_CURRENCY, DEFAULT_CURRENCY_SYMBOL, DEFAULT_COUNTRY_CODE, } from './defaults.js';
|
|
6
3
|
const deepmerge = Deepmerge();
|
|
7
4
|
const self = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
5
|
+
__config: {
|
|
6
|
+
hello: 'from @cloudcommerce/firebase',
|
|
7
|
+
lang: process.env.ECOM_LANG || DEFAULT_LANG,
|
|
8
|
+
currency: process.env.ECOM_CURRENCY || DEFAULT_CURRENCY,
|
|
9
|
+
currencySymbol: process.env.ECOM_CURRENCY_SYMBOL || DEFAULT_CURRENCY_SYMBOL,
|
|
10
|
+
countryCode: process.env.ECOM_COUNTRY_CODE || DEFAULT_COUNTRY_CODE,
|
|
11
|
+
storeId: Number(process.env.ECOM_STORE_ID),
|
|
12
|
+
httpsFunctionOptions: {
|
|
13
|
+
region: process.env.DEPLOY_REGION || 'us-east1',
|
|
14
|
+
},
|
|
17
15
|
},
|
|
18
|
-
},
|
|
19
16
|
};
|
|
20
|
-
|
|
21
17
|
export default {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
18
|
+
get() {
|
|
19
|
+
return self.__config;
|
|
20
|
+
},
|
|
21
|
+
set(config) {
|
|
22
|
+
self.__config = deepmerge(self.__config, config);
|
|
23
|
+
},
|
|
28
24
|
};
|
|
29
|
-
|
|
25
|
+
//# sourceMappingURL=config.js.map
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
export default () => {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
const { ECOM_AUTHENTICATION_ID, ECOM_API_KEY, GITHUB_TOKEN, } = process.env;
|
|
3
|
+
if (!ECOM_AUTHENTICATION_ID) {
|
|
4
|
+
throw new Error('ECOM_AUTHENTICATION_ID is not set');
|
|
5
|
+
}
|
|
6
|
+
if (!ECOM_API_KEY) {
|
|
7
|
+
throw new Error('ECOM_API_KEY is not set');
|
|
8
|
+
}
|
|
9
|
+
const authenticationId = ECOM_AUTHENTICATION_ID;
|
|
10
|
+
const apiKey = ECOM_API_KEY;
|
|
11
|
+
const githubToken = GITHUB_TOKEN;
|
|
12
|
+
const env = {
|
|
13
|
+
authenticationId,
|
|
14
|
+
apiKey,
|
|
15
|
+
githubToken,
|
|
16
|
+
};
|
|
17
|
+
return env;
|
|
18
18
|
};
|
|
19
|
-
|
|
19
|
+
//# sourceMappingURL=env.js.map
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
|
|
1
|
+
// eslint-disable-next-line import/no-unresolved
|
|
2
|
+
import { getFirestore } from 'firebase-admin/firestore';
|
|
2
3
|
import { logger } from 'firebase-functions';
|
|
3
4
|
import api from '@cloudcommerce/api';
|
|
4
|
-
import getEnv from '../env';
|
|
5
|
-
|
|
5
|
+
import getEnv from '../env.js';
|
|
6
6
|
export default async () => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
});
|
|
16
|
-
logger.info({ listenedEvents });
|
|
17
|
-
[
|
|
18
|
-
'orders',
|
|
19
|
-
'products',
|
|
20
|
-
'carts',
|
|
21
|
-
].forEach(async (resource) => {
|
|
22
|
-
const { data: { result } } = await api({
|
|
23
|
-
authenticationId,
|
|
24
|
-
apiKey,
|
|
25
|
-
endpoint: `events/${resource}`,
|
|
7
|
+
const { authenticationId, apiKey } = getEnv();
|
|
8
|
+
const eventsSubs = await getFirestore().collection('eventsSubs').get();
|
|
9
|
+
const listenedEvents = [];
|
|
10
|
+
eventsSubs.forEach((doc) => {
|
|
11
|
+
const eventSub = doc.data();
|
|
12
|
+
if (!listenedEvents.includes(eventSub.event)) {
|
|
13
|
+
listenedEvents.push(eventSub.event);
|
|
14
|
+
}
|
|
26
15
|
});
|
|
27
|
-
logger.info(
|
|
28
|
-
|
|
29
|
-
|
|
16
|
+
logger.info({ listenedEvents });
|
|
17
|
+
[
|
|
18
|
+
'orders',
|
|
19
|
+
'products',
|
|
20
|
+
'carts',
|
|
21
|
+
].forEach(async (resource) => {
|
|
22
|
+
const { data: { result } } = await api({
|
|
23
|
+
authenticationId,
|
|
24
|
+
apiKey,
|
|
25
|
+
endpoint: `events/${resource}`,
|
|
26
|
+
});
|
|
27
|
+
logger.info(`${resource} events: `, result);
|
|
28
|
+
});
|
|
29
|
+
return true;
|
|
30
30
|
};
|
|
31
|
-
|
|
31
|
+
//# sourceMappingURL=check-store-events.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"check-store-events.js","sourceRoot":"","sources":["../../src/handlers/check-store-events.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"check-store-events.js","sourceRoot":"","sources":["../../src/handlers/check-store-events.ts"],"names":[],"mappings":"AACA,gDAAgD;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAC5C,OAAO,GAAG,MAAM,oBAAoB,CAAC;AACrC,OAAO,MAAM,MAAM,QAAQ,CAAC;AAE5B,eAAe,KAAK,IAAI,EAAE;IACxB,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;IAC9C,MAAM,UAAU,GAAG,MAAM,YAAY,EAAE,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,GAAG,EAAE,CAAC;IACvE,MAAM,cAAc,GAAwB,EAAE,CAAC;IAC/C,UAAU,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;QACzB,MAAM,QAAQ,GAAG,GAAG,CAAC,IAAI,EAAc,CAAC;QACxC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE;YAC5C,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;SACrC;IACH,CAAC,CAAC,CAAC;IACH,MAAM,CAAC,IAAI,CAAC,EAAE,cAAc,EAAE,CAAC,CAAC;IAChC;QACE,QAAQ;QACR,UAAU;QACV,OAAO;KACR,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE;QAC3B,MAAM,EAAE,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,GAAG,MAAM,GAAG,CAAC;YACrC,gBAAgB;YAChB,MAAM;YACN,QAAQ,EAAE,UAAU,QAAoB,EAAE;SAC3C,CAAC,CAAC;QACH,MAAM,CAAC,IAAI,CAAC,GAAG,QAAQ,WAAW,EAAE,MAAM,CAAC,CAAC;IAC9C,CAAC,CAAC,CAAC;IACH,OAAO,IAAI,CAAC;AACd,CAAC,CAAC"}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
1
|
import 'source-map-support/register.js';
|
|
2
2
|
import '@cloudcommerce/api/fetch-polyfill.js';
|
|
3
|
-
export declare const z: import("firebase-functions/v2/https").HttpsFunction;
|
|
4
|
-
export declare const ssr: import("firebase-functions/v2/https").HttpsFunction;
|
|
5
3
|
export declare const cronStoreEvents: import("firebase-functions/v1").CloudFunction<unknown>;
|
|
@@ -1,39 +1,13 @@
|
|
|
1
|
+
/* eslint-disable import/prefer-default-export */
|
|
1
2
|
import 'source-map-support/register.js';
|
|
2
3
|
import '@cloudcommerce/api/fetch-polyfill.js';
|
|
3
|
-
import
|
|
4
|
-
import { pubsub, logger } from 'firebase-functions';
|
|
4
|
+
// https://github.com/import-js/eslint-plugin-import/issues/1810
|
|
5
5
|
// eslint-disable-next-line import/no-unresolved
|
|
6
|
-
import {
|
|
7
|
-
import
|
|
6
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
7
|
+
import { pubsub } from 'firebase-functions';
|
|
8
8
|
import checkStoreEvents from './handlers/check-store-events.js';
|
|
9
|
-
|
|
10
9
|
initializeApp();
|
|
11
|
-
const processId = String(Date.now());
|
|
12
|
-
const options = config.get().httpsFunctionOptions;
|
|
13
|
-
|
|
14
|
-
export const z = onRequest(options, ({ url }, response) => {
|
|
15
|
-
process.env.ECOM_API_KEY = '***';
|
|
16
|
-
if (url === '/hello') {
|
|
17
|
-
logger.info('Hello logs!', {
|
|
18
|
-
structuredData: true,
|
|
19
|
-
});
|
|
20
|
-
response.send(config.get().hello);
|
|
21
|
-
return;
|
|
22
|
-
}
|
|
23
|
-
if (url === '/pid') {
|
|
24
|
-
response.send(processId);
|
|
25
|
-
return;
|
|
26
|
-
}
|
|
27
|
-
response.send({
|
|
28
|
-
config: config.get(),
|
|
29
|
-
});
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
export const ssr = onRequest(options, (request, response) => {
|
|
33
|
-
response.send('<h1>Hello SSR!</h1>');
|
|
34
|
-
});
|
|
35
|
-
|
|
36
10
|
export const cronStoreEvents = pubsub.schedule('* * * * *').onRun(() => {
|
|
37
|
-
|
|
11
|
+
return checkStoreEvents();
|
|
38
12
|
});
|
|
39
|
-
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,gCAAgC,CAAC;AACxC,OAAO,sCAAsC,CAAC;AAC9C,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,iDAAiD;AAEjD,OAAO,gCAAgC,CAAC;AACxC,OAAO,sCAAsC,CAAC;AAC9C,gEAAgE;AAChE,gDAAgD;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAC5C,OAAO,gBAAgB,MAAM,+BAA+B,CAAC;AAE7D,aAAa,EAAE,CAAC;AAEhB,MAAM,CAAC,MAAM,eAAe,GAAG,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE;IACrE,OAAO,gBAAgB,EAAE,CAAC;AAC5B,CAAC,CAAC,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
|
|
2
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/firebase",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.38",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce on Firebase",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": "./lib/index.js",
|
|
10
|
-
"./config": "./config.js"
|
|
10
|
+
"./config": "./lib/config.js"
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import type { EventSub } from '../types';
|
|
2
|
-
|
|
2
|
+
// eslint-disable-next-line import/no-unresolved
|
|
3
|
+
import { getFirestore } from 'firebase-admin/firestore';
|
|
3
4
|
import { logger } from 'firebase-functions';
|
|
4
5
|
import api from '@cloudcommerce/api';
|
|
5
6
|
import getEnv from '../env';
|
|
6
7
|
|
|
7
8
|
export default async () => {
|
|
8
9
|
const { authenticationId, apiKey } = getEnv();
|
|
9
|
-
const eventsSubs = await
|
|
10
|
+
const eventsSubs = await getFirestore().collection('eventsSubs').get();
|
|
10
11
|
const listenedEvents: EventSub['event'][] = [];
|
|
11
12
|
eventsSubs.forEach((doc) => {
|
|
12
13
|
const eventSub = doc.data() as EventSub;
|
|
@@ -1,37 +1,14 @@
|
|
|
1
|
+
/* eslint-disable import/prefer-default-export */
|
|
2
|
+
|
|
1
3
|
import 'source-map-support/register.js';
|
|
2
4
|
import '@cloudcommerce/api/fetch-polyfill.js';
|
|
3
|
-
import
|
|
4
|
-
import { pubsub, logger } from 'firebase-functions';
|
|
5
|
+
// https://github.com/import-js/eslint-plugin-import/issues/1810
|
|
5
6
|
// eslint-disable-next-line import/no-unresolved
|
|
6
|
-
import {
|
|
7
|
-
import
|
|
7
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
8
|
+
import { pubsub } from 'firebase-functions';
|
|
8
9
|
import checkStoreEvents from './handlers/check-store-events';
|
|
9
10
|
|
|
10
11
|
initializeApp();
|
|
11
|
-
const processId = String(Date.now());
|
|
12
|
-
const options = config.get().httpsFunctionOptions;
|
|
13
|
-
|
|
14
|
-
export const z = onRequest(options, ({ url }, response) => {
|
|
15
|
-
process.env.ECOM_API_KEY = '***';
|
|
16
|
-
if (url === '/hello') {
|
|
17
|
-
logger.info('Hello logs!', {
|
|
18
|
-
structuredData: true,
|
|
19
|
-
});
|
|
20
|
-
response.send(config.get().hello);
|
|
21
|
-
return;
|
|
22
|
-
}
|
|
23
|
-
if (url === '/pid') {
|
|
24
|
-
response.send(processId);
|
|
25
|
-
return;
|
|
26
|
-
}
|
|
27
|
-
response.send({
|
|
28
|
-
config: config.get(),
|
|
29
|
-
});
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
export const ssr = onRequest(options, (request, response) => {
|
|
33
|
-
response.send('<h1>Hello SSR!</h1>');
|
|
34
|
-
});
|
|
35
12
|
|
|
36
13
|
export const cronStoreEvents = pubsub.schedule('* * * * *').onRun(() => {
|
|
37
14
|
return checkStoreEvents();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/firebase.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable import/prefer-default-export */
|
|
2
2
|
import 'source-map-support/register.js';
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
// eslint-disable-next-line import/no-unresolved
|
|
4
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
5
5
|
// eslint-disable-next-line import/no-unresolved
|
|
6
6
|
import { onRequest } from 'firebase-functions/v2/https';
|
|
7
7
|
import config from '@cloudcommerce/firebase/lib/config';
|
|
@@ -9,8 +9,8 @@ import config from '@cloudcommerce/firebase/lib/config';
|
|
|
9
9
|
initializeApp();
|
|
10
10
|
const options = config.get().httpsFunctionOptions;
|
|
11
11
|
|
|
12
|
-
export const
|
|
12
|
+
export const modulesApi = onRequest(options, (request, response) => {
|
|
13
13
|
process.env.ECOM_API_KEY = '***';
|
|
14
14
|
response.send('Hello modules!');
|
|
15
15
|
});
|
|
16
|
-
// # sourceMappingURL=
|
|
16
|
+
// # sourceMappingURL=firebase.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"firebase.js","sourceRoot":"","sources":["../src/firebase.ts"],"names":[],"mappings":"AAAA,iDAAiD;AAEjD,OAAO,gCAAgC,CAAC;AACxC,gDAAgD;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,gDAAgD;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,MAAM,MAAM,oCAAoC,CAAC;AAExD,aAAa,EAAE,CAAC;AAChB,MAAM,OAAO,GAAG,MAAM,CAAC,GAAG,EAAE,CAAC,oBAAoB,CAAC;AAElD,MAAM,CAAC,MAAM,UAAU,GAAG,SAAS,CAAC,OAAO,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;IACjE,OAAO,CAAC,GAAG,CAAC,YAAY,GAAG,KAAK,CAAC;IACjC,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/modules",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.38",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce modules API",
|
|
6
6
|
"main": "lib/index.cjs",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./lib/index.js",
|
|
9
|
+
"./firebase": "./lib/firebase.js"
|
|
10
|
+
},
|
|
7
11
|
"repository": {
|
|
8
12
|
"type": "git",
|
|
9
13
|
"url": "git+https://github.com/ecomplus/cloud-commerce.git",
|
|
File without changes
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable import/prefer-default-export */
|
|
2
2
|
|
|
3
3
|
import 'source-map-support/register.js';
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
// eslint-disable-next-line import/no-unresolved
|
|
5
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
6
6
|
// eslint-disable-next-line import/no-unresolved
|
|
7
7
|
import { onRequest } from 'firebase-functions/v2/https';
|
|
8
8
|
import config from '@cloudcommerce/firebase/lib/config';
|
|
@@ -10,7 +10,7 @@ import config from '@cloudcommerce/firebase/lib/config';
|
|
|
10
10
|
initializeApp();
|
|
11
11
|
const options = config.get().httpsFunctionOptions;
|
|
12
12
|
|
|
13
|
-
export const
|
|
13
|
+
export const modulesApi = onRequest(options, (request, response) => {
|
|
14
14
|
process.env.ECOM_API_KEY = '***';
|
|
15
15
|
response.send('Hello modules!');
|
|
16
16
|
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Please refer to GitHub [repository releases](https://github.com/ecomplus/cloud-commerce/releases) or monorepo unified [CHANGELOG.md](https://github.com/ecomplus/cloud-commerce/blob/main/CHANGELOG.md).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# `@cloudcommerce/passport`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/firebase.js';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* eslint-disable import/prefer-default-export */
|
|
2
|
+
import 'source-map-support/register.js';
|
|
3
|
+
// eslint-disable-next-line import/no-unresolved
|
|
4
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
5
|
+
// eslint-disable-next-line import/no-unresolved
|
|
6
|
+
import { onRequest } from 'firebase-functions/v2/https';
|
|
7
|
+
import config from '@cloudcommerce/firebase/lib/config';
|
|
8
|
+
|
|
9
|
+
initializeApp();
|
|
10
|
+
const options = config.get().httpsFunctionOptions;
|
|
11
|
+
|
|
12
|
+
export const passportApi = onRequest(options, (request, response) => {
|
|
13
|
+
process.env.ECOM_API_KEY = '***';
|
|
14
|
+
response.send('Hello passport!');
|
|
15
|
+
});
|
|
16
|
+
// # sourceMappingURL=firebase.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"firebase.js","sourceRoot":"","sources":["../src/firebase.ts"],"names":[],"mappings":"AAAA,iDAAiD;AAEjD,OAAO,gCAAgC,CAAC;AACxC,gDAAgD;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,gDAAgD;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,MAAM,MAAM,oCAAoC,CAAC;AAExD,aAAa,EAAE,CAAC;AAChB,MAAM,OAAO,GAAG,MAAM,CAAC,GAAG,EAAE,CAAC,oBAAoB,CAAC;AAElD,MAAM,CAAC,MAAM,WAAW,GAAG,SAAS,CAAC,OAAO,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;IAClE,OAAO,CAAC,GAAG,CAAC,YAAY,GAAG,KAAK,CAAC;IACjC,QAAQ,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;AACnC,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// # sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cloudcommerce/passport",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.38",
|
|
5
|
+
"description": "E-Com Plus Cloud Commerce customers authentication (passport) API",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./lib/index.js",
|
|
9
|
+
"./firebase": "./lib/firebase.js"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/ecomplus/cloud-commerce.git",
|
|
14
|
+
"directory": "packages/passport"
|
|
15
|
+
},
|
|
16
|
+
"author": "E-Com Club Softwares para E-commerce <ti@e-com.club>",
|
|
17
|
+
"license": "Apache 2.0 with Commons Clause",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/ecomplus/cloud-commerce/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/ecomplus/cloud-commerce/tree/main/packages/passport#readme",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "sh ../../scripts/build-lib.sh"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@cloudcommerce/api": "workspace:*",
|
|
27
|
+
"@cloudcommerce/firebase": "workspace:*",
|
|
28
|
+
"firebase-admin": "^11.0.0",
|
|
29
|
+
"firebase-functions": "^3.22.0",
|
|
30
|
+
"source-map-support": "^0.5.21"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@cloudcommerce/types": "workspace:*",
|
|
34
|
+
"@firebase/app-types": "^0.7.0"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* eslint-disable import/prefer-default-export */
|
|
2
|
+
|
|
3
|
+
import 'source-map-support/register.js';
|
|
4
|
+
// eslint-disable-next-line import/no-unresolved
|
|
5
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
6
|
+
// eslint-disable-next-line import/no-unresolved
|
|
7
|
+
import { onRequest } from 'firebase-functions/v2/https';
|
|
8
|
+
import config from '@cloudcommerce/firebase/lib/config';
|
|
9
|
+
|
|
10
|
+
initializeApp();
|
|
11
|
+
const options = config.get().httpsFunctionOptions;
|
|
12
|
+
|
|
13
|
+
export const passportApi = onRequest(options, (request, response) => {
|
|
14
|
+
process.env.ECOM_API_KEY = '***';
|
|
15
|
+
response.send('Hello passport!');
|
|
16
|
+
});
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Please refer to GitHub [repository releases](https://github.com/ecomplus/cloud-commerce/releases) or monorepo unified [CHANGELOG.md](https://github.com/ecomplus/cloud-commerce/blob/main/CHANGELOG.md).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# `@cloudcommerce/ssr`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/firebase.js';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* eslint-disable import/prefer-default-export */
|
|
2
|
+
import 'source-map-support/register.js';
|
|
3
|
+
// eslint-disable-next-line import/no-unresolved
|
|
4
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
5
|
+
// eslint-disable-next-line import/no-unresolved
|
|
6
|
+
import { onRequest } from 'firebase-functions/v2/https';
|
|
7
|
+
import config from '@cloudcommerce/firebase/lib/config';
|
|
8
|
+
|
|
9
|
+
initializeApp();
|
|
10
|
+
const options = config.get().httpsFunctionOptions;
|
|
11
|
+
|
|
12
|
+
export const ssr = onRequest(options, (request, response) => {
|
|
13
|
+
response.send('<h1>Hello SSR!</h1>');
|
|
14
|
+
});
|
|
15
|
+
// # sourceMappingURL=firebase.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"firebase.js","sourceRoot":"","sources":["../src/firebase.ts"],"names":[],"mappings":"AAAA,iDAAiD;AAEjD,OAAO,gCAAgC,CAAC;AACxC,gDAAgD;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,gDAAgD;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,MAAM,MAAM,oCAAoC,CAAC;AAExD,aAAa,EAAE,CAAC;AAChB,MAAM,OAAO,GAAG,MAAM,CAAC,GAAG,EAAE,CAAC,oBAAoB,CAAC;AAElD,MAAM,CAAC,MAAM,GAAG,GAAG,SAAS,CAAC,OAAO,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;IAC1D,QAAQ,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC;AACvC,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// # sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cloudcommerce/ssr",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.38",
|
|
5
|
+
"description": "E-Com Plus Cloud Commerce storefront SSR",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./lib/index.js",
|
|
9
|
+
"./firebase": "./lib/firebase.js"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/ecomplus/cloud-commerce.git",
|
|
14
|
+
"directory": "packages/ssr"
|
|
15
|
+
},
|
|
16
|
+
"author": "E-Com Club Softwares para E-commerce <ti@e-com.club>",
|
|
17
|
+
"license": "Apache 2.0 with Commons Clause",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/ecomplus/cloud-commerce/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/ecomplus/cloud-commerce/tree/main/packages/ssr#readme",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "sh ../../scripts/build-lib.sh"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@cloudcommerce/api": "workspace:*",
|
|
27
|
+
"@cloudcommerce/firebase": "workspace:*",
|
|
28
|
+
"@cloudcommerce/storefront": "workspace:*",
|
|
29
|
+
"firebase-admin": "^11.0.0",
|
|
30
|
+
"firebase-functions": "^3.22.0",
|
|
31
|
+
"source-map-support": "^0.5.21"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@cloudcommerce/types": "workspace:*",
|
|
35
|
+
"@firebase/app-types": "^0.7.0"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* eslint-disable import/prefer-default-export */
|
|
2
|
+
|
|
3
|
+
import 'source-map-support/register.js';
|
|
4
|
+
// eslint-disable-next-line import/no-unresolved
|
|
5
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
6
|
+
// eslint-disable-next-line import/no-unresolved
|
|
7
|
+
import { onRequest } from 'firebase-functions/v2/https';
|
|
8
|
+
import config from '@cloudcommerce/firebase/lib/config';
|
|
9
|
+
|
|
10
|
+
initializeApp();
|
|
11
|
+
const options = config.get().httpsFunctionOptions;
|
|
12
|
+
|
|
13
|
+
export const ssr = onRequest(options, (request, response) => {
|
|
14
|
+
response.send('<h1>Hello SSR!</h1>');
|
|
15
|
+
});
|
|
File without changes
|
package/pnpm-lock.yaml
CHANGED
|
@@ -47,7 +47,7 @@ importers:
|
|
|
47
47
|
packages/__skeleton:
|
|
48
48
|
specifiers:
|
|
49
49
|
'@cloudcommerce/api': workspace:*
|
|
50
|
-
'@cloudcommerce/types': workspace
|
|
50
|
+
'@cloudcommerce/types': workspace:*
|
|
51
51
|
dependencies:
|
|
52
52
|
'@cloudcommerce/api': link:../api
|
|
53
53
|
devDependencies:
|
|
@@ -59,7 +59,7 @@ importers:
|
|
|
59
59
|
packages/apps/discounts:
|
|
60
60
|
specifiers:
|
|
61
61
|
'@cloudcommerce/api': workspace:*
|
|
62
|
-
'@cloudcommerce/types': workspace
|
|
62
|
+
'@cloudcommerce/types': workspace:*
|
|
63
63
|
dependencies:
|
|
64
64
|
'@cloudcommerce/api': link:../../api
|
|
65
65
|
devDependencies:
|
|
@@ -99,7 +99,7 @@ importers:
|
|
|
99
99
|
packages/modules:
|
|
100
100
|
specifiers:
|
|
101
101
|
'@cloudcommerce/firebase': workspace:*
|
|
102
|
-
'@cloudcommerce/types': workspace
|
|
102
|
+
'@cloudcommerce/types': workspace:*
|
|
103
103
|
'@firebase/app-types': ^0.7.0
|
|
104
104
|
firebase-admin: ^11.0.0
|
|
105
105
|
firebase-functions: ^3.22.0
|
|
@@ -115,6 +115,46 @@ importers:
|
|
|
115
115
|
'@firebase/app-types': 0.7.0
|
|
116
116
|
json-schema-to-typescript: 11.0.1
|
|
117
117
|
|
|
118
|
+
packages/passport:
|
|
119
|
+
specifiers:
|
|
120
|
+
'@cloudcommerce/api': workspace:*
|
|
121
|
+
'@cloudcommerce/firebase': workspace:*
|
|
122
|
+
'@cloudcommerce/types': workspace:*
|
|
123
|
+
'@firebase/app-types': ^0.7.0
|
|
124
|
+
firebase-admin: ^11.0.0
|
|
125
|
+
firebase-functions: ^3.22.0
|
|
126
|
+
source-map-support: ^0.5.21
|
|
127
|
+
dependencies:
|
|
128
|
+
'@cloudcommerce/api': link:../api
|
|
129
|
+
'@cloudcommerce/firebase': link:../firebase
|
|
130
|
+
firebase-admin: 11.0.0_@firebase+app-types@0.7.0
|
|
131
|
+
firebase-functions: 3.22.0_firebase-admin@11.0.0
|
|
132
|
+
source-map-support: 0.5.21
|
|
133
|
+
devDependencies:
|
|
134
|
+
'@cloudcommerce/types': link:../types
|
|
135
|
+
'@firebase/app-types': 0.7.0
|
|
136
|
+
|
|
137
|
+
packages/ssr:
|
|
138
|
+
specifiers:
|
|
139
|
+
'@cloudcommerce/api': workspace:*
|
|
140
|
+
'@cloudcommerce/firebase': workspace:*
|
|
141
|
+
'@cloudcommerce/storefront': workspace:*
|
|
142
|
+
'@cloudcommerce/types': workspace:*
|
|
143
|
+
'@firebase/app-types': ^0.7.0
|
|
144
|
+
firebase-admin: ^11.0.0
|
|
145
|
+
firebase-functions: ^3.22.0
|
|
146
|
+
source-map-support: ^0.5.21
|
|
147
|
+
dependencies:
|
|
148
|
+
'@cloudcommerce/api': link:../api
|
|
149
|
+
'@cloudcommerce/firebase': link:../firebase
|
|
150
|
+
'@cloudcommerce/storefront': link:../storefront
|
|
151
|
+
firebase-admin: 11.0.0_@firebase+app-types@0.7.0
|
|
152
|
+
firebase-functions: 3.22.0_firebase-admin@11.0.0
|
|
153
|
+
source-map-support: 0.5.21
|
|
154
|
+
devDependencies:
|
|
155
|
+
'@cloudcommerce/types': link:../types
|
|
156
|
+
'@firebase/app-types': 0.7.0
|
|
157
|
+
|
|
118
158
|
packages/storefront:
|
|
119
159
|
specifiers:
|
|
120
160
|
'@cloudcommerce/api': workspace:*
|
|
@@ -131,13 +171,13 @@ importers:
|
|
|
131
171
|
|
|
132
172
|
store:
|
|
133
173
|
specifiers:
|
|
134
|
-
'@cloudcommerce/cli': ^0.0.
|
|
174
|
+
'@cloudcommerce/cli': ^0.0.37
|
|
135
175
|
dependencies:
|
|
136
176
|
'@cloudcommerce/cli': link:../packages/cli
|
|
137
177
|
|
|
138
178
|
store/functions:
|
|
139
179
|
specifiers:
|
|
140
|
-
'@cloudcommerce/firebase': ^0.0.
|
|
180
|
+
'@cloudcommerce/firebase': ^0.0.37
|
|
141
181
|
dependencies:
|
|
142
182
|
'@cloudcommerce/firebase': link:../../packages/firebase
|
|
143
183
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/firebase/index.ts"],"names":[],"mappings":"AAAA,iDAAiD;AAEjD,OAAO,gCAAgC,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,+CAA+C;AAC/C,gDAAgD;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,MAAM,MAAM,oCAAoC,CAAC;AAExD,aAAa,EAAE,CAAC;AAChB,MAAM,OAAO,GAAG,MAAM,CAAC,GAAG,EAAE,CAAC,oBAAoB,CAAC;AAElD,MAAM,CAAC,MAAM,gBAAgB,GAAG,SAAS,CAAC,OAAO,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;IACvE,OAAO,CAAC,GAAG,CAAC,YAAY,GAAG,KAAK,CAAC;IACjC,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC"}
|