@xuda.io/ai_module 1.1.5635 → 1.1.5637

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_ms.mjs CHANGED
@@ -348,3 +348,71 @@ export const get_contact_form_bootstrap = async function (...args) {
348
348
  export const contact_form_submit = async function (...args) {
349
349
  return await broker.send_to_queue("contact_form_submit", ...args);
350
350
  };
351
+
352
+ export const mint_clearance_token = async function (...args) {
353
+ return await broker.send_to_queue("mint_clearance_token", ...args);
354
+ };
355
+
356
+ export const verify_clearance_token = async function (...args) {
357
+ return await broker.send_to_queue("verify_clearance_token", ...args);
358
+ };
359
+
360
+ export const get_captcha_bootstrap = async function (...args) {
361
+ return await broker.send_to_queue("get_captcha_bootstrap", ...args);
362
+ };
363
+
364
+ export const captcha_verify = async function (...args) {
365
+ return await broker.send_to_queue("captcha_verify", ...args);
366
+ };
367
+
368
+ export const captcha_siteverify = async function (...args) {
369
+ return await broker.send_to_queue("captcha_siteverify", ...args);
370
+ };
371
+
372
+ export const bp_sanitize_rules = async function (...args) {
373
+ return await broker.send_to_queue("bp_sanitize_rules", ...args);
374
+ };
375
+
376
+ export const get_bot_protection_settings = async function (...args) {
377
+ return await broker.send_to_queue("get_bot_protection_settings", ...args);
378
+ };
379
+
380
+ export const update_bot_protection_settings = async function (...args) {
381
+ return await broker.send_to_queue("update_bot_protection_settings", ...args);
382
+ };
383
+
384
+ export const bp_attach = async function (...args) {
385
+ return await broker.send_to_queue("bp_attach", ...args);
386
+ };
387
+
388
+ export const bp_get_profiles = async function (...args) {
389
+ return await broker.send_to_queue("bp_get_profiles", ...args);
390
+ };
391
+
392
+ export const bp_arm = async function (...args) {
393
+ return await broker.send_to_queue("bp_arm", ...args);
394
+ };
395
+
396
+ export const bp_detach = async function (...args) {
397
+ return await broker.send_to_queue("bp_detach", ...args);
398
+ };
399
+
400
+ export const bp_set_custom_rules = async function (...args) {
401
+ return await broker.send_to_queue("bp_set_custom_rules", ...args);
402
+ };
403
+
404
+ export const bp_resolve_target = async function (...args) {
405
+ return await broker.send_to_queue("bp_resolve_target", ...args);
406
+ };
407
+
408
+ export const evaluate_custom_rules = async function (...args) {
409
+ return await broker.send_to_queue("evaluate_custom_rules", ...args);
410
+ };
411
+
412
+ export const bp_consume_response = async function (...args) {
413
+ return await broker.send_to_queue("bp_consume_response", ...args);
414
+ };
415
+
416
+ export const bp_armed_targets = async function (...args) {
417
+ return await broker.send_to_queue("bp_armed_targets", ...args);
418
+ };
package/index_msa.mjs CHANGED
@@ -348,3 +348,71 @@ export const get_contact_form_bootstrap = function (...args) {
348
348
  export const contact_form_submit = function (...args) {
349
349
  broker.send_to_queue_async("contact_form_submit", ...args);
350
350
  };
351
+
352
+ export const mint_clearance_token = function (...args) {
353
+ broker.send_to_queue_async("mint_clearance_token", ...args);
354
+ };
355
+
356
+ export const verify_clearance_token = function (...args) {
357
+ broker.send_to_queue_async("verify_clearance_token", ...args);
358
+ };
359
+
360
+ export const get_captcha_bootstrap = function (...args) {
361
+ broker.send_to_queue_async("get_captcha_bootstrap", ...args);
362
+ };
363
+
364
+ export const captcha_verify = function (...args) {
365
+ broker.send_to_queue_async("captcha_verify", ...args);
366
+ };
367
+
368
+ export const captcha_siteverify = function (...args) {
369
+ broker.send_to_queue_async("captcha_siteverify", ...args);
370
+ };
371
+
372
+ export const bp_sanitize_rules = function (...args) {
373
+ broker.send_to_queue_async("bp_sanitize_rules", ...args);
374
+ };
375
+
376
+ export const get_bot_protection_settings = function (...args) {
377
+ broker.send_to_queue_async("get_bot_protection_settings", ...args);
378
+ };
379
+
380
+ export const update_bot_protection_settings = function (...args) {
381
+ broker.send_to_queue_async("update_bot_protection_settings", ...args);
382
+ };
383
+
384
+ export const bp_attach = function (...args) {
385
+ broker.send_to_queue_async("bp_attach", ...args);
386
+ };
387
+
388
+ export const bp_get_profiles = function (...args) {
389
+ broker.send_to_queue_async("bp_get_profiles", ...args);
390
+ };
391
+
392
+ export const bp_arm = function (...args) {
393
+ broker.send_to_queue_async("bp_arm", ...args);
394
+ };
395
+
396
+ export const bp_detach = function (...args) {
397
+ broker.send_to_queue_async("bp_detach", ...args);
398
+ };
399
+
400
+ export const bp_set_custom_rules = function (...args) {
401
+ broker.send_to_queue_async("bp_set_custom_rules", ...args);
402
+ };
403
+
404
+ export const bp_resolve_target = function (...args) {
405
+ broker.send_to_queue_async("bp_resolve_target", ...args);
406
+ };
407
+
408
+ export const evaluate_custom_rules = function (...args) {
409
+ broker.send_to_queue_async("evaluate_custom_rules", ...args);
410
+ };
411
+
412
+ export const bp_consume_response = function (...args) {
413
+ broker.send_to_queue_async("bp_consume_response", ...args);
414
+ };
415
+
416
+ export const bp_armed_targets = function (...args) {
417
+ broker.send_to_queue_async("bp_armed_targets", ...args);
418
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/ai_module",
3
- "version": "1.1.5635",
3
+ "version": "1.1.5637",
4
4
  "description": "Xuda AI Module",
5
5
  "main": "index.mjs",
6
6
  "type": "module",