@longvansoftware/storefront-js-client 2.2.6 → 2.2.7-beta.10
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/README.md +93 -93
- package/dist/src/graphql/auth/mutations.d.ts +3 -0
- package/dist/src/graphql/auth/mutations.js +134 -89
- package/dist/src/graphql/auth/queries.d.ts +3 -0
- package/dist/src/graphql/auth/queries.js +56 -21
- package/dist/src/graphql/campaign/mutations.d.ts +1 -0
- package/dist/src/graphql/campaign/mutations.js +31 -0
- package/dist/src/graphql/campaign/queries.js +248 -248
- package/dist/src/graphql/cloud/mutations.js +103 -103
- package/dist/src/graphql/cloud/queries.js +112 -112
- package/dist/src/graphql/computing/mutations.js +96 -96
- package/dist/src/graphql/computing/queries.js +41 -41
- package/dist/src/graphql/crm/mutations.js +799 -799
- package/dist/src/graphql/crm/queries.js +615 -615
- package/dist/src/graphql/payment/mutations.js +39 -39
- package/dist/src/graphql/payment/queries.js +57 -57
- package/dist/src/graphql/paymentV2/mutations.js +4 -4
- package/dist/src/graphql/paymentV2/queries.js +59 -59
- package/dist/src/graphql/product/queries.js +431 -431
- package/dist/src/graphql/service/mutations.js +304 -304
- package/dist/src/graphql/service/queries.js +131 -131
- package/dist/src/graphql/user/mutations.js +110 -110
- package/dist/src/graphql/user/queries.js +281 -279
- package/dist/src/lib/auth/index.d.ts +16 -0
- package/dist/src/lib/auth/index.js +173 -0
- package/dist/src/lib/campaign/index.d.ts +2 -1
- package/dist/src/lib/campaign/index.js +20 -2
- package/dist/src/lib/order/index.d.ts +2 -0
- package/dist/src/lib/order/index.js +26 -0
- package/dist/src/lib/serviceSDK.js +12 -12
- package/dist/src/lib/user/index.js +1 -0
- package/package.json +43 -43
- package/dist/src/lib/shareZalo/index.d.ts +0 -5
- package/dist/src/lib/shareZalo/index.js +0 -32
|
@@ -2,47 +2,47 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SNAP_SHOTS = exports.PORTNATS = exports.COMPUTING_DETAIL = void 0;
|
|
4
4
|
const graphql_tag_1 = require("graphql-tag");
|
|
5
|
-
exports.COMPUTING_DETAIL = (0, graphql_tag_1.gql) `
|
|
6
|
-
query ComputingDetail($computingId: String!) {
|
|
7
|
-
computingDetail(computingId: $computingId) {
|
|
8
|
-
id
|
|
9
|
-
name
|
|
10
|
-
username
|
|
11
|
-
password
|
|
12
|
-
state
|
|
13
|
-
os
|
|
14
|
-
ips
|
|
15
|
-
province
|
|
16
|
-
console
|
|
17
|
-
existPortNat
|
|
18
|
-
}
|
|
19
|
-
}
|
|
5
|
+
exports.COMPUTING_DETAIL = (0, graphql_tag_1.gql) `
|
|
6
|
+
query ComputingDetail($computingId: String!) {
|
|
7
|
+
computingDetail(computingId: $computingId) {
|
|
8
|
+
id
|
|
9
|
+
name
|
|
10
|
+
username
|
|
11
|
+
password
|
|
12
|
+
state
|
|
13
|
+
os
|
|
14
|
+
ips
|
|
15
|
+
province
|
|
16
|
+
console
|
|
17
|
+
existPortNat
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
20
|
`;
|
|
21
|
-
exports.PORTNATS = (0, graphql_tag_1.gql) `
|
|
22
|
-
query PortNats($computingId: String!) {
|
|
23
|
-
portNats(computingId: $computingId) {
|
|
24
|
-
id
|
|
25
|
-
action
|
|
26
|
-
protocol
|
|
27
|
-
originalAddress
|
|
28
|
-
originalPort
|
|
29
|
-
translatedAddress
|
|
30
|
-
translatedPort
|
|
31
|
-
description
|
|
32
|
-
status
|
|
33
|
-
}
|
|
34
|
-
}
|
|
21
|
+
exports.PORTNATS = (0, graphql_tag_1.gql) `
|
|
22
|
+
query PortNats($computingId: String!) {
|
|
23
|
+
portNats(computingId: $computingId) {
|
|
24
|
+
id
|
|
25
|
+
action
|
|
26
|
+
protocol
|
|
27
|
+
originalAddress
|
|
28
|
+
originalPort
|
|
29
|
+
translatedAddress
|
|
30
|
+
translatedPort
|
|
31
|
+
description
|
|
32
|
+
status
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
35
|
`;
|
|
36
|
-
exports.SNAP_SHOTS = (0, graphql_tag_1.gql) `
|
|
37
|
-
query Snapshots($computingId: String!) {
|
|
38
|
-
snapshots(computingId: $computingId) {
|
|
39
|
-
id
|
|
40
|
-
computingId
|
|
41
|
-
snapshotId
|
|
42
|
-
name
|
|
43
|
-
status
|
|
44
|
-
createdStamp
|
|
45
|
-
endDate
|
|
46
|
-
}
|
|
47
|
-
}
|
|
36
|
+
exports.SNAP_SHOTS = (0, graphql_tag_1.gql) `
|
|
37
|
+
query Snapshots($computingId: String!) {
|
|
38
|
+
snapshots(computingId: $computingId) {
|
|
39
|
+
id
|
|
40
|
+
computingId
|
|
41
|
+
snapshotId
|
|
42
|
+
name
|
|
43
|
+
status
|
|
44
|
+
createdStamp
|
|
45
|
+
endDate
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
48
|
`;
|