@seamapi/types 1.423.1 → 1.423.3

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.
@@ -48648,6 +48648,7 @@ declare const _default: {
48648
48648
  exclude: boolean;
48649
48649
  };
48650
48650
  };
48651
+ is_embedded: boolean;
48651
48652
  };
48652
48653
  description: string;
48653
48654
  properties: {
@@ -48693,6 +48694,11 @@ declare const _default: {
48693
48694
  };
48694
48695
  type: string;
48695
48696
  };
48697
+ is_embedded: {
48698
+ default: boolean;
48699
+ description: string;
48700
+ type: string;
48701
+ };
48696
48702
  customer_data?: never;
48697
48703
  };
48698
48704
  type: string;
@@ -49024,6 +49030,24 @@ declare const _default: {
49024
49030
  };
49025
49031
  type: string;
49026
49032
  };
49033
+ property_listings: {
49034
+ description: string;
49035
+ items: {
49036
+ properties: {
49037
+ name: {
49038
+ description: string;
49039
+ type: string;
49040
+ };
49041
+ property_listing_key: {
49042
+ description: string;
49043
+ type: string;
49044
+ };
49045
+ };
49046
+ required: string[];
49047
+ type: string;
49048
+ };
49049
+ type: string;
49050
+ };
49027
49051
  reservations: {
49028
49052
  description: string;
49029
49053
  items: {
@@ -49289,6 +49313,7 @@ declare const _default: {
49289
49313
  type: string;
49290
49314
  };
49291
49315
  features?: never;
49316
+ is_embedded?: never;
49292
49317
  };
49293
49318
  type: string;
49294
49319
  default?: never;
@@ -49680,6 +49705,24 @@ declare const _default: {
49680
49705
  };
49681
49706
  type: string;
49682
49707
  };
