@longvansoftware/service-js-client 2.4.4 → 2.4.6

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.
@@ -27,3 +27,4 @@ export declare const GET_CONSOLE: DocumentNode;
27
27
  export declare const GET_COMPUTING_WAIT_REVOKE: (fields?: string[]) => DocumentNode;
28
28
  export declare const GET_STOREGE_MAPPING_FOR_DC: DocumentNode;
29
29
  export declare const GET_COMPUTINGS_DYNAMIC: (fields?: string[]) => DocumentNode;
30
+ export declare const COMPUTING_DETAIL_DYNAMIC: (fields?: string[]) => DocumentNode;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GET_COMPUTINGS_DYNAMIC = exports.GET_STOREGE_MAPPING_FOR_DC = exports.GET_COMPUTING_WAIT_REVOKE = exports.GET_CONSOLE = exports.GET_RESOUCE_POOL_BY_SERVICE = exports.GET_AVAILABLE_STORAGES_FOR_DC = exports.GET_AVAILABLE_SUBNET_IPS_BY_RESOURCEPOLL_ID = exports.GET_TEMPLATE = exports.GET_PORT_NATS_BY_SERVICE_ID = exports.GET_EDGES = exports.GET_COMPUTING_BY_SERVICE = exports.GET_COMPUTING_BY_CLUSTER = exports.GET_CLUSTER = exports.GET_CLUSTERS = exports.GET_LAB_INSTANCE = exports.GET_COMPUTINGS = exports.BACKUP_POINT = exports.DISK_USAGE_DATE_RANGE = exports.NETWORK_USAGE_DATE_RANGE = exports.CPU_USAGE_DATE_RANGE = exports.RAM_USAGE_DATE_RANGE = exports.DISK_USAGE_START_TIME = exports.NETWORK_USAGE_START_TIME = exports.CPU_USAGE_START_TIME = exports.RAM_USAGE_START_TIME = exports.SNAP_SHOTS = exports.PORTNATS = exports.COMPUTING_DETAIL = void 0;
3
+ exports.COMPUTING_DETAIL_DYNAMIC = exports.GET_COMPUTINGS_DYNAMIC = exports.GET_STOREGE_MAPPING_FOR_DC = exports.GET_COMPUTING_WAIT_REVOKE = exports.GET_CONSOLE = exports.GET_RESOUCE_POOL_BY_SERVICE = exports.GET_AVAILABLE_STORAGES_FOR_DC = exports.GET_AVAILABLE_SUBNET_IPS_BY_RESOURCEPOLL_ID = exports.GET_TEMPLATE = exports.GET_PORT_NATS_BY_SERVICE_ID = exports.GET_EDGES = exports.GET_COMPUTING_BY_SERVICE = exports.GET_COMPUTING_BY_CLUSTER = exports.GET_CLUSTER = exports.GET_CLUSTERS = exports.GET_LAB_INSTANCE = exports.GET_COMPUTINGS = exports.BACKUP_POINT = exports.DISK_USAGE_DATE_RANGE = exports.NETWORK_USAGE_DATE_RANGE = exports.CPU_USAGE_DATE_RANGE = exports.RAM_USAGE_DATE_RANGE = exports.DISK_USAGE_START_TIME = exports.NETWORK_USAGE_START_TIME = exports.CPU_USAGE_START_TIME = exports.RAM_USAGE_START_TIME = exports.SNAP_SHOTS = exports.PORTNATS = exports.COMPUTING_DETAIL = void 0;
4
4
  const graphql_tag_1 = require("graphql-tag");
5
5
  exports.COMPUTING_DETAIL = (0, graphql_tag_1.gql) `
6
6
  query ComputingDetail($computingId: String!, $serviceId: String) {
@@ -588,3 +588,13 @@ const GET_COMPUTINGS_DYNAMIC = (fields = []) => {
588
588
  `;
589
589
  };
590
590
  exports.GET_COMPUTINGS_DYNAMIC = GET_COMPUTINGS_DYNAMIC;
591
+ const COMPUTING_DETAIL_DYNAMIC = (fields = []) => {
592
+ const fieldStr = fields.join("\n ");
593
+ const hasFields = fields.length > 0;
594
+ return (0, graphql_tag_1.gql) `
595
+ mutation ComputingDetail($computingId: String!, $serviceId: String) {
596
+ ComputingDetail(computingId: $computingId, serviceId: $serviceId) ${hasFields ? `{ ${fieldStr} }` : ""}
597
+ }
598
+ `;
599
+ };
600
+ exports.COMPUTING_DETAIL_DYNAMIC = COMPUTING_DETAIL_DYNAMIC;
@@ -3,3 +3,4 @@ export declare const GET_PAYMENT_METHOD: DocumentNode;
3
3
  export declare const GEN_QR_PAYMENT: DocumentNode;
4
4
  export declare const GET_VAT_INVOICE_REQUEST_BY_ORDER: DocumentNode;
5
5
  export declare const GET_INVOICES_OF_ORDER: (fields?: string[]) => DocumentNode;
