gotrip-fx-transaction-form 1.0.280-dev → 1.0.281-dev

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/index.js CHANGED
@@ -29847,8 +29847,6 @@ const Ce = {
29847
29847
  transactionHandlers: {
29848
29848
  list: `${Ce.API_URL}/transaction-handlers/list`,
29849
29849
  getSignedUrls: `${Ce.API_URL}/transaction-handlers/get-signed-urls`,
29850
- esimTransactionList: `${Ce.API_URL}/transaction-handlers/esim-transaction-list`,
29851
- esimTransactionDetail: (e) => `${Ce.API_URL}/transaction-handlers/esim-transaction-detail/${e}`,
29852
29850
  create: `${Ce.API_URL}/transaction-handlers/create`,
29853
29851
  createMany: `${Ce.API_URL}/transaction-handlers/create-many`,
29854
29852
  confirm: `${Ce.API_URL}/transaction-handlers/confirm`,
@@ -29864,8 +29862,6 @@ const Ce = {
29864
29862
  transferMoneyAbroad: `${Ce.API_URL}/transaction-handlers/transfer-money-abroad`,
29865
29863
  updateTransactionBidding: `${Ce.API_URL}/transaction-handlers/update-transaction-bidding`,
29866
29864
  updateTransaction: `${Ce.API_URL}/transaction-handlers/update-transaction`,
29867
- createEsimTransaction: `${Ce.API_URL}/transaction-handlers/create-esim-transaction`,
29868
- sendESimEmail: `${Ce.API_URL}/transaction-handlers/send-esim-email`,
29869
29865
  validateTransactionTiming: `${Ce.API_URL}/transaction-handlers/validate-transaction-timing`,
29870
29866
  calculateCommission: (e) => `${Ce.API_URL}/transaction-handlers/${e}/calculate-commission`
29871
29867
  },
@@ -30001,7 +29997,12 @@ const Ce = {
30001
29997
  update: (e) => `${Ce.API_URL}/commission-policy-handlers/commission-policies/${e}`
30002
29998
  },
30003
29999
  esimHandlers: {
30004
- list: `${Ce.API_URL}/esim-handlers/get-esim-list`
30000
+ transactionList: `${Ce.API_URL}/esim-handlers/transaction-list`,
30001
+ create: `${Ce.API_URL}/esim-handlers/create-esim-transaction`,
30002
+ detail: (e) => `${Ce.API_URL}/esim-handlers/detail/${e}`,
30003
+ packageList: `${Ce.API_URL}/esim-handlers/get-esim-list`,
30004
+ syncPackages: `${Ce.API_URL}/esim-handlers/sync-esim-packages`,
30005
+ sendEmail: `${Ce.API_URL}/esim-handlers/send-email`
30005
30006
  },
30006
30007
  emailHandlers: {
30007
30008
  list: "/email-handlers/list",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gotrip-fx-transaction-form",
3
- "version": "1.0.280-dev",
3
+ "version": "1.0.281-dev",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -21,8 +21,6 @@ export declare const ApiUrls: {
21
21
  transactionHandlers: {
22
22
  list: string;
23
23
  getSignedUrls: string;
24
- esimTransactionList: string;
25
- esimTransactionDetail: (publicId: string) => string;
26
24
  create: string;
27
25
  createMany: string;
28
26
  confirm: string;
@@ -38,8 +36,6 @@ export declare const ApiUrls: {
38
36
  transferMoneyAbroad: string;
39
37
  updateTransactionBidding: string;
40
38
  updateTransaction: string;
41
- createEsimTransaction: string;
42
- sendESimEmail: string;
43
39
  validateTransactionTiming: string;
44
40
  calculateCommission: (publicId: string) => string;
45
41
  };
@@ -175,7 +171,12 @@ export declare const ApiUrls: {
175
171
  update: (id: number) => string;
176
172
  };
177
173
  esimHandlers: {
178
- list: string;
174
+ transactionList: string;
175
+ create: string;
176
+ detail: (publicId: string) => string;
177
+ packageList: string;
178
+ syncPackages: string;
179
+ sendEmail: string;
179
180
  };
180
181
  emailHandlers: {
181
182
  list: string;