@xuda.io/account_module 1.2.2280 → 1.2.2281
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.mjs +1170 -98
- package/index_ms.mjs +84 -0
- package/index_msa.mjs +84 -0
- package/package.json +5 -2
package/index_ms.mjs
CHANGED
|
@@ -25,10 +25,26 @@ export const update_account_preferences = async function (...args) {
|
|
|
25
25
|
return await broker.send_to_queue("update_account_preferences", ...args);
|
|
26
26
|
};
|
|
27
27
|
|
|
28
|
+
export const get_dash_state = async function (...args) {
|
|
29
|
+
return await broker.send_to_queue("get_dash_state", ...args);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export const touch_item_activity = async function (...args) {
|
|
33
|
+
return await broker.send_to_queue("touch_item_activity", ...args);
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export const set_item_pin = async function (...args) {
|
|
37
|
+
return await broker.send_to_queue("set_item_pin", ...args);
|
|
38
|
+
};
|
|
39
|
+
|
|
28
40
|
export const save_admin_presets = async function (...args) {
|
|
29
41
|
return await broker.send_to_queue("save_admin_presets", ...args);
|
|
30
42
|
};
|
|
31
43
|
|
|
44
|
+
export const get_effective_entitlements = async function (...args) {
|
|
45
|
+
return await broker.send_to_queue("get_effective_entitlements", ...args);
|
|
46
|
+
};
|
|
47
|
+
|
|
32
48
|
export const increment_account_usage = async function (...args) {
|
|
33
49
|
return await broker.send_to_queue("increment_account_usage", ...args);
|
|
34
50
|
};
|
|
@@ -53,10 +69,26 @@ export const backfill_app_costs = async function (...args) {
|
|
|
53
69
|
return await broker.send_to_queue("backfill_app_costs", ...args);
|
|
54
70
|
};
|
|
55
71
|
|
|
72
|
+
export const is_login_sponsor_tier = async function (...args) {
|
|
73
|
+
return await broker.send_to_queue("is_login_sponsor_tier", ...args);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export const resolve_effective_login_screen = async function (...args) {
|
|
77
|
+
return await broker.send_to_queue("resolve_effective_login_screen", ...args);
|
|
78
|
+
};
|
|
79
|
+
|
|
56
80
|
export const get_account_data = async function (...args) {
|
|
57
81
|
return await broker.send_to_queue("get_account_data", ...args);
|
|
58
82
|
};
|
|
59
83
|
|
|
84
|
+
export const reset_login_screen = async function (...args) {
|
|
85
|
+
return await broker.send_to_queue("reset_login_screen", ...args);
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const get_login_screen = async function (...args) {
|
|
89
|
+
return await broker.send_to_queue("get_login_screen", ...args);
|
|
90
|
+
};
|
|
91
|
+
|
|
60
92
|
export const get_account_projects = async function (...args) {
|
|
61
93
|
return await broker.send_to_queue("get_account_projects", ...args);
|
|
62
94
|
};
|
|
@@ -85,6 +117,10 @@ export const get_account_static_websites = async function (...args) {
|
|
|
85
117
|
return await broker.send_to_queue("get_account_static_websites", ...args);
|
|
86
118
|
};
|
|
87
119
|
|
|
120
|
+
export const get_account_external_apps = async function (...args) {
|
|
121
|
+
return await broker.send_to_queue("get_account_external_apps", ...args);
|
|
122
|
+
};
|
|
123
|
+
|
|
88
124
|
export const get_account_info = async function (...args) {
|
|
89
125
|
return await broker.send_to_queue("get_account_info", ...args);
|
|
90
126
|
};
|
|
@@ -109,6 +145,30 @@ export const ops_list_terminations = async function (...args) {
|
|
|
109
145
|
return await broker.send_to_queue("ops_list_terminations", ...args);
|
|
110
146
|
};
|
|
111
147
|
|
|
148
|
+
export const ops_find_account = async function (...args) {
|
|
149
|
+
return await broker.send_to_queue("ops_find_account", ...args);
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
export const ops_account_snapshot = async function (...args) {
|
|
153
|
+
return await broker.send_to_queue("ops_account_snapshot", ...args);
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
export const ops_set_billing_hold = async function (...args) {
|
|
157
|
+
return await broker.send_to_queue("ops_set_billing_hold", ...args);
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
export const ops_release_billing_hold = async function (...args) {
|
|
161
|
+
return await broker.send_to_queue("ops_release_billing_hold", ...args);
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
export const ops_add_ai_credits = async function (...args) {
|
|
165
|
+
return await broker.send_to_queue("ops_add_ai_credits", ...args);
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
export const ops_send_notification = async function (...args) {
|
|
169
|
+
return await broker.send_to_queue("ops_send_notification", ...args);
|
|
170
|
+
};
|
|
171
|
+
|
|
112
172
|
export const did_you_know_tips = async function (...args) {
|
|
113
173
|
return await broker.send_to_queue("did_you_know_tips", ...args);
|
|
114
174
|
};
|
|
@@ -149,6 +209,10 @@ export const add_account_log_util = async function (...args) {
|
|
|
149
209
|
return await broker.send_to_queue("add_account_log_util", ...args);
|
|
150
210
|
};
|
|
151
211
|
|
|
212
|
+
export const add_app_log_util = async function (...args) {
|
|
213
|
+
return await broker.send_to_queue("add_app_log_util", ...args);
|
|
214
|
+
};
|
|
215
|
+
|
|
152
216
|
export const save_ssh_key = async function (...args) {
|
|
153
217
|
return await broker.send_to_queue("save_ssh_key", ...args);
|
|
154
218
|
};
|
|
@@ -404,3 +468,23 @@ export const read_accounts_emails = async function (...args) {
|
|
|
404
468
|
export const process_accounts_emails = async function (...args) {
|
|
405
469
|
return await broker.send_to_queue("process_accounts_emails", ...args);
|
|
406
470
|
};
|
|
471
|
+
|
|
472
|
+
export const newsletter_generate = async function (...args) {
|
|
473
|
+
return await broker.send_to_queue("newsletter_generate", ...args);
|
|
474
|
+
};
|
|
475
|
+
|
|
476
|
+
export const newsletter_list_issues = async function (...args) {
|
|
477
|
+
return await broker.send_to_queue("newsletter_list_issues", ...args);
|
|
478
|
+
};
|
|
479
|
+
|
|
480
|
+
export const newsletter_preview = async function (...args) {
|
|
481
|
+
return await broker.send_to_queue("newsletter_preview", ...args);
|
|
482
|
+
};
|
|
483
|
+
|
|
484
|
+
export const newsletter_send_sample = async function (...args) {
|
|
485
|
+
return await broker.send_to_queue("newsletter_send_sample", ...args);
|
|
486
|
+
};
|
|
487
|
+
|
|
488
|
+
export const newsletter_publish = async function (...args) {
|
|
489
|
+
return await broker.send_to_queue("newsletter_publish", ...args);
|
|
490
|
+
};
|
package/index_msa.mjs
CHANGED
|
@@ -25,10 +25,26 @@ export const update_account_preferences = function (...args) {
|
|
|
25
25
|
broker.send_to_queue_async("update_account_preferences", ...args);
|
|
26
26
|
};
|
|
27
27
|
|
|
28
|
+
export const get_dash_state = function (...args) {
|
|
29
|
+
broker.send_to_queue_async("get_dash_state", ...args);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export const touch_item_activity = function (...args) {
|
|
33
|
+
broker.send_to_queue_async("touch_item_activity", ...args);
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export const set_item_pin = function (...args) {
|
|
37
|
+
broker.send_to_queue_async("set_item_pin", ...args);
|
|
38
|
+
};
|
|
39
|
+
|
|
28
40
|
export const save_admin_presets = function (...args) {
|
|
29
41
|
broker.send_to_queue_async("save_admin_presets", ...args);
|
|
30
42
|
};
|
|
31
43
|
|
|
44
|
+
export const get_effective_entitlements = function (...args) {
|
|
45
|
+
broker.send_to_queue_async("get_effective_entitlements", ...args);
|
|
46
|
+
};
|
|
47
|
+
|
|
32
48
|
export const increment_account_usage = function (...args) {
|
|
33
49
|
broker.send_to_queue_async("increment_account_usage", ...args);
|
|
34
50
|
};
|
|
@@ -53,10 +69,26 @@ export const backfill_app_costs = function (...args) {
|
|
|
53
69
|
broker.send_to_queue_async("backfill_app_costs", ...args);
|
|
54
70
|
};
|
|
55
71
|
|
|
72
|
+
export const is_login_sponsor_tier = function (...args) {
|
|
73
|
+
broker.send_to_queue_async("is_login_sponsor_tier", ...args);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export const resolve_effective_login_screen = function (...args) {
|
|
77
|
+
broker.send_to_queue_async("resolve_effective_login_screen", ...args);
|
|
78
|
+
};
|
|
79
|
+
|
|
56
80
|
export const get_account_data = function (...args) {
|
|
57
81
|
broker.send_to_queue_async("get_account_data", ...args);
|
|
58
82
|
};
|
|
59
83
|
|
|
84
|
+
export const reset_login_screen = function (...args) {
|
|
85
|
+
broker.send_to_queue_async("reset_login_screen", ...args);
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const get_login_screen = function (...args) {
|
|
89
|
+
broker.send_to_queue_async("get_login_screen", ...args);
|
|
90
|
+
};
|
|
91
|
+
|
|
60
92
|
export const get_account_projects = function (...args) {
|
|
61
93
|
broker.send_to_queue_async("get_account_projects", ...args);
|
|
62
94
|
};
|
|
@@ -85,6 +117,10 @@ export const get_account_static_websites = function (...args) {
|
|
|
85
117
|
broker.send_to_queue_async("get_account_static_websites", ...args);
|
|
86
118
|
};
|
|
87
119
|
|
|
120
|
+
export const get_account_external_apps = function (...args) {
|
|
121
|
+
broker.send_to_queue_async("get_account_external_apps", ...args);
|
|
122
|
+
};
|
|
123
|
+
|
|
88
124
|
export const get_account_info = function (...args) {
|
|
89
125
|
broker.send_to_queue_async("get_account_info", ...args);
|
|
90
126
|
};
|
|
@@ -109,6 +145,30 @@ export const ops_list_terminations = function (...args) {
|
|
|
109
145
|
broker.send_to_queue_async("ops_list_terminations", ...args);
|
|
110
146
|
};
|
|
111
147
|
|
|
148
|
+
export const ops_find_account = function (...args) {
|
|
149
|
+
broker.send_to_queue_async("ops_find_account", ...args);
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
export const ops_account_snapshot = function (...args) {
|
|
153
|
+
broker.send_to_queue_async("ops_account_snapshot", ...args);
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
export const ops_set_billing_hold = function (...args) {
|
|
157
|
+
broker.send_to_queue_async("ops_set_billing_hold", ...args);
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
export const ops_release_billing_hold = function (...args) {
|
|
161
|
+
broker.send_to_queue_async("ops_release_billing_hold", ...args);
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
export const ops_add_ai_credits = function (...args) {
|
|
165
|
+
broker.send_to_queue_async("ops_add_ai_credits", ...args);
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
export const ops_send_notification = function (...args) {
|
|
169
|
+
broker.send_to_queue_async("ops_send_notification", ...args);
|
|
170
|
+
};
|
|
171
|
+
|
|
112
172
|
export const did_you_know_tips = function (...args) {
|
|
113
173
|
broker.send_to_queue_async("did_you_know_tips", ...args);
|
|
114
174
|
};
|
|
@@ -149,6 +209,10 @@ export const add_account_log_util = function (...args) {
|
|
|
149
209
|
broker.send_to_queue_async("add_account_log_util", ...args);
|
|
150
210
|
};
|
|
151
211
|
|
|
212
|
+
export const add_app_log_util = function (...args) {
|
|
213
|
+
broker.send_to_queue_async("add_app_log_util", ...args);
|
|
214
|
+
};
|
|
215
|
+
|
|
152
216
|
export const save_ssh_key = function (...args) {
|
|
153
217
|
broker.send_to_queue_async("save_ssh_key", ...args);
|
|
154
218
|
};
|
|
@@ -404,3 +468,23 @@ export const read_accounts_emails = function (...args) {
|
|
|
404
468
|
export const process_accounts_emails = function (...args) {
|
|
405
469
|
broker.send_to_queue_async("process_accounts_emails", ...args);
|
|
406
470
|
};
|
|
471
|
+
|
|
472
|
+
export const newsletter_generate = function (...args) {
|
|
473
|
+
broker.send_to_queue_async("newsletter_generate", ...args);
|
|
474
|
+
};
|
|
475
|
+
|
|
476
|
+
export const newsletter_list_issues = function (...args) {
|
|
477
|
+
broker.send_to_queue_async("newsletter_list_issues", ...args);
|
|
478
|
+
};
|
|
479
|
+
|
|
480
|
+
export const newsletter_preview = function (...args) {
|
|
481
|
+
broker.send_to_queue_async("newsletter_preview", ...args);
|
|
482
|
+
};
|
|
483
|
+
|
|
484
|
+
export const newsletter_send_sample = function (...args) {
|
|
485
|
+
broker.send_to_queue_async("newsletter_send_sample", ...args);
|
|
486
|
+
};
|
|
487
|
+
|
|
488
|
+
export const newsletter_publish = function (...args) {
|
|
489
|
+
broker.send_to_queue_async("newsletter_publish", ...args);
|
|
490
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xuda.io/account_module",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2281",
|
|
4
4
|
"description": "Xuda Account Server Module",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"dependencies": {
|
|
@@ -15,5 +15,8 @@
|
|
|
15
15
|
"pub": "npm version patch --force && npm publish"
|
|
16
16
|
},
|
|
17
17
|
"author": "Xuda Llc",
|
|
18
|
-
"license": "ISC"
|
|
18
|
+
"license": "ISC",
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "restricted"
|
|
21
|
+
}
|
|
19
22
|
}
|