homebridge-carrier-infinity 1.8.1 → 1.9.0-beta.1
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/.devcontainer/.uix-hb-service-homebridge-startup.json.example +5 -0
- package/.devcontainer/config.json.example +2 -1
- package/.devcontainer/setup-homebridge.sh +6 -0
- package/CLAUDE.md +28 -21
- package/dist/accessory_base.d.ts +2 -2
- package/dist/accessory_base.d.ts.map +1 -1
- package/dist/accessory_base.js.map +1 -1
- package/dist/api/graphql_client.d.ts +71 -0
- package/dist/api/graphql_client.d.ts.map +1 -0
- package/dist/api/graphql_client.js +261 -0
- package/dist/api/graphql_client.js.map +1 -0
- package/dist/api/graphql_operations.d.ts +56 -0
- package/dist/api/graphql_operations.d.ts.map +1 -0
- package/dist/api/graphql_operations.js +325 -0
- package/dist/api/graphql_operations.js.map +1 -0
- package/dist/api/interface_graphql_mutations.d.ts +149 -0
- package/dist/api/interface_graphql_mutations.d.ts.map +1 -0
- package/dist/api/interface_graphql_mutations.js +8 -0
- package/dist/api/interface_graphql_mutations.js.map +1 -0
- package/dist/api/interface_graphql_system.d.ts +287 -0
- package/dist/api/interface_graphql_system.d.ts.map +1 -0
- package/dist/api/interface_graphql_system.js +9 -0
- package/dist/api/interface_graphql_system.js.map +1 -0
- package/dist/api/models_graphql.d.ts +167 -0
- package/dist/api/models_graphql.d.ts.map +1 -0
- package/dist/api/models_graphql.js +590 -0
- package/dist/api/models_graphql.js.map +1 -0
- package/dist/api/oauth2.d.ts +45 -0
- package/dist/api/oauth2.d.ts.map +1 -0
- package/dist/api/oauth2.js +35 -0
- package/dist/api/oauth2.js.map +1 -0
- package/dist/characteristics_base.d.ts +2 -2
- package/dist/characteristics_base.d.ts.map +1 -1
- package/dist/characteristics_base.js.map +1 -1
- package/dist/platform.d.ts +4 -4
- package/dist/platform.d.ts.map +1 -1
- package/dist/platform.js +7 -12
- package/dist/platform.js.map +1 -1
- package/dist/settings.d.ts +6 -3
- package/dist/settings.d.ts.map +1 -1
- package/dist/settings.js +7 -4
- package/dist/settings.js.map +1 -1
- package/eslint.config.mjs +93 -2
- package/package.json +3 -6
- package/dist/api/comodo-aaa-root.pem +0 -25
- package/dist/api/interface_config.d.ts +0 -185
- package/dist/api/interface_config.d.ts.map +0 -1
- package/dist/api/interface_config.js +0 -5
- package/dist/api/interface_config.js.map +0 -1
- package/dist/api/interface_locations.d.ts +0 -45
- package/dist/api/interface_locations.d.ts.map +0 -1
- package/dist/api/interface_locations.js +0 -5
- package/dist/api/interface_locations.js.map +0 -1
- package/dist/api/interface_profile.d.ts +0 -80
- package/dist/api/interface_profile.d.ts.map +0 -1
- package/dist/api/interface_profile.js +0 -5
- package/dist/api/interface_profile.js.map +0 -1
- package/dist/api/interface_status.d.ts +0 -90
- package/dist/api/interface_status.d.ts.map +0 -1
- package/dist/api/interface_status.js +0 -5
- package/dist/api/interface_status.js.map +0 -1
- package/dist/api/models.d.ts +0 -111
- package/dist/api/models.d.ts.map +0 -1
- package/dist/api/models.js +0 -572
- package/dist/api/models.js.map +0 -1
- package/dist/api/oauth.d.ts +0 -6
- package/dist/api/oauth.d.ts.map +0 -1
- package/dist/api/oauth.js +0 -49
- package/dist/api/oauth.js.map +0 -1
- package/dist/api/rest_client.d.ts +0 -15
- package/dist/api/rest_client.d.ts.map +0 -1
- package/dist/api/rest_client.js +0 -135
- package/dist/api/rest_client.js.map +0 -1
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* GraphQL Operations for Carrier Infinity API
|
|
4
|
+
*
|
|
5
|
+
* This file contains all GraphQL queries and mutations used to interact with
|
|
6
|
+
* the Carrier Infinity GraphQL API at dataservice.infinity.iot.carrier.com
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.UPDATE_INFINITY_ZONE_CONFIG = exports.UPDATE_INFINITY_ZONE_ACTIVITY = exports.UPDATE_INFINITY_CONFIG = exports.GET_INFINITY_ENERGY = exports.GET_INFINITY_SYSTEMS = exports.GET_USER = exports.ASSISTED_LOGIN = void 0;
|
|
10
|
+
/**
|
|
11
|
+
* Authentication mutation - used to obtain OAuth tokens
|
|
12
|
+
* Endpoint: https://dataservice.infinity.iot.carrier.com/graphql-no-auth
|
|
13
|
+
* No authentication required (this IS the authentication)
|
|
14
|
+
*/
|
|
15
|
+
exports.ASSISTED_LOGIN = `
|
|
16
|
+
mutation assistedLogin($input: AssistedLoginInput!) {
|
|
17
|
+
assistedLogin(input: $input) {
|
|
18
|
+
success
|
|
19
|
+
status
|
|
20
|
+
errorMessage
|
|
21
|
+
data {
|
|
22
|
+
token_type
|
|
23
|
+
expires_in
|
|
24
|
+
access_token
|
|
25
|
+
scope
|
|
26
|
+
refresh_token
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
`;
|
|
31
|
+
/**
|
|
32
|
+
* User information query - fetches user profile and location data
|
|
33
|
+
* Used to discover systems associated with a user account
|
|
34
|
+
*/
|
|
35
|
+
exports.GET_USER = `
|
|
36
|
+
query getUser($userName: String!, $appVersion: String, $brand: String, $os: String, $osVersion: String) {
|
|
37
|
+
user(
|
|
38
|
+
userName: $userName
|
|
39
|
+
appVersion: $appVersion
|
|
40
|
+
brand: $brand
|
|
41
|
+
os: $os
|
|
42
|
+
osVersion: $osVersion
|
|
43
|
+
) {
|
|
44
|
+
username
|
|
45
|
+
identityId
|
|
46
|
+
first
|
|
47
|
+
last
|
|
48
|
+
email
|
|
49
|
+
emailVerified
|
|
50
|
+
postal
|
|
51
|
+
locations {
|
|
52
|
+
locationId
|
|
53
|
+
name
|
|
54
|
+
systems {
|
|
55
|
+
config {
|
|
56
|
+
zones {
|
|
57
|
+
id
|
|
58
|
+
enabled
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
profile {
|
|
62
|
+
serial
|
|
63
|
+
name
|
|
64
|
+
}
|
|
65
|
+
status {
|
|
66
|
+
isDisconnected
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
devices {
|
|
70
|
+
deviceId
|
|
71
|
+
type
|
|
72
|
+
thingName
|
|
73
|
+
name
|
|
74
|
+
connectionStatus
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
`;
|
|
80
|
+
/**
|
|
81
|
+
* Infinity Systems query - fetches complete system data (profile + status + config)
|
|
82
|
+
* This single query replaces the old REST API's separate profile, status, and config endpoints
|
|
83
|
+
*/
|
|
84
|
+
exports.GET_INFINITY_SYSTEMS = `
|
|
85
|
+
query getInfinitySystems($userName: String!) {
|
|
86
|
+
infinitySystems(userName: $userName) {
|
|
87
|
+
profile {
|
|
88
|
+
serial
|
|
89
|
+
name
|
|
90
|
+
firmware
|
|
91
|
+
model
|
|
92
|
+
brand
|
|
93
|
+
indoorModel
|
|
94
|
+
indoorSerial
|
|
95
|
+
idutype
|
|
96
|
+
idusource
|
|
97
|
+
outdoorModel
|
|
98
|
+
outdoorSerial
|
|
99
|
+
odutype
|
|
100
|
+
}
|
|
101
|
+
status {
|
|
102
|
+
localTime
|
|
103
|
+
localTimeOffset
|
|
104
|
+
utcTime
|
|
105
|
+
wcTime
|
|
106
|
+
isDisconnected
|
|
107
|
+
cfgem
|
|
108
|
+
mode
|
|
109
|
+
vacatrunning
|
|
110
|
+
oat
|
|
111
|
+
odu {
|
|
112
|
+
type
|
|
113
|
+
opstat
|
|
114
|
+
}
|
|
115
|
+
filtrlvl
|
|
116
|
+
idu {
|
|
117
|
+
type
|
|
118
|
+
opstat
|
|
119
|
+
cfm
|
|
120
|
+
statpress
|
|
121
|
+
blwrpm
|
|
122
|
+
}
|
|
123
|
+
vent
|
|
124
|
+
ventlvl
|
|
125
|
+
humid
|
|
126
|
+
humlvl
|
|
127
|
+
uvlvl
|
|
128
|
+
zones {
|
|
129
|
+
id
|
|
130
|
+
rt
|
|
131
|
+
rh
|
|
132
|
+
fan
|
|
133
|
+
htsp
|
|
134
|
+
clsp
|
|
135
|
+
hold
|
|
136
|
+
enabled
|
|
137
|
+
currentActivity
|
|
138
|
+
zoneconditioning
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
config {
|
|
142
|
+
etag
|
|
143
|
+
mode
|
|
144
|
+
cfgem
|
|
145
|
+
cfgdead
|
|
146
|
+
cfgvent
|
|
147
|
+
cfghumid
|
|
148
|
+
cfguv
|
|
149
|
+
cfgfan
|
|
150
|
+
heatsource
|
|
151
|
+
vacat
|
|
152
|
+
vacstart
|
|
153
|
+
vacend
|
|
154
|
+
vacmint
|
|
155
|
+
vacmaxt
|
|
156
|
+
vacfan
|
|
157
|
+
fueltype
|
|
158
|
+
gasunit
|
|
159
|
+
filtertype
|
|
160
|
+
filterinterval
|
|
161
|
+
humidityVacation {
|
|
162
|
+
rclgovercool
|
|
163
|
+
ventspdclg
|
|
164
|
+
ventclg
|
|
165
|
+
rhtg
|
|
166
|
+
humidifier
|
|
167
|
+
humid
|
|
168
|
+
venthtg
|
|
169
|
+
rclg
|
|
170
|
+
ventspdhtg
|
|
171
|
+
}
|
|
172
|
+
zones {
|
|
173
|
+
id
|
|
174
|
+
name
|
|
175
|
+
enabled
|
|
176
|
+
hold
|
|
177
|
+
holdActivity
|
|
178
|
+
otmr
|
|
179
|
+
occEnabled
|
|
180
|
+
program {
|
|
181
|
+
id
|
|
182
|
+
day {
|
|
183
|
+
id
|
|
184
|
+
zoneId
|
|
185
|
+
period {
|
|
186
|
+
id
|
|
187
|
+
zoneId
|
|
188
|
+
dayId
|
|
189
|
+
activity
|
|
190
|
+
time
|
|
191
|
+
enabled
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
activities {
|
|
196
|
+
id
|
|
197
|
+
zoneId
|
|
198
|
+
type
|
|
199
|
+
fan
|
|
200
|
+
htsp
|
|
201
|
+
clsp
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
humidityAway {
|
|
205
|
+
humid
|
|
206
|
+
humidifier
|
|
207
|
+
rhtg
|
|
208
|
+
rclg
|
|
209
|
+
rclgovercool
|
|
210
|
+
}
|
|
211
|
+
humidityHome {
|
|
212
|
+
humid
|
|
213
|
+
humidifier
|
|
214
|
+
rhtg
|
|
215
|
+
rclg
|
|
216
|
+
rclgovercool
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
`;
|
|
222
|
+
/**
|
|
223
|
+
* Energy data query - fetches energy usage and efficiency data
|
|
224
|
+
* This is new functionality not available in the old REST API
|
|
225
|
+
*/
|
|
226
|
+
exports.GET_INFINITY_ENERGY = `
|
|
227
|
+
query getInfinityEnergy($serial: String!) {
|
|
228
|
+
infinityEnergy(serial: $serial) {
|
|
229
|
+
energyConfig {
|
|
230
|
+
cooling {
|
|
231
|
+
display
|
|
232
|
+
enabled
|
|
233
|
+
}
|
|
234
|
+
eheat {
|
|
235
|
+
display
|
|
236
|
+
enabled
|
|
237
|
+
}
|
|
238
|
+
fan {
|
|
239
|
+
display
|
|
240
|
+
enabled
|
|
241
|
+
}
|
|
242
|
+
fangas {
|
|
243
|
+
display
|
|
244
|
+
enabled
|
|
245
|
+
}
|
|
246
|
+
gas {
|
|
247
|
+
display
|
|
248
|
+
enabled
|
|
249
|
+
}
|
|
250
|
+
hpheat {
|
|
251
|
+
display
|
|
252
|
+
enabled
|
|
253
|
+
}
|
|
254
|
+
looppump {
|
|
255
|
+
display
|
|
256
|
+
enabled
|
|
257
|
+
}
|
|
258
|
+
reheat {
|
|
259
|
+
display
|
|
260
|
+
enabled
|
|
261
|
+
}
|
|
262
|
+
hspf
|
|
263
|
+
seer
|
|
264
|
+
}
|
|
265
|
+
energyPeriods {
|
|
266
|
+
energyPeriodType
|
|
267
|
+
eHeatKwh
|
|
268
|
+
coolingKwh
|
|
269
|
+
fanGasKwh
|
|
270
|
+
fanKwh
|
|
271
|
+
hPHeatKwh
|
|
272
|
+
loopPumpKwh
|
|
273
|
+
gasKwh
|
|
274
|
+
reheatKwh
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
`;
|
|
279
|
+
/**
|
|
280
|
+
* Update system configuration mutation
|
|
281
|
+
* Used for system-level settings like mode, humidity, heat source, etc.
|
|
282
|
+
*
|
|
283
|
+
* Example inputs:
|
|
284
|
+
* - Set mode: { serial, mode: "cool" }
|
|
285
|
+
* - Set humidity: { serial, humidityHome: { humidifier: "on", rhtg: 8 } }
|
|
286
|
+
* - Set heat source: { serial, heatsource: "system" }
|
|
287
|
+
*/
|
|
288
|
+
exports.UPDATE_INFINITY_CONFIG = `
|
|
289
|
+
mutation updateInfinityConfig($input: InfinityConfigInput!) {
|
|
290
|
+
updateInfinityConfig(input: $input) {
|
|
291
|
+
etag
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
`;
|
|
295
|
+
/**
|
|
296
|
+
* Update zone activity mutation
|
|
297
|
+
* Used for changing zone activity type, setpoints, and fan mode
|
|
298
|
+
*
|
|
299
|
+
* Example inputs:
|
|
300
|
+
* - Set manual activity: { serial, zoneId, activityType: "manual", clsp: "75", htsp: "68", fan: "med" }
|
|
301
|
+
* - Update fan: { serial, zoneId, activityType: "manual", fan: "high" }
|
|
302
|
+
*/
|
|
303
|
+
exports.UPDATE_INFINITY_ZONE_ACTIVITY = `
|
|
304
|
+
mutation updateInfinityZoneActivity($input: InfinityZoneActivityInput!) {
|
|
305
|
+
updateInfinityZoneActivity(input: $input) {
|
|
306
|
+
etag
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
`;
|
|
310
|
+
/**
|
|
311
|
+
* Update zone configuration mutation
|
|
312
|
+
* Used for zone-level settings like hold status, schedule, etc.
|
|
313
|
+
*
|
|
314
|
+
* Example inputs:
|
|
315
|
+
* - Set hold: { serial, zoneId, hold: "on", holdActivity: "manual", otmr: "2024-01-30T18:00:00" }
|
|
316
|
+
* - Cancel hold: { serial, zoneId, hold: "off", holdActivity: null, otmr: null }
|
|
317
|
+
*/
|
|
318
|
+
exports.UPDATE_INFINITY_ZONE_CONFIG = `
|
|
319
|
+
mutation updateInfinityZoneConfig($input: InfinityZoneConfigInput!) {
|
|
320
|
+
updateInfinityZoneConfig(input: $input) {
|
|
321
|
+
etag
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
`;
|
|
325
|
+
//# sourceMappingURL=graphql_operations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"graphql_operations.js","sourceRoot":"","sources":["../../src/api/graphql_operations.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEH;;;;GAIG;AACU,QAAA,cAAc,GAAG;;;;;;;;;;;;;;;CAe7B,CAAC;AAEF;;;GAGG;AACU,QAAA,QAAQ,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4CvB,CAAC;AAEF;;;GAGG;AACU,QAAA,oBAAoB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyInC,CAAC;AAEF;;;GAGG;AACU,QAAA,mBAAmB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoDlC,CAAC;AAEF;;;;;;;;GAQG;AACU,QAAA,sBAAsB,GAAG;;;;;;CAMrC,CAAC;AAEF;;;;;;;GAOG;AACU,QAAA,6BAA6B,GAAG;;;;;;CAM5C,CAAC;AAEF;;;;;;;GAOG;AACU,QAAA,2BAA2B,GAAG;;;;;;CAM1C,CAAC"}
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TypeScript interfaces for Carrier Infinity GraphQL API mutation inputs
|
|
3
|
+
*
|
|
4
|
+
* These interfaces define the structure of input variables for GraphQL mutations.
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* assistedLogin mutation input
|
|
8
|
+
*/
|
|
9
|
+
export interface AssistedLoginInput {
|
|
10
|
+
username: string;
|
|
11
|
+
password: string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* assistedLogin mutation response data
|
|
15
|
+
*/
|
|
16
|
+
export interface AssistedLoginData {
|
|
17
|
+
token_type: string;
|
|
18
|
+
expires_in: number;
|
|
19
|
+
access_token: string;
|
|
20
|
+
scope: string;
|
|
21
|
+
refresh_token: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* assistedLogin mutation response
|
|
25
|
+
*/
|
|
26
|
+
export interface AssistedLoginResponse {
|
|
27
|
+
assistedLogin: {
|
|
28
|
+
success: boolean;
|
|
29
|
+
status: string;
|
|
30
|
+
errorMessage: string | null;
|
|
31
|
+
data: AssistedLoginData;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Humidity configuration input for mutations
|
|
36
|
+
*/
|
|
37
|
+
export interface HumidityConfigInput {
|
|
38
|
+
humid?: string;
|
|
39
|
+
humidifier?: string;
|
|
40
|
+
rhtg?: number;
|
|
41
|
+
rclg?: number;
|
|
42
|
+
rclgovercool?: string;
|
|
43
|
+
ventspdclg?: string;
|
|
44
|
+
ventclg?: string;
|
|
45
|
+
venthtg?: string;
|
|
46
|
+
ventspdhtg?: string;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* updateInfinityConfig mutation input
|
|
50
|
+
*
|
|
51
|
+
* All fields are optional except serial. Only include the fields you want to update.
|
|
52
|
+
*/
|
|
53
|
+
export interface InfinityConfigInput {
|
|
54
|
+
serial: string;
|
|
55
|
+
mode?: string;
|
|
56
|
+
cfgem?: string;
|
|
57
|
+
cfgdead?: string;
|
|
58
|
+
cfgvent?: string;
|
|
59
|
+
cfghumid?: string;
|
|
60
|
+
cfguv?: string;
|
|
61
|
+
cfgfan?: string;
|
|
62
|
+
heatsource?: string;
|
|
63
|
+
vacat?: string;
|
|
64
|
+
vacstart?: string;
|
|
65
|
+
vacend?: string;
|
|
66
|
+
vacmint?: string;
|
|
67
|
+
vacmaxt?: string;
|
|
68
|
+
vacfan?: string;
|
|
69
|
+
fueltype?: string;
|
|
70
|
+
gasunit?: string;
|
|
71
|
+
filtertype?: string;
|
|
72
|
+
filterinterval?: string;
|
|
73
|
+
humidityVacation?: HumidityConfigInput;
|
|
74
|
+
humidityAway?: HumidityConfigInput;
|
|
75
|
+
humidityHome?: HumidityConfigInput;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* updateInfinityConfig mutation response
|
|
79
|
+
*/
|
|
80
|
+
export interface UpdateInfinityConfigResponse {
|
|
81
|
+
updateInfinityConfig: {
|
|
82
|
+
etag: string;
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* updateInfinityZoneActivity mutation input
|
|
87
|
+
*
|
|
88
|
+
* Used to change zone activity type, setpoints, and fan mode
|
|
89
|
+
*/
|
|
90
|
+
export interface InfinityZoneActivityInput {
|
|
91
|
+
serial: string;
|
|
92
|
+
zoneId: string;
|
|
93
|
+
activityType: string;
|
|
94
|
+
clsp?: string;
|
|
95
|
+
htsp?: string;
|
|
96
|
+
fan?: string;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* updateInfinityZoneActivity mutation response
|
|
100
|
+
*/
|
|
101
|
+
export interface UpdateInfinityZoneActivityResponse {
|
|
102
|
+
updateInfinityZoneActivity: {
|
|
103
|
+
etag: string;
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* updateInfinityZoneConfig mutation input
|
|
108
|
+
*
|
|
109
|
+
* Used to set hold status, schedule, and other zone-level configuration
|
|
110
|
+
*/
|
|
111
|
+
export interface InfinityZoneConfigInput {
|
|
112
|
+
serial: string;
|
|
113
|
+
zoneId: string;
|
|
114
|
+
hold?: string;
|
|
115
|
+
holdActivity?: string | null;
|
|
116
|
+
otmr?: string | null;
|
|
117
|
+
occEnabled?: string;
|
|
118
|
+
enabled?: string;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* updateInfinityZoneConfig mutation response
|
|
122
|
+
*/
|
|
123
|
+
export interface UpdateInfinityZoneConfigResponse {
|
|
124
|
+
updateInfinityZoneConfig: {
|
|
125
|
+
etag: string;
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* GraphQL Error
|
|
130
|
+
*/
|
|
131
|
+
export interface GraphQLError {
|
|
132
|
+
message: string;
|
|
133
|
+
locations?: {
|
|
134
|
+
line: number;
|
|
135
|
+
column: number;
|
|
136
|
+
}[];
|
|
137
|
+
path?: (string | number)[];
|
|
138
|
+
extensions?: Record<string, any>;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* GraphQL Response wrapper
|
|
142
|
+
*
|
|
143
|
+
* All GraphQL responses follow this structure
|
|
144
|
+
*/
|
|
145
|
+
export interface GraphQLResponse<T> {
|
|
146
|
+
data?: T;
|
|
147
|
+
errors?: GraphQLError[];
|
|
148
|
+
}
|
|
149
|
+
//# sourceMappingURL=interface_graphql_mutations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interface_graphql_mutations.d.ts","sourceRoot":"","sources":["../../src/api/interface_graphql_mutations.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* TypeScript interfaces for Carrier Infinity GraphQL API mutation inputs
|
|
4
|
+
*
|
|
5
|
+
* These interfaces define the structure of input variables for GraphQL mutations.
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
//# sourceMappingURL=interface_graphql_mutations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interface_graphql_mutations.js","sourceRoot":"","sources":["../../src/api/interface_graphql_mutations.ts"],"names":[],"mappings":";AAAA;;;;GAIG"}
|