@seamapi/types 1.247.0 → 1.248.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.
@@ -394,6 +394,9 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
394
394
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
395
395
  display_name: z.ZodString;
396
396
  code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
397
+ card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
398
+ is_encoded: z.ZodOptional<z.ZodBoolean>;
399
+ encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
397
400
  access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
398
401
  external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
399
402
  external_type_display_name: z.ZodOptional<z.ZodString>;
@@ -475,6 +478,9 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
475
478
  acs_user_id?: string | undefined;
476
479
  acs_credential_pool_id?: string | undefined;
477
480
  parent_acs_credential_id?: string | undefined;
481
+ card_number?: string | null | undefined;
482
+ is_encoded?: boolean | undefined;
483
+ encoded_at?: string | null | undefined;
478
484
  is_multi_phone_sync_credential?: boolean | undefined;
479
485
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
480
486
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -511,6 +517,9 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
511
517
  acs_user_id?: string | undefined;
512
518
  acs_credential_pool_id?: string | undefined;
513
519
  parent_acs_credential_id?: string | undefined;
520
+ card_number?: string | null | undefined;
521
+ is_encoded?: boolean | undefined;
522
+ encoded_at?: string | null | undefined;
514
523
  is_multi_phone_sync_credential?: boolean | undefined;
515
524
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
516
525
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -532,6 +541,9 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
532
541
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
533
542
  display_name: z.ZodString;
534
543
  code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
544
+ card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
545
+ is_encoded: z.ZodOptional<z.ZodBoolean>;
546
+ encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
535
547
  access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
536
548
  external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
537
549
  external_type_display_name: z.ZodOptional<z.ZodString>;
@@ -613,6 +625,9 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
613
625
  acs_user_id?: string | undefined;
614
626
  acs_credential_pool_id?: string | undefined;
615
627
  parent_acs_credential_id?: string | undefined;
628
+ card_number?: string | null | undefined;
629
+ is_encoded?: boolean | undefined;
630
+ encoded_at?: string | null | undefined;
616
631
  is_multi_phone_sync_credential?: boolean | undefined;
617
632
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
618
633
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -649,6 +664,9 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
649
664
  acs_user_id?: string | undefined;
650
665
  acs_credential_pool_id?: string | undefined;
651
666
  parent_acs_credential_id?: string | undefined;
667
+ card_number?: string | null | undefined;
668
+ is_encoded?: boolean | undefined;
669
+ encoded_at?: string | null | undefined;
652
670
  is_multi_phone_sync_credential?: boolean | undefined;
653
671
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
654
672
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -9536,6 +9554,10 @@ declare const _default: {
9536
9554
  format: string;
9537
9555
  type: string;
9538
9556
  };
