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