@raycast/api 1.55.0 → 1.55.2
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 +0 -17
- package/package.json +1 -1
- package/types/index.d.ts +0 -17
package/api.d.ts
CHANGED
|
@@ -455,8 +455,6 @@ declare enum ActionStyle {
|
|
|
455
455
|
Destructive = "destructive"
|
|
456
456
|
}
|
|
457
457
|
|
|
458
|
-
export declare function addBreadcrumb(breadcrumb: Breadcrumb): void;
|
|
459
|
-
|
|
460
458
|
export declare namespace AI {
|
|
461
459
|
/**
|
|
462
460
|
* Returns a prompt completion.
|
|
@@ -651,15 +649,6 @@ export declare interface ArgumentsLaunchProps {
|
|
|
651
649
|
arguments?: Arguments;
|
|
652
650
|
}
|
|
653
651
|
|
|
654
|
-
declare type Breadcrumb = {
|
|
655
|
-
level?: BreadcrumbLevel;
|
|
656
|
-
category?: string;
|
|
657
|
-
message?: string;
|
|
658
|
-
data?: Data;
|
|
659
|
-
};
|
|
660
|
-
|
|
661
|
-
declare type BreadcrumbLevel = "fatal" | "error" | "warning" | "log" | "info" | "debug";
|
|
662
|
-
|
|
663
652
|
/**
|
|
664
653
|
* Caching abstraction that stores data on disk and supports LRU (least recently used) access.
|
|
665
654
|
* Since extensions can only consume up to a max. heap memory size, the cache only maintains a lightweight index in memory
|
|
@@ -1570,12 +1559,6 @@ declare interface CreateSnippetProps {
|
|
|
1570
1559
|
shortcut?: Keyboard.Shortcut;
|
|
1571
1560
|
}
|
|
1572
1561
|
|
|
1573
|
-
declare type Data = {
|
|
1574
|
-
function: string;
|
|
1575
|
-
} | {
|
|
1576
|
-
title: string;
|
|
1577
|
-
} | Record<string, string>;
|
|
1578
|
-
|
|
1579
1562
|
/**
|
|
1580
1563
|
* See {@link Form.DatePicker}
|
|
1581
1564
|
*/
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -433,8 +433,6 @@ declare enum ActionStyle {
|
|
|
433
433
|
Destructive = "destructive"
|
|
434
434
|
}
|
|
435
435
|
|
|
436
|
-
export declare function addBreadcrumb(breadcrumb: Breadcrumb): void;
|
|
437
|
-
|
|
438
436
|
export declare namespace AI {
|
|
439
437
|
/**
|
|
440
438
|
* Returns a prompt completion.
|
|
@@ -629,15 +627,6 @@ export declare interface ArgumentsLaunchProps {
|
|
|
629
627
|
arguments?: Arguments;
|
|
630
628
|
}
|
|
631
629
|
|
|
632
|
-
declare type Breadcrumb = {
|
|
633
|
-
level?: BreadcrumbLevel;
|
|
634
|
-
category?: string;
|
|
635
|
-
message?: string;
|
|
636
|
-
data?: Data;
|
|
637
|
-
};
|
|
638
|
-
|
|
639
|
-
declare type BreadcrumbLevel = "fatal" | "error" | "warning" | "log" | "info" | "debug";
|
|
640
|
-
|
|
641
630
|
/**
|
|
642
631
|
* Caching abstraction that stores data on disk and supports LRU (least recently used) access.
|
|
643
632
|
* Since extensions can only consume up to a max. heap memory size, the cache only maintains a lightweight index in memory
|
|
@@ -1548,12 +1537,6 @@ declare interface CreateSnippetProps {
|
|
|
1548
1537
|
shortcut?: Keyboard.Shortcut;
|
|
1549
1538
|
}
|
|
1550
1539
|
|
|
1551
|
-
declare type Data = {
|
|
1552
|
-
function: string;
|
|
1553
|
-
} | {
|
|
1554
|
-
title: string;
|
|
1555
|
-
} | Record<string, string>;
|
|
1556
|
-
|
|
1557
1540
|
/**
|
|
1558
1541
|
* See {@link Form.DatePicker}
|
|
1559
1542
|
*/
|