@seamapi/types 1.22.1 → 1.23.0

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.
@@ -1161,6 +1161,9 @@ declare const _default: {
1161
1161
  product_model: {
1162
1162
  type: string;
1163
1163
  };
1164
+ product_name: {
1165
+ type: string;
1166
+ };
1164
1167
  product_type: {
1165
1168
  type: string;
1166
1169
  };
@@ -11858,10 +11861,10 @@ interface Routes {
11858
11861
  workspace_id: string;
11859
11862
  name: string;
11860
11863
  /** deprecated: use external_type */
11861
- access_group_type: 'pti_unit';
11864
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
11862
11865
  /** deprecated: use external_type_display_name */
11863
11866
  access_group_type_display_name: string;
11864
- external_type: 'pti_unit';
11867
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
11865
11868
  external_type_display_name: string;
11866
11869
  created_at: string;
11867
11870
  };
@@ -11894,10 +11897,10 @@ interface Routes {
11894
11897
  workspace_id: string;
11895
11898
  name: string;
11896
11899
  /** deprecated: use external_type */
11897
- access_group_type: 'pti_unit';
11900
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
11898
11901
  /** deprecated: use external_type_display_name */
11899
11902
  access_group_type_display_name: string;
11900
- external_type: 'pti_unit';
11903
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
11901
11904
  external_type_display_name: string;
11902
11905
  created_at: string;
11903
11906
  };
@@ -11920,10 +11923,10 @@ interface Routes {
11920
11923
  workspace_id: string;
11921
11924
  name: string;
11922
11925
  /** deprecated: use external_type */
11923
- access_group_type: 'pti_unit';
11926
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
11924
11927
  /** deprecated: use external_type_display_name */
11925
11928
  access_group_type_display_name: string;
11926
- external_type: 'pti_unit';
11929
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
11927
11930
  external_type_display_name: string;
11928
11931
  created_at: string;
11929
11932
  }>;
@@ -12794,6 +12797,7 @@ interface Routes {
12794
12797
  wyze_metadata?: {
12795
12798
  device_id: string;
12796
12799
  device_name: string;
12800
+ product_name: string;
12797
12801
  product_type: string;
12798
12802
  product_model: string;
12799
12803
  device_info_model: string;
@@ -13200,6 +13204,7 @@ interface Routes {
13200
13204
  wyze_metadata?: {
13201
13205
  device_id: string;
13202
13206
  device_name: string;
13207
+ product_name: string;
13203
13208
  product_type: string;
13204
13209
  product_model: string;
13205
13210
  device_info_model: string;
@@ -14306,6 +14311,7 @@ interface Routes {
14306
14311
  wyze_metadata?: {
14307
14312
  device_id: string;
14308
14313
  device_name: string;
14314
+ product_name: string;
14309
14315
  product_type: string;
14310
14316
  product_model: string;
14311
14317
  device_info_model: string;
@@ -14742,6 +14748,7 @@ interface Routes {
14742
14748
  wyze_metadata?: {
14743
14749
  device_id: string;
14744
14750
  device_name: string;
14751
+ product_name: string;
14745
14752
  product_type: string;
14746
14753
  product_model: string;
14747
14754
  device_info_model: string;
@@ -1110,6 +1110,9 @@ declare const _default: {
1110
1110
  product_model: {
1111
1111
  type: string;
1112
1112
  };
1113
+ product_name: {
1114
+ type: string;
1115
+ };
1113
1116
  product_type: {
1114
1117
  type: string;
1115
1118
  };
@@ -49,7 +49,12 @@ export default {
49
49
  properties: {
50
50
  access_group_type: {
51
51
  description: 'deprecated: use external_type',
52
- enum: ['pti_unit'],
52
+ enum: [
53
+ 'pti_unit',
54
+ 'pti_access_level',
55
+ 'salto_access_group',
56
+ 'brivo_group',
57
+ ],
53
58
  type: 'string',
54
59
  },
55
60
  access_group_type_display_name: {
@@ -59,7 +64,15 @@ export default {
59
64
  acs_access_group_id: { format: 'uuid', type: 'string' },
60
65
  acs_system_id: { format: 'uuid', type: 'string' },
61
66
  created_at: { format: 'date-time', type: 'string' },
62
- external_type: { enum: ['pti_unit'], type: 'string' },
67
+ external_type: {
68
+ enum: [
69
+ 'pti_unit',
70
+ 'pti_access_level',
71
+ 'salto_access_group',
72
+ 'brivo_group',
73
+ ],
74
+ type: 'string',
75
+ },
63
76
  external_type_display_name: { type: 'string' },
64
77
  name: { type: 'string' },
65
78
  workspace_id: { format: 'uuid', type: 'string' },
@@ -763,11 +776,13 @@ export default {
763
776
  device_info_model: { type: 'string' },
764
777
  device_name: { type: 'string' },
765
778
  product_model: { type: 'string' },
779
+ product_name: { type: 'string' },
766
780
  product_type: { type: 'string' },
767
781
  },
768
782
  required: [
769
783
  'device_id',
770
784
  'device_name',
785
+ 'product_name',
771
786
  'product_type',
772
787
  'product_model',
773
788
  'device_info_model',