@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.
- package/dist/connect.cjs +336 -284
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +403 -348
- package/dist/index.cjs +336 -284
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +354 -306
- package/lib/seam/connect/openapi.js +324 -272
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +49 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +324 -272
- package/src/lib/seam/connect/route-types.ts +59 -52
|
@@ -55627,53 +55627,57 @@ export type Routes = {
|
|
|
55627
55627
|
formData: {};
|
|
55628
55628
|
jsonResponse: {
|
|
55629
55629
|
timeline: {
|
|
55630
|
-
|
|
55631
|
-
|
|
55632
|
-
|
|
55633
|
-
|
|
55634
|
-
|
|
55635
|
-
|
|
55636
|
-
|
|
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
|
-
}
|
|
55656
|
-
|
|
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
|
-
}
|
|
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
|
-
|
|
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';
|