@raycast/api 1.54.1 → 1.55.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/api.d.ts CHANGED
@@ -652,7 +652,6 @@ export declare interface ArgumentsLaunchProps {
652
652
  }
653
653
 
654
654
  declare type Breadcrumb = {
655
- type?: BreadcrumbType;
656
655
  level?: BreadcrumbLevel;
657
656
  category?: string;
658
657
  message?: string;
@@ -661,8 +660,6 @@ declare type Breadcrumb = {
661
660
 
662
661
  declare type BreadcrumbLevel = "fatal" | "error" | "warning" | "log" | "info" | "debug";
663
662
 
664
- declare type BreadcrumbType = "default" | "debug" | "error" | "navigation" | "http" | "info" | "query" | "transaction" | "ui" | "user";
665
-
666
663
  /**
667
664
  * Caching abstraction that stores data on disk and supports LRU (least recently used) access.
668
665
  * Since extensions can only consume up to a max. heap memory size, the cache only maintains a lightweight index in memory
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raycast/api",
3
- "version": "1.54.1",
3
+ "version": "1.55.1",
4
4
  "description": "Build extensions for Raycast with React and Node.js.",
5
5
  "author": "Raycast Technologies Ltd.",
6
6
  "homepage": "https://developers.raycast.com",
package/types/index.d.ts CHANGED
@@ -630,7 +630,6 @@ export declare interface ArgumentsLaunchProps {
630
630
  }
631
631
 
632
632
  declare type Breadcrumb = {
633
- type?: BreadcrumbType;
634
633
  level?: BreadcrumbLevel;
635
634
  category?: string;
636
635
  message?: string;
@@ -639,8 +638,6 @@ declare type Breadcrumb = {
639
638
 
640
639
  declare type BreadcrumbLevel = "fatal" | "error" | "warning" | "log" | "info" | "debug";
641
640
 
642
- declare type BreadcrumbType = "default" | "debug" | "error" | "navigation" | "http" | "info" | "query" | "transaction" | "ui" | "user";
643
-
644
641
  /**
645
642
  * Caching abstraction that stores data on disk and supports LRU (least recently used) access.
646
643
  * Since extensions can only consume up to a max. heap memory size, the cache only maintains a lightweight index in memory