@seamapi/types 1.863.0 → 1.864.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). */
@@ -34757,6 +34759,8 @@ export type Routes = {
34757
34759
  time_zone?: string | undefined;
34758
34760
  /** 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
34761
  ical_feed_origin?: string | undefined;
34762
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
34763
+ ical_url?: string | undefined;
34760
34764
  };
34761
34765
  };
34762
34766
  maxDuration: undefined;
@@ -34938,6 +34942,8 @@ export type Routes = {
34938
34942
  time_zone?: string | undefined;
34939
34943
  /** 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
34944
  ical_feed_origin?: string | undefined;
34945
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
34946
+ ical_url?: string | undefined;
34941
34947
  }[];
34942
34948
  /** Information about the current page of results. */
34943
34949
  pagination: {
@@ -35153,6 +35159,8 @@ export type Routes = {
35153
35159
  time_zone?: string | undefined;
35154
35160
  /** 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
35161
  ical_feed_origin?: string | undefined;
35162
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
35163
+ ical_url?: string | undefined;
35156
35164
  };
35157
35165
  };
35158
35166
  maxDuration: undefined;
@@ -76020,6 +76028,8 @@ export type Routes = {
76020
76028
  time_zone?: string | undefined;
76021
76029
  /** 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
76030
  ical_feed_origin?: string | undefined;
76031
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
76032
+ ical_url?: string | undefined;
76023
76033
  }[] | undefined;
76024
76034
  acs_systems?: {
76025
76035
  /** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
@@ -104135,6 +104145,8 @@ export type Routes = {
104135
104145
  time_zone?: string | undefined;
104136
104146
  /** 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
104147
  ical_feed_origin?: string | undefined;
104148
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
104149
+ ical_url?: string | undefined;
104138
104150
  }[] | undefined;
104139
104151
  events?: ({
104140
104152
  /** 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.864.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',
@@ -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?:
@@ -40416,6 +40418,8 @@ export type Routes = {
40416
40418
  time_zone?: string | undefined
40417
40419
  /** 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
40420
  ical_feed_origin?: string | undefined
40421
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
40422
+ ical_url?: string | undefined
40419
40423
  }
40420
40424
  }
40421
40425
  maxDuration: undefined
@@ -40618,6 +40622,8 @@ export type Routes = {
40618
40622
  time_zone?: string | undefined
40619
40623
  /** 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
40624
  ical_feed_origin?: string | undefined
40625
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
40626
+ ical_url?: string | undefined
40621
40627
  }[]
40622
40628
  /** Information about the current page of results. */
40623
40629
  pagination: {
@@ -40862,6 +40868,8 @@ export type Routes = {
40862
40868
  time_zone?: string | undefined
40863
40869
  /** 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
40870
  ical_feed_origin?: string | undefined
40871
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
40872
+ ical_url?: string | undefined
40865
40873
  }
40866
40874
  }
40867
40875
  maxDuration: undefined
@@ -91314,6 +91322,8 @@ export type Routes = {
91314
91322
  time_zone?: string | undefined
91315
91323
  /** 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
91324
  ical_feed_origin?: string | undefined
91325
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
91326
+ ical_url?: string | undefined
91317
91327
  }[]
91318
91328
  | undefined
91319
91329
  acs_systems?:
@@ -124740,6 +124750,8 @@ export type Routes = {
124740
124750
  time_zone?: string | undefined
124741
124751
  /** 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
124752
  ical_feed_origin?: string | undefined
124753
+ /** For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration. */
124754
+ ical_url?: string | undefined
124743
124755
  }[]
124744
124756
  | undefined
124745
124757
  events?: