@seamapi/types 1.153.2 → 1.154.1

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
@@ -508,6 +508,7 @@ var openapi_default = {
508
508
  is_suspended: { type: "boolean" },
509
509
  phone_number: { nullable: true, type: "string" },
510
510
  user_identity_email_address: { nullable: true, type: "string" },
511
+ user_identity_full_name: { nullable: true, type: "string" },
511
512
  user_identity_id: { type: "string" },
512
513
  user_identity_phone_number: { nullable: true, type: "string" },
513
514
  workspace_id: { format: "uuid", type: "string" }
@@ -2968,8 +2969,7 @@ var openapi_default = {
2968
2969
  summary: "/access_codes/delete",
2969
2970
  tags: ["/access_codes"],
2970
2971
  "x-fern-sdk-group-name": ["access_codes"],
2971
- "x-fern-sdk-method-name": "delete",
2972
- "x-fern-sdk-return-value": "action_attempt"
2972
+ "x-fern-sdk-method-name": "delete"
2973
2973
  }
2974
2974
  },
2975
2975
  "/access_codes/generate_code": {
@@ -3371,8 +3371,7 @@ var openapi_default = {
3371
3371
  summary: "/access_codes/unmanaged/delete",
3372
3372
  tags: ["/access_codes"],
3373
3373
  "x-fern-sdk-group-name": ["access_codes", "unmanaged"],
3374
- "x-fern-sdk-method-name": "delete",
3375
- "x-fern-sdk-return-value": "action_attempt"
3374
+ "x-fern-sdk-method-name": "delete"
3376
3375
  }
3377
3376
  },
