@xuda.io/ai_module 1.1.5647 → 1.1.5649

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
@@ -129,6 +129,10 @@ export const submit_chat_gpt_prompt = async function (...args) {
129
129
  return await broker.send_to_queue("submit_chat_gpt_prompt", ...args);
130
130
  };
131
131
 
132
+ export const submit_structured_prompt = async function (...args) {
133
+ return await broker.send_to_queue("submit_structured_prompt", ...args);
134
+ };
135
+
132
136
  export const triage_error_incident = async function (...args) {
133
137
  return await broker.send_to_queue("triage_error_incident", ...args);
134
138
  };
@@ -360,71 +364,3 @@ export const get_contact_form_bootstrap = async function (...args) {
360
364
  export const contact_form_submit = async function (...args) {
361
365
  return await broker.send_to_queue("contact_form_submit", ...args);
362
366
  };
363
-
364
- export const mint_clearance_token = async function (...args) {
365
- return await broker.send_to_queue("mint_clearance_token", ...args);
366
- };
367
-
368
- export const verify_clearance_token = async function (...args) {
369
- return await broker.send_to_queue("verify_clearance_token", ...args);
370
- };
371
-
372
- export const get_captcha_bootstrap = async function (...args) {
373
- return await broker.send_to_queue("get_captcha_bootstrap", ...args);
374
- };
375
-
376
- export const captcha_verify = async function (...args) {
377
- return await broker.send_to_queue("captcha_verify", ...args);
378
- };
379
-
380
- export const captcha_siteverify = async function (...args) {
381
- return await broker.send_to_queue("captcha_siteverify", ...args);
382
- };
383
-
384
- export const bp_sanitize_rules = async function (...args) {
385
- return await broker.send_to_queue("bp_sanitize_rules", ...args);
386
- };
387
-
388
- export const get_bot_protection_settings = async function (...args) {
389
- return await broker.send_to_queue("get_bot_protection_settings", ...args);
390
- };
391
-
392
- export const update_bot_protection_settings = async function (...args) {
393
- return await broker.send_to_queue("update_bot_protection_settings", ...args);
394
- };
395
-
396
- export const bp_attach = async function (...args) {
397
- return await broker.send_to_queue("bp_attach", ...args);
398
- };
399
-
400
- export const bp_get_profiles = async function (...args) {
401
- return await broker.send_to_queue("bp_get_profiles", ...args);
402
- };
403
-
404
- export const bp_arm = async function (...args) {
405
- return await broker.send_to_queue("bp_arm", ...args);
406
- };
407
-
408
- export const bp_detach = async function (...args) {
409
- return await broker.send_to_queue("bp_detach", ...args);
410
- };
411
-
412
- export const bp_set_custom_rules = async function (...args) {
413
- return await broker.send_to_queue("bp_set_custom_rules", ...args);
414
- };
415
-
416
- export const bp_resolve_target = async function (...args) {
417
- return await broker.send_to_queue("bp_resolve_target", ...args);
418
- };
419
-
420
- export const evaluate_custom_rules = async function (...args) {
421
- return await broker.send_to_queue("evaluate_custom_rules", ...args);
422
- };
423
-
424
- export const bp_consume_response = async function (...args) {
425
- return await broker.send_to_queue("bp_consume_response", ...args);
426
- };
427
-
428
- export const bp_armed_targets = async function (...args) {
429
- return await broker.send_to_queue("bp_armed_targets", ...args);
430
- };
package/index_msa.mjs CHANGED
@@ -129,6 +129,10 @@ export const submit_chat_gpt_prompt = function (...args) {
129
129
  broker.send_to_queue_async("submit_chat_gpt_prompt", ...args);
130
130
  };
131
131
 
132
+ export const submit_structured_prompt = function (...args) {
133
+ broker.send_to_queue_async("submit_structured_prompt", ...args);
134
+ };
135
+
132
136
  export const triage_error_incident = function (...args) {
133
137
  broker.send_to_queue_async("triage_error_incident", ...args);
134
138
  };
@@ -360,71 +364,3 @@ export const get_contact_form_bootstrap = function (...args) {
360
364
  export const contact_form_submit = function (...args) {
361
365
  broker.send_to_queue_async("contact_form_submit", ...args);
362
366
  };
363
-
364
- export const mint_clearance_token = function (...args) {
365
- broker.send_to_queue_async("mint_clearance_token", ...args);
366
- };
367
-
368
- export const verify_clearance_token = function (...args) {
369
- broker.send_to_queue_async("verify_clearance_token", ...args);
370
- };
371
-
372
- export const get_captcha_bootstrap = function (...args) {
373
- broker.send_to_queue_async("get_captcha_bootstrap", ...args);
374
- };
375
-
376
- export const captcha_verify = function (...args) {
377
- broker.send_to_queue_async("captcha_verify", ...args);
378
- };
379
-
380
- export const captcha_siteverify = function (...args) {
381
- broker.send_to_queue_async("captcha_siteverify", ...args);
382
- };
383
-
384
- export const bp_sanitize_rules = function (...args) {
385
- broker.send_to_queue_async("bp_sanitize_rules", ...args);
386
- };
387
-
388
- export const get_bot_protection_settings = function (...args) {
389
- broker.send_to_queue_async("get_bot_protection_settings", ...args);
390
- };
391
-
392
- export const update_bot_protection_settings = function (...args) {
393
- broker.send_to_queue_async("update_bot_protection_settings", ...args);
394
- };
395
-
396
- export const bp_attach = function (...args) {
397
- broker.send_to_queue_async("bp_attach", ...args);
398
- };
399
-
400
- export const bp_get_profiles = function (...args) {
401
- broker.send_to_queue_async("bp_get_profiles", ...args);
402
- };
403
-
404
- export const bp_arm = function (...args) {
405
- broker.send_to_queue_async("bp_arm", ...args);
406
- };
407
-
408
- export const bp_detach = function (...args) {
409
- broker.send_to_queue_async("bp_detach", ...args);
410
- };
411
-
412
- export const bp_set_custom_rules = function (...args) {
413
- broker.send_to_queue_async("bp_set_custom_rules", ...args);
414
- };
415
-
416
- export const bp_resolve_target = function (...args) {
417
- broker.send_to_queue_async("bp_resolve_target", ...args);
418
- };
419
-
420
- export const evaluate_custom_rules = function (...args) {
421
- broker.send_to_queue_async("evaluate_custom_rules", ...args);
422
- };
423
-
424
- export const bp_consume_response = function (...args) {
425
- broker.send_to_queue_async("bp_consume_response", ...args);
426
- };
427
-
428
- export const bp_armed_targets = function (...args) {
429
- broker.send_to_queue_async("bp_armed_targets", ...args);
430
- };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/ai_module",
3
- "version": "1.1.5647",
3
+ "version": "1.1.5649",
4
4
  "description": "Xuda AI Module",
5
5
  "main": "index.mjs",
6
6
  "type": "module",