@nextera.one/axis-server-sdk 2.3.18 → 2.3.19

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.
@@ -156,6 +156,7 @@ __export(constants_exports, {
156
156
  NCERT_SIG: () => NCERT_SIG,
157
157
  PROOF_CAPSULE: () => PROOF_CAPSULE,
158
158
  PROOF_JWT: () => PROOF_JWT,
159
+ PROOF_KINDS: () => PROOF_KINDS,
159
160
  PROOF_LOOM: () => PROOF_LOOM,
160
161
  PROOF_MTLS: () => PROOF_MTLS,
161
162
  PROOF_NONE: () => PROOF_NONE,
@@ -250,6 +251,7 @@ import {
250
251
  PROOF_MTLS,
251
252
  PROOF_LOOM,
252
253
  PROOF_WITNESS,
254
+ PROOF_KINDS,
253
255
  ProofType,
254
256
  BodyProfile,
255
257
  ERR_INVALID_PACKET,
@@ -11049,6 +11051,7 @@ __export(index_exports, {
11049
11051
  PROOF_CAPABILITIES: () => PROOF_CAPABILITIES,
11050
11052
  PROOF_CAPSULE: () => PROOF_CAPSULE,
11051
11053
  PROOF_JWT: () => PROOF_JWT,
11054
+ PROOF_KINDS: () => PROOF_KINDS,
11052
11055
  PROOF_LOOM: () => PROOF_LOOM,
11053
11056
  PROOF_MTLS: () => PROOF_MTLS,
11054
11057
  PROOF_NONE: () => PROOF_NONE,
@@ -12215,6 +12218,7 @@ var SensorDecisionZ, SensorDecisionWithMetadataZ, CountryBlockSensorInputZ, Coun
12215
12218
  var init_axis_schemas = __esm({
12216
12219
  "src/schemas/axis-schemas.ts"() {
12217
12220
  init_axis_bin();
12221
+ init_constants();
12218
12222
  SensorDecisionZ = z2.union([
12219
12223
  z2.object({ action: z2.literal("ALLOW"), meta: z2.any().optional() }),
12220
12224
  z2.object({
@@ -12244,18 +12248,7 @@ var init_axis_schemas = __esm({
12244
12248
  isFailure: z2.boolean().optional()
12245
12249
  });
12246
12250
  ScanBurstDecisionZ = SensorDecisionWithMetadataZ;
12247
- ProofKindZ = z2.enum([
12248
- "NONE",
12249
- "ANONYMOUS",
12250
- "PASSPORT",
12251
- "CAPSULE",
12252
- "JWT",
12253
- "CONTRACT",
12254
- "WITNESS",
12255
- "MTLS",
12256
- "DEVICE",
12257
- "AUTHORIZED"
12258
- ]);
12251
+ ProofKindZ = z2.enum(PROOF_KINDS);
12259
12252
  AccessProfileZ = z2.enum(["PUBLIC", "PARTNER", "INTERNAL", "NODE"]);
12260
12253
  ProofPresenceInputZ = z2.object({
12261
12254
  profile: AccessProfileZ,