3378
3377
  "/access_codes/unmanaged/get": {
@@ -3723,8 +3722,7 @@ var openapi_default = {
3723
3722
  summary: "/access_codes/update",
3724
3723
  tags: ["/access_codes"],
3725
3724
  "x-fern-sdk-group-name": ["access_codes"],
3726
- "x-fern-sdk-method-name": "update",
3727
- "x-fern-sdk-return-value": "action_attempt"
3725
+ "x-fern-sdk-method-name": "update"
3728
3726
  },
3729
3727
  put: {
3730
3728
  operationId: "accessCodesUpdatePut",
@@ -6584,9 +6582,10 @@ var openapi_default = {
6584
6582
  401: { description: "Unauthorized" }
6585
6583
  },
6586
6584
  security: [
6587
- { access_token: [], seam_workspace: [] },
6588
- { seam_client_session_token: [] },
6589
- { client_session_token: [] }
6585
+ { client_session: [] },
6586
+ { pat_with_workspace: [] },
6587
+ { console_session: [] },
6588
+ { api_key: [] }
6590
6589
  ],
6591
6590
  summary: "/connect_webviews/list",
6592
6591
  tags: ["/connect_webviews"],
@@ -6595,34 +6594,6 @@ var openapi_default = {
6595
6594
  "x-fern-sdk-return-value": "connect_webviews"
6596
6595
  }
6597
6596
  },
6598
- "/connect_webviews/view": {
6599
- get: {
6600
- operationId: "connectWebviewsViewGet",
6601
- parameters: [
6602
- {
6603
- in: "query",
6604
- name: "connect_webview_id",
6605
- required: true,
6606
- schema: { format: "uuid", type: "string" }
6607
- },
6608
- {
6609
- in: "query",
6610
- name: "auth_token",
6611
- required: true,
6612
- schema: { type: "string" }
6613
- }
6614
- ],
6615
- responses: {
6616
- 200: { description: "OK" },
6617
- 400: { description: "Bad Request" },
6618
- 401: { description: "Unauthorized" }
6619
- },
6620
- summary: "/connect_webviews/view",
6621
- tags: ["/connect_webviews"],
6622
- "x-fern-sdk-group-name": ["connect_webviews"],
6623
- "x-fern-sdk-method-name": "view"
6624
- }
6625
- },
6626
6597
  "/connected_accounts/delete": {
6627
6598
  post: {
6628
6599
  operationId: "connectedAccountsDeletePost",
@@ -7996,235 +7967,6 @@ var openapi_default = {
7996
7967
  "x-fern-sdk-return-value": "events"
7997
7968
  }
7998
7969
  },
7999
- "/health": {
8000
- get: {
8001
- operationId: "healthGet",
8002
- responses: {
8003
- 200: {
8004
- content: {
8005
- "application/json": {
8006
- schema: {
8007
- properties: {
8008
- last_service_evaluation_at: { type: "string" },
8009
- msg: {
8010
- enum: ["I\u2019m one with the Force. The Force is with me."],
8011
- type: "string"
8012
- },
8013
- ok: { type: "boolean" },
8014
- service_health_statuses: {
8015
- items: { $ref: "#/components/schemas/service_health" },
8016
- type: "array"
8017
- }
8018
- },
8019
- required: ["ok", "msg", "service_health_statuses"],
8020
- type: "object"
8021
- }
8022
- }
8023
- },
8024
- description: "OK"
8025
- },
8026
- 400: { description: "Bad Request" },
8027
- 401: { description: "Unauthorized" }
8028
- },
8029
- summary: "/health",
8030
- tags: ["/health"],
8031
- "x-fern-ignore": true
8032
- },
8033
- post: {
8034
- operationId: "healthPost",
8035
- responses: {
8036
- 200: {
8037
- content: {
8038
- "application/json": {
8039
- schema: {
8040
- properties: {
8041
- last_service_evaluation_at: { type: "string" },
8042
- msg: {
8043
- enum: ["I\u2019m one with the Force. The Force is with me."],
8044
- type: "string"
8045
- },
8046
- ok: { type: "boolean" },
8047
- service_health_statuses: {
8048
- items: { $ref: "#/components/schemas/service_health" },
8049
- type: "array"
8050
- }
8051
- },
8052
- required: ["ok", "msg", "service_health_statuses"],
8053
- type: "object"
8054
- }
8055
- }
8056
- },
8057
- description: "OK"
8058
- },
8059
- 400: { description: "Bad Request" },
8060
- 401: { description: "Unauthorized" }
8061
- },
8062
- summary: "/health",
8063
- tags: ["/health"],
8064
- "x-fern-ignore": true
8065
- }
8066
- },
8067
- "/health/get_health": {
8068
- get: {
8069
- operationId: "healthGetHealthGet",
8070
- responses: {
8071
- 200: {
8072
- content: {
8073
- "application/json": {
8074
- schema: {
8075
- properties: {
8076
- last_service_evaluation_at: { type: "string" },
8077
- msg: {
8078
- enum: ["I\u2019m one with the Force. The Force is with me."],
8079
- type: "string"
8080
- },
8081
- ok: { type: "boolean" },
8082
- service_health_statuses: {
8083
- items: { $ref: "#/components/schemas/service_health" },
8084
- type: "array"
8085
- }
8086
- },
8087
- required: ["ok", "msg", "service_health_statuses"],
8088
- type: "object"
8089
- }
8090
- }
8091
- },
8092
- description: "OK"
8093
- },
8094
- 400: { description: "Bad Request" },
8095
- 401: { description: "Unauthorized" }
8096
- },
8097
- summary: "/health/get_health",
8098
- tags: ["/health"],
8099
- "x-fern-ignore": true
8100
- },
8101
- post: {
8102
- operationId: "healthGetHealthPost",
8103
- responses: {
8104
- 200: {
8105
- content: {
8106
- "application/json": {
8107
- schema: {
8108
- properties: {
8109
- last_service_evaluation_at: { type: "string" },
8110
- msg: {
8111
- enum: ["I\u2019m one with the Force. The Force is with me."],
8112
- type: "string"
8113
- },
8114
- ok: { type: "boolean" },
8115
- service_health_statuses: {
8116
- items: { $ref: "#/components/schemas/service_health" },
8117
- type: "array"
8118
- }
8119
- },
8120
- required: ["ok", "msg", "service_health_statuses"],
8121
- type: "object"
8122
- }
8123
- }
8124
- },
8125
- description: "OK"
8126
- },
8127
- 400: { description: "Bad Request" },
8128
- 401: { description: "Unauthorized" }
8129
- },
8130
- summary: "/health/get_health",
8131
- tags: ["/health"],
8132
- "x-fern-sdk-group-name": ["health"],
8133
- "x-fern-sdk-method-name": "get_health"
8134
- }
8135
- },
8136
- "/health/get_service_health": {
8137
- post: {
8138
- operationId: "healthGetServiceHealthPost",
8139
- requestBody: {
8140
- content: {
8141
- "application/json": {
8142
- schema: {
8143
- properties: { service: { type: "string" } },
8144
- required: ["service"],
8145
- type: "object"
8146
- }
8147
- }
8148
- }
8149
- },
8150
- responses: {
8151
- 200: {
8152
- content: {
8153
- "application/json": {
8154
- schema: {
8155
- properties: {
8156
- last_service_evaluation_at: { type: "string" },
8157
- ok: { type: "boolean" },
8158
- service_health: {
8159
- $ref: "#/components/schemas/service_health"
8160
- }
8161
- },
8162
- required: [
8163
- "ok",
8164
- "last_service_evaluation_at",
8165
- "service_health"
8166
- ],
8167
- type: "object"
8168
- }
8169
- }
8170
- },
8171
- description: "OK"
8172
- },
8173
- 400: { description: "Bad Request" },
8174
- 401: { description: "Unauthorized" }
8175
- },
8176
- summary: "/health/get_service_health",
8177
- tags: ["/health"],
8178
- "x-fern-sdk-group-name": ["health"],
8179
- "x-fern-sdk-method-name": "get_service_health"
8180
- }
8181
- },
8182
- "/health/service/[service_name]": {
8183
- post: {
8184
- operationId: "healthServiceByServiceNamePost",
8185
- requestBody: {
8186
- content: {
8187
- "application/json": {
8188
- schema: {
8189
- properties: { service_name: { type: "string" } },
8190
- required: ["service_name"],
8191
- type: "object"
8192
- }
8193
- }
8194
- }
8195
- },
8196
- responses: {
8197
- 200: {
8198
- content: {
8199
- "application/json": {
8200
- schema: {
8201
- properties: {
8202
- last_service_evaluation_at: { type: "string" },
8203
- ok: { type: "boolean" },
8204
- service_health: {
8205
- $ref: "#/components/schemas/service_health"
8206
- }
8207
- },
8208
- required: [
8209
- "ok",
8210
- "last_service_evaluation_at",
8211
- "service_health"
8212
- ],
8213
- type: "object"
8214
- }
8215
- }
8216
- },
8217
- description: "OK"
8218
- },
8219
- 400: { description: "Bad Request" },
8220
- 401: { description: "Unauthorized" }
8221
- },
8222
- summary: "/health/service/[service_name]",
8223
- tags: ["/health"],
8224
- "x-fern-sdk-group-name": ["health", "service"],
8225
- "x-fern-sdk-method-name": "by_service_name"
8226
- }
8227
- },
8228
7970
  "/locks/get": {
8229
7971
  post: {
8230
7972
  operationId: "locksGetPost",
@@ -8813,8 +8555,7 @@ var openapi_default = {
8813
8555
  summary: "/noise_sensors/noise_thresholds/delete",
8814
8556
  tags: ["/noise_sensors"],
8815
8557
  "x-fern-sdk-group-name": ["noise_sensors", "noise_thresholds"],
8816
- "x-fern-sdk-method-name": "delete",
8817
- "x-fern-sdk-return-value": "action_attempt"
8558
+ "x-fern-sdk-method-name": "delete"
8818
8559
  }
8819
8560
  },
8820
8561
  "/noise_sensors/noise_thresholds/get": {
@@ -9021,8 +8762,7 @@ var openapi_default = {
9021
8762
  summary: "/noise_sensors/noise_thresholds/update",
9022
8763
  tags: ["/noise_sensors"],
9023
8764
  "x-fern-sdk-group-name": ["noise_sensors", "noise_thresholds"],
9024
- "x-fern-sdk-method-name": "update",
9025
- "x-fern-sdk-return-value": "action_attempt"
8765
+ "x-fern-sdk-method-name": "update"
9026
8766
  },
9027
8767
  put: {
9028
8768
  operationId: "noiseSensorsNoiseThresholdsUpdatePut",