49708
+ property_listings: {
49709
+ description: string;
49710
+ items: {
49711
+ properties: {
49712
+ name: {
49713
+ description: string;
49714
+ type: string;
49715
+ };
49716
+ property_listing_key: {
49717
+ description: string;
49718
+ type: string;
49719
+ };
49720
+ };
49721
+ required: string[];
49722
+ type: string;
49723
+ };
49724
+ type: string;
49725
+ };
49683
49726
  reservations: {
49684
49727
  description: string;
49685
49728
  items: {
@@ -56428,6 +56471,106 @@ declare const _default: {
56428
56471
  };
56429
56472
  type: string;
56430
56473
  };
56474
+ is_embedded: {
56475
+ type: string;
56476
+ };
56477
+ };
56478
+ type: string;
56479
+ };
56480
+ ok: {
56481
+ type: string;
56482
+ };
56483
+ };
56484
+ required: string[];
56485
+ type: string;
56486
+ };
56487
+ };
56488
+ };
56489
+ description: string;
56490
+ };
56491
+ 400: {
56492
+ description: string;
56493
+ };
56494
+ 401: {
56495
+ description: string;
56496
+ };
56497
+ };
56498
+ security: {
56499
+ client_session_with_customer: never[];
56500
+ }[];
56501
+ summary: string;
56502
+ tags: never[];
56503
+ 'x-fern-sdk-group-name': string[];
56504
+ 'x-fern-sdk-method-name': string;
56505
+ 'x-fern-sdk-return-value': string;
56506
+ 'x-response-key': string;
56507
+ 'x-title': string;
56508
+ 'x-undocumented': string;
56509
+ };
56510
+ post: {
56511
+ description: string;
56512
+ operationId: string;
56513
+ requestBody: {
56514
+ content: {
56515
+ 'application/json': {
56516
+ schema: {
56517
+ properties: {
56518
+ customer_portal_id: {
56519
+ description: string;
56520
+ type: string;
56521
+ };
56522
+ };
56523
+ required: string[];
56524
+ type: string;
56525
+ };
56526
+ };
56527
+ };
56528
+ };
56529
+ responses: {
56530
+ 200: {
56531
+ content: {
56532
+ 'application/json': {
56533
+ schema: {
56534
+ properties: {
56535
+ customer_portal: {
56536
+ properties: {
56537
+ business_vertical: {
56538
+ description: string;
56539
+ enum: string[];
56540
+ type: string;
56541
+ };
56542
+ features: {
56543
+ properties: {
56544
+ connect: {
56545
+ properties: {
56546
+ exclude: {
56547
+ type: string;
56548
+ };
56549
+ };
56550
+ type: string;
56551
+ };
56552
+ manage_devices: {
56553
+ properties: {
56554
+ exclude: {
56555
+ type: string;
56556
+ };
56557
+ };
56558
+ type: string;
56559
+ };
56560
+ organize: {
56561
+ properties: {
56562
+ exclude: {
56563
+ type: string;
56564
+ };
56565
+ };
56566
+ type: string;
56567
+ };
56568
+ };
56569
+ type: string;
56570
+ };
56571
+ is_embedded: {
56572
+ type: string;
56573
+ };
56431
56574
  };
56432
56575
  type: string;
56433
56576
  };
@@ -90721,6 +90864,8 @@ interface Routes {
90721
90864
  exclude?: boolean;
90722
90865
  };
90723
90866
  };
90867
+ /** Whether the portal is embedded in another application. */
90868
+ is_embedded?: boolean;
90724
90869
  } & {
90725
90870
  customer_data?: {
90726
90871
  /** Your unique identifier for the customer. */
@@ -90781,6 +90926,13 @@ interface Routes {
90781
90926
  /** Your unique identifier for the listing. */
90782
90927
  listing_key: string;
90783
90928
  }> | undefined;
90929
+ /** List of property listings. */
90930
+ property_listings?: Array<{
90931
+ /** Your display name for this location resource. */
90932
+ name: string;
90933
+ /** Your unique identifier for the property listing. */
90934
+ property_listing_key: string;
90935
+ }> | undefined;
90784
90936
  /** List of guests. */
90785
90937
  guests?: Array<{
90786
90938
  /** Your display name for this user identity resource. */
@@ -91034,6 +91186,13 @@ interface Routes {
91034
91186
  /** Your unique identifier for the listing. */
91035
91187
  listing_key: string;
91036
91188
  }> | undefined;
91189
+ /** List of property listings. */
91190
+ property_listings?: Array<{
91191
+ /** Your display name for this location resource. */
91192
+ name: string;
91193
+ /** Your unique identifier for the property listing. */
91194
+ property_listing_key: string;
91195
+ }> | undefined;
91037
91196
  /** List of guests. */
91038
91197
  guests?: Array<{
91039
91198
  /** Your display name for this user identity resource. */
@@ -95884,7 +96043,7 @@ interface Routes {
95884
96043
  event_types?: Array<'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated'> | undefined;
95885
96044
  /** ID of the connected account for which you want to list events. */
95886
96045
  connected_account_id?: string | undefined;
95887
- /** IDs of the connected accounts for which you want to list events. */
96046
+ /** ID of the Connect Webview for which you want to list events. */
95888
96047
  connect_webview_id?: string | undefined;
95889
96048
  /** Numerical limit on the number of events to return. */
95890
96049
  limit?: number;
@@ -113965,7 +114124,7 @@ interface Routes {
113965
114124
  };
113966
114125
  '/seam/customer/v1/portals/get': {
113967
114126
  route: '/seam/customer/v1/portals/get';
113968
- method: 'GET';
114127
+ method: 'GET' | 'POST';
113969
114128
  queryParams: {};
113970
114129
  jsonBody: {};
113971
114130
  commonParams: {
@@ -113986,6 +114145,7 @@ interface Routes {
113986
114145
  exclude?: boolean | undefined;
113987
114146
  } | undefined;
113988
114147
  } | undefined;
114148
+ is_embedded?: boolean | undefined;
113989
114149
  /** Business vertical of the customer portal. */
113990
114150
  business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
113991
114151
  };
@@ -89,6 +89,17 @@ export declare const customer_data: z.ZodObject<{
89
89
  name: string;
90
90
  listing_key: string;
91
91
  }>, "many">>;
92
+ property_listings: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
93
+ name: z.ZodString;
94
+ }, {
95
+ property_listing_key: z.ZodString;
96
+ }>, "strip", z.ZodTypeAny, {
97
+ name: string;
98
+ property_listing_key: string;
99
+ }, {
100
+ name: string;
101
+ property_listing_key: string;
102
+ }>, "many">>;
92
103
  guests: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
93
104
  name: z.ZodString;
94
105
  email_address: z.ZodOptional<z.ZodString>;
@@ -382,6 +393,10 @@ export declare const customer_data: z.ZodObject<{
382
393
  name: string;
383
394
  listing_key: string;
384
395
  }[] | undefined;
396
+ property_listings?: {
397
+ name: string;
398
+ property_listing_key: string;
399
+ }[] | undefined;
385
400
  guests?: {
386
401
  name: string;
387
402
  guest_key: string;
@@ -503,6 +518,10 @@ export declare const customer_data: z.ZodObject<{
503
518
  name: string;
504
519
  listing_key: string;
505
520
  }[] | undefined;
521
+ property_listings?: {
522
+ name: string;
523
+ property_listing_key: string;
524
+ }[] | undefined;
506
525
  guests?: {
507
526
  name: string;
508
527
  guest_key: string;
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import { access_grant_resource, booking_resource, reservation_resource, } from './access-grant-resources.js';
3
- import { building_resource, common_area_resource, facility_resource, listing_resource, neutral_resource, property_resource, room_resource, unit_resource, } from './location-resources.js';
3
+ import { building_resource, common_area_resource, facility_resource, listing_resource, neutral_resource, property_listing_resource, property_resource, room_resource, unit_resource, } from './location-resources.js';
4
4
  import { guest_resource, resident_resource, tenant_resource, user_identity_resource, user_resource, } from './user-identity-resources.js';
5
5
  export const customer_data = z.object({
6
6
  customer_key: z.string().describe('Your unique identifier for the customer.'),
@@ -37,6 +37,10 @@ export const customer_data = z.object({
37
37
  .array(listing_resource)
38
38
  .optional()
39
39
  .describe('List of property listings.'),
40
+ property_listings: z
41
+ .array(property_listing_resource)
42
+ .optional()
43
+ .describe('List of property listings.'),
40
44
  // User identity resources
41
45
  guests: z.array(guest_resource).optional().describe('List of guests.'),
42
46
  tenants: z.array(tenant_resource).optional().describe('List of tenants.'),
@@ -1 +1 @@
1
- {"version":3,"file":"customer-data.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-data.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"customer-data.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,qBAAqB,EACrB,gBAAgB,EAChB,oBAAoB,GACrB,MAAM,6BAA6B,CAAA;AACpC,OAAO,EACL,iBAAiB,EACjB,oBAAoB,EACpB,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,yBAAyB,EACzB,iBAAiB,EACjB,aAAa,EACb,aAAa,GACd,MAAM,yBAAyB,CAAA;AAChC,OAAO,EACL,cAAc,EACd,iBAAiB,EACjB,eAAe,EACf,sBAAsB,EACtB,aAAa,GACd,MAAM,8BAA8B,CAAA;AAErC,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;IAE7E,qBAAqB;IACrB,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,gBAAgB,CAAC;SACvB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,UAAU,EAAE,CAAC;SACV,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,EAAE;SACV,QAAQ,CAAC,uCAAuC,CAAC;IACpD,KAAK,EAAE,CAAC;SACL,KAAK,CAAC,aAAa,CAAC;SACpB,QAAQ,EAAE;SACV,QAAQ,CAAC,qCAAqC,CAAC;IAClD,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,oBAAoB,CAAC;SAC3B,QAAQ,EAAE;SACV,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,KAAK,EAAE,CAAC;SACL,KAAK,CAAC,aAAa,CAAC;SACpB,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,UAAU,EAAE,CAAC;SACV,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,EAAE;SACV,QAAQ,CAAC,oCAAoC,CAAC;IACjD,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,EAAE;SACV,QAAQ,CAAC,oBAAoB,CAAC;IACjC,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,gBAAgB,CAAC;SACvB,QAAQ,EAAE;SACV,QAAQ,CAAC,4BAA4B,CAAC;IACzC,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,yBAAyB,CAAC;SAChC,QAAQ,EAAE;SACV,QAAQ,CAAC,4BAA4B,CAAC;IAEzC,0BAA0B;IAC1B,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC;IACtE,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IACzE,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,EAAE;SACV,QAAQ,CAAC,oBAAoB,CAAC;IACjC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,gBAAgB,CAAC;IACnE,eAAe,EAAE,CAAC;SACf,KAAK,CAAC,sBAAsB,CAAC;SAC7B,QAAQ,EAAE;SACV,QAAQ,CAAC,0BAA0B,CAAC;IAEvC,yBAAyB;IACzB,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,oBAAoB,CAAC;SAC3B,QAAQ,EAAE;SACV,QAAQ,CAAC,uBAAuB,CAAC;IACpC,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAC5E,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,qBAAqB,CAAC;SAC5B,QAAQ,EAAE;SACV,QAAQ,CAAC,wBAAwB,CAAC;CACtC,CAAC,CAAA;AAIF,+CAA+C;AAC/C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,yBAAyB,CAAA;AACvC,cAAc,8BAA8B,CAAA"}
@@ -43,6 +43,7 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
43
43
  exclude?: boolean | undefined;
44
44
  } | undefined;
45
45
  }>>;
46
+ is_embedded: z.ZodDefault<z.ZodBoolean>;
46
47
  }, "strip", z.ZodTypeAny, {
47
48
  features: {
48
49
  connect: {
@@ -55,6 +56,7 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
55
56
  exclude: boolean;
56
57
  };
57
58
  };
59
+ is_embedded: boolean;
58
60
  }, {
59
61
  features?: {
60
62
  connect?: {
@@ -67,5 +69,6 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
67
69
  exclude?: boolean | undefined;
68
70
  } | undefined;
69
71
  } | undefined;
72
+ is_embedded?: boolean | undefined;
70
73
  }>>;
71
74
  export type PortalConfiguration = z.infer<typeof portal_configuration>;
@@ -22,6 +22,10 @@ const base_features = z.object({
22
22
  export const portal_configuration = z
23
23
  .object({
24
24
  features: base_features.default({}),
25
+ is_embedded: z
26
+ .boolean()
27
+ .default(false)
28
+ .describe('Whether the portal is embedded in another application.'),
25
29
  })
26
30
  .default({
27
31
  features: {
@@ -29,6 +33,7 @@ export const portal_configuration = z
29
33
  organize: { exclude: false },
30
34
  manage_devices: { exclude: false },
31
35
  },
36
+ is_embedded: false,
32
37
  })
33
38
  .describe(`Configuration for a customer portal`);
34
39
  //# sourceMappingURL=customer-portal.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,OAAO,EAAE,CAAC;SACP,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CAAC,kDAAkD,CAAC;CAChE,CAAC,CAAA;AAEF,MAAM,oBAAoB,GAAG,YAAY,CAAA;AACzC,MAAM,2BAA2B,GAAG,YAAY,CAAA;AAChD,MAAM,qBAAqB,GAAG,YAAY,CAAA;AAE1C,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7B,OAAO,EAAE,oBAAoB;SAC1B,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,cAAc,EAAE,2BAA2B;SACxC,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,QAAQ,EAAE,qBAAqB;SAC5B,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,yCAAyC,CAAC;CACvD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC;KAClC,MAAM,CAAC;IACN,QAAQ,EAAE,aAAa,CAAC,OAAO,CAAC,EAAE,CAAC;CACpC,CAAC;KACD,OAAO,CAAC;IACP,QAAQ,EAAE;QACR,OAAO,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QAC3B,QAAQ,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QAC5B,cAAc,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;KACnC;CACF,CAAC;KACD,QAAQ,CAAC,qCAAqC,CAAC,CAAA"}
1
+ {"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,OAAO,EAAE,CAAC;SACP,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CAAC,kDAAkD,CAAC;CAChE,CAAC,CAAA;AAEF,MAAM,oBAAoB,GAAG,YAAY,CAAA;AACzC,MAAM,2BAA2B,GAAG,YAAY,CAAA;AAChD,MAAM,qBAAqB,GAAG,YAAY,CAAA;AAE1C,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7B,OAAO,EAAE,oBAAoB;SAC1B,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,cAAc,EAAE,2BAA2B;SACxC,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,QAAQ,EAAE,qBAAqB;SAC5B,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,yCAAyC,CAAC;CACvD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC;KAClC,MAAM,CAAC;IACN,QAAQ,EAAE,aAAa,CAAC,OAAO,CAAC,EAAE,CAAC;IACnC,WAAW,EAAE,CAAC;SACX,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CAAC,wDAAwD,CAAC;CACtE,CAAC;KACD,OAAO,CAAC;IACP,QAAQ,EAAE;QACR,OAAO,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QAC3B,QAAQ,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QAC5B,cAAc,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;KACnC;IACD,WAAW,EAAE,KAAK;CACnB,CAAC;KACD,QAAQ,CAAC,qCAAqC,CAAC,CAAA"}
@@ -87,6 +87,17 @@ export declare const listing_resource: z.ZodObject<z.objectUtil.extendShape<{
87
87
  name: string;
88
88
  listing_key: string;
89
89
  }>;
90
+ export declare const property_listing_resource: z.ZodObject<z.objectUtil.extendShape<{
91
+ name: z.ZodString;
92
+ }, {
93
+ property_listing_key: z.ZodString;
94
+ }>, "strip", z.ZodTypeAny, {
95
+ name: string;
96
+ property_listing_key: string;
97
+ }, {
98
+ name: string;
99
+ property_listing_key: string;
100
+ }>;
90
101
  export declare const location_resource: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
91
102
  name: z.ZodString;
92
103
  }, {
@@ -167,6 +178,16 @@ export declare const location_resource: z.ZodUnion<[z.ZodObject<z.objectUtil.ext
167
178
  }, {
168
179
  name: string;
169
180
  listing_key: string;
181
+ }>, z.ZodObject<z.objectUtil.extendShape<{
182
+ name: z.ZodString;
183
+ }, {
184
+ property_listing_key: z.ZodString;
185
+ }>, "strip", z.ZodTypeAny, {
186
+ name: string;
187
+ property_listing_key: string;
188
+ }, {
189
+ name: string;
190
+ property_listing_key: string;
170
191
  }>]>;
171
192
  export declare const location_key_aliases: z.ZodUnion<[z.ZodObject<{
172
193
  space_key: z.ZodString;
@@ -216,6 +237,12 @@ export declare const location_key_aliases: z.ZodUnion<[z.ZodObject<{
216
237
  listing_key: string;
217
238
  }, {
218
239
  listing_key: string;
240
+ }>, z.ZodObject<{
241
+ property_listing_key: z.ZodString;
242
+ }, "strip", z.ZodTypeAny, {
243
+ property_listing_key: string;
244
+ }, {
245
+ property_listing_key: string;
219
246
  }>]>;
220
247
  export type NeutralResource = z.infer<typeof neutral_resource>;
221
248
  export type PropertyResource = z.infer<typeof property_resource>;
@@ -225,5 +252,6 @@ export type UnitResource = z.infer<typeof unit_resource>;
225
252
  export type FacilityResource = z.infer<typeof facility_resource>;
226
253
  export type BuildingResource = z.infer<typeof building_resource>;
227
254
  export type ListingResource = z.infer<typeof listing_resource>;
255
+ export type PropertyListingResource = z.infer<typeof property_listing_resource>;
228
256
  export type LocationResource = z.infer<typeof location_resource>;
229
257
  export type LocationKeyAliases = z.infer<typeof location_key_aliases>;
@@ -30,6 +30,11 @@ export const building_resource = base_location_resource.extend({
30
30
  export const listing_resource = base_location_resource.extend({
31
31
  listing_key: z.string().describe('Your unique identifier for the listing.'),
32
32
  });
33
+ export const property_listing_resource = base_location_resource.extend({
34
+ property_listing_key: z
35
+ .string()
36
+ .describe('Your unique identifier for the property listing.'),
37
+ });
33
38
  // Union of all location resource types
34
39
  export const location_resource = z.union([
35
40
  neutral_resource,
@@ -40,6 +45,7 @@ export const location_resource = z.union([
40
45
  facility_resource,
41
46
  building_resource,
42
47
  listing_resource,
48
+ property_listing_resource,
43
49
  ]);
44
50
  // All location key aliases for use in references
45
51
  export const location_key_aliases = z.union([
@@ -51,5 +57,6 @@ export const location_key_aliases = z.union([
51
57
  z.object({ facility_key: z.string() }),
52
58
  z.object({ building_key: z.string() }),
53
59
  z.object({ listing_key: z.string() }),
60
+ z.object({ property_listing_key: z.string() }),
54
61
  ]);
55
62
  //# sourceMappingURL=location-resources.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"location-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/location-resources.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"location-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/location-resources.ts"],"names":[],"mappings":"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"}
@@ -26871,6 +26871,7 @@ declare const _default: {
26871
26871
  exclude: boolean;
26872
26872
  };
26873
26873
  };
26874
+ is_embedded: boolean;
26874
26875
  };
26875
26876
  description: string;
26876
26877
  properties: {
@@ -26916,6 +26917,11 @@ declare const _default: {
26916
26917
  };
26917
26918
  type: string;
26918
26919
  };
26920
+ is_embedded: {
26921
+ default: boolean;
26922
+ description: string;
26923
+ type: string;
26924
+ };
26919
26925
  customer_data?: never;
26920
26926
  };
26921
26927
  type: string;
@@ -27247,6 +27253,24 @@ declare const _default: {
27247
27253
  };
27248
27254
  type: string;
27249
27255
  };
27256
+ property_listings: {
27257
+ description: string;
27258
+ items: {
27259
+ properties: {
27260
+ name: {
27261
+ description: string;
27262
+ type: string;
27263
+ };
27264
+ property_listing_key: {
27265
+ description: string;
27266
+ type: string;
27267
+ };
27268
+ };
27269
+ required: string[];
27270
+ type: string;
27271
+ };
27272
+ type: string;
27273
+ };
27250
27274
  reservations: {
27251
27275
  description: string;
27252
27276
  items: {
@@ -27512,6 +27536,7 @@ declare const _default: {
27512
27536
  type: string;
27513
27537
  };
27514
27538
  features?: never;
27539
+ is_embedded?: never;
27515
27540
  };
27516
27541
  type: string;
27517
27542
  default?: never;
@@ -27903,6 +27928,24 @@ declare const _default: {
27903
27928
  };
27904
27929
  type: string;
27905
27930
  };
27931
+ property_listings: {
27932
+ description: string;
27933
+ items: {
27934
+ properties: {
27935
+ name: {
27936
+ description: string;
27937
+ type: string;
27938
+ };
27939
+ property_listing_key: {
27940
+ description: string;
27941
+ type: string;
27942
+ };
27943
+ };
27944
+ required: string[];
27945
+ type: string;
27946
+ };
27947
+ type: string;
27948
+ };
27906
27949
  reservations: {
27907
27950
  description: string;
27908
27951
  items: {
@@ -34651,6 +34694,106 @@ declare const _default: {
34651
34694
  };
34652
34695
  type: string;
34653
34696
  };
34697
+ is_embedded: {
34698
+ type: string;
34699
+ };
34700
+ };
34701
+ type: string;
34702
+ };
34703
+ ok: {
34704
+ type: string;
34705
+ };
34706
+ };
34707
+ required: string[];
34708
+ type: string;
34709
+ };
34710
+ };
34711
+ };
34712
+ description: string;
34713
+ };
34714
+ 400: {
34715
+ description: string;
34716
+ };
34717
+ 401: {
34718
+ description: string;
34719
+ };
34720
+ };
34721
+ security: {
34722
+ client_session_with_customer: never[];
34723
+ }[];
34724
+ summary: string;
34725
+ tags: never[];
34726
+ 'x-fern-sdk-group-name': string[];
34727
+ 'x-fern-sdk-method-name': string;
34728
+ 'x-fern-sdk-return-value': string;
34729
+ 'x-response-key': string;
34730
+ 'x-title': string;
34731
+ 'x-undocumented': string;
34732
+ };
34733
+ post: {
34734
+ description: string;
34735
+ operationId: string;
34736
+ requestBody: {
34737
+ content: {
34738
+ 'application/json': {
34739
+ schema: {
34740
+ properties: {
34741
+ customer_portal_id: {
34742
+ description: string;
34743
+ type: string;
34744
+ };
34745
+ };
34746
+ required: string[];
34747
+ type: string;
34748
+ };
34749
+ };
34750
+ };
34751
+ };
34752
+ responses: {
34753
+ 200: {
34754
+ content: {
34755
+ 'application/json': {
34756
+ schema: {
34757
+ properties: {
34758
+ customer_portal: {
34759
+ properties: {
34760
+ business_vertical: {
34761
+ description: string;
34762
+ enum: string[];
34763
+ type: string;
34764
+ };
34765
+ features: {
34766
+ properties: {
34767
+ connect: {
34768
+ properties: {
34769
+ exclude: {
34770
+ type: string;
34771
+ };
34772
+ };
34773
+ type: string;
34774
+ };
34775
+ manage_devices: {
34776
+ properties: {
34777
+ exclude: {
34778
+ type: string;
34779
+ };
34780
+ };
34781
+ type: string;
34782
+ };
34783
+ organize: {
34784
+ properties: {
34785
+ exclude: {
34786
+ type: string;
34787
+ };
34788
+ };
34789
+ type: string;
34790
+ };
34791
+ };
34792
+ type: string;
34793
+ };
34794
+ is_embedded: {
34795
+ type: string;
34796
+ };
34654
34797
  };
34655
34798
  type: string;
34656
34799
  };