diff --git a/specs/Data-Gateway.json b/specs/Data-Gateway.json index 58d78ac..ac08701 100644 --- a/specs/Data-Gateway.json +++ b/specs/Data-Gateway.json @@ -132,34 +132,34 @@ "LicenseReport.CorrelationRecord": { "description": "Metadata that describes the execution session (run) that is used to tie/relate all of the license report together.", "example": { - "AuditTenantAccount": "priv-user@example.com", - "CorrelationId": "9d838115-0868-45d4-b8a5-98adc1af7e42", - "ReportTenantAccount": "ent-user@example.com", - "TenantId": "7e536189-b2dd-4c8b-98b1-9b174777883f", + "auditTenantAccount": "priv-user@example.com", + "correlationId": "9d838115-0868-45d4-b8a5-98adc1af7e42", + "reportTenantAccount": "ent-user@example.com", + "tenantId": "7e536189-b2dd-4c8b-98b1-9b174777883f", "createdAt": "2024-08-01T21:13:12.821Z", "updatedAt": "2024-08-01T21:13:12.821Z" }, "properties": { - "AuditTenantAccount": { + "auditTenantAccount": { "description": "The user account used to retrieve the license information in the tenant being audited.", "example": "admin-user@example.com", "format": "email", "type": "string" }, - "CorrelationId": { + "correlationId": { "description": "The ID of the execution session (run) that is used to tie/relate all of the data together.", "example": "88da2253-758f-4135-9d37-64448c8b65c1", "format": "uuid", "type": "string", "pattern": "^\\w+-\\w+-\\w+-\\w+-\\w+$" }, - "ReportTenantAccount": { + "reportTenantAccount": { "description": "User account used to store/report the license report to the SHI Lab cloud service.", "example": "generic-user@example.com", "format": "email", "type": "string" }, - "TenantId": { + "tenantId": { "description": "Unique ID of customer's Microsoft tenant that the license report is for.", "example": "0e1fe83f-a33f-4250-8546-225b8d45ae01", "format": "uuid", @@ -180,7 +180,7 @@ } }, "required": [ - "AuditTenantAccount" + "auditTenantAccount" ], "title": "License Report - Correlation Record", "type": "object" @@ -188,7 +188,7 @@ "LicenseReport.LicenseData": { "type": "object", "properties": { - "AssignedLicense": { + "assignedLicense": { "additionalProperties": { "type": "integer", "nullable": true @@ -196,7 +196,7 @@ "description": "License assignment on the specified principal.", "type": "object" }, - "AssignedService": { + "assignedService": { "additionalProperties": { "oneOf": [ { @@ -212,7 +212,7 @@ "description": "Service configuration assignment. This is used to record the set of principals that are \"benefiting\" from the service, regardless of license status.", "type": "object" }, - "ConsumedService": { + "consumedService": { "additionalProperties": { "oneOf": [ { @@ -230,18 +230,18 @@ } }, "required": [ - "AssignedLicense", - "AssignedService", - "ConsumedService" + "assignedLicense", + "assignedService", + "consumedService" ], "description": "Collection of principals that have had their in-use licenses and assigned licenses. Where the key is the principal ID and the value is the insights.", "example": { - "AssignedLicense": { + "assignedLicense": { "eec0eb4f-6444-4f95-aba0-50c24d67f998": null, "41781fb2-bc02-4b7c-bd55-b576c07bb09d": null, "7159f980-6f83-4b67-bf41-e172b3ae1352": null }, - "AssignedService": { + "assignedService": { "eec0eb4f-6444-4f95-aba0-50c24d67f998": { "Conditional Access": false, "Access Review": true, @@ -259,7 +259,7 @@ }, "6511755b-c27d-4c66-a59e-b835e6b54e7f": null }, - "ConsumedService": { + "consumedService": { "eec0eb4f-6444-4f95-aba0-50c24d67f998": { "Conditional Access": true, "Access Review": false, @@ -299,27 +299,27 @@ "LicenseReport": { "description": "Completely calculated license report structure that is the result of a complete run.", "example": { - "AvailableLicense": { + "availableLicense": { "e17b13ee-9749-488b-9289-d31a8fde045d": 123, "2d995b6a-d4aa-4d8d-a03c-372ecb66509d": 456, "cbf6ee7c-c3c1-44a6-9f18-020c65536470": 789 }, - "Correlation": { - "AuditTenantAccount": "admin-user@example.com", - "CorrelationId": "88da2253-758f-4135-9d37-64448c8b65c1", - "ReportTenantAccount": "generic-user@example.com", - "TenantId": "0e1fe83f-a33f-4250-8546-225b8d45ae01" + "correlation": { + "auditTenantAccount": "admin-user@example.com", + "correlationId": "88da2253-758f-4135-9d37-64448c8b65c1", + "reportTenantAccount": "generic-user@example.com", + "tenantId": "0e1fe83f-a33f-4250-8546-225b8d45ae01" }, - "LicenseData": { + "licenseData": { "250844e1-a7ab-4f21-8e3f-58f51b5983a3": { - "AssignedLicense": { + "assignedLicense": { "e17b13ee-9749-488b-9289-d31a8fde045d": null }, - "AssignedService": { + "assignedService": { "cbf6ee7c-c3c1-44a6-9f18-020c65536470": null, "c7bcba35-199c-41e5-8c8d-6d4e4aad8964": null }, - "ConsumedService": { + "consumedService": { "fe98c41a-d931-4f6f-a5bc-750ba7144a77": null, "0474bdf1-ee76-4aff-a65c-6f82e5e1d5a6": { "Something Here": true, @@ -331,7 +331,7 @@ }, "type": "object", "properties": { - "AvailableLicense": { + "availableLicense": { "additionalProperties": { "example": 1234, "type": "integer" @@ -344,26 +344,26 @@ "title": "License Report - Available Licenses", "type": "object" }, - "Correlation": { + "correlation": { "$ref": "#/components/schemas/LicenseReport.CorrelationRecord" }, - "LicenseData": { + "licenseData": { "additionalProperties": { "$ref": "#/components/schemas/LicenseReport.LicenseData" } } }, "required": [ - "AvailableLicense", - "Correlation", - "LicenseData" + "availableLicense", + "correlation", + "licenseData" ], "title": "License Report - Complete Object" }, "LicenseEntitlement.Shield": { "description": "Record that describes the purchased licenses for a specific tenant. More than one of these can be active at a single time.", "properties": { - "CorrelationId": { + "correlationId": { "description": "Used to correlate the license entitlements with other records.", "example": "e097a3f5-9599-44a2-8923-fd3276c83ae1", "format": "uuid", @@ -373,96 +373,96 @@ "readOnly": true, "type": "string" }, - "EnterpriseDeviceCount": { + "enterpriseDeviceCount": { "description": "Count of Enterprise Devices that are allowed to be managed.", "example": 5, "format": "int32", "type": "integer" }, - "EnterpriseInterfaceCount": { + "enterpriseInterfaceCount": { "description": "Count of Enterprise Interfaces that are allowed to be managed.", "example": 6, "format": "int32", "type": "integer" }, - "EnterpriseIntermediaryCount": { + "enterpriseIntermediaryCount": { "description": "Count of Enterprise Intermediaries that are allowed to be managed.", "example": 7, "format": "int32", "type": "integer" }, - "EnterpriseUserCount": { + "enterpriseUserCount": { "description": "Count of Enterprise Users that are allowed to be managed.", "example": 8, "format": "int32", "type": "integer" }, - "NotValidAfter": { + "notValidAfter": { "description": "Date that the entitlement expires at.", "example": "2024-07-30T17:35:24.044Z", "format": "date-time", "type": "string" }, - "NotValidBefore": { + "notValidBefore": { "description": "Date that the entitlement becomes active at.", "example": "2024-07-30T17:37:15.300Z", "format": "date-time", "type": "string" }, - "PrivilegedDeviceCount": { + "privilegedDeviceCount": { "description": "Count of Privileged Devices (PAW) that are allowed to be managed.", "example": 9, "format": "int32", "type": "integer" }, - "PrivilegedInterfaceCount": { + "privilegedInterfaceCount": { "description": "Count of Privileged Interfaces that are allowed to be managed.", "example": 10, "format": "int32", "type": "integer" }, - "PrivilegedIntermediaryCount": { + "privilegedIntermediaryCount": { "description": "Count of Privileged Intermediaries that are allowed to be managed.", "example": 11, "format": "int32", "type": "integer" }, - "PrivilegedUserCount": { + "privilegedUserCount": { "description": "Count of Privileged Users that are allowed to be managed.", "example": 12, "format": "int32", "type": "integer" }, - "PurchaseId": { + "purchaseId": { "description": "This could be any value used to correlate the purchase operation to this entitlement record.", "example": "Bob's your uncle.", "type": "string" }, - "SpecializedDeviceCount": { + "specializedDeviceCount": { "description": "Count of Specialized Devices that are allowed to be managed.", "example": 13, "format": "int32", "type": "integer" }, - "SpecializedInterfaceCount": { + "specializedInterfaceCount": { "description": "Count of Specialized Interfaces that are allowed to be managed.", "example": 14, "format": "int32", "type": "integer" }, - "SpecializedIntermediaryCount": { + "specializedIntermediaryCount": { "description": "Count of Specialized Intermediaries that are allowed to be managed.", "example": 15, "format": "int32", "type": "integer" }, - "SpecializedUserCount": { + "specializedUserCount": { "description": "Count of Specialized Users that are allowed to be managed.", "example": 15, "format": "int32", "type": "integer" }, - "TenantId": { + "tenantId": { "description": "Tenant that this license entitlement is valid for.", "example": "a2a1698d-a3e0-42d3-96a4-47eb3e8f7dd1", "format": "uuid", @@ -474,94 +474,94 @@ } }, "required": [ - "EnterpriseDeviceCount", - "EnterpriseInterfaceCount", - "EnterpriseIntermediaryCount", - "EnterpriseUserCount", - "NotValidAfter", - "NotValidBefore", - "PrivilegedDeviceCount", - "PrivilegedInterfaceCount", - "PrivilegedIntermediaryCount", - "PrivilegedUserCount", - "SpecializedDeviceCount", - "SpecializedInterfaceCount", - "SpecializedIntermediaryCount", - "SpecializedUserCount", - "TenantId" + "enterpriseDeviceCount", + "enterpriseInterfaceCount", + "enterpriseIntermediaryCount", + "enterpriseUserCount", + "notValidAfter", + "notValidBefore", + "privilegedDeviceCount", + "privilegedInterfaceCount", + "privilegedIntermediaryCount", + "privilegedUserCount", + "specializedDeviceCount", + "specializedInterfaceCount", + "specializedIntermediaryCount", + "specializedUserCount", + "tenantId" ], "title": "License Entitlement - SHIELD Record", "type": "object" }, "LicenseEntitlement.Shield.Count": { "properties": { - "EnterpriseDeviceCount": { + "enterpriseDeviceCount": { "description": "Count of Enterprise Devices that are allowed to be managed.", "example": 5, "format": "int32", "type": "integer" }, - "EnterpriseInterfaceCount": { + "enterpriseInterfaceCount": { "description": "Count of Enterprise Interfaces that are allowed to be managed.", "example": 6, "format": "int32", "type": "integer" }, - "EnterpriseIntermediaryCount": { + "enterpriseIntermediaryCount": { "description": "Count of Enterprise Intermediaries that are allowed to be managed.", "example": 7, "format": "int32", "type": "integer" }, - "EnterpriseUserCount": { + "enterpriseUserCount": { "description": "Count of Enterprise Users that are allowed to be managed.", "example": 8, "format": "int32", "type": "integer" }, - "PrivilegedDeviceCount": { + "privilegedDeviceCount": { "description": "Count of Privileged Devices (PAW) that are allowed to be managed.", "example": 9, "format": "int32", "type": "integer" }, - "PrivilegedInterfaceCount": { + "privilegedInterfaceCount": { "description": "Count of Privileged Interfaces that are allowed to be managed.", "example": 10, "format": "int32", "type": "integer" }, - "PrivilegedIntermediaryCount": { + "privilegedIntermediaryCount": { "description": "Count of Privileged Intermediaries that are allowed to be managed.", "example": 11, "format": "int32", "type": "integer" }, - "PrivilegedUserCount": { + "privilegedUserCount": { "description": "Count of Privileged Users that are allowed to be managed.", "example": 12, "format": "int32", "type": "integer" }, - "SpecializedDeviceCount": { + "specializedDeviceCount": { "description": "Count of Specialized Devices that are allowed to be managed.", "example": 13, "format": "int32", "type": "integer" }, - "SpecializedInterfaceCount": { + "specializedInterfaceCount": { "description": "Count of Specialized Interfaces that are allowed to be managed.", "example": 14, "format": "int32", "type": "integer" }, - "SpecializedIntermediaryCount": { + "specializedIntermediaryCount": { "description": "Count of Specialized Intermediaries that are allowed to be managed.", "example": 15, "format": "int32", "type": "integer" }, - "SpecializedUserCount": { + "specializedUserCount": { "description": "Count of Specialized Users that are allowed to be managed.", "example": 15, "format": "int32", @@ -569,116 +569,116 @@ } }, "required": [ - "EnterpriseDeviceCount", - "EnterpriseInterfaceCount", - "EnterpriseIntermediaryCount", - "EnterpriseUserCount", - "PrivilegedDeviceCount", - "PrivilegedInterfaceCount", - "PrivilegedIntermediaryCount", - "PrivilegedUserCount", - "SpecializedDeviceCount", - "SpecializedInterfaceCount", - "SpecializedIntermediaryCount", - "SpecializedUserCount" + "enterpriseDeviceCount", + "enterpriseInterfaceCount", + "enterpriseIntermediaryCount", + "enterpriseUserCount", + "privilegedDeviceCount", + "privilegedInterfaceCount", + "privilegedIntermediaryCount", + "privilegedUserCount", + "specializedDeviceCount", + "specializedInterfaceCount", + "specializedIntermediaryCount", + "specializedUserCount" ], "title": "License Entitlement - Active SHIELD Count", "type": "object" }, "Telemetry.Shield": { "properties": { - "CorrelationId": { + "correlationId": { "description": "Primary key for the table, used to correlate multiple telemetry records together.", "format": "uuid", "type": "string" }, - "EnterpriseDeviceCount": { + "enterpriseDeviceCount": { "description": "Count of Enterprise Devices that are deployed in the CX environment.", "type": "integer", "minimum": 0 }, - "EnterpriseInterfaceCount": { + "enterpriseInterfaceCount": { "description": "Number of active Enterprise interfaces.", "type": "integer", "minimum": 0 }, - "EnterpriseIntermediaryCount": { + "enterpriseIntermediaryCount": { "description": "Number of active Enterprise intermediaries.", "type": "integer", "minimum": 0 }, - "EnterpriseUserCount": { + "enterpriseUserCount": { "description": "Count of Enterprise Users that are deployed in the CX environment.", "type": "integer", "minimum": 0 }, - "MonthlyActiveEntUsers": { + "monthlyActiveEntUsers": { "description": "Number of active managed Enterprise users.", "type": "integer", "minimum": 0 }, - "MonthlyActivePrivUsers": { + "monthlyActivePrivUsers": { "description": "Number of active managed privileged users.", "type": "integer", "minimum": 0 }, - "MonthlyActiveSpecUsers": { + "monthlyActiveSpecUsers": { "description": "Number of active managed Specialized users.", "type": "integer", "minimum": 0 }, - "PrivilegedDeviceCount": { + "privilegedDeviceCount": { "description": "Count of Privileged Devices (PAW) that are deployed in the CX environment.", "type": "integer", "minimum": 0 }, - "PrivilegedInterfaceCount": { + "privilegedInterfaceCount": { "description": "Number of active Privileged interfaces.", "type": "integer", "minimum": 0 }, - "PrivilegedIntermediaryCount": { + "privilegedIntermediaryCount": { "description": "Number of active Privileged intermediaries.", "type": "integer", "minimum": 0 }, - "PrivilegedUserCount": { + "privilegedUserCount": { "description": "Count of Privileged Users that are deployed in the CX environment.", "type": "integer", "minimum": 0 }, - "ShieldArchitectureVersion": { + "shieldArchitectureVersion": { "description": "Version number of the architecture that is deployed.", "example": "27", "type": "string", "minimum": 1 }, - "ShieldCoreVersion": { + "shieldCoreVersion": { "description": "Version number of the product that the product is running.", "example": "2.5.6", "type": "string" }, - "SpecializedDeviceCount": { + "specializedDeviceCount": { "description": "Count of Specialized Devices that are deployed in the CX environment.", "type": "integer", "minimum": 0 }, - "SpecializedInterfaceCount": { + "specializedInterfaceCount": { "description": "Number of active Specialized interfaces.", "type": "integer", "minimum": 0 }, - "SpecializedIntermediaryCount": { + "specializedIntermediaryCount": { "description": "Number of active Specialized intermediaries.", "type": "integer", "minimum": 0 }, - "SpecializedUserCount": { + "specializedUserCount": { "description": "Count of Specialized Users that are deployed in the CX environment.", "type": "integer", "minimum": 0 }, - "TenantId": { + "tenantId": { "description": "Tenant ID for the CX in question.", "example": "5ae80362-6fe8-4ab1-9b6d-8dfa99d91657", "type": "string" @@ -697,23 +697,23 @@ } }, "required": [ - "EnterpriseDeviceCount", - "EnterpriseInterfaceCount", - "EnterpriseIntermediaryCount", - "EnterpriseUserCount", - "MonthlyActiveEntUsers", - "MonthlyActivePrivUsers", - "MonthlyActiveSpecUsers", - "PrivilegedDeviceCount", - "PrivilegedInterfaceCount", - "PrivilegedIntermediaryCount", - "PrivilegedUserCount", - "ShieldArchitectureVersion", - "ShieldCoreVersion", - "SpecializedDeviceCount", - "SpecializedInterfaceCount", - "SpecializedIntermediaryCount", - "SpecializedUserCount" + "enterpriseDeviceCount", + "enterpriseInterfaceCount", + "enterpriseIntermediaryCount", + "enterpriseUserCount", + "monthlyActiveEntUsers", + "monthlyActivePrivUsers", + "monthlyActiveSpecUsers", + "privilegedDeviceCount", + "privilegedInterfaceCount", + "privilegedIntermediaryCount", + "privilegedUserCount", + "shieldArchitectureVersion", + "shieldCoreVersion", + "specializedDeviceCount", + "specializedInterfaceCount", + "specializedIntermediaryCount", + "specializedUserCount" ], "title": "Application Telemetry - SHIELD", "type": "object" @@ -891,7 +891,7 @@ }, "description": "Collects data from the various SHI Lab products and makes it available in a standardized way.", "title": "SHI Data Gateway", - "version": "1.3.0" + "version": "2.0.4" }, "openapi": "3.0.0", "paths": { @@ -933,27 +933,27 @@ "description": "Sample, truncated report from an example customer environment.", "summary": "License Report", "value": { - "AvailableLicense": { + "availableLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": 123456, "5888a922-9f5b-45fd-bd5f-de3283d6a79e": 99999999, "a4b2e176-d63d-4081-9e21-226e2ac624b9": 5, "547404d4-8734-415f-a7ca-e9c1ffb95e48": 25, "d76878d6-1495-4243-a334-a82bb9818cd0": 500 }, - "Correlation": { - "AuditTenantAccount": "somebodyThatI@UsedToKnow.com" + "correlation": { + "auditTenantAccount": "somebodyThatI@UsedToKnow.com" }, - "LicenseData": { + "licenseData": { "250844e1-a7ab-4f21-8e3f-58f51b5983a3": { - "AssignedLicense": { + "assignedLicense": { "5888a922-9f5b-45fd-bd5f-de3283d6a79e": null, "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "e0d101e8-6f1e-40a9-a66f-cad4112c9a59": null, "c63b7a2d-6573-4c37-9ca8-e12b954d3198": { "Something Here": true, @@ -962,14 +962,14 @@ } }, "04e88835-771a-482b-9d6f-ba06c32cbb67": { - "AssignedLicense": { + "assignedLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "9d3603de-b378-4c4a-adcc-ee133cbef914": null, "e9a4e3d3-ebe0-405a-a8f4-35a04c4dba1f": { "Something Here": true, @@ -1001,30 +1001,30 @@ "description": "Sample, truncated report from an example customer environment.", "summary": "License Report", "value": { - "AvailableLicense": { + "availableLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": 123456, "5888a922-9f5b-45fd-bd5f-de3283d6a79e": 99999999, "a4b2e176-d63d-4081-9e21-226e2ac624b9": 5, "547404d4-8734-415f-a7ca-e9c1ffb95e48": 25, "d76878d6-1495-4243-a334-a82bb9818cd0": 500 }, - "Correlation": { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db" + "correlation": { + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db" }, - "LicenseData": { + "licenseData": { "250844e1-a7ab-4f21-8e3f-58f51b5983a3": { - "AssignedLicense": { + "assignedLicense": { "5888a922-9f5b-45fd-bd5f-de3283d6a79e": null, "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "e0d101e8-6f1e-40a9-a66f-cad4112c9a59": null, "c63b7a2d-6573-4c37-9ca8-e12b954d3198": { "Something Here": true, @@ -1033,14 +1033,14 @@ } }, "04e88835-771a-482b-9d6f-ba06c32cbb67": { - "AssignedLicense": { + "assignedLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "9d3603de-b378-4c4a-adcc-ee133cbef914": null, "e9a4e3d3-ebe0-405a-a8f4-35a04c4dba1f": { "Something Here": true, @@ -1089,18 +1089,18 @@ "summary": "Available Correlation Records", "value": [ { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", "createdAt": "2024-08-01T21:14:45.026Z", "updatedAt": "2024-08-01T21:14:45.026Z" }, { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "d8095827-a313-40e1-b086-f72636de0edf", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "d8095827-a313-40e1-b086-f72636de0edf", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", "createdAt": "2024-07-25T21:14:45.026Z", "updatedAt": "2024-07-25T21:14:45.026Z" } @@ -1150,18 +1150,18 @@ "summary": "Available Correlation Records", "value": [ { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", "createdAt": "2024-08-01T21:14:45.026Z", "updatedAt": "2024-08-01T21:14:45.026Z" }, { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "d8095827-a313-40e1-b086-f72636de0edf", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "d8095827-a313-40e1-b086-f72636de0edf", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", "createdAt": "2024-07-25T21:14:45.026Z", "updatedAt": "2024-07-25T21:14:45.026Z" } @@ -1213,30 +1213,30 @@ "description": "Sample, truncated report from an example customer environment.", "summary": "License Report", "value": { - "AvailableLicense": { + "availableLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": 123456, "5888a922-9f5b-45fd-bd5f-de3283d6a79e": 99999999, "a4b2e176-d63d-4081-9e21-226e2ac624b9": 5, "547404d4-8734-415f-a7ca-e9c1ffb95e48": 25, "d76878d6-1495-4243-a334-a82bb9818cd0": 500 }, - "Correlation": { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db" + "correlation": { + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db" }, - "LicenseData": { + "licenseData": { "250844e1-a7ab-4f21-8e3f-58f51b5983a3": { - "AssignedLicense": { + "assignedLicense": { "5888a922-9f5b-45fd-bd5f-de3283d6a79e": null, "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "e0d101e8-6f1e-40a9-a66f-cad4112c9a59": null, "c63b7a2d-6573-4c37-9ca8-e12b954d3198": { "Something Here": true, @@ -1245,14 +1245,14 @@ } }, "04e88835-771a-482b-9d6f-ba06c32cbb67": { - "AssignedLicense": { + "assignedLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "9d3603de-b378-4c4a-adcc-ee133cbef914": null, "e9a4e3d3-ebe0-405a-a8f4-35a04c4dba1f": { "Something Here": true, @@ -1308,30 +1308,30 @@ "description": "Sample, truncated report from an example customer environment.", "summary": "License Report", "value": { - "AvailableLicense": { + "availableLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": 123456, "5888a922-9f5b-45fd-bd5f-de3283d6a79e": 99999999, "a4b2e176-d63d-4081-9e21-226e2ac624b9": 5, "547404d4-8734-415f-a7ca-e9c1ffb95e48": 25, "d76878d6-1495-4243-a334-a82bb9818cd0": 500 }, - "Correlation": { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db" + "correlation": { + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db" }, - "LicenseData": { + "licenseData": { "250844e1-a7ab-4f21-8e3f-58f51b5983a3": { - "AssignedLicense": { + "assignedLicense": { "5888a922-9f5b-45fd-bd5f-de3283d6a79e": null, "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "e0d101e8-6f1e-40a9-a66f-cad4112c9a59": null, "c63b7a2d-6573-4c37-9ca8-e12b954d3198": { "Something Here": true, @@ -1340,14 +1340,14 @@ } }, "04e88835-771a-482b-9d6f-ba06c32cbb67": { - "AssignedLicense": { + "assignedLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "9d3603de-b378-4c4a-adcc-ee133cbef914": null, "e9a4e3d3-ebe0-405a-a8f4-35a04c4dba1f": { "Something Here": true, @@ -1424,44 +1424,44 @@ "description": "Add-on purchase for the specified customer for some additional specialized licenses.", "summary": "Specialized Purchase", "value": { - "EnterpriseDeviceCount": 0, - "EnterpriseInterfaceCount": 0, - "EnterpriseIntermediaryCount": 0, - "EnterpriseUserCount": 0, - "NotValidAfter": "2024-07-30T18:09:05.970Z", - "NotValidBefore": "1970-01-01T00:00:00.000Z", - "PrivilegedDeviceCount": 0, - "PrivilegedInterfaceCount": 0, - "PrivilegedIntermediaryCount": 0, - "PrivilegedUserCount": 0, - "PurchaseId": "ABC123", - "SpecializedDeviceCount": 50, - "SpecializedInterfaceCount": 3, - "SpecializedIntermediaryCount": 1, - "SpecializedUserCount": 50, - "TenantId": "4b00fb78-d291-4dbd-8c0a-c93ae20bffd1" + "enterpriseDeviceCount": 0, + "enterpriseInterfaceCount": 0, + "enterpriseIntermediaryCount": 0, + "enterpriseUserCount": 0, + "notValidAfter": "2024-07-30T18:09:05.970Z", + "notValidBefore": "1970-01-01T00:00:00.000Z", + "privilegedDeviceCount": 0, + "privilegedInterfaceCount": 0, + "privilegedIntermediaryCount": 0, + "privilegedUserCount": 0, + "purchaseId": "ABC123", + "specializedDeviceCount": 50, + "specializedInterfaceCount": 3, + "specializedIntermediaryCount": 1, + "specializedUserCount": 50, + "tenantId": "4b00fb78-d291-4dbd-8c0a-c93ae20bffd1" } }, "Initial Purchase": { "description": "Complete suite of components purchased for the specified customer.", "summary": "Initial Purchase", "value": { - "EnterpriseDeviceCount": 7000, - "EnterpriseInterfaceCount": 500, - "EnterpriseIntermediaryCount": 10, - "EnterpriseUserCount": 7000, - "NotValidAfter": "2024-07-30T18:12:23.049Z", - "NotValidBefore": "1970-01-01T00:00:00.000Z", - "PrivilegedDeviceCount": 200, - "PrivilegedInterfaceCount": 50, - "PrivilegedIntermediaryCount": 3, - "PrivilegedUserCount": 200, - "PurchaseId": "654DEF", - "SpecializedDeviceCount": 1000, - "SpecializedInterfaceCount": 11, - "SpecializedIntermediaryCount": 2, - "SpecializedUserCount": 1000, - "TenantId": "58ffb93f-5098-4630-bfc4-eeb4664208b4" + "enterpriseDeviceCount": 7000, + "enterpriseInterfaceCount": 500, + "enterpriseIntermediaryCount": 10, + "enterpriseUserCount": 7000, + "notValidAfter": "2024-07-30T18:12:23.049Z", + "notValidBefore": "1970-01-01T00:00:00.000Z", + "privilegedDeviceCount": 200, + "privilegedInterfaceCount": 50, + "privilegedIntermediaryCount": 3, + "privilegedUserCount": 200, + "purchaseId": "654DEF", + "specializedDeviceCount": 1000, + "specializedInterfaceCount": 11, + "specializedIntermediaryCount": 2, + "specializedUserCount": 1000, + "tenantId": "58ffb93f-5098-4630-bfc4-eeb4664208b4" } }, "Ignorant Entitlement Creation Request": { @@ -1485,46 +1485,46 @@ "description": "Example license entitlement for a small MSP.", "summary": "Local MSP", "value": { - "CorrelationId": "60594489-6022-4ddb-8aa5-288c8d356cf2", - "EnterpriseDeviceCount": 25, - "EnterpriseInterfaceCount": 25, - "EnterpriseIntermediaryCount": 25, - "EnterpriseUserCount": 25, - "NotValidAfter": "2024-07-30T17:56:00.704Z", - "NotValidBefore": "1970-01-01T00:00:00.000Z", - "PrivilegedDeviceCount": 10, - "PrivilegedInterfaceCount": 10, - "PrivilegedIntermediaryCount": 2, - "PrivilegedUserCount": 10, - "PurchaseId": "Bob's your mother's brother.", - "SpecializedDeviceCount": 5, - "SpecializedInterfaceCount": 5, - "SpecializedIntermediaryCount": 0, - "SpecializedUserCount": 5, - "TenantId": "1948adeb-797f-466b-962d-cc708a69d08d" + "correlationId": "60594489-6022-4ddb-8aa5-288c8d356cf2", + "enterpriseDeviceCount": 25, + "enterpriseInterfaceCount": 25, + "enterpriseIntermediaryCount": 25, + "enterpriseUserCount": 25, + "notValidAfter": "2024-07-30T17:56:00.704Z", + "notValidBefore": "1970-01-01T00:00:00.000Z", + "privilegedDeviceCount": 10, + "privilegedInterfaceCount": 10, + "privilegedIntermediaryCount": 2, + "privilegedUserCount": 10, + "purchaseId": "Bob's your mother's brother.", + "specializedDeviceCount": 5, + "specializedInterfaceCount": 5, + "specializedIntermediaryCount": 0, + "specializedUserCount": 5, + "tenantId": "1948adeb-797f-466b-962d-cc708a69d08d" } }, "Enterprise": { "description": "Example license entitlement for an enterprise sized company.", "summary": "Enterprise", "value": { - "CorrelationId": "46569e8d-eeaa-42f4-b954-05a998108eee", - "EnterpriseDeviceCount": 50000, - "EnterpriseInterfaceCount": 50000, - "EnterpriseIntermediaryCount": 100, - "EnterpriseUserCount": 50000, - "NotValidAfter": "2024-07-30T17:58:54.619Z", - "NotValidBefore": "1970-01-01T00:00:00.000Z", - "PrivilegedDeviceCount": 300, - "PrivilegedInterfaceCount": 100, - "PrivilegedIntermediaryCount": 50, - "PrivilegedUserCount": 300, - "PurchaseId": "Bob's your mother's brother.", - "SpecializedDeviceCount": 1000, - "SpecializedInterfaceCount": 5, - "SpecializedIntermediaryCount": 10, - "SpecializedUserCount": 1000, - "TenantId": "bf78263c-6cec-44bc-9893-024dde25a486" + "correlationId": "46569e8d-eeaa-42f4-b954-05a998108eee", + "enterpriseDeviceCount": 50000, + "enterpriseInterfaceCount": 50000, + "enterpriseIntermediaryCount": 100, + "enterpriseUserCount": 50000, + "notValidAfter": "2024-07-30T17:58:54.619Z", + "notValidBefore": "1970-01-01T00:00:00.000Z", + "privilegedDeviceCount": 300, + "privilegedInterfaceCount": 100, + "privilegedIntermediaryCount": 50, + "privilegedUserCount": 300, + "purchaseId": "Bob's your mother's brother.", + "specializedDeviceCount": 1000, + "specializedInterfaceCount": 5, + "specializedIntermediaryCount": 10, + "specializedUserCount": 1000, + "tenantId": "bf78263c-6cec-44bc-9893-024dde25a486" } } }, @@ -1561,54 +1561,54 @@ "description": "Example active license count for a small MSP.", "summary": "Local MSP", "value": { - "EnterpriseDeviceCount": 54, - "EnterpriseInterfaceCount": 46, - "EnterpriseIntermediaryCount": 2, - "EnterpriseUserCount": 54, - "PrivilegedDeviceCount": 12, - "PrivilegedInterfaceCount": 52, - "PrivilegedIntermediaryCount": 4, - "PrivilegedUserCount": 12, - "SpecializedDeviceCount": 20, - "SpecializedInterfaceCount": 15, - "SpecializedIntermediaryCount": 0, - "SpecializedUserCount": 20 + "enterpriseDeviceCount": 54, + "enterpriseInterfaceCount": 46, + "enterpriseIntermediaryCount": 2, + "enterpriseUserCount": 54, + "privilegedDeviceCount": 12, + "privilegedInterfaceCount": 52, + "privilegedIntermediaryCount": 4, + "privilegedUserCount": 12, + "specializedDeviceCount": 20, + "specializedInterfaceCount": 15, + "specializedIntermediaryCount": 0, + "specializedUserCount": 20 } }, "No Licenses": { "description": "Example license count for a company that doesn't have any licenses.", "summary": "No License", "value": { - "EnterpriseDeviceCount": 0, - "EnterpriseInterfaceCount": 0, - "EnterpriseIntermediaryCount": 0, - "EnterpriseUserCount": 0, - "PrivilegedDeviceCount": 0, - "PrivilegedInterfaceCount": 0, - "PrivilegedIntermediaryCount": 0, - "PrivilegedUserCount": 0, - "SpecializedDeviceCount": 0, - "SpecializedInterfaceCount": 0, - "SpecializedIntermediaryCount": 0, - "SpecializedUserCount": 0 + "enterpriseDeviceCount": 0, + "enterpriseInterfaceCount": 0, + "enterpriseIntermediaryCount": 0, + "enterpriseUserCount": 0, + "privilegedDeviceCount": 0, + "privilegedInterfaceCount": 0, + "privilegedIntermediaryCount": 0, + "privilegedUserCount": 0, + "specializedDeviceCount": 0, + "specializedInterfaceCount": 0, + "specializedIntermediaryCount": 0, + "specializedUserCount": 0 } }, "Enterprise": { "description": "Example active license count for an enterprise sized company.", "summary": "Enterprise", "value": { - "EnterpriseDeviceCount": 60000, - "EnterpriseInterfaceCount": 500, - "EnterpriseIntermediaryCount": 20, - "EnterpriseUserCount": 60000, - "PrivilegedDeviceCount": 200, - "PrivilegedInterfaceCount": 450, - "PrivilegedIntermediaryCount": 15, - "PrivilegedUserCount": 200, - "SpecializedDeviceCount": 1000, - "SpecializedInterfaceCount": 50, - "SpecializedIntermediaryCount": 2, - "SpecializedUserCount": 1000 + "enterpriseDeviceCount": 60000, + "enterpriseInterfaceCount": 500, + "enterpriseIntermediaryCount": 20, + "enterpriseUserCount": 60000, + "privilegedDeviceCount": 200, + "privilegedInterfaceCount": 450, + "privilegedIntermediaryCount": 15, + "privilegedUserCount": 200, + "specializedDeviceCount": 1000, + "specializedInterfaceCount": 50, + "specializedIntermediaryCount": 2, + "specializedUserCount": 1000 } } }, @@ -1716,23 +1716,23 @@ "description": "Example monthly telemetry report for an enterprise organization.", "summary": "Monthly Report", "value": { - "EnterpriseDeviceCount": 64221, - "EnterpriseInterfaceCount": 523, - "EnterpriseIntermediaryCount": 44, - "EnterpriseUserCount": 642219, - "MonthlyActiveEntUsers": 0, - "MonthlyActivePrivUsers": 0, - "MonthlyActiveSpecUsers": 0, - "PrivilegedDeviceCount": 50, - "PrivilegedInterfaceCount": 2000, - "PrivilegedIntermediaryCount": 25, - "PrivilegedUserCount": 50, - "ShieldArchitectureVersion": "2", - "ShieldCoreVersion": "3.0.0", - "SpecializedDeviceCount": 0, - "SpecializedInterfaceCount": 612, - "SpecializedIntermediaryCount": 2, - "SpecializedUserCount": 5238 + "enterpriseDeviceCount": 64221, + "enterpriseInterfaceCount": 523, + "enterpriseIntermediaryCount": 44, + "enterpriseUserCount": 642219, + "monthlyActiveEntUsers": 0, + "monthlyActivePrivUsers": 0, + "monthlyActiveSpecUsers": 0, + "privilegedDeviceCount": 50, + "privilegedInterfaceCount": 2000, + "privilegedIntermediaryCount": 25, + "privilegedUserCount": 50, + "shieldArchitectureVersion": "2", + "shieldCoreVersion": "3.0.0", + "specializedDeviceCount": 0, + "specializedInterfaceCount": 612, + "specializedIntermediaryCount": 2, + "specializedUserCount": 5238 } } }, @@ -1751,25 +1751,25 @@ "description": "Example monthly telemetry report for an enterprise organization.", "summary": "Monthly Report", "value": { - "CorrelationId": "6fe3cd30-931c-439a-b759-1e7f3a73622e", - "EnterpriseDeviceCount": 64221, - "EnterpriseInterfaceCount": 523, - "EnterpriseIntermediaryCount": 44, - "EnterpriseUserCount": 642219, - "MonthlyActiveEntUsers": 0, - "MonthlyActivePrivUsers": 0, - "MonthlyActiveSpecUsers": 0, - "PrivilegedDeviceCount": 50, - "PrivilegedInterfaceCount": 2000, - "PrivilegedIntermediaryCount": 25, - "PrivilegedUserCount": 50, - "ShieldArchitectureVersion": "2", - "ShieldCoreVersion": "3.0.0", - "SpecializedDeviceCount": 0, - "SpecializedInterfaceCount": 612, - "SpecializedIntermediaryCount": 2, - "SpecializedUserCount": 5238, - "TenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", + "correlationId": "6fe3cd30-931c-439a-b759-1e7f3a73622e", + "enterpriseDeviceCount": 64221, + "enterpriseInterfaceCount": 523, + "enterpriseIntermediaryCount": 44, + "enterpriseUserCount": 642219, + "monthlyActiveEntUsers": 0, + "monthlyActivePrivUsers": 0, + "monthlyActiveSpecUsers": 0, + "privilegedDeviceCount": 50, + "privilegedInterfaceCount": 2000, + "privilegedIntermediaryCount": 25, + "privilegedUserCount": 50, + "shieldArchitectureVersion": "2", + "shieldCoreVersion": "3.0.0", + "specializedDeviceCount": 0, + "specializedInterfaceCount": 612, + "specializedIntermediaryCount": 2, + "specializedUserCount": 5238, + "tenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", "createdAt": "2024-08-05T15:25:55.525Z", "updatedAt": "2024-08-05T15:25:55.525Z" } @@ -1807,48 +1807,48 @@ "summary": "List of Reports", "value": [ { - "CorrelationId": "6fe3cd30-931c-439a-b759-1e7f3a73622e", - "EnterpriseDeviceCount": 64221, - "EnterpriseInterfaceCount": 523, - "EnterpriseIntermediaryCount": 44, - "EnterpriseUserCount": 642219, - "MonthlyActiveEntUsers": 0, - "MonthlyActivePrivUsers": 0, - "MonthlyActiveSpecUsers": 0, - "PrivilegedDeviceCount": 50, - "PrivilegedInterfaceCount": 2000, - "PrivilegedIntermediaryCount": 25, - "PrivilegedUserCount": 50, - "ShieldArchitectureVersion": "2", - "ShieldCoreVersion": "3.0.0", - "SpecializedDeviceCount": 0, - "SpecializedInterfaceCount": 612, - "SpecializedIntermediaryCount": 2, - "SpecializedUserCount": 5238, - "TenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", + "correlationId": "6fe3cd30-931c-439a-b759-1e7f3a73622e", + "enterpriseDeviceCount": 64221, + "enterpriseInterfaceCount": 523, + "enterpriseIntermediaryCount": 44, + "enterpriseUserCount": 642219, + "monthlyActiveEntUsers": 0, + "monthlyActivePrivUsers": 0, + "monthlyActiveSpecUsers": 0, + "privilegedDeviceCount": 50, + "privilegedInterfaceCount": 2000, + "privilegedIntermediaryCount": 25, + "privilegedUserCount": 50, + "shieldArchitectureVersion": "2", + "shieldCoreVersion": "3.0.0", + "specializedDeviceCount": 0, + "specializedInterfaceCount": 612, + "specializedIntermediaryCount": 2, + "specializedUserCount": 5238, + "tenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", "createdAt": "2024-08-05T15:25:55.525Z", "updatedAt": "2024-08-05T15:25:55.525Z" }, { - "CorrelationId": "a57d03c6-8218-4738-b860-ac158e257e27", - "EnterpriseDeviceCount": 63221, - "EnterpriseInterfaceCount": 523, - "EnterpriseIntermediaryCount": 44, - "EnterpriseUserCount": 632219, - "MonthlyActiveEntUsers": 0, - "MonthlyActivePrivUsers": 0, - "MonthlyActiveSpecUsers": 0, - "PrivilegedDeviceCount": 50, - "PrivilegedInterfaceCount": 2000, - "PrivilegedIntermediaryCount": 25, - "PrivilegedUserCount": 50, - "ShieldArchitectureVersion": "2", - "ShieldCoreVersion": "3.0.0", - "SpecializedDeviceCount": 0, - "SpecializedInterfaceCount": 612, - "SpecializedIntermediaryCount": 2, - "SpecializedUserCount": 5238, - "TenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", + "correlationId": "a57d03c6-8218-4738-b860-ac158e257e27", + "enterpriseDeviceCount": 63221, + "enterpriseInterfaceCount": 523, + "enterpriseIntermediaryCount": 44, + "enterpriseUserCount": 632219, + "monthlyActiveEntUsers": 0, + "monthlyActivePrivUsers": 0, + "monthlyActiveSpecUsers": 0, + "privilegedDeviceCount": 50, + "privilegedInterfaceCount": 2000, + "privilegedIntermediaryCount": 25, + "privilegedUserCount": 50, + "shieldArchitectureVersion": "2", + "shieldCoreVersion": "3.0.0", + "specializedDeviceCount": 0, + "specializedInterfaceCount": 612, + "specializedIntermediaryCount": 2, + "specializedUserCount": 5238, + "tenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", "createdAt": "2024-07-05T15:25:55.525Z", "updatedAt": "2024-07-05T15:25:55.525Z" } @@ -1898,48 +1898,48 @@ "summary": "List of Reports", "value": [ { - "CorrelationId": "6fe3cd30-931c-439a-b759-1e7f3a73622e", - "EnterpriseDeviceCount": 64221, - "EnterpriseInterfaceCount": 523, - "EnterpriseIntermediaryCount": 44, - "EnterpriseUserCount": 642219, - "MonthlyActiveEntUsers": 0, - "MonthlyActivePrivUsers": 0, - "MonthlyActiveSpecUsers": 0, - "PrivilegedDeviceCount": 50, - "PrivilegedInterfaceCount": 2000, - "PrivilegedIntermediaryCount": 25, - "PrivilegedUserCount": 50, - "ShieldArchitectureVersion": "2", - "ShieldCoreVersion": "3.0.0", - "SpecializedDeviceCount": 0, - "SpecializedInterfaceCount": 612, - "SpecializedIntermediaryCount": 2, - "SpecializedUserCount": 5238, - "TenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", + "correlationId": "6fe3cd30-931c-439a-b759-1e7f3a73622e", + "enterpriseDeviceCount": 64221, + "enterpriseInterfaceCount": 523, + "enterpriseIntermediaryCount": 44, + "enterpriseUserCount": 642219, + "monthlyActiveEntUsers": 0, + "monthlyActivePrivUsers": 0, + "monthlyActiveSpecUsers": 0, + "privilegedDeviceCount": 50, + "privilegedInterfaceCount": 2000, + "privilegedIntermediaryCount": 25, + "privilegedUserCount": 50, + "shieldArchitectureVersion": "2", + "shieldCoreVersion": "3.0.0", + "specializedDeviceCount": 0, + "specializedInterfaceCount": 612, + "specializedIntermediaryCount": 2, + "specializedUserCount": 5238, + "tenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", "createdAt": "2024-08-05T15:25:55.525Z", "updatedAt": "2024-08-05T15:25:55.525Z" }, { - "CorrelationId": "a57d03c6-8218-4738-b860-ac158e257e27", - "EnterpriseDeviceCount": 63221, - "EnterpriseInterfaceCount": 523, - "EnterpriseIntermediaryCount": 44, - "EnterpriseUserCount": 632219, - "MonthlyActiveEntUsers": 0, - "MonthlyActivePrivUsers": 0, - "MonthlyActiveSpecUsers": 0, - "PrivilegedDeviceCount": 50, - "PrivilegedInterfaceCount": 2000, - "PrivilegedIntermediaryCount": 25, - "PrivilegedUserCount": 50, - "ShieldArchitectureVersion": "2", - "ShieldCoreVersion": "3.0.0", - "SpecializedDeviceCount": 0, - "SpecializedInterfaceCount": 612, - "SpecializedIntermediaryCount": 2, - "SpecializedUserCount": 5238, - "TenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", + "correlationId": "a57d03c6-8218-4738-b860-ac158e257e27", + "enterpriseDeviceCount": 63221, + "enterpriseInterfaceCount": 523, + "enterpriseIntermediaryCount": 44, + "enterpriseUserCount": 632219, + "monthlyActiveEntUsers": 0, + "monthlyActivePrivUsers": 0, + "monthlyActiveSpecUsers": 0, + "privilegedDeviceCount": 50, + "privilegedInterfaceCount": 2000, + "privilegedIntermediaryCount": 25, + "privilegedUserCount": 50, + "shieldArchitectureVersion": "2", + "shieldCoreVersion": "3.0.0", + "specializedDeviceCount": 0, + "specializedInterfaceCount": 612, + "specializedIntermediaryCount": 2, + "specializedUserCount": 5238, + "tenantId": "46759f55-fb42-49e3-83ab-93de2a39bc1d", "createdAt": "2024-07-05T15:25:55.525Z", "updatedAt": "2024-07-05T15:25:55.525Z" } diff --git a/specs/SHIELD.json b/specs/SHIELD.json index 76d186c..1acf584 100644 --- a/specs/SHIELD.json +++ b/specs/SHIELD.json @@ -156,27 +156,27 @@ "title": "Core - System Requirements", "description": "Collection of indicators that notify the caller if the system requirements have been met for various sub components to operate.", "properties": { - "AzurePermissions": { + "azurePermissions": { "description": "Flag that indicates if the required Azure RBAC assignment(s) are present or not.", "type": "boolean", "example": true }, - "DefendEntitlement": { + "defendEntitlement": { "description": "Flag that indicates if the required defend licenses are present or not.", "type": "boolean", "example": false }, - "DiscoverEntitlement": { + "discoverEntitlement": { "description": "Flag that indicates if the required discover licenses are present or not.", "type": "boolean", "example": true }, - "EntraPermissions": { + "entraPermissions": { "description": "Flag that indicates if the required Entra ID Role assignment(s) are present or not.", "type": "boolean", "example": true }, - "ServicePlans": { + "servicePlans": { "description": "Flag that indicates if the required M365 licenses are present or not.", "type": "boolean", "example": false @@ -184,11 +184,11 @@ }, "type": "object", "required": [ - "AzurePermissions", - "DefendEntitlement", - "DiscoverEntitlement", - "EntraPermissions", - "ServicePlans" + "azurePermissions", + "defendEntitlement", + "discoverEntitlement", + "entraPermissions", + "servicePlans" ] }, "Authenticator.RequestStatus": { @@ -227,7 +227,10 @@ "description": "Audience ID of the access token that is being requested.", "type": "string", "format": "uuid", - "example": "00000002-0000-0000-c000-000000000000" + "maxLength": 36, + "minLength": 36, + "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$", + "example": "00000002-0000-0000-b000-000000000000" } }, "type": "object", @@ -410,34 +413,34 @@ "LicenseReport.CorrelationRecord": { "description": "Metadata that describes the execution session (run) that is used to tie/relate all of the license report together.", "example": { - "AuditTenantAccount": "priv-user@example.com", - "CorrelationId": "9d838115-0868-45d4-b8a5-98adc1af7e42", - "ReportTenantAccount": "ent-user@example.com", - "TenantId": "7e536189-b2dd-4c8b-98b1-9b174777883f", + "auditTenantAccount": "priv-user@example.com", + "correlationId": "9d838115-0868-45d4-b8a5-98adc1af7e42", + "reportTenantAccount": "ent-user@example.com", + "tenantId": "7e536189-b2dd-4c8b-98b1-9b174777883f", "createdAt": "2024-08-01T21:13:12.821Z", "updatedAt": "2024-08-01T21:13:12.821Z" }, "properties": { - "AuditTenantAccount": { + "aditTenantAccount": { "description": "The user account used to retrieve the license information in the tenant being audited.", "example": "admin-user@example.com", "format": "email", "type": "string" }, - "CorrelationId": { + "correlationId": { "description": "The ID of the execution session (run) that is used to tie/relate all of the data together.", "example": "88da2253-758f-4135-9d37-64448c8b65c1", "format": "uuid", "type": "string", "pattern": "^\\w+-\\w+-\\w+-\\w+-\\w+$" }, - "ReportTenantAccount": { + "reportTenantAccount": { "description": "User account used to store/report the license report to the SHI Lab cloud service.", "example": "generic-user@example.com", "format": "email", "type": "string" }, - "TenantId": { + "tenantId": { "description": "Unique ID of customer's Microsoft tenant that the license report is for.", "example": "0e1fe83f-a33f-4250-8546-225b8d45ae01", "format": "uuid", @@ -458,7 +461,7 @@ } }, "required": [ - "AuditTenantAccount" + "auditTenantAccount" ], "title": "License Report - Correlation Record", "type": "object" @@ -466,7 +469,7 @@ "LicenseReport.LicenseData": { "type": "object", "properties": { - "AssignedLicense": { + "assignedLicense": { "additionalProperties": { "type": "integer", "nullable": true @@ -474,7 +477,7 @@ "description": "License assignment on the specified principal.", "type": "object" }, - "AssignedService": { + "assignedService": { "additionalProperties": { "oneOf": [ { @@ -490,7 +493,7 @@ "description": "Service configuration assignment. This is used to record the set of principals that are \"benefiting\" from the service, regardless of license status.", "type": "object" }, - "ConsumedService": { + "consumedService": { "additionalProperties": { "oneOf": [ { @@ -508,18 +511,18 @@ } }, "required": [ - "AssignedLicense", - "AssignedService", - "ConsumedService" + "assignedLicense", + "assignedService", + "consumedService" ], "description": "Collection of principals that have had their in-use licenses and assigned licenses. Where the key is the principal ID and the value is the insights.", "example": { - "AssignedLicense": { + "assignedLicense": { "eec0eb4f-6444-4f95-aba0-50c24d67f998": null, "41781fb2-bc02-4b7c-bd55-b576c07bb09d": null, "7159f980-6f83-4b67-bf41-e172b3ae1352": null }, - "AssignedService": { + "assignedService": { "eec0eb4f-6444-4f95-aba0-50c24d67f998": { "Conditional Access": false, "Access Review": true, @@ -537,7 +540,7 @@ }, "6511755b-c27d-4c66-a59e-b835e6b54e7f": null }, - "ConsumedService": { + "consumedService": { "eec0eb4f-6444-4f95-aba0-50c24d67f998": { "Conditional Access": true, "Access Review": false, @@ -577,27 +580,27 @@ "LicenseReport": { "description": "Completely calculated license report structure that is the result of a complete run.", "example": { - "AvailableLicense": { + "availableLicense": { "e17b13ee-9749-488b-9289-d31a8fde045d": 123, "2d995b6a-d4aa-4d8d-a03c-372ecb66509d": 456, "cbf6ee7c-c3c1-44a6-9f18-020c65536470": 789 }, - "Correlation": { - "AuditTenantAccount": "admin-user@example.com", - "CorrelationId": "88da2253-758f-4135-9d37-64448c8b65c1", - "ReportTenantAccount": "generic-user@example.com", - "TenantId": "0e1fe83f-a33f-4250-8546-225b8d45ae01" + "correlation": { + "auditTenantAccount": "admin-user@example.com", + "correlationId": "88da2253-758f-4135-9d37-64448c8b65c1", + "reportTenantAccount": "generic-user@example.com", + "tenantId": "0e1fe83f-a33f-4250-8546-225b8d45ae01" }, - "LicenseData": { + "licenseData": { "250844e1-a7ab-4f21-8e3f-58f51b5983a3": { - "AssignedLicense": { + "assignedLicense": { "e17b13ee-9749-488b-9289-d31a8fde045d": null }, - "AssignedService": { + "assignedService": { "cbf6ee7c-c3c1-44a6-9f18-020c65536470": null, "c7bcba35-199c-41e5-8c8d-6d4e4aad8964": null }, - "ConsumedService": { + "consumedService": { "fe98c41a-d931-4f6f-a5bc-750ba7144a77": null, "0474bdf1-ee76-4aff-a65c-6f82e5e1d5a6": { "Something Here": true, @@ -609,7 +612,7 @@ }, "type": "object", "properties": { - "AvailableLicense": { + "availableLicense": { "additionalProperties": { "example": 1234, "type": "integer" @@ -622,19 +625,19 @@ "title": "License Report - Available Licenses", "type": "object" }, - "Correlation": { + "correlation": { "$ref": "#/components/schemas/LicenseReport.CorrelationRecord" }, - "LicenseData": { + "licenseData": { "additionalProperties": { "$ref": "#/components/schemas/LicenseReport.LicenseData" } } }, "required": [ - "AvailableLicense", - "Correlation", - "LicenseData" + "availableLicense", + "correlation", + "licenseData" ], "title": "License Report - Complete Object" }, @@ -1043,7 +1046,7 @@ }, "description": "Deprive your threats of practical significance. Deploy the Securing Privilege Access architecture. All in a few seconds.", "title": "SHI Environment Lockdown and Defense", - "version": "appVersionFromSettingsEngine" + "version": "3.0.0" }, "openapi": "3.0.0", "paths": { @@ -1444,18 +1447,18 @@ "summary": "Available Correlation Records", "value": [ { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", "createdAt": "2024-08-01T21:14:45.026Z", "updatedAt": "2024-08-01T21:14:45.026Z" }, { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "d8095827-a313-40e1-b086-f72636de0edf", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "d8095827-a313-40e1-b086-f72636de0edf", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db", "createdAt": "2024-07-25T21:14:45.026Z", "updatedAt": "2024-07-25T21:14:45.026Z" } @@ -1504,30 +1507,30 @@ "description": "Sample, truncated report from an example customer environment.", "summary": "License Report", "value": { - "AvailableLicense": { + "availableLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": 123456, "5888a922-9f5b-45fd-bd5f-de3283d6a79e": 99999999, "a4b2e176-d63d-4081-9e21-226e2ac624b9": 5, "547404d4-8734-415f-a7ca-e9c1ffb95e48": 25, "d76878d6-1495-4243-a334-a82bb9818cd0": 500 }, - "Correlation": { - "AuditTenantAccount": "somebodyThatI@example.com", - "CorrelationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", - "ReportTenantAccount": "usedToKnow@example.com", - "TenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db" + "correlation": { + "auditTenantAccount": "somebodyThatI@example.com", + "correlationId": "6d7c9271-9e68-4bdf-9ae3-f90c4213f74b", + "reportTenantAccount": "usedToKnow@example.com", + "tenantId": "3d6e7b7e-8d9a-4eb0-8753-67829b3934db" }, - "LicenseData": { + "licenseData": { "250844e1-a7ab-4f21-8e3f-58f51b5983a3": { - "AssignedLicense": { + "assignedLicense": { "5888a922-9f5b-45fd-bd5f-de3283d6a79e": null, "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "e0d101e8-6f1e-40a9-a66f-cad4112c9a59": null, "c63b7a2d-6573-4c37-9ca8-e12b954d3198": { "Something Here": true, @@ -1536,14 +1539,14 @@ } }, "04e88835-771a-482b-9d6f-ba06c32cbb67": { - "AssignedLicense": { + "assignedLicense": { "3d282045-ec7f-4813-88e2-29b74ee609f7": null }, - "AssignedService": { + "assignedService": { "a4b2e176-d63d-4081-9e21-226e2ac624b9": null, "d76878d6-1495-4243-a334-a82bb9818cd0": null }, - "ConsumedService": { + "consumedService": { "9d3603de-b378-4c4a-adcc-ee133cbef914": null, "e9a4e3d3-ebe0-405a-a8f4-35a04c4dba1f": { "Something Here": true, diff --git a/src/dataGateway/TypeScript/package-lock.json b/src/dataGateway/TypeScript/package-lock.json index 3f656d7..c4f180b 100644 --- a/src/dataGateway/TypeScript/package-lock.json +++ b/src/dataGateway/TypeScript/package-lock.json @@ -1,23 +1,23 @@ { "name": "@shi-corp/sdk-data-gateway", - "version": "1.0.5", + "version": "2.0.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@shi-corp/sdk-data-gateway", - "version": "1.0.5", + "version": "2.0.4", "license": "MIT", "dependencies": { - "@microsoft/kiota-authentication-azure": "~1.0.0-preview.92", - "@microsoft/kiota-bundle": "~1.0.0-preview.92", - "typia": "~8.1.1" + "@microsoft/kiota-authentication-azure": "~1.0.0-preview.93", + "@microsoft/kiota-bundle": "~1.0.0-preview.93", + "typia": "~9.1.1" }, "devDependencies": { "@azure/core-auth": "~1.9.0", - "@types/node": "~22.13.14", + "@types/node": "~22.14.1", "ts-patch": "~3.3.0", - "typescript": "~5.8.2" + "typescript": "~5.8.3" } }, "node_modules/@azure/abort-controller": { @@ -60,9 +60,9 @@ } }, "node_modules/@microsoft/kiota-abstractions": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-abstractions/-/kiota-abstractions-1.0.0-preview.92.tgz", - "integrity": "sha512-B0w9MJBaK/enLeXQR479YNx6uHs1I6Gfu3OszmI2JbRCfS6ON1oyAB6cWTK2cB1sUD8C3vHR3TgtQfZG2pC5Og==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-abstractions/-/kiota-abstractions-1.0.0-preview.93.tgz", + "integrity": "sha512-YLnzCStrEz7GG2Zch2RhnoEmF4LSOhsploJzarG1ZkcGvP7TCRRzTLQeMCWjSBFHw6RGb0t5CR7lIs0GY9j7cQ==", "license": "MIT", "dependencies": { "@opentelemetry/api": "^1.7.0", @@ -72,79 +72,79 @@ } }, "node_modules/@microsoft/kiota-authentication-azure": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-authentication-azure/-/kiota-authentication-azure-1.0.0-preview.92.tgz", - "integrity": "sha512-Hif7sfkdVE+gMpvAVeG5fCRUcNp6n+XYWIxu18ewzV1UMn9qygpIFVepcVnG7lAdetBvtddlGiAnwTFSqdSJdQ==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-authentication-azure/-/kiota-authentication-azure-1.0.0-preview.93.tgz", + "integrity": "sha512-VXPj5Cu4qvIjNSls8u6bLhGls8amBpYdAhOyi54yrPIAuY5j2E+pFbdKSIYPdTpJCZm8Y9mfHhITRqeplbCNmA==", "license": "MIT", "dependencies": { "@azure/core-auth": "^1.5.0", - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "@opentelemetry/api": "^1.7.0", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-bundle": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-bundle/-/kiota-bundle-1.0.0-preview.92.tgz", - "integrity": "sha512-BZI+gF05xMmY32oTLBbBO8vM7Zy/26dSaAqPnoxEJQombjB2LmxS/fnEhc84pHoeOsMKTFOTr9DpOzRJglhNsQ==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-bundle/-/kiota-bundle-1.0.0-preview.93.tgz", + "integrity": "sha512-85y4y3NNN7U9ldKcO2+qI603I10YSDcnyZpzqPv8Zg/f5ePMQKUXAafCN0ANyOObOuyTZONPC1Eebwo0Yg+hTA==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", - "@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.92", - "@microsoft/kiota-serialization-form": "^1.0.0-preview.92", - "@microsoft/kiota-serialization-json": "^1.0.0-preview.92", - "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.92", - "@microsoft/kiota-serialization-text": "^1.0.0-preview.92" + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", + "@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.93", + "@microsoft/kiota-serialization-form": "^1.0.0-preview.93", + "@microsoft/kiota-serialization-json": "^1.0.0-preview.93", + "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.93", + "@microsoft/kiota-serialization-text": "^1.0.0-preview.93" } }, "node_modules/@microsoft/kiota-http-fetchlibrary": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-http-fetchlibrary/-/kiota-http-fetchlibrary-1.0.0-preview.92.tgz", - "integrity": "sha512-EyU7hUOuDGyCrNeJ9qR9GkE7iEq54RkQ1vdbXxbOZdPogjQcNbZm6Pb5/yDiPwwMIuS3LXvVVVY3jJQwfXQtOA==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-http-fetchlibrary/-/kiota-http-fetchlibrary-1.0.0-preview.93.tgz", + "integrity": "sha512-2PKlUjfTQgKCkgWhxbGZLq2IIXupBzCWKg03ubpSdgvZqYjEOuZg2cojvTwDZmSbxZUY2Hb8o6kAtkOkRvjEEg==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "@opentelemetry/api": "^1.7.0", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-form": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-form/-/kiota-serialization-form-1.0.0-preview.92.tgz", - "integrity": "sha512-fW7gZOnld8a+nz6mJhWbCSC96XiTxD4nGnHYi1SmvK1uK2n74taCZ6g957Fitj+60nVQAFNJmHtvqd633y4XXg==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-form/-/kiota-serialization-form-1.0.0-preview.93.tgz", + "integrity": "sha512-0u+83t3V7XHEODHsIsIeKOw3QgGK9OhfsB0Ie+kWSGaS8u38H9/DJM9xGKV67TFLnCeiEBERadP9e4lez3rnmA==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-json": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-json/-/kiota-serialization-json-1.0.0-preview.92.tgz", - "integrity": "sha512-3wb08c2hnBQRmxJ6RFtiGbYEk1spWyzqKenXM1Agtg3XM3MSnpxwxXWfHFvmBGKG2TTxGWaOCCsQsiJmHiI4vA==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-json/-/kiota-serialization-json-1.0.0-preview.93.tgz", + "integrity": "sha512-UlndZZYKvqdv6jLE0o6FjceyugtDc1UISiKC9EEXUm/vg0skG/vrlEcrpsKpZs/eZeX8VjCHOqvHbF2aTvgqkQ==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-multipart": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-multipart/-/kiota-serialization-multipart-1.0.0-preview.92.tgz", - "integrity": "sha512-koIIAOX6gOP3vHA8s4HSq1T8CW8H5DM8+zgImI7887EDSUqo0rSFSWCVsIyQaQSgaFosxhYrdRkBrJGG2cndDw==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-multipart/-/kiota-serialization-multipart-1.0.0-preview.93.tgz", + "integrity": "sha512-DUDs4D4k3+RWNO89sO6RXX84WoWUKWFwojCK+PmQ0I/zJMXysX0ODvT8JOF3G1Nld7SVPnv5TjAkqLC911AnrQ==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-text": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-text/-/kiota-serialization-text-1.0.0-preview.92.tgz", - "integrity": "sha512-1FHYgw0ZyQX6Tv0Y5JmES1j+D8Tlk5r01xtq37zoAr7RcfEzoWzV9fvYhCXbleKbofE+ozJ70tp0667UdLkAKQ==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-text/-/kiota-serialization-text-1.0.0-preview.93.tgz", + "integrity": "sha512-dFV+dDTCQMQ87f0JGMqLDETsxmMtMuhXfTj9Fj0EwT9s2pCH0j8E4zY5rVm1pLbnjFq3rUUKfTTb+eGOI5Z0yQ==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "tslib": "^2.6.2" } }, @@ -158,9 +158,9 @@ } }, "node_modules/@samchon/openapi": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/@samchon/openapi/-/openapi-3.2.2.tgz", - "integrity": "sha512-ij6qrXDj+uF2Jvz/DPAAQ929QGxAF0dYBL4b+41Y2iogZ8YUR/us9lklFmHYxYKWr450TShWDMCu0jSywUsITQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@samchon/openapi/-/openapi-4.1.0.tgz", + "integrity": "sha512-UUFBI6n8R9+V0xt4scGEaQ0rib04cOVARhu7DXBZuEG0ExiTFPoiW49+qYFwE44LjYpfxBIlNkd+rcpiRGhsNA==", "license": "MIT" }, "node_modules/@std-uritemplate/std-uritemplate": { @@ -170,13 +170,13 @@ "license": "Apache-2.0" }, "node_modules/@types/node": { - "version": "22.13.14", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.14.tgz", - "integrity": "sha512-Zs/Ollc1SJ8nKUAgc7ivOEdIBM8JAKgrqqUYi2J997JuKO7/tpQC+WCetQ1sypiKCQWHdvdg9wBNpUPEWZae7w==", + "version": "22.14.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.14.1.tgz", + "integrity": "sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==", "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~6.20.0" + "undici-types": "~6.21.0" } }, "node_modules/ansi-escapes": { @@ -1056,9 +1056,9 @@ } }, "node_modules/typescript": { - "version": "5.8.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", - "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", @@ -1069,12 +1069,12 @@ } }, "node_modules/typia": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/typia/-/typia-8.1.1.tgz", - "integrity": "sha512-R8iLPX52/tY/C/Ff7RhSsiV56JR21jLKbt1CShlrhKIJ6xoGejbXq8+y9RR/vLOo5WmZXi88yb2/zDHWyms2BQ==", + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/typia/-/typia-9.1.1.tgz", + "integrity": "sha512-fMgrd2VLGZoDjZZwWlgriotUiG38UEzcMD0ToJOhQ0bPr966mit0ZEy5TnDhm2RidXfejZOqHb7iOoTG3VHd4w==", "license": "MIT", "dependencies": { - "@samchon/openapi": "^3.2.2", + "@samchon/openapi": "^4.0.0", "commander": "^10.0.0", "comment-json": "^4.2.3", "inquirer": "^8.2.5", @@ -1085,14 +1085,14 @@ "typia": "lib/executable/typia.js" }, "peerDependencies": { - "@samchon/openapi": ">=3.2.2 <4.0.0", + "@samchon/openapi": ">=4.0.0 <5.0.0", "typescript": ">=4.8.0 <5.9.0" } }, "node_modules/undici-types": { - "version": "6.20.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", - "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", "dev": true, "license": "MIT" }, diff --git a/src/dataGateway/TypeScript/package.json b/src/dataGateway/TypeScript/package.json index dbe1166..9ad729a 100644 --- a/src/dataGateway/TypeScript/package.json +++ b/src/dataGateway/TypeScript/package.json @@ -1,6 +1,6 @@ { "name": "@shi-corp/sdk-data-gateway", - "version": "1.0.5", + "version": "2.0.4", "type": "module", "main": "bin/index.js", "description": "SDK client used to interface with the SHI Data Gateway service.", @@ -30,13 +30,13 @@ }, "devDependencies": { "@azure/core-auth": "~1.9.0", - "@types/node": "~22.13.14", + "@types/node": "~22.14.1", "ts-patch": "~3.3.0", - "typescript": "~5.8.2" + "typescript": "~5.8.3" }, "dependencies": { - "@microsoft/kiota-authentication-azure": "~1.0.0-preview.92", - "@microsoft/kiota-bundle": "~1.0.0-preview.92", - "typia": "~8.1.1" + "@microsoft/kiota-authentication-azure": "~1.0.0-preview.93", + "@microsoft/kiota-bundle": "~1.0.0-preview.93", + "typia": "~9.1.1" } } diff --git a/src/shield/TypeScript/package-lock.json b/src/shield/TypeScript/package-lock.json index 85af3c5..7c2dc43 100644 --- a/src/shield/TypeScript/package-lock.json +++ b/src/shield/TypeScript/package-lock.json @@ -1,23 +1,23 @@ { "name": "@shi-corp/sdk-shield", - "version": "1.0.5", + "version": "3.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@shi-corp/sdk-shield", - "version": "1.0.5", + "version": "3.0.0", "license": "MIT", "dependencies": { - "@microsoft/kiota-authentication-azure": "~1.0.0-preview.92", - "@microsoft/kiota-bundle": "~1.0.0-preview.92", - "typia": "~8.1.1" + "@microsoft/kiota-authentication-azure": "~1.0.0-preview.93", + "@microsoft/kiota-bundle": "~1.0.0-preview.93", + "typia": "~9.1.1" }, "devDependencies": { "@azure/core-auth": "~1.9.0", - "@types/node": "~22.13.14", + "@types/node": "~22.14.1", "ts-patch": "~3.3.0", - "typescript": "~5.8.2" + "typescript": "~5.8.3" } }, "node_modules/@azure/abort-controller": { @@ -60,9 +60,9 @@ } }, "node_modules/@microsoft/kiota-abstractions": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-abstractions/-/kiota-abstractions-1.0.0-preview.92.tgz", - "integrity": "sha512-B0w9MJBaK/enLeXQR479YNx6uHs1I6Gfu3OszmI2JbRCfS6ON1oyAB6cWTK2cB1sUD8C3vHR3TgtQfZG2pC5Og==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-abstractions/-/kiota-abstractions-1.0.0-preview.93.tgz", + "integrity": "sha512-YLnzCStrEz7GG2Zch2RhnoEmF4LSOhsploJzarG1ZkcGvP7TCRRzTLQeMCWjSBFHw6RGb0t5CR7lIs0GY9j7cQ==", "license": "MIT", "dependencies": { "@opentelemetry/api": "^1.7.0", @@ -72,79 +72,79 @@ } }, "node_modules/@microsoft/kiota-authentication-azure": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-authentication-azure/-/kiota-authentication-azure-1.0.0-preview.92.tgz", - "integrity": "sha512-Hif7sfkdVE+gMpvAVeG5fCRUcNp6n+XYWIxu18ewzV1UMn9qygpIFVepcVnG7lAdetBvtddlGiAnwTFSqdSJdQ==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-authentication-azure/-/kiota-authentication-azure-1.0.0-preview.93.tgz", + "integrity": "sha512-VXPj5Cu4qvIjNSls8u6bLhGls8amBpYdAhOyi54yrPIAuY5j2E+pFbdKSIYPdTpJCZm8Y9mfHhITRqeplbCNmA==", "license": "MIT", "dependencies": { "@azure/core-auth": "^1.5.0", - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "@opentelemetry/api": "^1.7.0", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-bundle": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-bundle/-/kiota-bundle-1.0.0-preview.92.tgz", - "integrity": "sha512-BZI+gF05xMmY32oTLBbBO8vM7Zy/26dSaAqPnoxEJQombjB2LmxS/fnEhc84pHoeOsMKTFOTr9DpOzRJglhNsQ==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-bundle/-/kiota-bundle-1.0.0-preview.93.tgz", + "integrity": "sha512-85y4y3NNN7U9ldKcO2+qI603I10YSDcnyZpzqPv8Zg/f5ePMQKUXAafCN0ANyOObOuyTZONPC1Eebwo0Yg+hTA==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", - "@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.92", - "@microsoft/kiota-serialization-form": "^1.0.0-preview.92", - "@microsoft/kiota-serialization-json": "^1.0.0-preview.92", - "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.92", - "@microsoft/kiota-serialization-text": "^1.0.0-preview.92" + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", + "@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.93", + "@microsoft/kiota-serialization-form": "^1.0.0-preview.93", + "@microsoft/kiota-serialization-json": "^1.0.0-preview.93", + "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.93", + "@microsoft/kiota-serialization-text": "^1.0.0-preview.93" } }, "node_modules/@microsoft/kiota-http-fetchlibrary": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-http-fetchlibrary/-/kiota-http-fetchlibrary-1.0.0-preview.92.tgz", - "integrity": "sha512-EyU7hUOuDGyCrNeJ9qR9GkE7iEq54RkQ1vdbXxbOZdPogjQcNbZm6Pb5/yDiPwwMIuS3LXvVVVY3jJQwfXQtOA==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-http-fetchlibrary/-/kiota-http-fetchlibrary-1.0.0-preview.93.tgz", + "integrity": "sha512-2PKlUjfTQgKCkgWhxbGZLq2IIXupBzCWKg03ubpSdgvZqYjEOuZg2cojvTwDZmSbxZUY2Hb8o6kAtkOkRvjEEg==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "@opentelemetry/api": "^1.7.0", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-form": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-form/-/kiota-serialization-form-1.0.0-preview.92.tgz", - "integrity": "sha512-fW7gZOnld8a+nz6mJhWbCSC96XiTxD4nGnHYi1SmvK1uK2n74taCZ6g957Fitj+60nVQAFNJmHtvqd633y4XXg==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-form/-/kiota-serialization-form-1.0.0-preview.93.tgz", + "integrity": "sha512-0u+83t3V7XHEODHsIsIeKOw3QgGK9OhfsB0Ie+kWSGaS8u38H9/DJM9xGKV67TFLnCeiEBERadP9e4lez3rnmA==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-json": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-json/-/kiota-serialization-json-1.0.0-preview.92.tgz", - "integrity": "sha512-3wb08c2hnBQRmxJ6RFtiGbYEk1spWyzqKenXM1Agtg3XM3MSnpxwxXWfHFvmBGKG2TTxGWaOCCsQsiJmHiI4vA==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-json/-/kiota-serialization-json-1.0.0-preview.93.tgz", + "integrity": "sha512-UlndZZYKvqdv6jLE0o6FjceyugtDc1UISiKC9EEXUm/vg0skG/vrlEcrpsKpZs/eZeX8VjCHOqvHbF2aTvgqkQ==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-multipart": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-multipart/-/kiota-serialization-multipart-1.0.0-preview.92.tgz", - "integrity": "sha512-koIIAOX6gOP3vHA8s4HSq1T8CW8H5DM8+zgImI7887EDSUqo0rSFSWCVsIyQaQSgaFosxhYrdRkBrJGG2cndDw==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-multipart/-/kiota-serialization-multipart-1.0.0-preview.93.tgz", + "integrity": "sha512-DUDs4D4k3+RWNO89sO6RXX84WoWUKWFwojCK+PmQ0I/zJMXysX0ODvT8JOF3G1Nld7SVPnv5TjAkqLC911AnrQ==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-text": { - "version": "1.0.0-preview.92", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-text/-/kiota-serialization-text-1.0.0-preview.92.tgz", - "integrity": "sha512-1FHYgw0ZyQX6Tv0Y5JmES1j+D8Tlk5r01xtq37zoAr7RcfEzoWzV9fvYhCXbleKbofE+ozJ70tp0667UdLkAKQ==", + "version": "1.0.0-preview.93", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-text/-/kiota-serialization-text-1.0.0-preview.93.tgz", + "integrity": "sha512-dFV+dDTCQMQ87f0JGMqLDETsxmMtMuhXfTj9Fj0EwT9s2pCH0j8E4zY5rVm1pLbnjFq3rUUKfTTb+eGOI5Z0yQ==", "license": "MIT", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.92", + "@microsoft/kiota-abstractions": "^1.0.0-preview.93", "tslib": "^2.6.2" } }, @@ -158,9 +158,9 @@ } }, "node_modules/@samchon/openapi": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/@samchon/openapi/-/openapi-3.2.2.tgz", - "integrity": "sha512-ij6qrXDj+uF2Jvz/DPAAQ929QGxAF0dYBL4b+41Y2iogZ8YUR/us9lklFmHYxYKWr450TShWDMCu0jSywUsITQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@samchon/openapi/-/openapi-4.1.0.tgz", + "integrity": "sha512-UUFBI6n8R9+V0xt4scGEaQ0rib04cOVARhu7DXBZuEG0ExiTFPoiW49+qYFwE44LjYpfxBIlNkd+rcpiRGhsNA==", "license": "MIT" }, "node_modules/@std-uritemplate/std-uritemplate": { @@ -170,13 +170,13 @@ "license": "Apache-2.0" }, "node_modules/@types/node": { - "version": "22.13.14", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.14.tgz", - "integrity": "sha512-Zs/Ollc1SJ8nKUAgc7ivOEdIBM8JAKgrqqUYi2J997JuKO7/tpQC+WCetQ1sypiKCQWHdvdg9wBNpUPEWZae7w==", + "version": "22.14.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.14.1.tgz", + "integrity": "sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==", "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~6.20.0" + "undici-types": "~6.21.0" } }, "node_modules/ansi-escapes": { @@ -1056,9 +1056,9 @@ } }, "node_modules/typescript": { - "version": "5.8.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", - "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", @@ -1069,12 +1069,12 @@ } }, "node_modules/typia": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/typia/-/typia-8.1.1.tgz", - "integrity": "sha512-R8iLPX52/tY/C/Ff7RhSsiV56JR21jLKbt1CShlrhKIJ6xoGejbXq8+y9RR/vLOo5WmZXi88yb2/zDHWyms2BQ==", + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/typia/-/typia-9.1.1.tgz", + "integrity": "sha512-fMgrd2VLGZoDjZZwWlgriotUiG38UEzcMD0ToJOhQ0bPr966mit0ZEy5TnDhm2RidXfejZOqHb7iOoTG3VHd4w==", "license": "MIT", "dependencies": { - "@samchon/openapi": "^3.2.2", + "@samchon/openapi": "^4.0.0", "commander": "^10.0.0", "comment-json": "^4.2.3", "inquirer": "^8.2.5", @@ -1085,14 +1085,14 @@ "typia": "lib/executable/typia.js" }, "peerDependencies": { - "@samchon/openapi": ">=3.2.2 <4.0.0", + "@samchon/openapi": ">=4.0.0 <5.0.0", "typescript": ">=4.8.0 <5.9.0" } }, "node_modules/undici-types": { - "version": "6.20.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", - "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", "dev": true, "license": "MIT" }, diff --git a/src/shield/TypeScript/package.json b/src/shield/TypeScript/package.json index 90b688f..0a5fa9c 100644 --- a/src/shield/TypeScript/package.json +++ b/src/shield/TypeScript/package.json @@ -1,6 +1,6 @@ { "name": "@shi-corp/sdk-shield", - "version": "1.0.5", + "version": "3.0.0", "type": "module", "main": "bin/index.js", "description": "SDK client used to interface with the SHIELD application.", @@ -31,13 +31,13 @@ }, "devDependencies": { "@azure/core-auth": "~1.9.0", - "@types/node": "~22.13.14", + "@types/node": "~22.14.1", "ts-patch": "~3.3.0", - "typescript": "~5.8.2" + "typescript": "~5.8.3" }, "dependencies": { - "@microsoft/kiota-authentication-azure": "~1.0.0-preview.92", - "@microsoft/kiota-bundle": "~1.0.0-preview.92", - "typia": "~8.1.1" + "@microsoft/kiota-authentication-azure": "~1.0.0-preview.93", + "@microsoft/kiota-bundle": "~1.0.0-preview.93", + "typia": "~9.1.1" } }