@cdot65/prisma-airs-sdk 0.13.1 → 0.13.2

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/dist/index.cjs CHANGED
@@ -589,11 +589,11 @@ var MAX_REPORT_ID_STR_LENGTH = 40;
589
589
  var MAX_AI_PROFILE_NAME_LENGTH = 100;
590
590
  var MAX_NUMBER_OF_SCAN_IDS = 5;
591
591
  var MAX_NUMBER_OF_REPORT_IDS = 5;
592
- var MAX_NUMBER_OF_BATCH_SCAN_OBJECTS = 5;
592
+ var MAX_NUMBER_OF_BATCH_SCAN_OBJECTS = 20;
593
593
  var MAX_CONNECTION_POOL_SIZE = 100;
594
594
  var MAX_NUMBER_OF_RETRIES = 5;
595
595
  var HTTP_FORCE_RETRY_STATUS_CODES = [500, 502, 503, 504];
596
- var SDK_VERSION = "0.13.1";
596
+ var SDK_VERSION = "0.13.2";
597
597
  var USER_AGENT = `PAN-AIRS/${SDK_VERSION}-typescript-sdk`;
598
598
  var DEFAULT_MGMT_ENDPOINT = "https://api.sase.paloaltonetworks.com/aisec";
599
599
  var DEFAULT_TOKEN_ENDPOINT = "https://auth.apps.paloaltonetworks.com/oauth2/access_token";
@@ -1461,13 +1461,13 @@ var Scanner = class {
1461
1461
  /**
1462
1462
  * Submit one batch of content for asynchronous scanning.
1463
1463
  *
1464
- * The call accepts 1–5 request objects and returns one batch receipt. A batch `scan_id` can fan
1464
+ * The call accepts 1–20 request objects and returns one batch receipt. A batch `scan_id` can fan
1465
1465
  * out to several unordered result rows. Correlate each row by `(scan_id, req_id)`, never array
1466
1466
  * position or `scan_id` alone. The SDK preserves the server's row order and cardinality.
1467
1467
  *
1468
1468
  * Setting `numRetries: 0` guarantees one SDK fetch attempt, but cannot guarantee exactly-once
1469
1469
  * server submission after an ambiguous network or 5xx failure.
1470
- * @param scanObjects - Array of scan objects (1–5 items), each with its own `req_id`.
1470
+ * @param scanObjects - Array of scan objects (1–20 items), each with its own `req_id`.
1471
1471
  * @param opts - Optional per-call retry override.
1472
1472
  * @returns One batch receipt containing the shared scan ID for later querying.
1473
1473
  * @example