@pristine-ts/stripe 0.0.366 → 0.0.368
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.
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
exports.StripeModule = void 0;
|
|
18
18
|
const stripe_module_keyname_1 = require("./stripe.module.keyname");
|
|
19
19
|
const networking_1 = require("@pristine-ts/networking");
|
|
20
|
+
const logging_1 = require("@pristine-ts/logging");
|
|
20
21
|
__exportStar(require("./clients/clients"), exports);
|
|
21
22
|
__exportStar(require("./enums/enums"), exports);
|
|
22
23
|
__exportStar(require("./errors/errors"), exports);
|
|
@@ -35,6 +36,7 @@ exports.StripeModule = {
|
|
|
35
36
|
}
|
|
36
37
|
],
|
|
37
38
|
importModules: [
|
|
39
|
+
logging_1.LoggingModule,
|
|
38
40
|
networking_1.NetworkingModule,
|
|
39
41
|
],
|
|
40
42
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stripe.module.js","sourceRoot":"","sources":["../../../src/stripe.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACA,mEAA4D;AAC5D,wDAAyD;
|
|
1
|
+
{"version":3,"file":"stripe.module.js","sourceRoot":"","sources":["../../../src/stripe.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACA,mEAA4D;AAC5D,wDAAyD;AACzD,kDAAmD;AAEnD,oDAAkC;AAClC,gDAA8B;AAC9B,kDAAgC;AAChC,0DAAwC;AACxC,sDAAoC;AACpC,0DAAwC;AAE3B,QAAA,YAAY,GAAoB;IACzC,OAAO,EAAE,2CAAmB;IAC5B,wBAAwB,EAAE;QACtB;;WAEG;QACH;YACI,aAAa,EAAE,2CAAmB,GAAG,eAAe;YACpD,UAAU,EAAE,IAAI;SACnB;KACJ;IACD,aAAa,EAAE;QACX,uBAAa;QACb,6BAAgB;KACnB;CACJ,CAAA"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { StripeModuleKeyname } from "./stripe.module.keyname";
|
|
2
2
|
import { NetworkingModule } from "@pristine-ts/networking";
|
|
3
|
+
import { LoggingModule } from "@pristine-ts/logging";
|
|
3
4
|
export * from './clients/clients';
|
|
4
5
|
export * from './enums/enums';
|
|
5
6
|
export * from './errors/errors';
|
|
@@ -18,6 +19,7 @@ export const StripeModule = {
|
|
|
18
19
|
}
|
|
19
20
|
],
|
|
20
21
|
importModules: [
|
|
22
|
+
LoggingModule,
|
|
21
23
|
NetworkingModule,
|
|
22
24
|
],
|
|
23
25
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stripe.module.js","sourceRoot":"","sources":["../../../src/stripe.module.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,mBAAmB,EAAC,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAC,gBAAgB,EAAC,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"stripe.module.js","sourceRoot":"","sources":["../../../src/stripe.module.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,mBAAmB,EAAC,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAC,gBAAgB,EAAC,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAC,aAAa,EAAC,MAAM,sBAAsB,CAAC;AAEnD,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AAExC,MAAM,CAAC,MAAM,YAAY,GAAoB;IACzC,OAAO,EAAE,mBAAmB;IAC5B,wBAAwB,EAAE;QACtB;;WAEG;QACH;YACI,aAAa,EAAE,mBAAmB,GAAG,eAAe;YACpD,UAAU,EAAE,IAAI;SACnB;KACJ;IACD,aAAa,EAAE;QACX,aAAa;QACb,gBAAgB;KACnB;CACJ,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pristine-ts/stripe",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.368",
|
|
4
4
|
"description": "",
|
|
5
5
|
"module": "dist/lib/esm/stripe.module.js",
|
|
6
6
|
"main": "dist/lib/cjs/stripe.module.js",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"test:cov": "jest --coverage"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@pristine-ts/common": "^0.0.
|
|
16
|
-
"@pristine-ts/core": "^0.0.
|
|
17
|
-
"@pristine-ts/logging": "^0.0.
|
|
18
|
-
"@pristine-ts/networking": "^0.0.
|
|
15
|
+
"@pristine-ts/common": "^0.0.368",
|
|
16
|
+
"@pristine-ts/core": "^0.0.368",
|
|
17
|
+
"@pristine-ts/logging": "^0.0.368",
|
|
18
|
+
"@pristine-ts/networking": "^0.0.368",
|
|
19
19
|
"stripe": "^14.2.0"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"src/*.{js,ts}"
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "0d65f5d8e1494a5fa739b5f372299c8bc9469a5e"
|
|
64
64
|
}
|