@longvansoftware/storefront-js-client 2.9.0 → 2.9.2
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.js +130 -130
- package/dist/src/graphql/auth/queries.js +55 -55
- package/dist/src/graphql/campaign/mutations.js +26 -26
- package/dist/src/graphql/campaign/queries.js +375 -375
- 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 +813 -813
- package/dist/src/graphql/crm/queries.js +661 -661
- package/dist/src/graphql/payment/mutations.d.ts +1 -0
- package/dist/src/graphql/payment/mutations.js +148 -125
- package/dist/src/graphql/payment/queries.d.ts +1 -0
- package/dist/src/graphql/payment/queries.js +112 -93
- package/dist/src/graphql/paymentV2/mutations.js +47 -47
- package/dist/src/graphql/paymentV2/queries.js +176 -176
- package/dist/src/graphql/product/mutations.js +94 -94
- package/dist/src/graphql/product/queries.js +464 -464
- 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 +142 -142
- package/dist/src/graphql/user/queries.js +298 -298
- package/dist/src/lib/order/index.d.ts +2 -1
- package/dist/src/lib/order/index.js +4 -4
- package/dist/src/lib/payment/index.d.ts +2 -0
- package/dist/src/lib/payment/index.js +33 -0
- package/dist/src/lib/serviceSDK.js +12 -12
- package/dist/src/lib/shareZalo/index.d.ts +5 -0
- package/dist/src/lib/shareZalo/index.js +32 -0
- package/dist/src/lib/zca/index.d.ts +1 -1
- package/dist/src/lib/zca/index.js +2 -2
- package/package.json +43 -43
|
@@ -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
|
`;
|