ggez-banking-sdk 0.0.95 → 0.0.97
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.
|
@@ -741,16 +741,18 @@ declare const Data: () => {
|
|
|
741
741
|
createDataTicket: (values: CreateTicketInterface) => {
|
|
742
742
|
ticket: {
|
|
743
743
|
info: {
|
|
744
|
-
|
|
745
|
-
|
|
744
|
+
sub_entity: {
|
|
745
|
+
sub_entity: number;
|
|
746
|
+
sub_entity_id: number;
|
|
747
|
+
}[];
|
|
748
|
+
entity_data: EntityData;
|
|
749
|
+
category: number;
|
|
750
|
+
priority: number;
|
|
751
|
+
type: TicketType;
|
|
752
|
+
description_code: string;
|
|
753
|
+
assigned_to_entity: Entity;
|
|
754
|
+
assigned_to_entity_id: number;
|
|
746
755
|
};
|
|
747
|
-
assigned_to_entity: Entity;
|
|
748
|
-
assigned_to_entity_id: number;
|
|
749
|
-
entity_data: EntityData;
|
|
750
|
-
category: number;
|
|
751
|
-
type: TicketType;
|
|
752
|
-
priority: number;
|
|
753
|
-
description_code: string;
|
|
754
756
|
content: {
|
|
755
757
|
subject: string;
|
|
756
758
|
content: string;
|
|
@@ -572,16 +572,20 @@ const Data = () => {
|
|
|
572
572
|
ticket: [
|
|
573
573
|
{
|
|
574
574
|
info: {
|
|
575
|
-
|
|
576
|
-
|
|
575
|
+
sub_entity: [
|
|
576
|
+
{
|
|
577
|
+
sub_entity: values.subEntity,
|
|
578
|
+
sub_entity_id: values.subEntityId,
|
|
579
|
+
},
|
|
580
|
+
],
|
|
581
|
+
entity_data: enum_1.EntityData.Verification,
|
|
582
|
+
category: 0,
|
|
583
|
+
priority: 4,
|
|
584
|
+
type: enum_1.TicketType.Note,
|
|
585
|
+
description_code: "M000",
|
|
586
|
+
assigned_to_entity: enum_1.Entity.User,
|
|
587
|
+
assigned_to_entity_id: values.userId,
|
|
577
588
|
},
|
|
578
|
-
assigned_to_entity: enum_1.Entity.User,
|
|
579
|
-
assigned_to_entity_id: values.userId,
|
|
580
|
-
entity_data: enum_1.EntityData.Verification,
|
|
581
|
-
category: 0,
|
|
582
|
-
type: enum_1.TicketType.Note,
|
|
583
|
-
priority: 4,
|
|
584
|
-
description_code: "M000",
|
|
585
589
|
content: {
|
|
586
590
|
subject: "Phone Number Verification",
|
|
587
591
|
content: "Phone Number Verification Code Not Received",
|
|
@@ -7,6 +7,12 @@ const chainInfo = (rpc_url, rest_url, chain_id, chain_name, uggzGasPriceStep, ug
|
|
|
7
7
|
chainName: chain_name,
|
|
8
8
|
rpc: rpc_url,
|
|
9
9
|
rest: rest_url,
|
|
10
|
+
chainSymbolImageUrl: "https://ggez.one/images/assets/chain.png",
|
|
11
|
+
nodeProvider: {
|
|
12
|
+
name: "GGEZ1 Foundation DAO LLC.",
|
|
13
|
+
email: "ggez@ggez.one",
|
|
14
|
+
website: "https://ggez.one",
|
|
15
|
+
},
|
|
10
16
|
bip44: {
|
|
11
17
|
coinType: 118,
|
|
12
18
|
},
|
|
@@ -30,7 +36,7 @@ const chainInfo = (rpc_url, rest_url, chain_id, chain_name, uggzGasPriceStep, ug
|
|
|
30
36
|
coinMinimalDenom: "uggz",
|
|
31
37
|
coinDecimals: 6,
|
|
32
38
|
coinImageUrl: "https://ggez.one/images/assets/ggz.png",
|
|
33
|
-
}
|
|
39
|
+
},
|
|
34
40
|
],
|
|
35
41
|
feeCurrencies: [
|
|
36
42
|
{
|
|
@@ -55,6 +61,5 @@ const chainInfo = (rpc_url, rest_url, chain_id, chain_name, uggzGasPriceStep, ug
|
|
|
55
61
|
coinImageUrl: "https://ggez.one/images/assets/ggez1.png",
|
|
56
62
|
},
|
|
57
63
|
features: ["cosmwasm"],
|
|
58
|
-
chainSymbolImageUrl: "https://ggez.one/images/assets/chain.png",
|
|
59
64
|
});
|
|
60
65
|
exports.chainInfo = chainInfo;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.97",
|
|
4
4
|
"description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|