@seamapi/types 1.423.0 → 1.423.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
@@ -40549,55 +40549,6 @@ var openapi_default = {
40549
40549
  }
40550
40550
  },
40551
40551
  "/devices/simulate/remove": {
40552
- delete: {
40553
- description: "Simulates removing a device from Seam. Only applicable for [sandbox devices](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces). See also [Testing Your App Against Device Disconnection and Removal](https://docs.seam.co/latest/core-concepts/devices/testing-your-app-against-device-disconnection-and-removal).",
40554
- operationId: "devicesSimulateRemoveDelete",
40555
- requestBody: {
40556
- content: {
40557
- "application/json": {
40558
- schema: {
40559
- properties: {
40560
- device_id: {
40561
- description: "ID of the device that you want to simulate removing from Seam.",
40562
- format: "uuid",
40563
- type: "string"
40564
- }
40565
- },
40566
- required: ["device_id"],
40567
- type: "object"
40568
- }
40569
- }
40570
- }
40571
- },
40572
- responses: {
40573
- 200: {
40574
- content: {
40575
- "application/json": {
40576
- schema: {
40577
- properties: { ok: { type: "boolean" } },
40578
- required: ["ok"],
40579
- type: "object"
40580
- }
40581
- }
40582
- },
40583
- description: "OK"
40584
- },
40585
- 400: { description: "Bad Request" },
40586
- 401: { description: "Unauthorized" }
40587
- },
40588
- security: [
40589
- { api_key: [] },
40590
- { pat_with_workspace: [] },
40591
- { console_session_with_workspace: [] },
40592
- { client_session_with_customer: [] }
40593
- ],
40594
- summary: "/devices/simulate/remove",
40595
- tags: ["/devices"],
40596
- "x-fern-sdk-group-name": ["devices", "simulate"],
40597
- "x-fern-sdk-method-name": "remove",
40598
- "x-response-key": null,
40599
- "x-title": "Simulate Device Removal"
40600
- },
40601
40552
  post: {
40602
40553
  description: "Simulates removing a device from Seam. Only applicable for [sandbox devices](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces). See also [Testing Your App Against Device Disconnection and Removal](https://docs.seam.co/latest/core-concepts/devices/testing-your-app-against-device-disconnection-and-removal).",
40603
40554
  operationId: "devicesSimulateRemovePost",
@@ -45237,128 +45188,6 @@ var openapi_default = {
45237
45188
  }
45238
45189
  },
45239
45190
  "/phones/simulate/create_sandbox_phone": {
45240
- get: {
45241
- description: "Creates a new simulated phone in a [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces). See also [Creating a Simulated Phone for a User Identity](https://docs.seam.co/latest/capability-guides/mobile-access/developing-in-a-sandbox-workspace#creating-a-simulated-phone-for-a-user-identity).",
45242
- operationId: "phonesSimulateCreateSandboxPhoneGet",
45243
- requestBody: {
45244
- content: {
45245
- "application/json": {
45246
- schema: {
45247
- properties: {
45248
- assa_abloy_metadata: {
45249
- default: {},
45250
- description: "ASSA ABLOY metadata that you want to associate with the simulated phone.",
45251
- properties: {
45252
- application_version: {
45253
- default: "1.0.0",
45254
- description: "Application version that you want to use for the simulated phone.",
45255
- type: "string"
45256
- },
45257
- ble_capability: {
45258
- default: true,
45259
- description: "Indicates whether the simulated phone should have Bluetooth low energy (BLE) capability.",
45260
- type: "boolean"
45261
- },
45262
- hce_capability: {
45263
- default: false,
45264
- description: "Indicates whether the simulated phone should have host card emulation (HCE) capability.",
45265
- type: "boolean"
45266
- },
45267
- nfc_capability: {
45268
- default: false,
45269
- description: "Indicates whether the simulated phone should have near-field communication (NFC) capability.",
45270
- type: "boolean"
45271
- },
45272
- seos_applet_version: {
45273
- default: "1.0.0",
45274
- description: "SEOS applet version that you want to use for the simulated phone.",
45275
- type: "string"
45276
- },
45277
- seos_tsm_endpoint_id: {
45278
- default: 1,
45279
- description: "ID of the SEOS trusted service manager (TSM) endpoint that you want to use for the simulated phone.",
45280
- format: "float",
45281
- type: "number"
45282
- }
45283
- },
45284
- type: "object"
45285
- },
45286
- custom_sdk_installation_id: {
45287
- description: "ID of the custom SDK installation that you want to use for the simulated phone.",
45288
- type: "string"
45289
- },
45290
- phone_metadata: {
45291
- default: {},
45292
- description: "Metadata that you want to associate with the simulated phone.",
45293
- properties: {
45294
- device_manufacturer: {
45295
- default: "Samsung",
45296
- description: "Manufacturer that you want to use for the simulated phone.",
45297
- type: "string"
45298
- },
45299
- device_model: {
45300
- default: "Samsung Galaxy S10",
45301
- description: "Device model that you want to use for the simulated phone.",
45302
- type: "string"
45303
- },
45304
- operating_system: {
45305
- default: "android",
45306
- description: "Mobile operating system that you want to use for the simulated phone.",
45307
- enum: ["android", "ios"],
45308
- type: "string"
45309
- },
45310
- os_version: {
45311
- default: "10",
45312
- description: "Mobile operating system version that you want to use for the simulated phone.",
45313
- type: "string"
45314
- }
45315
- },
45316
- type: "object"
45317
- },
45318
- user_identity_id: {
45319
- description: "ID of the user identity that you want to associate with the simulated phone.",
45320
- format: "uuid",
45321
- type: "string"
45322
- }
45323
- },
45324
- required: ["user_identity_id"],
45325
- type: "object"
45326
- }
45327
- }
45328
- }
45329
- },
45330
- responses: {
45331
- 200: {
45332
- content: {
45333
- "application/json": {
45334
- schema: {
45335
- properties: {
45336
- ok: { type: "boolean" },
45337
- phone: { $ref: "#/components/schemas/phone" }
45338
- },
45339
- required: ["phone", "ok"],
45340
- type: "object"
45341
- }
45342
- }
45343
- },
45344
- description: "OK"
45345
- },
45346
- 400: { description: "Bad Request" },
45347
- 401: { description: "Unauthorized" }
45348
- },
45349
- security: [
45350
- { api_key: [] },
45351
- { pat_with_workspace: [] },
45352
- { console_session_with_workspace: [] }
45353
- ],
45354
- summary: "/phones/simulate/create_sandbox_phone",
45355
- tags: ["/phones"],
45356
- "x-fern-sdk-group-name": ["phones", "simulate"],
45357
- "x-fern-sdk-method-name": "create_sandbox_phone",
45358
- "x-fern-sdk-return-value": "phone",
45359
- "x-response-key": "phone",
45360
- "x-title": "Create a Sandbox Phone"
45361
- },
45362
45191
  post: {
45363
45192
  description: "Creates a new simulated phone in a [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces). See also [Creating a Simulated Phone for a User Identity](https://docs.seam.co/latest/capability-guides/mobile-access/developing-in-a-sandbox-workspace#creating-a-simulated-phone-for-a-user-identity).",
45364
45193
  operationId: "phonesSimulateCreateSandboxPhonePost",