@seamapi/types 1.152.0 → 1.153.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
@@ -40,10 +40,21 @@ var connect_webview = zod.z.object({
40
40
  device_selection_mode: connect_webview_device_selection_mode,
41
41
  // TODO: Use enum value.
42
42
  accepted_providers: zod.z.array(zod.z.string()),
43
- // TODO: Use enum value.
44
- accepted_devices: zod.z.array(zod.z.string()),
43
+ accepted_devices: zod.z.array(zod.z.string()).describe(
44
+ `
45
+ ---
46
+ deprecated: Unused. Will be removed.
47
+ ---
48
+ `
49
+ ),
50
+ any_device_allowed: zod.z.boolean().describe(
51
+ `
52
+ ---
53
+ deprecated: Unused. Will be removed.
54
+ ---
55
+ `
56
+ ),
45
57
  any_provider_allowed: zod.z.boolean(),
46
- any_device_allowed: zod.z.boolean(),
47
58
  login_successful: zod.z.boolean(),
48
59
  status: zod.z.enum(["pending", "failed", "authorized"]),
49
60
  custom_redirect_url: zod.z.string().url().nullable(),
@@ -455,9 +466,16 @@ var openapi_default = {
455
466
  },
456
467
  connect_webview: {
457
468
  properties: {
458
- accepted_devices: { items: { type: "string" }, type: "array" },
469
+ accepted_devices: {
470
+ description: "\n ---\n deprecated: Unused. Will be removed.\n ---\n ",
471
+ items: { type: "string" },
472
+ type: "array"
473
+ },
459
474
  accepted_providers: { items: { type: "string" }, type: "array" },
460
- any_device_allowed: { type: "boolean" },
475
+ any_device_allowed: {
476
+ description: "\n ---\n deprecated: Unused. Will be removed.\n ---\n ",
477
+ type: "boolean"
478
+ },
461
479
  any_provider_allowed: { type: "boolean" },
462
480
  authorized_at: {
463
481
  format: "date-time",
@@ -508,8 +526,8 @@ var openapi_default = {
508
526
  "device_selection_mode",
509
527
  "accepted_providers",
510
528
  "accepted_devices",
511
- "any_provider_allowed",
512
529
  "any_device_allowed",
530
+ "any_provider_allowed",
513
531
  "login_successful",
514
532
  "status",
515
533
  "custom_redirect_url",