6
+ export declare const GET_BUSINESS_TAX_INFO: (fields?: string[]) => DocumentNode;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GET_INVOICES_OF_ORDER = exports.GET_VAT_INVOICE_REQUEST_BY_ORDER = exports.GEN_QR_PAYMENT = exports.GET_PAYMENT_METHOD = void 0;
3
+ exports.GET_BUSINESS_TAX_INFO = exports.GET_INVOICES_OF_ORDER = exports.GET_VAT_INVOICE_REQUEST_BY_ORDER = exports.GEN_QR_PAYMENT = exports.GET_PAYMENT_METHOD = void 0;
4
4
  const graphql_tag_1 = require("graphql-tag");
5
5
  exports.GET_PAYMENT_METHOD = (0, graphql_tag_1.gql) `
6
6
  query GetPaymentMethod($orgId: String!, $storeChannelId: String) {
@@ -81,3 +81,19 @@ const GET_INVOICES_OF_ORDER = (fields = []) => {
81
81
  `;
82
82
  };
83
83
  exports.GET_INVOICES_OF_ORDER = GET_INVOICES_OF_ORDER;
84
+ const GET_BUSINESS_TAX_INFO = (fields = []) => {
85
+ const fieldStr = fields.join("\n ");
86
+ const hasFields = fields.length > 0;
87
+ return (0, graphql_tag_1.gql) `
88
+ query getBusinessTaxInfo(
89
+ $taxCode: String!
90
+ ) {
91
+ getBusinessTaxInfo(
92
+ taxCode: $taxCode
93
+ ) {
94
+ ${hasFields ? `${fieldStr}` : ""}
95
+ }
96
+ }
97
+ `;
98
+ };
99
+ exports.GET_BUSINESS_TAX_INFO = GET_BUSINESS_TAX_INFO;
@@ -62,4 +62,5 @@ export declare class ComputingService extends Service {
62
62
  updateRAM(computingId: string, size: number, unit: string, updateBy: string, serviceId: string): Promise<any>;
63
63
  getComputingsDynamic(userId: string, fields: string[]): Promise<any>;
64
64
  createComputingForEC(createComputingInputForEC: any, createBy: string): Promise<any>;
65
+ computingDetailDynamic(computingId: string, serviceId: string, fields: string[]): Promise<any>;
65
66
  }
@@ -940,5 +940,22 @@ class ComputingService extends serviceSDK_1.Service {
940
940
  }
941
941
  });
942
942
  }
943
+ computingDetailDynamic(computingId, serviceId, fields) {
944
+ return __awaiter(this, void 0, void 0, function* () {
945
+ const query = (0, queries_1.COMPUTING_DETAIL_DYNAMIC)(fields);
946
+ const variables = {
947
+ computingId,
948
+ serviceId
949
+ };
950
+ try {
951
+ const response = yield this.graphqlQueryV2(query, variables);
952
+ return response.computingDetail;
953
+ }
954
+ catch (error) {
955
+ console.log(`Error in computingDetail: ${error}`);
956
+ throw error;
957
+ }
958
+ });
959
+ }
943
960
  }
944
961
  exports.ComputingService = ComputingService;
@@ -9,5 +9,6 @@ export declare class PaymentService extends Service {
9
9
  createVatInvoiceRequest(vatInvoiceRequest: any, createBy: string): Promise<any>;
10
10
  requestUnpublishVatInvoice(vatInvoiceRequest: any, byUser: string, fields: string[]): Promise<any>;
11
11
  getInvoicesOfOrder(orderId: string, fields: string[]): Promise<any>;
12
+ getBusinessTaxInfo(taxCode: string, fields: string[]): Promise<any>;
12
13
  getVatInvoiceRequestByOrder(orderId: string, offset: number, pageSize: number): Promise<any>;
13
14
  }
@@ -121,6 +121,22 @@ class PaymentService extends serviceSDK_1.Service {
121
121
  }
122
122
  });
123
123
  }
124
+ getBusinessTaxInfo(taxCode, fields) {
125
+ return __awaiter(this, void 0, void 0, function* () {
126
+ const query = (0, queries_1.GET_BUSINESS_TAX_INFO)(fields);
127
+ const variables = {
128
+ taxCode,
129
+ };
130
+ try {
131
+ const response = yield this.graphqlQuery(query, variables);
132
+ return response.getBusinessTaxInfo;
133
+ }
134
+ catch (error) {
135
+ console.log(`Error in getBusinessTaxInfo: ${error}`);
136
+ throw error;
137
+ }
138
+ });
139
+ }
124
140
  getVatInvoiceRequestByOrder(orderId, offset, pageSize) {
125
141
  return __awaiter(this, void 0, void 0, function* () {
126
142
  const data = {
@@ -0,0 +1,14 @@
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
+ }
@@ -0,0 +1,101 @@
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;
@@ -0,0 +1 @@
1
+ export declare function buildFieldString(fields: (string | Record<string, any>)[], indent?: number): string;
@@ -0,0 +1,16 @@
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longvansoftware/service-js-client",
3
- "version": "2.4.4",
3
+ "version": "2.4.6",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "files": [