rhombus-node-mcp 0.1.24 → 0.1.26
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/api/access-control-tool-api.js +1 -1
- package/dist/api/alarm-monitoring-tool-api.js +1 -1
- package/dist/api/camera-tool-api.js +1 -1
- package/dist/api/camera-uptime-tool-api.js +1 -1
- package/dist/api/clips-tool-api.js +1 -1
- package/dist/api/create-camera-policy-tool-api.js +1 -1
- package/dist/api/create-tool-api.js +1 -1
- package/dist/api/door-schedule-exception-tool-api.js +199 -0
- package/dist/api/door-tool-api.js +1 -1
- package/dist/api/entity-lookup-tool-api.js +1 -1
- package/dist/api/events-tool-api.js +1 -1
- package/dist/api/faces-tool-api.js +1 -1
- package/dist/api/get-entity-tool-api.js +12 -11
- package/dist/api/get-org-information-tool-api.js +1 -1
- package/dist/api/guest-management-tool-api.js +1 -1
- package/dist/api/location-tool-api.js +1 -1
- package/dist/api/lpr-tool-api.js +1 -1
- package/dist/api/policy-alerts-tool-api.js +1 -1
- package/dist/api/reboot-cameras-tool-api.js +1 -1
- package/dist/api/report-tool-api.js +1 -1
- package/dist/api/rules-tool-api.js +1 -1
- package/dist/api/search-tool-api.js +1 -1
- package/dist/api/update-tool-api.js +1 -1
- package/dist/api/user-access-trail-tool-api.js +1 -1
- package/dist/api/user-audit-tool-api.js +1 -1
- package/dist/api/user-tool-api.js +1 -1
- package/dist/createServer.js +1 -0
- package/dist/filtering-utils.js +15 -7
- package/dist/network/locations.js +60 -0
- package/dist/{network.js → network/network.js} +8 -3
- package/dist/network/postApiMap.js +7 -0
- package/dist/tools/analytics-tool.js +1 -1
- package/dist/tools/create-camera-policy-tool.js +1 -1
- package/dist/tools/door-schedule-exception-tool.js +113 -0
- package/dist/types/access-control-tool-types.js +1 -1
- package/dist/types/door-schedule-exception-tool-types.js +160 -0
- package/dist/types/report-tool-types.js +7 -7
- package/dist/types/user-tool-types.js +1 -1
- package/dist/types/zod-schemas.js +670 -665
- package/dist/utils/timestampInput.js +5 -8
- package/package.json +4 -4
|
@@ -3,7 +3,7 @@ import { z } from "zod";
|
|
|
3
3
|
// Some complex schemas may need manual adjustment
|
|
4
4
|
const BodyPart = z.object({
|
|
5
5
|
contentDisposition: z.lazy(() => ContentDisposition).optional(),
|
|
6
|
-
entity: z.record(z.unknown()).optional(),
|
|
6
|
+
entity: z.record(z.string(), z.unknown()).optional(),
|
|
7
7
|
headers: z.object({
|
|
8
8
|
empty: z.boolean().optional()
|
|
9
9
|
}).optional(),
|
|
@@ -18,7 +18,7 @@ const BodyPart = z.object({
|
|
|
18
18
|
const MultiPart = z.object({
|
|
19
19
|
bodyParts: z.array(BodyPart).optional(),
|
|
20
20
|
contentDisposition: z.lazy(() => ContentDisposition).optional(),
|
|
21
|
-
entity: z.record(z.unknown()).optional(),
|
|
21
|
+
entity: z.record(z.string(), z.unknown()).optional(),
|
|
22
22
|
headers: z.object({
|
|
23
23
|
empty: z.boolean().optional()
|
|
24
24
|
}).optional(),
|
|
@@ -383,7 +383,7 @@ const BaseEventOriginator = z.object({
|
|
|
383
383
|
});
|
|
384
384
|
const FirstInSourceEnum = z.string();
|
|
385
385
|
const DoorFirstInStateChangeEventReference = z.object({
|
|
386
|
-
doorUuidToEventUuidMap: z.record(z.
|
|
386
|
+
doorUuidToEventUuidMap: z.record(z.string(), z.string()).optional(),
|
|
387
387
|
newState: FirstInFirmwareStatus.optional(),
|
|
388
388
|
originatingDoorUuid: z.string().optional(),
|
|
389
389
|
originatingUserUuid: z.string().optional(),
|
|
@@ -442,8 +442,8 @@ const MetaDataLocationType = z.object({
|
|
|
442
442
|
const AccessControlledDoorPolicyAlertType = z.object({
|
|
443
443
|
alertMonitoringThreatCaseUuid: z.string().optional(),
|
|
444
444
|
alertMonitoringVerified: z.boolean().optional(),
|
|
445
|
-
clipLocationMap: z.record(z.
|
|
446
|
-
clipLocationMapV2: z.record(z.
|
|
445
|
+
clipLocationMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
446
|
+
clipLocationMapV2: z.record(z.string(), z.string()).optional(),
|
|
447
447
|
delayedProcessing: z.boolean().optional(),
|
|
448
448
|
deleted: z.boolean().optional(),
|
|
449
449
|
durationSec: z.number().int().optional(),
|
|
@@ -558,7 +558,7 @@ const AccessControlledDoorType = z.object({
|
|
|
558
558
|
doorAuthFirstInStateOverride: FirstInState.optional(),
|
|
559
559
|
doorScheduleFirstInStateOverride: FirstInState.optional(),
|
|
560
560
|
doorStateOverride: BaseAccessStateOverride.optional(),
|
|
561
|
-
doorStateToScheduleUuidMap: z.record(z.
|
|
561
|
+
doorStateToScheduleUuidMap: z.record(z.string(), z.string()).optional(),
|
|
562
562
|
dpiComponents: z.array(ComponentReferenceType).optional(),
|
|
563
563
|
floorNumber: z.number().int().optional(),
|
|
564
564
|
forceAllReadersFirstInAuthRequiredLedFeedbackEnabled: z.boolean().optional(),
|
|
@@ -658,7 +658,7 @@ const AccessControlledElevator = z.object({
|
|
|
658
658
|
associatedFaceDetectionCameras: z.array(z.string()).optional(),
|
|
659
659
|
createdAtMillis: z.number().int().optional(),
|
|
660
660
|
directionRadians: z.number().optional(),
|
|
661
|
-
elevatorLandingReferences: z.record(z.
|
|
661
|
+
elevatorLandingReferences: z.record(z.string(), z.lazy(() => ElevatorLandingReference)).optional(),
|
|
662
662
|
forceAllReadersFirstInAuthRequiredLedFeedbackEnabled: z.boolean().optional(),
|
|
663
663
|
forceAllReadersFirstInUnlockPendingLedFeedbackEnabled: z.boolean().optional(),
|
|
664
664
|
forceAllReadersOtherReaderUnlockAudioFeedbackEnabled: z.boolean().optional(),
|
|
@@ -686,7 +686,7 @@ const AccessControlledElevator = z.object({
|
|
|
686
686
|
const AccessControlledElevatorLanding = z.object({
|
|
687
687
|
accessScheduleFirstInStateOverride: FirstInState.optional(),
|
|
688
688
|
accessStateOverride: BaseAccessStateOverride.optional(),
|
|
689
|
-
accessStateToScheduleUuidMap: z.record(z.
|
|
689
|
+
accessStateToScheduleUuidMap: z.record(z.string(), z.string()).optional(),
|
|
690
690
|
associatedCameras: z.array(z.string()).optional(),
|
|
691
691
|
associatedFaceDetectionCameras: z.array(z.string()).optional(),
|
|
692
692
|
authFirstInStateOverride: FirstInState.optional(),
|
|
@@ -768,7 +768,7 @@ const Accesscontrol_FindUnlockableAccessControlledDoorsByDeviceWSResponse = z.ob
|
|
|
768
768
|
const Accesscontrol_ForceRefreshAccessControlUnitConfigWSRequest = z.object({
|
|
769
769
|
accessControlUnitUuid: z.string().optional()
|
|
770
770
|
});
|
|
771
|
-
const Accesscontrol_ForceRefreshAccessControlUnitConfigWSResponse = z.record(z.unknown());
|
|
771
|
+
const Accesscontrol_ForceRefreshAccessControlUnitConfigWSResponse = z.record(z.string(), z.unknown());
|
|
772
772
|
const Accesscontrol_GetMinimalAccessControlledDoorsByLocationForCurrentUserWSRequest = z.object({
|
|
773
773
|
locationUuid: z.string().optional()
|
|
774
774
|
});
|
|
@@ -898,7 +898,7 @@ const Accesscontrol_accessgrant_CreateAccessGrantWSResponse = z.object({
|
|
|
898
898
|
const Accesscontrol_accessgrant_DeleteLocationAccessGrantWSRequest = z.object({
|
|
899
899
|
accessGrantUuid: z.string().optional()
|
|
900
900
|
});
|
|
901
|
-
const Accesscontrol_accessgrant_DeleteLocationAccessGrantWSResponse = z.record(z.unknown());
|
|
901
|
+
const Accesscontrol_accessgrant_DeleteLocationAccessGrantWSResponse = z.record(z.string(), z.unknown());
|
|
902
902
|
const Accesscontrol_accessgrant_FindLocationAccessGrantsByAccessControlledDoorWSRequest = z.object({
|
|
903
903
|
accessControlledDoorUuid: z.string().optional()
|
|
904
904
|
});
|
|
@@ -936,7 +936,7 @@ const Accesscontrol_accessgrant_FindLocationAccessGrantsByLocationWSRequest = z.
|
|
|
936
936
|
const Accesscontrol_accessgrant_FindLocationAccessGrantsByLocationWSResponse = z.object({
|
|
937
937
|
accessGrants: z.array(LocationAccessGrantType).optional()
|
|
938
938
|
});
|
|
939
|
-
const Accesscontrol_accessgrant_FindLocationAccessGrantsByOrgWSRequest = z.record(z.unknown());
|
|
939
|
+
const Accesscontrol_accessgrant_FindLocationAccessGrantsByOrgWSRequest = z.record(z.string(), z.unknown());
|
|
940
940
|
const Accesscontrol_accessgrant_FindLocationAccessGrantsByOrgWSResponse = z.object({
|
|
941
941
|
accessGrants: z.array(LocationAccessGrantType).optional()
|
|
942
942
|
});
|
|
@@ -952,7 +952,7 @@ const Accesscontrol_accessgrant_GetLocationAccessGrantWSRequest = z.object({
|
|
|
952
952
|
const Accesscontrol_accessgrant_GetLocationAccessGrantWSResponse = z.object({
|
|
953
953
|
accessGrant: LocationAccessGrantType.optional()
|
|
954
954
|
});
|
|
955
|
-
const Accesscontrol_accessgrant_GetLocationsByAccessGrantForCurrentUserWSRequest = z.record(z.unknown());
|
|
955
|
+
const Accesscontrol_accessgrant_GetLocationsByAccessGrantForCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
956
956
|
const LocationLockdownStateType = z.object({
|
|
957
957
|
activeLockdownPlans: z.array(LockdownPlanReference).optional(),
|
|
958
958
|
createdAtMillis: z.number().int().optional(),
|
|
@@ -998,7 +998,7 @@ const LocationLockdownPlanType = z.object({
|
|
|
998
998
|
createdAtMillis: z.number().int().optional(),
|
|
999
999
|
deactivationPlan: LockdownDeactivationPlanType.optional(),
|
|
1000
1000
|
defaultLockdownState: DoorLockdownStateEnumType.optional(),
|
|
1001
|
-
doorLockdownStateMap: z.record(z.
|
|
1001
|
+
doorLockdownStateMap: z.record(z.string(), DoorLockdownStateEnumType).optional(),
|
|
1002
1002
|
locationUuid: z.string().optional(),
|
|
1003
1003
|
name: z.string().optional(),
|
|
1004
1004
|
orgUuid: z.string().optional(),
|
|
@@ -1014,7 +1014,7 @@ const BaseLockdownPlanType = z.object({
|
|
|
1014
1014
|
createdAtMillis: z.number().int().optional(),
|
|
1015
1015
|
deactivationPlan: LockdownDeactivationPlanType.optional(),
|
|
1016
1016
|
defaultLockdownState: DoorLockdownStateEnumType.optional(),
|
|
1017
|
-
doorLockdownStateMap: z.record(z.
|
|
1017
|
+
doorLockdownStateMap: z.record(z.string(), DoorLockdownStateEnumType).optional(),
|
|
1018
1018
|
name: z.string().optional(),
|
|
1019
1019
|
orgUuid: z.string().optional(),
|
|
1020
1020
|
physicalAccess: LockdownPhysicalAccessType.optional(),
|
|
@@ -1071,7 +1071,7 @@ const Accesscontrol_accessrevocation_CreateAccessRevocationWSResponse = z.object
|
|
|
1071
1071
|
const Accesscontrol_accessrevocation_DeleteLocationAccessRevocationWSRequest = z.object({
|
|
1072
1072
|
accessRevocationUuid: z.string().optional()
|
|
1073
1073
|
});
|
|
1074
|
-
const Accesscontrol_accessrevocation_DeleteLocationAccessRevocationWSResponse = z.record(z.unknown());
|
|
1074
|
+
const Accesscontrol_accessrevocation_DeleteLocationAccessRevocationWSResponse = z.record(z.string(), z.unknown());
|
|
1075
1075
|
const Accesscontrol_accessrevocation_FindLocationAccessRevocationsByAccessControlledDoorWSRequest = z.object({
|
|
1076
1076
|
accessControlledDoorUuid: z.string().optional()
|
|
1077
1077
|
});
|
|
@@ -1096,7 +1096,7 @@ const Accesscontrol_accessrevocation_FindLocationAccessRevocationsByGroupWSReque
|
|
|
1096
1096
|
const Accesscontrol_accessrevocation_FindLocationAccessRevocationsByGroupWSResponse = z.object({
|
|
1097
1097
|
accessRevocations: z.array(LocationAccessRevocationType).optional()
|
|
1098
1098
|
});
|
|
1099
|
-
const Accesscontrol_accessrevocation_FindLocationAccessRevocationsByOrgWSRequest = z.record(z.unknown());
|
|
1099
|
+
const Accesscontrol_accessrevocation_FindLocationAccessRevocationsByOrgWSRequest = z.record(z.string(), z.unknown());
|
|
1100
1100
|
const Accesscontrol_accessrevocation_FindLocationAccessRevocationsByOrgWSResponse = z.object({
|
|
1101
1101
|
accessRevocations: z.array(LocationAccessRevocationType).optional()
|
|
1102
1102
|
});
|
|
@@ -1228,7 +1228,7 @@ const BadgeTemplateImageSelectiveUpdate = z.object({
|
|
|
1228
1228
|
orgUuid: z.string().optional(),
|
|
1229
1229
|
originalFileName: z.string().optional(),
|
|
1230
1230
|
updatedAtMillis: z.number().int().optional(),
|
|
1231
|
-
updatedSetMethodMap: z.record(z.
|
|
1231
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
1232
1232
|
uuid: z.string().optional()
|
|
1233
1233
|
});
|
|
1234
1234
|
const Accesscontrol_badgetemplate_UpdateBadgeTemplateImageWSRequest = z.object({
|
|
@@ -1245,7 +1245,7 @@ const BadgeTemplateSelectiveUpdate = z.object({
|
|
|
1245
1245
|
orgUuid: z.string().optional(),
|
|
1246
1246
|
portrait: z.boolean().optional(),
|
|
1247
1247
|
updatedAtMillis: z.number().int().optional(),
|
|
1248
|
-
updatedSetMethodMap: z.record(z.
|
|
1248
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
1249
1249
|
uuid: z.string().optional(),
|
|
1250
1250
|
version: z.string().optional()
|
|
1251
1251
|
});
|
|
@@ -1325,7 +1325,7 @@ const Accesscontrol_credentials_CreateAccessControlCredentialByHexValueAndTypeWS
|
|
|
1325
1325
|
const Accesscontrol_credentials_CreateAppleWalletPassWSRequest = z.object({
|
|
1326
1326
|
credUuid: z.string().optional()
|
|
1327
1327
|
});
|
|
1328
|
-
const Accesscontrol_credentials_CreateAppleWalletPassWSResponse = z.record(z.unknown());
|
|
1328
|
+
const Accesscontrol_credentials_CreateAppleWalletPassWSResponse = z.record(z.string(), z.unknown());
|
|
1329
1329
|
const Accesscontrol_credentials_CreatePinCredentialWSRequest = z.object({
|
|
1330
1330
|
endDateEpochSecExclusive: z.number().int().min(0).optional(),
|
|
1331
1331
|
notifyUser: z.boolean().optional(),
|
|
@@ -1414,7 +1414,7 @@ const Accesscontrol_credentials_CreateWiegandH10304CredentialWSResponse = z.obje
|
|
|
1414
1414
|
const Accesscontrol_credentials_DeleteAccessControlCredentialWSRequest = z.object({
|
|
1415
1415
|
credentialUuid: z.string().optional()
|
|
1416
1416
|
});
|
|
1417
|
-
const Accesscontrol_credentials_DeleteAccessControlCredentialWSResponse = z.record(z.unknown());
|
|
1417
|
+
const Accesscontrol_credentials_DeleteAccessControlCredentialWSResponse = z.record(z.string(), z.unknown());
|
|
1418
1418
|
const Accesscontrol_credentials_DeletePinCredentialWSRequest = z.object({
|
|
1419
1419
|
credentialUuid: z.string()
|
|
1420
1420
|
});
|
|
@@ -1426,7 +1426,7 @@ const Accesscontrol_credentials_DeletePinCredentialWSResponse = z.object({
|
|
|
1426
1426
|
const Accesscontrol_credentials_DeleteUnassignedAccessControlCredentialWSRequest = z.object({
|
|
1427
1427
|
credentialHexValue: z.string().optional()
|
|
1428
1428
|
});
|
|
1429
|
-
const Accesscontrol_credentials_DeleteUnassignedAccessControlCredentialWSResponse = z.record(z.unknown());
|
|
1429
|
+
const Accesscontrol_credentials_DeleteUnassignedAccessControlCredentialWSResponse = z.record(z.string(), z.unknown());
|
|
1430
1430
|
const CredentialQueryFilter = z.object({
|
|
1431
1431
|
credTypeFilter: z.array(AccessControlCredentialEnumType).optional(),
|
|
1432
1432
|
lastUsedAccessControlledDoorUuidFilter: z.array(z.string()).optional(),
|
|
@@ -1453,7 +1453,7 @@ const Accesscontrol_credentials_FindAccessControlCredentialByUsersWSRequest = z.
|
|
|
1453
1453
|
userUuids: z.array(z.string()).optional()
|
|
1454
1454
|
});
|
|
1455
1455
|
const Accesscontrol_credentials_FindAccessControlCredentialByUsersWSResponse = z.object({
|
|
1456
|
-
userCredentialsMap: z.record(z.
|
|
1456
|
+
userCredentialsMap: z.record(z.string(), z.array(AccessControlCredentialType)).optional()
|
|
1457
1457
|
});
|
|
1458
1458
|
const Accesscontrol_credentials_FindCredentialHistoryByCredentialHexValueWSRequest = z.object({
|
|
1459
1459
|
credentialHexValue: z.string().optional(),
|
|
@@ -1492,7 +1492,7 @@ const Accesscontrol_credentials_FindPinCredentialsByOrgWSResponse = z.object({
|
|
|
1492
1492
|
errorMsg: z.string().optional(),
|
|
1493
1493
|
warningMsg: z.string().optional()
|
|
1494
1494
|
});
|
|
1495
|
-
const Accesscontrol_credentials_FindRhombusSecureMobileCredentialsForCurrentUserWSRequest = z.record(z.unknown());
|
|
1495
|
+
const Accesscontrol_credentials_FindRhombusSecureMobileCredentialsForCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
1496
1496
|
const Accesscontrol_credentials_FindRhombusSecureMobileCredentialsForCurrentUserWSResponse = z.object({
|
|
1497
1497
|
credentials: z.array(AccessControlCredentialType).optional()
|
|
1498
1498
|
});
|
|
@@ -1520,23 +1520,23 @@ const Accesscontrol_credentials_GetRhombusSecureCsnCredentialDetailsWSRequest =
|
|
|
1520
1520
|
const Accesscontrol_credentials_GetRhombusSecureCsnCredentialDetailsWSResponse = z.object({
|
|
1521
1521
|
credential: AccessControlCredentialType.optional()
|
|
1522
1522
|
});
|
|
1523
|
-
const Accesscontrol_credentials_GetRhombusSecureMobileAppStateStatsForOrgWSRequest = z.record(z.unknown());
|
|
1523
|
+
const Accesscontrol_credentials_GetRhombusSecureMobileAppStateStatsForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
1524
1524
|
const RhombusSecureMobileCredStatRhombusSecureMobileFeatureStatus = z.object({
|
|
1525
|
-
androidCredRefMap: z.record(z.
|
|
1525
|
+
androidCredRefMap: z.record(z.string(), z.array(z.lazy(() => StatsCredentialReference))).optional(),
|
|
1526
1526
|
androidTotal: z.number().int().optional(),
|
|
1527
|
-
androidTotalMap: z.record(z.
|
|
1528
|
-
iphoneCredRefMap: z.record(z.
|
|
1527
|
+
androidTotalMap: z.record(z.string(), z.number().int()).optional(),
|
|
1528
|
+
iphoneCredRefMap: z.record(z.string(), z.array(z.lazy(() => StatsCredentialReference))).optional(),
|
|
1529
1529
|
iphoneTotal: z.number().int().optional(),
|
|
1530
|
-
iphoneTotalMap: z.record(z.
|
|
1530
|
+
iphoneTotalMap: z.record(z.string(), z.number().int()).optional(),
|
|
1531
1531
|
total: z.number().int().optional()
|
|
1532
1532
|
});
|
|
1533
1533
|
const RhombusSecureMobileCredStatString = z.object({
|
|
1534
|
-
androidCredRefMap: z.record(z.
|
|
1534
|
+
androidCredRefMap: z.record(z.string(), z.array(z.lazy(() => StatsCredentialReference))).optional(),
|
|
1535
1535
|
androidTotal: z.number().int().optional(),
|
|
1536
|
-
androidTotalMap: z.record(z.
|
|
1537
|
-
iphoneCredRefMap: z.record(z.
|
|
1536
|
+
androidTotalMap: z.record(z.string(), z.number().int()).optional(),
|
|
1537
|
+
iphoneCredRefMap: z.record(z.string(), z.array(z.lazy(() => StatsCredentialReference))).optional(),
|
|
1538
1538
|
iphoneTotal: z.number().int().optional(),
|
|
1539
|
-
iphoneTotalMap: z.record(z.
|
|
1539
|
+
iphoneTotalMap: z.record(z.string(), z.number().int()).optional(),
|
|
1540
1540
|
total: z.number().int().optional()
|
|
1541
1541
|
});
|
|
1542
1542
|
const RhombusSecureMobileAppStateStats = z.object({
|
|
@@ -1581,7 +1581,7 @@ const Accesscontrol_credentials_RevokePinCredentialWSResponse = z.object({
|
|
|
1581
1581
|
const Accesscontrol_credentials_RevokeRhombusSecureMobileCredentialForCurrentUserWSRequest = z.object({
|
|
1582
1582
|
credentialUuid: z.string().optional()
|
|
1583
1583
|
});
|
|
1584
|
-
const Accesscontrol_credentials_RevokeRhombusSecureMobileCredentialForCurrentUserWSResponse = z.record(z.unknown());
|
|
1584
|
+
const Accesscontrol_credentials_RevokeRhombusSecureMobileCredentialForCurrentUserWSResponse = z.record(z.string(), z.unknown());
|
|
1585
1585
|
const Accesscontrol_credentials_RotatePinCredentialWSRequest = z.object({
|
|
1586
1586
|
credentialUuid: z.string(),
|
|
1587
1587
|
endDateEpochSecExclusive: z.number().int().min(0).optional(),
|
|
@@ -1701,7 +1701,7 @@ const DoorScheduleExceptionType = z.object({
|
|
|
1701
1701
|
intervals: z.array(LocalInterval),
|
|
1702
1702
|
localEndDate: z.string(),
|
|
1703
1703
|
localStartDate: z.string(),
|
|
1704
|
-
locationToDoorsMap: z.record(z.
|
|
1704
|
+
locationToDoorsMap: z.record(z.string(), z.array(z.string())).optional(),
|
|
1705
1705
|
locationUuid: z.string().optional(),
|
|
1706
1706
|
name: z.string(),
|
|
1707
1707
|
orgUuid: z.string().optional(),
|
|
@@ -1937,11 +1937,11 @@ const Accesscontrol_lockdownplan_ActivateLockdownForLocationWSResponse = z.objec
|
|
|
1937
1937
|
state: LocationLockdownStateType.optional()
|
|
1938
1938
|
});
|
|
1939
1939
|
const Accesscontrol_lockdownplan_ActivateLockdownForLocationsViaRhombusKeyWSRequest = z.object({
|
|
1940
|
-
lockdownPlansByLocation: z.record(z.
|
|
1940
|
+
lockdownPlansByLocation: z.record(z.string(), z.array(z.string())),
|
|
1941
1941
|
stateUpdatedAtMillis: z.number().int().optional()
|
|
1942
1942
|
});
|
|
1943
1943
|
const Accesscontrol_lockdownplan_ActivateLockdownForLocationsViaRhombusKeyWSResponse = z.object({
|
|
1944
|
-
lockdownResults: z.record(z.
|
|
1944
|
+
lockdownResults: z.record(z.string(), z.lazy(() => Accesscontrol_lockdownplan_ActivateLockdownForLocationsViaRhombusKeyWSResponse_LocationLockdownActivationResult)).optional()
|
|
1945
1945
|
});
|
|
1946
1946
|
const Accesscontrol_lockdownplan_ActivateLockdownForLocationsViaRhombusKeyWSResponse_LocationLockdownActivationResult = z.object({
|
|
1947
1947
|
info: z.string().optional(),
|
|
@@ -1977,7 +1977,7 @@ const ConnectAudioDeviceToPhoneNumberActionType = z.object({
|
|
|
1977
1977
|
phoneNumber: z.string().optional()
|
|
1978
1978
|
});
|
|
1979
1979
|
const CustomLLMActionType = z.object({
|
|
1980
|
-
deviceActivityEvents: z.record(z.
|
|
1980
|
+
deviceActivityEvents: z.record(z.string(), z.array(z.lazy(() => ActivityEventData))).optional(),
|
|
1981
1981
|
deviceFacetUuids: z.array(z.string()).optional(),
|
|
1982
1982
|
orgUuid: z.string().optional(),
|
|
1983
1983
|
promptUuid: z.string().optional(),
|
|
@@ -2086,7 +2086,7 @@ const Accesscontrol_lockdownplan_DeactivateLockdownForLocationsViaRhombusKeyWSRe
|
|
|
2086
2086
|
stateUpdatedAtMillis: z.number().int().optional()
|
|
2087
2087
|
});
|
|
2088
2088
|
const Accesscontrol_lockdownplan_DeactivateLockdownForLocationsViaRhombusKeyWSResponse = z.object({
|
|
2089
|
-
lockdownResults: z.record(z.
|
|
2089
|
+
lockdownResults: z.record(z.string(), z.lazy(() => Accesscontrol_lockdownplan_DeactivateLockdownForLocationsViaRhombusKeyWSResponse_LocationLockdownDeactivationResult)).optional()
|
|
2090
2090
|
});
|
|
2091
2091
|
const Accesscontrol_lockdownplan_DeactivateLockdownForLocationsViaRhombusKeyWSResponse_LocationLockdownDeactivationResult = z.object({
|
|
2092
2092
|
info: z.string().optional(),
|
|
@@ -2096,7 +2096,7 @@ const Accesscontrol_lockdownplan_DeactivateLockdownForLocationsViaRhombusKeyWSRe
|
|
|
2096
2096
|
const Accesscontrol_lockdownplan_DeleteLocationLockdownStateWSRequest = z.object({
|
|
2097
2097
|
locationUuid: z.string().optional()
|
|
2098
2098
|
});
|
|
2099
|
-
const Accesscontrol_lockdownplan_DeleteLocationLockdownStateWSResponse = z.record(z.unknown());
|
|
2099
|
+
const Accesscontrol_lockdownplan_DeleteLocationLockdownStateWSResponse = z.record(z.string(), z.unknown());
|
|
2100
2100
|
const Accesscontrol_lockdownplan_DeleteLockdownPlanWSRequest = z.object({
|
|
2101
2101
|
lockdownPlanUuid: z.string().optional()
|
|
2102
2102
|
});
|
|
@@ -2160,7 +2160,7 @@ const Accesscontrol_lockdownplan_FindLockdownPlansByLocationWSRequest = z.object
|
|
|
2160
2160
|
const Accesscontrol_lockdownplan_FindLockdownPlansByLocationWSResponse = z.object({
|
|
2161
2161
|
lockdownPlans: z.array(BaseLockdownPlanType).optional()
|
|
2162
2162
|
});
|
|
2163
|
-
const Accesscontrol_lockdownplan_FindLockdownPlansWSRequest = z.record(z.unknown());
|
|
2163
|
+
const Accesscontrol_lockdownplan_FindLockdownPlansWSRequest = z.record(z.string(), z.unknown());
|
|
2164
2164
|
const Accesscontrol_lockdownplan_FindLockdownPlansWSResponse = z.object({
|
|
2165
2165
|
lockdownPlans: z.array(BaseLockdownPlanType).optional()
|
|
2166
2166
|
});
|
|
@@ -2189,7 +2189,7 @@ const Accesscontrol_lockdownplan_UpdateLocationLockdownPlanWSRequest = z.object(
|
|
|
2189
2189
|
activationPlan: LockdownActivationPlanType.optional(),
|
|
2190
2190
|
deactivationPlan: LockdownDeactivationPlanType.optional(),
|
|
2191
2191
|
defaultLockdownState: DoorLockdownStateEnumType.optional(),
|
|
2192
|
-
doorLockdownStateMap: z.record(z.
|
|
2192
|
+
doorLockdownStateMap: z.record(z.string(), DoorLockdownStateEnumType).optional(),
|
|
2193
2193
|
lockdownPlanUuid: z.string().optional(),
|
|
2194
2194
|
name: z.string().optional(),
|
|
2195
2195
|
physicalAccess: LockdownPhysicalAccessType.optional(),
|
|
@@ -2207,7 +2207,7 @@ const Accesscontrol_qr_GenerateQRAccessCodeWSResponse = z.object({
|
|
|
2207
2207
|
accessTokenUuid: z.string().optional(),
|
|
2208
2208
|
qrCode: z.array(z.string()).optional()
|
|
2209
2209
|
});
|
|
2210
|
-
const Accesscontrol_qr_GetQRAccessCodesWSRequest = z.record(z.unknown());
|
|
2210
|
+
const Accesscontrol_qr_GetQRAccessCodesWSRequest = z.record(z.string(), z.unknown());
|
|
2211
2211
|
const Accesscontrol_qr_QRAccessCodeType = z.object({
|
|
2212
2212
|
accesTokenUuid: z.string().optional(),
|
|
2213
2213
|
auditPrincipal: z.string().optional(),
|
|
@@ -2249,7 +2249,7 @@ const ClipBoundingBoxType = z.object({
|
|
|
2249
2249
|
customActivityDisplayName: z.string().optional(),
|
|
2250
2250
|
faceName: z.string().optional(),
|
|
2251
2251
|
inMotion: z.boolean().optional(),
|
|
2252
|
-
keypointsV2: z.record(z.
|
|
2252
|
+
keypointsV2: z.record(z.string(), z.lazy(() => PointType)).optional(),
|
|
2253
2253
|
left: z.number().int().optional(),
|
|
2254
2254
|
licensePlate: z.string().optional(),
|
|
2255
2255
|
loudness: z.number().int().optional(),
|
|
@@ -2427,7 +2427,7 @@ const VerificationHistory = z.object({
|
|
|
2427
2427
|
verificationRecords: z.array(VerificationRecord).optional()
|
|
2428
2428
|
});
|
|
2429
2429
|
const AlertMonitoringThreatCaseType = z.object({
|
|
2430
|
-
associatedDeviceUuids: z.record(z.
|
|
2430
|
+
associatedDeviceUuids: z.record(z.string(), z.number().int()).optional(),
|
|
2431
2431
|
createdAtMillis: z.number().int().optional(),
|
|
2432
2432
|
deleted: z.boolean().optional(),
|
|
2433
2433
|
deviceUuid: z.string().optional(),
|
|
@@ -2458,7 +2458,7 @@ const Alertmonitoring_AMDeviceHistogramItem = z.object({
|
|
|
2458
2458
|
const Alertmonitoring_AcceptAlertMonitoringTermsOfServiceForLocationRequest = z.object({
|
|
2459
2459
|
locationUuid: z.string().optional()
|
|
2460
2460
|
});
|
|
2461
|
-
const Alertmonitoring_AcceptAlertMonitoringTermsOfServiceRequest = z.record(z.unknown());
|
|
2461
|
+
const Alertmonitoring_AcceptAlertMonitoringTermsOfServiceRequest = z.record(z.string(), z.unknown());
|
|
2462
2462
|
const Alertmonitoring_AcceptAlertMonitoringTermsOfServiceResponse = z.object({
|
|
2463
2463
|
error: z.boolean().optional(),
|
|
2464
2464
|
errorMsg: z.string().optional(),
|
|
@@ -2533,7 +2533,7 @@ const NoonlightScheduleType = z.object({
|
|
|
2533
2533
|
promptTheme: NoonlightPromptTheme.optional(),
|
|
2534
2534
|
promptTitle: z.string().optional(),
|
|
2535
2535
|
scheduleUuid: z.string().optional(),
|
|
2536
|
-
sirenSettings: z.record(z.
|
|
2536
|
+
sirenSettings: z.record(z.string(), AMSirenSettingsType).optional(),
|
|
2537
2537
|
triggerSet: z.array(ActivityEnum).optional(),
|
|
2538
2538
|
tripwire: TripwireSettingsType.optional(),
|
|
2539
2539
|
uuid: z.string().optional(),
|
|
@@ -2658,7 +2658,7 @@ const Alertmonitoring_GenerateMonthlyVerificationsForYearReportForLocationWSRequ
|
|
|
2658
2658
|
const Alertmonitoring_GenerateMonthlyVerificationsForYearReportForLocationWSResponse = z.object({
|
|
2659
2659
|
error: z.boolean().optional(),
|
|
2660
2660
|
errorMsg: z.string().optional(),
|
|
2661
|
-
verificationsPerMonthPerLocation: z.record(z.
|
|
2661
|
+
verificationsPerMonthPerLocation: z.record(z.string(), z.record(z.string(), z.number().int())).optional(),
|
|
2662
2662
|
warningMsg: z.string().optional()
|
|
2663
2663
|
});
|
|
2664
2664
|
const Alertmonitoring_GenerateReportDataForLocationWSRequest = z.object({
|
|
@@ -2669,7 +2669,7 @@ const Alertmonitoring_GenerateReportDataForLocationWSRequest = z.object({
|
|
|
2669
2669
|
const Alertmonitoring_ThreatCaseReportItem = z.object({
|
|
2670
2670
|
alertNotFound: z.boolean().optional(),
|
|
2671
2671
|
alertTypes: z.array(ActivityEnum).optional(),
|
|
2672
|
-
associatedDeviceUuids: z.record(z.
|
|
2672
|
+
associatedDeviceUuids: z.record(z.string(), z.number().int()).optional(),
|
|
2673
2673
|
createdAtMillis: z.number().int().optional(),
|
|
2674
2674
|
deleted: z.boolean().optional(),
|
|
2675
2675
|
deviceName: z.string().optional(),
|
|
@@ -2752,13 +2752,13 @@ const Alertmonitoring_GetNoonlightSettingsForLocationWSRequest = z.object({
|
|
|
2752
2752
|
locationUuid: z.string().optional()
|
|
2753
2753
|
});
|
|
2754
2754
|
const MonitoringEnableStatus = z.object({
|
|
2755
|
-
devicesWithActiveSirens: z.record(z.
|
|
2755
|
+
devicesWithActiveSirens: z.record(z.string(), z.number().int()).optional(),
|
|
2756
2756
|
disabledOnMs: z.number().int().optional(),
|
|
2757
2757
|
enabled: z.boolean().optional(),
|
|
2758
2758
|
enabledOnMs: z.number().int().optional(),
|
|
2759
2759
|
noNextTimestampReason: z.string().optional(),
|
|
2760
2760
|
notEnabledReason: z.string().optional(),
|
|
2761
|
-
recentlyActivatedSirensTimestampMs: z.record(z.
|
|
2761
|
+
recentlyActivatedSirensTimestampMs: z.record(z.string(), z.number().int()).optional()
|
|
2762
2762
|
});
|
|
2763
2763
|
const Alertmonitoring_NoonlightWSSettings = z.object({
|
|
2764
2764
|
acceptedTermsOfService: z.boolean().optional(),
|
|
@@ -2797,14 +2797,14 @@ const Alertmonitoring_GetNoonlightSettingsForLocationWSResponse = z.object({
|
|
|
2797
2797
|
previousVersions: z.array(NoonlightVersionedSettingsType).optional(),
|
|
2798
2798
|
warningMsg: z.string().optional()
|
|
2799
2799
|
});
|
|
2800
|
-
const Alertmonitoring_GetNoonlightSettingsWSRequest = z.record(z.unknown());
|
|
2800
|
+
const Alertmonitoring_GetNoonlightSettingsWSRequest = z.record(z.string(), z.unknown());
|
|
2801
2801
|
const Alertmonitoring_GetNoonlightSettingsWSResponse = z.object({
|
|
2802
|
-
alertMonitoringSettings: z.record(z.
|
|
2802
|
+
alertMonitoringSettings: z.record(z.string(), Alertmonitoring_NoonlightWSSettings).optional(),
|
|
2803
2803
|
error: z.boolean().optional(),
|
|
2804
2804
|
errorMsg: z.string().optional(),
|
|
2805
2805
|
warningMsg: z.string().optional()
|
|
2806
2806
|
});
|
|
2807
|
-
const Alertmonitoring_GetPromptThreatQualificationsWSRequest = z.record(z.unknown());
|
|
2807
|
+
const Alertmonitoring_GetPromptThreatQualificationsWSRequest = z.record(z.string(), z.unknown());
|
|
2808
2808
|
const Alertmonitoring_GetPromptThreatQualificationsWSResponse = z.object({
|
|
2809
2809
|
error: z.boolean().optional(),
|
|
2810
2810
|
errorMsg: z.string().optional(),
|
|
@@ -2826,7 +2826,7 @@ const Alertmonitoring_OrgStatusWSRequest = z.object({
|
|
|
2826
2826
|
const Alertmonitoring_OrgStatusWSResponse = z.object({
|
|
2827
2827
|
error: z.boolean().optional(),
|
|
2828
2828
|
errorMsg: z.string().optional(),
|
|
2829
|
-
locationStatuses: z.record(z.
|
|
2829
|
+
locationStatuses: z.record(z.string(), MonitoringEnableStatus).optional(),
|
|
2830
2830
|
warningMsg: z.string().optional()
|
|
2831
2831
|
});
|
|
2832
2832
|
const Alertmonitoring_ResetAlertMonitoringTripwireGroupCountWSRequest = z.object({
|
|
@@ -2956,7 +2956,7 @@ const AlteredView = z.object({
|
|
|
2956
2956
|
const AmtSettings = z.object({
|
|
2957
2957
|
alertUnauthorizedFaces: z.boolean().optional(),
|
|
2958
2958
|
createSeekPoints: z.boolean().optional(),
|
|
2959
|
-
doorInfoMap: z.record(z.
|
|
2959
|
+
doorInfoMap: z.record(z.string(), z.lazy(() => BadgeIntegrationDoorInfoType)).optional(),
|
|
2960
2960
|
email: z.string().optional(),
|
|
2961
2961
|
enabled: z.boolean().optional(),
|
|
2962
2962
|
enabledTimestampMs: z.number().int().optional(),
|
|
@@ -3178,7 +3178,7 @@ const AperioTamperStateEvent = z.object({
|
|
|
3178
3178
|
const AperioType = z.object({
|
|
3179
3179
|
enabled: z.boolean().optional(),
|
|
3180
3180
|
integration: IntegrationEnum.optional(),
|
|
3181
|
-
integrationAuditMap: z.record(z.
|
|
3181
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
3182
3182
|
orgUuid: z.string().optional(),
|
|
3183
3183
|
userUuid: z.string().optional()
|
|
3184
3184
|
});
|
|
@@ -3187,7 +3187,7 @@ const ApiTokenAuthTypeEnum = z.string();
|
|
|
3187
3187
|
const ApiTokenApplicationType = z.object({
|
|
3188
3188
|
authType: ApiTokenAuthTypeEnum.optional(),
|
|
3189
3189
|
authenticationTokenHash: z.string().optional(),
|
|
3190
|
-
clientDetails: z.record(z.
|
|
3190
|
+
clientDetails: z.record(z.string(), z.string()).optional(),
|
|
3191
3191
|
clientType: ApiClientTypeEnum.optional(),
|
|
3192
3192
|
csr: z.string().optional(),
|
|
3193
3193
|
displayName: z.string().optional(),
|
|
@@ -3204,7 +3204,7 @@ const ApiTokenType = z.object({
|
|
|
3204
3204
|
authenticationTokenHash: z.string().optional(),
|
|
3205
3205
|
cert: z.string().optional(),
|
|
3206
3206
|
certFingerprint: z.string().optional(),
|
|
3207
|
-
clientDetails: z.record(z.
|
|
3207
|
+
clientDetails: z.record(z.string(), z.string()).optional(),
|
|
3208
3208
|
clientType: ApiClientTypeEnum.optional(),
|
|
3209
3209
|
csr: z.string().optional(),
|
|
3210
3210
|
displayName: z.string().optional(),
|
|
@@ -3229,7 +3229,7 @@ const AudioParamConfig = z.object({
|
|
|
3229
3229
|
});
|
|
3230
3230
|
const AudioPlaybackActionRecordType = z.object({
|
|
3231
3231
|
audioClipUuid: z.string().optional(),
|
|
3232
|
-
audioGatewayStatuses: z.record(z.
|
|
3232
|
+
audioGatewayStatuses: z.record(z.string(), AudioGatewayStatusEnum).optional()
|
|
3233
3233
|
});
|
|
3234
3234
|
const AudioTriggerType = z.object({
|
|
3235
3235
|
activity: ActivityEnum.optional(),
|
|
@@ -3313,7 +3313,7 @@ const IAudioUserConfig = z.object({
|
|
|
3313
3313
|
device_near_audio_silenced: z.boolean().optional(),
|
|
3314
3314
|
device_speaker_enabled: z.boolean().optional(),
|
|
3315
3315
|
event_clip_upload_target: z.string().optional(),
|
|
3316
|
-
firmware_dev_settings: z.record(z.
|
|
3316
|
+
firmware_dev_settings: z.record(z.string(), z.string()).optional(),
|
|
3317
3317
|
frontendEqualizerHighShelf: FrontendEqualizerSettings.optional(),
|
|
3318
3318
|
frontendEqualizerLowShelf: FrontendEqualizerSettings.optional(),
|
|
3319
3319
|
frontendEqualizerPeaking1: FrontendEqualizerSettings.optional(),
|
|
@@ -3343,11 +3343,11 @@ const Audiogateway_GetAudioGatewayConfigWSResponse = z.object({
|
|
|
3343
3343
|
errorMsg: z.string().optional(),
|
|
3344
3344
|
warningMsg: z.string().optional()
|
|
3345
3345
|
});
|
|
3346
|
-
const Audiogateway_GetAudioGatewayOfflineLanStreamingInfoWSRequest = z.record(z.unknown());
|
|
3346
|
+
const Audiogateway_GetAudioGatewayOfflineLanStreamingInfoWSRequest = z.record(z.string(), z.unknown());
|
|
3347
3347
|
const Audiogateway_GetAudioGatewayOfflineLanStreamingInfoWSResponse = z.object({
|
|
3348
3348
|
error: z.boolean().optional(),
|
|
3349
3349
|
errorMsg: z.string().optional(),
|
|
3350
|
-
info: z.record(z.
|
|
3350
|
+
info: z.record(z.string(), Audiogateway_AudioGatewayOfflineLanStreamingInfo).optional(),
|
|
3351
3351
|
warningMsg: z.string().optional()
|
|
3352
3352
|
});
|
|
3353
3353
|
const Audiogateway_GetAudioSeekpointsWSRequest = z.object({
|
|
@@ -3400,7 +3400,7 @@ const FullDeviceStateType = z.object({
|
|
|
3400
3400
|
defaultInterfaceMac: z.string().optional(),
|
|
3401
3401
|
directionRadians: z.number().optional(),
|
|
3402
3402
|
externalIPAddress: z.string().optional(),
|
|
3403
|
-
facetNameMap: z.record(z.
|
|
3403
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
3404
3404
|
firmwareUpdateInProgress: z.boolean().optional(),
|
|
3405
3405
|
firmwareVersion: z.string().optional(),
|
|
3406
3406
|
floorNumber: z.number().int().optional(),
|
|
@@ -3419,8 +3419,8 @@ const FullDeviceStateType = z.object({
|
|
|
3419
3419
|
mediaStorageDeviceUuid: z.string().optional(),
|
|
3420
3420
|
mummified: z.boolean().optional(),
|
|
3421
3421
|
name: z.string().optional(),
|
|
3422
|
-
onCameraState: z.record(z.unknown()).optional(),
|
|
3423
|
-
onCloudState: z.record(z.unknown()).optional(),
|
|
3422
|
+
onCameraState: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
3423
|
+
onCloudState: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
3424
3424
|
policyUuid: z.string().optional(),
|
|
3425
3425
|
region: z.string().optional(),
|
|
3426
3426
|
secondaryLanAddresses: z.array(z.string()).optional(),
|
|
@@ -3456,7 +3456,7 @@ const Audiogateway_GetMediaUrisWSResponse = z.object({
|
|
|
3456
3456
|
wanVodMpdUriTemplate: z.string().optional(),
|
|
3457
3457
|
warningMsg: z.string().optional()
|
|
3458
3458
|
});
|
|
3459
|
-
const Audiogateway_GetMinimalAudioGatewayStatesWSRequest = z.record(z.unknown());
|
|
3459
|
+
const Audiogateway_GetMinimalAudioGatewayStatesWSRequest = z.record(z.string(), z.unknown());
|
|
3460
3460
|
const MinimalAudioGatewayStateType = z.object({
|
|
3461
3461
|
associatedCameras: z.array(z.string()).optional(),
|
|
3462
3462
|
connectionStatus: DeviceStatusEnum.optional(),
|
|
@@ -3465,7 +3465,7 @@ const MinimalAudioGatewayStateType = z.object({
|
|
|
3465
3465
|
defaultInterfaceMac: z.string().optional(),
|
|
3466
3466
|
directionRadians: z.number().optional(),
|
|
3467
3467
|
externalIPAddress: z.string().optional(),
|
|
3468
|
-
facetNameMap: z.record(z.
|
|
3468
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
3469
3469
|
firmwareUpdateInProgress: z.boolean().optional(),
|
|
3470
3470
|
firmwareVersion: z.string().optional(),
|
|
3471
3471
|
floorNumber: z.number().int().optional(),
|
|
@@ -3565,7 +3565,7 @@ const Audioplayback_CancelLoopingAudioPlaybackWSRequest = z.object({
|
|
|
3565
3565
|
const Audioplayback_CancelLoopingAudioPlaybackWSResponse = z.object({
|
|
3566
3566
|
error: z.boolean().optional(),
|
|
3567
3567
|
errorMsg: z.string().optional(),
|
|
3568
|
-
successMap: z.record(z.
|
|
3568
|
+
successMap: z.record(z.string(), z.boolean()).optional(),
|
|
3569
3569
|
warningMsg: z.string().optional()
|
|
3570
3570
|
});
|
|
3571
3571
|
const Audioplayback_DeleteAudioUploadMetadataWSRequest = z.object({
|
|
@@ -3576,7 +3576,7 @@ const Audioplayback_DeleteAudioUploadMetadataWSResponse = z.object({
|
|
|
3576
3576
|
errorMsg: z.string().optional(),
|
|
3577
3577
|
warningMsg: z.string().optional()
|
|
3578
3578
|
});
|
|
3579
|
-
const Audioplayback_GetAudioUploadMetadataForOrgWSRequest = z.record(z.unknown());
|
|
3579
|
+
const Audioplayback_GetAudioUploadMetadataForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
3580
3580
|
const Audioplayback_GetAudioUploadMetadataForOrgWSResponse = z.object({
|
|
3581
3581
|
audioUploadMetadata: z.array(AudioUploadMetadataType).optional(),
|
|
3582
3582
|
error: z.boolean().optional(),
|
|
@@ -3680,7 +3680,7 @@ const AuxiliaryRelayPortType = z.object({
|
|
|
3680
3680
|
const AvigilonAltaType = z.object({
|
|
3681
3681
|
enabled: z.boolean().optional(),
|
|
3682
3682
|
integration: IntegrationEnum.optional(),
|
|
3683
|
-
integrationAuditMap: z.record(z.
|
|
3683
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
3684
3684
|
orgUuid: z.string().optional(),
|
|
3685
3685
|
userUuid: z.string().optional()
|
|
3686
3686
|
});
|
|
@@ -3720,7 +3720,7 @@ const BadgeIntegrationRuleTriggerType = z.object({
|
|
|
3720
3720
|
const BadgeIntegrationSettings = z.object({
|
|
3721
3721
|
alertUnauthorizedFaces: z.boolean().optional(),
|
|
3722
3722
|
createSeekPoints: z.boolean().optional(),
|
|
3723
|
-
doorInfoMap: z.record(z.
|
|
3723
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
3724
3724
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
3725
3725
|
misconfiguredDoors: z.array(z.number().int()).optional(),
|
|
3726
3726
|
placeId: z.number().int().optional(),
|
|
@@ -3756,7 +3756,7 @@ const Device_config_settings_ExternalReadableDeviceSettings = z.object({
|
|
|
3756
3756
|
cloud_archive_upload_schedule: z.array(WeeklyMinuteIntervalType).optional(),
|
|
3757
3757
|
cloud_archive_upload_schedule_inverted: z.boolean().optional(),
|
|
3758
3758
|
cloud_archive_upload_schedule_uuid: z.string().optional(),
|
|
3759
|
-
firmware_dev_settings: z.record(z.
|
|
3759
|
+
firmware_dev_settings: z.record(z.string(), z.string()).optional(),
|
|
3760
3760
|
led_mode_blink_period_ms: z.number().int().optional(),
|
|
3761
3761
|
led_mode_when_active: LEDModeEnum.optional(),
|
|
3762
3762
|
led_mode_when_inactive: LEDModeEnum.optional(),
|
|
@@ -3843,7 +3843,7 @@ const VideoDoorbellSettings = z.object({
|
|
|
3843
3843
|
standalone_doorbell_mode: z.boolean().optional()
|
|
3844
3844
|
});
|
|
3845
3845
|
const Device_config_userconfig_ExternalReadableFacetedUserConfig = z.object({
|
|
3846
|
-
audioFacetSettings: z.record(z.
|
|
3846
|
+
audioFacetSettings: z.record(z.string(), z.lazy(() => Device_config_settings_ExternalReadableAudioSettings)).optional(),
|
|
3847
3847
|
buttonSettings: Device_config_settings_ExternalReadableButtonSettings.optional(),
|
|
3848
3848
|
climateSettings: ClimateSettings.optional(),
|
|
3849
3849
|
deviceSettings: Device_config_settings_ExternalReadableDeviceSettings.optional(),
|
|
@@ -3859,7 +3859,7 @@ const Device_config_userconfig_ExternalReadableFacetedUserConfig = z.object({
|
|
|
3859
3859
|
tamperSettings: TamperSettings.optional(),
|
|
3860
3860
|
thirdPartyCameraSettings: ThirdPartyCameraSettings.optional(),
|
|
3861
3861
|
videoDoorbellSettings: VideoDoorbellSettings.optional(),
|
|
3862
|
-
videoFacetSettings: z.record(z.
|
|
3862
|
+
videoFacetSettings: z.record(z.string(), z.lazy(() => Device_config_settings_ExternalReadableVideoSettings)).optional()
|
|
3863
3863
|
});
|
|
3864
3864
|
const Badgereader_GetBadgeReaderConfigWSResponse = z.object({
|
|
3865
3865
|
config: Device_config_userconfig_ExternalReadableFacetedUserConfig.optional(),
|
|
@@ -3877,7 +3877,7 @@ const MinimalDeviceStateType = z.object({
|
|
|
3877
3877
|
defaultInterfaceMac: z.string().optional(),
|
|
3878
3878
|
directionRadians: z.number().optional(),
|
|
3879
3879
|
externalIPAddress: z.string().optional(),
|
|
3880
|
-
facetNameMap: z.record(z.
|
|
3880
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
3881
3881
|
firmwareUpdateInProgress: z.boolean().optional(),
|
|
3882
3882
|
firmwareVersion: z.string().optional(),
|
|
3883
3883
|
floorNumber: z.number().int().optional(),
|
|
@@ -3915,19 +3915,19 @@ const Badgereader_RebootBadgeReaderWSRequest = z.object({
|
|
|
3915
3915
|
const ButtonSettingsSelectiveUpdate = z.object({
|
|
3916
3916
|
button_emergency_onsite_contact: EmergencyContact.optional(),
|
|
3917
3917
|
button_test_mode_enabled: z.boolean().optional(),
|
|
3918
|
-
updatedSetMethodMap: z.record(z.
|
|
3918
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
3919
3919
|
});
|
|
3920
3920
|
const ClimateSettingsSelectiveUpdate = z.object({
|
|
3921
3921
|
alert_window_minutes: z.number().int().optional(),
|
|
3922
3922
|
smoke_ai_threshold: z.number().optional(),
|
|
3923
3923
|
thc_ai_threshold: z.number().optional(),
|
|
3924
|
-
updatedSetMethodMap: z.record(z.
|
|
3924
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
3925
3925
|
vape_ai_threshold: z.number().optional()
|
|
3926
3926
|
});
|
|
3927
3927
|
const Device_config_settings_ExternalDeviceSettingsSelectiveUpdate = z.object({
|
|
3928
3928
|
ai_license_invalid: z.boolean().optional(),
|
|
3929
3929
|
bandwidth_reports_disabled: z.boolean().optional(),
|
|
3930
|
-
firmware_dev_settings: z.record(z.
|
|
3930
|
+
firmware_dev_settings: z.record(z.string(), z.string()).optional(),
|
|
3931
3931
|
led_mode_blink_period_ms: z.number().int().optional(),
|
|
3932
3932
|
led_mode_when_active: LEDModeEnum.optional(),
|
|
3933
3933
|
led_mode_when_inactive: LEDModeEnum.optional(),
|
|
@@ -3941,7 +3941,7 @@ const Device_config_settings_ExternalDeviceSettingsSelectiveUpdate = z.object({
|
|
|
3941
3941
|
storage_target_free_megabytes: z.number().int().optional(),
|
|
3942
3942
|
storage_target_free_space_permyriad: z.number().int().optional(),
|
|
3943
3943
|
thumbstrip_upload_target: z.string().optional(),
|
|
3944
|
-
updatedSetMethodMap: z.record(z.
|
|
3944
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
3945
3945
|
});
|
|
3946
3946
|
const DeviceVideoSettingsSelectiveUpdate = z.object({
|
|
3947
3947
|
alert_rate_limit_human_only: BurstyRateLimit.optional(),
|
|
@@ -3950,7 +3950,7 @@ const DeviceVideoSettingsSelectiveUpdate = z.object({
|
|
|
3950
3950
|
ir_double_tap: z.boolean().optional(),
|
|
3951
3951
|
ir_filter_mode: z.string().optional(),
|
|
3952
3952
|
ir_leds_mode: z.string().optional(),
|
|
3953
|
-
updatedSetMethodMap: z.record(z.
|
|
3953
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
3954
3954
|
});
|
|
3955
3955
|
const Device_config_settings_ExternalDoorControllerSettingsSelectiveUpdate = z.object({
|
|
3956
3956
|
autocomponentize_readers: z.boolean().optional(),
|
|
@@ -3959,19 +3959,19 @@ const Device_config_settings_ExternalDoorControllerSettingsSelectiveUpdate = z.o
|
|
|
3959
3959
|
pressure_switch_tamper_normally_open: z.boolean().optional(),
|
|
3960
3960
|
proximity_sensor_tamper_disabled: z.boolean().optional(),
|
|
3961
3961
|
proximity_sensor_tamper_distance_threshold: z.number().optional(),
|
|
3962
|
-
updatedSetMethodMap: z.record(z.
|
|
3962
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
3963
3963
|
});
|
|
3964
3964
|
const DoorReaderSettingsSelectiveUpdate = z.object({
|
|
3965
3965
|
dr_enable_audio_feedback: z.boolean().optional(),
|
|
3966
3966
|
tof_max_distance: z.number().optional(),
|
|
3967
3967
|
tof_min_distance: z.number().optional(),
|
|
3968
3968
|
tof_min_signal_over_noise: z.number().optional(),
|
|
3969
|
-
updatedSetMethodMap: z.record(z.
|
|
3969
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
3970
3970
|
});
|
|
3971
3971
|
const DoorSensorSettingsSelectiveUpdate = z.object({
|
|
3972
3972
|
ajar_threshold_enabled: z.boolean().optional(),
|
|
3973
3973
|
ajar_threshold_sec: z.number().int().optional(),
|
|
3974
|
-
updatedSetMethodMap: z.record(z.
|
|
3974
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
3975
3975
|
});
|
|
3976
3976
|
const EnvironmentalGatewaySettingsSelectiveUpdate = z.object({
|
|
3977
3977
|
data_measurement_interval_sec: z.number().int().optional(),
|
|
@@ -3983,7 +3983,7 @@ const EnvironmentalGatewaySettingsSelectiveUpdate = z.object({
|
|
|
3983
3983
|
smoke_confidence_threshold: z.number().optional(),
|
|
3984
3984
|
smoke_thc_confidence_threshold: z.number().optional(),
|
|
3985
3985
|
smoke_tobacco_confidence_threshold: z.number().optional(),
|
|
3986
|
-
updatedSetMethodMap: z.record(z.
|
|
3986
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
3987
3987
|
vape_alert_backoff_sec: z.number().int().optional(),
|
|
3988
3988
|
vape_confidence_threshold: z.number().optional(),
|
|
3989
3989
|
vape_thc_confidence_threshold: z.number().optional()
|
|
@@ -3993,20 +3993,20 @@ const RobotSettingsSelectiveUpdate = z.object({
|
|
|
3993
3993
|
home_longitude: z.number().optional(),
|
|
3994
3994
|
map_created_at_ms: z.number().int().optional(),
|
|
3995
3995
|
map_id: z.string().optional(),
|
|
3996
|
-
updatedSetMethodMap: z.record(z.
|
|
3996
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
3997
3997
|
});
|
|
3998
3998
|
const TamperSettingsSelectiveUpdate = z.object({
|
|
3999
3999
|
accelerometer_change_tamper_threshold: z.number().optional(),
|
|
4000
4000
|
accelerometer_disabled: z.boolean().optional(),
|
|
4001
4001
|
pressure_switch_tamper_disabled: z.boolean().optional(),
|
|
4002
|
-
updatedSetMethodMap: z.record(z.
|
|
4002
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
4003
4003
|
});
|
|
4004
4004
|
const VideoDoorbellSettingsSelectiveUpdate = z.object({
|
|
4005
4005
|
standalone_doorbell_mode: z.boolean().optional(),
|
|
4006
|
-
updatedSetMethodMap: z.record(z.
|
|
4006
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
4007
4007
|
});
|
|
4008
4008
|
const Device_config_userconfig_ExternalUpdateableFacetedUserConfig = z.object({
|
|
4009
|
-
audioFacetSettings: z.record(z.
|
|
4009
|
+
audioFacetSettings: z.record(z.string(), z.lazy(() => Device_config_settings_ExternalAudioSettingsSelectiveUpdate)).optional(),
|
|
4010
4010
|
buttonSettings: ButtonSettingsSelectiveUpdate.optional(),
|
|
4011
4011
|
climateSettings: ClimateSettingsSelectiveUpdate.optional(),
|
|
4012
4012
|
deviceSettings: Device_config_settings_ExternalDeviceSettingsSelectiveUpdate.optional(),
|
|
@@ -4019,7 +4019,7 @@ const Device_config_userconfig_ExternalUpdateableFacetedUserConfig = z.object({
|
|
|
4019
4019
|
robotSettings: RobotSettingsSelectiveUpdate.optional(),
|
|
4020
4020
|
tamperSettings: TamperSettingsSelectiveUpdate.optional(),
|
|
4021
4021
|
videoDoorbellSettings: VideoDoorbellSettingsSelectiveUpdate.optional(),
|
|
4022
|
-
videoFacetSettings: z.record(z.
|
|
4022
|
+
videoFacetSettings: z.record(z.string(), z.lazy(() => Device_config_settings_ExternalVideoSettingsSelectiveUpdate)).optional()
|
|
4023
4023
|
});
|
|
4024
4024
|
const Badgereader_UpdateBadgeReaderConfigWSRequest = z.object({
|
|
4025
4025
|
configUpdate: Device_config_userconfig_ExternalUpdateableFacetedUserConfig.optional()
|
|
@@ -4045,7 +4045,7 @@ const BaseCatalogItem = z.object({
|
|
|
4045
4045
|
productType: z.string().optional()
|
|
4046
4046
|
});
|
|
4047
4047
|
const ClaimKeyReturnEvent = z.object({
|
|
4048
|
-
returnedProductQuantities: z.record(z.
|
|
4048
|
+
returnedProductQuantities: z.record(z.string(), z.number().int()).optional(),
|
|
4049
4049
|
timestamp: z.string().datetime({ offset: true }).optional()
|
|
4050
4050
|
});
|
|
4051
4051
|
const BaseClaimKey = z.object({
|
|
@@ -4341,8 +4341,8 @@ const PolicyAlertV2Type = z.object({
|
|
|
4341
4341
|
ch2oPpb: z.number().optional(),
|
|
4342
4342
|
ch2oPpbThreshold: z.number().optional(),
|
|
4343
4343
|
clipLocation: MetaDataLocationType.optional(),
|
|
4344
|
-
clipLocationMap: z.record(z.
|
|
4345
|
-
clipLocationMapV2: z.record(z.
|
|
4344
|
+
clipLocationMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
4345
|
+
clipLocationMapV2: z.record(z.string(), z.string()).optional(),
|
|
4346
4346
|
cllmBooleanValue: z.boolean().optional(),
|
|
4347
4347
|
cllmCheckCondition: CheckCondition.optional(),
|
|
4348
4348
|
cllmIntegerValue: z.number().int().optional(),
|
|
@@ -4431,8 +4431,8 @@ const PolicyAlertV2Type = z.object({
|
|
|
4431
4431
|
const BasePolicyAlertType = z.object({
|
|
4432
4432
|
alertMonitoringThreatCaseUuid: z.string().optional(),
|
|
4433
4433
|
alertMonitoringVerified: z.boolean().optional(),
|
|
4434
|
-
clipLocationMap: z.record(z.
|
|
4435
|
-
clipLocationMapV2: z.record(z.
|
|
4434
|
+
clipLocationMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
4435
|
+
clipLocationMapV2: z.record(z.string(), z.string()).optional(),
|
|
4436
4436
|
delayedProcessing: z.boolean().optional(),
|
|
4437
4437
|
deleted: z.boolean().optional(),
|
|
4438
4438
|
durationSec: z.number().int().optional(),
|
|
@@ -4571,7 +4571,7 @@ const Billing_FreeTrialEligibilityWSResponse = z.object({
|
|
|
4571
4571
|
errorMsg: z.string().optional(),
|
|
4572
4572
|
warningMsg: z.string().optional()
|
|
4573
4573
|
});
|
|
4574
|
-
const Billing_GetCustomerInformationWSRequest = z.record(z.unknown());
|
|
4574
|
+
const Billing_GetCustomerInformationWSRequest = z.record(z.string(), z.unknown());
|
|
4575
4575
|
const Billing_GetCustomerInformationWSResponse = z.object({
|
|
4576
4576
|
addressCity: z.string().optional(),
|
|
4577
4577
|
addressCountry: z.string().optional(),
|
|
@@ -4622,7 +4622,7 @@ const Billing_GetInvoicesWSResponse = z.object({
|
|
|
4622
4622
|
invoices: z.array(Billing_GetInvoicesWSResponse_Invoice).optional(),
|
|
4623
4623
|
warningMsg: z.string().optional()
|
|
4624
4624
|
});
|
|
4625
|
-
const Billing_GetMetersWSRequest = z.record(z.unknown());
|
|
4625
|
+
const Billing_GetMetersWSRequest = z.record(z.string(), z.unknown());
|
|
4626
4626
|
const Billing_GetMetersWSResponse_Meter = z.object({
|
|
4627
4627
|
archived: z.boolean().optional(),
|
|
4628
4628
|
created: z.number().int().optional(),
|
|
@@ -4637,7 +4637,7 @@ const Billing_GetMetersWSResponse = z.object({
|
|
|
4637
4637
|
meters: z.array(Billing_GetMetersWSResponse_Meter).optional(),
|
|
4638
4638
|
warningMsg: z.string().optional()
|
|
4639
4639
|
});
|
|
4640
|
-
const Billing_GetPaymentMethodsWSRequest = z.record(z.unknown());
|
|
4640
|
+
const Billing_GetPaymentMethodsWSRequest = z.record(z.string(), z.unknown());
|
|
4641
4641
|
const Billing_GetPaymentMethodsWSResponse_PaymentMethod = z.object({
|
|
4642
4642
|
brand: z.string().optional(),
|
|
4643
4643
|
default: z.boolean().optional(),
|
|
@@ -4651,7 +4651,7 @@ const Billing_GetPaymentMethodsWSResponse = z.object({
|
|
|
4651
4651
|
paymentMethods: z.array(Billing_GetPaymentMethodsWSResponse_PaymentMethod).optional(),
|
|
4652
4652
|
warningMsg: z.string().optional()
|
|
4653
4653
|
});
|
|
4654
|
-
const Billing_GetProductsWSRequest = z.record(z.unknown());
|
|
4654
|
+
const Billing_GetProductsWSRequest = z.record(z.string(), z.unknown());
|
|
4655
4655
|
const Billing_GetProductsWSResponse_Price = z.object({
|
|
4656
4656
|
active: z.boolean().optional(),
|
|
4657
4657
|
billingScheme: z.string().optional(),
|
|
@@ -4687,7 +4687,7 @@ const Billing_GetProductsWSResponse = z.object({
|
|
|
4687
4687
|
products: z.array(Billing_GetProductsWSResponse_Product).optional(),
|
|
4688
4688
|
warningMsg: z.string().optional()
|
|
4689
4689
|
});
|
|
4690
|
-
const Billing_GetSubscriptionWSRequest = z.record(z.unknown());
|
|
4690
|
+
const Billing_GetSubscriptionWSRequest = z.record(z.string(), z.unknown());
|
|
4691
4691
|
const Billing_GetSubscriptionWSResponse_Subscription = z.object({
|
|
4692
4692
|
cancelAtPeriodEnd: z.boolean().optional(),
|
|
4693
4693
|
canceledAt: z.number().int().optional(),
|
|
@@ -4716,12 +4716,12 @@ const Billing_GetSubscriptionWSResponse = z.object({
|
|
|
4716
4716
|
});
|
|
4717
4717
|
const Billing_HistoricalUsageWSRequest = z.object({
|
|
4718
4718
|
products: z.array(z.string()).optional(),
|
|
4719
|
-
range: z.record(z.
|
|
4719
|
+
range: z.record(z.string(), z.string()).optional()
|
|
4720
4720
|
});
|
|
4721
4721
|
const Billing_HistoricalUsageWSResponse = z.object({
|
|
4722
4722
|
error: z.boolean().optional(),
|
|
4723
4723
|
errorMsg: z.string().optional(),
|
|
4724
|
-
usage: z.record(z.
|
|
4724
|
+
usage: z.record(z.string(), z.array(z.lazy(() => Billing_HistoricalUsageWSResponse_HistoricalUsageElement))).optional(),
|
|
4725
4725
|
warningMsg: z.string().optional()
|
|
4726
4726
|
});
|
|
4727
4727
|
const Billing_HistoricalUsageWSResponse_HistoricalUsageElement = z.object({
|
|
@@ -4808,7 +4808,7 @@ const BinaryAggregationValue = z.object({
|
|
|
4808
4808
|
utcDate: z.string().optional()
|
|
4809
4809
|
});
|
|
4810
4810
|
const Ble_BleDeviceMap = z.object({
|
|
4811
|
-
keyToSecureBeacon: z.record(z.
|
|
4811
|
+
keyToSecureBeacon: z.record(z.string(), z.array(z.string())).optional()
|
|
4812
4812
|
});
|
|
4813
4813
|
const Ble_BleRegisteredDeviceWSType = z.object({
|
|
4814
4814
|
deleted: z.boolean().optional(),
|
|
@@ -4822,7 +4822,7 @@ const Ble_BleUnregisteredHardwareWSType = z.object({
|
|
|
4822
4822
|
mac: z.string().optional(),
|
|
4823
4823
|
secret: z.array(z.string()).optional()
|
|
4824
4824
|
});
|
|
4825
|
-
const Ble_GetBaseStationsWSRequest = z.record(z.unknown());
|
|
4825
|
+
const Ble_GetBaseStationsWSRequest = z.record(z.string(), z.unknown());
|
|
4826
4826
|
const Ble_GetBaseStationsWSResponse = z.object({
|
|
4827
4827
|
baseStations: z.array(z.string()).optional(),
|
|
4828
4828
|
error: z.boolean().optional(),
|
|
@@ -4832,19 +4832,19 @@ const Ble_GetBaseStationsWSResponse = z.object({
|
|
|
4832
4832
|
const Ble_GetSecureSecretForRegisteredWSResponse = z.object({
|
|
4833
4833
|
error: z.boolean().optional(),
|
|
4834
4834
|
errorMsg: z.string().optional(),
|
|
4835
|
-
hardwareVariationToFirmwareDownloadUrl: z.record(z.
|
|
4836
|
-
keyToRegisteredDevice: z.record(z.
|
|
4835
|
+
hardwareVariationToFirmwareDownloadUrl: z.record(z.string(), z.record(z.string(), z.string())).optional(),
|
|
4836
|
+
keyToRegisteredDevice: z.record(z.string(), Ble_BleRegisteredDeviceWSType).optional(),
|
|
4837
4837
|
warningMsg: z.string().optional()
|
|
4838
4838
|
});
|
|
4839
4839
|
const Ble_GetSecureSecretForUnregisteredWSResponse = z.object({
|
|
4840
4840
|
error: z.boolean().optional(),
|
|
4841
4841
|
errorMsg: z.string().optional(),
|
|
4842
|
-
keyToUnregisteredDevice: z.record(z.
|
|
4842
|
+
keyToUnregisteredDevice: z.record(z.string(), Ble_BleUnregisteredHardwareWSType).optional(),
|
|
4843
4843
|
warningMsg: z.string().optional()
|
|
4844
4844
|
});
|
|
4845
|
-
const Ble_GetSensorHardwareFirmwareUpdateDetailsRequest = z.record(z.unknown());
|
|
4845
|
+
const Ble_GetSensorHardwareFirmwareUpdateDetailsRequest = z.record(z.string(), z.unknown());
|
|
4846
4846
|
const Ble_GetSensorHardwareFirmwareUpdateDetailsResponse = z.object({
|
|
4847
|
-
hardwareVariationToFirmwareDownloadUrl: z.record(z.
|
|
4847
|
+
hardwareVariationToFirmwareDownloadUrl: z.record(z.string(), z.record(z.string(), z.string())).optional()
|
|
4848
4848
|
});
|
|
4849
4849
|
const Ble_RegisterSensorWSRequest = z.object({
|
|
4850
4850
|
bleData: z.array(z.string()).optional(),
|
|
@@ -4873,7 +4873,7 @@ const Ble_UnregisterSensorWSResponse = z.object({
|
|
|
4873
4873
|
const BoardPhysicalPortConfigType = z.object({
|
|
4874
4874
|
boardNum: z.number().int().optional(),
|
|
4875
4875
|
ownerHardwareType: HardwareVariationEnum.optional(),
|
|
4876
|
-
portMap: z.record(z.
|
|
4876
|
+
portMap: z.record(z.string(), z.lazy(() => PhysicalPortType)).optional()
|
|
4877
4877
|
});
|
|
4878
4878
|
const ContentDisposition = z.object({
|
|
4879
4879
|
attachment: z.boolean().optional(),
|
|
@@ -4895,7 +4895,7 @@ const MediaType = z.object({
|
|
|
4895
4895
|
registered: z.boolean().optional()
|
|
4896
4896
|
}).optional(),
|
|
4897
4897
|
concrete: z.boolean().optional(),
|
|
4898
|
-
parameters: z.record(z.
|
|
4898
|
+
parameters: z.record(z.string(), z.string()).optional(),
|
|
4899
4899
|
qualityValue: z.number().optional(),
|
|
4900
4900
|
subtype: z.string().optional(),
|
|
4901
4901
|
subtypeSuffix: z.string().optional(),
|
|
@@ -4903,8 +4903,8 @@ const MediaType = z.object({
|
|
|
4903
4903
|
wildcardSubtype: z.boolean().optional(),
|
|
4904
4904
|
wildcardType: z.boolean().optional()
|
|
4905
4905
|
});
|
|
4906
|
-
const MessageBodyWorkers = z.record(z.unknown());
|
|
4907
|
-
const Providers = z.record(z.unknown());
|
|
4906
|
+
const MessageBodyWorkers = z.record(z.string(), z.unknown());
|
|
4907
|
+
const Providers = z.record(z.string(), z.unknown());
|
|
4908
4908
|
const BoundingBoxType = z.object({
|
|
4909
4909
|
bottom: z.number().optional(),
|
|
4910
4910
|
left: z.number().optional(),
|
|
@@ -4925,8 +4925,8 @@ const BrivoSettings = z.object({
|
|
|
4925
4925
|
clientId: z.string().optional(),
|
|
4926
4926
|
clientSecret: z.string().optional(),
|
|
4927
4927
|
createSeekPoints: z.boolean().optional(),
|
|
4928
|
-
doorInfoMap: z.record(z.
|
|
4929
|
-
doorToCameraMap: z.record(z.
|
|
4928
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
4929
|
+
doorToCameraMap: z.record(z.string(), z.array(z.string())).optional(),
|
|
4930
4930
|
enabled: z.boolean().optional(),
|
|
4931
4931
|
enabledTimestampMs: z.number().int().optional(),
|
|
4932
4932
|
enablingUser: z.string().optional(),
|
|
@@ -4943,12 +4943,12 @@ const BrivoSettings = z.object({
|
|
|
4943
4943
|
const BrivoType = z.object({
|
|
4944
4944
|
enabled: z.boolean().optional(),
|
|
4945
4945
|
integration: IntegrationEnum.optional(),
|
|
4946
|
-
integrationAuditMap: z.record(z.
|
|
4946
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
4947
4947
|
orgUuid: z.string().optional(),
|
|
4948
4948
|
userUuid: z.string().optional()
|
|
4949
4949
|
});
|
|
4950
4950
|
const ButterflyMXSettings = z.object({
|
|
4951
|
-
buildingWebhookIdMap: z.record(z.
|
|
4951
|
+
buildingWebhookIdMap: z.record(z.string(), z.string()).optional(),
|
|
4952
4952
|
createSeekPoints: z.boolean().optional(),
|
|
4953
4953
|
enabled: z.boolean().optional(),
|
|
4954
4954
|
enabledTimestampMs: z.number().int().optional(),
|
|
@@ -4956,7 +4956,7 @@ const ButterflyMXSettings = z.object({
|
|
|
4956
4956
|
enablingUserUuid: z.string().optional(),
|
|
4957
4957
|
indexFaces: z.boolean().optional(),
|
|
4958
4958
|
migrated: z.boolean().optional(),
|
|
4959
|
-
panelInfoMap: z.record(z.
|
|
4959
|
+
panelInfoMap: z.record(z.string(), z.lazy(() => ButterflymxPanelInfoType)).optional(),
|
|
4960
4960
|
refreshToken: z.string().optional(),
|
|
4961
4961
|
rhombusToken: z.string().optional(),
|
|
4962
4962
|
saveClips: z.boolean().optional()
|
|
@@ -4964,7 +4964,7 @@ const ButterflyMXSettings = z.object({
|
|
|
4964
4964
|
const ButterflyMXType = z.object({
|
|
4965
4965
|
enabled: z.boolean().optional(),
|
|
4966
4966
|
integration: IntegrationEnum.optional(),
|
|
4967
|
-
integrationAuditMap: z.record(z.
|
|
4967
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
4968
4968
|
orgUuid: z.string().optional(),
|
|
4969
4969
|
userUuid: z.string().optional()
|
|
4970
4970
|
});
|
|
@@ -5036,14 +5036,14 @@ const Button_GetButtonPressEventsForSensorWSResponse = z.object({
|
|
|
5036
5036
|
events: z.array(ButtonEventType).optional(),
|
|
5037
5037
|
warningMsg: z.string().optional()
|
|
5038
5038
|
});
|
|
5039
|
-
const Button_GetButtonRulesForOrgWSRequest = z.record(z.unknown());
|
|
5039
|
+
const Button_GetButtonRulesForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
5040
5040
|
const Button_GetButtonRulesForOrgWSResponse = z.object({
|
|
5041
|
-
buttonUuidToRulesMap: z.record(z.
|
|
5041
|
+
buttonUuidToRulesMap: z.record(z.string(), z.array(Button_ExternalButtonRuleType)).optional(),
|
|
5042
5042
|
error: z.boolean().optional(),
|
|
5043
5043
|
errorMsg: z.string().optional(),
|
|
5044
5044
|
warningMsg: z.string().optional()
|
|
5045
5045
|
});
|
|
5046
|
-
const Button_GetMinimalButtonStatesWSRequest = z.record(z.unknown());
|
|
5046
|
+
const Button_GetMinimalButtonStatesWSRequest = z.record(z.string(), z.unknown());
|
|
5047
5047
|
const Button_MinimalButtonStateType = z.object({
|
|
5048
5048
|
associatedCameras: z.array(z.string()).optional(),
|
|
5049
5049
|
batteryPercent: z.number().int().optional(),
|
|
@@ -5217,9 +5217,9 @@ const CameraType = z.object({
|
|
|
5217
5217
|
customData: z.string().optional(),
|
|
5218
5218
|
deleted: z.boolean().optional(),
|
|
5219
5219
|
description: z.string().optional(),
|
|
5220
|
-
deviceFacetRadians: z.record(z.
|
|
5220
|
+
deviceFacetRadians: z.record(z.string(), z.number()).optional(),
|
|
5221
5221
|
directionRadians: z.number().optional(),
|
|
5222
|
-
facetNameMap: z.record(z.
|
|
5222
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
5223
5223
|
floorNumber: z.number().int().optional(),
|
|
5224
5224
|
hardwareId: z.string().optional(),
|
|
5225
5225
|
hwVariation: HardwareVariationEnum.optional(),
|
|
@@ -5271,8 +5271,8 @@ const Camera_CameraCurrentStateType = z.object({
|
|
|
5271
5271
|
healthStatusDetails: z.string().optional(),
|
|
5272
5272
|
latestFirmwareVersion: z.string().optional(),
|
|
5273
5273
|
mediaRegion: z.string().optional(),
|
|
5274
|
-
onCameraState: z.record(z.unknown()).optional(),
|
|
5275
|
-
onCloudState: z.record(z.unknown()).optional(),
|
|
5274
|
+
onCameraState: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
5275
|
+
onCloudState: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
5276
5276
|
region: z.string().optional(),
|
|
5277
5277
|
serialNumber: z.string().optional(),
|
|
5278
5278
|
ssid: z.string().optional(),
|
|
@@ -5288,10 +5288,10 @@ const Camera_CameraExternalFacetedType = z.object({
|
|
|
5288
5288
|
customData: z.string().optional(),
|
|
5289
5289
|
deleted: z.boolean().optional(),
|
|
5290
5290
|
description: z.string().optional(),
|
|
5291
|
-
deviceFacetRadians: z.record(z.
|
|
5291
|
+
deviceFacetRadians: z.record(z.string(), z.number()).optional(),
|
|
5292
5292
|
deviceUuid: z.string().optional(),
|
|
5293
5293
|
directionRadians: z.number().optional(),
|
|
5294
|
-
facetNameMap: z.record(z.
|
|
5294
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
5295
5295
|
floorNumber: z.number().int().optional(),
|
|
5296
5296
|
hwVariation: HardwareVariationEnum.optional(),
|
|
5297
5297
|
latitude: z.number().optional(),
|
|
@@ -5314,9 +5314,9 @@ const Camera_CameraExternalType = z.object({
|
|
|
5314
5314
|
customData: z.string().optional(),
|
|
5315
5315
|
deleted: z.boolean().optional(),
|
|
5316
5316
|
description: z.string().optional(),
|
|
5317
|
-
deviceFacetRadians: z.record(z.
|
|
5317
|
+
deviceFacetRadians: z.record(z.string(), z.number()).optional(),
|
|
5318
5318
|
directionRadians: z.number().optional(),
|
|
5319
|
-
facetNameMap: z.record(z.
|
|
5319
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
5320
5320
|
floorNumber: z.number().int().optional(),
|
|
5321
5321
|
hwVariation: HardwareVariationEnum.optional(),
|
|
5322
5322
|
latitude: z.number().optional(),
|
|
@@ -5357,7 +5357,7 @@ const FootageBoundingBoxType = z.object({
|
|
|
5357
5357
|
croppedImageLocator: z.string().optional(),
|
|
5358
5358
|
customActivityColor: z.string().optional(),
|
|
5359
5359
|
fn: z.string().optional(),
|
|
5360
|
-
kp: z.record(z.
|
|
5360
|
+
kp: z.record(z.string(), z.lazy(() => PointType)).optional(),
|
|
5361
5361
|
l: z.number().int(),
|
|
5362
5362
|
loudness: z.number().int().optional(),
|
|
5363
5363
|
lp: z.string().optional(),
|
|
@@ -5430,7 +5430,7 @@ const VideoWallType = z.object({
|
|
|
5430
5430
|
orgUuid: z.string().optional(),
|
|
5431
5431
|
othersCanEdit: z.boolean().optional(),
|
|
5432
5432
|
ownerUserUuid: z.string().optional(),
|
|
5433
|
-
settings: z.record(z.unknown()).optional(),
|
|
5433
|
+
settings: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
5434
5434
|
shared: z.boolean().optional(),
|
|
5435
5435
|
uuid: z.string().optional()
|
|
5436
5436
|
});
|
|
@@ -5460,7 +5460,7 @@ const Camera_DeleteCustomFootageSeekpointsWSRequest = z.object({
|
|
|
5460
5460
|
startTimestampMs: z.number().int().optional()
|
|
5461
5461
|
});
|
|
5462
5462
|
const Camera_DeleteCustomFootageSeekpointsWSResponse = z.object({
|
|
5463
|
-
deleteSeekpointResponseMap: z.record(z.
|
|
5463
|
+
deleteSeekpointResponseMap: z.record(z.string(), z.lazy(() => Camera_DeleteCustomFootageSeekpointsWSResponse_SeekPointDeleteResponse)).optional(),
|
|
5464
5464
|
error: z.boolean().optional(),
|
|
5465
5465
|
errorMsg: z.string().optional(),
|
|
5466
5466
|
warningMsg: z.string().optional()
|
|
@@ -5498,7 +5498,7 @@ const Camera_EraseCameraWSResponse = z.object({
|
|
|
5498
5498
|
errorMsg: z.string().optional(),
|
|
5499
5499
|
warningMsg: z.string().optional()
|
|
5500
5500
|
});
|
|
5501
|
-
const Camera_FindAllSharedLiveVideoStreamsWSRequest = z.record(z.unknown());
|
|
5501
|
+
const Camera_FindAllSharedLiveVideoStreamsWSRequest = z.record(z.string(), z.unknown());
|
|
5502
5502
|
const Camera_SharedLiveVideoStreamWS = z.object({
|
|
5503
5503
|
audioDeviceHwVar: HardwareVariationEnum.optional(),
|
|
5504
5504
|
audioGatewayUuid: z.string().optional(),
|
|
@@ -5542,7 +5542,7 @@ const Camera_FindSharedVideoWallsWSRequest = z.object({
|
|
|
5542
5542
|
videoWallUuid: z.string().optional()
|
|
5543
5543
|
});
|
|
5544
5544
|
const Camera_SharedVideoWallWS = z.object({
|
|
5545
|
-
deviceScheduleMap: z.record(z.
|
|
5545
|
+
deviceScheduleMap: z.record(z.string(), z.lazy(() => DeviceSchedule)).optional(),
|
|
5546
5546
|
expirationTime: z.number().int().optional(),
|
|
5547
5547
|
hideOverlay: z.boolean().optional(),
|
|
5548
5548
|
invertSchedule: z.boolean().optional(),
|
|
@@ -5564,10 +5564,10 @@ const Camera_FindSharedVideoWallsWSResponse = z.object({
|
|
|
5564
5564
|
warningMsg: z.string().optional()
|
|
5565
5565
|
});
|
|
5566
5566
|
const Camera_FootageBoundingBoxSummaryType = z.object({
|
|
5567
|
-
deviceMap: z.record(z.
|
|
5567
|
+
deviceMap: z.record(z.string(), FootageBoundingBoxType).optional()
|
|
5568
5568
|
});
|
|
5569
5569
|
const Camera_FootageSeekPointSummaryType = z.object({
|
|
5570
|
-
activityCountMap: z.record(z.
|
|
5570
|
+
activityCountMap: z.record(z.string(), z.record(z.string(), z.number().int())).optional(),
|
|
5571
5571
|
alert: z.boolean().optional(),
|
|
5572
5572
|
faceNames: z.array(z.string()).optional(),
|
|
5573
5573
|
poses: z.array(z.string()).optional(),
|
|
@@ -5733,7 +5733,7 @@ const Device_config_userconfig_IExternalReadableAudioVideoUserConfig = z.object(
|
|
|
5733
5733
|
face_id_ai_threshold: z.number().optional(),
|
|
5734
5734
|
face_match_threshold: z.number().optional(),
|
|
5735
5735
|
face_recognition: z.boolean().optional(),
|
|
5736
|
-
firmware_dev_settings: z.record(z.
|
|
5736
|
+
firmware_dev_settings: z.record(z.string(), z.string()).optional(),
|
|
5737
5737
|
fisheye_display_mode: FisheyeDisplayMode.optional(),
|
|
5738
5738
|
floorplan_homography: z.array(z.array(z.number())).optional(),
|
|
5739
5739
|
frontendEqualizerHighShelf: FrontendEqualizerSettings.optional(),
|
|
@@ -5887,7 +5887,7 @@ const Camera_GetFootageBoundingBoxesForMultipleWSRequest = z.object({
|
|
|
5887
5887
|
const Camera_GetFootageBoundingBoxesForMultipleWSResponse = z.object({
|
|
5888
5888
|
error: z.boolean().optional(),
|
|
5889
5889
|
errorMsg: z.string().optional(),
|
|
5890
|
-
footageBoundingBoxMap: z.record(z.
|
|
5890
|
+
footageBoundingBoxMap: z.record(z.string(), Camera_FootageBoundingBoxSummaryType).optional(),
|
|
5891
5891
|
warningMsg: z.string().optional()
|
|
5892
5892
|
});
|
|
5893
5893
|
const Camera_GetFootageBoundingBoxesWSRequest = z.object({
|
|
@@ -5910,7 +5910,7 @@ const Camera_GetFootageSeekpointsForMultipleWSRequest = z.object({
|
|
|
5910
5910
|
const Camera_GetFootageSeekpointsForMultipleWSResponse = z.object({
|
|
5911
5911
|
error: z.boolean().optional(),
|
|
5912
5912
|
errorMsg: z.string().optional(),
|
|
5913
|
-
footageSeekPointMap: z.record(z.
|
|
5913
|
+
footageSeekPointMap: z.record(z.string(), Camera_FootageSeekPointSummaryType).optional(),
|
|
5914
5914
|
warningMsg: z.string().optional()
|
|
5915
5915
|
});
|
|
5916
5916
|
const Camera_GetFootageSeekpointsV2WSRequest = z.object({
|
|
@@ -5935,7 +5935,7 @@ const FootageSeekPointType = z.object({
|
|
|
5935
5935
|
al: z.boolean().optional(),
|
|
5936
5936
|
b: z.number().optional(),
|
|
5937
5937
|
fn: z.string().optional(),
|
|
5938
|
-
kp: z.record(z.
|
|
5938
|
+
kp: z.record(z.string(), z.lazy(() => PointType)).optional(),
|
|
5939
5939
|
l: z.number().optional(),
|
|
5940
5940
|
lp: z.string().optional(),
|
|
5941
5941
|
p: z.string().optional(),
|
|
@@ -5966,7 +5966,7 @@ const Camera_GetLineCrossingEnabledCamerasForLocationWSRequest = z.object({
|
|
|
5966
5966
|
locationUuid: z.string().optional()
|
|
5967
5967
|
});
|
|
5968
5968
|
const Camera_GetLineCrossingEnabledCamerasForLocationWSResponse = z.object({
|
|
5969
|
-
camerasToConfigs: z.record(z.
|
|
5969
|
+
camerasToConfigs: z.record(z.string(), Device_config_userconfig_ExternalReadableFacetedUserConfig).optional(),
|
|
5970
5970
|
error: z.boolean().optional(),
|
|
5971
5971
|
errorMsg: z.string().optional(),
|
|
5972
5972
|
warningMsg: z.string().optional()
|
|
@@ -5993,9 +5993,9 @@ const Camera_GetMediaUrisWSResponse = z.object({
|
|
|
5993
5993
|
wanVodMpdUriTemplate: z.string().optional(),
|
|
5994
5994
|
warningMsg: z.string().optional()
|
|
5995
5995
|
});
|
|
5996
|
-
const Camera_GetMinimalCameraLocationMapWSRequest = z.record(z.unknown());
|
|
5996
|
+
const Camera_GetMinimalCameraLocationMapWSRequest = z.record(z.string(), z.unknown());
|
|
5997
5997
|
const Camera_GetMinimalCameraLocationMapWSResponse = z.object({
|
|
5998
|
-
cameraLocationMap: z.record(z.
|
|
5998
|
+
cameraLocationMap: z.record(z.string(), z.lazy(() => Camera_GetMinimalCameraLocationMapWSResponse_CameraLocationInfo)).optional(),
|
|
5999
5999
|
error: z.boolean().optional(),
|
|
6000
6000
|
errorMsg: z.string().optional(),
|
|
6001
6001
|
warningMsg: z.string().optional()
|
|
@@ -6047,12 +6047,12 @@ const Camera_GetMinimalListWSResponse = z.object({
|
|
|
6047
6047
|
errorMsg: z.string().optional(),
|
|
6048
6048
|
warningMsg: z.string().optional()
|
|
6049
6049
|
});
|
|
6050
|
-
const Camera_GetOccupancyEnabledCamerasWSRequest = z.record(z.unknown());
|
|
6051
|
-
const Camera_GetOfflineLanStreamingInfoWSRequest = z.record(z.unknown());
|
|
6050
|
+
const Camera_GetOccupancyEnabledCamerasWSRequest = z.record(z.string(), z.unknown());
|
|
6051
|
+
const Camera_GetOfflineLanStreamingInfoWSRequest = z.record(z.string(), z.unknown());
|
|
6052
6052
|
const Camera_GetOfflineLanStreamingInfoWSResponse = z.object({
|
|
6053
6053
|
error: z.boolean().optional(),
|
|
6054
6054
|
errorMsg: z.string().optional(),
|
|
6055
|
-
info: z.record(z.
|
|
6055
|
+
info: z.record(z.string(), Camera_CameraOfflineLanStreamingInfo).optional(),
|
|
6056
6056
|
warningMsg: z.string().optional()
|
|
6057
6057
|
});
|
|
6058
6058
|
const Camera_GetPresenceWindowsWSRequest = z.object({
|
|
@@ -6063,15 +6063,15 @@ const Camera_GetPresenceWindowsWSRequest = z.object({
|
|
|
6063
6063
|
const Camera_GetPresenceWindowsWSResponse = z.object({
|
|
6064
6064
|
error: z.boolean().optional(),
|
|
6065
6065
|
errorMsg: z.string().optional(),
|
|
6066
|
-
presenceWindows: z.record(z.
|
|
6066
|
+
presenceWindows: z.record(z.string(), z.array(z.lazy(() => TimeWindowSeconds))).optional(),
|
|
6067
6067
|
warningMsg: z.string().optional()
|
|
6068
6068
|
});
|
|
6069
6069
|
const Camera_SharedCameraCurrentStateType = z.object({
|
|
6070
6070
|
baseVideoOperationUrl: z.string().optional(),
|
|
6071
6071
|
connectionStatus: z.string().optional(),
|
|
6072
6072
|
oldestArchivedMediaSeconds: z.number().int().optional(),
|
|
6073
|
-
onCameraState: z.record(z.unknown()).optional(),
|
|
6074
|
-
onCloudState: z.record(z.unknown()).optional(),
|
|
6073
|
+
onCameraState: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
6074
|
+
onCloudState: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
6075
6075
|
region: z.string().optional()
|
|
6076
6076
|
});
|
|
6077
6077
|
const Camera_GetSharedCameraCurrentStateWSResponse = z.object({
|
|
@@ -6101,7 +6101,7 @@ const Camera_GetUptimeWindowsWSResponse = z.object({
|
|
|
6101
6101
|
uptimeWindows: z.array(TimeWindowSeconds).optional(),
|
|
6102
6102
|
warningMsg: z.string().optional()
|
|
6103
6103
|
});
|
|
6104
|
-
const Camera_GetVideoWallsWSRequest = z.record(z.unknown());
|
|
6104
|
+
const Camera_GetVideoWallsWSRequest = z.record(z.string(), z.unknown());
|
|
6105
6105
|
const Camera_VideoWallSummaryType = z.object({
|
|
6106
6106
|
deviceList: z.array(z.string()).optional(),
|
|
6107
6107
|
displayName: z.string().optional(),
|
|
@@ -6109,14 +6109,14 @@ const Camera_VideoWallSummaryType = z.object({
|
|
|
6109
6109
|
orgUuid: z.string().optional(),
|
|
6110
6110
|
othersCanEdit: z.boolean().optional(),
|
|
6111
6111
|
ownerUserUuid: z.string().optional(),
|
|
6112
|
-
settings: z.record(z.unknown()).optional(),
|
|
6112
|
+
settings: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
6113
6113
|
shared: z.boolean().optional(),
|
|
6114
6114
|
uuid: z.string().optional()
|
|
6115
6115
|
});
|
|
6116
6116
|
const Camera_GetVideoWallsWSResponse = z.object({
|
|
6117
6117
|
error: z.boolean().optional(),
|
|
6118
6118
|
errorMsg: z.string().optional(),
|
|
6119
|
-
userNameMap: z.record(z.
|
|
6119
|
+
userNameMap: z.record(z.string(), z.string()).optional(),
|
|
6120
6120
|
videoWalls: z.array(Camera_VideoWallSummaryType).optional(),
|
|
6121
6121
|
warningMsg: z.string().optional()
|
|
6122
6122
|
});
|
|
@@ -6197,7 +6197,7 @@ const Camera_UpdateCameraV2WSRequest = z.object({
|
|
|
6197
6197
|
descriptionUpdated: z.boolean().optional(),
|
|
6198
6198
|
directionRadians: z.number().optional(),
|
|
6199
6199
|
directionRadiansUpdated: z.boolean().optional(),
|
|
6200
|
-
facetNameMap: z.record(z.
|
|
6200
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
6201
6201
|
facetNameMapUpdated: z.boolean().optional(),
|
|
6202
6202
|
floorNumber: z.number().int().optional(),
|
|
6203
6203
|
floorNumberUpdated: z.boolean().optional(),
|
|
@@ -6265,7 +6265,7 @@ const Device_config_userconfig_IExternalUpdateableAudioVideoUserConfig = z.objec
|
|
|
6265
6265
|
disabled_schedule_inverted: z.boolean().optional(),
|
|
6266
6266
|
disabled_schedule_uuid: z.string().optional(),
|
|
6267
6267
|
exposure_level: z.number().int().optional(),
|
|
6268
|
-
firmware_dev_settings: z.record(z.
|
|
6268
|
+
firmware_dev_settings: z.record(z.string(), z.string()).optional(),
|
|
6269
6269
|
fisheye_display_mode: FisheyeDisplayMode.optional(),
|
|
6270
6270
|
floorplan_homography: z.array(z.array(z.number())).optional(),
|
|
6271
6271
|
frontendEqualizerHighShelf: FrontendEqualizerSettings.optional(),
|
|
@@ -6359,11 +6359,11 @@ const Camera_UpdateWifiWSRequest = z.object({
|
|
|
6359
6359
|
const Camera_UpdateWifiWSResponse = z.object({
|
|
6360
6360
|
error: z.boolean().optional(),
|
|
6361
6361
|
errorMsg: z.string().optional(),
|
|
6362
|
-
status: z.record(z.
|
|
6362
|
+
status: z.record(z.string(), z.boolean()).optional(),
|
|
6363
6363
|
warningMsg: z.string().optional()
|
|
6364
6364
|
});
|
|
6365
6365
|
const CancelLoopingAudioPlaybackActionRecordType = z.object({
|
|
6366
|
-
statusMap: z.record(z.
|
|
6366
|
+
statusMap: z.record(z.string(), AudioGatewayStatusEnum).optional()
|
|
6367
6367
|
});
|
|
6368
6368
|
const CancelledAccessStateOverride = z.object({
|
|
6369
6369
|
originator: BaseEventOriginator.optional(),
|
|
@@ -6435,7 +6435,7 @@ const Chatbot_DeleteAutomatedPromptWSRequest = z.object({
|
|
|
6435
6435
|
const Chatbot_DeleteChatRecordWSRequest = z.object({
|
|
6436
6436
|
recordUuid: z.string()
|
|
6437
6437
|
});
|
|
6438
|
-
const Chatbot_DeleteChatbotConfigWSRequest = z.record(z.unknown());
|
|
6438
|
+
const Chatbot_DeleteChatbotConfigWSRequest = z.record(z.string(), z.unknown());
|
|
6439
6439
|
const Chatbot_DeleteChatbotConversationWSRequest = z.object({
|
|
6440
6440
|
contextId: z.string()
|
|
6441
6441
|
});
|
|
@@ -6472,7 +6472,7 @@ const Chatbot_GetChatHistoryWSResponse = z.object({
|
|
|
6472
6472
|
const Chatbot_GetChatRecordWSRequest = z.object({
|
|
6473
6473
|
recordUuid: z.string()
|
|
6474
6474
|
});
|
|
6475
|
-
const Chatbot_GetChatbotConfigWSRequest = z.record(z.unknown());
|
|
6475
|
+
const Chatbot_GetChatbotConfigWSRequest = z.record(z.string(), z.unknown());
|
|
6476
6476
|
const Chatbot_GetChatbotConversationsWSRequest = z.object({
|
|
6477
6477
|
pageRequest: DynamoPageRequest.optional()
|
|
6478
6478
|
});
|
|
@@ -6496,7 +6496,7 @@ const Chatbot_GetPublicChatRecordWSRequest = z.object({
|
|
|
6496
6496
|
chatId: z.string(),
|
|
6497
6497
|
orgId: z.string()
|
|
6498
6498
|
});
|
|
6499
|
-
const Chatbot_GetRemainingTrialCreditsWSRequest = z.record(z.unknown());
|
|
6499
|
+
const Chatbot_GetRemainingTrialCreditsWSRequest = z.record(z.string(), z.unknown());
|
|
6500
6500
|
const Chatbot_GetRemainingTrialCreditsWSResponse = z.object({
|
|
6501
6501
|
remainingTrialCredits: z.number().int().optional()
|
|
6502
6502
|
});
|
|
@@ -6509,9 +6509,9 @@ const Chatbot_GetSharedChatRecordsWSResponse = z.object({
|
|
|
6509
6509
|
errorMsg: z.string().optional(),
|
|
6510
6510
|
warningMsg: z.string().optional()
|
|
6511
6511
|
});
|
|
6512
|
-
const Chatbot_GetTokenUsageHistoryWSRequest = z.record(z.unknown());
|
|
6512
|
+
const Chatbot_GetTokenUsageHistoryWSRequest = z.record(z.string(), z.unknown());
|
|
6513
6513
|
const Chatbot_GetTokenUsageHistoryWSResponse = z.object({
|
|
6514
|
-
usageHistory: z.record(z.
|
|
6514
|
+
usageHistory: z.record(z.string(), z.record(z.string(), z.lazy(() => TokenUsageStats))).optional()
|
|
6515
6515
|
});
|
|
6516
6516
|
const Chatbot_InterruptChatWSRequest = z.object({
|
|
6517
6517
|
recordUuid: z.string()
|
|
@@ -6563,7 +6563,7 @@ const Chatbot_UpdateChatbotConfigWSRequest = z.object({
|
|
|
6563
6563
|
});
|
|
6564
6564
|
const ContextRecordSelectiveUpdate = z.object({
|
|
6565
6565
|
realTarget: ContextRecord.optional(),
|
|
6566
|
-
updatedFieldNameMap: z.record(z.
|
|
6566
|
+
updatedFieldNameMap: z.record(z.string(), z.boolean()).optional()
|
|
6567
6567
|
});
|
|
6568
6568
|
const Chatbot_UpdateChatbotConversationWSRequest = z.object({
|
|
6569
6569
|
selectiveUpdate: ContextRecordSelectiveUpdate.optional()
|
|
@@ -6655,7 +6655,7 @@ const Chatbot_report_UpdateAIReportWSRequest = z.object({
|
|
|
6655
6655
|
report: AIReport.optional()
|
|
6656
6656
|
});
|
|
6657
6657
|
const ClaimKeyEntry = z.object({
|
|
6658
|
-
productQuantities: z.record(z.
|
|
6658
|
+
productQuantities: z.record(z.string(), z.number().int()).optional()
|
|
6659
6659
|
});
|
|
6660
6660
|
const ClaimKey = z.object({
|
|
6661
6661
|
claimEndDate: z.string().datetime({ offset: true }).optional(),
|
|
@@ -6721,7 +6721,7 @@ const ClimateScheduledTriggerType = z.object({
|
|
|
6721
6721
|
triggerSet: z.array(ClimateTriggerType).optional()
|
|
6722
6722
|
});
|
|
6723
6723
|
const ClimatePolicyType = z.object({
|
|
6724
|
-
backoffAlertSecs: z.record(z.
|
|
6724
|
+
backoffAlertSecs: z.record(z.string(), z.number().int()).optional(),
|
|
6725
6725
|
defaultTriggers: z.array(ClimateTriggerType).optional(),
|
|
6726
6726
|
description: z.string().optional(),
|
|
6727
6727
|
name: z.string().optional(),
|
|
@@ -6772,7 +6772,7 @@ const Climate_GetClimateSensorConfigWSResponse = z.object({
|
|
|
6772
6772
|
errorMsg: z.string().optional(),
|
|
6773
6773
|
warningMsg: z.string().optional()
|
|
6774
6774
|
});
|
|
6775
|
-
const Climate_GetEnvironmentalGatewayShadowsWSRequest = z.record(z.unknown());
|
|
6775
|
+
const Climate_GetEnvironmentalGatewayShadowsWSRequest = z.record(z.string(), z.unknown());
|
|
6776
6776
|
const Co2SensorType = z.object({
|
|
6777
6777
|
co2Ppm: z.number().int().optional(),
|
|
6778
6778
|
relHumid: z.number().optional(),
|
|
@@ -6843,7 +6843,7 @@ const TempProbeType = z.object({
|
|
|
6843
6843
|
timestampSec: z.number().int().optional()
|
|
6844
6844
|
});
|
|
6845
6845
|
const EnvironmentalGatewayShadowType = z.object({
|
|
6846
|
-
activeAlertTriggers: z.record(z.
|
|
6846
|
+
activeAlertTriggers: z.record(z.string(), z.number().int()).optional(),
|
|
6847
6847
|
apMac: z.string().optional(),
|
|
6848
6848
|
carbonMonoSense: COSensorType.optional(),
|
|
6849
6849
|
co2Sense: Co2SensorType.optional(),
|
|
@@ -6873,7 +6873,7 @@ const EnvironmentalGatewayShadowType = z.object({
|
|
|
6873
6873
|
region: z.string().optional(),
|
|
6874
6874
|
secondaryLanAddresses: z.array(z.string()).optional(),
|
|
6875
6875
|
ssid: z.string().optional(),
|
|
6876
|
-
state: z.record(z.unknown()).optional(),
|
|
6876
|
+
state: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
6877
6877
|
stateUpdatedTimestampMs: z.number().int().optional(),
|
|
6878
6878
|
tempProbe: TempProbeType.optional(),
|
|
6879
6879
|
timestampMs: z.number().int().optional(),
|
|
@@ -6899,7 +6899,7 @@ const ClipSeekPointType = z.object({
|
|
|
6899
6899
|
alert: z.boolean().optional(),
|
|
6900
6900
|
bottom: z.number().optional(),
|
|
6901
6901
|
faceName: z.string().optional(),
|
|
6902
|
-
keypointsV2: z.record(z.
|
|
6902
|
+
keypointsV2: z.record(z.string(), z.lazy(() => PointType)).optional(),
|
|
6903
6903
|
left: z.number().optional(),
|
|
6904
6904
|
licensePlate: z.string().optional(),
|
|
6905
6905
|
pose: z.string().optional(),
|
|
@@ -6930,7 +6930,7 @@ const ClipSeekPointV2Type = z.object({
|
|
|
6930
6930
|
vehicleName: z.string().optional()
|
|
6931
6931
|
});
|
|
6932
6932
|
const ClipMetaDataType = z.object({
|
|
6933
|
-
activitySeekPoints: z.record(z.
|
|
6933
|
+
activitySeekPoints: z.record(z.string(), z.array(z.number())).optional(),
|
|
6934
6934
|
activitySeekPointsV2: z.array(ClipSeekPointType).optional(),
|
|
6935
6935
|
activitySeekPointsV3: z.array(ClipSeekPointV2Type).optional(),
|
|
6936
6936
|
boundingBoxes: z.array(ClipBoundingBoxType).optional(),
|
|
@@ -6968,7 +6968,7 @@ const Climate_GetEventsForEnvironmentalGatewayWSResponse = z.object({
|
|
|
6968
6968
|
events: z.array(E50ClimateEventType).optional(),
|
|
6969
6969
|
lastEvaluatedKey: z.string().optional()
|
|
6970
6970
|
});
|
|
6971
|
-
const Climate_GetMinimalClimateStatesWSRequest = z.record(z.unknown());
|
|
6971
|
+
const Climate_GetMinimalClimateStatesWSRequest = z.record(z.string(), z.unknown());
|
|
6972
6972
|
const Climate_MinimalClimateStateType = z.object({
|
|
6973
6973
|
associatedCameras: z.array(z.string()).optional(),
|
|
6974
6974
|
batteryPercent: z.number().int().optional(),
|
|
@@ -7010,7 +7010,7 @@ const Climate_GetMinimalClimateStatesWSResponse = z.object({
|
|
|
7010
7010
|
errorMsg: z.string().optional(),
|
|
7011
7011
|
warningMsg: z.string().optional()
|
|
7012
7012
|
});
|
|
7013
|
-
const Climate_GetMinimalEnvironmentalGatewayStatesWSRequest = z.record(z.unknown());
|
|
7013
|
+
const Climate_GetMinimalEnvironmentalGatewayStatesWSRequest = z.record(z.string(), z.unknown());
|
|
7014
7014
|
const Climate_MinimalEnvironmentalGatewayStateType = z.object({
|
|
7015
7015
|
activities: z.array(ActivityEnum).optional(),
|
|
7016
7016
|
airQualityIndex: z.number().int().optional(),
|
|
@@ -7131,7 +7131,7 @@ const Climate_UpdateEnvironmentalGatewayDetailsWSRequest = z.object({
|
|
|
7131
7131
|
subLocationsHierarchyKeyUpdated: z.boolean().optional(),
|
|
7132
7132
|
uuid: z.string().optional()
|
|
7133
7133
|
});
|
|
7134
|
-
const Climate_UpdateEnvironmentalGatewayDetailsWSResponse = z.record(z.unknown());
|
|
7134
|
+
const Climate_UpdateEnvironmentalGatewayDetailsWSResponse = z.record(z.string(), z.unknown());
|
|
7135
7135
|
const ClipVisibility = z.string();
|
|
7136
7136
|
const ClipAccessSettings = z.object({
|
|
7137
7137
|
allowedRoles: z.array(z.string()).optional(),
|
|
@@ -7140,7 +7140,7 @@ const ClipAccessSettings = z.object({
|
|
|
7140
7140
|
});
|
|
7141
7141
|
const SharedClipV2Type = z.object({
|
|
7142
7142
|
clipLocation: MetaDataLocationType.optional(),
|
|
7143
|
-
deviceUuidMap: z.record(z.
|
|
7143
|
+
deviceUuidMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
7144
7144
|
durationSec: z.number().int().optional(),
|
|
7145
7145
|
startTime: z.number().int().optional(),
|
|
7146
7146
|
thumbnailLocation: MetaDataLocationType.optional(),
|
|
@@ -7160,7 +7160,7 @@ const SharedClipWithDetailsType = z.object({
|
|
|
7160
7160
|
boundingBoxes: z.array(ClipBoundingBoxType).optional(),
|
|
7161
7161
|
clipLocation: MetaDataLocationType.optional(),
|
|
7162
7162
|
description: z.string().optional(),
|
|
7163
|
-
deviceUuidMap: z.record(z.
|
|
7163
|
+
deviceUuidMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
7164
7164
|
durationSec: z.number().int().optional(),
|
|
7165
7165
|
seekPoints: z.array(ClipSeekPointV2Type).optional(),
|
|
7166
7166
|
startTime: z.number().int().optional(),
|
|
@@ -7222,7 +7222,7 @@ const Common_devices_GetPresenceWindowsWSRequest = z.object({
|
|
|
7222
7222
|
const Common_devices_GetPresenceWindowsWSResponse = z.object({
|
|
7223
7223
|
error: z.boolean().optional(),
|
|
7224
7224
|
errorMsg: z.string().optional(),
|
|
7225
|
-
presenceWindows: z.record(z.
|
|
7225
|
+
presenceWindows: z.record(z.string(), z.array(TimeWindowSeconds)).optional(),
|
|
7226
7226
|
warningMsg: z.string().optional()
|
|
7227
7227
|
});
|
|
7228
7228
|
const Common_devices_GetSeekpointsWSRequest = z.object({
|
|
@@ -7283,7 +7283,7 @@ const Common_devices_rawstream_DeleteRawHttpStreamWSResponse = z.object({
|
|
|
7283
7283
|
errorMsg: z.string().optional(),
|
|
7284
7284
|
warningMsg: z.string().optional()
|
|
7285
7285
|
});
|
|
7286
|
-
const Common_devices_rawstream_FindAllRawHttpStreamsWSRequest = z.record(z.unknown());
|
|
7286
|
+
const Common_devices_rawstream_FindAllRawHttpStreamsWSRequest = z.record(z.string(), z.unknown());
|
|
7287
7287
|
const Common_devices_rawstream_LanSpecificRawStreamType = z.object({
|
|
7288
7288
|
audioPath: z.string().optional(),
|
|
7289
7289
|
createdAtMs: z.number().int().optional(),
|
|
@@ -7508,7 +7508,7 @@ const ComponentSeekPointType = z.object({
|
|
|
7508
7508
|
customActivityDisplayName: z.string().optional(),
|
|
7509
7509
|
locationUuid: z.string().optional(),
|
|
7510
7510
|
orgUuid: z.string().optional(),
|
|
7511
|
-
originalEvent: z.record(z.unknown()).optional(),
|
|
7511
|
+
originalEvent: z.record(z.string(), z.unknown()).optional(),
|
|
7512
7512
|
ownerDeviceUuid: z.string().optional(),
|
|
7513
7513
|
subLocationsHierarchyKey: SubLocationsHierarchyKey.optional(),
|
|
7514
7514
|
timestampMs: z.number().int().optional(),
|
|
@@ -7584,12 +7584,12 @@ const Component_AddAccessControlledDoorLabelWSRequest = z.object({
|
|
|
7584
7584
|
accessControlledDoorUuid: z.string().optional(),
|
|
7585
7585
|
label: z.string().optional()
|
|
7586
7586
|
});
|
|
7587
|
-
const Component_AddAccessControlledDoorLabelWSResponse = z.record(z.unknown());
|
|
7587
|
+
const Component_AddAccessControlledDoorLabelWSResponse = z.record(z.string(), z.unknown());
|
|
7588
7588
|
const Component_AddAccessControlledElevatorLandingLabelWSRequest = z.object({
|
|
7589
7589
|
accessControlledElevatorLandingUuid: z.string().optional(),
|
|
7590
7590
|
label: z.string().optional()
|
|
7591
7591
|
});
|
|
7592
|
-
const Component_AddAccessControlledElevatorLandingLabelWSResponse = z.record(z.unknown());
|
|
7592
|
+
const Component_AddAccessControlledElevatorLandingLabelWSResponse = z.record(z.string(), z.unknown());
|
|
7593
7593
|
const Component_AggregatedCredentialReceivedEventInfo = z.object({
|
|
7594
7594
|
firstEvent: CredentialReceivedEventType.optional(),
|
|
7595
7595
|
lastEvent: CredentialReceivedEventType.optional(),
|
|
@@ -7820,11 +7820,11 @@ const Component_DeleteAccessControlledElevatorWSResponse = z.object({
|
|
|
7820
7820
|
const Component_DeleteComponentWSRequest = z.object({
|
|
7821
7821
|
componentUuid: z.string().optional()
|
|
7822
7822
|
});
|
|
7823
|
-
const Component_DeleteComponentWSResponse = z.record(z.unknown());
|
|
7823
|
+
const Component_DeleteComponentWSResponse = z.record(z.string(), z.unknown());
|
|
7824
7824
|
const Component_DeleteComponentsByOwnerDeviceWSRequest = z.object({
|
|
7825
7825
|
ownerDeviceUuid: z.string().optional()
|
|
7826
7826
|
});
|
|
7827
|
-
const Component_DeleteComponentsByOwnerDeviceWSResponse = z.record(z.unknown());
|
|
7827
|
+
const Component_DeleteComponentsByOwnerDeviceWSResponse = z.record(z.string(), z.unknown());
|
|
7828
7828
|
const Component_FindAccessControlledDoorShadowsByLocationWSRequest = z.object({
|
|
7829
7829
|
lastEvaluatedKey: z.string().optional(),
|
|
7830
7830
|
locationUuid: z.string().optional(),
|
|
@@ -7926,7 +7926,7 @@ const Component_FindAllComponentShadowsWSRequest = z.object({
|
|
|
7926
7926
|
componentUuids: z.array(z.string()).optional()
|
|
7927
7927
|
});
|
|
7928
7928
|
const Component_FindAllComponentShadowsWSResponse = z.object({
|
|
7929
|
-
acuComponentShadowMap: z.record(z.
|
|
7929
|
+
acuComponentShadowMap: z.record(z.string(), ComponentShadowType).optional()
|
|
7930
7930
|
});
|
|
7931
7931
|
const Component_FindComponentEventsByAccessControlledDoorWSRequest = z.object({
|
|
7932
7932
|
accessControlledDoorUuid: z.string().optional(),
|
|
@@ -8194,13 +8194,13 @@ const Component_FindMinimalStateAccessControlledDoorsWSResponse = z.object({
|
|
|
8194
8194
|
accessControlledDoors: z.array(Component_MinimalStateAccessControlledDoor).optional(),
|
|
8195
8195
|
lastEvaluatedKey: z.string().optional()
|
|
8196
8196
|
});
|
|
8197
|
-
const Component_GetAccessControlledDoorLabelsForOrgWSRequest = z.record(z.unknown());
|
|
8197
|
+
const Component_GetAccessControlledDoorLabelsForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
8198
8198
|
const Component_GetAccessControlledDoorLabelsForOrgWSResponse = z.object({
|
|
8199
|
-
accessControlledDoorLabels: z.record(z.
|
|
8199
|
+
accessControlledDoorLabels: z.record(z.string(), z.array(z.string())).optional()
|
|
8200
8200
|
});
|
|
8201
|
-
const Component_GetAccessControlledElevatorLandingLabelsForOrgWSRequest = z.record(z.unknown());
|
|
8201
|
+
const Component_GetAccessControlledElevatorLandingLabelsForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
8202
8202
|
const Component_GetAccessControlledElevatorLandingLabelsForOrgWSResponse = z.object({
|
|
8203
|
-
accessControlledElevatorLandingLabels: z.record(z.
|
|
8203
|
+
accessControlledElevatorLandingLabels: z.record(z.string(), z.array(z.string())).optional()
|
|
8204
8204
|
});
|
|
8205
8205
|
const Component_GetCurrentExpectedAccessControlledDoorStateWSRequest = z.object({
|
|
8206
8206
|
accessControlledDoorUuid: z.string()
|
|
@@ -8247,7 +8247,7 @@ const Component_GetFullAccessControlledDoorShadowWSRequest = z.object({
|
|
|
8247
8247
|
accessControlledDoorUuid: z.string().optional()
|
|
8248
8248
|
});
|
|
8249
8249
|
const Component_GetFullAccessControlledDoorShadowWSResponse = z.object({
|
|
8250
|
-
doorComponentShadowMap: z.record(z.
|
|
8250
|
+
doorComponentShadowMap: z.record(z.string(), ComponentShadowType).optional(),
|
|
8251
8251
|
doorShadow: AccessControlledDoorShadow.optional()
|
|
8252
8252
|
});
|
|
8253
8253
|
const Component_GetOrCreateDevicePhysicalPortConfigWSRequest = z.object({
|
|
@@ -8261,7 +8261,7 @@ const InvalidPhysicalPortConfigType = z.object({
|
|
|
8261
8261
|
reason: InvalidPhysicalPortReasonEnumType.optional()
|
|
8262
8262
|
});
|
|
8263
8263
|
const DevicePhysicalPortConfigType = z.object({
|
|
8264
|
-
boardMap: z.record(z.
|
|
8264
|
+
boardMap: z.record(z.string(), BoardPhysicalPortConfigType).optional(),
|
|
8265
8265
|
createdAtMillis: z.number().int().optional(),
|
|
8266
8266
|
orgUuid: z.string().optional(),
|
|
8267
8267
|
ownerDeviceUuid: z.string().optional(),
|
|
@@ -8276,12 +8276,12 @@ const Component_RemoveAccessControlledDoorLabelWSRequest = z.object({
|
|
|
8276
8276
|
accessControlledDoorUuid: z.string().optional(),
|
|
8277
8277
|
label: z.string().optional()
|
|
8278
8278
|
});
|
|
8279
|
-
const Component_RemoveAccessControlledDoorLabelWSResponse = z.record(z.unknown());
|
|
8279
|
+
const Component_RemoveAccessControlledDoorLabelWSResponse = z.record(z.string(), z.unknown());
|
|
8280
8280
|
const Component_RemoveAccessControlledElevatorLandingLabelWSRequest = z.object({
|
|
8281
8281
|
accessControlledElevatorLandingUuid: z.string().optional(),
|
|
8282
8282
|
label: z.string().optional()
|
|
8283
8283
|
});
|
|
8284
|
-
const Component_RemoveAccessControlledElevatorLandingLabelWSResponse = z.record(z.unknown());
|
|
8284
|
+
const Component_RemoveAccessControlledElevatorLandingLabelWSResponse = z.record(z.string(), z.unknown());
|
|
8285
8285
|
const Component_UpdateAccessControlledDoorWSRequest = z.object({
|
|
8286
8286
|
accessControlledDoorUuid: z.string().optional(),
|
|
8287
8287
|
ajarTimeSec: z.number().int().optional(),
|
|
@@ -8289,7 +8289,7 @@ const Component_UpdateAccessControlledDoorWSRequest = z.object({
|
|
|
8289
8289
|
associatedFaceDetectionCameras: z.array(z.string()).optional(),
|
|
8290
8290
|
defaultState: AccessControlledDoorStateEnumType.optional(),
|
|
8291
8291
|
directionRadians: z.number().optional(),
|
|
8292
|
-
doorStateToScheduleUuidMap: z.record(z.
|
|
8292
|
+
doorStateToScheduleUuidMap: z.record(z.string(), z.string()).optional(),
|
|
8293
8293
|
dpiComponents: z.array(ComponentReferenceType).optional(),
|
|
8294
8294
|
floorNumber: z.number().int().optional(),
|
|
8295
8295
|
forceAllReadersFirstInAuthRequiredLedFeedbackEnabled: z.boolean().optional(),
|
|
@@ -8322,7 +8322,7 @@ const Component_UpdateAccessControlledDoorWSResponse = z.object({
|
|
|
8322
8322
|
});
|
|
8323
8323
|
const Component_UpdateAccessControlledElevatorLandingWSRequest = z.object({
|
|
8324
8324
|
accessControlledElevatorLandingUuid: z.string().optional(),
|
|
8325
|
-
accessStateToScheduleUuidMap: z.record(z.
|
|
8325
|
+
accessStateToScheduleUuidMap: z.record(z.string(), z.string()).optional(),
|
|
8326
8326
|
associatedCameras: z.array(z.string()).optional(),
|
|
8327
8327
|
associatedFaceDetectionCameras: z.array(z.string()).optional(),
|
|
8328
8328
|
defaultAccessState: AccessControlledDoorStateEnumType.optional(),
|
|
@@ -8344,8 +8344,8 @@ const Component_UpdateAccessControlledElevatorWSRequest = z.object({
|
|
|
8344
8344
|
associatedCameras: z.array(z.string()).optional(),
|
|
8345
8345
|
associatedFaceDetectionCameras: z.array(z.string()).optional(),
|
|
8346
8346
|
directionRadians: z.number().optional(),
|
|
8347
|
-
elevatorLandingReferenceUpdates: z.record(z.
|
|
8348
|
-
elevatorLandingReferences: z.record(z.
|
|
8347
|
+
elevatorLandingReferenceUpdates: z.record(z.string(), z.lazy(() => ElevatorLandingReference)).optional(),
|
|
8348
|
+
elevatorLandingReferences: z.record(z.string(), z.lazy(() => ElevatorLandingReference)).optional(),
|
|
8349
8349
|
forceAllReadersFirstInAuthRequiredLedFeedbackEnabled: z.boolean().optional(),
|
|
8350
8350
|
forceAllReadersFirstInUnlockPendingLedFeedbackEnabled: z.boolean().optional(),
|
|
8351
8351
|
forceAllReadersOtherReaderUnlockAudioFeedbackEnabled: z.boolean().optional(),
|
|
@@ -8512,8 +8512,8 @@ const CustomerShipmentType = z.object({
|
|
|
8512
8512
|
lastStateUpdateSec: z.number().int().optional(),
|
|
8513
8513
|
"rhombus-additionalEmails": z.string().optional(),
|
|
8514
8514
|
"rhombus-chosenCarrierName": z.string().optional(),
|
|
8515
|
-
"rhombus-claimKeyToLicenseMap": z.record(z.
|
|
8516
|
-
"rhombus-claimKeyToLicenseMapV2": z.record(z.
|
|
8515
|
+
"rhombus-claimKeyToLicenseMap": z.record(z.string(), z.array(z.string())).optional(),
|
|
8516
|
+
"rhombus-claimKeyToLicenseMapV2": z.record(z.string(), z.record(z.string(), z.lazy(() => SalesforceLicenseStartDateTimeAndEndDateTime))).optional(),
|
|
8517
8517
|
"rhombus-customerEmails": z.string().optional(),
|
|
8518
8518
|
"rhombus-customerName": z.string().optional(),
|
|
8519
8519
|
"rhombus-orgUuid": z.string().optional(),
|
|
@@ -8529,8 +8529,8 @@ const CustomerShipmentType = z.object({
|
|
|
8529
8529
|
shipmentState: z.string().optional(),
|
|
8530
8530
|
uuid: z.string().optional()
|
|
8531
8531
|
});
|
|
8532
|
-
const Customer_AcceptUsagePolicyRequest = z.record(z.unknown());
|
|
8533
|
-
const Customer_AcceptUsagePolicyResponse = z.record(z.unknown());
|
|
8532
|
+
const Customer_AcceptUsagePolicyRequest = z.record(z.string(), z.unknown());
|
|
8533
|
+
const Customer_AcceptUsagePolicyResponse = z.record(z.string(), z.unknown());
|
|
8534
8534
|
const Customer_DeleteNotificationSnoozeSettingWSRequest = z.object({
|
|
8535
8535
|
uuid: z.string().optional()
|
|
8536
8536
|
});
|
|
@@ -8539,13 +8539,13 @@ const Customer_DeleteNotificationSnoozeSettingWSResponse = z.object({
|
|
|
8539
8539
|
errorMsg: z.string().optional(),
|
|
8540
8540
|
warningMsg: z.string().optional()
|
|
8541
8541
|
});
|
|
8542
|
-
const Customer_GetCurrentPartnerUserWSRequest = z.record(z.unknown());
|
|
8542
|
+
const Customer_GetCurrentPartnerUserWSRequest = z.record(z.string(), z.unknown());
|
|
8543
8543
|
const NotificationIntervalV2Type = z.object({
|
|
8544
|
-
activityTriggerMap: z.record(z.
|
|
8544
|
+
activityTriggerMap: z.record(z.string(), z.array(z.lazy(() => NotificationEnumType))).optional(),
|
|
8545
8545
|
deviceFilterSet: z.array(z.string()).optional(),
|
|
8546
|
-
diagnosticTriggerMap: z.record(z.
|
|
8547
|
-
locationActivityTriggerMap: z.record(z.
|
|
8548
|
-
locationDiagnosticTriggerMap: z.record(z.
|
|
8546
|
+
diagnosticTriggerMap: z.record(z.string(), z.array(z.lazy(() => NotificationEnumType))).optional(),
|
|
8547
|
+
locationActivityTriggerMap: z.record(z.string(), z.array(z.lazy(() => NotificationEnumType))).optional(),
|
|
8548
|
+
locationDiagnosticTriggerMap: z.record(z.string(), z.array(z.lazy(() => NotificationEnumType))).optional(),
|
|
8549
8549
|
locationFilterSet: z.array(z.string()).optional(),
|
|
8550
8550
|
locationOnlyFilterSet: z.array(z.string()).optional(),
|
|
8551
8551
|
minuteOfWeekStart: z.number().int().optional(),
|
|
@@ -8553,7 +8553,7 @@ const NotificationIntervalV2Type = z.object({
|
|
|
8553
8553
|
});
|
|
8554
8554
|
const PartnerNotificationSettingsType = z.object({
|
|
8555
8555
|
allClientsSelected: z.boolean().optional(),
|
|
8556
|
-
clientNotificationIntervalsMap: z.record(z.
|
|
8556
|
+
clientNotificationIntervalsMap: z.record(z.string(), z.array(NotificationIntervalV2Type)).optional(),
|
|
8557
8557
|
notificationIntervalsForAllClients: z.array(NotificationIntervalV2Type).optional(),
|
|
8558
8558
|
orgUuid: z.string().optional(),
|
|
8559
8559
|
smsPhoneNumbers: z.array(z.string()).optional(),
|
|
@@ -8579,7 +8579,7 @@ const PartnerNotificationClientSection = z.object({
|
|
|
8579
8579
|
});
|
|
8580
8580
|
const PartnerNotificationSettingsV2 = z.object({
|
|
8581
8581
|
allClientsSelected: z.boolean().optional(),
|
|
8582
|
-
clientNotificationIntervalsMap: z.record(z.
|
|
8582
|
+
clientNotificationIntervalsMap: z.record(z.string(), z.array(PartnerNotificationClientSection)).optional(),
|
|
8583
8583
|
notificationIntervalsForAllClients: z.array(PartnerNotificationClientSection).optional(),
|
|
8584
8584
|
orgUuid: z.string().optional(),
|
|
8585
8585
|
smsPhoneNumbers: z.array(z.string()).optional(),
|
|
@@ -8601,7 +8601,7 @@ const WrappedRhombusOrgUserType = z.object({
|
|
|
8601
8601
|
mfaEnabled: z.boolean().optional(),
|
|
8602
8602
|
mfaTokenType: z.string().optional(),
|
|
8603
8603
|
name: z.string().optional(),
|
|
8604
|
-
orgUserCustomizationFlags: z.record(z.
|
|
8604
|
+
orgUserCustomizationFlags: z.record(z.string(), z.string()).optional(),
|
|
8605
8605
|
orgUuid: z.string().optional(),
|
|
8606
8606
|
passwordSet: z.boolean().optional(),
|
|
8607
8607
|
rhombusUserUuid: z.string().optional(),
|
|
@@ -8612,14 +8612,14 @@ const WrappedRhombusOrgUserType = z.object({
|
|
|
8612
8612
|
const Customer_GetCurrentPartnerUserWSResponse = z.object({
|
|
8613
8613
|
error: z.boolean().optional(),
|
|
8614
8614
|
errorMsg: z.string().optional(),
|
|
8615
|
-
flags: z.record(z.
|
|
8615
|
+
flags: z.record(z.string(), z.string()).optional(),
|
|
8616
8616
|
notificationSettings: PartnerNotificationSettingsType.optional(),
|
|
8617
8617
|
notificationSettingsV2: PartnerNotificationSettingsV2.optional(),
|
|
8618
8618
|
permissionGroupUuid: z.string().optional(),
|
|
8619
8619
|
user: WrappedRhombusOrgUserType.optional(),
|
|
8620
8620
|
warningMsg: z.string().optional()
|
|
8621
8621
|
});
|
|
8622
|
-
const Customer_GetCurrentRhombusKeyUserWSRequest = z.record(z.unknown());
|
|
8622
|
+
const Customer_GetCurrentRhombusKeyUserWSRequest = z.record(z.string(), z.unknown());
|
|
8623
8623
|
const User_RhombusKeyOrgDetailsType = z.object({
|
|
8624
8624
|
companyLogoUrl: z.string().optional(),
|
|
8625
8625
|
name: z.string().optional(),
|
|
@@ -8658,7 +8658,7 @@ const Customer_GetCurrentRhombusKeyUserWSResponse = z.object({
|
|
|
8658
8658
|
rhombusKeyConfig: RhombusKeyAppConfigType.optional(),
|
|
8659
8659
|
user: WrappedRhombusOrgUserType.optional()
|
|
8660
8660
|
});
|
|
8661
|
-
const Customer_GetCurrentUserConsoleOrgsForContextSwitchWSRequest = z.record(z.unknown());
|
|
8661
|
+
const Customer_GetCurrentUserConsoleOrgsForContextSwitchWSRequest = z.record(z.string(), z.unknown());
|
|
8662
8662
|
const Customer_SelectableOrgForContextSwitch = z.object({
|
|
8663
8663
|
companyThumbnailLogoUrl: z.string().optional(),
|
|
8664
8664
|
orgName: z.string().optional(),
|
|
@@ -8669,11 +8669,11 @@ const Customer_SelectableOrgForContextSwitch = z.object({
|
|
|
8669
8669
|
const Customer_GetCurrentUserConsoleOrgsForContextSwitchWSResponse = z.object({
|
|
8670
8670
|
orgs: z.array(Customer_SelectableOrgForContextSwitch).optional()
|
|
8671
8671
|
});
|
|
8672
|
-
const Customer_GetCurrentUserRhombusKeyOrgsForContextSwitchWSRequest = z.record(z.unknown());
|
|
8672
|
+
const Customer_GetCurrentUserRhombusKeyOrgsForContextSwitchWSRequest = z.record(z.string(), z.unknown());
|
|
8673
8673
|
const Customer_GetCurrentUserRhombusKeyOrgsForContextSwitchWSResponse = z.object({
|
|
8674
8674
|
orgs: z.array(Customer_SelectableOrgForContextSwitch).optional()
|
|
8675
8675
|
});
|
|
8676
|
-
const Customer_GetCurrentUserSessionsWSRequest = z.record(z.unknown());
|
|
8676
|
+
const Customer_GetCurrentUserSessionsWSRequest = z.record(z.string(), z.unknown());
|
|
8677
8677
|
const SessionClientInfoType = z.object({
|
|
8678
8678
|
appName: z.string().optional(),
|
|
8679
8679
|
appOs: z.string().optional(),
|
|
@@ -8700,7 +8700,7 @@ const Customer_GetCurrentUserSessionsWSResponse = z.object({
|
|
|
8700
8700
|
sessions: z.array(SessionInfoWSType).optional(),
|
|
8701
8701
|
warningMsg: z.string().optional()
|
|
8702
8702
|
});
|
|
8703
|
-
const Customer_GetCurrentUserWSRequest = z.record(z.unknown());
|
|
8703
|
+
const Customer_GetCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
8704
8704
|
const DashboardCustomizations = z.object({
|
|
8705
8705
|
fullCamera: z.string().optional(),
|
|
8706
8706
|
halfCamera: z.string().optional(),
|
|
@@ -8711,7 +8711,7 @@ const DashboardCustomizations = z.object({
|
|
|
8711
8711
|
});
|
|
8712
8712
|
const UserCustomizationsType = z.object({
|
|
8713
8713
|
dashboard: DashboardCustomizations.optional(),
|
|
8714
|
-
frontend: z.record(z.
|
|
8714
|
+
frontend: z.record(z.string(), z.string()).optional(),
|
|
8715
8715
|
orgUuid: z.string().optional(),
|
|
8716
8716
|
userUuid: z.string().optional()
|
|
8717
8717
|
});
|
|
@@ -8749,7 +8749,7 @@ const Customer_GetCurrentUserWSResponse = z.object({
|
|
|
8749
8749
|
customizations: UserCustomizationsType.optional(),
|
|
8750
8750
|
error: z.boolean().optional(),
|
|
8751
8751
|
errorMsg: z.string().optional(),
|
|
8752
|
-
flags: z.record(z.
|
|
8752
|
+
flags: z.record(z.string(), z.string()).optional(),
|
|
8753
8753
|
notificationSettings: UserNotificationSettingsV3Type.optional(),
|
|
8754
8754
|
notificationSettingsV2: UserNotificationSettingsV4Type.optional(),
|
|
8755
8755
|
permissionGroupUuid: z.string().optional(),
|
|
@@ -8758,11 +8758,11 @@ const Customer_GetCurrentUserWSResponse = z.object({
|
|
|
8758
8758
|
});
|
|
8759
8759
|
const DashboardStatus = z.object({
|
|
8760
8760
|
camerasDown: z.number().int().optional(),
|
|
8761
|
-
camerasDownByLocation: z.record(z.
|
|
8761
|
+
camerasDownByLocation: z.record(z.string(), z.number().int()).optional(),
|
|
8762
8762
|
camerasUp: z.number().int().optional(),
|
|
8763
8763
|
healthStatusIndicator: z.string().optional(),
|
|
8764
8764
|
healthStatusMsg: z.string().optional(),
|
|
8765
|
-
locationCameraStatus: z.record(z.
|
|
8765
|
+
locationCameraStatus: z.record(z.string(), z.record(z.string(), z.boolean())).optional(),
|
|
8766
8766
|
totalCameras: z.number().int().optional(),
|
|
8767
8767
|
totalClimateSensors: z.number().int().optional(),
|
|
8768
8768
|
totalDoorSensors: z.number().int().optional(),
|
|
@@ -8775,12 +8775,12 @@ const Customer_GetDashboardStatusWSResponse = z.object({
|
|
|
8775
8775
|
errorMsg: z.string().optional(),
|
|
8776
8776
|
warningMsg: z.string().optional()
|
|
8777
8777
|
});
|
|
8778
|
-
const Customer_GetDashboardstatusWSRequest = z.record(z.unknown());
|
|
8779
|
-
const Customer_GetRhombusKeyConfigForCurrentUserWSRequest = z.record(z.unknown());
|
|
8778
|
+
const Customer_GetDashboardstatusWSRequest = z.record(z.string(), z.unknown());
|
|
8779
|
+
const Customer_GetRhombusKeyConfigForCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
8780
8780
|
const Customer_GetRhombusKeyConfigForCurrentUserWSResponse = z.object({
|
|
8781
8781
|
userRhombusKeyConfig: RhombusKeyAppConfigType.optional()
|
|
8782
8782
|
});
|
|
8783
|
-
const Customer_GetUserSnoozedNotificationSettingsWSRequest = z.record(z.unknown());
|
|
8783
|
+
const Customer_GetUserSnoozedNotificationSettingsWSRequest = z.record(z.string(), z.unknown());
|
|
8784
8784
|
const ScheduledIntervalType = z.object({
|
|
8785
8785
|
durationSecs: z.number().int().optional(),
|
|
8786
8786
|
timestampSec: z.number().int().optional(),
|
|
@@ -8790,13 +8790,13 @@ const Customer_GetUserSnoozedNotificationSettingsWSResponse = z.object({
|
|
|
8790
8790
|
error: z.boolean().optional(),
|
|
8791
8791
|
errorMsg: z.string().optional(),
|
|
8792
8792
|
snoozedForAllNotificationsIntervals: z.array(ScheduledIntervalType).optional(),
|
|
8793
|
-
snoozedForComponentCompositesMap: z.record(z.
|
|
8794
|
-
snoozedForDevicesMap: z.record(z.
|
|
8795
|
-
snoozedForLocationsMap: z.record(z.
|
|
8793
|
+
snoozedForComponentCompositesMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
8794
|
+
snoozedForDevicesMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
8795
|
+
snoozedForLocationsMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
8796
8796
|
warningMsg: z.string().optional()
|
|
8797
8797
|
});
|
|
8798
|
-
const Customer_LogoutAllOtherCurrentUserSessionsRequest = z.record(z.unknown());
|
|
8799
|
-
const Customer_LogoutAllOtherCurrentUserSessionsResponse = z.record(z.unknown());
|
|
8798
|
+
const Customer_LogoutAllOtherCurrentUserSessionsRequest = z.record(z.string(), z.unknown());
|
|
8799
|
+
const Customer_LogoutAllOtherCurrentUserSessionsResponse = z.record(z.string(), z.unknown());
|
|
8800
8800
|
const Customer_SetFlagWSRequest = z.object({
|
|
8801
8801
|
flagName: z.string().optional(),
|
|
8802
8802
|
flagValue: z.string().optional()
|
|
@@ -8874,7 +8874,7 @@ const Customer_UpdateDashboardCustomizationsWSResponse = z.object({
|
|
|
8874
8874
|
warningMsg: z.string().optional()
|
|
8875
8875
|
});
|
|
8876
8876
|
const Customer_UpdateFrontendCustomizationsWSRequest = z.object({
|
|
8877
|
-
customizations: z.record(z.
|
|
8877
|
+
customizations: z.record(z.string(), z.string()).optional()
|
|
8878
8878
|
});
|
|
8879
8879
|
const Customer_UpdateFrontendCustomizationsWSResponse = z.object({
|
|
8880
8880
|
error: z.boolean().optional(),
|
|
@@ -8888,7 +8888,7 @@ const Customer_UpdateRhombusKeyPreferencesForCurrentUserWSRequest = z.object({
|
|
|
8888
8888
|
const Customer_UpdateRhombusKeyPreferencesForCurrentUserWSResponse = z.object({
|
|
8889
8889
|
userRhombusKeyConfig: RhombusKeyAppConfigType.optional()
|
|
8890
8890
|
});
|
|
8891
|
-
const DeleteSharedLiveVideoStreamForDeviceResponse = z.record(z.unknown());
|
|
8891
|
+
const DeleteSharedLiveVideoStreamForDeviceResponse = z.record(z.string(), z.unknown());
|
|
8892
8892
|
const EventListenerType = z.object({
|
|
8893
8893
|
activities: z.array(ActivityEnum).optional(),
|
|
8894
8894
|
clientCertificate: z.array(z.string()).optional(),
|
|
@@ -8917,7 +8917,7 @@ const Developer_DeleteEventListenerWSResponse = z.object({
|
|
|
8917
8917
|
errorMsg: z.string().optional(),
|
|
8918
8918
|
warningMsg: z.string().optional()
|
|
8919
8919
|
});
|
|
8920
|
-
const Developer_GetAllEventListenersWSRequest = z.record(z.unknown());
|
|
8920
|
+
const Developer_GetAllEventListenersWSRequest = z.record(z.string(), z.unknown());
|
|
8921
8921
|
const Developer_GetAllEventListenersWSResponse = z.object({
|
|
8922
8922
|
error: z.boolean().optional(),
|
|
8923
8923
|
errorMsg: z.string().optional(),
|
|
@@ -8973,7 +8973,7 @@ const DeviceIntegrationSettings = z.object({
|
|
|
8973
8973
|
const DeviceIntegrationType = z.object({
|
|
8974
8974
|
enabled: z.boolean().optional(),
|
|
8975
8975
|
integration: IntegrationEnum.optional(),
|
|
8976
|
-
integrationAuditMap: z.record(z.
|
|
8976
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
8977
8977
|
orgUuid: z.string().optional(),
|
|
8978
8978
|
userUuid: z.string().optional()
|
|
8979
8979
|
});
|
|
@@ -9011,7 +9011,7 @@ const DeviceTypeV2 = z.object({
|
|
|
9011
9011
|
customData: z.string().optional(),
|
|
9012
9012
|
deleted: z.boolean().optional(),
|
|
9013
9013
|
description: z.string().optional(),
|
|
9014
|
-
facetNameMap: z.record(z.
|
|
9014
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
9015
9015
|
hardwareId: z.string().optional(),
|
|
9016
9016
|
hwVariation: HardwareVariationEnum.optional(),
|
|
9017
9017
|
mummified: z.boolean().optional(),
|
|
@@ -9061,7 +9061,7 @@ const Device_config_settings_ExternalAudioSettingsSelectiveUpdate = z.object({
|
|
|
9061
9061
|
frontendEqualizerPeaking2: FrontendEqualizerSettings.optional(),
|
|
9062
9062
|
frontendEqualizerPeaking3: FrontendEqualizerSettings.optional(),
|
|
9063
9063
|
frontendNoiseSuppression: z.boolean().optional(),
|
|
9064
|
-
updatedSetMethodMap: z.record(z.
|
|
9064
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
9065
9065
|
});
|
|
9066
9066
|
const Device_config_settings_ExternalReadableAudioSettings = z.object({
|
|
9067
9067
|
audio_aec_via_software: z.boolean().optional(),
|
|
@@ -9243,7 +9243,7 @@ const Device_config_settings_ExternalVideoSettingsSelectiveUpdate = z.object({
|
|
|
9243
9243
|
snapshot_height: z.number().int().optional(),
|
|
9244
9244
|
snapshot_interval_secs: z.number().int().optional(),
|
|
9245
9245
|
tile_views: z.array(DewarpedView).optional(),
|
|
9246
|
-
updatedSetMethodMap: z.record(z.
|
|
9246
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
9247
9247
|
upload_all_detections: z.boolean().optional(),
|
|
9248
9248
|
use_onboard_lpr: z.boolean().optional(),
|
|
9249
9249
|
vehicle_detection: z.boolean().optional(),
|
|
@@ -9281,7 +9281,7 @@ const Device_config_userconfig_IExternalReadableDoorControllerUserConfig = z.obj
|
|
|
9281
9281
|
cloud_archive_upload_schedule_inverted: z.boolean().optional(),
|
|
9282
9282
|
cloud_archive_upload_schedule_uuid: z.string().optional(),
|
|
9283
9283
|
deviceUuid: z.string().optional(),
|
|
9284
|
-
firmware_dev_settings: z.record(z.
|
|
9284
|
+
firmware_dev_settings: z.record(z.string(), z.string()).optional(),
|
|
9285
9285
|
flip_display_orientation: z.boolean().optional(),
|
|
9286
9286
|
lastModified: z.number().int().optional(),
|
|
9287
9287
|
led_mode_blink_period_ms: z.number().int().optional(),
|
|
@@ -9308,7 +9308,7 @@ const Device_config_userconfig_IExternalUpdateableDoorControllerUserConfig = z.o
|
|
|
9308
9308
|
autoregister_readers: z.boolean().optional(),
|
|
9309
9309
|
bandwidth_reports_disabled: z.boolean().optional(),
|
|
9310
9310
|
deviceUuid: z.string().optional(),
|
|
9311
|
-
firmware_dev_settings: z.record(z.
|
|
9311
|
+
firmware_dev_settings: z.record(z.string(), z.string()).optional(),
|
|
9312
9312
|
flip_display_orientation: z.boolean().optional(),
|
|
9313
9313
|
lastModified: z.number().int().optional(),
|
|
9314
9314
|
led_mode_blink_period_ms: z.number().int().optional(),
|
|
@@ -9332,12 +9332,12 @@ const Device_health_DisableDeviceHealthTrackingWSRequest = z.object({
|
|
|
9332
9332
|
deviceUuid: z.string().optional(),
|
|
9333
9333
|
reEnableCondition: ReEnableDeviceHealthTrackingCondition.optional()
|
|
9334
9334
|
});
|
|
9335
|
-
const Device_health_DisableDeviceHealthTrackingWSResponse = z.record(z.unknown());
|
|
9335
|
+
const Device_health_DisableDeviceHealthTrackingWSResponse = z.record(z.string(), z.unknown());
|
|
9336
9336
|
const Device_health_EnableDeviceHealthTrackingWSRequest = z.object({
|
|
9337
9337
|
deviceUuid: z.string().optional()
|
|
9338
9338
|
});
|
|
9339
|
-
const Device_health_EnableDeviceHealthTrackingWSResponse = z.record(z.unknown());
|
|
9340
|
-
const Device_health_FindDevicesWithDisabledHealthTrackingByOrgWSRequest = z.record(z.unknown());
|
|
9339
|
+
const Device_health_EnableDeviceHealthTrackingWSResponse = z.record(z.string(), z.unknown());
|
|
9340
|
+
const Device_health_FindDevicesWithDisabledHealthTrackingByOrgWSRequest = z.record(z.string(), z.unknown());
|
|
9341
9341
|
const Device_health_FindDevicesWithDisabledHealthTrackingByOrgWSResponse = z.object({
|
|
9342
9342
|
disabledHealthTrackingInfos: z.array(DeviceDisabledHealthTrackingInfo).optional()
|
|
9343
9343
|
});
|
|
@@ -9352,16 +9352,16 @@ const Device_label_AddDeviceLabelWSRequest = z.object({
|
|
|
9352
9352
|
deviceUuid: z.string().optional(),
|
|
9353
9353
|
label: z.string().optional()
|
|
9354
9354
|
});
|
|
9355
|
-
const Device_label_AddDeviceLabelWSResponse = z.record(z.unknown());
|
|
9356
|
-
const Device_label_FindDeviceLabelsByOrgWSRequest = z.record(z.unknown());
|
|
9355
|
+
const Device_label_AddDeviceLabelWSResponse = z.record(z.string(), z.unknown());
|
|
9356
|
+
const Device_label_FindDeviceLabelsByOrgWSRequest = z.record(z.string(), z.unknown());
|
|
9357
9357
|
const Device_label_FindDeviceLabelsByOrgWSResponse = z.object({
|
|
9358
|
-
labelsByDevice: z.record(z.
|
|
9358
|
+
labelsByDevice: z.record(z.string(), z.array(z.string())).optional()
|
|
9359
9359
|
});
|
|
9360
9360
|
const Device_label_RemoveDeviceLabelWSRequest = z.object({
|
|
9361
9361
|
deviceUuid: z.string().optional(),
|
|
9362
9362
|
label: z.string().optional()
|
|
9363
9363
|
});
|
|
9364
|
-
const Device_label_RemoveDeviceLabelWSResponse = z.record(z.unknown());
|
|
9364
|
+
const Device_label_RemoveDeviceLabelWSResponse = z.record(z.string(), z.unknown());
|
|
9365
9365
|
const DiagnosticEventType = z.object({
|
|
9366
9366
|
activity: z.string().optional(),
|
|
9367
9367
|
apMac: z.string().optional(),
|
|
@@ -9392,7 +9392,7 @@ const DiceSettings = z.object({
|
|
|
9392
9392
|
const DiceType = z.object({
|
|
9393
9393
|
enabled: z.boolean().optional(),
|
|
9394
9394
|
integration: IntegrationEnum.optional(),
|
|
9395
|
-
integrationAuditMap: z.record(z.
|
|
9395
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
9396
9396
|
orgUuid: z.string().optional(),
|
|
9397
9397
|
userUuid: z.string().optional()
|
|
9398
9398
|
});
|
|
@@ -9409,7 +9409,7 @@ const DiscoveredThirdPartyCameraType = z.object({
|
|
|
9409
9409
|
codec: z.string().optional(),
|
|
9410
9410
|
createdOn: z.string().datetime({ offset: true }).optional(),
|
|
9411
9411
|
ipAddress: z.string().optional(),
|
|
9412
|
-
lastVisibleMs: z.record(z.
|
|
9412
|
+
lastVisibleMs: z.record(z.string(), z.number().int()).optional(),
|
|
9413
9413
|
macAddress: z.string().optional(),
|
|
9414
9414
|
manufacturer: z.string().optional(),
|
|
9415
9415
|
model: z.string().optional(),
|
|
@@ -9473,7 +9473,7 @@ const Door_GetDoorEventsForSensorWSResponse = z.object({
|
|
|
9473
9473
|
errorMsg: z.string().optional(),
|
|
9474
9474
|
warningMsg: z.string().optional()
|
|
9475
9475
|
});
|
|
9476
|
-
const Door_GetMinimalDoorStatesWSRequest = z.record(z.unknown());
|
|
9476
|
+
const Door_GetMinimalDoorStatesWSRequest = z.record(z.string(), z.unknown());
|
|
9477
9477
|
const Door_GetMinimalDoorStatesWSResponse = z.object({
|
|
9478
9478
|
doorStates: z.array(Door_MinimalDoorStateType).optional(),
|
|
9479
9479
|
error: z.boolean().optional(),
|
|
@@ -9631,7 +9631,7 @@ const MinimalObservableDeviceStateType = z.object({
|
|
|
9631
9631
|
defaultInterfaceMac: z.string().optional(),
|
|
9632
9632
|
directionRadians: z.number().optional(),
|
|
9633
9633
|
externalIPAddress: z.string().optional(),
|
|
9634
|
-
facetNameMap: z.record(z.
|
|
9634
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
9635
9635
|
firmwareUpdateInProgress: z.boolean().optional(),
|
|
9636
9636
|
firmwareVersion: z.string().optional(),
|
|
9637
9637
|
floorNumber: z.number().int().optional(),
|
|
@@ -9663,16 +9663,16 @@ const MinimalObservableDeviceStateType = z.object({
|
|
|
9663
9663
|
const Doorbellcamera_GetDoorbellCameraMinimalStateListWSResponse = z.object({
|
|
9664
9664
|
minimalStates: z.array(MinimalObservableDeviceStateType).optional()
|
|
9665
9665
|
});
|
|
9666
|
-
const Doorbellcamera_GetDoorbellCameraOfflineLanStreamingInfoWSRequest = z.record(z.unknown());
|
|
9666
|
+
const Doorbellcamera_GetDoorbellCameraOfflineLanStreamingInfoWSRequest = z.record(z.string(), z.unknown());
|
|
9667
9667
|
const Doorbellcamera_GetDoorbellCameraOfflineLanStreamingInfoWSResponse = z.object({
|
|
9668
9668
|
error: z.boolean().optional(),
|
|
9669
9669
|
errorMsg: z.string().optional(),
|
|
9670
|
-
info: z.record(z.
|
|
9670
|
+
info: z.record(z.string(), Doorbellcamera_DoorbellCameraOfflineLanStreamingInfo).optional(),
|
|
9671
9671
|
warningMsg: z.string().optional()
|
|
9672
9672
|
});
|
|
9673
|
-
const Doorbellcamera_GetDoorbellCameraRulesForOrgWSRequest = z.record(z.unknown());
|
|
9673
|
+
const Doorbellcamera_GetDoorbellCameraRulesForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
9674
9674
|
const Doorbellcamera_GetDoorbellCameraRulesForOrgWSResponse = z.object({
|
|
9675
|
-
doorbellCameraUuidToRulesMap: z.record(z.
|
|
9675
|
+
doorbellCameraUuidToRulesMap: z.record(z.string(), z.array(Doorbellcamera_ExternalDoorbellCameraComponentRuleType)).optional(),
|
|
9676
9676
|
error: z.boolean().optional(),
|
|
9677
9677
|
errorMsg: z.string().optional(),
|
|
9678
9678
|
warningMsg: z.string().optional()
|
|
@@ -9731,7 +9731,7 @@ const Doorcontroller_DeleteDoorControllerRuleWSRequest = z.object({
|
|
|
9731
9731
|
doorControllerUuid: z.string().optional(),
|
|
9732
9732
|
ruleUuid: z.string().optional()
|
|
9733
9733
|
});
|
|
9734
|
-
const Doorcontroller_DeleteDoorControllerRuleWSResponse = z.record(z.unknown());
|
|
9734
|
+
const Doorcontroller_DeleteDoorControllerRuleWSResponse = z.record(z.string(), z.unknown());
|
|
9735
9735
|
const Doorcontroller_DeleteDoorControllerWSRequest = z.object({
|
|
9736
9736
|
doorControllerUuid: z.string(),
|
|
9737
9737
|
mummify: z.boolean()
|
|
@@ -9798,7 +9798,7 @@ const Doorcontroller_DoorControllerStateType = z.object({
|
|
|
9798
9798
|
name: z.string().optional(),
|
|
9799
9799
|
policyUuid: z.string().optional(),
|
|
9800
9800
|
serialNumber: z.string().optional(),
|
|
9801
|
-
state: z.record(z.unknown()).optional(),
|
|
9801
|
+
state: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
9802
9802
|
subLocationsHierarchyKey: SubLocationsHierarchyKey.optional(),
|
|
9803
9803
|
uuid: z.string().optional(),
|
|
9804
9804
|
wanAddress: z.string().optional()
|
|
@@ -9825,7 +9825,7 @@ const Doorcontroller_GetDoorControllerRulesWSResponse = z.object({
|
|
|
9825
9825
|
rules: z.array(RuleType).optional(),
|
|
9826
9826
|
warningMsg: z.string().optional()
|
|
9827
9827
|
});
|
|
9828
|
-
const Doorcontroller_GetDoorControllerStateListWSRequest = z.record(z.unknown());
|
|
9828
|
+
const Doorcontroller_GetDoorControllerStateListWSRequest = z.record(z.string(), z.unknown());
|
|
9829
9829
|
const Doorcontroller_GetDoorControllerStateListWSResponse = z.object({
|
|
9830
9830
|
error: z.boolean().optional(),
|
|
9831
9831
|
errorMsg: z.string().optional(),
|
|
@@ -9838,7 +9838,7 @@ const Doorcontroller_RegisterDiscoveredRhombusReaderWSRequest = z.object({
|
|
|
9838
9838
|
portNum: z.number().int().optional(),
|
|
9839
9839
|
serialNumber: z.string().optional()
|
|
9840
9840
|
});
|
|
9841
|
-
const Doorcontroller_RegisterDiscoveredRhombusReaderWSResponse = z.record(z.unknown());
|
|
9841
|
+
const Doorcontroller_RegisterDiscoveredRhombusReaderWSResponse = z.record(z.string(), z.unknown());
|
|
9842
9842
|
const Doorcontroller_UpdateDoorControllerConfigWSRequest = z.object({
|
|
9843
9843
|
configUpdate: Device_config_userconfig_IExternalUpdateableDoorControllerUserConfig.optional()
|
|
9844
9844
|
});
|
|
@@ -9980,7 +9980,7 @@ const EnvoySettings = z.object({
|
|
|
9980
9980
|
enablingUserUuid: z.string().optional(),
|
|
9981
9981
|
envoyIntegrationInstalled: z.boolean().optional(),
|
|
9982
9982
|
indexFaces: z.boolean().optional(),
|
|
9983
|
-
locationInfoMap: z.record(z.
|
|
9983
|
+
locationInfoMap: z.record(z.string(), EnvoyLocationInfoType).optional(),
|
|
9984
9984
|
migrated: z.boolean().optional(),
|
|
9985
9985
|
refreshToken: z.string().optional(),
|
|
9986
9986
|
saveClips: z.boolean().optional()
|
|
@@ -9988,7 +9988,7 @@ const EnvoySettings = z.object({
|
|
|
9988
9988
|
const EnvoyType = z.object({
|
|
9989
9989
|
enabled: z.boolean().optional(),
|
|
9990
9990
|
integration: IntegrationEnum.optional(),
|
|
9991
|
-
integrationAuditMap: z.record(z.
|
|
9991
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
9992
9992
|
orgUuid: z.string().optional(),
|
|
9993
9993
|
userUuid: z.string().optional()
|
|
9994
9994
|
});
|
|
@@ -10066,7 +10066,7 @@ const Event_DismissAllPolicyAlertsForDeviceWSResponse = z.object({
|
|
|
10066
10066
|
errorMsg: z.string().optional(),
|
|
10067
10067
|
warningMsg: z.string().optional()
|
|
10068
10068
|
});
|
|
10069
|
-
const Event_DismissAllPolicyAlertsWSRequest = z.record(z.unknown());
|
|
10069
|
+
const Event_DismissAllPolicyAlertsWSRequest = z.record(z.string(), z.unknown());
|
|
10070
10070
|
const Event_DismissAllPolicyAlertsWSResponse = z.object({
|
|
10071
10071
|
error: z.boolean().optional(),
|
|
10072
10072
|
errorMsg: z.string().optional(),
|
|
@@ -10130,7 +10130,7 @@ const Resolution = z.object({
|
|
|
10130
10130
|
});
|
|
10131
10131
|
const Event_SavedClipWithProgressType = z.object({
|
|
10132
10132
|
accessSettings: ClipAccessSettings.optional(),
|
|
10133
|
-
alterMap: z.record(z.
|
|
10133
|
+
alterMap: z.record(z.string(), z.array(AlteredView)).optional(),
|
|
10134
10134
|
analyzed: z.boolean().optional(),
|
|
10135
10135
|
byteCount: z.number().int().optional(),
|
|
10136
10136
|
clipLocation: MetaDataLocationType.optional(),
|
|
@@ -10141,11 +10141,11 @@ const Event_SavedClipWithProgressType = z.object({
|
|
|
10141
10141
|
description: z.string().optional(),
|
|
10142
10142
|
devicePresentationOrder: z.array(z.string()).optional(),
|
|
10143
10143
|
deviceUuid: z.string().optional(),
|
|
10144
|
-
deviceUuidMap: z.record(z.
|
|
10144
|
+
deviceUuidMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
10145
10145
|
deviceUuids: z.array(z.string()).optional(),
|
|
10146
10146
|
durationSec: z.number().int().optional(),
|
|
10147
10147
|
externalTransactionId: z.string().optional(),
|
|
10148
|
-
fisheyeMap: z.record(z.
|
|
10148
|
+
fisheyeMap: z.record(z.string(), z.array(DewarpedView)).optional(),
|
|
10149
10149
|
integrationUploadList: z.array(IntegrationEnum).optional(),
|
|
10150
10150
|
isMonitoringClip: z.boolean().optional(),
|
|
10151
10151
|
isVendorClip: z.boolean().optional(),
|
|
@@ -10217,7 +10217,7 @@ const Event_GetMotionGridWSRequest = z.object({
|
|
|
10217
10217
|
const Event_GetMotionGridWSResponse = z.object({
|
|
10218
10218
|
error: z.boolean().optional(),
|
|
10219
10219
|
errorMsg: z.string().optional(),
|
|
10220
|
-
motionCells: z.record(z.
|
|
10220
|
+
motionCells: z.record(z.string(), z.array(Event_FrontendCell)).optional(),
|
|
10221
10221
|
warningMsg: z.string().optional()
|
|
10222
10222
|
});
|
|
10223
10223
|
const Event_GetPolicyAlertCountWSRequest = z.object({
|
|
@@ -10236,11 +10236,11 @@ const PolicyAlertWithDetailsType = z.object({
|
|
|
10236
10236
|
alertMonitoringThreatCaseUuid: z.string().optional(),
|
|
10237
10237
|
alertMonitoringVerified: z.boolean().optional(),
|
|
10238
10238
|
boundingBoxes: z.array(ClipBoundingBoxType).optional(),
|
|
10239
|
-
boundingBoxesMap: z.record(z.
|
|
10239
|
+
boundingBoxesMap: z.record(z.string(), z.array(ClipBoundingBoxType)).optional(),
|
|
10240
10240
|
clientType: ApiClientTypeEnum.optional(),
|
|
10241
|
-
clipLocationMap: z.record(z.
|
|
10242
|
-
clipLocationMapV2: z.record(z.
|
|
10243
|
-
componentCompositeSeekPointsMap: z.record(z.
|
|
10241
|
+
clipLocationMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
10242
|
+
clipLocationMapV2: z.record(z.string(), z.string()).optional(),
|
|
10243
|
+
componentCompositeSeekPointsMap: z.record(z.string(), z.array(ClipSeekPointV2Type)).optional(),
|
|
10244
10244
|
delayedProcessing: z.boolean().optional(),
|
|
10245
10245
|
deleted: z.boolean().optional(),
|
|
10246
10246
|
durationSec: z.number().int().optional(),
|
|
@@ -10254,7 +10254,7 @@ const PolicyAlertWithDetailsType = z.object({
|
|
|
10254
10254
|
recognizedEventVehicles: z.array(PolicyEventVehicleType).optional(),
|
|
10255
10255
|
saved: z.boolean().optional(),
|
|
10256
10256
|
seekPoints: z.array(ClipSeekPointV2Type).optional(),
|
|
10257
|
-
seekPointsMap: z.record(z.
|
|
10257
|
+
seekPointsMap: z.record(z.string(), z.array(ClipSeekPointV2Type)).optional(),
|
|
10258
10258
|
shared: z.boolean().optional(),
|
|
10259
10259
|
subLocationsHierarchyKey: SubLocationsHierarchyKey.optional(),
|
|
10260
10260
|
textDescription: z.string().optional(),
|
|
@@ -10381,7 +10381,7 @@ const Event_GetSavedClipDetailsWSRequest = z.object({
|
|
|
10381
10381
|
});
|
|
10382
10382
|
const SavedClipWithDetailsType = z.object({
|
|
10383
10383
|
accessSettings: ClipAccessSettings.optional(),
|
|
10384
|
-
alterMap: z.record(z.
|
|
10384
|
+
alterMap: z.record(z.string(), z.array(AlteredView)).optional(),
|
|
10385
10385
|
analyzed: z.boolean().optional(),
|
|
10386
10386
|
boundingBoxes: z.array(ClipBoundingBoxType).optional(),
|
|
10387
10387
|
byteCount: z.number().int().optional(),
|
|
@@ -10392,11 +10392,11 @@ const SavedClipWithDetailsType = z.object({
|
|
|
10392
10392
|
description: z.string().optional(),
|
|
10393
10393
|
devicePresentationOrder: z.array(z.string()).optional(),
|
|
10394
10394
|
deviceUuid: z.string().optional(),
|
|
10395
|
-
deviceUuidMap: z.record(z.
|
|
10395
|
+
deviceUuidMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
10396
10396
|
deviceUuids: z.array(z.string()).optional(),
|
|
10397
10397
|
durationSec: z.number().int().optional(),
|
|
10398
10398
|
externalTransactionId: z.string().optional(),
|
|
10399
|
-
fisheyeMap: z.record(z.
|
|
10399
|
+
fisheyeMap: z.record(z.string(), z.array(DewarpedView)).optional(),
|
|
10400
10400
|
integrationUploadList: z.array(IntegrationEnum).optional(),
|
|
10401
10401
|
isMonitoringClip: z.boolean().optional(),
|
|
10402
10402
|
isVendorClip: z.boolean().optional(),
|
|
@@ -10425,7 +10425,7 @@ const Event_GetSavedClipsByExternalTransactionIdWSRequest = z.object({
|
|
|
10425
10425
|
});
|
|
10426
10426
|
const SavedClipV2Type = z.object({
|
|
10427
10427
|
accessSettings: ClipAccessSettings.optional(),
|
|
10428
|
-
alterMap: z.record(z.
|
|
10428
|
+
alterMap: z.record(z.string(), z.array(AlteredView)).optional(),
|
|
10429
10429
|
analyzed: z.boolean().optional(),
|
|
10430
10430
|
byteCount: z.number().int().optional(),
|
|
10431
10431
|
clipLocation: MetaDataLocationType.optional(),
|
|
@@ -10435,11 +10435,11 @@ const SavedClipV2Type = z.object({
|
|
|
10435
10435
|
description: z.string().optional(),
|
|
10436
10436
|
devicePresentationOrder: z.array(z.string()).optional(),
|
|
10437
10437
|
deviceUuid: z.string().optional(),
|
|
10438
|
-
deviceUuidMap: z.record(z.
|
|
10438
|
+
deviceUuidMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
10439
10439
|
deviceUuids: z.array(z.string()).optional(),
|
|
10440
10440
|
durationSec: z.number().int().optional(),
|
|
10441
10441
|
externalTransactionId: z.string().optional(),
|
|
10442
|
-
fisheyeMap: z.record(z.
|
|
10442
|
+
fisheyeMap: z.record(z.string(), z.array(DewarpedView)).optional(),
|
|
10443
10443
|
integrationUploadList: z.array(IntegrationEnum).optional(),
|
|
10444
10444
|
isMonitoringClip: z.boolean().optional(),
|
|
10445
10445
|
isVendorClip: z.boolean().optional(),
|
|
@@ -10473,7 +10473,7 @@ const Event_GetSavedClipsV2WSResponse = z.object({
|
|
|
10473
10473
|
savedClips: z.array(SavedClipV2Type).optional(),
|
|
10474
10474
|
warningMsg: z.string().optional()
|
|
10475
10475
|
});
|
|
10476
|
-
const Event_GetSavedClipsWSRequest = z.record(z.unknown());
|
|
10476
|
+
const Event_GetSavedClipsWSRequest = z.record(z.string(), z.unknown());
|
|
10477
10477
|
const Event_GetSavedClipsWSResponse = z.object({
|
|
10478
10478
|
error: z.boolean().optional(),
|
|
10479
10479
|
errorMsg: z.string().optional(),
|
|
@@ -10518,7 +10518,7 @@ const Event_GetSharedClipGroupsV2WSResponse = z.object({
|
|
|
10518
10518
|
sharedClipGroups: z.array(SharedClipGroupWrapperV2Type).optional(),
|
|
10519
10519
|
warningMsg: z.string().optional()
|
|
10520
10520
|
});
|
|
10521
|
-
const Event_GetSharedClipGroupsWSRequest = z.record(z.unknown());
|
|
10521
|
+
const Event_GetSharedClipGroupsWSRequest = z.record(z.string(), z.unknown());
|
|
10522
10522
|
const SharedClipType = z.object({
|
|
10523
10523
|
clipMetaData: ClipMetaDataType.optional(),
|
|
10524
10524
|
deviceUuid: z.string().optional(),
|
|
@@ -10542,7 +10542,7 @@ const Event_GetSharedClipGroupsWSResponse = z.object({
|
|
|
10542
10542
|
sharedClipGroups: z.array(SharedClipGroupWrapperType).optional(),
|
|
10543
10543
|
warningMsg: z.string().optional()
|
|
10544
10544
|
});
|
|
10545
|
-
const Event_GetSplicedClipsInProgressWSRequest = z.record(z.unknown());
|
|
10545
|
+
const Event_GetSplicedClipsInProgressWSRequest = z.record(z.string(), z.unknown());
|
|
10546
10546
|
const SplicedClipType = z.object({
|
|
10547
10547
|
accessSettings: ClipAccessSettings.optional(),
|
|
10548
10548
|
analyzeClip: z.boolean().optional(),
|
|
@@ -10551,12 +10551,12 @@ const SplicedClipType = z.object({
|
|
|
10551
10551
|
consoleDelete: z.boolean().optional(),
|
|
10552
10552
|
deleted: z.boolean().optional(),
|
|
10553
10553
|
description: z.string().optional(),
|
|
10554
|
-
deviceMap: z.record(z.
|
|
10554
|
+
deviceMap: z.record(z.string(), z.lazy(() => SplicedClipProgress)).optional(),
|
|
10555
10555
|
devicePresentationOrder: z.array(z.string()).optional(),
|
|
10556
10556
|
deviceUuid: z.string().optional(),
|
|
10557
|
-
deviceUuidMap: z.record(z.
|
|
10558
|
-
deviceUuidToAlteredViewMap: z.record(z.
|
|
10559
|
-
deviceUuidToFisheyePresentationMap: z.record(z.
|
|
10557
|
+
deviceUuidMap: z.record(z.string(), z.lazy(() => SplicedClipProgress)).optional(),
|
|
10558
|
+
deviceUuidToAlteredViewMap: z.record(z.string(), z.array(AlteredView)).optional(),
|
|
10559
|
+
deviceUuidToFisheyePresentationMap: z.record(z.string(), z.array(DewarpedView)).optional(),
|
|
10560
10560
|
duration: z.number().int().optional(),
|
|
10561
10561
|
integrationUploadList: z.array(IntegrationEnum).optional(),
|
|
10562
10562
|
isPolicyEvent: z.boolean().optional(),
|
|
@@ -10582,7 +10582,7 @@ const Event_GetSplicedClipsInProgressWSResponse = z.object({
|
|
|
10582
10582
|
splicedClips: z.array(SplicedClipType).optional(),
|
|
10583
10583
|
warningMsg: z.string().optional()
|
|
10584
10584
|
});
|
|
10585
|
-
const Event_GetUnhealthyDeviceAlertsWSRequest = z.record(z.unknown());
|
|
10585
|
+
const Event_GetUnhealthyDeviceAlertsWSRequest = z.record(z.string(), z.unknown());
|
|
10586
10586
|
const UnHealthyDeviceAlertType = z.object({
|
|
10587
10587
|
deviceUuid: z.string().optional(),
|
|
10588
10588
|
orgUuid: z.string().optional(),
|
|
@@ -10615,7 +10615,7 @@ const Event_ReportBadPolicyAlertWSResponse = z.object({
|
|
|
10615
10615
|
});
|
|
10616
10616
|
const Event_SavePolicyAlertWSRequest = z.object({
|
|
10617
10617
|
alertUuid: z.string().optional(),
|
|
10618
|
-
fisheyePresentationMap: z.record(z.
|
|
10618
|
+
fisheyePresentationMap: z.record(z.string(), z.array(DewarpedView)).optional(),
|
|
10619
10619
|
savedClipDescription: z.string().optional(),
|
|
10620
10620
|
savedClipTitle: z.string().optional()
|
|
10621
10621
|
});
|
|
@@ -10645,7 +10645,7 @@ const Event_SearchMotionGridWithActivitiesWSRequest = z.object({
|
|
|
10645
10645
|
const Event_SearchMotionGridWithActivitiesWSResponse = z.object({
|
|
10646
10646
|
error: z.boolean().optional(),
|
|
10647
10647
|
errorMsg: z.string().optional(),
|
|
10648
|
-
timeUtcSecsToActivityMap: z.record(z.
|
|
10648
|
+
timeUtcSecsToActivityMap: z.record(z.string(), z.lazy(() => Event_SearchMotionGridWithActivitiesWSResponse_MotionGridActivity)).optional(),
|
|
10649
10649
|
warningMsg: z.string().optional()
|
|
10650
10650
|
});
|
|
10651
10651
|
const Event_SearchMotionGridWithActivitiesWSResponse_ActivityWithId = z.object({
|
|
@@ -10758,7 +10758,7 @@ const Eventsearch_CombinedSeekPointType = z.object({
|
|
|
10758
10758
|
faceName: z.string().optional(),
|
|
10759
10759
|
licensePlate: z.string().optional(),
|
|
10760
10760
|
objectId: z.number().int().optional(),
|
|
10761
|
-
originalEvent: z.record(z.unknown()).optional(),
|
|
10761
|
+
originalEvent: z.record(z.string(), z.unknown()).optional(),
|
|
10762
10762
|
seekpointEndTimeMs: z.number().int().optional(),
|
|
10763
10763
|
seekpointStartTimeMs: z.number().int().optional(),
|
|
10764
10764
|
thumbnailUrl: z.string().optional(),
|
|
@@ -10917,7 +10917,7 @@ const FaceUploadMetadata = z.object({
|
|
|
10917
10917
|
const Facerecognition_faceevent_DeleteFaceEventWSRequest = z.object({
|
|
10918
10918
|
eventUuid: z.string().optional()
|
|
10919
10919
|
});
|
|
10920
|
-
const Facerecognition_faceevent_DeleteFaceEventWSResponse = z.record(z.unknown());
|
|
10920
|
+
const Facerecognition_faceevent_DeleteFaceEventWSResponse = z.record(z.string(), z.unknown());
|
|
10921
10921
|
const TimestampFilter = z.object({
|
|
10922
10922
|
rangeEnd: z.string().datetime({ offset: true }).optional(),
|
|
10923
10923
|
rangeStart: z.string().datetime({ offset: true }).optional()
|
|
@@ -11084,13 +11084,13 @@ const Facerecognition_matchmaker_CreatePersonAndFaceMatchmakersWSResponse = z.ob
|
|
|
11084
11084
|
const Facerecognition_matchmaker_DeleteFaceMatchmakerWSRequest = z.object({
|
|
11085
11085
|
faceId: z.string().optional()
|
|
11086
11086
|
});
|
|
11087
|
-
const Facerecognition_matchmaker_DeleteFaceMatchmakerWSResponse = z.record(z.unknown());
|
|
11087
|
+
const Facerecognition_matchmaker_DeleteFaceMatchmakerWSResponse = z.record(z.string(), z.unknown());
|
|
11088
11088
|
const Facerecognition_matchmaker_FileUploadResult = z.object({
|
|
11089
11089
|
fileName: z.string().optional(),
|
|
11090
11090
|
message: z.string().optional(),
|
|
11091
11091
|
success: z.boolean().optional()
|
|
11092
11092
|
});
|
|
11093
|
-
const Facerecognition_matchmaker_FindFaceMatchmakersByOrgWSRequest = z.record(z.unknown());
|
|
11093
|
+
const Facerecognition_matchmaker_FindFaceMatchmakersByOrgWSRequest = z.record(z.string(), z.unknown());
|
|
11094
11094
|
const Facerecognition_matchmaker_FindFaceMatchmakersByOrgWSResponse = z.object({
|
|
11095
11095
|
faceMatchmakers: z.array(Facerecognition_matchmaker_ExternalFaceMatchmaker).optional()
|
|
11096
11096
|
});
|
|
@@ -11106,7 +11106,7 @@ const Facerecognition_matchmaker_FindFaceUploadMetadataByTransactionWSRequest =
|
|
|
11106
11106
|
const Facerecognition_matchmaker_FindFaceUploadMetadataByTransactionWSResponse = z.object({
|
|
11107
11107
|
faceUploadMetadata: z.array(FaceUploadMetadata).optional()
|
|
11108
11108
|
});
|
|
11109
|
-
const Facerecognition_matchmaker_GetFaceMatchingConfigWSRequest = z.record(z.unknown());
|
|
11109
|
+
const Facerecognition_matchmaker_GetFaceMatchingConfigWSRequest = z.record(z.string(), z.unknown());
|
|
11110
11110
|
const Facerecognition_matchmaker_GetFaceMatchingConfigWSResponse = z.object({
|
|
11111
11111
|
faceMatchConfidenceThreshold: z.number().optional()
|
|
11112
11112
|
});
|
|
@@ -11138,7 +11138,7 @@ const Facerecognition_person_AddPersonLabelWSRequest = z.object({
|
|
|
11138
11138
|
label: z.string().optional(),
|
|
11139
11139
|
personUuid: z.string().optional()
|
|
11140
11140
|
});
|
|
11141
|
-
const Facerecognition_person_AddPersonLabelWSResponse = z.record(z.unknown());
|
|
11141
|
+
const Facerecognition_person_AddPersonLabelWSResponse = z.record(z.string(), z.unknown());
|
|
11142
11142
|
const Facerecognition_person_CreatePersonWSRequest = z.object({
|
|
11143
11143
|
name: z.string().optional()
|
|
11144
11144
|
});
|
|
@@ -11148,14 +11148,14 @@ const Facerecognition_person_CreatePersonWSResponse = z.object({
|
|
|
11148
11148
|
const Facerecognition_person_DeletePersonWSRequest = z.object({
|
|
11149
11149
|
personUuid: z.string().optional()
|
|
11150
11150
|
});
|
|
11151
|
-
const Facerecognition_person_DeletePersonWSResponse = z.record(z.unknown());
|
|
11152
|
-
const Facerecognition_person_FindPeopleByOrgWSRequest = z.record(z.unknown());
|
|
11151
|
+
const Facerecognition_person_DeletePersonWSResponse = z.record(z.string(), z.unknown());
|
|
11152
|
+
const Facerecognition_person_FindPeopleByOrgWSRequest = z.record(z.string(), z.unknown());
|
|
11153
11153
|
const Facerecognition_person_FindPeopleByOrgWSResponse = z.object({
|
|
11154
11154
|
people: z.array(Person).optional()
|
|
11155
11155
|
});
|
|
11156
|
-
const Facerecognition_person_FindPersonLabelsByOrgWSRequest = z.record(z.unknown());
|
|
11156
|
+
const Facerecognition_person_FindPersonLabelsByOrgWSRequest = z.record(z.string(), z.unknown());
|
|
11157
11157
|
const Facerecognition_person_FindPersonLabelsByOrgWSResponse = z.object({
|
|
11158
|
-
labelsByPerson: z.record(z.
|
|
11158
|
+
labelsByPerson: z.record(z.string(), z.array(z.string())).optional()
|
|
11159
11159
|
});
|
|
11160
11160
|
const Facerecognition_person_GetPersonWSRequest = z.object({
|
|
11161
11161
|
personUuid: z.string().optional()
|
|
@@ -11167,14 +11167,14 @@ const Facerecognition_person_RemovePersonLabelWSRequest = z.object({
|
|
|
11167
11167
|
label: z.string().optional(),
|
|
11168
11168
|
personUuid: z.string().optional()
|
|
11169
11169
|
});
|
|
11170
|
-
const Facerecognition_person_RemovePersonLabelWSResponse = z.record(z.unknown());
|
|
11170
|
+
const Facerecognition_person_RemovePersonLabelWSResponse = z.record(z.string(), z.unknown());
|
|
11171
11171
|
const PersonSelectiveUpdate = z.object({
|
|
11172
11172
|
createdOn: z.string().datetime({ offset: true }).optional(),
|
|
11173
11173
|
email: z.string().optional(),
|
|
11174
11174
|
name: z.string().optional(),
|
|
11175
11175
|
orgUuid: z.string().optional(),
|
|
11176
11176
|
updatedOn: z.string().datetime({ offset: true }).optional(),
|
|
11177
|
-
updatedSetMethodMap: z.record(z.
|
|
11177
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
11178
11178
|
uuid: z.string().optional()
|
|
11179
11179
|
});
|
|
11180
11180
|
const Facerecognition_person_UpdatePersonWSRequest = z.object({
|
|
@@ -11188,13 +11188,13 @@ const FeatureCompatabilityType = z.object({
|
|
|
11188
11188
|
deviceFeatureEnablement: DeviceFeatureEnum.optional(),
|
|
11189
11189
|
featureName: z.string().optional(),
|
|
11190
11190
|
generatedActivities: z.array(ActivityEnum).optional(),
|
|
11191
|
-
hardwareDefaultMap: z.record(z.
|
|
11191
|
+
hardwareDefaultMap: z.record(z.string(), z.boolean()).optional(),
|
|
11192
11192
|
requiredLicenses: z.array(License).optional(),
|
|
11193
11193
|
supportedHardware: z.array(HardwareVariationEnum).optional()
|
|
11194
11194
|
});
|
|
11195
11195
|
const Feature_DeviceFeaturesType = z.object({
|
|
11196
11196
|
deviceUuid: z.string().optional(),
|
|
11197
|
-
featureMap: z.record(z.
|
|
11197
|
+
featureMap: z.record(z.string(), z.boolean()).optional()
|
|
11198
11198
|
});
|
|
11199
11199
|
const Feature_GetDeviceEventTypesWSRequest = z.object({
|
|
11200
11200
|
deviceUuid: z.string().optional()
|
|
@@ -11220,7 +11220,7 @@ const Feature_GetDeviceFeaturesWSResponse = z.object({
|
|
|
11220
11220
|
features: Feature_DeviceFeaturesType.optional(),
|
|
11221
11221
|
warningMsg: z.string().optional()
|
|
11222
11222
|
});
|
|
11223
|
-
const Feature_GetFeatureCompatabilityMatrixWSRequest = z.record(z.unknown());
|
|
11223
|
+
const Feature_GetFeatureCompatabilityMatrixWSRequest = z.record(z.string(), z.unknown());
|
|
11224
11224
|
const Feature_GetFeatureCompatabilityMatrixWSResponse = z.object({
|
|
11225
11225
|
error: z.boolean().optional(),
|
|
11226
11226
|
errorMsg: z.string().optional(),
|
|
@@ -11229,7 +11229,7 @@ const Feature_GetFeatureCompatabilityMatrixWSResponse = z.object({
|
|
|
11229
11229
|
});
|
|
11230
11230
|
const Feature_UpdateDeviceFeaturesWSRequest = z.object({
|
|
11231
11231
|
deviceUuid: z.string().optional(),
|
|
11232
|
-
featureMap: z.record(z.
|
|
11232
|
+
featureMap: z.record(z.string(), z.boolean()).optional()
|
|
11233
11233
|
});
|
|
11234
11234
|
const Feature_UpdateDeviceFeaturesWSResponse = z.object({
|
|
11235
11235
|
error: z.boolean().optional(),
|
|
@@ -11245,7 +11245,7 @@ const RhombusUserFidoCredential = z.object({
|
|
|
11245
11245
|
credentialId: z.string().optional(),
|
|
11246
11246
|
deleted: z.boolean().optional(),
|
|
11247
11247
|
displayName: z.string().optional(),
|
|
11248
|
-
lastSeenInfoMap: z.record(z.
|
|
11248
|
+
lastSeenInfoMap: z.record(z.string(), z.lazy(() => LastSeenInfo)).optional(),
|
|
11249
11249
|
rhombusUserUuid: z.string().optional(),
|
|
11250
11250
|
signatureCounterUnreliable: z.boolean().optional(),
|
|
11251
11251
|
updatedAtMillis: z.number().int().optional()
|
|
@@ -11254,8 +11254,8 @@ const Fidoauth_FindLoginCredentialsForCurrentUserWSResponse = z.object({
|
|
|
11254
11254
|
lastEvaluatedKey: z.string().optional(),
|
|
11255
11255
|
loginCredentials: z.array(RhombusUserFidoCredential).optional()
|
|
11256
11256
|
});
|
|
11257
|
-
const Fidoauth_InitiateLoginCredentialRegistrationForCurrentUserWSRequest = z.record(z.unknown());
|
|
11258
|
-
const JsonNode = z.record(z.unknown());
|
|
11257
|
+
const Fidoauth_InitiateLoginCredentialRegistrationForCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
11258
|
+
const JsonNode = z.record(z.string(), z.unknown());
|
|
11259
11259
|
const Fidoauth_InitiateLoginCredentialRegistrationForCurrentUserWSResponse = z.object({
|
|
11260
11260
|
registrationRequest: JsonNode.optional()
|
|
11261
11261
|
});
|
|
@@ -11296,7 +11296,7 @@ const FlicDevice = z.object({
|
|
|
11296
11296
|
const FlicType = z.object({
|
|
11297
11297
|
enabled: z.boolean().optional(),
|
|
11298
11298
|
integration: IntegrationEnum.optional(),
|
|
11299
|
-
integrationAuditMap: z.record(z.
|
|
11299
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
11300
11300
|
orgUuid: z.string().optional(),
|
|
11301
11301
|
userUuid: z.string().optional()
|
|
11302
11302
|
});
|
|
@@ -11305,15 +11305,15 @@ const FormDataContentDisposition = z.object({
|
|
|
11305
11305
|
fileName: z.string().optional(),
|
|
11306
11306
|
modificationDate: z.string().datetime({ offset: true }).optional(),
|
|
11307
11307
|
name: z.string().optional(),
|
|
11308
|
-
parameters: z.record(z.
|
|
11308
|
+
parameters: z.record(z.string(), z.string()).optional(),
|
|
11309
11309
|
readDate: z.string().datetime({ offset: true }).optional(),
|
|
11310
11310
|
size: z.number().int().optional(),
|
|
11311
11311
|
type: z.string().optional()
|
|
11312
11312
|
});
|
|
11313
11313
|
const FormDataBodyPart = z.object({
|
|
11314
|
-
content: z.record(z.unknown()).optional(),
|
|
11314
|
+
content: z.record(z.string(), z.unknown()).optional(),
|
|
11315
11315
|
contentDisposition: ContentDisposition.optional(),
|
|
11316
|
-
entity: z.record(z.unknown()).optional(),
|
|
11316
|
+
entity: z.record(z.string(), z.unknown()).optional(),
|
|
11317
11317
|
fileName: z.string().optional(),
|
|
11318
11318
|
formDataContentDisposition: FormDataContentDisposition.optional(),
|
|
11319
11319
|
headers: z.object({
|
|
@@ -11333,8 +11333,8 @@ const FormDataBodyPart = z.object({
|
|
|
11333
11333
|
const FormDataMultiPart = z.object({
|
|
11334
11334
|
bodyParts: z.array(BodyPart).optional(),
|
|
11335
11335
|
contentDisposition: ContentDisposition.optional(),
|
|
11336
|
-
entity: z.record(z.unknown()).optional(),
|
|
11337
|
-
fields: z.record(z.
|
|
11336
|
+
entity: z.record(z.string(), z.unknown()).optional(),
|
|
11337
|
+
fields: z.record(z.string(), z.array(FormDataBodyPart)).optional(),
|
|
11338
11338
|
headers: z.object({
|
|
11339
11339
|
empty: z.boolean().optional()
|
|
11340
11340
|
}).optional(),
|
|
@@ -11354,7 +11354,7 @@ const GeneaSettings = z.object({
|
|
|
11354
11354
|
alertUnauthorizedFaces: z.boolean().optional(),
|
|
11355
11355
|
apiToken: z.string().optional(),
|
|
11356
11356
|
createSeekPoints: z.boolean().optional(),
|
|
11357
|
-
doorInfoMap: z.record(z.
|
|
11357
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
11358
11358
|
enabled: z.boolean().optional(),
|
|
11359
11359
|
enabledTimestampMs: z.number().int().optional(),
|
|
11360
11360
|
enablingUser: z.string().optional(),
|
|
@@ -11369,7 +11369,7 @@ const GeneaSettings = z.object({
|
|
|
11369
11369
|
const GeneaType = z.object({
|
|
11370
11370
|
enabled: z.boolean().optional(),
|
|
11371
11371
|
integration: IntegrationEnum.optional(),
|
|
11372
|
-
integrationAuditMap: z.record(z.
|
|
11372
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
11373
11373
|
orgUuid: z.string().optional(),
|
|
11374
11374
|
userUuid: z.string().optional()
|
|
11375
11375
|
});
|
|
@@ -11464,7 +11464,7 @@ const GoogleSettingsV2 = z.object({
|
|
|
11464
11464
|
const GoogleType = z.object({
|
|
11465
11465
|
enabled: z.boolean().optional(),
|
|
11466
11466
|
integration: IntegrationEnum.optional(),
|
|
11467
|
-
integrationAuditMap: z.record(z.
|
|
11467
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
11468
11468
|
orgUuid: z.string().optional(),
|
|
11469
11469
|
userUuid: z.string().optional()
|
|
11470
11470
|
});
|
|
@@ -11516,7 +11516,7 @@ const Group_CreateOrgGroupWSResponse = z.object({
|
|
|
11516
11516
|
const Group_DeleteOrgGroupWSRequest = z.object({
|
|
11517
11517
|
groupUuid: z.string().optional()
|
|
11518
11518
|
});
|
|
11519
|
-
const Group_DeleteOrgGroupWSResponse = z.record(z.unknown());
|
|
11519
|
+
const Group_DeleteOrgGroupWSResponse = z.record(z.string(), z.unknown());
|
|
11520
11520
|
const Group_FindAllUsersForOrgGroupWSRequest = z.object({
|
|
11521
11521
|
groupUuid: z.string().optional()
|
|
11522
11522
|
});
|
|
@@ -11529,7 +11529,7 @@ const Group_FindOrgGroupMembershipsByUserWSRequest = z.object({
|
|
|
11529
11529
|
const Group_FindOrgGroupMembershipsByUserWSResponse = z.object({
|
|
11530
11530
|
userGroupMemberships: z.array(OrgGroupMemberType).optional()
|
|
11531
11531
|
});
|
|
11532
|
-
const Group_FindOrgGroupMembershipsForCurrentUserWSRequest = z.record(z.unknown());
|
|
11532
|
+
const Group_FindOrgGroupMembershipsForCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
11533
11533
|
const Group_FindOrgGroupMembershipsForCurrentUserWSResponse = z.object({
|
|
11534
11534
|
userGroupMemberships: z.array(OrgGroupMemberType).optional()
|
|
11535
11535
|
});
|
|
@@ -11545,7 +11545,7 @@ const Group_FindOrgGroupsByNamePrefixWSRequest = z.object({
|
|
|
11545
11545
|
const Group_FindOrgGroupsByNamePrefixWSResponse = z.object({
|
|
11546
11546
|
groups: z.array(OrgGroupType).optional()
|
|
11547
11547
|
});
|
|
11548
|
-
const Group_FindOrgGroupsByOrgWSRequest = z.record(z.unknown());
|
|
11548
|
+
const Group_FindOrgGroupsByOrgWSRequest = z.record(z.string(), z.unknown());
|
|
11549
11549
|
const Group_FindOrgGroupsByOrgWSResponse = z.object({
|
|
11550
11550
|
groups: z.array(OrgGroupType).optional()
|
|
11551
11551
|
});
|
|
@@ -11559,7 +11559,7 @@ const Group_RemoveUsersFromOrgGroupWSRequest = z.object({
|
|
|
11559
11559
|
groupUuid: z.string().optional(),
|
|
11560
11560
|
userUuids: z.array(z.string()).optional()
|
|
11561
11561
|
});
|
|
11562
|
-
const Group_RemoveUsersFromOrgGroupWSResponse = z.record(z.unknown());
|
|
11562
|
+
const Group_RemoveUsersFromOrgGroupWSResponse = z.record(z.string(), z.unknown());
|
|
11563
11563
|
const Group_UpdateOrgGroupWSRequest = z.object({
|
|
11564
11564
|
description: z.string().optional(),
|
|
11565
11565
|
groupUuid: z.string().optional(),
|
|
@@ -11671,7 +11671,7 @@ const GuestInviteSelectiveUpdateByInvocation = z.object({
|
|
|
11671
11671
|
profileImageUrl: z.string().optional(),
|
|
11672
11672
|
state: z.string().optional(),
|
|
11673
11673
|
status: GuestStatusEnum.optional(),
|
|
11674
|
-
updatedSetMethodMap: z.record(z.
|
|
11674
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
11675
11675
|
uuid: z.string().optional()
|
|
11676
11676
|
});
|
|
11677
11677
|
const GuestManagementOrgSettings = z.object({
|
|
@@ -11683,12 +11683,12 @@ const GuestManagementSettingsSelectiveUpdate = z.object({
|
|
|
11683
11683
|
hexIdentityColor: z.string().optional(),
|
|
11684
11684
|
logoImageString: z.string().optional(),
|
|
11685
11685
|
orgUuid: z.string().optional(),
|
|
11686
|
-
updatedSetMethodMap: z.record(z.
|
|
11686
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
11687
11687
|
});
|
|
11688
11688
|
const GuestManagementType = z.object({
|
|
11689
11689
|
enabled: z.boolean().optional(),
|
|
11690
11690
|
integration: IntegrationEnum.optional(),
|
|
11691
|
-
integrationAuditMap: z.record(z.
|
|
11691
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
11692
11692
|
orgUuid: z.string().optional(),
|
|
11693
11693
|
userUuid: z.string().optional()
|
|
11694
11694
|
});
|
|
@@ -11720,7 +11720,7 @@ const GuestSelectiveUpdateByInvocation = z.object({
|
|
|
11720
11720
|
profileImageUrl: z.string().optional(),
|
|
11721
11721
|
state: z.string().optional(),
|
|
11722
11722
|
status: GuestStatusEnum.optional(),
|
|
11723
|
-
updatedSetMethodMap: z.record(z.
|
|
11723
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional()
|
|
11724
11724
|
});
|
|
11725
11725
|
const Guestmanagement_ActivateKioskWSRequest = z.object({
|
|
11726
11726
|
locationUuid: z.string().optional()
|
|
@@ -11731,7 +11731,7 @@ const Guestmanagement_ActivateKioskWSResponse = z.object({
|
|
|
11731
11731
|
redirectUrl: z.string().optional(),
|
|
11732
11732
|
warningMsg: z.string().optional()
|
|
11733
11733
|
});
|
|
11734
|
-
const Guestmanagement_BaseGuestManagementWSRequest = z.record(z.unknown());
|
|
11734
|
+
const Guestmanagement_BaseGuestManagementWSRequest = z.record(z.string(), z.unknown());
|
|
11735
11735
|
const Guestmanagement_CreateGuestInviteWSRequest = z.object({
|
|
11736
11736
|
guestInvite: GuestInvite
|
|
11737
11737
|
});
|
|
@@ -11912,7 +11912,7 @@ const HaloSettings = z.object({
|
|
|
11912
11912
|
saveClips: z.boolean().optional(),
|
|
11913
11913
|
savedClipDurationMs: z.number().int().optional(),
|
|
11914
11914
|
sensorName: z.string().optional(),
|
|
11915
|
-
sensorToCamerasMap: z.record(z.
|
|
11915
|
+
sensorToCamerasMap: z.record(z.string(), z.array(z.string())).optional(),
|
|
11916
11916
|
triggerNotification: z.boolean().optional(),
|
|
11917
11917
|
url: z.string().optional()
|
|
11918
11918
|
});
|
|
@@ -12033,8 +12033,8 @@ const Help_TriageDeviceWSResponse = z.object({
|
|
|
12033
12033
|
uptimeWindows: z.array(TimeWindowSeconds).optional(),
|
|
12034
12034
|
warningMsg: z.string().optional()
|
|
12035
12035
|
});
|
|
12036
|
-
const HttpMethod = z.record(z.unknown());
|
|
12037
|
-
const HttpRange = z.record(z.unknown());
|
|
12036
|
+
const HttpMethod = z.record(z.string(), z.unknown());
|
|
12037
|
+
const HttpRange = z.record(z.string(), z.unknown());
|
|
12038
12038
|
const HttpHeaders = z.object({
|
|
12039
12039
|
accept: z.array(MediaType).optional(),
|
|
12040
12040
|
acceptCharset: z.array(z.object({
|
|
@@ -12069,7 +12069,7 @@ const HttpHeaders = z.object({
|
|
|
12069
12069
|
accessControlMaxAge: z.number().int().optional(),
|
|
12070
12070
|
accessControlRequestHeaders: z.array(z.string()).optional(),
|
|
12071
12071
|
accessControlRequestMethod: HttpMethod.optional(),
|
|
12072
|
-
all: z.record(z.
|
|
12072
|
+
all: z.record(z.string(), z.string()).optional(),
|
|
12073
12073
|
allow: z.array(HttpMethod).optional(),
|
|
12074
12074
|
basicAuth: z.string().optional(),
|
|
12075
12075
|
bearerAuth: z.string().optional(),
|
|
@@ -12143,7 +12143,7 @@ const HttpStatusCode = z.object({
|
|
|
12143
12143
|
const IAperioType = z.object({
|
|
12144
12144
|
enabled: z.boolean().optional(),
|
|
12145
12145
|
integration: IntegrationEnum.optional(),
|
|
12146
|
-
integrationAuditMap: z.record(z.
|
|
12146
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12147
12147
|
orgUuid: z.string().optional(),
|
|
12148
12148
|
userUuid: z.string().optional()
|
|
12149
12149
|
});
|
|
@@ -12152,17 +12152,17 @@ const IAvigilonAltaType = z.object({
|
|
|
12152
12152
|
apiToken: z.string().optional(),
|
|
12153
12153
|
badgeAuthDisablesAlarmMonitoring: z.boolean().optional(),
|
|
12154
12154
|
createSeekPoints: z.boolean().optional(),
|
|
12155
|
-
doorInfoMap: z.record(z.
|
|
12156
|
-
doorToCameraMap: z.record(z.
|
|
12155
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
12156
|
+
doorToCameraMap: z.record(z.string(), z.array(z.string())).optional(),
|
|
12157
12157
|
doorsValidated: z.boolean().optional(),
|
|
12158
12158
|
email: z.string().optional(),
|
|
12159
12159
|
enabled: z.boolean().optional(),
|
|
12160
|
-
eventToWebhookIdMap: z.record(z.
|
|
12161
|
-
eventToWebhookMap: z.record(z.
|
|
12160
|
+
eventToWebhookIdMap: z.record(z.string(), z.number().int()).optional(),
|
|
12161
|
+
eventToWebhookMap: z.record(z.string(), z.lazy(() => WebhookMapEntry)).optional(),
|
|
12162
12162
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
12163
12163
|
indexFaces: z.boolean().optional(),
|
|
12164
12164
|
integration: IntegrationEnum.optional(),
|
|
12165
|
-
integrationAuditMap: z.record(z.
|
|
12165
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12166
12166
|
misconfiguredDoors: z.array(z.string()).optional(),
|
|
12167
12167
|
orgUuid: z.string().optional(),
|
|
12168
12168
|
password: z.string().optional(),
|
|
@@ -12176,133 +12176,133 @@ const IAvigilonAltaType = z.object({
|
|
|
12176
12176
|
const InformacastType = z.object({
|
|
12177
12177
|
enabled: z.boolean().optional(),
|
|
12178
12178
|
integration: IntegrationEnum.optional(),
|
|
12179
|
-
integrationAuditMap: z.record(z.
|
|
12179
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12180
12180
|
orgUuid: z.string().optional(),
|
|
12181
12181
|
userUuid: z.string().optional()
|
|
12182
12182
|
});
|
|
12183
12183
|
const InnerRangeType = z.object({
|
|
12184
12184
|
enabled: z.boolean().optional(),
|
|
12185
12185
|
integration: IntegrationEnum.optional(),
|
|
12186
|
-
integrationAuditMap: z.record(z.
|
|
12186
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12187
12187
|
orgUuid: z.string().optional(),
|
|
12188
12188
|
userUuid: z.string().optional()
|
|
12189
12189
|
});
|
|
12190
12190
|
const KisiType = z.object({
|
|
12191
12191
|
enabled: z.boolean().optional(),
|
|
12192
12192
|
integration: IntegrationEnum.optional(),
|
|
12193
|
-
integrationAuditMap: z.record(z.
|
|
12193
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12194
12194
|
orgUuid: z.string().optional(),
|
|
12195
12195
|
userUuid: z.string().optional()
|
|
12196
12196
|
});
|
|
12197
12197
|
const LumeoType = z.object({
|
|
12198
12198
|
enabled: z.boolean().optional(),
|
|
12199
12199
|
integration: IntegrationEnum.optional(),
|
|
12200
|
-
integrationAuditMap: z.record(z.
|
|
12200
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12201
12201
|
orgUuid: z.string().optional(),
|
|
12202
12202
|
userUuid: z.string().optional()
|
|
12203
12203
|
});
|
|
12204
12204
|
const MicrosoftTeamsType = z.object({
|
|
12205
12205
|
enabled: z.boolean().optional(),
|
|
12206
12206
|
integration: IntegrationEnum.optional(),
|
|
12207
|
-
integrationAuditMap: z.record(z.
|
|
12207
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12208
12208
|
orgUuid: z.string().optional(),
|
|
12209
12209
|
userUuid: z.string().optional()
|
|
12210
12210
|
});
|
|
12211
12211
|
const NineOneOneCellularType = z.object({
|
|
12212
12212
|
enabled: z.boolean().optional(),
|
|
12213
12213
|
integration: IntegrationEnum.optional(),
|
|
12214
|
-
integrationAuditMap: z.record(z.
|
|
12214
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12215
12215
|
orgUuid: z.string().optional(),
|
|
12216
12216
|
userUuid: z.string().optional()
|
|
12217
12217
|
});
|
|
12218
12218
|
const OmnialertType = z.object({
|
|
12219
12219
|
enabled: z.boolean().optional(),
|
|
12220
12220
|
integration: IntegrationEnum.optional(),
|
|
12221
|
-
integrationAuditMap: z.record(z.
|
|
12221
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12222
12222
|
orgUuid: z.string().optional(),
|
|
12223
12223
|
userUuid: z.string().optional()
|
|
12224
12224
|
});
|
|
12225
12225
|
const OpenAIType = z.object({
|
|
12226
12226
|
enabled: z.boolean().optional(),
|
|
12227
12227
|
integration: IntegrationEnum.optional(),
|
|
12228
|
-
integrationAuditMap: z.record(z.
|
|
12228
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12229
12229
|
orgUuid: z.string().optional(),
|
|
12230
12230
|
userUuid: z.string().optional()
|
|
12231
12231
|
});
|
|
12232
12232
|
const OpentechAllianceType = z.object({
|
|
12233
12233
|
enabled: z.boolean().optional(),
|
|
12234
12234
|
integration: IntegrationEnum.optional(),
|
|
12235
|
-
integrationAuditMap: z.record(z.
|
|
12235
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12236
12236
|
orgUuid: z.string().optional(),
|
|
12237
12237
|
userUuid: z.string().optional()
|
|
12238
12238
|
});
|
|
12239
12239
|
const PimlocType = z.object({
|
|
12240
12240
|
enabled: z.boolean().optional(),
|
|
12241
12241
|
integration: IntegrationEnum.optional(),
|
|
12242
|
-
integrationAuditMap: z.record(z.
|
|
12242
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12243
12243
|
orgUuid: z.string().optional(),
|
|
12244
12244
|
userUuid: z.string().optional()
|
|
12245
12245
|
});
|
|
12246
12246
|
const PlaceOsType = z.object({
|
|
12247
12247
|
enabled: z.boolean().optional(),
|
|
12248
12248
|
integration: IntegrationEnum.optional(),
|
|
12249
|
-
integrationAuditMap: z.record(z.
|
|
12249
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12250
12250
|
orgUuid: z.string().optional(),
|
|
12251
12251
|
userUuid: z.string().optional()
|
|
12252
12252
|
});
|
|
12253
12253
|
const ProDataKeyType = z.object({
|
|
12254
12254
|
enabled: z.boolean().optional(),
|
|
12255
12255
|
integration: IntegrationEnum.optional(),
|
|
12256
|
-
integrationAuditMap: z.record(z.
|
|
12256
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12257
12257
|
orgUuid: z.string().optional(),
|
|
12258
12258
|
userUuid: z.string().optional()
|
|
12259
12259
|
});
|
|
12260
12260
|
const RaptorType = z.object({
|
|
12261
12261
|
enabled: z.boolean().optional(),
|
|
12262
12262
|
integration: IntegrationEnum.optional(),
|
|
12263
|
-
integrationAuditMap: z.record(z.
|
|
12263
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12264
12264
|
orgUuid: z.string().optional(),
|
|
12265
12265
|
userUuid: z.string().optional()
|
|
12266
12266
|
});
|
|
12267
12267
|
const ShellyType = z.object({
|
|
12268
12268
|
enabled: z.boolean().optional(),
|
|
12269
12269
|
integration: IntegrationEnum.optional(),
|
|
12270
|
-
integrationAuditMap: z.record(z.
|
|
12270
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12271
12271
|
orgUuid: z.string().optional(),
|
|
12272
12272
|
userUuid: z.string().optional()
|
|
12273
12273
|
});
|
|
12274
12274
|
const ToastType = z.object({
|
|
12275
12275
|
enabled: z.boolean().optional(),
|
|
12276
12276
|
integration: IntegrationEnum.optional(),
|
|
12277
|
-
integrationAuditMap: z.record(z.
|
|
12277
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12278
12278
|
orgUuid: z.string().optional(),
|
|
12279
12279
|
userUuid: z.string().optional()
|
|
12280
12280
|
});
|
|
12281
12281
|
const WebhooksType = z.object({
|
|
12282
12282
|
enabled: z.boolean().optional(),
|
|
12283
12283
|
integration: IntegrationEnum.optional(),
|
|
12284
|
-
integrationAuditMap: z.record(z.
|
|
12284
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12285
12285
|
orgUuid: z.string().optional(),
|
|
12286
12286
|
userUuid: z.string().optional()
|
|
12287
12287
|
});
|
|
12288
12288
|
const ZapierType = z.object({
|
|
12289
12289
|
enabled: z.boolean().optional(),
|
|
12290
12290
|
integration: IntegrationEnum.optional(),
|
|
12291
|
-
integrationAuditMap: z.record(z.
|
|
12291
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12292
12292
|
orgUuid: z.string().optional(),
|
|
12293
12293
|
userUuid: z.string().optional()
|
|
12294
12294
|
});
|
|
12295
12295
|
const ParPOSType = z.object({
|
|
12296
12296
|
enabled: z.boolean().optional(),
|
|
12297
12297
|
integration: IntegrationEnum.optional(),
|
|
12298
|
-
integrationAuditMap: z.record(z.
|
|
12298
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12299
12299
|
orgUuid: z.string().optional(),
|
|
12300
12300
|
userUuid: z.string().optional()
|
|
12301
12301
|
});
|
|
12302
12302
|
const IBaseIntegrationType = z.object({
|
|
12303
12303
|
enabled: z.boolean().optional(),
|
|
12304
12304
|
integration: IntegrationEnum.optional(),
|
|
12305
|
-
integrationAuditMap: z.record(z.
|
|
12305
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12306
12306
|
orgUuid: z.string().optional(),
|
|
12307
12307
|
userUuid: z.string().optional()
|
|
12308
12308
|
});
|
|
@@ -12315,13 +12315,13 @@ const IBrivoType = z.object({
|
|
|
12315
12315
|
clientId: z.string().optional(),
|
|
12316
12316
|
clientSecret: z.string().optional(),
|
|
12317
12317
|
createSeekPoints: z.boolean().optional(),
|
|
12318
|
-
doorInfoMap: z.record(z.
|
|
12318
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
12319
12319
|
doorsValidated: z.boolean().optional(),
|
|
12320
12320
|
enabled: z.boolean().optional(),
|
|
12321
12321
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
12322
12322
|
indexFaces: z.boolean().optional(),
|
|
12323
12323
|
integration: IntegrationEnum.optional(),
|
|
12324
|
-
integrationAuditMap: z.record(z.
|
|
12324
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12325
12325
|
misconfiguredDoors: z.array(z.string()).optional(),
|
|
12326
12326
|
orgUuid: z.string().optional(),
|
|
12327
12327
|
password: z.string().optional(),
|
|
@@ -12338,18 +12338,18 @@ const IButterflyMXType = z.object({
|
|
|
12338
12338
|
alertUnauthorizedFaces: z.boolean().optional(),
|
|
12339
12339
|
apiToken: z.string().optional(),
|
|
12340
12340
|
badgeAuthDisablesAlarmMonitoring: z.boolean().optional(),
|
|
12341
|
-
buildingWebhookIdMap: z.record(z.
|
|
12341
|
+
buildingWebhookIdMap: z.record(z.string(), z.string()).optional(),
|
|
12342
12342
|
createSeekPoints: z.boolean().optional(),
|
|
12343
|
-
doorInfoMap: z.record(z.
|
|
12343
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
12344
12344
|
doorsValidated: z.boolean().optional(),
|
|
12345
12345
|
enabled: z.boolean().optional(),
|
|
12346
12346
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
12347
12347
|
indexFaces: z.boolean().optional(),
|
|
12348
12348
|
integration: IntegrationEnum.optional(),
|
|
12349
|
-
integrationAuditMap: z.record(z.
|
|
12349
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12350
12350
|
misconfiguredDoors: z.array(z.string()).optional(),
|
|
12351
12351
|
orgUuid: z.string().optional(),
|
|
12352
|
-
panelInfoMap: z.record(z.
|
|
12352
|
+
panelInfoMap: z.record(z.string(), ButterflymxPanelInfoType).optional(),
|
|
12353
12353
|
refreshToken: z.string().optional(),
|
|
12354
12354
|
rhombusToken: z.string().optional(),
|
|
12355
12355
|
saveClips: z.boolean().optional(),
|
|
@@ -12357,17 +12357,17 @@ const IButterflyMXType = z.object({
|
|
|
12357
12357
|
userUuid: z.string().optional()
|
|
12358
12358
|
});
|
|
12359
12359
|
const IDeviceIntegrationType = z.object({
|
|
12360
|
-
deviceSettingsMap: z.record(z.
|
|
12360
|
+
deviceSettingsMap: z.record(z.string(), DeviceIntegrationSettings).optional(),
|
|
12361
12361
|
enabled: z.boolean().optional(),
|
|
12362
12362
|
integration: IntegrationEnum.optional(),
|
|
12363
|
-
integrationAuditMap: z.record(z.
|
|
12363
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12364
12364
|
orgUuid: z.string().optional(),
|
|
12365
12365
|
userUuid: z.string().optional()
|
|
12366
12366
|
});
|
|
12367
12367
|
const IDiceType = z.object({
|
|
12368
12368
|
enabled: z.boolean().optional(),
|
|
12369
12369
|
integration: IntegrationEnum.optional(),
|
|
12370
|
-
integrationAuditMap: z.record(z.
|
|
12370
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12371
12371
|
orgUuid: z.string().optional(),
|
|
12372
12372
|
userUuid: z.string().optional()
|
|
12373
12373
|
});
|
|
@@ -12376,16 +12376,16 @@ const IEnvoyType = z.object({
|
|
|
12376
12376
|
apiToken: z.string().optional(),
|
|
12377
12377
|
badgeAuthDisablesAlarmMonitoring: z.boolean().optional(),
|
|
12378
12378
|
createSeekPoints: z.boolean().optional(),
|
|
12379
|
-
doorInfoMap: z.record(z.
|
|
12379
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
12380
12380
|
doorsValidated: z.boolean().optional(),
|
|
12381
12381
|
enabled: z.boolean().optional(),
|
|
12382
12382
|
envoyIntegrationInstalled: z.boolean().optional(),
|
|
12383
|
-
envoyUserSettingsMap: z.record(z.
|
|
12383
|
+
envoyUserSettingsMap: z.record(z.string(), EnvoyUserSettings).optional(),
|
|
12384
12384
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
12385
12385
|
indexFaces: z.boolean().optional(),
|
|
12386
12386
|
integration: IntegrationEnum.optional(),
|
|
12387
|
-
integrationAuditMap: z.record(z.
|
|
12388
|
-
locationInfoMap: z.record(z.
|
|
12387
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12388
|
+
locationInfoMap: z.record(z.string(), EnvoyLocationInfoType).optional(),
|
|
12389
12389
|
misconfiguredDoors: z.array(z.string()).optional(),
|
|
12390
12390
|
orgUuid: z.string().optional(),
|
|
12391
12391
|
refreshToken: z.string().optional(),
|
|
@@ -12399,7 +12399,7 @@ const IFlicType = z.object({
|
|
|
12399
12399
|
associatedLocations: z.array(z.string()).optional(),
|
|
12400
12400
|
enabled: z.boolean().optional(),
|
|
12401
12401
|
integration: IntegrationEnum.optional(),
|
|
12402
|
-
integrationAuditMap: z.record(z.
|
|
12402
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12403
12403
|
moduleUploaded: z.boolean().optional(),
|
|
12404
12404
|
orgUuid: z.string().optional(),
|
|
12405
12405
|
userUuid: z.string().optional(),
|
|
@@ -12411,13 +12411,13 @@ const IGeneaType = z.object({
|
|
|
12411
12411
|
apiToken: z.string().optional(),
|
|
12412
12412
|
badgeAuthDisablesAlarmMonitoring: z.boolean().optional(),
|
|
12413
12413
|
createSeekPoints: z.boolean().optional(),
|
|
12414
|
-
doorInfoMap: z.record(z.
|
|
12414
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
12415
12415
|
doorsValidated: z.boolean().optional(),
|
|
12416
12416
|
enabled: z.boolean().optional(),
|
|
12417
12417
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
12418
12418
|
indexFaces: z.boolean().optional(),
|
|
12419
12419
|
integration: IntegrationEnum.optional(),
|
|
12420
|
-
integrationAuditMap: z.record(z.
|
|
12420
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12421
12421
|
misconfiguredDoors: z.array(z.string()).optional(),
|
|
12422
12422
|
orgUuid: z.string().optional(),
|
|
12423
12423
|
refreshToken: z.string().optional(),
|
|
@@ -12437,20 +12437,20 @@ const IGoogleType = z.object({
|
|
|
12437
12437
|
defaultFolderName: z.string().optional(),
|
|
12438
12438
|
enabled: z.boolean().optional(),
|
|
12439
12439
|
integration: IntegrationEnum.optional(),
|
|
12440
|
-
integrationAuditMap: z.record(z.
|
|
12440
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12441
12441
|
orgUuid: z.string().optional(),
|
|
12442
12442
|
refreshToken: z.string().optional(),
|
|
12443
12443
|
saveAllAlerts: z.boolean().optional(),
|
|
12444
12444
|
saveClips: z.boolean().optional(),
|
|
12445
12445
|
tokenValid: z.boolean().optional(),
|
|
12446
|
-
userSettingsMap: z.record(z.
|
|
12446
|
+
userSettingsMap: z.record(z.string(), GoogleUserSettings).optional(),
|
|
12447
12447
|
userUuid: z.string().optional()
|
|
12448
12448
|
});
|
|
12449
12449
|
const IGuestManagementType = z.object({
|
|
12450
12450
|
enabled: z.boolean().optional(),
|
|
12451
12451
|
integration: IntegrationEnum.optional(),
|
|
12452
|
-
integrationAuditMap: z.record(z.
|
|
12453
|
-
locationSettingsMap: z.record(z.
|
|
12452
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12453
|
+
locationSettingsMap: z.record(z.string(), z.lazy(() => LocationSettings)).optional(),
|
|
12454
12454
|
orgUuid: z.string().optional(),
|
|
12455
12455
|
userUuid: z.string().optional()
|
|
12456
12456
|
});
|
|
@@ -12458,7 +12458,7 @@ const IInformacastType = z.object({
|
|
|
12458
12458
|
apiToken: z.string().optional(),
|
|
12459
12459
|
enabled: z.boolean().optional(),
|
|
12460
12460
|
integration: IntegrationEnum.optional(),
|
|
12461
|
-
integrationAuditMap: z.record(z.
|
|
12461
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12462
12462
|
orgUuid: z.string().optional(),
|
|
12463
12463
|
refreshToken: z.string().optional(),
|
|
12464
12464
|
tokenValid: z.boolean().optional(),
|
|
@@ -12466,12 +12466,12 @@ const IInformacastType = z.object({
|
|
|
12466
12466
|
});
|
|
12467
12467
|
const IInnerRangeType = z.object({
|
|
12468
12468
|
apiToken: z.string().optional(),
|
|
12469
|
-
consoleToSettingsMap: z.record(z.
|
|
12469
|
+
consoleToSettingsMap: z.record(z.string(), z.lazy(() => InnerRangeConsoleSettings)).optional(),
|
|
12470
12470
|
createSeekPoints: z.boolean().optional(),
|
|
12471
|
-
doorInfoMap: z.record(z.
|
|
12471
|
+
doorInfoMap: z.record(z.string(), z.lazy(() => InnerRangeDoorInfoType)).optional(),
|
|
12472
12472
|
enabled: z.boolean().optional(),
|
|
12473
12473
|
integration: IntegrationEnum.optional(),
|
|
12474
|
-
integrationAuditMap: z.record(z.
|
|
12474
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12475
12475
|
orgUuid: z.string().optional(),
|
|
12476
12476
|
refreshToken: z.string().optional(),
|
|
12477
12477
|
skyTunnelSN: z.string().optional(),
|
|
@@ -12484,15 +12484,15 @@ const IKisiType = z.object({
|
|
|
12484
12484
|
doorsValidated: z.boolean().optional(),
|
|
12485
12485
|
enabled: z.boolean().optional(),
|
|
12486
12486
|
integration: IntegrationEnum.optional(),
|
|
12487
|
-
integrationAuditMap: z.record(z.
|
|
12487
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12488
12488
|
orgUuid: z.string().optional(),
|
|
12489
|
-
placeToSettingsMap: z.record(z.
|
|
12489
|
+
placeToSettingsMap: z.record(z.string(), BadgeIntegrationSettings).optional(),
|
|
12490
12490
|
userUuid: z.string().optional()
|
|
12491
12491
|
});
|
|
12492
12492
|
const ILumeoType = z.object({
|
|
12493
12493
|
enabled: z.boolean().optional(),
|
|
12494
12494
|
integration: IntegrationEnum.optional(),
|
|
12495
|
-
integrationAuditMap: z.record(z.
|
|
12495
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12496
12496
|
orgUuid: z.string().optional(),
|
|
12497
12497
|
userUuid: z.string().optional()
|
|
12498
12498
|
});
|
|
@@ -12501,9 +12501,9 @@ const IMicrosoftTeamsType = z.object({
|
|
|
12501
12501
|
allowUserNotifications: z.boolean().optional(),
|
|
12502
12502
|
enabled: z.boolean().optional(),
|
|
12503
12503
|
integration: IntegrationEnum.optional(),
|
|
12504
|
-
integrationAuditMap: z.record(z.
|
|
12505
|
-
microsoftTeamSettingsMap: z.record(z.
|
|
12506
|
-
microsoftTeamsUserSettingsMap: z.record(z.
|
|
12504
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12505
|
+
microsoftTeamSettingsMap: z.record(z.string(), z.lazy(() => MicrosoftTeamsChannelSettings)).optional(),
|
|
12506
|
+
microsoftTeamsUserSettingsMap: z.record(z.string(), z.lazy(() => MicrosoftTeamsUserSettings)).optional(),
|
|
12507
12507
|
orgUuid: z.string().optional(),
|
|
12508
12508
|
tenantId: z.string().optional(),
|
|
12509
12509
|
userUuid: z.string().optional()
|
|
@@ -12512,10 +12512,10 @@ const INineOneOneCellularType = z.object({
|
|
|
12512
12512
|
bearerToken: z.string().optional(),
|
|
12513
12513
|
enabled: z.boolean().optional(),
|
|
12514
12514
|
integration: IntegrationEnum.optional(),
|
|
12515
|
-
integrationAuditMap: z.record(z.
|
|
12515
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12516
12516
|
orgUuid: z.string().optional(),
|
|
12517
12517
|
saveClips: z.boolean().optional(),
|
|
12518
|
-
securityZoneMap: z.record(z.
|
|
12518
|
+
securityZoneMap: z.record(z.string(), z.lazy(() => SecurityZoneInfoType)).optional(),
|
|
12519
12519
|
triggerNotification: z.boolean().optional(),
|
|
12520
12520
|
userUuid: z.string().optional(),
|
|
12521
12521
|
webhookToken: z.string().optional(),
|
|
@@ -12525,7 +12525,7 @@ const IOmnialertType = z.object({
|
|
|
12525
12525
|
associatedCameras: z.array(z.string()).optional(),
|
|
12526
12526
|
enabled: z.boolean().optional(),
|
|
12527
12527
|
integration: IntegrationEnum.optional(),
|
|
12528
|
-
integrationAuditMap: z.record(z.
|
|
12528
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12529
12529
|
orgUuid: z.string().optional(),
|
|
12530
12530
|
saveClips: z.boolean().optional(),
|
|
12531
12531
|
triggerNotification: z.boolean().optional(),
|
|
@@ -12538,7 +12538,7 @@ const IOpenAIType = z.object({
|
|
|
12538
12538
|
defaultModel: z.string().optional(),
|
|
12539
12539
|
enabled: z.boolean().optional(),
|
|
12540
12540
|
integration: IntegrationEnum.optional(),
|
|
12541
|
-
integrationAuditMap: z.record(z.
|
|
12541
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12542
12542
|
orgUuid: z.string().optional(),
|
|
12543
12543
|
refreshToken: z.string().optional(),
|
|
12544
12544
|
tokenValid: z.boolean().optional(),
|
|
@@ -12548,9 +12548,9 @@ const IOpentechAllianceType = z.object({
|
|
|
12548
12548
|
apiKey: z.string().optional(),
|
|
12549
12549
|
apiSecret: z.string().optional(),
|
|
12550
12550
|
enabled: z.boolean().optional(),
|
|
12551
|
-
facilityToSettingsMap: z.record(z.
|
|
12551
|
+
facilityToSettingsMap: z.record(z.string(), z.lazy(() => OpentechAllianceFacilitySettings)).optional(),
|
|
12552
12552
|
integration: IntegrationEnum.optional(),
|
|
12553
|
-
integrationAuditMap: z.record(z.
|
|
12553
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12554
12554
|
orgUuid: z.string().optional(),
|
|
12555
12555
|
userUuid: z.string().optional()
|
|
12556
12556
|
});
|
|
@@ -12560,7 +12560,7 @@ const IPimlocType = z.object({
|
|
|
12560
12560
|
clientSecret: z.string().optional(),
|
|
12561
12561
|
enabled: z.boolean().optional(),
|
|
12562
12562
|
integration: IntegrationEnum.optional(),
|
|
12563
|
-
integrationAuditMap: z.record(z.
|
|
12563
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12564
12564
|
orgUuid: z.string().optional(),
|
|
12565
12565
|
rhombusToken: z.string().optional(),
|
|
12566
12566
|
userUuid: z.string().optional(),
|
|
@@ -12572,13 +12572,13 @@ const IPlaceOsType = z.object({
|
|
|
12572
12572
|
apiUrl: z.string().optional(),
|
|
12573
12573
|
badgeAuthDisablesAlarmMonitoring: z.boolean().optional(),
|
|
12574
12574
|
createSeekPoints: z.boolean().optional(),
|
|
12575
|
-
doorInfoMap: z.record(z.
|
|
12575
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
12576
12576
|
doorsValidated: z.boolean().optional(),
|
|
12577
12577
|
enabled: z.boolean().optional(),
|
|
12578
12578
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
12579
12579
|
indexFaces: z.boolean().optional(),
|
|
12580
12580
|
integration: IntegrationEnum.optional(),
|
|
12581
|
-
integrationAuditMap: z.record(z.
|
|
12581
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12582
12582
|
misconfiguredDoors: z.array(z.string()).optional(),
|
|
12583
12583
|
orgUuid: z.string().optional(),
|
|
12584
12584
|
refreshToken: z.string().optional(),
|
|
@@ -12594,13 +12594,13 @@ const IProDataKeyType = z.object({
|
|
|
12594
12594
|
apiToken: z.string().optional(),
|
|
12595
12595
|
badgeAuthDisablesAlarmMonitoring: z.boolean().optional(),
|
|
12596
12596
|
createSeekPoints: z.boolean().optional(),
|
|
12597
|
-
doorInfoMap: z.record(z.
|
|
12597
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
12598
12598
|
doorsValidated: z.boolean().optional(),
|
|
12599
12599
|
enabled: z.boolean().optional(),
|
|
12600
12600
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
12601
12601
|
indexFaces: z.boolean().optional(),
|
|
12602
12602
|
integration: IntegrationEnum.optional(),
|
|
12603
|
-
integrationAuditMap: z.record(z.
|
|
12603
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12604
12604
|
misconfiguredDoors: z.array(z.string()).optional(),
|
|
12605
12605
|
orgUuid: z.string().optional(),
|
|
12606
12606
|
organizationId: z.string().optional(),
|
|
@@ -12620,7 +12620,7 @@ const IRaptorType = z.object({
|
|
|
12620
12620
|
clientUid: z.string().optional(),
|
|
12621
12621
|
enabled: z.boolean().optional(),
|
|
12622
12622
|
integration: IntegrationEnum.optional(),
|
|
12623
|
-
integrationAuditMap: z.record(z.
|
|
12623
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12624
12624
|
orgUuid: z.string().optional(),
|
|
12625
12625
|
refreshToken: z.string().optional(),
|
|
12626
12626
|
tokenValid: z.boolean().optional(),
|
|
@@ -12631,29 +12631,29 @@ const IShellyType = z.object({
|
|
|
12631
12631
|
diagnosticQuietPeriodSecs: z.number().int().optional(),
|
|
12632
12632
|
enabled: z.boolean().optional(),
|
|
12633
12633
|
integration: IntegrationEnum.optional(),
|
|
12634
|
-
integrationAuditMap: z.record(z.
|
|
12634
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12635
12635
|
orgUuid: z.string().optional(),
|
|
12636
|
-
shellyDeviceMap: z.record(z.
|
|
12637
|
-
thirdPartyDeviceToLocationMap: z.record(z.
|
|
12636
|
+
shellyDeviceMap: z.record(z.string(), z.lazy(() => ShellyDevice)).optional(),
|
|
12637
|
+
thirdPartyDeviceToLocationMap: z.record(z.string(), z.string()).optional(),
|
|
12638
12638
|
userUuid: z.string().optional()
|
|
12639
12639
|
});
|
|
12640
12640
|
const IToastType = z.object({
|
|
12641
12641
|
currentToastRestaurantGuid: z.string().optional(),
|
|
12642
12642
|
enabled: z.boolean().optional(),
|
|
12643
12643
|
integration: IntegrationEnum.optional(),
|
|
12644
|
-
integrationAuditMap: z.record(z.
|
|
12644
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12645
12645
|
orgUuid: z.string().optional(),
|
|
12646
|
-
restaurantSettingsMap: z.record(z.
|
|
12646
|
+
restaurantSettingsMap: z.record(z.string(), z.lazy(() => ToastRestaurantSettings)).optional(),
|
|
12647
12647
|
userUuid: z.string().optional()
|
|
12648
12648
|
});
|
|
12649
12649
|
const IWebhooksType = z.object({
|
|
12650
|
-
activityWebhooks: z.record(z.
|
|
12651
|
-
activityWebhooksV2: z.record(z.
|
|
12652
|
-
diagnosticWebhooks: z.record(z.
|
|
12653
|
-
diagnosticWebhooksV2: z.record(z.
|
|
12650
|
+
activityWebhooks: z.record(z.string(), z.string()).optional(),
|
|
12651
|
+
activityWebhooksV2: z.record(z.string(), z.lazy(() => WebhookInfo)).optional(),
|
|
12652
|
+
diagnosticWebhooks: z.record(z.string(), z.string()).optional(),
|
|
12653
|
+
diagnosticWebhooksV2: z.record(z.string(), z.lazy(() => WebhookInfo)).optional(),
|
|
12654
12654
|
enabled: z.boolean().optional(),
|
|
12655
12655
|
integration: IntegrationEnum.optional(),
|
|
12656
|
-
integrationAuditMap: z.record(z.
|
|
12656
|
+
integrationAuditMap: z.record(z.string(), z.lazy(() => IntegrationAuditEvent)).optional(),
|
|
12657
12657
|
orgUuid: z.string().optional(),
|
|
12658
12658
|
userUuid: z.string().optional()
|
|
12659
12659
|
});
|
|
@@ -12710,7 +12710,7 @@ const InformacastScenario = z.object({
|
|
|
12710
12710
|
const InnerRangeConsoleSettings = z.object({
|
|
12711
12711
|
apiKey: z.string().optional(),
|
|
12712
12712
|
createSeekPoints: z.boolean().optional(),
|
|
12713
|
-
doorInfoMap: z.record(z.
|
|
12713
|
+
doorInfoMap: z.record(z.string(), z.lazy(() => InnerRangeDoorInfoType)).optional(),
|
|
12714
12714
|
skyTunnelSN: z.string().optional(),
|
|
12715
12715
|
tokenValid: z.boolean().optional()
|
|
12716
12716
|
});
|
|
@@ -12749,7 +12749,7 @@ const IntegrationDiagnosticEventType = z.object({
|
|
|
12749
12749
|
timestamp: z.string().datetime({ offset: true }).optional(),
|
|
12750
12750
|
uuid: z.string().optional()
|
|
12751
12751
|
});
|
|
12752
|
-
const Integration_BaseIntegrationWSRequest = z.record(z.unknown());
|
|
12752
|
+
const Integration_BaseIntegrationWSRequest = z.record(z.string(), z.unknown());
|
|
12753
12753
|
const Integration_CreateEnvoyInviteWSRequest = z.object({
|
|
12754
12754
|
invitation: EnvoyInvite.optional()
|
|
12755
12755
|
});
|
|
@@ -12769,14 +12769,14 @@ const Integration_GetAllGuestsWSResponse = z.object({
|
|
|
12769
12769
|
const Integration_GetAllOrgIntegrationsV2WSResponse = z.object({
|
|
12770
12770
|
error: z.boolean().optional(),
|
|
12771
12771
|
errorMsg: z.string().optional(),
|
|
12772
|
-
orgIntegrationsV2: z.record(z.
|
|
12772
|
+
orgIntegrationsV2: z.record(z.string(), IBaseIntegrationType).optional(),
|
|
12773
12773
|
warningMsg: z.string().optional()
|
|
12774
12774
|
});
|
|
12775
12775
|
const Integration_GetAmtReadersWSRequest = z.object({
|
|
12776
12776
|
email: z.string().optional(),
|
|
12777
12777
|
password: z.string().optional()
|
|
12778
12778
|
});
|
|
12779
|
-
const Integration_GetAperioIntegrationWSRequest = z.record(z.unknown());
|
|
12779
|
+
const Integration_GetAperioIntegrationWSRequest = z.record(z.string(), z.unknown());
|
|
12780
12780
|
const Integration_aperio_AperioDeviceView = z.object({
|
|
12781
12781
|
aperioId: z.array(z.string()).optional(),
|
|
12782
12782
|
gatewayId: z.array(z.string()).optional(),
|
|
@@ -12846,7 +12846,7 @@ const Integration_GetAperioIntegrationWSResponse = z.object({
|
|
|
12846
12846
|
errorMsg: z.string().optional(),
|
|
12847
12847
|
warningMsg: z.string().optional()
|
|
12848
12848
|
});
|
|
12849
|
-
const Integration_GetApiTokenApplicationsWSRequest = z.record(z.unknown());
|
|
12849
|
+
const Integration_GetApiTokenApplicationsWSRequest = z.record(z.string(), z.unknown());
|
|
12850
12850
|
const Integration_GetApiTokenApplicationsWSResponse = z.object({
|
|
12851
12851
|
applications: z.array(ApiTokenApplicationType).optional(),
|
|
12852
12852
|
error: z.boolean().optional(),
|
|
@@ -12946,7 +12946,7 @@ const Integration_GetEnvoyEmployeesWSResponse = z.object({
|
|
|
12946
12946
|
errorMsg: z.string().optional(),
|
|
12947
12947
|
warningMsg: z.string().optional()
|
|
12948
12948
|
});
|
|
12949
|
-
const Integration_GetEnvoyLocationsWSRequest = z.record(z.unknown());
|
|
12949
|
+
const Integration_GetEnvoyLocationsWSRequest = z.record(z.string(), z.unknown());
|
|
12950
12950
|
const Integration_GetEnvoyLocationsWSResponse = z.object({
|
|
12951
12951
|
authError: z.boolean().optional(),
|
|
12952
12952
|
error: z.boolean().optional(),
|
|
@@ -13006,14 +13006,14 @@ const Integration_GetInformacastScenariosWSResponse = z.object({
|
|
|
13006
13006
|
scenarios: z.array(InformacastScenario).optional(),
|
|
13007
13007
|
warningMsg: z.string().optional()
|
|
13008
13008
|
});
|
|
13009
|
-
const Integration_GetInnerRangeConsolesWSRequest = z.record(z.unknown());
|
|
13009
|
+
const Integration_GetInnerRangeConsolesWSRequest = z.record(z.string(), z.unknown());
|
|
13010
13010
|
const Integration_GetInnerRangeConsolesWSResponse = z.object({
|
|
13011
13011
|
consoles: z.array(InnerRangeConsoleType).optional(),
|
|
13012
13012
|
error: z.boolean().optional(),
|
|
13013
13013
|
errorMsg: z.string().optional(),
|
|
13014
13014
|
warningMsg: z.string().optional()
|
|
13015
13015
|
});
|
|
13016
|
-
const Integration_GetInnerRangeDoorsWSRequest = z.record(z.unknown());
|
|
13016
|
+
const Integration_GetInnerRangeDoorsWSRequest = z.record(z.string(), z.unknown());
|
|
13017
13017
|
const Integration_GetInnerRangeDoorsWSResponse = z.object({
|
|
13018
13018
|
doors: z.array(InnerRangeDoorType).optional(),
|
|
13019
13019
|
error: z.boolean().optional(),
|
|
@@ -13037,7 +13037,7 @@ const Integration_GetKisiDoorsWSResponse = z.object({
|
|
|
13037
13037
|
authError: z.boolean().optional(),
|
|
13038
13038
|
error: z.boolean().optional(),
|
|
13039
13039
|
errorMsg: z.string().optional(),
|
|
13040
|
-
placeToDoorMap: z.record(z.
|
|
13040
|
+
placeToDoorMap: z.record(z.string(), z.array(DoorType)).optional(),
|
|
13041
13041
|
warningMsg: z.string().optional()
|
|
13042
13042
|
});
|
|
13043
13043
|
const KisiSettings = z.object({
|
|
@@ -13045,8 +13045,8 @@ const KisiSettings = z.object({
|
|
|
13045
13045
|
apiSecretKey: z.string().optional(),
|
|
13046
13046
|
createSeekPoints: z.boolean().optional(),
|
|
13047
13047
|
defaultOptions: BadgeIntegrationDefaultOptions.optional(),
|
|
13048
|
-
doorInfoMap: z.record(z.
|
|
13049
|
-
doorToCameraMap: z.record(z.
|
|
13048
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
13049
|
+
doorToCameraMap: z.record(z.string(), z.array(z.string())).optional(),
|
|
13050
13050
|
doorsValidated: z.boolean().optional(),
|
|
13051
13051
|
enabled: z.boolean().optional(),
|
|
13052
13052
|
enabledTimestampMs: z.number().int().optional(),
|
|
@@ -13055,7 +13055,7 @@ const KisiSettings = z.object({
|
|
|
13055
13055
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
13056
13056
|
migrated: z.boolean().optional(),
|
|
13057
13057
|
placeId: z.number().int().optional(),
|
|
13058
|
-
placeToSettingsMap: z.record(z.
|
|
13058
|
+
placeToSettingsMap: z.record(z.string(), BadgeIntegrationSettings).optional(),
|
|
13059
13059
|
rhombusToken: z.string().optional(),
|
|
13060
13060
|
saveClips: z.boolean().optional(),
|
|
13061
13061
|
webhookId: z.number().int().optional()
|
|
@@ -13075,10 +13075,10 @@ const Integration_GetKisiPlacesWSRequest = z.object({
|
|
|
13075
13075
|
const Integration_GetMicrosoftUsersJoinedTeamsWSResponse = z.object({
|
|
13076
13076
|
error: z.boolean().optional(),
|
|
13077
13077
|
errorMsg: z.string().optional(),
|
|
13078
|
-
teamsMap: z.record(z.
|
|
13078
|
+
teamsMap: z.record(z.string(), z.string()).optional(),
|
|
13079
13079
|
warningMsg: z.string().optional()
|
|
13080
13080
|
});
|
|
13081
|
-
const Integration_GetNineOneOneCSZonesWSRequest = z.record(z.unknown());
|
|
13081
|
+
const Integration_GetNineOneOneCSZonesWSRequest = z.record(z.string(), z.unknown());
|
|
13082
13082
|
const SecurityZoneInfoType = z.object({
|
|
13083
13083
|
assignedCameraList: z.array(z.string()).optional(),
|
|
13084
13084
|
isParentZone: z.boolean().optional(),
|
|
@@ -13093,7 +13093,7 @@ const Integration_GetNineOneOneCSZonesWSResponse = z.object({
|
|
|
13093
13093
|
errorMsg: z.string().optional(),
|
|
13094
13094
|
warningMsg: z.string().optional(),
|
|
13095
13095
|
zone: SecurityZoneInfoType.optional(),
|
|
13096
|
-
zoneMap: z.record(z.
|
|
13096
|
+
zoneMap: z.record(z.string(), SecurityZoneInfoType).optional()
|
|
13097
13097
|
});
|
|
13098
13098
|
const Integration_GetOpenAIModelsWSRequest = z.object({
|
|
13099
13099
|
openAISettings: IOpenAIType.optional()
|
|
@@ -13127,7 +13127,7 @@ const Integration_GetOpenpathLockdownsWSResponse = z.object({
|
|
|
13127
13127
|
lockdownPlans: z.array(LockdownType).optional(),
|
|
13128
13128
|
warningMsg: z.string().optional()
|
|
13129
13129
|
});
|
|
13130
|
-
const Integration_GetOpentechAllianceFacilitiesWSRequest = z.record(z.unknown());
|
|
13130
|
+
const Integration_GetOpentechAllianceFacilitiesWSRequest = z.record(z.string(), z.unknown());
|
|
13131
13131
|
const OpentechAllianceActionGroupType = z.object({
|
|
13132
13132
|
actionGroupId: z.string().optional(),
|
|
13133
13133
|
deviceId: z.string().optional(),
|
|
@@ -13152,9 +13152,9 @@ const Integration_GetOrgIntegrationsV2WSResponse = z.object({
|
|
|
13152
13152
|
orgIntegrationV2: IBaseIntegrationType.optional(),
|
|
13153
13153
|
warningMsg: z.string().optional()
|
|
13154
13154
|
});
|
|
13155
|
-
const Integration_GetOrgIntegrationsWSRequest = z.record(z.unknown());
|
|
13155
|
+
const Integration_GetOrgIntegrationsWSRequest = z.record(z.string(), z.unknown());
|
|
13156
13156
|
const IntuifaceSettings = z.object({
|
|
13157
|
-
deviceToTriggerMap: z.record(z.
|
|
13157
|
+
deviceToTriggerMap: z.record(z.string(), z.lazy(() => TriggerContent)).optional(),
|
|
13158
13158
|
enabled: z.boolean().optional(),
|
|
13159
13159
|
enabledTimestampMs: z.number().int().optional(),
|
|
13160
13160
|
enablingUser: z.string().optional(),
|
|
@@ -13183,14 +13183,14 @@ const MicrosoftTeamsSettings = z.object({
|
|
|
13183
13183
|
});
|
|
13184
13184
|
const NoonlightSettings = z.object({
|
|
13185
13185
|
acceptedTermsOfService: z.boolean().optional(),
|
|
13186
|
-
defaultContactsByLocationMap: z.record(z.
|
|
13187
|
-
defaultDelayByLocationsMap: z.record(z.
|
|
13188
|
-
defaultPromptByLocationsMap: z.record(z.
|
|
13189
|
-
emergencyContactsByLocationsMap: z.record(z.
|
|
13186
|
+
defaultContactsByLocationMap: z.record(z.string(), EmergencyContact).optional(),
|
|
13187
|
+
defaultDelayByLocationsMap: z.record(z.string(), z.number().int()).optional(),
|
|
13188
|
+
defaultPromptByLocationsMap: z.record(z.string(), NoonlightPromptTheme).optional(),
|
|
13189
|
+
emergencyContactsByLocationsMap: z.record(z.string(), z.array(EmergencyResponseContactsIntervalType)).optional(),
|
|
13190
13190
|
enabled: z.boolean().optional(),
|
|
13191
|
-
escalationSettingsByLocationsMap: z.record(z.
|
|
13192
|
-
locationEntryInstructionsMap: z.record(z.
|
|
13193
|
-
pinsByLocationMap: z.record(z.
|
|
13191
|
+
escalationSettingsByLocationsMap: z.record(z.string(), z.array(AlertMonitoringSubmissionDelayIntervalType)).optional(),
|
|
13192
|
+
locationEntryInstructionsMap: z.record(z.string(), z.string()).optional(),
|
|
13193
|
+
pinsByLocationMap: z.record(z.string(), z.array(AlertMonitoringPinType)).optional(),
|
|
13194
13194
|
verificationPrompt: z.string().optional()
|
|
13195
13195
|
});
|
|
13196
13196
|
const Office365Settings = z.object({
|
|
@@ -13204,15 +13204,15 @@ const Office365Settings = z.object({
|
|
|
13204
13204
|
const OpenpathSettings = z.object({
|
|
13205
13205
|
alertUnauthorizedFaces: z.boolean().optional(),
|
|
13206
13206
|
createSeekPoints: z.boolean().optional(),
|
|
13207
|
-
doorInfoMap: z.record(z.
|
|
13208
|
-
doorToCameraMap: z.record(z.
|
|
13207
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
13208
|
+
doorToCameraMap: z.record(z.string(), z.array(z.string())).optional(),
|
|
13209
13209
|
email: z.string().optional(),
|
|
13210
13210
|
enabled: z.boolean().optional(),
|
|
13211
13211
|
enabledTimestampMs: z.number().int().optional(),
|
|
13212
13212
|
enablingUser: z.string().optional(),
|
|
13213
13213
|
enablingUserUuid: z.string().optional(),
|
|
13214
|
-
eventToWebhookIdMap: z.record(z.
|
|
13215
|
-
eventToWebhookMap: z.record(z.
|
|
13214
|
+
eventToWebhookIdMap: z.record(z.string(), z.number().int()).optional(),
|
|
13215
|
+
eventToWebhookMap: z.record(z.string(), z.lazy(() => WebhookMapEntry)).optional(),
|
|
13216
13216
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
13217
13217
|
migrated: z.boolean().optional(),
|
|
13218
13218
|
password: z.string().optional(),
|
|
@@ -13227,7 +13227,7 @@ const OpentechAllianceSettings = z.object({
|
|
|
13227
13227
|
enabledTimestampMs: z.number().int().optional(),
|
|
13228
13228
|
enablingUser: z.string().optional(),
|
|
13229
13229
|
enablingUserUuid: z.string().optional(),
|
|
13230
|
-
facilityToSettingsMap: z.record(z.
|
|
13230
|
+
facilityToSettingsMap: z.record(z.string(), z.lazy(() => OpentechAllianceFacilitySettings)).optional(),
|
|
13231
13231
|
migrated: z.boolean().optional()
|
|
13232
13232
|
});
|
|
13233
13233
|
const PagerDutySettings = z.object({
|
|
@@ -13237,13 +13237,13 @@ const PagerDutySettings = z.object({
|
|
|
13237
13237
|
enablingUser: z.string().optional(),
|
|
13238
13238
|
enablingUserUuid: z.string().optional(),
|
|
13239
13239
|
integrationKey: z.string().optional(),
|
|
13240
|
-
locationToIntegrationKeysMap: z.record(z.
|
|
13240
|
+
locationToIntegrationKeysMap: z.record(z.string(), z.array(z.string())).optional()
|
|
13241
13241
|
});
|
|
13242
13242
|
const PlaceOsSettings = z.object({
|
|
13243
13243
|
alertUnauthorizedFaces: z.boolean().optional(),
|
|
13244
13244
|
apiUrl: z.string().optional(),
|
|
13245
13245
|
createSeekPoints: z.boolean().optional(),
|
|
13246
|
-
doorInfoMap: z.record(z.
|
|
13246
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
13247
13247
|
enabled: z.boolean().optional(),
|
|
13248
13248
|
enabledTimestampMs: z.number().int().optional(),
|
|
13249
13249
|
enablingUser: z.string().optional(),
|
|
@@ -13258,7 +13258,7 @@ const ProDataKeySettings = z.object({
|
|
|
13258
13258
|
alertUnauthorizedFaces: z.boolean().optional(),
|
|
13259
13259
|
badgeAuthDisablesAlarmMonitoring: z.boolean().optional(),
|
|
13260
13260
|
createSeekPoints: z.boolean().optional(),
|
|
13261
|
-
doorInfoMap: z.record(z.
|
|
13261
|
+
doorInfoMap: z.record(z.string(), BadgeIntegrationDoorInfoType).optional(),
|
|
13262
13262
|
doorsValidated: z.boolean().optional(),
|
|
13263
13263
|
enabled: z.boolean().optional(),
|
|
13264
13264
|
enabledTimestampMs: z.number().int().optional(),
|
|
@@ -13278,7 +13278,7 @@ const SaltoSettings = z.object({
|
|
|
13278
13278
|
enabled: z.boolean().optional(),
|
|
13279
13279
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
13280
13280
|
saveClips: z.boolean().optional(),
|
|
13281
|
-
tokenToCamerasMap: z.record(z.
|
|
13281
|
+
tokenToCamerasMap: z.record(z.string(), z.array(z.string())).optional()
|
|
13282
13282
|
});
|
|
13283
13283
|
const ServiceNowSettings = z.object({
|
|
13284
13284
|
enabled: z.boolean().optional(),
|
|
@@ -13306,12 +13306,12 @@ const SlackSettingsV2 = z.object({
|
|
|
13306
13306
|
orgAccessToken: z.string().optional(),
|
|
13307
13307
|
sendChannelNotifications: z.boolean().optional(),
|
|
13308
13308
|
sendUserNotifications: z.boolean().optional(),
|
|
13309
|
-
userMap: z.record(z.
|
|
13309
|
+
userMap: z.record(z.string(), z.lazy(() => UserInfo)).optional(),
|
|
13310
13310
|
webhookUrl: z.string().optional()
|
|
13311
13311
|
});
|
|
13312
13312
|
const SquareSettings = z.object({
|
|
13313
13313
|
enabled: z.boolean().optional(),
|
|
13314
|
-
locationIdToDeviceUuidsMap: z.record(z.
|
|
13314
|
+
locationIdToDeviceUuidsMap: z.record(z.string(), z.array(z.string())).optional()
|
|
13315
13315
|
});
|
|
13316
13316
|
const ToastSettings = z.object({
|
|
13317
13317
|
currentToastRestaurantGuid: z.string().optional(),
|
|
@@ -13320,11 +13320,11 @@ const ToastSettings = z.object({
|
|
|
13320
13320
|
enablingUser: z.string().optional(),
|
|
13321
13321
|
enablingUserUuid: z.string().optional(),
|
|
13322
13322
|
migrated: z.boolean().optional(),
|
|
13323
|
-
posInfoMap: z.record(z.
|
|
13324
|
-
toastRestaurantInfoMap: z.record(z.
|
|
13323
|
+
posInfoMap: z.record(z.string(), z.lazy(() => PosIntegrationInfoType)).optional(),
|
|
13324
|
+
toastRestaurantInfoMap: z.record(z.string(), z.lazy(() => ToastRestaurantInfo)).optional()
|
|
13325
13325
|
});
|
|
13326
13326
|
const TPLinkSettings = z.object({
|
|
13327
|
-
cameraToSwitchMap: z.record(z.
|
|
13327
|
+
cameraToSwitchMap: z.record(z.string(), z.string()).optional(),
|
|
13328
13328
|
enabled: z.boolean().optional(),
|
|
13329
13329
|
password: z.string().optional(),
|
|
13330
13330
|
targetState: z.number().int().optional(),
|
|
@@ -13388,7 +13388,7 @@ const Integration_GetOrgIntegrationsWSResponse = z.object({
|
|
|
13388
13388
|
orgIntegrations: OrgIntegrationsType.optional(),
|
|
13389
13389
|
warningMsg: z.string().optional()
|
|
13390
13390
|
});
|
|
13391
|
-
const Integration_GetPartnerApiTokensWSRequest = z.record(z.unknown());
|
|
13391
|
+
const Integration_GetPartnerApiTokensWSRequest = z.record(z.string(), z.unknown());
|
|
13392
13392
|
const Integration_GetPdkDoorsWSRequest = z.object({
|
|
13393
13393
|
ouId: z.string().optional()
|
|
13394
13394
|
});
|
|
@@ -13856,7 +13856,7 @@ const Internal_AddPartnerAsSuperAdminWSResponse = z.object({
|
|
|
13856
13856
|
warningMsg: z.string().optional()
|
|
13857
13857
|
});
|
|
13858
13858
|
const Internal_CreateCombinedLicensesFromV1WSRequest = z.object({
|
|
13859
|
-
accountDataMap: z.record(z.
|
|
13859
|
+
accountDataMap: z.record(z.string(), z.lazy(() => Internal_CreateCombinedLicensesFromV1WSRequest_AccountData)).optional()
|
|
13860
13860
|
});
|
|
13861
13861
|
const Internal_CreateCombinedLicensesFromV1WSRequest_AccountData = z.object({
|
|
13862
13862
|
opportunityIds: z.array(z.string()).optional(),
|
|
@@ -13865,7 +13865,7 @@ const Internal_CreateCombinedLicensesFromV1WSRequest_AccountData = z.object({
|
|
|
13865
13865
|
const Internal_CreateCombinedLicensesFromV1WSResponse = z.object({
|
|
13866
13866
|
error: z.boolean().optional(),
|
|
13867
13867
|
errorMsg: z.string().optional(),
|
|
13868
|
-
failedAccounts: z.record(z.
|
|
13868
|
+
failedAccounts: z.record(z.string(), z.string()).optional(),
|
|
13869
13869
|
successfulAccounts: z.array(z.string()).optional()
|
|
13870
13870
|
});
|
|
13871
13871
|
const Internal_CreateOrgWSRequest = z.object({
|
|
@@ -13957,7 +13957,7 @@ const Internal_GetSuperAdminGroupUUIDWSResponse = z.object({
|
|
|
13957
13957
|
superAdminGroupUUID: z.string().optional(),
|
|
13958
13958
|
warningMsg: z.string().optional()
|
|
13959
13959
|
});
|
|
13960
|
-
const Internal_GetWarrantyApprovedRMAsWSRequest = z.record(z.unknown());
|
|
13960
|
+
const Internal_GetWarrantyApprovedRMAsWSRequest = z.record(z.string(), z.unknown());
|
|
13961
13961
|
const Internal_GetWarrantyApprovedRMAsWSResponse = z.object({
|
|
13962
13962
|
error: z.boolean().optional(),
|
|
13963
13963
|
errorMsg: z.string().optional(),
|
|
@@ -13967,8 +13967,8 @@ const Internal_GetWarrantyApprovedRMAsWSResponse = z.object({
|
|
|
13967
13967
|
const RhombusShipmentInfoType = z.object({
|
|
13968
13968
|
additionalEmails: z.string().optional(),
|
|
13969
13969
|
chosenCarrierName: z.string().optional(),
|
|
13970
|
-
claimKeyToLicenseMap: z.record(z.
|
|
13971
|
-
claimKeyToLicenseMapV2: z.record(z.
|
|
13970
|
+
claimKeyToLicenseMap: z.record(z.string(), z.array(z.string())).optional(),
|
|
13971
|
+
claimKeyToLicenseMapV2: z.record(z.string(), z.record(z.string(), z.lazy(() => SalesforceLicenseStartDateTimeAndEndDateTime))).optional(),
|
|
13972
13972
|
customerEmails: z.string().optional(),
|
|
13973
13973
|
customerName: z.string().optional(),
|
|
13974
13974
|
orgUuid: z.string().optional(),
|
|
@@ -14022,7 +14022,7 @@ const Internal_InitiateShipmentWSRequest = z.object({
|
|
|
14022
14022
|
shipmentCategory: z.string().optional(),
|
|
14023
14023
|
shipmentInfo: OutgoingShipmentInfoType.optional()
|
|
14024
14024
|
});
|
|
14025
|
-
const Internal_ListOrgsWSRequest = z.record(z.unknown());
|
|
14025
|
+
const Internal_ListOrgsWSRequest = z.record(z.string(), z.unknown());
|
|
14026
14026
|
const PlayerViewLiveTypeEnum = z.string();
|
|
14027
14027
|
const UAPSettingsType = z.object({
|
|
14028
14028
|
enabled: z.boolean().optional(),
|
|
@@ -14054,16 +14054,16 @@ const OrgV2Type = z.object({
|
|
|
14054
14054
|
keypadLogoUrl: z.string().optional(),
|
|
14055
14055
|
keypadLogoUuid: z.string().optional(),
|
|
14056
14056
|
llmUsageEnabled: z.boolean().optional(),
|
|
14057
|
-
maxAllowedSegmentMaxBytesMap: z.record(z.
|
|
14057
|
+
maxAllowedSegmentMaxBytesMap: z.record(z.string(), z.number().int()).optional(),
|
|
14058
14058
|
mfaEnabled: z.boolean().optional(),
|
|
14059
14059
|
motionGridDisabled: z.boolean().optional(),
|
|
14060
14060
|
motionLightweightDisabled: z.boolean().optional(),
|
|
14061
14061
|
name: z.string().optional(),
|
|
14062
|
-
newCameraFramerateMap: z.record(z.
|
|
14063
|
-
newCameraResolutionMap: z.record(z.
|
|
14064
|
-
newCameraSegmentMaxBytesMap: z.record(z.
|
|
14065
|
-
newCameraVideoTargetQualityMap: z.record(z.
|
|
14066
|
-
newCameraZeroMotionVideoQualityMap: z.record(z.
|
|
14062
|
+
newCameraFramerateMap: z.record(z.string(), z.number().int()).optional(),
|
|
14063
|
+
newCameraResolutionMap: z.record(z.string(), z.number().int()).optional(),
|
|
14064
|
+
newCameraSegmentMaxBytesMap: z.record(z.string(), z.number().int()).optional(),
|
|
14065
|
+
newCameraVideoTargetQualityMap: z.record(z.string(), z.number().int()).optional(),
|
|
14066
|
+
newCameraZeroMotionVideoQualityMap: z.record(z.string(), z.number().int()).optional(),
|
|
14067
14067
|
notifyForHardwareFailureTickets: z.boolean().optional(),
|
|
14068
14068
|
partnerAccessAllowedUntil: z.number().int().optional(),
|
|
14069
14069
|
postalCode: z.string().optional(),
|
|
@@ -14100,7 +14100,7 @@ const Internal_RemediateMissingFirstAssignedDatesWSRequest = z.object({
|
|
|
14100
14100
|
const Internal_RemediateMissingFirstAssignedDatesWSResponse = z.object({
|
|
14101
14101
|
error: z.boolean().optional(),
|
|
14102
14102
|
errorMsg: z.string().optional(),
|
|
14103
|
-
updateOrgUuidsToUpdatedLicenseUuids: z.record(z.
|
|
14103
|
+
updateOrgUuidsToUpdatedLicenseUuids: z.record(z.string(), z.array(z.string())).optional(),
|
|
14104
14104
|
warningMsg: z.string().optional()
|
|
14105
14105
|
});
|
|
14106
14106
|
const Internal_RequestHardwareForDevelopmentWSRequest = z.object({
|
|
@@ -14148,7 +14148,7 @@ const Internal_ShipmentEmailWSResponse = z.object({
|
|
|
14148
14148
|
const Internal_VerifyCanMigrateOrgFromV1WSResponse = z.object({
|
|
14149
14149
|
error: z.boolean().optional(),
|
|
14150
14150
|
errorMsg: z.string().optional(),
|
|
14151
|
-
invalidOrgsToErrorMessages: z.record(z.
|
|
14151
|
+
invalidOrgsToErrorMessages: z.record(z.string(), z.string()).optional(),
|
|
14152
14152
|
warningMsg: z.string().optional()
|
|
14153
14153
|
});
|
|
14154
14154
|
const LicenseInvoiceSubItem = z.object({
|
|
@@ -14357,7 +14357,7 @@ const Keypad_ClaimKeypadActivationTokenResponse = z.object({
|
|
|
14357
14357
|
errorMsg: z.string().optional(),
|
|
14358
14358
|
warningMsg: z.string().optional()
|
|
14359
14359
|
});
|
|
14360
|
-
const Keypad_GetCurrentKeypadWSRequest = z.record(z.unknown());
|
|
14360
|
+
const Keypad_GetCurrentKeypadWSRequest = z.record(z.string(), z.unknown());
|
|
14361
14361
|
const Keypad_GetCurrentKeypadWSResponse = z.object({
|
|
14362
14362
|
error: z.boolean().optional(),
|
|
14363
14363
|
errorMsg: z.string().optional(),
|
|
@@ -14373,7 +14373,7 @@ const Keypad_GetKeypadsForLocationWSResponse = z.object({
|
|
|
14373
14373
|
keypads: z.array(KeypadConfigType).optional(),
|
|
14374
14374
|
warningMsg: z.string().optional()
|
|
14375
14375
|
});
|
|
14376
|
-
const Keypad_GetKeypadsForOrgWSRequest = z.record(z.unknown());
|
|
14376
|
+
const Keypad_GetKeypadsForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
14377
14377
|
const Keypad_GetKeypadsForOrgWSResponse = z.object({
|
|
14378
14378
|
error: z.boolean().optional(),
|
|
14379
14379
|
errorMsg: z.string().optional(),
|
|
@@ -14385,7 +14385,7 @@ const Keypad_KeypadCheckinWSRequest = z.object({
|
|
|
14385
14385
|
platform: z.string().optional(),
|
|
14386
14386
|
signalStrength: z.number().int().optional()
|
|
14387
14387
|
});
|
|
14388
|
-
const Keypad_KeypadCheckinWSResponse = z.record(z.unknown());
|
|
14388
|
+
const Keypad_KeypadCheckinWSResponse = z.record(z.string(), z.unknown());
|
|
14389
14389
|
const Keypad_PublishKeypadCommandWSRequest = z.object({
|
|
14390
14390
|
command: KeypadCommand,
|
|
14391
14391
|
executeAtMs: z.number().int().optional()
|
|
@@ -14432,7 +14432,7 @@ const KioskSelectiveUpdate = z.object({
|
|
|
14432
14432
|
name: z.string().optional(),
|
|
14433
14433
|
orgUuid: z.string().optional(),
|
|
14434
14434
|
printerIP: z.string().optional(),
|
|
14435
|
-
updatedSetMethodMap: z.record(z.
|
|
14435
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
14436
14436
|
uuid: z.string().optional()
|
|
14437
14437
|
});
|
|
14438
14438
|
const Kiosk_ClaimKioskActivationTokenRequest = z.object({
|
|
@@ -14455,7 +14455,7 @@ const Kiosk_DeleteKioskWSResponse = z.object({
|
|
|
14455
14455
|
errorMsg: z.string().optional(),
|
|
14456
14456
|
warningMsg: z.string().optional()
|
|
14457
14457
|
});
|
|
14458
|
-
const Kiosk_GetCurrentKioskWSRequest = z.record(z.unknown());
|
|
14458
|
+
const Kiosk_GetCurrentKioskWSRequest = z.record(z.string(), z.unknown());
|
|
14459
14459
|
const Kiosk_KioskWithInfo = z.object({
|
|
14460
14460
|
batteryLevel: z.number().optional(),
|
|
14461
14461
|
connectionStatus: z.string().optional(),
|
|
@@ -14486,7 +14486,7 @@ const Kiosk_GetKiosksForLocationWSResponse = z.object({
|
|
|
14486
14486
|
kiosks: z.array(Kiosk).optional(),
|
|
14487
14487
|
warningMsg: z.string().optional()
|
|
14488
14488
|
});
|
|
14489
|
-
const Kiosk_GetKiosksForOrgWSRequest = z.record(z.unknown());
|
|
14489
|
+
const Kiosk_GetKiosksForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
14490
14490
|
const Kiosk_GetKiosksForOrgWSResponse = z.object({
|
|
14491
14491
|
error: z.boolean().optional(),
|
|
14492
14492
|
errorMsg: z.string().optional(),
|
|
@@ -14497,7 +14497,7 @@ const Kiosk_KioskCheckinWSRequest = z.object({
|
|
|
14497
14497
|
batterLevel: z.number().optional(),
|
|
14498
14498
|
signalStrength: z.number().int().optional()
|
|
14499
14499
|
});
|
|
14500
|
-
const Kiosk_KioskCheckinWSResponse = z.record(z.unknown());
|
|
14500
|
+
const Kiosk_KioskCheckinWSResponse = z.record(z.string(), z.unknown());
|
|
14501
14501
|
const Kiosk_UnregisterKioskRequest = z.object({
|
|
14502
14502
|
kioskUuid: z.string().optional()
|
|
14503
14503
|
});
|
|
@@ -14702,7 +14702,7 @@ const License_GetACUDoorLicensesForClientOrgWSRequest = z.object({
|
|
|
14702
14702
|
const License_GetACUDoorLicensesForClientOrgWSResponse = z.object({
|
|
14703
14703
|
acuDoorLicenses: z.array(ACUDoorLicenseType).optional()
|
|
14704
14704
|
});
|
|
14705
|
-
const License_GetACUDoorLicensesWSRequest = z.record(z.unknown());
|
|
14705
|
+
const License_GetACUDoorLicensesWSRequest = z.record(z.string(), z.unknown());
|
|
14706
14706
|
const License_GetACUDoorLicensesWSResponse = z.object({
|
|
14707
14707
|
acuDoorLicenses: z.array(ACUDoorLicenseType).optional(),
|
|
14708
14708
|
error: z.boolean().optional(),
|
|
@@ -14715,7 +14715,7 @@ const License_GetAlertMonitoringLicensesForClientOrgWSRequest = z.object({
|
|
|
14715
14715
|
const License_GetAlertMonitoringLicensesForClientOrgWSResponse = z.object({
|
|
14716
14716
|
alertMonitoringLicenses: z.array(AlertMonitoringLicenseType).optional()
|
|
14717
14717
|
});
|
|
14718
|
-
const License_GetAlertMonitoringLicensesWSRequest = z.record(z.unknown());
|
|
14718
|
+
const License_GetAlertMonitoringLicensesWSRequest = z.record(z.string(), z.unknown());
|
|
14719
14719
|
const License_GetAlertMonitoringLicensesWSResponse = z.object({
|
|
14720
14720
|
alertMonitoringLicenses: z.array(AlertMonitoringLicenseType).optional(),
|
|
14721
14721
|
error: z.boolean().optional(),
|
|
@@ -14802,7 +14802,7 @@ const License_claimkey_CreateClaimKeyWSResponse = z.object({
|
|
|
14802
14802
|
});
|
|
14803
14803
|
const License_claimkey_CreateRenewalClaimKeyWSRequest = z.object({
|
|
14804
14804
|
endDate: z.string().datetime({ offset: true }).optional(),
|
|
14805
|
-
entries: z.record(z.
|
|
14805
|
+
entries: z.record(z.string(), ClaimKeyEntry).optional(),
|
|
14806
14806
|
requestId: z.string().optional()
|
|
14807
14807
|
});
|
|
14808
14808
|
const License_claimkey_CreateRenewalClaimKeyWSResponse = z.object({
|
|
@@ -14844,7 +14844,7 @@ const License_claimkey_GetClaimKeyWSResponse = z.object({
|
|
|
14844
14844
|
warningMsg: z.string().optional()
|
|
14845
14845
|
});
|
|
14846
14846
|
const License_claimkey_ReturnClaimKeyProductQuantitiesWSRequest = z.object({
|
|
14847
|
-
productQuantities: z.record(z.
|
|
14847
|
+
productQuantities: z.record(z.string(), z.number().int()).optional(),
|
|
14848
14848
|
uuid: z.string().optional()
|
|
14849
14849
|
});
|
|
14850
14850
|
const License_claimkey_ReturnClaimKeyProductQuantitiesWSResponse = z.object({
|
|
@@ -14852,9 +14852,9 @@ const License_claimkey_ReturnClaimKeyProductQuantitiesWSResponse = z.object({
|
|
|
14852
14852
|
errorMsg: z.string().optional(),
|
|
14853
14853
|
warningMsg: z.string().optional()
|
|
14854
14854
|
});
|
|
14855
|
-
const UriBuilder = z.record(z.unknown());
|
|
14855
|
+
const UriBuilder = z.record(z.string(), z.unknown());
|
|
14856
14856
|
const Link = z.object({
|
|
14857
|
-
params: z.record(z.
|
|
14857
|
+
params: z.record(z.string(), z.string()).optional(),
|
|
14858
14858
|
rel: z.string().optional(),
|
|
14859
14859
|
rels: z.array(z.string()).optional(),
|
|
14860
14860
|
title: z.string().optional(),
|
|
@@ -14908,11 +14908,11 @@ const Location_GeoCodeWSResponse = z.object({
|
|
|
14908
14908
|
longitude: z.number().optional(),
|
|
14909
14909
|
warningMsg: z.string().optional()
|
|
14910
14910
|
});
|
|
14911
|
-
const Location_GetLocationLabelsForOrgWSRequest = z.record(z.unknown());
|
|
14911
|
+
const Location_GetLocationLabelsForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
14912
14912
|
const Location_GetLocationLabelsForOrgWSResponse = z.object({
|
|
14913
14913
|
error: z.boolean().optional(),
|
|
14914
14914
|
errorMsg: z.string().optional(),
|
|
14915
|
-
locationLabels: z.record(z.
|
|
14915
|
+
locationLabels: z.record(z.string(), z.array(z.string())).optional(),
|
|
14916
14916
|
warningMsg: z.string().optional()
|
|
14917
14917
|
});
|
|
14918
14918
|
const Location_GetLocationWSRequest = z.object({
|
|
@@ -15086,7 +15086,7 @@ const LockdownDeactivatedStateEventType = z.object({
|
|
|
15086
15086
|
stateChangedAtMillis: z.number().int().optional(),
|
|
15087
15087
|
type: LockdownStateEventEnumType.optional()
|
|
15088
15088
|
});
|
|
15089
|
-
const Logistics_GetRMAsWSRequest = z.record(z.unknown());
|
|
15089
|
+
const Logistics_GetRMAsWSRequest = z.record(z.string(), z.unknown());
|
|
15090
15090
|
const RMARequest = z.object({
|
|
15091
15091
|
formSubmitted: z.boolean().optional(),
|
|
15092
15092
|
requestUuid: z.string().optional(),
|
|
@@ -15113,7 +15113,7 @@ const RMAType = z.object({
|
|
|
15113
15113
|
initialFirmwareVersion: z.string().optional(),
|
|
15114
15114
|
initiatedBy: z.string().optional(),
|
|
15115
15115
|
inventoryNeeded: z.string().optional(),
|
|
15116
|
-
inventoryNeededMap: z.record(z.
|
|
15116
|
+
inventoryNeededMap: z.record(z.string(), z.string()).optional(),
|
|
15117
15117
|
isRefurbished: z.boolean().optional(),
|
|
15118
15118
|
knownIssue: z.boolean().optional(),
|
|
15119
15119
|
lastRecordedFirmwareVersion: z.string().optional(),
|
|
@@ -15184,7 +15184,7 @@ const Mediadevice_GetBulkMediaDeviceDetailsWSRequest = z.object({
|
|
|
15184
15184
|
const Mediadevice_GetBulkMediaDeviceDetailsWSResponse = z.object({
|
|
15185
15185
|
error: z.boolean().optional(),
|
|
15186
15186
|
errorMsg: z.string().optional(),
|
|
15187
|
-
mediaDeviceDetails: z.record(z.
|
|
15187
|
+
mediaDeviceDetails: z.record(z.string(), z.lazy(() => Mediadevice_MediaDeviceDetailsType)).optional(),
|
|
15188
15188
|
warningMsg: z.string().optional()
|
|
15189
15189
|
});
|
|
15190
15190
|
const Mediadevice_MediaDeviceDetailsType = z.object({
|
|
@@ -15215,7 +15215,7 @@ const Mediadevice_MediaDeviceDetailsType = z.object({
|
|
|
15215
15215
|
wanVodMpdUriTemplate: z.string().optional()
|
|
15216
15216
|
});
|
|
15217
15217
|
const Metric_LogEventWSRequest = z.object({
|
|
15218
|
-
logMap: z.record(z.unknown()).optional()
|
|
15218
|
+
logMap: z.record(z.string(), z.record(z.string(), z.unknown())).optional()
|
|
15219
15219
|
});
|
|
15220
15220
|
const Metric_LogEventWSResponse = z.object({
|
|
15221
15221
|
error: z.boolean().optional(),
|
|
@@ -15223,7 +15223,7 @@ const Metric_LogEventWSResponse = z.object({
|
|
|
15223
15223
|
warningMsg: z.string().optional()
|
|
15224
15224
|
});
|
|
15225
15225
|
const Metric_ReportErrorWSRequest = z.object({
|
|
15226
|
-
errorMap: z.record(z.unknown()).optional()
|
|
15226
|
+
errorMap: z.record(z.string(), z.record(z.string(), z.unknown())).optional()
|
|
15227
15227
|
});
|
|
15228
15228
|
const Metric_ReportErrorWSResponse = z.object({
|
|
15229
15229
|
error: z.boolean().optional(),
|
|
@@ -15251,7 +15251,7 @@ const MinimalNVRStateType = z.object({
|
|
|
15251
15251
|
defaultInterfaceMac: z.string().optional(),
|
|
15252
15252
|
directionRadians: z.number().optional(),
|
|
15253
15253
|
externalIPAddress: z.string().optional(),
|
|
15254
|
-
facetNameMap: z.record(z.
|
|
15254
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
15255
15255
|
firmwareUpdateInProgress: z.boolean().optional(),
|
|
15256
15256
|
firmwareVersion: z.string().optional(),
|
|
15257
15257
|
floorNumber: z.number().int().optional(),
|
|
@@ -15303,7 +15303,7 @@ const MinimalRobotStateType = z.object({
|
|
|
15303
15303
|
defaultInterfaceMac: z.string().optional(),
|
|
15304
15304
|
directionRadians: z.number().optional(),
|
|
15305
15305
|
externalIPAddress: z.string().optional(),
|
|
15306
|
-
facetNameMap: z.record(z.
|
|
15306
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
15307
15307
|
firmwareUpdateInProgress: z.boolean().optional(),
|
|
15308
15308
|
firmwareVersion: z.string().optional(),
|
|
15309
15309
|
floorNumber: z.number().int().optional(),
|
|
@@ -15368,8 +15368,8 @@ const Mobile_LoginVerifiedSupportAuthorityMobileResponse = z.object({
|
|
|
15368
15368
|
supportAuthoritySessionUuid: z.string().optional(),
|
|
15369
15369
|
valid: z.boolean().optional()
|
|
15370
15370
|
});
|
|
15371
|
-
const Mobile_LogoutMobileUserRequest = z.record(z.unknown());
|
|
15372
|
-
const Mobile_LogoutMobileUserResponse = z.record(z.unknown());
|
|
15371
|
+
const Mobile_LogoutMobileUserRequest = z.record(z.string(), z.unknown());
|
|
15372
|
+
const Mobile_LogoutMobileUserResponse = z.record(z.string(), z.unknown());
|
|
15373
15373
|
const Mobile_RefreshMobileSessionRequest = z.object({
|
|
15374
15374
|
csr: z.array(z.string()).optional()
|
|
15375
15375
|
});
|
|
@@ -15383,20 +15383,20 @@ const Mobile_UpdateMobileNotificationTokenRequest = z.object({
|
|
|
15383
15383
|
forceNewEndpoint: z.boolean().optional(),
|
|
15384
15384
|
token: z.string().optional()
|
|
15385
15385
|
});
|
|
15386
|
-
const Mobile_UpdateMobileNotificationTokenResponse = z.record(z.unknown());
|
|
15386
|
+
const Mobile_UpdateMobileNotificationTokenResponse = z.record(z.string(), z.unknown());
|
|
15387
15387
|
const Mobile_UpdateRhombusKeyMobileNotificationTokenRequest = z.object({
|
|
15388
15388
|
token: z.string().optional()
|
|
15389
15389
|
});
|
|
15390
|
-
const Mobile_UpdateRhombusKeyMobileNotificationTokenResponse = z.record(z.unknown());
|
|
15390
|
+
const Mobile_UpdateRhombusKeyMobileNotificationTokenResponse = z.record(z.string(), z.unknown());
|
|
15391
15391
|
const ModelStatusEnum = z.string();
|
|
15392
15392
|
const ModularAIModelParams = z.object({
|
|
15393
|
-
classOutputMap: z.record(z.
|
|
15393
|
+
classOutputMap: z.record(z.string(), z.string()).optional(),
|
|
15394
15394
|
inputHeight: z.number().int().optional(),
|
|
15395
15395
|
inputWidth: z.number().int().optional()
|
|
15396
15396
|
});
|
|
15397
15397
|
const PipelineComponentType = z.string();
|
|
15398
15398
|
const PipelineComponent = z.object({
|
|
15399
|
-
arg_json: z.record(z.unknown()).optional(),
|
|
15399
|
+
arg_json: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
15400
15400
|
name: PipelineComponentType.optional(),
|
|
15401
15401
|
uuid: z.string().optional()
|
|
15402
15402
|
});
|
|
@@ -15422,7 +15422,7 @@ const ModularAIConfigSelectiveUpdate = z.object({
|
|
|
15422
15422
|
name: z.string().optional(),
|
|
15423
15423
|
pipeline: z.array(PipelineComponent).optional(),
|
|
15424
15424
|
restrictedOrgUuid: z.string().optional(),
|
|
15425
|
-
updatedSetMethodMap: z.record(z.
|
|
15425
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
15426
15426
|
uuid: z.string().optional()
|
|
15427
15427
|
});
|
|
15428
15428
|
const ModularAIDistribution = z.object({
|
|
@@ -15489,14 +15489,14 @@ const Modularai_GetModelsForDistributionWSResponse = z.object({
|
|
|
15489
15489
|
models: z.array(ModularAIConfig).optional(),
|
|
15490
15490
|
warningMsg: z.string().optional()
|
|
15491
15491
|
});
|
|
15492
|
-
const Modularai_GetModelsWSRequest = z.record(z.unknown());
|
|
15492
|
+
const Modularai_GetModelsWSRequest = z.record(z.string(), z.unknown());
|
|
15493
15493
|
const Modularai_GetModelsWSResponse = z.object({
|
|
15494
15494
|
error: z.boolean().optional(),
|
|
15495
15495
|
errorMsg: z.string().optional(),
|
|
15496
15496
|
models: z.array(ModularAIConfig).optional(),
|
|
15497
15497
|
warningMsg: z.string().optional()
|
|
15498
15498
|
});
|
|
15499
|
-
const Modularai_ListModularAIDistributionsWSRequest = z.record(z.unknown());
|
|
15499
|
+
const Modularai_ListModularAIDistributionsWSRequest = z.record(z.string(), z.unknown());
|
|
15500
15500
|
const Modularai_ListModularAIDistributionsWSResponse = z.object({
|
|
15501
15501
|
distributions: z.array(ModularAIDistribution).optional(),
|
|
15502
15502
|
error: z.boolean().optional(),
|
|
@@ -15515,7 +15515,7 @@ const Modularai_RemoveModelFromDeviceWSResponse = z.object({
|
|
|
15515
15515
|
const Modularai_UpdateModelWSRequest = z.object({
|
|
15516
15516
|
update: ModularAIConfigSelectiveUpdate.optional()
|
|
15517
15517
|
});
|
|
15518
|
-
const Modularai_UpdateModelWSResponse = z.record(z.unknown());
|
|
15518
|
+
const Modularai_UpdateModelWSResponse = z.record(z.string(), z.unknown());
|
|
15519
15519
|
const MultivaluedMapStringObject = z.object({
|
|
15520
15520
|
empty: z.boolean().optional()
|
|
15521
15521
|
});
|
|
@@ -15588,7 +15588,7 @@ const OAuthApplication = z.object({
|
|
|
15588
15588
|
orgUuid: z.string().optional(),
|
|
15589
15589
|
redirectUri: z.string().optional()
|
|
15590
15590
|
});
|
|
15591
|
-
const Oauth_GetAllApplicationsForOrgWSRequest = z.record(z.unknown());
|
|
15591
|
+
const Oauth_GetAllApplicationsForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
15592
15592
|
const Oauth_GetAllApplicationsForOrgWSResponse = z.object({
|
|
15593
15593
|
error: z.boolean().optional(),
|
|
15594
15594
|
errorMsg: z.string().optional(),
|
|
@@ -15646,7 +15646,7 @@ const OccupancyPolicyType = z.object({
|
|
|
15646
15646
|
scheduledTriggers: z.array(OccupancyScheduledTriggerType).optional(),
|
|
15647
15647
|
uuid: z.string().optional()
|
|
15648
15648
|
});
|
|
15649
|
-
const Occupancysensor_GetMinimalOccupancySensorStatesWSRequest = z.record(z.unknown());
|
|
15649
|
+
const Occupancysensor_GetMinimalOccupancySensorStatesWSRequest = z.record(z.string(), z.unknown());
|
|
15650
15650
|
const Occupancysensor_MotionSensorHealthEnum = z.string();
|
|
15651
15651
|
const Occupancysensor_MotionSensorHealthDetailsEnum = z.string();
|
|
15652
15652
|
const Occupancysensor_MinimalOccupancySensorStateType = z.object({
|
|
@@ -15738,7 +15738,7 @@ const OpentechAllianceDoorInfoType = z.object({
|
|
|
15738
15738
|
const OpentechAllianceFacilitySettings = z.object({
|
|
15739
15739
|
alertUnauthorizedFaces: z.boolean().optional(),
|
|
15740
15740
|
createSeekPoints: z.boolean().optional(),
|
|
15741
|
-
doorInfoMap: z.record(z.
|
|
15741
|
+
doorInfoMap: z.record(z.string(), OpentechAllianceDoorInfoType).optional(),
|
|
15742
15742
|
identifyFacesFromBadge: z.boolean().optional(),
|
|
15743
15743
|
saveClips: z.boolean().optional()
|
|
15744
15744
|
});
|
|
@@ -15751,7 +15751,7 @@ const OrgLockdownPlanType = z.object({
|
|
|
15751
15751
|
createdAtMillis: z.number().int().optional(),
|
|
15752
15752
|
deactivationPlan: LockdownDeactivationPlanType.optional(),
|
|
15753
15753
|
defaultLockdownState: DoorLockdownStateEnumType.optional(),
|
|
15754
|
-
doorLockdownStateMap: z.record(z.
|
|
15754
|
+
doorLockdownStateMap: z.record(z.string(), DoorLockdownStateEnumType).optional(),
|
|
15755
15755
|
name: z.string().optional(),
|
|
15756
15756
|
orgUuid: z.string().optional(),
|
|
15757
15757
|
physicalAccess: LockdownPhysicalAccessType.optional(),
|
|
@@ -15793,10 +15793,10 @@ const OrgType = z.object({
|
|
|
15793
15793
|
itemizedInvoice: z.boolean().optional(),
|
|
15794
15794
|
mfaEnabled: z.boolean().optional(),
|
|
15795
15795
|
name: z.string().optional(),
|
|
15796
|
-
newCameraFramerateMap: z.record(z.
|
|
15797
|
-
newCameraResolutionMap: z.record(z.
|
|
15798
|
-
newCameraSegmentMaxBytesMap: z.record(z.
|
|
15799
|
-
newCameraVideoTargetQualityMap: z.record(z.
|
|
15796
|
+
newCameraFramerateMap: z.record(z.string(), z.number().int()).optional(),
|
|
15797
|
+
newCameraResolutionMap: z.record(z.string(), z.number().int()).optional(),
|
|
15798
|
+
newCameraSegmentMaxBytesMap: z.record(z.string(), z.number().int()).optional(),
|
|
15799
|
+
newCameraVideoTargetQualityMap: z.record(z.string(), z.number().int()).optional(),
|
|
15800
15800
|
notificationSettings: NotificationSettingsType.optional(),
|
|
15801
15801
|
partnerAccessAllowedUntil: z.number().int().optional(),
|
|
15802
15802
|
planType: z.string().optional(),
|
|
@@ -15858,7 +15858,7 @@ const Org_DeleteCloudArchivingConfigWSResponse = z.object({
|
|
|
15858
15858
|
errorMsg: z.string().optional(),
|
|
15859
15859
|
warningMsg: z.string().optional()
|
|
15860
15860
|
});
|
|
15861
|
-
const Org_DeleteKeypadLogoWSRequest = z.record(z.unknown());
|
|
15861
|
+
const Org_DeleteKeypadLogoWSRequest = z.record(z.string(), z.unknown());
|
|
15862
15862
|
const Org_DeleteKeypadLogoWSResponse = z.object({
|
|
15863
15863
|
error: z.boolean().optional(),
|
|
15864
15864
|
errorMsg: z.string().optional(),
|
|
@@ -15874,7 +15874,7 @@ const Org_DeleteRhombusKeyLogoWSResponse = z.object({
|
|
|
15874
15874
|
errorMsg: z.string().optional(),
|
|
15875
15875
|
warningMsg: z.string().optional()
|
|
15876
15876
|
});
|
|
15877
|
-
const Org_FindAllHardwareWithPendingRegistrationRequest = z.record(z.unknown());
|
|
15877
|
+
const Org_FindAllHardwareWithPendingRegistrationRequest = z.record(z.string(), z.unknown());
|
|
15878
15878
|
const Org_PendingRegistrationInfoType = z.object({
|
|
15879
15879
|
locationUuid: z.string().optional(),
|
|
15880
15880
|
name: z.string().optional(),
|
|
@@ -15889,7 +15889,7 @@ const Org_FindAllHardwareWithPendingRegistrationResponse = z.object({
|
|
|
15889
15889
|
hardwareList: z.array(HardwareType).optional(),
|
|
15890
15890
|
hardwareWithPendingRegistrationInfoList: z.array(Org_HardwareWithPendingRegistrationInfoType).optional()
|
|
15891
15891
|
});
|
|
15892
|
-
const Org_FindHardwareAvailableForPendingRegistrationRequest = z.record(z.unknown());
|
|
15892
|
+
const Org_FindHardwareAvailableForPendingRegistrationRequest = z.record(z.string(), z.unknown());
|
|
15893
15893
|
const Org_FindHardwareAvailableForPendingRegistrationResponse = z.object({
|
|
15894
15894
|
hardwareList: z.array(HardwareType).optional()
|
|
15895
15895
|
});
|
|
@@ -15899,7 +15899,7 @@ const Org_FindIfTeamNameAvailableRequest = z.object({
|
|
|
15899
15899
|
const Org_FindIfTeamNameAvailableResponse = z.object({
|
|
15900
15900
|
available: z.boolean().optional()
|
|
15901
15901
|
});
|
|
15902
|
-
const Org_FindSCIMSettingsForOrgWSRequest = z.record(z.unknown());
|
|
15902
|
+
const Org_FindSCIMSettingsForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
15903
15903
|
const SCIMRolesFormatEnum = z.string();
|
|
15904
15904
|
const SCIMSettingsType = z.object({
|
|
15905
15905
|
addUsersOnRoleMismatch: z.boolean().optional(),
|
|
@@ -15922,7 +15922,7 @@ const Org_GenerateFederatedSessionTokenRequest = z.object({
|
|
|
15922
15922
|
const Org_GenerateFederatedSessionTokenResponse = z.object({
|
|
15923
15923
|
federatedSessionToken: z.string().optional()
|
|
15924
15924
|
});
|
|
15925
|
-
const Org_GetAwsIntCloudformationFileRequest = z.record(z.unknown());
|
|
15925
|
+
const Org_GetAwsIntCloudformationFileRequest = z.record(z.string(), z.unknown());
|
|
15926
15926
|
const Org_GetAwsIntCloudformationFileResponse = z.object({
|
|
15927
15927
|
fileBase64: z.string().optional()
|
|
15928
15928
|
});
|
|
@@ -15931,32 +15931,32 @@ const Org_GetClientOrgWSRequest = z.object({
|
|
|
15931
15931
|
});
|
|
15932
15932
|
const Permission = z.string();
|
|
15933
15933
|
const UserPermissionGroupType = z.object({
|
|
15934
|
-
accessControlLocationAccessMap: z.record(z.
|
|
15934
|
+
accessControlLocationAccessMap: z.record(z.string(), Permission).optional(),
|
|
15935
15935
|
accessibleLocations: z.array(z.string()).optional(),
|
|
15936
15936
|
assignablePermissionGroups: z.array(z.string()).optional(),
|
|
15937
15937
|
defaultAccessControlPermissionForNewLocations: Permission.optional(),
|
|
15938
15938
|
defaultPermissionForNewLocations: Permission.optional(),
|
|
15939
15939
|
description: z.string().optional(),
|
|
15940
|
-
deviceAccessMap: z.record(z.
|
|
15940
|
+
deviceAccessMap: z.record(z.string(), Permission).optional(),
|
|
15941
15941
|
functionalityList: z.array(Functionality).optional(),
|
|
15942
15942
|
inLine: z.boolean().optional(),
|
|
15943
15943
|
installer: z.boolean().optional(),
|
|
15944
|
-
locationAccessMap: z.record(z.
|
|
15945
|
-
locationGranularAccessMap: z.record(z.
|
|
15944
|
+
locationAccessMap: z.record(z.string(), Permission).optional(),
|
|
15945
|
+
locationGranularAccessMap: z.record(z.string(), z.record(z.string(), Permission)).optional(),
|
|
15946
15946
|
mutable: z.boolean().optional(),
|
|
15947
15947
|
name: z.string().optional(),
|
|
15948
15948
|
orgUuid: z.string().optional(),
|
|
15949
15949
|
storedInS3: z.boolean().optional(),
|
|
15950
15950
|
superAdmin: z.boolean().optional(),
|
|
15951
|
-
userPermissionGroupAccessMap: z.record(z.
|
|
15951
|
+
userPermissionGroupAccessMap: z.record(z.string(), Permission).optional(),
|
|
15952
15952
|
uuid: z.string().optional()
|
|
15953
15953
|
});
|
|
15954
15954
|
const Org_GetClientOrgWSResponse = z.object({
|
|
15955
|
-
featureFlags: z.record(z.
|
|
15955
|
+
featureFlags: z.record(z.string(), z.string()).optional(),
|
|
15956
15956
|
org: OrgV2Type.optional(),
|
|
15957
15957
|
partnerOrgPermissionGroup: UserPermissionGroupType.optional()
|
|
15958
15958
|
});
|
|
15959
|
-
const Org_GetCloudArchivingConfigsWSRequest = z.record(z.unknown());
|
|
15959
|
+
const Org_GetCloudArchivingConfigsWSRequest = z.record(z.string(), z.unknown());
|
|
15960
15960
|
const Org_GetCloudArchivingConfigsWSResponse = z.object({
|
|
15961
15961
|
archivingConfigs: z.array(ScopedCloudArchivingConfig).optional(),
|
|
15962
15962
|
error: z.boolean().optional(),
|
|
@@ -15969,10 +15969,10 @@ const Org_GetDeviceFlagsWSRequest = z.object({
|
|
|
15969
15969
|
const Org_GetDeviceFlagsWSResponse = z.object({
|
|
15970
15970
|
error: z.boolean().optional(),
|
|
15971
15971
|
errorMsg: z.string().optional(),
|
|
15972
|
-
flags: z.record(z.
|
|
15972
|
+
flags: z.record(z.string(), z.string()).optional(),
|
|
15973
15973
|
warningMsg: z.string().optional()
|
|
15974
15974
|
});
|
|
15975
|
-
const Org_GetFeaturesWSRequest = z.record(z.unknown());
|
|
15975
|
+
const Org_GetFeaturesWSRequest = z.record(z.string(), z.unknown());
|
|
15976
15976
|
const Org_GetFeaturesWSResponse = z.object({
|
|
15977
15977
|
behaviorDetection: z.boolean().optional(),
|
|
15978
15978
|
cloudArchiving: z.boolean().optional(),
|
|
@@ -15989,14 +15989,14 @@ const Org_GetFeaturesWSResponse = z.object({
|
|
|
15989
15989
|
vehicleCounting: z.boolean().optional(),
|
|
15990
15990
|
warningMsg: z.string().optional()
|
|
15991
15991
|
});
|
|
15992
|
-
const Org_GetLocationFlagsWSRequest = z.record(z.unknown());
|
|
15992
|
+
const Org_GetLocationFlagsWSRequest = z.record(z.string(), z.unknown());
|
|
15993
15993
|
const Org_GetLocationFlagsWSResponse = z.object({
|
|
15994
15994
|
error: z.boolean().optional(),
|
|
15995
15995
|
errorMsg: z.string().optional(),
|
|
15996
|
-
flagsMap: z.record(z.
|
|
15996
|
+
flagsMap: z.record(z.string(), z.record(z.string(), z.string())).optional(),
|
|
15997
15997
|
warningMsg: z.string().optional()
|
|
15998
15998
|
});
|
|
15999
|
-
const Org_GetOrgIntegrationsWSRequest = z.record(z.unknown());
|
|
15999
|
+
const Org_GetOrgIntegrationsWSRequest = z.record(z.string(), z.unknown());
|
|
16000
16000
|
const Org_GetOrgIntegrationsWSResponse = z.object({
|
|
16001
16001
|
error: z.boolean().optional(),
|
|
16002
16002
|
errorMsg: z.string().optional(),
|
|
@@ -16009,39 +16009,39 @@ const Org_GetOrgNotificationTemplateV2WSResponse = z.object({
|
|
|
16009
16009
|
notificationSettings: UserNotificationSettingsV4Type.optional(),
|
|
16010
16010
|
warningMsg: z.string().optional()
|
|
16011
16011
|
});
|
|
16012
|
-
const Org_GetOrgNotificationTemplateWSRequest = z.record(z.unknown());
|
|
16012
|
+
const Org_GetOrgNotificationTemplateWSRequest = z.record(z.string(), z.unknown());
|
|
16013
16013
|
const Org_GetOrgNotificationTemplateWSResponse = z.object({
|
|
16014
16014
|
error: z.boolean().optional(),
|
|
16015
16015
|
errorMsg: z.string().optional(),
|
|
16016
16016
|
notificationSettings: UserNotificationSettingsV3Type.optional(),
|
|
16017
16017
|
warningMsg: z.string().optional()
|
|
16018
16018
|
});
|
|
16019
|
-
const Org_GetOrgV2WSRequest = z.record(z.unknown());
|
|
16019
|
+
const Org_GetOrgV2WSRequest = z.record(z.string(), z.unknown());
|
|
16020
16020
|
const Org_GetOrgV2WSResponse = z.object({
|
|
16021
|
-
cameraConfigDefaults: z.record(z.
|
|
16022
|
-
cameraConfigOptions: z.record(z.
|
|
16021
|
+
cameraConfigDefaults: z.record(z.string(), Device_config_settings_VideoConfigurationDefault).optional(),
|
|
16022
|
+
cameraConfigOptions: z.record(z.string(), z.array(Device_config_settings_VideoConfigurationOption)).optional(),
|
|
16023
16023
|
error: z.boolean().optional(),
|
|
16024
16024
|
errorMsg: z.string().optional(),
|
|
16025
|
-
featureFlags: z.record(z.
|
|
16025
|
+
featureFlags: z.record(z.string(), z.string()).optional(),
|
|
16026
16026
|
org: OrgV2Type.optional(),
|
|
16027
16027
|
warningMsg: z.string().optional()
|
|
16028
16028
|
});
|
|
16029
|
-
const Org_GetOrgWSRequest = z.record(z.unknown());
|
|
16029
|
+
const Org_GetOrgWSRequest = z.record(z.string(), z.unknown());
|
|
16030
16030
|
const Org_GetOrgWSResponse = z.object({
|
|
16031
16031
|
error: z.boolean().optional(),
|
|
16032
16032
|
errorMsg: z.string().optional(),
|
|
16033
|
-
featureFlags: z.record(z.
|
|
16033
|
+
featureFlags: z.record(z.string(), z.string()).optional(),
|
|
16034
16034
|
org: OrgType.optional(),
|
|
16035
16035
|
warningMsg: z.string().optional()
|
|
16036
16036
|
});
|
|
16037
|
-
const Org_GetSAMLSettingsV2WSRequest = z.record(z.unknown());
|
|
16037
|
+
const Org_GetSAMLSettingsV2WSRequest = z.record(z.string(), z.unknown());
|
|
16038
16038
|
const Org_GetSAMLSettingsV2WSResponse = z.object({
|
|
16039
16039
|
error: z.boolean().optional(),
|
|
16040
16040
|
errorMsg: z.string().optional(),
|
|
16041
16041
|
samlSettings: z.array(OrgSamlSettingsType).optional(),
|
|
16042
16042
|
warningMsg: z.string().optional()
|
|
16043
16043
|
});
|
|
16044
|
-
const Org_GetSAMLSettingsWSRequest = z.record(z.unknown());
|
|
16044
|
+
const Org_GetSAMLSettingsWSRequest = z.record(z.string(), z.unknown());
|
|
16045
16045
|
const Org_GetSAMLSettingsWSResponse = z.object({
|
|
16046
16046
|
error: z.boolean().optional(),
|
|
16047
16047
|
errorMsg: z.string().optional(),
|
|
@@ -16052,7 +16052,7 @@ const Org_GetScimDisplayInfoResponse = z.object({
|
|
|
16052
16052
|
azureScimEndpointUrl: z.string().optional(),
|
|
16053
16053
|
scimEndpointUrl: z.string().optional()
|
|
16054
16054
|
});
|
|
16055
|
-
const Org_GetTemporaryOrgTokenWSRequest = z.record(z.unknown());
|
|
16055
|
+
const Org_GetTemporaryOrgTokenWSRequest = z.record(z.string(), z.unknown());
|
|
16056
16056
|
const Org_PeekShipmentRegistrationTokenWSRequest = z.object({
|
|
16057
16057
|
tokenUuid: z.string().optional()
|
|
16058
16058
|
});
|
|
@@ -16065,9 +16065,9 @@ const Org_PeekShipmentRegistrationTokenWSResponse = z.object({
|
|
|
16065
16065
|
const Org_RemovePendingRegistrationRequest = z.object({
|
|
16066
16066
|
serialNumber: z.string().optional()
|
|
16067
16067
|
});
|
|
16068
|
-
const Org_RemovePendingRegistrationResponse = z.record(z.unknown());
|
|
16069
|
-
const Org_RevokeSCIMAccessForOrgWSRequest = z.record(z.unknown());
|
|
16070
|
-
const Org_RevokeSCIMAccessForOrgWSResponse = z.record(z.unknown());
|
|
16068
|
+
const Org_RemovePendingRegistrationResponse = z.record(z.string(), z.unknown());
|
|
16069
|
+
const Org_RevokeSCIMAccessForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
16070
|
+
const Org_RevokeSCIMAccessForOrgWSResponse = z.record(z.string(), z.unknown());
|
|
16071
16071
|
const Org_SetFlagWSRequest = z.object({
|
|
16072
16072
|
flagName: z.string().optional(),
|
|
16073
16073
|
flagValue: z.string().optional()
|
|
@@ -16175,7 +16175,7 @@ const UserNotificationSelectiveUpdateV2 = z.object({
|
|
|
16175
16175
|
smsPhoneNumbers: z.array(z.string()).optional(),
|
|
16176
16176
|
summaryEmailEnabled: z.boolean().optional(),
|
|
16177
16177
|
timeFrames: z.array(NotificationTimeFrame).optional(),
|
|
16178
|
-
updatedSetMethodMap: z.record(z.
|
|
16178
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
16179
16179
|
userUuid: z.string().optional()
|
|
16180
16180
|
});
|
|
16181
16181
|
const Org_UpdateOrgNotificationTemplateV2WSRequest = z.object({
|
|
@@ -16243,7 +16243,7 @@ const Org_UpdateSCIMSettingsForOrgWSResponse = z.object({
|
|
|
16243
16243
|
warningMsg: z.string().optional()
|
|
16244
16244
|
});
|
|
16245
16245
|
const ParameterizedHeader = z.object({
|
|
16246
|
-
parameters: z.record(z.
|
|
16246
|
+
parameters: z.record(z.string(), z.string()).optional(),
|
|
16247
16247
|
value: z.string().optional()
|
|
16248
16248
|
});
|
|
16249
16249
|
const PartnerFunctionality = z.string();
|
|
@@ -16255,9 +16255,9 @@ const PartnerPermissionType = z.object({
|
|
|
16255
16255
|
});
|
|
16256
16256
|
const PartnerUserPermissionGroupType = z.object({
|
|
16257
16257
|
assignablePermissionGroups: z.array(z.string()).optional(),
|
|
16258
|
-
clientAssignablePermissionGroupsMap: z.record(z.
|
|
16258
|
+
clientAssignablePermissionGroupsMap: z.record(z.string(), z.array(z.string())).optional(),
|
|
16259
16259
|
clientFunctionalityList: z.array(Functionality).optional(),
|
|
16260
|
-
clientPermissionMap: z.record(z.
|
|
16260
|
+
clientPermissionMap: z.record(z.string(), PartnerPermission).optional(),
|
|
16261
16261
|
description: z.string().optional(),
|
|
16262
16262
|
functionalityList: z.array(PartnerFunctionality).optional(),
|
|
16263
16263
|
mutable: z.boolean().optional(),
|
|
@@ -16318,7 +16318,7 @@ const Partner_CustomizeClientWSResponse = z.object({
|
|
|
16318
16318
|
const Partner_DeleteClientWebRequest = z.object({
|
|
16319
16319
|
clientOrgUuid: z.string().optional()
|
|
16320
16320
|
});
|
|
16321
|
-
const Partner_DeleteClientWebResponse = z.record(z.unknown());
|
|
16321
|
+
const Partner_DeleteClientWebResponse = z.record(z.string(), z.unknown());
|
|
16322
16322
|
const Partner_DeviceWithPartnerDetailsType = z.object({
|
|
16323
16323
|
device: DeviceTypeV2.optional(),
|
|
16324
16324
|
partnerControlledHardware: z.boolean().optional(),
|
|
@@ -16347,7 +16347,7 @@ const Partner_GetClientSummaryInfoWSRequest = z.object({
|
|
|
16347
16347
|
});
|
|
16348
16348
|
const Partner_GetClientSummaryInfoWSResponse = z.object({
|
|
16349
16349
|
accountOwner: WrappedRhombusOrgUserType.optional(),
|
|
16350
|
-
clientDeviceStatusMap: z.record(z.
|
|
16350
|
+
clientDeviceStatusMap: z.record(z.string(), Partner_ConnectionCountType).optional(),
|
|
16351
16351
|
error: z.boolean().optional(),
|
|
16352
16352
|
errorMsg: z.string().optional(),
|
|
16353
16353
|
licenseV2Enabled: z.boolean().optional(),
|
|
@@ -16356,11 +16356,11 @@ const Partner_GetClientSummaryInfoWSResponse = z.object({
|
|
|
16356
16356
|
recentPolicyAlertCount: z.number().int().optional(),
|
|
16357
16357
|
warningMsg: z.string().optional()
|
|
16358
16358
|
});
|
|
16359
|
-
const Partner_GetListOfAllClientDevicesRequest = z.record(z.unknown());
|
|
16359
|
+
const Partner_GetListOfAllClientDevicesRequest = z.record(z.string(), z.unknown());
|
|
16360
16360
|
const Partner_GetListOfAllClientDevicesResponse = z.object({
|
|
16361
16361
|
listOfAllClientDevices: z.array(DeviceTypeV2).optional()
|
|
16362
16362
|
});
|
|
16363
|
-
const Partner_GetListOfControlledHardwareRequest = z.record(z.unknown());
|
|
16363
|
+
const Partner_GetListOfControlledHardwareRequest = z.record(z.string(), z.unknown());
|
|
16364
16364
|
const Partner_UnregisteredControlledHardwareType = z.object({
|
|
16365
16365
|
deviceModel: HardwareVariationEnum.optional(),
|
|
16366
16366
|
deviceType: DeviceTypeEnum.optional(),
|
|
@@ -16377,14 +16377,14 @@ const Partner_GetPartnerClientMobileAccountAccessRequest = z.object({
|
|
|
16377
16377
|
const Partner_GetPartnerClientMobileAccountAccessResponse = z.object({
|
|
16378
16378
|
clientAccountAccessSessionId: z.string().optional()
|
|
16379
16379
|
});
|
|
16380
|
-
const Partner_GetPartnerClientsStatusMapWSRequest = z.record(z.unknown());
|
|
16380
|
+
const Partner_GetPartnerClientsStatusMapWSRequest = z.record(z.string(), z.unknown());
|
|
16381
16381
|
const Partner_GetPartnerClientsStatusMapWSResponse = z.object({
|
|
16382
|
-
clientDeviceStatusMap: z.record(z.
|
|
16382
|
+
clientDeviceStatusMap: z.record(z.string(), z.record(z.string(), Partner_ConnectionCountType)).optional(),
|
|
16383
16383
|
error: z.boolean().optional(),
|
|
16384
16384
|
errorMsg: z.string().optional(),
|
|
16385
16385
|
warningMsg: z.string().optional()
|
|
16386
16386
|
});
|
|
16387
|
-
const Partner_GetPartnerClientsWSRequest = z.record(z.unknown());
|
|
16387
|
+
const Partner_GetPartnerClientsWSRequest = z.record(z.string(), z.unknown());
|
|
16388
16388
|
const Partner_PartnerClientWebType = z.object({
|
|
16389
16389
|
authorityUuid: z.string().optional(),
|
|
16390
16390
|
clientAccessAllowed: z.boolean().optional(),
|
|
@@ -16407,7 +16407,7 @@ const Partner_GetPartnerClientsWSResponse = z.object({
|
|
|
16407
16407
|
errorMsg: z.string().optional(),
|
|
16408
16408
|
warningMsg: z.string().optional()
|
|
16409
16409
|
});
|
|
16410
|
-
const Partner_GetPartnerUsersInOrgWSRequest = z.record(z.unknown());
|
|
16410
|
+
const Partner_GetPartnerUsersInOrgWSRequest = z.record(z.string(), z.unknown());
|
|
16411
16411
|
const Partner_GetPartnerUsersInOrgWSResponse = z.object({
|
|
16412
16412
|
error: z.boolean().optional(),
|
|
16413
16413
|
errorMsg: z.string().optional(),
|
|
@@ -16443,10 +16443,10 @@ const Partner_ReassignDeviceOrgWSRequest = z.object({
|
|
|
16443
16443
|
targetOrgUuid: z.string()
|
|
16444
16444
|
});
|
|
16445
16445
|
const Partner_ReassignDeviceOrgWSResponse = z.object({
|
|
16446
|
-
statuses: z.record(z.
|
|
16446
|
+
statuses: z.record(z.string(), OperationStatus).optional()
|
|
16447
16447
|
});
|
|
16448
16448
|
const Partner_RegisterDealWSRequest = z.object({
|
|
16449
|
-
details: z.record(z.
|
|
16449
|
+
details: z.record(z.string(), z.string()).optional()
|
|
16450
16450
|
});
|
|
16451
16451
|
const Partner_RegisterDealWSResponse = z.object({
|
|
16452
16452
|
clients: z.array(Partner_PartnerClientWebType).optional(),
|
|
@@ -16586,15 +16586,15 @@ const Permission_DeletePermissionGroupWSResponse = z.object({
|
|
|
16586
16586
|
warningMsg: z.string().optional()
|
|
16587
16587
|
});
|
|
16588
16588
|
const Permission_GetPartnerPermissionGroupWSResponse = z.object({
|
|
16589
|
-
clientPermissionGroupMap: z.record(z.
|
|
16590
|
-
clientPermissionsGroupMap: z.record(z.
|
|
16589
|
+
clientPermissionGroupMap: z.record(z.string(), UserPermissionGroupType).optional(),
|
|
16590
|
+
clientPermissionsGroupMap: z.record(z.string(), UserPermissionGroupType).optional(),
|
|
16591
16591
|
error: z.boolean().optional(),
|
|
16592
16592
|
errorMsg: z.string().optional(),
|
|
16593
|
-
groupMembership: z.record(z.
|
|
16593
|
+
groupMembership: z.record(z.string(), z.array(z.string())).optional(),
|
|
16594
16594
|
permissionGroups: z.array(PartnerUserPermissionGroupType).optional(),
|
|
16595
16595
|
warningMsg: z.string().optional()
|
|
16596
16596
|
});
|
|
16597
|
-
const Permission_GetPartnerPermissionGroupsWSRequest = z.record(z.unknown());
|
|
16597
|
+
const Permission_GetPartnerPermissionGroupsWSRequest = z.record(z.string(), z.unknown());
|
|
16598
16598
|
const Permission_GetPermissionGroupsForOrgWSRequest = z.object({
|
|
16599
16599
|
orgUuid: z.string().optional()
|
|
16600
16600
|
});
|
|
@@ -16604,20 +16604,20 @@ const Permission_GetPermissionGroupsForOrgWSResponse = z.object({
|
|
|
16604
16604
|
permissionGroups: z.array(UserPermissionGroupType).optional(),
|
|
16605
16605
|
warningMsg: z.string().optional()
|
|
16606
16606
|
});
|
|
16607
|
-
const Permission_GetPermissionGroupsWSRequest = z.record(z.unknown());
|
|
16607
|
+
const Permission_GetPermissionGroupsWSRequest = z.record(z.string(), z.unknown());
|
|
16608
16608
|
const Permission_GetPermissionGroupsWSResponse = z.object({
|
|
16609
16609
|
error: z.boolean().optional(),
|
|
16610
16610
|
errorMsg: z.string().optional(),
|
|
16611
|
-
groupMembership: z.record(z.
|
|
16612
|
-
partnerMembership: z.record(z.
|
|
16611
|
+
groupMembership: z.record(z.string(), z.array(z.string())).optional(),
|
|
16612
|
+
partnerMembership: z.record(z.string(), z.array(z.string())).optional(),
|
|
16613
16613
|
permissionGroups: z.array(UserPermissionGroupType).optional(),
|
|
16614
16614
|
warningMsg: z.string().optional()
|
|
16615
16615
|
});
|
|
16616
|
-
const Permission_GetPermissionsForCurrentPartnerWSRequest = z.record(z.unknown());
|
|
16616
|
+
const Permission_GetPermissionsForCurrentPartnerWSRequest = z.record(z.string(), z.unknown());
|
|
16617
16617
|
const Permission_GetPermissionsForCurrentPartnerWSResponse = z.object({
|
|
16618
16618
|
assignablePermissionGroups: z.array(z.string()).optional(),
|
|
16619
16619
|
clientFunctionalityList: z.array(Functionality).optional(),
|
|
16620
|
-
clientPermissionMap: z.record(z.
|
|
16620
|
+
clientPermissionMap: z.record(z.string(), PartnerPermission).optional(),
|
|
16621
16621
|
error: z.boolean().optional(),
|
|
16622
16622
|
errorMsg: z.string().optional(),
|
|
16623
16623
|
functionalityList: z.array(PartnerFunctionality).optional(),
|
|
@@ -16625,18 +16625,18 @@ const Permission_GetPermissionsForCurrentPartnerWSResponse = z.object({
|
|
|
16625
16625
|
superAdmin: z.boolean().optional(),
|
|
16626
16626
|
warningMsg: z.string().optional()
|
|
16627
16627
|
});
|
|
16628
|
-
const Permission_GetPermissionsForCurrentUserWSRequest = z.record(z.unknown());
|
|
16628
|
+
const Permission_GetPermissionsForCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
16629
16629
|
const Permission_GetPermissionsForCurrentUserWSResponse = z.object({
|
|
16630
|
-
accessControlLocationAccessMap: z.record(z.
|
|
16631
|
-
accessMap: z.record(z.
|
|
16630
|
+
accessControlLocationAccessMap: z.record(z.string(), Permission).optional(),
|
|
16631
|
+
accessMap: z.record(z.string(), Permission).optional(),
|
|
16632
16632
|
assignablePermissionGroups: z.array(z.string()).optional(),
|
|
16633
|
-
deviceAccessMap: z.record(z.
|
|
16633
|
+
deviceAccessMap: z.record(z.string(), Permission).optional(),
|
|
16634
16634
|
error: z.boolean().optional(),
|
|
16635
16635
|
errorMsg: z.string().optional(),
|
|
16636
16636
|
functionalityList: z.array(Functionality).optional(),
|
|
16637
16637
|
installer: z.boolean().optional(),
|
|
16638
|
-
locationAccessMap: z.record(z.
|
|
16639
|
-
locationGranularAccessMap: z.record(z.
|
|
16638
|
+
locationAccessMap: z.record(z.string(), Permission).optional(),
|
|
16639
|
+
locationGranularAccessMap: z.record(z.string(), z.record(z.string(), Permission)).optional(),
|
|
16640
16640
|
permissionGroupName: z.string().optional(),
|
|
16641
16641
|
superAdmin: z.boolean().optional(),
|
|
16642
16642
|
warningMsg: z.string().optional()
|
|
@@ -16660,7 +16660,7 @@ const Permission_UpdatePermissionGroupWSResponse = z.object({
|
|
|
16660
16660
|
const PhysicalPortEnumType = z.string();
|
|
16661
16661
|
const PhysicalPortType = z.object({
|
|
16662
16662
|
boardNum: z.number().int().optional(),
|
|
16663
|
-
componentPortTypeUsageMap: z.record(z.
|
|
16663
|
+
componentPortTypeUsageMap: z.record(z.string(), z.array(z.string())).optional(),
|
|
16664
16664
|
label: z.string().optional(),
|
|
16665
16665
|
portNum: z.number().int().optional(),
|
|
16666
16666
|
supportedPortTypes: z.array(PhysicalPortEnumType).optional()
|
|
@@ -16738,7 +16738,7 @@ const Policy_MinimalClimateScheduledTriggerType = z.object({
|
|
|
16738
16738
|
triggerSet: z.array(ClimateTriggerType).optional()
|
|
16739
16739
|
});
|
|
16740
16740
|
const Policy_MinimalClimatePolicyType = z.object({
|
|
16741
|
-
backoffAlertSecs: z.record(z.
|
|
16741
|
+
backoffAlertSecs: z.record(z.string(), z.number().int()).optional(),
|
|
16742
16742
|
description: z.string().optional(),
|
|
16743
16743
|
name: z.string().optional(),
|
|
16744
16744
|
orgUuid: z.string().optional(),
|
|
@@ -17004,49 +17004,49 @@ const Policy_ExternalVideoIntercomPolicyType = z.object({
|
|
|
17004
17004
|
scheduledTriggers: z.array(Policy_ExternalVideoIntercomScheduledTriggerType).optional(),
|
|
17005
17005
|
uuid: z.string().optional()
|
|
17006
17006
|
});
|
|
17007
|
-
const Policy_FindSchedulesWSRequest = z.record(z.unknown());
|
|
17007
|
+
const Policy_FindSchedulesWSRequest = z.record(z.string(), z.unknown());
|
|
17008
17008
|
const Policy_FindSchedulesWSResponse = z.object({
|
|
17009
17009
|
error: z.boolean().optional(),
|
|
17010
17010
|
errorMsg: z.string().optional(),
|
|
17011
17011
|
schedules: z.array(WeeklyRepeatingScheduleType).optional(),
|
|
17012
17012
|
warningMsg: z.string().optional()
|
|
17013
17013
|
});
|
|
17014
|
-
const Policy_GetAccessControlledDoorPoliciesWSRequest = z.record(z.unknown());
|
|
17014
|
+
const Policy_GetAccessControlledDoorPoliciesWSRequest = z.record(z.string(), z.unknown());
|
|
17015
17015
|
const Policy_GetAccessControlledDoorPoliciesWSResponse = z.object({
|
|
17016
17016
|
error: z.boolean().optional(),
|
|
17017
17017
|
errorMsg: z.string().optional(),
|
|
17018
17018
|
policies: z.array(AccessControlledDoorPolicyType).optional(),
|
|
17019
17019
|
warningMsg: z.string().optional()
|
|
17020
17020
|
});
|
|
17021
|
-
const Policy_GetAudioPoliciesWSRequest = z.record(z.unknown());
|
|
17021
|
+
const Policy_GetAudioPoliciesWSRequest = z.record(z.string(), z.unknown());
|
|
17022
17022
|
const Policy_GetAudioPoliciesWSResponse = z.object({
|
|
17023
17023
|
error: z.boolean().optional(),
|
|
17024
17024
|
errorMsg: z.string().optional(),
|
|
17025
17025
|
policies: z.array(Policy_ExternalAudioPolicyType).optional(),
|
|
17026
17026
|
warningMsg: z.string().optional()
|
|
17027
17027
|
});
|
|
17028
|
-
const Policy_GetCameraPoliciesWSRequest = z.record(z.unknown());
|
|
17028
|
+
const Policy_GetCameraPoliciesWSRequest = z.record(z.string(), z.unknown());
|
|
17029
17029
|
const Policy_GetCameraPoliciesWSResponse = z.object({
|
|
17030
17030
|
error: z.boolean().optional(),
|
|
17031
17031
|
errorMsg: z.string().optional(),
|
|
17032
17032
|
policies: z.array(CameraPolicyV2Type).optional(),
|
|
17033
17033
|
warningMsg: z.string().optional()
|
|
17034
17034
|
});
|
|
17035
|
-
const Policy_GetClimatePoliciesWSRequest = z.record(z.unknown());
|
|
17035
|
+
const Policy_GetClimatePoliciesWSRequest = z.record(z.string(), z.unknown());
|
|
17036
17036
|
const Policy_GetClimatePoliciesWSResponse = z.object({
|
|
17037
17037
|
error: z.boolean().optional(),
|
|
17038
17038
|
errorMsg: z.string().optional(),
|
|
17039
17039
|
policies: z.array(ClimatePolicyType).optional(),
|
|
17040
17040
|
warningMsg: z.string().optional()
|
|
17041
17041
|
});
|
|
17042
|
-
const Policy_GetDoorPoliciesWSRequest = z.record(z.unknown());
|
|
17042
|
+
const Policy_GetDoorPoliciesWSRequest = z.record(z.string(), z.unknown());
|
|
17043
17043
|
const Policy_GetDoorPoliciesWSResponse = z.object({
|
|
17044
17044
|
error: z.boolean().optional(),
|
|
17045
17045
|
errorMsg: z.string().optional(),
|
|
17046
17046
|
policies: z.array(DoorPolicyType).optional(),
|
|
17047
17047
|
warningMsg: z.string().optional()
|
|
17048
17048
|
});
|
|
17049
|
-
const Policy_GetOccupancyPoliciesWSRequest = z.record(z.unknown());
|
|
17049
|
+
const Policy_GetOccupancyPoliciesWSRequest = z.record(z.string(), z.unknown());
|
|
17050
17050
|
const Policy_GetOccupancyPoliciesWSResponse = z.object({
|
|
17051
17051
|
error: z.boolean().optional(),
|
|
17052
17052
|
errorMsg: z.string().optional(),
|
|
@@ -17058,8 +17058,8 @@ const Policy_GetPoliciesUsingScheduleWSRequest = z.object({
|
|
|
17058
17058
|
});
|
|
17059
17059
|
const ProximityScheduledTriggerType = z.object({
|
|
17060
17060
|
departureThresholdSec: z.number().int().optional(),
|
|
17061
|
-
egressThresholdMetersMap: z.record(z.
|
|
17062
|
-
ingressThresholdMetersMap: z.record(z.
|
|
17061
|
+
egressThresholdMetersMap: z.record(z.string(), z.number()).optional(),
|
|
17062
|
+
ingressThresholdMetersMap: z.record(z.string(), z.number()).optional(),
|
|
17063
17063
|
schedule: WeeklyRepeatingScheduleType.optional(),
|
|
17064
17064
|
triggerSet: z.array(ProximityTriggerType).optional()
|
|
17065
17065
|
});
|
|
@@ -17067,8 +17067,8 @@ const ProximityPolicyType = z.object({
|
|
|
17067
17067
|
defaultDepartureThresholdSec: z.number().int().optional(),
|
|
17068
17068
|
defaultTriggers: z.array(ProximityTriggerType).optional(),
|
|
17069
17069
|
description: z.string().optional(),
|
|
17070
|
-
egressThresholdMetersMap: z.record(z.
|
|
17071
|
-
ingressThresholdMetersMap: z.record(z.
|
|
17070
|
+
egressThresholdMetersMap: z.record(z.string(), z.number()).optional(),
|
|
17071
|
+
ingressThresholdMetersMap: z.record(z.string(), z.number()).optional(),
|
|
17072
17072
|
name: z.string().optional(),
|
|
17073
17073
|
orgUuid: z.string().optional(),
|
|
17074
17074
|
scheduledTriggers: z.array(ProximityScheduledTriggerType).optional(),
|
|
@@ -17109,31 +17109,31 @@ const Policy_GetPoliciesUsingScheduleWSResponse = z.object({
|
|
|
17109
17109
|
videoIntercomPolicyList: z.array(VideoIntercomPolicyType).optional(),
|
|
17110
17110
|
warningMsg: z.string().optional()
|
|
17111
17111
|
});
|
|
17112
|
-
const Policy_GetPolicyAddendumsWSRequest = z.record(z.unknown());
|
|
17112
|
+
const Policy_GetPolicyAddendumsWSRequest = z.record(z.string(), z.unknown());
|
|
17113
17113
|
const Policy_GetPolicyAddendumsWSResponse = z.object({
|
|
17114
|
-
deviceAddendumsMap: z.record(z.
|
|
17114
|
+
deviceAddendumsMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
17115
17115
|
error: z.boolean().optional(),
|
|
17116
17116
|
errorMsg: z.string().optional(),
|
|
17117
|
-
locationAddendumsMap: z.record(z.
|
|
17117
|
+
locationAddendumsMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
17118
17118
|
warningMsg: z.string().optional()
|
|
17119
17119
|
});
|
|
17120
|
-
const Policy_GetPolicyPauseSettingsWSRequest = z.record(z.unknown());
|
|
17120
|
+
const Policy_GetPolicyPauseSettingsWSRequest = z.record(z.string(), z.unknown());
|
|
17121
17121
|
const Policy_GetPolicyPauseSettingsWSResponse = z.object({
|
|
17122
17122
|
error: z.boolean().optional(),
|
|
17123
17123
|
errorMsg: z.string().optional(),
|
|
17124
|
-
policiesPausedForComponentCompositesMap: z.record(z.
|
|
17125
|
-
policiesPausedForDevicesMap: z.record(z.
|
|
17126
|
-
policiesPausedForLocationsMap: z.record(z.
|
|
17124
|
+
policiesPausedForComponentCompositesMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
17125
|
+
policiesPausedForDevicesMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
17126
|
+
policiesPausedForLocationsMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
17127
17127
|
warningMsg: z.string().optional()
|
|
17128
17128
|
});
|
|
17129
|
-
const Policy_GetProximityPoliciesWSRequest = z.record(z.unknown());
|
|
17129
|
+
const Policy_GetProximityPoliciesWSRequest = z.record(z.string(), z.unknown());
|
|
17130
17130
|
const Policy_GetProximityPoliciesWSResponse = z.object({
|
|
17131
17131
|
error: z.boolean().optional(),
|
|
17132
17132
|
errorMsg: z.string().optional(),
|
|
17133
17133
|
policies: z.array(ProximityPolicyType).optional(),
|
|
17134
17134
|
warningMsg: z.string().optional()
|
|
17135
17135
|
});
|
|
17136
|
-
const Policy_GetVideoIntercomPoliciesWSRequest = z.record(z.unknown());
|
|
17136
|
+
const Policy_GetVideoIntercomPoliciesWSRequest = z.record(z.string(), z.unknown());
|
|
17137
17137
|
const Policy_GetVideoIntercomPoliciesWSResponse = z.object({
|
|
17138
17138
|
error: z.boolean().optional(),
|
|
17139
17139
|
errorMsg: z.string().optional(),
|
|
@@ -17297,7 +17297,7 @@ const Proximity_GetLocomotionEventsForTagWSResponse = z.object({
|
|
|
17297
17297
|
locomotionEvents: z.array(ProximityTagLocomotionEventType).optional(),
|
|
17298
17298
|
warningMsg: z.string().optional()
|
|
17299
17299
|
});
|
|
17300
|
-
const Proximity_GetMinimalProximityStatesWSRequest = z.record(z.unknown());
|
|
17300
|
+
const Proximity_GetMinimalProximityStatesWSRequest = z.record(z.string(), z.unknown());
|
|
17301
17301
|
const Proximity_ProximityHealthEnum = z.string();
|
|
17302
17302
|
const Proximity_ProximityHealthDetailsEnum = z.string();
|
|
17303
17303
|
const Proximity_MinimalProximityStateType = z.object({
|
|
@@ -17423,7 +17423,7 @@ const Relay_CreateThirdPartyCameraPasswordWSResponse = z.object({
|
|
|
17423
17423
|
const Relay_DeleteThirdPartyCameraDiscoveryWSRequest = z.object({
|
|
17424
17424
|
thirdPartyCameraMacAddress: z.string().optional()
|
|
17425
17425
|
});
|
|
17426
|
-
const Relay_DeleteThirdPartyCameraDiscoveryWSResponse = z.record(z.unknown());
|
|
17426
|
+
const Relay_DeleteThirdPartyCameraDiscoveryWSResponse = z.record(z.string(), z.unknown());
|
|
17427
17427
|
const Relay_DeleteThirdPartyCameraPasswordWSRequest = z.object({
|
|
17428
17428
|
passwordUuid: z.string().optional()
|
|
17429
17429
|
});
|
|
@@ -17466,7 +17466,7 @@ const Relay_FindDefaultRtspUrlsByManufacturerWSResponse = z.object({
|
|
|
17466
17466
|
defaultPaths: z.array(z.string()).optional(),
|
|
17467
17467
|
defaultUrls: z.array(z.string()).optional()
|
|
17468
17468
|
});
|
|
17469
|
-
const Relay_FindDiscoveriesWithUnassignedRtspEndpointsWSRequest = z.record(z.unknown());
|
|
17469
|
+
const Relay_FindDiscoveriesWithUnassignedRtspEndpointsWSRequest = z.record(z.string(), z.unknown());
|
|
17470
17470
|
const Relay_FindDiscoveriesWithUnassignedRtspEndpointsWSResponse = z.object({
|
|
17471
17471
|
discoveries: z.array(Relay_DiscoveryWithUnassignedRtspEndpoints).optional()
|
|
17472
17472
|
});
|
|
@@ -17493,14 +17493,14 @@ const Relay_GetImportThirdPartyCamerasFormatWSResponse = z.object({
|
|
|
17493
17493
|
example: z.string().optional(),
|
|
17494
17494
|
explanation: z.string().optional()
|
|
17495
17495
|
});
|
|
17496
|
-
const Relay_GetMinimalNVRStateListWSRequest = z.record(z.unknown());
|
|
17496
|
+
const Relay_GetMinimalNVRStateListWSRequest = z.record(z.string(), z.unknown());
|
|
17497
17497
|
const Relay_GetMinimalNVRStateListWSResponse = z.object({
|
|
17498
17498
|
error: z.boolean().optional(),
|
|
17499
17499
|
errorMsg: z.string().optional(),
|
|
17500
17500
|
nvrstates: z.array(MinimalNVRStateType).optional(),
|
|
17501
17501
|
warningMsg: z.string().optional()
|
|
17502
17502
|
});
|
|
17503
|
-
const Relay_GetMinimalThirdPartyCameraStateListWSRequest = z.record(z.unknown());
|
|
17503
|
+
const Relay_GetMinimalThirdPartyCameraStateListWSRequest = z.record(z.string(), z.unknown());
|
|
17504
17504
|
const Relay_MinimalThirdPartyCameraStateType = z.object({
|
|
17505
17505
|
assignedNVRUuid: z.string().optional(),
|
|
17506
17506
|
assignedRelayCameraUuid: z.string().optional(),
|
|
@@ -17512,7 +17512,7 @@ const Relay_MinimalThirdPartyCameraStateType = z.object({
|
|
|
17512
17512
|
directionRadians: z.number().optional(),
|
|
17513
17513
|
discoveredByDeviceUuid: z.string().optional(),
|
|
17514
17514
|
externalIPAddress: z.string().optional(),
|
|
17515
|
-
facetNameMap: z.record(z.
|
|
17515
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
17516
17516
|
firmwareUpdateInProgress: z.boolean().optional(),
|
|
17517
17517
|
firmwareVersion: z.string().optional(),
|
|
17518
17518
|
floorNumber: z.number().int().optional(),
|
|
@@ -17521,8 +17521,8 @@ const Relay_MinimalThirdPartyCameraStateType = z.object({
|
|
|
17521
17521
|
hwVariation: HardwareVariationEnum.optional(),
|
|
17522
17522
|
lanAddresses: z.array(z.string()).optional(),
|
|
17523
17523
|
lastRtspUrlStatus: z.string().optional(),
|
|
17524
|
-
lastVisibleLocationMs: z.record(z.
|
|
17525
|
-
lastVisibleMs: z.record(z.
|
|
17524
|
+
lastVisibleLocationMs: z.record(z.string(), z.number().int()).optional(),
|
|
17525
|
+
lastVisibleMs: z.record(z.string(), z.number().int()).optional(),
|
|
17526
17526
|
latitude: z.number().optional(),
|
|
17527
17527
|
liveStreamShared: z.boolean().optional(),
|
|
17528
17528
|
liveStreamsSharedCount: z.number().int().optional(),
|
|
@@ -17563,9 +17563,9 @@ const Relay_NVRExternalType = z.object({
|
|
|
17563
17563
|
customData: z.string().optional(),
|
|
17564
17564
|
deleted: z.boolean().optional(),
|
|
17565
17565
|
description: z.string().optional(),
|
|
17566
|
-
deviceFacetRadians: z.record(z.
|
|
17566
|
+
deviceFacetRadians: z.record(z.string(), z.number()).optional(),
|
|
17567
17567
|
directionRadians: z.number().optional(),
|
|
17568
|
-
facetNameMap: z.record(z.
|
|
17568
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
17569
17569
|
floorNumber: z.number().int().optional(),
|
|
17570
17570
|
hwVariation: HardwareVariationEnum.optional(),
|
|
17571
17571
|
latitude: z.number().optional(),
|
|
@@ -17596,7 +17596,7 @@ const Relay_GetRtspEndpointsWSRequest = z.object({
|
|
|
17596
17596
|
const Relay_GetRtspEndpointsWSResponse = z.object({
|
|
17597
17597
|
rtspEndpoints: z.array(Relay_ExternalRtspEndpoint).optional()
|
|
17598
17598
|
});
|
|
17599
|
-
const Relay_GetThirdPartyCameraPasswordsWSRequest = z.record(z.unknown());
|
|
17599
|
+
const Relay_GetThirdPartyCameraPasswordsWSRequest = z.record(z.string(), z.unknown());
|
|
17600
17600
|
const ThirdPartyCameraPasswordType = z.object({
|
|
17601
17601
|
notes: z.string().optional(),
|
|
17602
17602
|
orgUuid: z.string().optional(),
|
|
@@ -17703,7 +17703,7 @@ const Relay_UpdateNVRVWSRequest = z.object({
|
|
|
17703
17703
|
descriptionUpdated: z.boolean().optional(),
|
|
17704
17704
|
directionRadians: z.number().optional(),
|
|
17705
17705
|
directionRadiansUpdated: z.boolean().optional(),
|
|
17706
|
-
facetNameMap: z.record(z.
|
|
17706
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
17707
17707
|
facetNameMapUpdated: z.boolean().optional(),
|
|
17708
17708
|
floorNumber: z.number().int().optional(),
|
|
17709
17709
|
floorNumberUpdated: z.boolean().optional(),
|
|
@@ -17812,7 +17812,7 @@ const Report_GetAverageReportWSResponse = z.object({
|
|
|
17812
17812
|
average: z.number().optional(),
|
|
17813
17813
|
error: z.boolean().optional(),
|
|
17814
17814
|
errorMsg: z.string().optional(),
|
|
17815
|
-
groupAverageMap: z.record(z.
|
|
17815
|
+
groupAverageMap: z.record(z.string(), z.number()).optional(),
|
|
17816
17816
|
warningMsg: z.string().optional()
|
|
17817
17817
|
});
|
|
17818
17818
|
const Report_GetAverageReportsWSRequest = z.object({
|
|
@@ -17823,10 +17823,10 @@ const Report_GetAverageReportsWSRequest = z.object({
|
|
|
17823
17823
|
type: z.string().optional()
|
|
17824
17824
|
});
|
|
17825
17825
|
const Report_GetAverageReportsWSResponse = z.object({
|
|
17826
|
-
averageMap: z.record(z.
|
|
17826
|
+
averageMap: z.record(z.string(), z.number()).optional(),
|
|
17827
17827
|
error: z.boolean().optional(),
|
|
17828
17828
|
errorMsg: z.string().optional(),
|
|
17829
|
-
groupAverageMap: z.record(z.
|
|
17829
|
+
groupAverageMap: z.record(z.string(), z.record(z.string(), z.number())).optional(),
|
|
17830
17830
|
warningMsg: z.string().optional()
|
|
17831
17831
|
});
|
|
17832
17832
|
const Report_GetBatchThresholdCrossingCountReportWSRequest = z.object({
|
|
@@ -17860,7 +17860,7 @@ const Report_GetCountReportWSRequest = z.object({
|
|
|
17860
17860
|
const TimeSeriesDataPointV2Type = z.object({
|
|
17861
17861
|
dateLocal: z.string().optional(),
|
|
17862
17862
|
dateUtc: z.string().optional(),
|
|
17863
|
-
eventCountMap: z.record(z.
|
|
17863
|
+
eventCountMap: z.record(z.string(), z.number().int()).optional()
|
|
17864
17864
|
});
|
|
17865
17865
|
const Report_GetCountReportWSResponse = z.object({
|
|
17866
17866
|
error: z.boolean().optional(),
|
|
@@ -17888,13 +17888,13 @@ const Report_GetCountReportsWSRequest = z.object({
|
|
|
17888
17888
|
const Report_GetCountReportsWSResponse = z.object({
|
|
17889
17889
|
error: z.boolean().optional(),
|
|
17890
17890
|
errorMsg: z.string().optional(),
|
|
17891
|
-
timeSeriesDataPointsMap: z.record(z.
|
|
17891
|
+
timeSeriesDataPointsMap: z.record(z.string(), z.array(TimeSeriesDataPointV2Type)).optional(),
|
|
17892
17892
|
warningMsg: z.string().optional()
|
|
17893
17893
|
});
|
|
17894
17894
|
const Report_GetCustomLLMNumericWSResponse = z.object({
|
|
17895
17895
|
error: z.boolean().optional(),
|
|
17896
17896
|
errorMsg: z.string().optional(),
|
|
17897
|
-
reports: z.record(z.
|
|
17897
|
+
reports: z.record(z.string(), z.array(NumericAggregationValue)).optional(),
|
|
17898
17898
|
warningMsg: z.string().optional()
|
|
17899
17899
|
});
|
|
17900
17900
|
const Report_GetCustomLLMReportWSRequest = z.object({
|
|
@@ -17927,7 +17927,7 @@ const Report_GetCustomLLMReportWSResponse = z.object({
|
|
|
17927
17927
|
const Report_GetCustomLLMWBinaryWSResponse = z.object({
|
|
17928
17928
|
error: z.boolean().optional(),
|
|
17929
17929
|
errorMsg: z.string().optional(),
|
|
17930
|
-
reports: z.record(z.
|
|
17930
|
+
reports: z.record(z.string(), z.array(BinaryAggregationValue)).optional(),
|
|
17931
17931
|
warningMsg: z.string().optional()
|
|
17932
17932
|
});
|
|
17933
17933
|
const Report_GetCustomLLMWSRequest = z.object({
|
|
@@ -18001,10 +18001,10 @@ const Report_GetOccupancyCountsWSRequest = z.object({
|
|
|
18001
18001
|
startTimeMs: z.number().int().optional()
|
|
18002
18002
|
});
|
|
18003
18003
|
const Report_TimeSeriesDataPointV2ExtendedType = z.object({
|
|
18004
|
-
approximateTimestampMsMap: z.record(z.
|
|
18004
|
+
approximateTimestampMsMap: z.record(z.string(), z.number().int()).optional(),
|
|
18005
18005
|
dateLocal: z.string().optional(),
|
|
18006
18006
|
dateUtc: z.string().optional(),
|
|
18007
|
-
eventCountMap: z.record(z.
|
|
18007
|
+
eventCountMap: z.record(z.string(), z.number().int()).optional(),
|
|
18008
18008
|
timestampMs: z.number().int().optional()
|
|
18009
18009
|
});
|
|
18010
18010
|
const Report_GetOccupancyCountsWSResponse = z.object({
|
|
@@ -18038,7 +18038,7 @@ const Report_GetRunningAverageWSRequest = z.object({
|
|
|
18038
18038
|
});
|
|
18039
18039
|
const WeeklyStatisticsDataPoint = z.object({
|
|
18040
18040
|
date: z.string().optional(),
|
|
18041
|
-
stats: z.record(z.
|
|
18041
|
+
stats: z.record(z.string(), z.lazy(() => Stats)).optional()
|
|
18042
18042
|
});
|
|
18043
18043
|
const Report_GetRunningAverageWSResponse = z.object({
|
|
18044
18044
|
error: z.boolean().optional(),
|
|
@@ -18057,11 +18057,11 @@ const Report_GetSummaryCountReportWSRequest = z.object({
|
|
|
18057
18057
|
type: z.string()
|
|
18058
18058
|
});
|
|
18059
18059
|
const SummaryCountTimeSeriesDataPointType = z.object({
|
|
18060
|
-
avgEventCountMap: z.record(z.
|
|
18060
|
+
avgEventCountMap: z.record(z.string(), EventCount).optional(),
|
|
18061
18061
|
dateLocal: z.string().optional(),
|
|
18062
18062
|
dateUtc: z.string().optional(),
|
|
18063
|
-
maxEventCountMap: z.record(z.
|
|
18064
|
-
minEventCountMap: z.record(z.
|
|
18063
|
+
maxEventCountMap: z.record(z.string(), EventCount).optional(),
|
|
18064
|
+
minEventCountMap: z.record(z.string(), EventCount).optional()
|
|
18065
18065
|
});
|
|
18066
18066
|
const Report_GetSummaryCountReportWSResponse = z.object({
|
|
18067
18067
|
error: z.boolean().optional(),
|
|
@@ -18131,7 +18131,7 @@ const Report_GetThresholdCrossingEventsWSRequest = z.object({
|
|
|
18131
18131
|
startTimeMs: z.number().int().optional()
|
|
18132
18132
|
});
|
|
18133
18133
|
const Report_GetThresholdCrossingEventsWSResponse = z.object({
|
|
18134
|
-
deviceToThresholdCrossingEventMap: z.record(z.
|
|
18134
|
+
deviceToThresholdCrossingEventMap: z.record(z.string(), z.array(MinimalThresholdEventType)).optional(),
|
|
18135
18135
|
error: z.boolean().optional(),
|
|
18136
18136
|
errorMsg: z.string().optional(),
|
|
18137
18137
|
warningMsg: z.string().optional()
|
|
@@ -18153,9 +18153,9 @@ const StatusType = z.object({
|
|
|
18153
18153
|
const Response = z.object({
|
|
18154
18154
|
allowedMethods: z.array(z.string()).optional(),
|
|
18155
18155
|
closed: z.boolean().optional(),
|
|
18156
|
-
cookies: z.record(z.
|
|
18156
|
+
cookies: z.record(z.string(), NewCookie).optional(),
|
|
18157
18157
|
date: z.string().datetime({ offset: true }).optional(),
|
|
18158
|
-
entity: z.record(z.unknown()).optional(),
|
|
18158
|
+
entity: z.record(z.string(), z.unknown()).optional(),
|
|
18159
18159
|
entityTag: EntityTag.optional(),
|
|
18160
18160
|
headers: z.object({
|
|
18161
18161
|
empty: z.boolean().optional()
|
|
@@ -18191,7 +18191,7 @@ const Response = z.object({
|
|
|
18191
18191
|
}).optional()
|
|
18192
18192
|
});
|
|
18193
18193
|
const ResponseEntity = z.object({
|
|
18194
|
-
body: z.record(z.unknown()).optional(),
|
|
18194
|
+
body: z.record(z.string(), z.unknown()).optional(),
|
|
18195
18195
|
headers: z.object({
|
|
18196
18196
|
accept: z.array(MediaType).optional(),
|
|
18197
18197
|
acceptCharset: z.array(z.object({
|
|
@@ -18226,7 +18226,7 @@ const ResponseEntity = z.object({
|
|
|
18226
18226
|
accessControlMaxAge: z.number().int().optional(),
|
|
18227
18227
|
accessControlRequestHeaders: z.array(z.string()).optional(),
|
|
18228
18228
|
accessControlRequestMethod: HttpMethod.optional(),
|
|
18229
|
-
all: z.record(z.
|
|
18229
|
+
all: z.record(z.string(), z.string()).optional(),
|
|
18230
18230
|
allow: z.array(HttpMethod).optional(),
|
|
18231
18231
|
basicAuth: z.string().optional(),
|
|
18232
18232
|
bearerAuth: z.string().optional(),
|
|
@@ -18328,7 +18328,7 @@ const ResponseEntityString = z.object({
|
|
|
18328
18328
|
accessControlMaxAge: z.number().int().optional(),
|
|
18329
18329
|
accessControlRequestHeaders: z.array(z.string()).optional(),
|
|
18330
18330
|
accessControlRequestMethod: HttpMethod.optional(),
|
|
18331
|
-
all: z.record(z.
|
|
18331
|
+
all: z.record(z.string(), z.string()).optional(),
|
|
18332
18332
|
allow: z.array(HttpMethod).optional(),
|
|
18333
18333
|
basicAuth: z.string().optional(),
|
|
18334
18334
|
bearerAuth: z.string().optional(),
|
|
@@ -18403,7 +18403,7 @@ const RhombusOrgUserType = z.object({
|
|
|
18403
18403
|
firstName: z.string().optional(),
|
|
18404
18404
|
lastName: z.string().optional(),
|
|
18405
18405
|
name: z.string().optional(),
|
|
18406
|
-
orgUserCustomizationFlags: z.record(z.
|
|
18406
|
+
orgUserCustomizationFlags: z.record(z.string(), z.string()).optional(),
|
|
18407
18407
|
orgUuid: z.string().optional(),
|
|
18408
18408
|
rhombusUserUuid: z.string().optional(),
|
|
18409
18409
|
status: z.string().optional(),
|
|
@@ -18422,7 +18422,7 @@ const Robot_DeployRobotWSRequest = z.object({
|
|
|
18422
18422
|
destination: Point.optional(),
|
|
18423
18423
|
deviceUuid: z.string().optional()
|
|
18424
18424
|
});
|
|
18425
|
-
const Robot_DeployRobotWSResponse = z.record(z.unknown());
|
|
18425
|
+
const Robot_DeployRobotWSResponse = z.record(z.string(), z.unknown());
|
|
18426
18426
|
const Robot_GetRobotConfigWSResponse = z.object({
|
|
18427
18427
|
config: Device_config_userconfig_ExternalReadableFacetedUserConfig.optional()
|
|
18428
18428
|
});
|
|
@@ -18439,7 +18439,7 @@ const Robot_RobotFullDeviceStateType = z.object({
|
|
|
18439
18439
|
defaultInterfaceMac: z.string().optional(),
|
|
18440
18440
|
directionRadians: z.number().optional(),
|
|
18441
18441
|
externalIPAddress: z.string().optional(),
|
|
18442
|
-
facetNameMap: z.record(z.
|
|
18442
|
+
facetNameMap: z.record(z.string(), z.string()).optional(),
|
|
18443
18443
|
firmwareUpdateInProgress: z.boolean().optional(),
|
|
18444
18444
|
firmwareVersion: z.string().optional(),
|
|
18445
18445
|
floorNumber: z.number().int().optional(),
|
|
@@ -18460,8 +18460,8 @@ const Robot_RobotFullDeviceStateType = z.object({
|
|
|
18460
18460
|
mode: z.string().optional(),
|
|
18461
18461
|
mummified: z.boolean().optional(),
|
|
18462
18462
|
name: z.string().optional(),
|
|
18463
|
-
onCameraState: z.record(z.unknown()).optional(),
|
|
18464
|
-
onCloudState: z.record(z.unknown()).optional(),
|
|
18463
|
+
onCameraState: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
18464
|
+
onCloudState: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
18465
18465
|
orientation: Quaternion.optional(),
|
|
18466
18466
|
policyUuid: z.string().optional(),
|
|
18467
18467
|
position: Point.optional(),
|
|
@@ -18568,7 +18568,7 @@ const RulesEventRecordType = z.object({
|
|
|
18568
18568
|
cancelLoopingAudioPlaybackActionRecordType: CancelLoopingAudioPlaybackActionRecordType.optional(),
|
|
18569
18569
|
deviceEventRecords: z.array(DeviceEventRecordType).optional(),
|
|
18570
18570
|
enableDisableAudioRecordActionRecords: z.array(EnableDisableAudioRecordActionRecordType).optional(),
|
|
18571
|
-
integrationActionStatuses: z.record(z.
|
|
18571
|
+
integrationActionStatuses: z.record(z.string(), IntegrationActionStatusEnum).optional(),
|
|
18572
18572
|
liveNotificationActionRecord: LiveNotificationActionRecordType.optional(),
|
|
18573
18573
|
orgUuid: z.string().optional(),
|
|
18574
18574
|
ruleUuid: z.string().optional(),
|
|
@@ -18578,7 +18578,7 @@ const RulesEventRecordType = z.object({
|
|
|
18578
18578
|
unlockDoorActionRecords: z.array(UnlockDoorActionRecordType).optional(),
|
|
18579
18579
|
uuid: z.string().optional(),
|
|
18580
18580
|
visionLLMEventRecords: z.array(VisionLLMEventRecordType).optional(),
|
|
18581
|
-
webhookActionStatuses: z.record(z.
|
|
18581
|
+
webhookActionStatuses: z.record(z.string(), z.boolean()).optional()
|
|
18582
18582
|
});
|
|
18583
18583
|
const Rules_CreateRuleWSRequest = z.object({
|
|
18584
18584
|
rule: RuleType.optional()
|
|
@@ -18608,11 +18608,11 @@ const Rules_DeleteRuleWSResponse = z.object({
|
|
|
18608
18608
|
const Rules_GetRulePauseSettingsResponse = z.object({
|
|
18609
18609
|
error: z.boolean().optional(),
|
|
18610
18610
|
errorMsg: z.string().optional(),
|
|
18611
|
-
rulesPausedMap: z.record(z.
|
|
18611
|
+
rulesPausedMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
18612
18612
|
warningMsg: z.string().optional()
|
|
18613
18613
|
});
|
|
18614
|
-
const Rules_GetRulePauseSettingsWSRequest = z.record(z.unknown());
|
|
18615
|
-
const Rules_GetRulesForOrgWSRequest = z.record(z.unknown());
|
|
18614
|
+
const Rules_GetRulePauseSettingsWSRequest = z.record(z.string(), z.unknown());
|
|
18615
|
+
const Rules_GetRulesForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
18616
18616
|
const Rules_GetRulesForOrgWSResponse = z.object({
|
|
18617
18617
|
error: z.boolean().optional(),
|
|
18618
18618
|
errorMsg: z.string().optional(),
|
|
@@ -18640,7 +18640,7 @@ const Rules_UpdateRuleWSResponse = z.object({
|
|
|
18640
18640
|
const Rules_records_DeleteRulesEventRecordWSRequest = z.object({
|
|
18641
18641
|
uuid: z.string().optional()
|
|
18642
18642
|
});
|
|
18643
|
-
const Rules_records_DeleteRulesEventRecordWSResponse = z.record(z.unknown());
|
|
18643
|
+
const Rules_records_DeleteRulesEventRecordWSResponse = z.record(z.string(), z.unknown());
|
|
18644
18644
|
const Rules_records_GetLatestRulesEventRecordsWSRequest = z.object({
|
|
18645
18645
|
associatedUuids: z.array(z.string()).optional(),
|
|
18646
18646
|
n: z.number().int().optional(),
|
|
@@ -18693,7 +18693,7 @@ const Scenequery_DeletePromptConfigurationWSResponse = z.object({
|
|
|
18693
18693
|
errorMsg: z.string().optional(),
|
|
18694
18694
|
warningMsg: z.string().optional()
|
|
18695
18695
|
});
|
|
18696
|
-
const Scenequery_FindAllPromptConfigurationsWSRequest = z.record(z.unknown());
|
|
18696
|
+
const Scenequery_FindAllPromptConfigurationsWSRequest = z.record(z.string(), z.unknown());
|
|
18697
18697
|
const Scenequery_FindAllPromptConfigurationsWSResponse = z.object({
|
|
18698
18698
|
error: z.boolean().optional(),
|
|
18699
18699
|
errorMsg: z.string().optional(),
|
|
@@ -18854,7 +18854,7 @@ const Schedule_GetScheduleDataWSResponse = z.object({
|
|
|
18854
18854
|
warningMsg: z.string().optional(),
|
|
18855
18855
|
weeklyScheduleData: z.array(Schedule_WeeklyRepeatingScheduleDataType).optional()
|
|
18856
18856
|
});
|
|
18857
|
-
const Schedule_GetSchedulesWSRequest = z.record(z.unknown());
|
|
18857
|
+
const Schedule_GetSchedulesWSRequest = z.record(z.string(), z.unknown());
|
|
18858
18858
|
const Schedule_GetSchedulesWSResponse = z.object({
|
|
18859
18859
|
absoluteSchedules: z.array(AbsoluteSecondsScheduleType).optional(),
|
|
18860
18860
|
error: z.boolean().optional(),
|
|
@@ -19094,17 +19094,22 @@ const Sensor_GetSensorPresenceWindowsWSResponse = z.object({
|
|
|
19094
19094
|
presenceWindows: z.array(TimeWindowSeconds).optional(),
|
|
19095
19095
|
warningMsg: z.string().optional()
|
|
19096
19096
|
});
|
|
19097
|
-
const Share_GetSharedClipDataWSRequest = z.record(z.unknown());
|
|
19097
|
+
const Share_GetSharedClipDataWSRequest = z.record(z.string(), z.unknown());
|
|
19098
19098
|
const Share_SharedClipPublicType = z.object({
|
|
19099
19099
|
boundingBoxes: z.array(ClipBoundingBoxType).optional(),
|
|
19100
19100
|
clipLocation: MetaDataLocationType.optional(),
|
|
19101
19101
|
description: z.string().optional(),
|
|
19102
|
-
deviceBoundingBoxMap: z.record(z.
|
|
19103
|
-
deviceMap: z.record(z.
|
|
19104
|
-
deviceSeekPointMap: z.record(z.
|
|
19102
|
+
deviceBoundingBoxMap: z.record(z.string(), z.array(ClipBoundingBoxType)).optional(),
|
|
19103
|
+
deviceMap: z.record(z.string(), MetaDataLocationType).optional(),
|
|
19104
|
+
deviceSeekPointMap: z.record(z.string(), z.array(ClipSeekPointV2Type)).optional(),
|
|
19105
19105
|
durationSec: z.number().int().optional(),
|
|
19106
|
-
locationNameMap: z.record(z.
|
|
19107
|
-
locationTimeZoneMap: z.record(z.
|
|
19106
|
+
locationNameMap: z.record(z.string(), z.string()).optional(),
|
|
19107
|
+
locationTimeZoneMap: z.record(z.string(), z.object({
|
|
19108
|
+
displayName: z.string().optional(),
|
|
19109
|
+
dstsavings: z.number().int().optional(),
|
|
19110
|
+
id: z.string().optional(),
|
|
19111
|
+
rawOffset: z.number().int().optional()
|
|
19112
|
+
})).optional(),
|
|
19108
19113
|
publicClipUuid: z.string().optional(),
|
|
19109
19114
|
seekPoints: z.array(ClipSeekPointV2Type).optional(),
|
|
19110
19115
|
startTime: z.number().int().optional(),
|
|
@@ -19186,7 +19191,7 @@ const Share_GetSharedLiveStreamInfoWSResponse = z.object({
|
|
|
19186
19191
|
vodEnabled: z.boolean().optional(),
|
|
19187
19192
|
warningMsg: z.string().optional()
|
|
19188
19193
|
});
|
|
19189
|
-
const Share_GetSharedMediaUrisWSRequest = z.record(z.unknown());
|
|
19194
|
+
const Share_GetSharedMediaUrisWSRequest = z.record(z.string(), z.unknown());
|
|
19190
19195
|
const Share_GetSharedMediaUrisWSResponse = z.object({
|
|
19191
19196
|
audioWanLiveMpdUri: z.string().optional(),
|
|
19192
19197
|
audioWanLiveOpusUri: z.string().optional(),
|
|
@@ -19207,7 +19212,7 @@ const Share_GetSharedPresenceWindowsWSRequest = z.object({
|
|
|
19207
19212
|
const Share_GetSharedPresenceWindowsWSResponse = z.object({
|
|
19208
19213
|
error: z.boolean().optional(),
|
|
19209
19214
|
errorMsg: z.string().optional(),
|
|
19210
|
-
presenceWindows: z.record(z.
|
|
19215
|
+
presenceWindows: z.record(z.string(), z.array(TimeWindowSeconds)).optional(),
|
|
19211
19216
|
warningMsg: z.string().optional()
|
|
19212
19217
|
});
|
|
19213
19218
|
const Share_GetSharedTimelapseDataV2WSResponse = z.object({
|
|
@@ -19219,7 +19224,7 @@ const Share_GetSharedTimelapseDataV2WSResponse = z.object({
|
|
|
19219
19224
|
title: z.string().optional(),
|
|
19220
19225
|
warningMsg: z.string().optional()
|
|
19221
19226
|
});
|
|
19222
|
-
const Share_GetSharedTimelapseDataWSRequest = z.record(z.unknown());
|
|
19227
|
+
const Share_GetSharedTimelapseDataWSRequest = z.record(z.string(), z.unknown());
|
|
19223
19228
|
const Share_GetSharedTimelapseDataWSResponse = z.object({
|
|
19224
19229
|
description: z.string().optional(),
|
|
19225
19230
|
error: z.boolean().optional(),
|
|
@@ -19247,7 +19252,7 @@ const Share_GetSharedVideoWallInfoWSResponse = z.object({
|
|
|
19247
19252
|
error: z.boolean().optional(),
|
|
19248
19253
|
errorMsg: z.string().optional(),
|
|
19249
19254
|
name: z.string().optional(),
|
|
19250
|
-
settings: z.record(z.unknown()).optional(),
|
|
19255
|
+
settings: z.record(z.string(), z.record(z.string(), z.unknown())).optional(),
|
|
19251
19256
|
vodEnabled: z.boolean().optional(),
|
|
19252
19257
|
warningMsg: z.string().optional()
|
|
19253
19258
|
});
|
|
@@ -19319,7 +19324,7 @@ const StatsCredentialReference = z.object({
|
|
|
19319
19324
|
orgUuid: z.string().optional(),
|
|
19320
19325
|
userUuid: z.string().optional()
|
|
19321
19326
|
});
|
|
19322
|
-
const StreamingOutput = z.record(z.unknown());
|
|
19327
|
+
const StreamingOutput = z.record(z.string(), z.unknown());
|
|
19323
19328
|
const SupportAuthorityLockdownEventOriginator = z.object({
|
|
19324
19329
|
type: LockdownEventOriginatorEnumType.optional()
|
|
19325
19330
|
});
|
|
@@ -19350,7 +19355,7 @@ const Support_FindSupportAuthoritySessionsWSResponse = z.object({
|
|
|
19350
19355
|
sessions: z.array(SessionInfoWSType).optional(),
|
|
19351
19356
|
warningMsg: z.string().optional()
|
|
19352
19357
|
});
|
|
19353
|
-
const Support_GetSupportAuthoritiesWSRequest = z.record(z.unknown());
|
|
19358
|
+
const Support_GetSupportAuthoritiesWSRequest = z.record(z.string(), z.unknown());
|
|
19354
19359
|
const Support_SupportAuthorityWSType = z.object({
|
|
19355
19360
|
authorityType: z.string().optional(),
|
|
19356
19361
|
authorityUuid: z.string().optional(),
|
|
@@ -19462,7 +19467,7 @@ const ToastRestaurantInfo = z.object({
|
|
|
19462
19467
|
const ToastRestaurantSettings = z.object({
|
|
19463
19468
|
locationName: z.string().optional(),
|
|
19464
19469
|
restaurantName: z.string().optional(),
|
|
19465
|
-
serviceAreaSettingsMap: z.record(z.
|
|
19470
|
+
serviceAreaSettingsMap: z.record(z.string(), GenericPosSettings).optional()
|
|
19466
19471
|
});
|
|
19467
19472
|
const TokenUsageStats = z.object({
|
|
19468
19473
|
inputTokenUsage: z.number().int().optional(),
|
|
@@ -19494,7 +19499,7 @@ const Tvos_GetTvOsConfigWsResponse = z.object({
|
|
|
19494
19499
|
errorMsg: z.string().optional(),
|
|
19495
19500
|
warningMsg: z.string().optional()
|
|
19496
19501
|
});
|
|
19497
|
-
const Tvos_GetTvOsConfigsForOrgWsRequest = z.record(z.unknown());
|
|
19502
|
+
const Tvos_GetTvOsConfigsForOrgWsRequest = z.record(z.string(), z.unknown());
|
|
19498
19503
|
const Tvos_GetTvOsConfigsForOrgWsResponse = z.object({
|
|
19499
19504
|
configs: z.array(TvOsConfigType).optional(),
|
|
19500
19505
|
error: z.boolean().optional(),
|
|
@@ -19538,7 +19543,7 @@ const UserMetadataFieldTemplateSelectiveUpdate = z.object({
|
|
|
19538
19543
|
orgUuid: z.string().optional(),
|
|
19539
19544
|
scimFieldName: z.string().optional(),
|
|
19540
19545
|
updatedAtMillis: z.number().int().optional(),
|
|
19541
|
-
updatedSetMethodMap: z.record(z.
|
|
19546
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
19542
19547
|
uuid: z.string().optional()
|
|
19543
19548
|
});
|
|
19544
19549
|
const UserVirtualMfaDeviceType = z.object({
|
|
@@ -19548,7 +19553,7 @@ const User_AssignEmailToUserWSRequest = z.object({
|
|
|
19548
19553
|
emailToAssign: z.string().optional(),
|
|
19549
19554
|
userUuid: z.string().optional()
|
|
19550
19555
|
});
|
|
19551
|
-
const User_AssignEmailToUserWSResponse = z.record(z.unknown());
|
|
19556
|
+
const User_AssignEmailToUserWSResponse = z.record(z.string(), z.unknown());
|
|
19552
19557
|
const User_BulkProvisionCredentialsWSResponse = z.object({
|
|
19553
19558
|
error: z.boolean().optional(),
|
|
19554
19559
|
errorMsg: z.string().optional(),
|
|
@@ -19598,7 +19603,7 @@ const User_DeleteUserWSResponse = z.object({
|
|
|
19598
19603
|
errorMsg: z.string().optional(),
|
|
19599
19604
|
warningMsg: z.string().optional()
|
|
19600
19605
|
});
|
|
19601
|
-
const User_DeleteVirtualMfaDeviceForCurrentUserWSRequest = z.record(z.unknown());
|
|
19606
|
+
const User_DeleteVirtualMfaDeviceForCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
19602
19607
|
const User_DeleteVirtualMfaDeviceForCurrentUserWSResponse = z.object({
|
|
19603
19608
|
error: z.boolean().optional(),
|
|
19604
19609
|
errorMsg: z.string().optional(),
|
|
@@ -19628,21 +19633,21 @@ const User_GetUserCustomizationFlagsWSRequest = z.object({
|
|
|
19628
19633
|
const User_GetUserCustomizationFlagsWSResponse = z.object({
|
|
19629
19634
|
error: z.boolean().optional(),
|
|
19630
19635
|
errorMsg: z.string().optional(),
|
|
19631
|
-
userCustomizations: z.record(z.
|
|
19636
|
+
userCustomizations: z.record(z.string(), z.string()).optional(),
|
|
19632
19637
|
warningMsg: z.string().optional()
|
|
19633
19638
|
});
|
|
19634
|
-
const User_GetUsersInOrgForReportsWSRequest = z.record(z.unknown());
|
|
19639
|
+
const User_GetUsersInOrgForReportsWSRequest = z.record(z.string(), z.unknown());
|
|
19635
19640
|
const User_GetUsersInOrgForReportsWSResponse = z.object({
|
|
19636
19641
|
error: z.boolean().optional(),
|
|
19637
19642
|
errorMsg: z.string().optional(),
|
|
19638
19643
|
users: z.array(RhombusOrgUserType).optional(),
|
|
19639
19644
|
warningMsg: z.string().optional()
|
|
19640
19645
|
});
|
|
19641
|
-
const User_GetUsersInOrgWSRequest = z.record(z.unknown());
|
|
19646
|
+
const User_GetUsersInOrgWSRequest = z.record(z.string(), z.unknown());
|
|
19642
19647
|
const User_UserSnoozeNotificationSettingsType = z.object({
|
|
19643
19648
|
snoozedForAllNotificationsIntervals: z.array(ScheduledIntervalType).optional(),
|
|
19644
|
-
snoozedForDevicesMap: z.record(z.
|
|
19645
|
-
snoozedForLocationsMap: z.record(z.
|
|
19649
|
+
snoozedForDevicesMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
19650
|
+
snoozedForLocationsMap: z.record(z.string(), z.array(ScheduledIntervalType)).optional(),
|
|
19646
19651
|
userUuid: z.string().optional()
|
|
19647
19652
|
});
|
|
19648
19653
|
const User_GetUsersInOrgWSResponse = z.object({
|
|
@@ -19657,7 +19662,7 @@ const User_GetUsersInOrgWSResponse = z.object({
|
|
|
19657
19662
|
users: z.array(WrappedRhombusOrgUserType).optional(),
|
|
19658
19663
|
warningMsg: z.string().optional()
|
|
19659
19664
|
});
|
|
19660
|
-
const User_GetVirtualMfaDeviceForCurrentUserWSRequest = z.record(z.unknown());
|
|
19665
|
+
const User_GetVirtualMfaDeviceForCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
19661
19666
|
const User_GetVirtualMfaDeviceForCurrentUserWSResponse = z.object({
|
|
19662
19667
|
error: z.boolean().optional(),
|
|
19663
19668
|
errorMsg: z.string().optional(),
|
|
@@ -19705,7 +19710,7 @@ const User_SendUserWelcomeEmailWSResponse = z.object({
|
|
|
19705
19710
|
errorMsg: z.string().optional(),
|
|
19706
19711
|
warningMsg: z.string().optional()
|
|
19707
19712
|
});
|
|
19708
|
-
const User_SetupVirtualMfaDeviceForCurrentUserWSRequest = z.record(z.unknown());
|
|
19713
|
+
const User_SetupVirtualMfaDeviceForCurrentUserWSRequest = z.record(z.string(), z.unknown());
|
|
19709
19714
|
const User_SetupVirtualMfaDeviceForCurrentUserWSResponse = z.object({
|
|
19710
19715
|
alreadyExists: z.boolean().optional(),
|
|
19711
19716
|
error: z.boolean().optional(),
|
|
@@ -19716,12 +19721,12 @@ const User_SetupVirtualMfaDeviceForCurrentUserWSResponse = z.object({
|
|
|
19716
19721
|
});
|
|
19717
19722
|
const User_UpdatePartnerUserNotificationSettingsWSRequest = z.object({
|
|
19718
19723
|
allClientsSelected: z.boolean().optional(),
|
|
19719
|
-
clientNotificationIntervalsMap: z.record(z.
|
|
19724
|
+
clientNotificationIntervalsMap: z.record(z.string(), z.array(PartnerNotificationClientSection)).optional(),
|
|
19720
19725
|
notificationIntervalsForAllClients: z.array(PartnerNotificationClientSection).optional(),
|
|
19721
19726
|
orgUuid: z.string().optional(),
|
|
19722
19727
|
smsPhoneNumbers: z.array(z.string()).optional(),
|
|
19723
19728
|
summaryEmailEnabled: z.boolean().optional(),
|
|
19724
|
-
updatedSetMethodMap: z.record(z.
|
|
19729
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
19725
19730
|
userUuid: z.string().optional()
|
|
19726
19731
|
});
|
|
19727
19732
|
const User_UpdatePartnerUserNotificationSettingsWSResponse = z.object({
|
|
@@ -19758,7 +19763,7 @@ const User_UpdateRhombusKeySettingsForUserWSResponse = z.object({
|
|
|
19758
19763
|
userRhombusKeyConfig: RhombusKeyAppConfigType.optional()
|
|
19759
19764
|
});
|
|
19760
19765
|
const User_UpdateUserCustomizationFlagsWSRequest = z.object({
|
|
19761
|
-
userCustomizationFlags: z.record(z.
|
|
19766
|
+
userCustomizationFlags: z.record(z.string(), z.string()).optional(),
|
|
19762
19767
|
userUuid: z.string().optional()
|
|
19763
19768
|
});
|
|
19764
19769
|
const User_UpdateUserCustomizationFlagsWSResponse = z.object({
|
|
@@ -19771,7 +19776,7 @@ const User_UpdateUserNotificationSettingsWSRequest = z.object({
|
|
|
19771
19776
|
smsPhoneNumbers: z.array(z.string()).optional(),
|
|
19772
19777
|
summaryEmailEnabled: z.boolean().optional(),
|
|
19773
19778
|
timeFrames: z.array(NotificationTimeFrame).optional(),
|
|
19774
|
-
updatedSetMethodMap: z.record(z.
|
|
19779
|
+
updatedSetMethodMap: z.record(z.string(), z.boolean()).optional(),
|
|
19775
19780
|
userUuid: z.string().optional()
|
|
19776
19781
|
});
|
|
19777
19782
|
const User_UpdateUserNotificationSettingsWSResponse = z.object({
|
|
@@ -19789,7 +19794,7 @@ const User_UpdateUserSelectiveWSRequest = z.object({
|
|
|
19789
19794
|
summaryEmailEnabled: z.boolean().optional(),
|
|
19790
19795
|
userUuid: z.string().optional()
|
|
19791
19796
|
});
|
|
19792
|
-
const User_UpdateUserSelectiveWSResponse = z.record(z.unknown());
|
|
19797
|
+
const User_UpdateUserSelectiveWSResponse = z.record(z.string(), z.unknown());
|
|
19793
19798
|
const User_UpdateUserWSRequest = z.object({
|
|
19794
19799
|
bypassSaml: z.boolean().optional(),
|
|
19795
19800
|
mfaEnabled: z.boolean().optional(),
|
|
@@ -19824,24 +19829,24 @@ const User_metadata_DeleteUserMetadataFieldWSRequest = z.object({
|
|
|
19824
19829
|
const User_metadata_DeleteUserMetadataFieldWSResponse = z.object({
|
|
19825
19830
|
field: UserMetadataField.optional()
|
|
19826
19831
|
});
|
|
19827
|
-
const User_metadata_FindUserMetadataFieldTemplatesWSRequest = z.record(z.unknown());
|
|
19832
|
+
const User_metadata_FindUserMetadataFieldTemplatesWSRequest = z.record(z.string(), z.unknown());
|
|
19828
19833
|
const User_metadata_FindUserMetadataFieldTemplatesWSResponse = z.object({
|
|
19829
|
-
templateMap: z.record(z.
|
|
19834
|
+
templateMap: z.record(z.string(), UserMetadataFieldTemplate).optional()
|
|
19830
19835
|
});
|
|
19831
19836
|
const User_metadata_FindUserMetadataFieldsWSRequest = z.object({
|
|
19832
19837
|
userUuid: z.string().optional()
|
|
19833
19838
|
});
|
|
19834
19839
|
const User_metadata_FindUserMetadataFieldsWSResponse = z.object({
|
|
19835
|
-
templateMap: z.record(z.
|
|
19836
|
-
userFieldValueMap: z.record(z.
|
|
19840
|
+
templateMap: z.record(z.string(), UserMetadataFieldTemplate).optional(),
|
|
19841
|
+
userFieldValueMap: z.record(z.string(), UserMetadataField).optional()
|
|
19837
19842
|
});
|
|
19838
19843
|
const User_metadata_SaveUserMetadataFieldsWSRequest = z.object({
|
|
19839
|
-
fieldValueMap: z.record(z.
|
|
19844
|
+
fieldValueMap: z.record(z.string(), z.string()).optional(),
|
|
19840
19845
|
userUuid: z.string().optional()
|
|
19841
19846
|
});
|
|
19842
19847
|
const User_metadata_SaveUserMetadataFieldsWSResponse = z.object({
|
|
19843
|
-
templateMap: z.record(z.
|
|
19844
|
-
userFieldValueMap: z.record(z.
|
|
19848
|
+
templateMap: z.record(z.string(), UserMetadataFieldTemplate).optional(),
|
|
19849
|
+
userFieldValueMap: z.record(z.string(), UserMetadataField).optional()
|
|
19845
19850
|
});
|
|
19846
19851
|
const User_metadata_UpdateUserMetadataFieldTemplateWSRequest = z.object({
|
|
19847
19852
|
selectiveUpdate: UserMetadataFieldTemplateSelectiveUpdate.optional()
|
|
@@ -19938,14 +19943,14 @@ const Vehicle_GetVehicleEventsWSResponse = z.object({
|
|
|
19938
19943
|
events: z.array(VehicleEventIndexType).optional(),
|
|
19939
19944
|
warningMsg: z.string().optional()
|
|
19940
19945
|
});
|
|
19941
|
-
const Vehicle_GetVehicleLabelsForOrgWSRequest = z.record(z.unknown());
|
|
19946
|
+
const Vehicle_GetVehicleLabelsForOrgWSRequest = z.record(z.string(), z.unknown());
|
|
19942
19947
|
const Vehicle_GetVehicleLabelsForOrgWSResponse = z.object({
|
|
19943
19948
|
error: z.boolean().optional(),
|
|
19944
19949
|
errorMsg: z.string().optional(),
|
|
19945
|
-
vehicleLabels: z.record(z.
|
|
19950
|
+
vehicleLabels: z.record(z.string(), z.array(z.string())).optional(),
|
|
19946
19951
|
warningMsg: z.string().optional()
|
|
19947
19952
|
});
|
|
19948
|
-
const Vehicle_GetVehiclesWSRequest = z.record(z.unknown());
|
|
19953
|
+
const Vehicle_GetVehiclesWSRequest = z.record(z.string(), z.unknown());
|
|
19949
19954
|
const Vehicle_GetVehiclesWSResponse = z.object({
|
|
19950
19955
|
error: z.boolean().optional(),
|
|
19951
19956
|
errorMsg: z.string().optional(),
|
|
@@ -20069,28 +20074,28 @@ const Video_GetExactFrameUriWSResponse = z.object({
|
|
|
20069
20074
|
responseMessage: z.string().optional(),
|
|
20070
20075
|
warningMsg: z.string().optional()
|
|
20071
20076
|
});
|
|
20072
|
-
const Video_GetMaxSpliceDurationWSRequest = z.record(z.unknown());
|
|
20077
|
+
const Video_GetMaxSpliceDurationWSRequest = z.record(z.string(), z.unknown());
|
|
20073
20078
|
const Video_GetMaxSpliceDurationWSResponse = z.object({
|
|
20074
20079
|
error: z.boolean().optional(),
|
|
20075
20080
|
errorMsg: z.string().optional(),
|
|
20076
20081
|
maxDuration: z.number().int().optional(),
|
|
20077
20082
|
warningMsg: z.string().optional()
|
|
20078
20083
|
});
|
|
20079
|
-
const Video_GetSharedTimelapseGroupsWSRequest = z.record(z.unknown());
|
|
20084
|
+
const Video_GetSharedTimelapseGroupsWSRequest = z.record(z.string(), z.unknown());
|
|
20080
20085
|
const Video_GetSharedTimelapseGroupsWSResponse = z.object({
|
|
20081
20086
|
error: z.boolean().optional(),
|
|
20082
20087
|
errorMsg: z.string().optional(),
|
|
20083
20088
|
sharedTimelapses: z.array(SharedTimelapseGroupWrapperType).optional(),
|
|
20084
20089
|
warningMsg: z.string().optional()
|
|
20085
20090
|
});
|
|
20086
|
-
const Video_GetSplicedClipsInProgressWSRequest = z.record(z.unknown());
|
|
20091
|
+
const Video_GetSplicedClipsInProgressWSRequest = z.record(z.string(), z.unknown());
|
|
20087
20092
|
const Video_GetSplicedClipsInProgressWSResponse = z.object({
|
|
20088
20093
|
error: z.boolean().optional(),
|
|
20089
20094
|
errorMsg: z.string().optional(),
|
|
20090
20095
|
splicedClips: z.array(SplicedClipType).optional(),
|
|
20091
20096
|
warningMsg: z.string().optional()
|
|
20092
20097
|
});
|
|
20093
|
-
const Video_GetTimelapseClipsWSRequest = z.record(z.unknown());
|
|
20098
|
+
const Video_GetTimelapseClipsWSRequest = z.record(z.string(), z.unknown());
|
|
20094
20099
|
const Video_GetTimelapseClipsWSResponse = z.object({
|
|
20095
20100
|
error: z.boolean().optional(),
|
|
20096
20101
|
errorMsg: z.string().optional(),
|
|
@@ -20101,7 +20106,7 @@ const Video_GetTimelapseMetadataWSRequest = z.object({
|
|
|
20101
20106
|
deviceUuidList: z.array(z.string()).optional()
|
|
20102
20107
|
});
|
|
20103
20108
|
const Video_GetTimelapseMetadataWSResponse = z.object({
|
|
20104
|
-
earliestTimestampMap: z.record(z.
|
|
20109
|
+
earliestTimestampMap: z.record(z.string(), z.string()).optional(),
|
|
20105
20110
|
error: z.boolean().optional(),
|
|
20106
20111
|
errorMsg: z.string().optional(),
|
|
20107
20112
|
warningMsg: z.string().optional()
|
|
@@ -20120,7 +20125,7 @@ const Video_ShareTimelapseClipsWSRequest = z.object({
|
|
|
20120
20125
|
const Video_ShareTimelapseClipsWSResponse = z.object({
|
|
20121
20126
|
error: z.boolean().optional(),
|
|
20122
20127
|
errorMsg: z.string().optional(),
|
|
20123
|
-
shareUrlMap: z.record(z.
|
|
20128
|
+
shareUrlMap: z.record(z.string(), z.string()).optional(),
|
|
20124
20129
|
warningMsg: z.string().optional()
|
|
20125
20130
|
});
|
|
20126
20131
|
const Video_SpliceFrameWSRequest = z.object({
|
|
@@ -20138,7 +20143,7 @@ const Video_SpliceV2WSRequest = z.object({
|
|
|
20138
20143
|
description: z.string().optional(),
|
|
20139
20144
|
deviceUuids: z.array(z.string()).optional(),
|
|
20140
20145
|
durationSec: z.number().int().optional(),
|
|
20141
|
-
fisheyePresentationMap: z.record(z.
|
|
20146
|
+
fisheyePresentationMap: z.record(z.string(), z.array(DewarpedView)).optional(),
|
|
20142
20147
|
startTimeMillis: z.number().int().optional(),
|
|
20143
20148
|
title: z.string().optional()
|
|
20144
20149
|
});
|
|
@@ -20150,13 +20155,13 @@ const Video_SpliceV2WSResponse = z.object({
|
|
|
20150
20155
|
});
|
|
20151
20156
|
const Video_SpliceV3WSRequest = z.object({
|
|
20152
20157
|
accessSettings: ClipAccessSettings.optional(),
|
|
20153
|
-
alteredViewMap: z.record(z.
|
|
20158
|
+
alteredViewMap: z.record(z.string(), z.array(AlteredView)).optional(),
|
|
20154
20159
|
audioIncluded: z.boolean().optional(),
|
|
20155
20160
|
clipVisibility: ClipVisibility.optional(),
|
|
20156
20161
|
description: z.string().optional(),
|
|
20157
20162
|
deviceUuids: z.array(z.string()).optional(),
|
|
20158
20163
|
durationSec: z.number().int().optional(),
|
|
20159
|
-
integrationUploadMap: z.record(z.
|
|
20164
|
+
integrationUploadMap: z.record(z.string(), z.boolean()).optional(),
|
|
20160
20165
|
saveToConsole: z.boolean().optional(),
|
|
20161
20166
|
sendToSharedStorage: z.boolean().optional(),
|
|
20162
20167
|
sendToUserStorage: z.boolean().optional(),
|