@longvansoftware/service-js-client 1.20.7 → 1.20.9
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/dist/src/graphql/crm/mutations.js +7 -5
- package/dist/src/graphql/storage_s3/queries.d.ts +1 -0
- package/dist/src/graphql/storage_s3/queries.js +6 -1
- package/dist/src/lib/crm/index.d.ts +1 -1
- package/dist/src/lib/crm/index.js +2 -1
- package/dist/src/lib/storage_s3/index.d.ts +1 -0
- package/dist/src/lib/storage_s3/index.js +16 -0
- package/package.json +1 -1
- package/dist/src/lib/service.d.ts +0 -14
- package/dist/src/lib/service.js +0 -101
- package/dist/src/utils/build-field-string.d.ts +0 -1
- package/dist/src/utils/build-field-string.js +0 -16
|
@@ -391,11 +391,12 @@ exports.LINKING_RESUME_DOMAIN_AND_CONTACT = (0, graphql_tag_1.gql) `
|
|
|
391
391
|
`;
|
|
392
392
|
exports.ADD_RESOURCE_RELATED = (0, graphql_tag_1.gql) `
|
|
393
393
|
mutation AddResourceRelated(
|
|
394
|
-
$fromId: String
|
|
395
|
-
$fromResourceType: String
|
|
396
|
-
$toIds: [String]
|
|
397
|
-
$toResourceType: String
|
|
398
|
-
$createdBy: String
|
|
394
|
+
$fromId: String
|
|
395
|
+
$fromResourceType: String
|
|
396
|
+
$toIds: [String]
|
|
397
|
+
$toResourceType: String
|
|
398
|
+
$createdBy: String
|
|
399
|
+
$type: String
|
|
399
400
|
) {
|
|
400
401
|
addResourceRelated(
|
|
401
402
|
fromId: $fromId
|
|
@@ -403,6 +404,7 @@ exports.ADD_RESOURCE_RELATED = (0, graphql_tag_1.gql) `
|
|
|
403
404
|
toIds: $toIds
|
|
404
405
|
toResourceType: $toResourceType
|
|
405
406
|
createdBy: $createdBy
|
|
407
|
+
type: $type
|
|
406
408
|
)
|
|
407
409
|
}
|
|
408
410
|
`;
|
|
@@ -7,3 +7,4 @@ export declare const GET_LIST_S3_DOMAIN_BY_S3_USER_ID: (fields?: string[]) => Do
|
|
|
7
7
|
export declare const GET_LIST_CORS_BY_S3_USER_ID: (fields?: string[]) => DocumentNode;
|
|
8
8
|
export declare const GET_LIST_FILE_OTHER_VERSION: (fields?: string[]) => DocumentNode;
|
|
9
9
|
export declare const CHART_IN_YEAR: (fields?: string[]) => DocumentNode;
|
|
10
|
+
export declare const GET_IP_CONSUL: DocumentNode;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CHART_IN_YEAR = exports.GET_LIST_FILE_OTHER_VERSION = exports.GET_LIST_CORS_BY_S3_USER_ID = exports.GET_LIST_S3_DOMAIN_BY_S3_USER_ID = exports.GET_LIST_FILE_TRASH = exports.GET_LIST_OBJECT = exports.GET_LIST_BUCKET_BY_S3_USER_ID = exports.GET_LIST_S3_USER_BY_SERVICE_ID = void 0;
|
|
3
|
+
exports.GET_IP_CONSUL = exports.CHART_IN_YEAR = exports.GET_LIST_FILE_OTHER_VERSION = exports.GET_LIST_CORS_BY_S3_USER_ID = exports.GET_LIST_S3_DOMAIN_BY_S3_USER_ID = exports.GET_LIST_FILE_TRASH = exports.GET_LIST_OBJECT = exports.GET_LIST_BUCKET_BY_S3_USER_ID = exports.GET_LIST_S3_USER_BY_SERVICE_ID = void 0;
|
|
4
4
|
const graphql_tag_1 = require("graphql-tag");
|
|
5
5
|
const GET_LIST_S3_USER_BY_SERVICE_ID = (fields = []) => {
|
|
6
6
|
const fieldStr = fields.join('\n ');
|
|
@@ -98,3 +98,8 @@ const CHART_IN_YEAR = (fields = []) => {
|
|
|
98
98
|
`;
|
|
99
99
|
};
|
|
100
100
|
exports.CHART_IN_YEAR = CHART_IN_YEAR;
|
|
101
|
+
exports.GET_IP_CONSUL = (0, graphql_tag_1.gql) `
|
|
102
|
+
query GetIPConsul($userId: String!) {
|
|
103
|
+
getIPConsul(userId: $userId)
|
|
104
|
+
}
|
|
105
|
+
`;
|
|
@@ -32,7 +32,7 @@ export declare class CrmService extends Service {
|
|
|
32
32
|
getResumeDomainByServiceId(serviceId: string): Promise<any>;
|
|
33
33
|
getCollegesByProvinceId(provinceId: string | null): Promise<any>;
|
|
34
34
|
getRelatedResourceByResourceType(fromId: string, fromResourceType: string, toResourceType: string): Promise<any>;
|
|
35
|
-
addResourceRelated(fromId: string, fromResourceType: string, toIds: string[], toResourceType: string, createdBy: string): Promise<any>;
|
|
35
|
+
addResourceRelated(fromId: string, fromResourceType: string, toIds: string[], toResourceType: string, createdBy: string, type: string): Promise<any>;
|
|
36
36
|
getResumeInfoByCustomerId(customerId: string): Promise<any>;
|
|
37
37
|
getResumeInfoByCustomerIdDynamic(customerId: string, fields: string[]): Promise<any>;
|
|
38
38
|
createResumeInfo(data: any): Promise<any>;
|
|
@@ -527,7 +527,7 @@ class CrmService extends serviceSDK_1.Service {
|
|
|
527
527
|
}
|
|
528
528
|
});
|
|
529
529
|
}
|
|
530
|
-
addResourceRelated(fromId, fromResourceType, toIds, toResourceType, createdBy) {
|
|
530
|
+
addResourceRelated(fromId, fromResourceType, toIds, toResourceType, createdBy, type) {
|
|
531
531
|
return __awaiter(this, void 0, void 0, function* () {
|
|
532
532
|
const mutation = mutations_1.ADD_RESOURCE_RELATED;
|
|
533
533
|
const variables = {
|
|
@@ -536,6 +536,7 @@ class CrmService extends serviceSDK_1.Service {
|
|
|
536
536
|
toIds,
|
|
537
537
|
toResourceType,
|
|
538
538
|
createdBy,
|
|
539
|
+
type
|
|
539
540
|
};
|
|
540
541
|
try {
|
|
541
542
|
const response = yield this.graphqlMutationV2(mutation, variables);
|
|
@@ -36,4 +36,5 @@ export declare class StorageS3Service extends Service {
|
|
|
36
36
|
resetKey(s3UserId: string, updateBy: string, fields: string[]): Promise<any>;
|
|
37
37
|
actionSyncUserFromS3(s3UserId: string, updateBy: string, fields: string[]): Promise<any>;
|
|
38
38
|
chartInYear(s3UserId: string, year: number, month: number, fields: string[]): Promise<any>;
|
|
39
|
+
getIPConsul(userId: string): Promise<any>;
|
|
39
40
|
}
|
|
@@ -646,5 +646,21 @@ class StorageS3Service extends serviceSDK_1.Service {
|
|
|
646
646
|
}
|
|
647
647
|
});
|
|
648
648
|
}
|
|
649
|
+
getIPConsul(userId) {
|
|
650
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
651
|
+
const query = queries_1.GET_IP_CONSUL;
|
|
652
|
+
const variables = {
|
|
653
|
+
userId
|
|
654
|
+
};
|
|
655
|
+
try {
|
|
656
|
+
const response = yield this.graphqlQueryV2(query, variables);
|
|
657
|
+
return response.getIPConsul;
|
|
658
|
+
}
|
|
659
|
+
catch (error) {
|
|
660
|
+
console.log(`Error in getIPConsul: ${error}`);
|
|
661
|
+
throw error;
|
|
662
|
+
}
|
|
663
|
+
});
|
|
664
|
+
}
|
|
649
665
|
}
|
|
650
666
|
exports.StorageS3Service = StorageS3Service;
|
package/package.json
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ApolloClient, NormalizedCacheObject } from "@apollo/client";
|
|
2
|
-
import { DocumentNode } from "graphql";
|
|
3
|
-
export declare class Service {
|
|
4
|
-
protected token: string | null;
|
|
5
|
-
protected client: ApolloClient<NormalizedCacheObject>;
|
|
6
|
-
protected orgId: string;
|
|
7
|
-
protected storeId: string;
|
|
8
|
-
protected endpoint: string;
|
|
9
|
-
constructor(endpoint: string, orgId: string, storeId: string);
|
|
10
|
-
setToken(token: string): void;
|
|
11
|
-
protected graphqlQuery(query: DocumentNode, variables: any): Promise<any>;
|
|
12
|
-
protected graphqlMutation(mutation: DocumentNode, variables: any): Promise<any>;
|
|
13
|
-
protected restApiCallWithToken(path: string, method: "GET" | "POST" | "PUT" | "DELETE", data?: any, headers?: any): Promise<any>;
|
|
14
|
-
}
|
package/dist/src/lib/service.js
DELETED
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// src/service.ts
|
|
3
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
4
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
5
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
6
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
7
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
8
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
9
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
10
|
-
});
|
|
11
|
-
};
|
|
12
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
14
|
-
};
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.Service = void 0;
|
|
17
|
-
const client_1 = require("@apollo/client");
|
|
18
|
-
const axios_1 = __importDefault(require("axios"));
|
|
19
|
-
class Service {
|
|
20
|
-
constructor(endpoint, orgId, storeId) {
|
|
21
|
-
this.token = null;
|
|
22
|
-
this.client = new client_1.ApolloClient({
|
|
23
|
-
uri: endpoint,
|
|
24
|
-
cache: new client_1.InMemoryCache(),
|
|
25
|
-
defaultOptions: {
|
|
26
|
-
query: {
|
|
27
|
-
fetchPolicy: "network-only",
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
});
|
|
31
|
-
this.orgId = orgId;
|
|
32
|
-
this.storeId = storeId;
|
|
33
|
-
this.endpoint = endpoint;
|
|
34
|
-
}
|
|
35
|
-
setToken(token) {
|
|
36
|
-
this.token = token;
|
|
37
|
-
}
|
|
38
|
-
// setOrgId(orgId: string) {
|
|
39
|
-
// this.orgId = orgId;
|
|
40
|
-
// }
|
|
41
|
-
graphqlQuery(query, variables) {
|
|
42
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
43
|
-
try {
|
|
44
|
-
const { data, errors } = yield this.client.query({
|
|
45
|
-
query: (0, client_1.gql) `
|
|
46
|
-
${query}
|
|
47
|
-
`,
|
|
48
|
-
variables,
|
|
49
|
-
});
|
|
50
|
-
if (errors) {
|
|
51
|
-
throw new Error(`GraphQL error! errors: ${errors}`);
|
|
52
|
-
}
|
|
53
|
-
return data;
|
|
54
|
-
}
|
|
55
|
-
catch (error) {
|
|
56
|
-
console.log(`Error in graphqlQuery: ${error}`);
|
|
57
|
-
throw error;
|
|
58
|
-
}
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
|
-
graphqlMutation(mutation, variables) {
|
|
62
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
63
|
-
try {
|
|
64
|
-
const { data, errors } = yield this.client.mutate({
|
|
65
|
-
mutation: (0, client_1.gql) `
|
|
66
|
-
${mutation}
|
|
67
|
-
`,
|
|
68
|
-
variables,
|
|
69
|
-
});
|
|
70
|
-
if (errors) {
|
|
71
|
-
throw new Error(`GraphQL error! errors: ${errors}`);
|
|
72
|
-
}
|
|
73
|
-
return data;
|
|
74
|
-
}
|
|
75
|
-
catch (error) {
|
|
76
|
-
console.log(`Error in graphqlMutation: ${error}`);
|
|
77
|
-
throw error;
|
|
78
|
-
}
|
|
79
|
-
});
|
|
80
|
-
}
|
|
81
|
-
restApiCallWithToken(path, method, data, headers) {
|
|
82
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
83
|
-
try {
|
|
84
|
-
const modifiedHeaders = Object.assign(Object.assign({}, headers), { "Partner-Id": this.orgId, "X-Ecomos-Access-Token": this.token });
|
|
85
|
-
console.log("🚀 ~ Service ~ modifiedHeaders:", modifiedHeaders);
|
|
86
|
-
const response = yield (0, axios_1.default)({
|
|
87
|
-
url: this.endpoint + path,
|
|
88
|
-
method,
|
|
89
|
-
data,
|
|
90
|
-
headers: modifiedHeaders,
|
|
91
|
-
});
|
|
92
|
-
return response.data;
|
|
93
|
-
}
|
|
94
|
-
catch (error) {
|
|
95
|
-
console.log(`Error in restApiCallWithToken: ${error}`);
|
|
96
|
-
throw error;
|
|
97
|
-
}
|
|
98
|
-
});
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
exports.Service = Service;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function buildFieldString(fields: (string | Record<string, any>)[], indent?: number): string;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.buildFieldString = void 0;
|
|
4
|
-
function buildFieldString(fields, indent = 6) {
|
|
5
|
-
const space = " ".repeat(indent);
|
|
6
|
-
return fields
|
|
7
|
-
.map((field) => {
|
|
8
|
-
if (typeof field === "string")
|
|
9
|
-
return `${space}${field}`;
|
|
10
|
-
const [key, value] = Object.entries(field)[0];
|
|
11
|
-
const nested = buildFieldString(value, indent + 2);
|
|
12
|
-
return `${space}${key} {\n${nested}\n${space}}`;
|
|
13
|
-
})
|
|
14
|
-
.join("\n");
|
|
15
|
-
}
|
|
16
|
-
exports.buildFieldString = buildFieldString;
|