@seamapi/types 1.101.0 → 1.102.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 CHANGED
@@ -3874,6 +3874,10 @@ var openapi_default = {
3874
3874
  },
3875
3875
  external_type_display_name: { type: "string" },
3876
3876
  is_multi_phone_sync_credential: { type: "boolean" },
3877
+ parent_credential_id: {
3878
+ format: "uuid",
3879
+ type: "string"
3880
+ },
3877
3881
  starts_at: { type: "string" },
3878
3882
  visionline_metadata: {
3879
3883
  properties: {
@@ -3967,6 +3971,10 @@ var openapi_default = {
3967
3971
  },
3968
3972
  external_type_display_name: { type: "string" },
3969
3973
  is_multi_phone_sync_credential: { type: "boolean" },
3974
+ parent_credential_id: {
3975
+ format: "uuid",
3976
+ type: "string"
3977
+ },
3970
3978
  starts_at: { type: "string" },
3971
3979
  visionline_metadata: {
3972
3980
  properties: {
@@ -4097,6 +4105,10 @@ var openapi_default = {
4097
4105
  },
4098
4106
  external_type_display_name: { type: "string" },
4099
4107
  is_multi_phone_sync_credential: { type: "boolean" },
4108
+ parent_credential_id: {
4109
+ format: "uuid",
4110
+ type: "string"
4111
+ },
4100
4112
  starts_at: { type: "string" },
4101
4113
  visionline_metadata: {
4102
4114
  properties: {
@@ -4235,6 +4247,10 @@ var openapi_default = {
4235
4247
  },
4236
4248
  external_type_display_name: { type: "string" },
4237
4249
  is_multi_phone_sync_credential: { type: "boolean" },
4250
+ parent_credential_id: {
4251
+ format: "uuid",
4252
+ type: "string"
4253
+ },
4238
4254
  starts_at: { type: "string" },
4239
4255
  visionline_metadata: {
4240
4256
  properties: {
@@ -4357,6 +4373,10 @@ var openapi_default = {
4357
4373
  },
4358
4374
  external_type_display_name: { type: "string" },
4359
4375
  is_multi_phone_sync_credential: { type: "boolean" },
4376
+ parent_credential_id: {
4377
+ format: "uuid",
4378
+ type: "string"
4379
+ },
4360
4380
  starts_at: { type: "string" },
4361
4381
  visionline_metadata: {
4362
4382
  properties: {
@@ -4456,6 +4476,10 @@ var openapi_default = {
4456
4476
  },
4457
4477
  external_type_display_name: { type: "string" },
4458
4478
  is_multi_phone_sync_credential: { type: "boolean" },
4479
+ parent_credential_id: {
4480
+ format: "uuid",
4481
+ type: "string"
4482
+ },
4459
4483
  starts_at: { type: "string" },
4460
4484
  visionline_metadata: {
4461
4485
  properties: {
@@ -4549,6 +4573,10 @@ var openapi_default = {
4549
4573
  },
4550
4574
  external_type_display_name: { type: "string" },
4551
4575
  is_multi_phone_sync_credential: { type: "boolean" },
4576
+ parent_credential_id: {
4577
+ format: "uuid",
4578
+ type: "string"
4579
+ },
4552
4580
  starts_at: { type: "string" },
4553
4581
  visionline_metadata: {
4554
4582
  properties: {
@@ -4645,6 +4673,10 @@ var openapi_default = {
4645
4673
  },
4646
4674
  external_type_display_name: { type: "string" },
4647
4675
  is_multi_phone_sync_credential: { type: "boolean" },
4676
+ parent_credential_id: {
4677
+ format: "uuid",
4678
+ type: "string"
4679
+ },
4648
4680
  starts_at: { type: "string" },
4649
4681
  visionline_metadata: {
4650
4682
  properties: {
@@ -4738,6 +4770,10 @@ var openapi_default = {
4738
4770
  },
4739
4771
  external_type_display_name: { type: "string" },
4740
4772
  is_multi_phone_sync_credential: { type: "boolean" },
4773
+ parent_credential_id: {
4774
+ format: "uuid",
4775
+ type: "string"
4776
+ },
4741
4777
  starts_at: { type: "string" },
4742
4778
  visionline_metadata: {
4743
4779
  properties: {
@@ -5067,6 +5103,10 @@ var openapi_default = {
5067
5103
  },
5068
5104
  external_type_display_name: { type: "string" },
5069
5105
  is_multi_phone_sync_credential: { type: "boolean" },
5106
+ parent_credential_id: {
5107
+ format: "uuid",
5108
+ type: "string"
5109
+ },
5070
5110
  starts_at: { type: "string" },
5071
5111
  visionline_metadata: {
5072
5112
  properties: {
@@ -11488,6 +11528,91 @@ var openapi_default = {
11488
11528
  "x-fern-sdk-return-value": "webhooks"
11489
11529
  }
11490
11530
  },
11531
+ "/webhooks/update": {
11532
+ post: {
11533
+ operationId: "webhooksUpdatePost",
11534
+ requestBody: {
11535
+ content: {
11536
+ "application/json": {
11537
+ schema: {
11538
+ properties: {
11539
+ event_types: { items: { type: "string" }, type: "array" },
11540
+ webhook_id: { type: "string" }
11541
+ },
11542
+ required: ["webhook_id", "event_types"],
11543
+ type: "object"
11544
+ }
11545
+ }
11546
+ }
11547
+ },
11548
+ responses: {
11549
+ 200: {
11550
+ content: {
11551
+ "application/json": {
11552
+ schema: {
11553
+ properties: { ok: { type: "boolean" } },
11554
+ required: ["ok"],
11555
+ type: "object"
11556
+ }
11557
+ }
11558
+ },
11559
+ description: "OK"
11560
+ },
11561
+ 400: { description: "Bad Request" },
11562
+ 401: { description: "Unauthorized" }
11563
+ },
11564
+ security: [
11565
+ { access_token: [], seam_workspace: [] },
11566
+ { seam_client_session_token: [] },
11567
+ { client_session_token: [] }
11568
+ ],
11569
+ summary: "/webhooks/update",
11570
+ tags: ["/webhooks"],
11571
+ "x-fern-sdk-group-name": ["webhooks"],
11572
+ "x-fern-sdk-method-name": "update"
11573
+ },
11574
+ put: {
11575
+ operationId: "webhooksUpdatePut",
11576
+ requestBody: {
11577
+ content: {
11578
+ "application/json": {
11579
+ schema: {
11580
+ properties: {
11581
+ event_types: { items: { type: "string" }, type: "array" },
11582
+ webhook_id: { type: "string" }
11583
+ },
11584
+ required: ["webhook_id", "event_types"],
11585
+ type: "object"
11586
+ }
11587
+ }
11588
+ }
11589
+ },
11590
+ responses: {
11591
+ 200: {
11592
+ content: {
11593
+ "application/json": {
11594
+ schema: {
11595
+ properties: { ok: { type: "boolean" } },
11596
+ required: ["ok"],
11597
+ type: "object"
11598
+ }
11599
+ }
11600
+ },
11601
+ description: "OK"
11602
+ },
11603
+ 400: { description: "Bad Request" },
11604
+ 401: { description: "Unauthorized" }
11605
+ },
11606
+ security: [
11607
+ { access_token: [], seam_workspace: [] },
11608
+ { seam_client_session_token: [] },
11609
+ { client_session_token: [] }
11610
+ ],
11611
+ summary: "/webhooks/update",
11612
+ tags: ["/webhooks"],
11613
+ "x-fern-ignore": true
11614
+ }
11615
+ },
11491
11616
  "/workspaces/create": {
11492
11617
  post: {
11493
11618
  operationId: "workspacesCreatePost",