@geins/crm 0.3.6 → 0.3.7
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 +8 -0
- package/dist/index.cjs +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -20799,7 +20799,7 @@ var GraphQLService = /** @class */ (function (_super) {
|
|
|
20799
20799
|
return [4 /*yield*/, this.verifyQueryOptions(options)];
|
|
20800
20800
|
case 1:
|
|
20801
20801
|
queryOptions = _b.sent();
|
|
20802
|
-
if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
|
|
20802
|
+
if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
|
|
20803
20803
|
console.log('[Geins] queryOptions:', queryOptions);
|
|
20804
20804
|
}
|
|
20805
20805
|
_a = this.cleanObject;
|
|
@@ -20829,7 +20829,7 @@ var GraphQLService = /** @class */ (function (_super) {
|
|
|
20829
20829
|
switch (_a.label) {
|
|
20830
20830
|
case 0:
|
|
20831
20831
|
_a.trys.push([0, 2, , 3]);
|
|
20832
|
-
if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
|
|
20832
|
+
if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
|
|
20833
20833
|
console.log('[Geins] mutation options:', options);
|
|
20834
20834
|
}
|
|
20835
20835
|
return [4 /*yield*/, this.runMutation(options)];
|
package/dist/index.esm.js
CHANGED
|
@@ -20797,7 +20797,7 @@ var GraphQLService = /** @class */ (function (_super) {
|
|
|
20797
20797
|
return [4 /*yield*/, this.verifyQueryOptions(options)];
|
|
20798
20798
|
case 1:
|
|
20799
20799
|
queryOptions = _b.sent();
|
|
20800
|
-
if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
|
|
20800
|
+
if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
|
|
20801
20801
|
console.log('[Geins] queryOptions:', queryOptions);
|
|
20802
20802
|
}
|
|
20803
20803
|
_a = this.cleanObject;
|
|
@@ -20827,7 +20827,7 @@ var GraphQLService = /** @class */ (function (_super) {
|
|
|
20827
20827
|
switch (_a.label) {
|
|
20828
20828
|
case 0:
|
|
20829
20829
|
_a.trys.push([0, 2, , 3]);
|
|
20830
|
-
if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
|
|
20830
|
+
if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
|
|
20831
20831
|
console.log('[Geins] mutation options:', options);
|
|
20832
20832
|
}
|
|
20833
20833
|
return [4 /*yield*/, this.runMutation(options)];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geins/crm",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"main": "dist/index.cjs",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@apollo/client": "^3.11.8",
|
|
17
|
-
"@geins/core": "0.3.
|
|
17
|
+
"@geins/core": "0.3.7",
|
|
18
18
|
"crypto-js": "^4.2.0",
|
|
19
19
|
"graphql": "^16.9.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@geins/eslint-config": "0.1.
|
|
23
|
-
"@geins/types": "0.3.
|
|
22
|
+
"@geins/eslint-config": "0.1.7",
|
|
23
|
+
"@geins/types": "0.3.7",
|
|
24
24
|
"@rollup/plugin-commonjs": "^28.0.0",
|
|
25
25
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
26
26
|
"@rollup/plugin-typescript": "^12.1.0",
|