@seamapi/types 1.42.0 → 1.42.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.
@@ -8609,10 +8609,10 @@ declare const _default: {
8609
8609
  schema: {
8610
8610
  properties: {
8611
8611
  device: {
8612
- nullable: boolean;
8612
+ $ref: string;
8613
8613
  };
8614
8614
  lock: {
8615
- nullable: boolean;
8615
+ $ref: string;
8616
8616
  };
8617
8617
  ok: {
8618
8618
  type: string;
@@ -8731,10 +8731,16 @@ declare const _default: {
8731
8731
  schema: {
8732
8732
  properties: {
8733
8733
  devices: {
8734
- nullable: boolean;
8734
+ items: {
8735
+ $ref: string;
8736
+ };
8737
+ type: string;
8735
8738
  };
8736
8739
  locks: {
8737
- nullable: boolean;
8740
+ items: {
8741
+ $ref: string;
8742
+ };
8743
+ type: string;
8738
8744
  };
8739
8745
  ok: {
8740
8746
  type: string;
@@ -5883,6 +5883,8 @@ export default {
5883
5883
  'device.salto.privacy_mode_deactivated',
5884
5884
  'device.connection_became_flaky',
5885
5885
  'device.connection_stabilized',
5886
+ 'device.error.subscription_required',
5887
+ 'device.error.subscription_required.resolved',
5886
5888
  'access_code.created',
5887
5889
  'access_code.changed',
5888
5890
  'access_code.scheduled_on_device',
@@ -5931,6 +5933,8 @@ export default {
5931
5933
  'device.salto.privacy_mode_deactivated',
5932
5934
  'device.connection_became_flaky',
5933
5935
  'device.connection_stabilized',
5936
+ 'device.error.subscription_required',
5937
+ 'device.error.subscription_required.resolved',
5934
5938
  'access_code.created',
5935
5939
  'access_code.changed',
5936
5940
  'access_code.scheduled_on_device',
@@ -6189,11 +6193,11 @@ export default {
6189
6193
  'application/json': {
6190
6194
  schema: {
6191
6195
  properties: {
6192
- device: { nullable: true },
6193
- lock: { nullable: true },
6196
+ device: { $ref: '#/components/schemas/device' },
6197
+ lock: { $ref: '#/components/schemas/device' },
6194
6198
  ok: { type: 'boolean' },
6195
6199
  },
6196
- required: ['ok'],
6200
+ required: ['lock', 'device', 'ok'],
6197
6201
  type: 'object',
6198
6202
  },
6199
6203
  },
@@ -6380,11 +6384,17 @@ export default {
6380
6384
  'application/json': {
6381
6385
  schema: {
6382
6386
  properties: {
6383
- devices: { nullable: true },
6384
- locks: { nullable: true },
6387
+ devices: {
6388
+ items: { $ref: '#/components/schemas/device' },
6389
+ type: 'array',
6390
+ },
6391
+ locks: {
6392
+ items: { $ref: '#/components/schemas/device' },
6393
+ type: 'array',
6394
+ },
6385
6395
  ok: { type: 'boolean' },
6386
6396
  },
6387
- required: ['ok'],
6397
+ required: ['locks', 'devices', 'ok'],
6388
6398
  type: 'object',
6389
6399
  },
6390
6400
  },