9557
+ card_number: {
9558
+ nullable: boolean;
9559
+ type: string;
9560
+ };
9539
9561
  code: {
9540
9562
  nullable: boolean;
9541
9563
  type: string;
@@ -9548,6 +9570,11 @@ declare const _default: {
9548
9570
  minLength: number;
9549
9571
  type: string;
9550
9572
  };
9573
+ encoded_at: {
9574
+ format: string;
9575
+ nullable: boolean;
9576
+ type: string;
9577
+ };
9551
9578
  ends_at: {
9552
9579
  type: string;
9553
9580
  };
@@ -9573,6 +9600,9 @@ declare const _default: {
9573
9600
  external_type_display_name: {
9574
9601
  type: string;
9575
9602
  };
9603
+ is_encoded: {
9604
+ type: string;
9605
+ };
9576
9606
  is_latest_desired_state_synced_with_provider: {
9577
9607
  type: string;
9578
9608
  };
@@ -16504,6 +16534,10 @@ declare const _default: {
16504
16534
  format: string;
16505
16535
  type: string;
16506
16536
  };
16537
+ card_number: {
16538
+ nullable: boolean;
16539
+ type: string;
16540
+ };
16507
16541
  code: {
16508
16542
  nullable: boolean;
16509
16543
  type: string;
@@ -16516,6 +16550,11 @@ declare const _default: {
16516
16550
  minLength: number;
16517
16551
  type: string;
16518
16552
  };
16553
+ encoded_at: {
16554
+ format: string;
16555
+ nullable: boolean;
16556
+ type: string;
16557
+ };
16519
16558
  ends_at: {
16520
16559
  type: string;
16521
16560
  };
@@ -16541,6 +16580,9 @@ declare const _default: {
16541
16580
  external_type_display_name: {
16542
16581
  type: string;
16543
16582
  };
16583
+ is_encoded: {
16584
+ type: string;
16585
+ };
16544
16586
  is_latest_desired_state_synced_with_provider: {
16545
16587
  type: string;
16546
16588
  };
@@ -16751,6 +16793,10 @@ declare const _default: {
16751
16793
  format: string;
16752
16794
  type: string;
16753
16795
  };
16796
+ card_number: {
16797
+ nullable: boolean;
16798
+ type: string;
16799
+ };
16754
16800
  code: {
16755
16801
  nullable: boolean;
16756
16802
  type: string;
@@ -16763,6 +16809,11 @@ declare const _default: {
16763
16809
  minLength: number;
16764
16810
  type: string;
16765
16811
  };
16812
+ encoded_at: {
16813
+ format: string;
16814
+ nullable: boolean;
16815
+ type: string;
16816
+ };
16766
16817
  ends_at: {
16767
16818
  type: string;
16768
16819
  };
@@ -16788,6 +16839,9 @@ declare const _default: {
16788
16839
  external_type_display_name: {
16789
16840
  type: string;
16790
16841
  };
16842
+ is_encoded: {
16843
+ type: string;
16844
+ };
16791
16845
  is_latest_desired_state_synced_with_provider: {
16792
16846
  type: string;
16793
16847
  };
@@ -24649,9 +24703,6 @@ declare const _default: {
24649
24703
  ok: {
24650
24704
  type: string;
24651
24705
  };
24652
- thermostat_schedule: {
24653
- $ref: string;
24654
- };
24655
24706
  };
24656
24707
  required: string[];
24657
24708
  type: string;
@@ -24735,9 +24786,6 @@ declare const _default: {
24735
24786
  ok: {
24736
24787
  type: string;
24737
24788
  };
24738
- thermostat_schedule: {
24739
- $ref: string;
24740
- };
24741
24789
  };
24742
24790
  required: string[];
24743
24791
  type: string;
@@ -24993,9 +25041,6 @@ declare const _default: {
24993
25041
  'application/json': {
24994
25042
  schema: {
24995
25043
  properties: {
24996
- climate_preset: {
24997
- $ref: string;
24998
- };
24999
25044
  ok: {
25000
25045
  type: string;
25001
25046
  };
@@ -25090,9 +25135,6 @@ declare const _default: {
25090
25135
  'application/json': {
25091
25136
  schema: {
25092
25137
  properties: {
25093
- climate_preset: {
25094
- $ref: string;
25095
- };
25096
25138
  ok: {
25097
25139
  type: string;
25098
25140
  };
@@ -29904,6 +29946,9 @@ interface Routes {
29904
29946
  parent_acs_credential_id?: string | undefined;
29905
29947
  display_name: string;
29906
29948
  code?: (string | undefined) | null;
29949
+ card_number?: (string | undefined) | null;
29950
+ is_encoded?: boolean | undefined;
29951
+ encoded_at?: (string | undefined) | null;
29907
29952
  access_method: 'code' | 'card' | 'mobile_key';
29908
29953
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
29909
29954
  external_type_display_name?: string | undefined;
@@ -29970,6 +30015,9 @@ interface Routes {
29970
30015
  parent_acs_credential_id?: string | undefined;
29971
30016
  display_name: string;
29972
30017
  code?: (string | undefined) | null;
30018
+ card_number?: (string | undefined) | null;
30019
+ is_encoded?: boolean | undefined;
30020
+ encoded_at?: (string | undefined) | null;
29973
30021
  access_method: 'code' | 'card' | 'mobile_key';
29974
30022
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
29975
30023
  external_type_display_name?: string | undefined;
@@ -30030,6 +30078,9 @@ interface Routes {
30030
30078
  parent_acs_credential_id?: string | undefined;
30031
30079
  display_name: string;
30032
30080
  code?: (string | undefined) | null;
30081
+ card_number?: (string | undefined) | null;
30082
+ is_encoded?: boolean | undefined;
30083
+ encoded_at?: (string | undefined) | null;
30033
30084
  access_method: 'code' | 'card' | 'mobile_key';
30034
30085
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
30035
30086
  external_type_display_name?: string | undefined;
@@ -30090,6 +30141,9 @@ interface Routes {
30090
30141
  parent_acs_credential_id?: string | undefined;
30091
30142
  display_name: string;
30092
30143
  code?: (string | undefined) | null;
30144
+ card_number?: (string | undefined) | null;
30145
+ is_encoded?: boolean | undefined;
30146
+ encoded_at?: (string | undefined) | null;
30093
30147
  access_method: 'code' | 'card' | 'mobile_key';
30094
30148
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
30095
30149
  external_type_display_name?: string | undefined;
@@ -30176,6 +30230,9 @@ interface Routes {
30176
30230
  parent_acs_credential_id?: string | undefined;
30177
30231
  display_name: string;
30178
30232
  code?: (string | undefined) | null;
30233
+ card_number?: (string | undefined) | null;
30234
+ is_encoded?: boolean | undefined;
30235
+ encoded_at?: (string | undefined) | null;
30179
30236
  access_method: 'code' | 'card' | 'mobile_key';
30180
30237
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
30181
30238
  external_type_display_name?: string | undefined;
@@ -30225,6 +30282,9 @@ interface Routes {
30225
30282
  parent_acs_credential_id?: string | undefined;
30226
30283
  display_name: string;
30227
30284
  code?: (string | undefined) | null;
30285
+ card_number?: (string | undefined) | null;
30286
+ is_encoded?: boolean | undefined;
30287
+ encoded_at?: (string | undefined) | null;
30228
30288
  access_method: 'code' | 'card' | 'mobile_key';
30229
30289
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
30230
30290
  external_type_display_name?: string | undefined;
@@ -30281,6 +30341,9 @@ interface Routes {
30281
30341
  parent_acs_credential_id?: string | undefined;
30282
30342
  display_name: string;
30283
30343
  code?: (string | undefined) | null;
30344
+ card_number?: (string | undefined) | null;
30345
+ is_encoded?: boolean | undefined;
30346
+ encoded_at?: (string | undefined) | null;
30284
30347
  access_method: 'code' | 'card' | 'mobile_key';
30285
30348
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
30286
30349
  external_type_display_name?: string | undefined;
@@ -30332,6 +30395,9 @@ interface Routes {
30332
30395
  parent_acs_credential_id?: string | undefined;
30333
30396
  display_name: string;
30334
30397
  code?: (string | undefined) | null;
30398
+ card_number?: (string | undefined) | null;
30399
+ is_encoded?: boolean | undefined;
30400
+ encoded_at?: (string | undefined) | null;
30335
30401
  access_method: 'code' | 'card' | 'mobile_key';
30336
30402
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
30337
30403
  external_type_display_name?: string | undefined;
@@ -30467,6 +30533,9 @@ interface Routes {
30467
30533
  parent_acs_credential_id?: string | undefined;
30468
30534
  display_name: string;
30469
30535
  code?: (string | undefined) | null;
30536
+ card_number?: (string | undefined) | null;
30537
+ is_encoded?: boolean | undefined;
30538
+ encoded_at?: (string | undefined) | null;
30470
30539
  access_method: 'code' | 'card' | 'mobile_key';
30471
30540
  external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
30472
30541
  external_type_display_name?: string | undefined;
@@ -41953,20 +42022,7 @@ interface Routes {
41953
42022
  };
41954
42023
  commonParams: {};
41955
42024
  formData: {};
41956
- jsonResponse: {
41957
- thermostat_schedule: {
41958
- thermostat_schedule_id: string;
41959
- device_id: string;
41960
- name?: string | undefined;
41961
- climate_preset_key: string;
41962
- max_override_period_minutes?: number;
41963
- starts_at: string;
41964
- ends_at: string;
41965
- created_at: string;
41966
- /** Collection of errors associated with the thermostat schedule, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
41967
- errors?: any;
41968
- };
41969
- };
42025
+ jsonResponse: {};
41970
42026
  };
41971
42027
  '/thermostats/set_fallback_climate_preset': {
41972
42028
  route: '/thermostats/set_fallback_climate_preset';
@@ -42400,22 +42456,7 @@ interface Routes {
42400
42456
  };
42401
42457
  commonParams: {};
42402
42458
  formData: {};
42403
- jsonResponse: {
42404
- climate_preset: {
42405
- climate_preset_key: string;
42406
- can_edit: boolean;
42407
- can_delete: boolean;
42408
- name?: string | null;
42409
- display_name: string;
42410
- fan_mode_setting?: ('auto' | 'on') | undefined;
42411
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
42412
- cooling_set_point_celsius?: number | undefined;
42413
- heating_set_point_celsius?: number | undefined;
42414
- cooling_set_point_fahrenheit?: number | undefined;
42415
- heating_set_point_fahrenheit?: number | undefined;
42416
- manual_override_allowed: boolean;
42417
- };
42418
- };
42459
+ jsonResponse: {};
42419
42460
  };
42420
42461
  '/user_identities/add_acs_user': {
42421
42462
  route: '/user_identities/add_acs_user';
@@ -10,6 +10,9 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
10
10
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
11
11
  display_name: z.ZodString;
12
12
  code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13
+ card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14
+ is_encoded: z.ZodOptional<z.ZodBoolean>;
15
+ encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13
16
  access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
14
17
  external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
15
18
  external_type_display_name: z.ZodOptional<z.ZodString>;
@@ -91,6 +94,9 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
91
94
  acs_user_id?: string | undefined;
92
95
  acs_credential_pool_id?: string | undefined;
93
96
  parent_acs_credential_id?: string | undefined;
97
+ card_number?: string | null | undefined;
98
+ is_encoded?: boolean | undefined;
99
+ encoded_at?: string | null | undefined;
94
100
  is_multi_phone_sync_credential?: boolean | undefined;
95
101
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
96
102
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -127,6 +133,9 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
127
133
  acs_user_id?: string | undefined;
128
134
  acs_credential_pool_id?: string | undefined;
129
135
  parent_acs_credential_id?: string | undefined;
136
+ card_number?: string | null | undefined;
137
+ is_encoded?: boolean | undefined;
138
+ encoded_at?: string | null | undefined;
130
139
  is_multi_phone_sync_credential?: boolean | undefined;
131
140
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
132
141
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -148,6 +157,9 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
148
157
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
149
158
  display_name: z.ZodString;
150
159
  code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
160
+ card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
161
+ is_encoded: z.ZodOptional<z.ZodBoolean>;
162
+ encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
151
163
  access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
152
164
  external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
153
165
  external_type_display_name: z.ZodOptional<z.ZodString>;
@@ -229,6 +241,9 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
229
241
  acs_user_id?: string | undefined;
230
242
  acs_credential_pool_id?: string | undefined;
231
243
  parent_acs_credential_id?: string | undefined;
244
+ card_number?: string | null | undefined;
245
+ is_encoded?: boolean | undefined;
246
+ encoded_at?: string | null | undefined;
232
247
  is_multi_phone_sync_credential?: boolean | undefined;
233
248
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
234
249
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -265,6 +280,9 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
265
280
  acs_user_id?: string | undefined;
266
281
  acs_credential_pool_id?: string | undefined;
267
282
  parent_acs_credential_id?: string | undefined;
283
+ card_number?: string | null | undefined;
284
+ is_encoded?: boolean | undefined;
285
+ encoded_at?: string | null | undefined;
268
286
  is_multi_phone_sync_credential?: boolean | undefined;
269
287
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
270
288
  latest_desired_state_synced_with_provider_at?: string | undefined;
@@ -21,6 +21,9 @@ const common_acs_credential = z.object({
21
21
  parent_acs_credential_id: z.string().uuid().optional(),
22
22
  display_name: z.string().min(1),
23
23
  code: z.string().optional().nullable(),
24
+ card_number: z.string().optional().nullable(),
25
+ is_encoded: z.boolean().optional(),
26
+ encoded_at: z.string().datetime().optional().nullable(),
24
27
  access_method: acs_credential_access_method_type,
25
28
  external_type: acs_credential_external_type.optional(),
26
29
  external_type_display_name: z.string().optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,kCAAkC,EAAE,MAAM,qBAAqB,CAAA;AAExE,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;IACjB,qBAAqB;CACtB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;CACb,CAAC,CAAA;AAMF,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACtD,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtC,aAAa,EAAE,iCAAiC;IAChD,aAAa,EAAE,4BAA4B,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,MAAM,EAAE,CAAC,CAAC,KAAK,CACb,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,QAAQ,EAAE,CAAC,CAAC,KAAK,CACf,CAAC,CAAC,MAAM,CAAC;QACP,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,8BAA8B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACtD,4CAA4C,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACpE,4CAA4C,EAAE,CAAC;SAC5C,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,mBAAmB,EAAE,kCAAkC,CAAC,QAAQ,EAAE;CACnE,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,qBAAqB,CAAC,KAAK,CACvD,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC5B,CAAC,CACH,CAAA;AAED,MAAM,CAAC,MAAM,wBAAwB,GAAG,qBAAqB,CAAC,KAAK,CACjE,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;CAC7B,CAAC,CACH,CAAA"}
1
+ {"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
@@ -244,6 +244,10 @@ declare const _default: {
244
244
  format: string;
245
245
  type: string;
246
246
  };
247
+ card_number: {
248
+ nullable: boolean;
249
+ type: string;
250
+ };
247
251
  code: {
248
252
  nullable: boolean;
249
253
  type: string;
@@ -256,6 +260,11 @@ declare const _default: {
256
260
  minLength: number;
257
261
  type: string;
258
262
  };
263
+ encoded_at: {
264
+ format: string;
265
+ nullable: boolean;
266
+ type: string;
267
+ };
259
268
  ends_at: {
260
269
  type: string;
261
270
  };
@@ -281,6 +290,9 @@ declare const _default: {
281
290
  external_type_display_name: {
282
291
  type: string;
283
292
  };
293
+ is_encoded: {
294
+ type: string;
295
+ };
284
296
  is_latest_desired_state_synced_with_provider: {
285
297
  type: string;
286
298
  };
@@ -7212,6 +7224,10 @@ declare const _default: {
7212
7224
  format: string;
7213
7225
  type: string;
7214
7226
  };
7227
+ card_number: {
7228
+ nullable: boolean;
7229
+ type: string;
7230
+ };
7215
7231
  code: {
7216
7232
  nullable: boolean;
7217
7233
  type: string;
@@ -7224,6 +7240,11 @@ declare const _default: {
7224
7240
  minLength: number;
7225
7241
  type: string;
7226
7242
  };
7243
+ encoded_at: {
7244
+ format: string;
7245
+ nullable: boolean;
7246
+ type: string;
7247
+ };
7227
7248
  ends_at: {
7228
7249
  type: string;
7229
7250
  };
@@ -7249,6 +7270,9 @@ declare const _default: {
7249
7270
  external_type_display_name: {
7250
7271
  type: string;
7251
7272
  };
7273
+ is_encoded: {
7274
+ type: string;
7275
+ };
7252
7276
  is_latest_desired_state_synced_with_provider: {
7253
7277
  type: string;
7254
7278
  };
@@ -7459,6 +7483,10 @@ declare const _default: {
7459
7483
  format: string;
7460
7484
  type: string;
7461
7485
  };
7486
+ card_number: {
7487
+ nullable: boolean;
7488
+ type: string;
7489
+ };
7462
7490
  code: {
7463
7491
  nullable: boolean;
7464
7492
  type: string;
@@ -7471,6 +7499,11 @@ declare const _default: {
7471
7499
  minLength: number;
7472
7500
  type: string;
7473
7501
  };
7502
+ encoded_at: {
7503
+ format: string;
7504
+ nullable: boolean;
7505
+ type: string;
7506
+ };
7474
7507
  ends_at: {
7475
7508
  type: string;
7476
7509
  };
@@ -7496,6 +7529,9 @@ declare const _default: {
7496
7529
  external_type_display_name: {
7497
7530
  type: string;
7498
7531
  };
7532
+ is_encoded: {
7533
+ type: string;
7534
+ };
7499
7535
  is_latest_desired_state_synced_with_provider: {
7500
7536
  type: string;
7501
7537
  };
@@ -15357,9 +15393,6 @@ declare const _default: {
15357
15393
  ok: {
15358
15394
  type: string;
15359
15395
  };
15360
- thermostat_schedule: {
15361
- $ref: string;
15362
- };
15363
15396
  };
15364
15397
  required: string[];
15365
15398
  type: string;
@@ -15443,9 +15476,6 @@ declare const _default: {
15443
15476
  ok: {
15444
15477
  type: string;
15445
15478
  };
15446
- thermostat_schedule: {
15447
- $ref: string;
15448
- };
15449
15479
  };
15450
15480
  required: string[];
15451
15481
  type: string;
@@ -15701,9 +15731,6 @@ declare const _default: {
15701
15731
  'application/json': {
15702
15732
  schema: {
15703
15733
  properties: {
15704
- climate_preset: {
15705
- $ref: string;
15706
- };
15707
15734
  ok: {
15708
15735
  type: string;
15709
15736
  };
@@ -15798,9 +15825,6 @@ declare const _default: {
15798
15825
  'application/json': {
15799
15826
  schema: {
15800
15827
  properties: {
15801
- climate_preset: {
15802
- $ref: string;
15803
- };
15804
15828
  ok: {
15805
15829
  type: string;
15806
15830
  };