@seamapi/types 1.543.0 → 1.544.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.
@@ -55627,53 +55627,57 @@ export type Routes = {
55627
55627
  formData: {};
55628
55628
  jsonResponse: {
55629
55629
  timeline: {
55630
- context: {
55631
- context_type: 'request';
55632
- request_id: string;
55633
- request_payload: {
55634
- [x: string]: any;
55635
- };
55636
- response_payload: {
55637
- [x: string]: any;
55638
- };
55639
- } | {
55640
- context_type: 'job';
55641
- job_id: string;
55642
- };
55643
- entries: {
55644
- resource_type: string;
55645
- resource_id: string;
55646
- entry_type: string;
55647
- body: {
55648
- entry_type: 'resource_created';
55649
- description: string;
55650
- } | {
55651
- entry_type: 'resource_updated';
55652
- description: string;
55653
- properties_updated?: {
55630
+ resource_type: string;
55631
+ resource_id: string;
55632
+ groups: {
55633
+ context: {
55634
+ context_type: 'request';
55635
+ request_id: string;
55636
+ request_payload: {
55654
55637
  [x: string]: any;
55655
- } | undefined;
55656
- errors?: string[] | undefined;
55657
- warnings?: string[] | undefined;
55658
- } | {
55659
- entry_type: 'resource_deleted';
55660
- description: string;
55661
- } | {
55662
- entry_type: 'event';
55663
- event_type: string;
55664
- event_id: string;
55665
- } | {
55666
- entry_type: 'provider_call';
55667
- description: string;
55668
- response_status_code: number;
55669
- response_body?: {
55638
+ };
55639
+ response_payload: {
55670
55640
  [x: string]: any;
55671
- } | undefined;
55641
+ };
55642
+ } | {
55643
+ context_type: 'job';
55644
+ job_id: string;
55672
55645
  };
55646
+ entries: {
55647
+ resource_type: string;
55648
+ resource_id: string;
55649
+ entry_type: string;
55650
+ body: {
55651
+ entry_type: 'resource_created';
55652
+ description: string;
55653
+ } | {
55654
+ entry_type: 'resource_updated';
55655
+ description: string;
55656
+ properties_updated?: {
55657
+ [x: string]: any;
55658
+ } | undefined;
55659
+ errors?: string[] | undefined;
55660
+ warnings?: string[] | undefined;
55661
+ } | {
55662
+ entry_type: 'resource_deleted';
55663
+ description: string;
55664
+ } | {
55665
+ entry_type: 'event';
55666
+ event_type: string;
55667
+ event_id: string;
55668
+ } | {
55669
+ entry_type: 'provider_call';
55670
+ description: string;
55671
+ response_status_code: number;
55672
+ response_body?: {
55673
+ [x: string]: any;
55674
+ } | undefined;
55675
+ };
55676
+ created_at: string;
55677
+ }[];
55673
55678
  created_at: string;
55674
55679
  }[];
55675
- created_at: string;
55676
- }[];
55680
+ };
55677
55681
  /** Information about the current page of results. */
55678
55682
  pagination: {
55679
55683
  /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
@@ -55713,6 +55717,9 @@ export type Routes = {
55713
55717
  workspace_id: string;
55714
55718
  automation_id: string | null;
55715
55719
  partner_resource_id: string | null;
55720
+ partner_key: string | null;
55721
+ resource_type: string | null;
55722
+ resource_type_alias: string | null;
55716
55723
  automation_result?: {
55717
55724
  success: boolean;
55718
55725
  rule: 'reservation_created' | 'reservation_time_updated' | 'reservation_deleted';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.543.0",
3
+ "version": "1.544.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",