cloudcommerce 0.0.36 → 0.0.37
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 +15 -0
- package/package.json +1 -1
- package/packages/api/package.json +1 -1
- package/packages/apps/discounts/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/firebase/lib/handlers/check-store-events.js +3 -2
- 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 +4 -28
- package/packages/firebase/lib/index.js.map +1 -1
- package/packages/firebase/package.json +1 -1
- package/packages/firebase/src/handlers/check-store-events.ts +3 -2
- package/packages/firebase/src/index.ts +5 -28
- package/packages/modules/lib/{firebase/index.js → firebase.js} +4 -3
- 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 -2
- package/packages/passport/CHANGELOG.md +1 -0
- package/packages/passport/README.md +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/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 +42 -2
- package/packages/modules/lib/firebase/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
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.37](https://github.com/ecomplus/cloud-commerce/compare/v0.0.36...v0.0.37) (2022-07-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **passport:** Setup `@cloudcommerce/passport` pkg for passport API (customers authentication) ([00a5c4b](https://github.com/ecomplus/cloud-commerce/commit/00a5c4bfb08083a770a9148377e506b920037242))
|
|
11
|
+
* **ssr:** Setup `@cloudcommerce/ssr` pkg to deploy isolated function ([59b8686](https://github.com/ecomplus/cloud-commerce/commit/59b8686efece3256b7a3809762601d4949d116f3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **firebase:** Proper named imports from `firebase-admin` (cjs) package ([74aca73](https://github.com/ecomplus/cloud-commerce/commit/74aca73a76431d7d8f3f3e5c862085284cb2a6bd))
|
|
17
|
+
* **firebase:** Remove (test only) z function and ssr (moved to `@cloudcommerce/ssr`) ([dc8b8e5](https://github.com/ecomplus/cloud-commerce/commit/dc8b8e5d706f535806b306d8b24c34e4acdf8d7f))
|
|
18
|
+
* **modules:** Add `/firebase` named export to package.json ([0d3520f](https://github.com/ecomplus/cloud-commerce/commit/0d3520fc9b24877af5b14127e168ad2280b8ca4e))
|
|
19
|
+
|
|
5
20
|
### [0.0.36](https://github.com/ecomplus/cloud-commerce/compare/v0.0.35...v0.0.36) (2022-07-27)
|
|
6
21
|
|
|
7
22
|
### [0.0.35](https://github.com/ecomplus/cloud-commerce/compare/v0.0.34...v0.0.35) (2022-07-27)
|
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.37",
|
|
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>",
|
|
@@ -1,11 +1,12 @@
|
|
|
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
5
|
import getEnv from '../env.js';
|
|
5
6
|
|
|
6
7
|
export default async () => {
|
|
7
8
|
const { authenticationId, apiKey } = getEnv();
|
|
8
|
-
const eventsSubs = await
|
|
9
|
+
const eventsSubs = await getFirestore().collection('eventsSubs').get();
|
|
9
10
|
const listenedEvents = [];
|
|
10
11
|
eventsSubs.forEach((doc) => {
|
|
11
12
|
const eventSub = doc.data();
|
|
@@ -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,37 +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
9
|
|
|
10
10
|
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
11
|
|
|
36
12
|
export const cronStoreEvents = pubsub.schedule('* * * * *').onRun(() => {
|
|
37
13
|
return checkStoreEvents();
|
|
@@ -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,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();
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/* eslint-disable import/prefer-default-export */
|
|
2
2
|
import 'source-map-support/register.js';
|
|
3
|
-
|
|
3
|
+
// eslint-disable-next-line import/no-unresolved
|
|
4
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
4
5
|
// eslint-disable-next-line import/no-unresolved
|
|
5
6
|
import { onRequest } from 'firebase-functions/v2/https';
|
|
6
7
|
import config from '@cloudcommerce/firebase/lib/config';
|
|
@@ -8,8 +9,8 @@ import config from '@cloudcommerce/firebase/lib/config';
|
|
|
8
9
|
initializeApp();
|
|
9
10
|
const options = config.get().httpsFunctionOptions;
|
|
10
11
|
|
|
11
|
-
export const
|
|
12
|
+
export const modulesApi = onRequest(options, (request, response) => {
|
|
12
13
|
process.env.ECOM_API_KEY = '***';
|
|
13
14
|
response.send('Hello modules!');
|
|
14
15
|
});
|
|
15
|
-
// # 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.37",
|
|
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,7 +1,8 @@
|
|
|
1
1
|
/* eslint-disable import/prefer-default-export */
|
|
2
2
|
|
|
3
3
|
import 'source-map-support/register.js';
|
|
4
|
-
|
|
4
|
+
// eslint-disable-next-line import/no-unresolved
|
|
5
|
+
import { initializeApp } from 'firebase-admin/app';
|
|
5
6
|
// eslint-disable-next-line import/no-unresolved
|
|
6
7
|
import { onRequest } from 'firebase-functions/v2/https';
|
|
7
8
|
import config from '@cloudcommerce/firebase/lib/config';
|
|
@@ -9,7 +10,7 @@ import config from '@cloudcommerce/firebase/lib/config';
|
|
|
9
10
|
initializeApp();
|
|
10
11
|
const options = config.get().httpsFunctionOptions;
|
|
11
12
|
|
|
12
|
-
export const
|
|
13
|
+
export const modulesApi = onRequest(options, (request, response) => {
|
|
13
14
|
process.env.ECOM_API_KEY = '***';
|
|
14
15
|
response.send('Hello modules!');
|
|
15
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,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.37",
|
|
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,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.37",
|
|
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
|
@@ -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:^0.0.36
|
|
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.36
|
|
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.36
|
|
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,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"}
|