@seamapi/types 1.863.0 → 1.865.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.
@@ -13600,6 +13600,8 @@ export type Routes = {
13600
13600
  time_zone?: string | undefined;
13601
13601
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
13602
13602
  ical_feed_origin?: string | undefined;
13603
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
13604
+ ical_url?: string | undefined;
13603
13605
  }[] | undefined;
13604
13606
  acs_systems?: {
13605
13607
  /** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
@@ -14071,6 +14073,8 @@ export type Routes = {
14071
14073
  acs_system_id?: string | undefined;
14072
14074
  /** ID of the entrance by which you want to filter the list of Access Grants. */
14073
14075
  acs_entrance_id?: string | undefined;
14076
+ /** ID of the device by which you want to filter the list of Access Grants. */
14077
+ device_id?: string | undefined;
14074
14078
  /**
14075
14079
  * @deprecated Use `space_id`.*/
14076
14080
  location_id?: string | undefined;
@@ -34757,6 +34761,8 @@ export type Routes = {
34757
34761
  time_zone?: string | undefined;
34758
34762
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
34759
34763
  ical_feed_origin?: string | undefined;
34764
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
34765
+ ical_url?: string | undefined;
34760
34766
  };
34761
34767
  };
34762
34768
  maxDuration: undefined;
@@ -34938,6 +34944,8 @@ export type Routes = {
34938
34944
  time_zone?: string | undefined;
34939
34945
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
34940
34946
  ical_feed_origin?: string | undefined;
34947
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
34948
+ ical_url?: string | undefined;
34941
34949
  }[];
34942
34950
  /** Information about the current page of results. */
34943
34951
  pagination: {
@@ -35153,6 +35161,8 @@ export type Routes = {
35153
35161
  time_zone?: string | undefined;
35154
35162
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
35155
35163
  ical_feed_origin?: string | undefined;
35164
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
35165
+ ical_url?: string | undefined;
35156
35166
  };
35157
35167
  };
35158
35168
  maxDuration: undefined;
@@ -76020,6 +76030,8 @@ export type Routes = {
76020
76030
  time_zone?: string | undefined;
76021
76031
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
76022
76032
  ical_feed_origin?: string | undefined;
76033
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
76034
+ ical_url?: string | undefined;
76023
76035
  }[] | undefined;
76024
76036
  acs_systems?: {
76025
76037
  /** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
@@ -104135,6 +104147,8 @@ export type Routes = {
104135
104147
  time_zone?: string | undefined;
104136
104148
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
104137
104149
  ical_feed_origin?: string | undefined;
104150
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
104151
+ ical_url?: string | undefined;
104138
104152
  }[] | undefined;
104139
104153
  events?: ({
104140
104154
  /** ID of the event. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.863.0",
3
+ "version": "1.865.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -379,6 +379,12 @@ export const connected_account = z.object({
379
379
  .describe(
380
380
  "For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo.",
381
381
  ),
382
+ ical_url: z
383
+ .string()
384
+ .optional()
385
+ .describe(
386
+ 'For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration.',
387
+ ),
382
388
  }).describe(`
383
389
  ---
384
390
  route_path: /connected_accounts
@@ -11850,6 +11850,11 @@ const openapi: OpenAPISpec = {
11850
11850
  "For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo.",
11851
11851
  type: 'string',
11852
11852
  },
11853
+ ical_url: {
11854
+ description:
11855
+ 'For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration.',
11856
+ type: 'string',
11857
+ },
11853
11858
  image_url: {
11854
11859
  description: 'Logo URL for the connected account provider.',
11855
11860
  format: 'uri',
@@ -36552,6 +36557,16 @@ const openapi: OpenAPISpec = {
36552
36557
  type: 'string',
36553
36558
  },
36554
36559
  },
36560
+ {
36561
+ in: 'query',
36562
+ name: 'device_id',
36563
+ schema: {
36564
+ description:
36565
+ 'ID of the device by which you want to filter the list of Access Grants.',
36566
+ format: 'uuid',
36567
+ type: 'string',
36568
+ },
36569
+ },
36555
36570
  {
36556
36571
  in: 'query',
36557
36572
  name: 'location_id',
@@ -36680,6 +36695,12 @@ const openapi: OpenAPISpec = {
36680
36695
  'Customer key for which you want to list access grants.',
36681
36696
  type: 'string',
36682
36697
  },
36698
+ device_id: {
36699
+ description:
36700
+ 'ID of the device by which you want to filter the list of Access Grants.',
36701
+ format: 'uuid',
36702
+ type: 'string',
36703
+ },
36683
36704
  limit: {
36684
36705
  default: 500,
36685
36706
  description:
@@ -15659,6 +15659,8 @@ export type Routes = {
15659
15659
  time_zone?: string | undefined
15660
15660
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
15661
15661
  ical_feed_origin?: string | undefined
15662
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
15663
+ ical_url?: string | undefined
15662
15664
  }[]
15663
15665
  | undefined
15664
15666
  acs_systems?:
@@ -16232,6 +16234,8 @@ export type Routes = {
16232
16234
  acs_system_id?: string | undefined
16233
16235
  /** ID of the entrance by which you want to filter the list of Access Grants. */
16234
16236
  acs_entrance_id?: string | undefined
16237
+ /** ID of the device by which you want to filter the list of Access Grants. */
16238
+ device_id?: string | undefined
16235
16239
  /**
16236
16240
  * @deprecated Use `space_id`.*/
16237
16241
  location_id?: string | undefined
@@ -40416,6 +40420,8 @@ export type Routes = {
40416
40420
  time_zone?: string | undefined
40417
40421
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
40418
40422
  ical_feed_origin?: string | undefined
40423
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
40424
+ ical_url?: string | undefined
40419
40425
  }
40420
40426
  }
40421
40427
  maxDuration: undefined
@@ -40618,6 +40624,8 @@ export type Routes = {
40618
40624
  time_zone?: string | undefined
40619
40625
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
40620
40626
  ical_feed_origin?: string | undefined
40627
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
40628
+ ical_url?: string | undefined
40621
40629
  }[]
40622
40630
  /** Information about the current page of results. */
40623
40631
  pagination: {
@@ -40862,6 +40870,8 @@ export type Routes = {
40862
40870
  time_zone?: string | undefined
40863
40871
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
40864
40872
  ical_feed_origin?: string | undefined
40873
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
40874
+ ical_url?: string | undefined
40865
40875
  }
40866
40876
  }
40867
40877
  maxDuration: undefined
@@ -91314,6 +91324,8 @@ export type Routes = {
91314
91324
  time_zone?: string | undefined
91315
91325
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
91316
91326
  ical_feed_origin?: string | undefined
91327
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
91328
+ ical_url?: string | undefined
91317
91329
  }[]
91318
91330
  | undefined
91319
91331
  acs_systems?:
@@ -124740,6 +124752,8 @@ export type Routes = {
124740
124752
  time_zone?: string | undefined
124741
124753
  /** For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo. */
124742
124754
  ical_feed_origin?: string | undefined
124755
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
124756
+ ical_url?: string | undefined
124743
124757
  }[]
124744
124758
  | undefined
124745
124759
  events?: