@ydtb/tk-scope-app 0.14.7 → 0.14.10
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/src/components/ErrorBoundary.d.ts +1 -1
- package/dist/src/contexts/command/SearchPanelContext.d.ts +3 -0
- package/dist/src/contexts/command/SearchPanelContext.d.ts.map +1 -1
- package/dist/src/contexts/command/SearchPanelContext.js +26 -5
- package/dist/src/contexts/command/SearchPanelContext.js.map +1 -1
- package/dist/src/contexts/events/EventsAdapter.d.ts +29 -0
- package/dist/src/contexts/events/EventsAdapter.d.ts.map +1 -0
- package/dist/src/contexts/events/EventsAdapter.js +189 -0
- package/dist/src/contexts/events/EventsAdapter.js.map +1 -0
- package/dist/src/contexts/events/index.d.ts +2 -0
- package/dist/src/contexts/events/index.d.ts.map +1 -0
- package/dist/src/contexts/events/index.js +2 -0
- package/dist/src/contexts/events/index.js.map +1 -0
- package/dist/src/create-app.d.ts.map +1 -1
- package/dist/src/create-app.js +2 -1
- package/dist/src/create-app.js.map +1 -1
- package/dist/src/dashboard/command/SearchPanelBody.d.ts.map +1 -1
- package/dist/src/dashboard/command/SearchPanelBody.js +37 -3
- package/dist/src/dashboard/command/SearchPanelBody.js.map +1 -1
- package/dist/src/hooks/useCreateScope.d.ts +1 -1
- package/dist/src/lib/platform-api.d.ts +48 -43
- package/dist/src/lib/platform-api.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +10 -9
|
@@ -39,12 +39,12 @@ export declare const scopeApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
39
39
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
40
40
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
41
41
|
scope: {
|
|
42
|
-
slug: string;
|
|
43
42
|
id: string;
|
|
44
43
|
name: string;
|
|
45
44
|
scope: string;
|
|
46
45
|
parentScope: string | null;
|
|
47
46
|
parentScopeId: string | null;
|
|
47
|
+
slug: string;
|
|
48
48
|
logo: string | null;
|
|
49
49
|
metadata: unknown;
|
|
50
50
|
createdAt: Date;
|
|
@@ -59,12 +59,12 @@ export declare const scopeApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
59
59
|
};
|
|
60
60
|
}, {
|
|
61
61
|
scope: {
|
|
62
|
-
slug: string;
|
|
63
62
|
id: string;
|
|
64
63
|
name: string;
|
|
65
64
|
scope: string;
|
|
66
65
|
parentScope: string | null;
|
|
67
66
|
parentScopeId: string | null;
|
|
67
|
+
slug: string;
|
|
68
68
|
logo: string | null;
|
|
69
69
|
metadata: unknown;
|
|
70
70
|
createdAt: Date;
|
|
@@ -858,8 +858,8 @@ export declare const membersApi: import("@ydtb/tk-scope-api-client").ToolClient<
|
|
|
858
858
|
}>, import("zod").ZodObject<{
|
|
859
859
|
memberId: import("zod").ZodString;
|
|
860
860
|
tier: import("zod").ZodEnum<{
|
|
861
|
-
owner: "owner";
|
|
862
861
|
member: "member";
|
|
862
|
+
owner: "owner";
|
|
863
863
|
}>;
|
|
864
864
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
865
865
|
success: boolean;
|
|
@@ -1466,15 +1466,16 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1466
1466
|
displayOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1467
1467
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
1468
1468
|
role: {
|
|
1469
|
-
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1470
|
-
slug: string;
|
|
1471
1469
|
id: string;
|
|
1472
1470
|
name: string;
|
|
1473
1471
|
scope: string;
|
|
1472
|
+
slug: string;
|
|
1474
1473
|
createdAt: Date;
|
|
1475
1474
|
updatedAt: Date;
|
|
1476
|
-
description: string | null;
|
|
1477
1475
|
scopeId: string;
|
|
1476
|
+
createdById: string | null;
|
|
1477
|
+
description: string | null;
|
|
1478
|
+
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1478
1479
|
isSystem: boolean;
|
|
1479
1480
|
isDefault: boolean;
|
|
1480
1481
|
isGuest: boolean;
|
|
@@ -1483,19 +1484,19 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1483
1484
|
color: string | null;
|
|
1484
1485
|
displayOrder: number;
|
|
1485
1486
|
deletedAt: Date | null;
|
|
1486
|
-
createdById: string | null;
|
|
1487
1487
|
};
|
|
1488
1488
|
}, {
|
|
1489
1489
|
role: {
|
|
1490
|
-
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1491
|
-
slug: string;
|
|
1492
1490
|
id: string;
|
|
1493
1491
|
name: string;
|
|
1494
1492
|
scope: string;
|
|
1493
|
+
slug: string;
|
|
1495
1494
|
createdAt: Date;
|
|
1496
1495
|
updatedAt: Date;
|
|
1497
|
-
description: string | null;
|
|
1498
1496
|
scopeId: string;
|
|
1497
|
+
createdById: string | null;
|
|
1498
|
+
description: string | null;
|
|
1499
|
+
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1499
1500
|
isSystem: boolean;
|
|
1500
1501
|
isDefault: boolean;
|
|
1501
1502
|
isGuest: boolean;
|
|
@@ -1504,7 +1505,6 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1504
1505
|
color: string | null;
|
|
1505
1506
|
displayOrder: number;
|
|
1506
1507
|
deletedAt: Date | null;
|
|
1507
|
-
createdById: string | null;
|
|
1508
1508
|
};
|
|
1509
1509
|
}>, Record<never, never>, Record<never, never>>;
|
|
1510
1510
|
update: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<{
|
|
@@ -1722,15 +1722,16 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1722
1722
|
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1723
1723
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
1724
1724
|
role: {
|
|
1725
|
-
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1726
|
-
slug: string;
|
|
1727
1725
|
id: string;
|
|
1728
1726
|
name: string;
|
|
1729
1727
|
scope: string;
|
|
1728
|
+
slug: string;
|
|
1730
1729
|
createdAt: Date;
|
|
1731
1730
|
updatedAt: Date;
|
|
1732
|
-
description: string | null;
|
|
1733
1731
|
scopeId: string;
|
|
1732
|
+
createdById: string | null;
|
|
1733
|
+
description: string | null;
|
|
1734
|
+
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1734
1735
|
isSystem: boolean;
|
|
1735
1736
|
isDefault: boolean;
|
|
1736
1737
|
isGuest: boolean;
|
|
@@ -1739,19 +1740,19 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1739
1740
|
color: string | null;
|
|
1740
1741
|
displayOrder: number;
|
|
1741
1742
|
deletedAt: Date | null;
|
|
1742
|
-
createdById: string | null;
|
|
1743
1743
|
};
|
|
1744
1744
|
}, {
|
|
1745
1745
|
role: {
|
|
1746
|
-
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1747
|
-
slug: string;
|
|
1748
1746
|
id: string;
|
|
1749
1747
|
name: string;
|
|
1750
1748
|
scope: string;
|
|
1749
|
+
slug: string;
|
|
1751
1750
|
createdAt: Date;
|
|
1752
1751
|
updatedAt: Date;
|
|
1753
|
-
description: string | null;
|
|
1754
1752
|
scopeId: string;
|
|
1753
|
+
createdById: string | null;
|
|
1754
|
+
description: string | null;
|
|
1755
|
+
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1755
1756
|
isSystem: boolean;
|
|
1756
1757
|
isDefault: boolean;
|
|
1757
1758
|
isGuest: boolean;
|
|
@@ -1760,7 +1761,6 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1760
1761
|
color: string | null;
|
|
1761
1762
|
displayOrder: number;
|
|
1762
1763
|
deletedAt: Date | null;
|
|
1763
|
-
createdById: string | null;
|
|
1764
1764
|
};
|
|
1765
1765
|
}>, Record<never, never>, Record<never, never>>;
|
|
1766
1766
|
addMember: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<{
|
|
@@ -1934,26 +1934,26 @@ export declare const invitationsApi: import("@ydtb/tk-scope-api-client").ToolCli
|
|
|
1934
1934
|
roleId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1935
1935
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
1936
1936
|
invitation: {
|
|
1937
|
+
status: string;
|
|
1937
1938
|
id: string;
|
|
1938
1939
|
createdAt: Date;
|
|
1939
1940
|
scopeId: string;
|
|
1940
1941
|
email: string;
|
|
1941
1942
|
role: string;
|
|
1942
|
-
roleId: string | null;
|
|
1943
|
-
status: string;
|
|
1944
1943
|
inviterId: string | null;
|
|
1944
|
+
roleId: string | null;
|
|
1945
1945
|
expiresAt: Date | null;
|
|
1946
1946
|
} | undefined;
|
|
1947
1947
|
}, {
|
|
1948
1948
|
invitation: {
|
|
1949
|
+
status: string;
|
|
1949
1950
|
id: string;
|
|
1950
1951
|
createdAt: Date;
|
|
1951
1952
|
scopeId: string;
|
|
1952
1953
|
email: string;
|
|
1953
1954
|
role: string;
|
|
1954
|
-
roleId: string | null;
|
|
1955
|
-
status: string;
|
|
1956
1955
|
inviterId: string | null;
|
|
1956
|
+
roleId: string | null;
|
|
1957
1957
|
expiresAt: Date | null;
|
|
1958
1958
|
} | undefined;
|
|
1959
1959
|
}>, Record<never, never>, Record<never, never>>;
|
|
@@ -2357,27 +2357,27 @@ export declare const joinCodesApi: import("@ydtb/tk-scope-api-client").ToolClien
|
|
|
2357
2357
|
expiresAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2358
2358
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
2359
2359
|
joinCode: {
|
|
2360
|
+
status: string;
|
|
2360
2361
|
id: string;
|
|
2361
2362
|
createdAt: Date;
|
|
2362
2363
|
scopeId: string;
|
|
2363
|
-
createdById: string | null;
|
|
2364
|
-
status: string;
|
|
2365
2364
|
expiresAt: Date | null;
|
|
2366
2365
|
code: string;
|
|
2367
2366
|
label: string | null;
|
|
2367
|
+
createdById: string | null;
|
|
2368
2368
|
usedBy: string | null;
|
|
2369
2369
|
usedAt: Date | null;
|
|
2370
2370
|
} | undefined;
|
|
2371
2371
|
}, {
|
|
2372
2372
|
joinCode: {
|
|
2373
|
+
status: string;
|
|
2373
2374
|
id: string;
|
|
2374
2375
|
createdAt: Date;
|
|
2375
2376
|
scopeId: string;
|
|
2376
|
-
createdById: string | null;
|
|
2377
|
-
status: string;
|
|
2378
2377
|
expiresAt: Date | null;
|
|
2379
2378
|
code: string;
|
|
2380
2379
|
label: string | null;
|
|
2380
|
+
createdById: string | null;
|
|
2381
2381
|
usedBy: string | null;
|
|
2382
2382
|
usedAt: Date | null;
|
|
2383
2383
|
} | undefined;
|
|
@@ -2997,27 +2997,27 @@ export declare const scopeChildrenApi: import("@ydtb/tk-scope-api-client").ToolC
|
|
|
2997
2997
|
name: import("zod").ZodString;
|
|
2998
2998
|
slug: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2999
2999
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
3000
|
+
id: string;
|
|
3000
3001
|
createdAt: Date;
|
|
3001
|
-
updatedAt: Date;
|
|
3002
3002
|
scope: string;
|
|
3003
|
-
id: string;
|
|
3004
|
-
name: string;
|
|
3005
|
-
slug: string;
|
|
3006
3003
|
parentScope: string | null;
|
|
3007
3004
|
parentScopeId: string | null;
|
|
3005
|
+
name: string;
|
|
3006
|
+
slug: string;
|
|
3008
3007
|
logo: string | null;
|
|
3009
3008
|
metadata: unknown;
|
|
3009
|
+
updatedAt: Date;
|
|
3010
3010
|
}, {
|
|
3011
|
+
id: string;
|
|
3011
3012
|
createdAt: Date;
|
|
3012
|
-
updatedAt: Date;
|
|
3013
3013
|
scope: string;
|
|
3014
|
-
id: string;
|
|
3015
|
-
name: string;
|
|
3016
|
-
slug: string;
|
|
3017
3014
|
parentScope: string | null;
|
|
3018
3015
|
parentScopeId: string | null;
|
|
3016
|
+
name: string;
|
|
3017
|
+
slug: string;
|
|
3019
3018
|
logo: string | null;
|
|
3020
3019
|
metadata: unknown;
|
|
3020
|
+
updatedAt: Date;
|
|
3021
3021
|
}>, Record<never, never>, Record<never, never>>;
|
|
3022
3022
|
getById: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<{
|
|
3023
3023
|
headers: Headers;
|
|
@@ -3299,23 +3299,23 @@ export declare const preferencesApi: import("@ydtb/tk-scope-api-client").ToolCli
|
|
|
3299
3299
|
key: import("zod").ZodString;
|
|
3300
3300
|
value: import("zod").ZodString;
|
|
3301
3301
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
3302
|
+
id: string;
|
|
3303
|
+
scopeId: string;
|
|
3304
|
+
userId: string;
|
|
3302
3305
|
createdAt: Date;
|
|
3303
|
-
updatedAt: Date;
|
|
3304
3306
|
scope: string;
|
|
3305
|
-
|
|
3306
|
-
id: string;
|
|
3307
|
+
updatedAt: Date;
|
|
3307
3308
|
key: string;
|
|
3308
3309
|
value: string;
|
|
3309
|
-
userId: string;
|
|
3310
3310
|
} | undefined, {
|
|
3311
|
+
id: string;
|
|
3312
|
+
scopeId: string;
|
|
3313
|
+
userId: string;
|
|
3311
3314
|
createdAt: Date;
|
|
3312
|
-
updatedAt: Date;
|
|
3313
3315
|
scope: string;
|
|
3314
|
-
|
|
3315
|
-
id: string;
|
|
3316
|
+
updatedAt: Date;
|
|
3316
3317
|
key: string;
|
|
3317
3318
|
value: string;
|
|
3318
|
-
userId: string;
|
|
3319
3319
|
} | undefined>, Record<never, never>, Record<never, never>>;
|
|
3320
3320
|
list: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<{
|
|
3321
3321
|
headers: Headers;
|
|
@@ -3431,17 +3431,20 @@ export declare const searchApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
3431
3431
|
}>, import("zod").ZodObject<{
|
|
3432
3432
|
query: import("zod").ZodString;
|
|
3433
3433
|
providerId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3434
|
+
filters: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
3434
3435
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
3435
3436
|
results: import("@ydtb/tk-scope-search").SearchHit[];
|
|
3436
3437
|
providers: {
|
|
3437
3438
|
id: string;
|
|
3438
3439
|
label: string;
|
|
3440
|
+
filters: import("@ydtb/tk-scope-search").ProviderFilter[] | undefined;
|
|
3439
3441
|
}[];
|
|
3440
3442
|
}, {
|
|
3441
3443
|
results: import("@ydtb/tk-scope-search").SearchHit[];
|
|
3442
3444
|
providers: {
|
|
3443
3445
|
id: string;
|
|
3444
3446
|
label: string;
|
|
3447
|
+
filters: import("@ydtb/tk-scope-search").ProviderFilter[] | undefined;
|
|
3445
3448
|
}[];
|
|
3446
3449
|
}>, Record<never, never>, Record<never, never>>;
|
|
3447
3450
|
recent: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<{
|
|
@@ -3479,12 +3482,14 @@ export declare const searchApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
3479
3482
|
providers: {
|
|
3480
3483
|
id: string;
|
|
3481
3484
|
label: string;
|
|
3485
|
+
filters: import("@ydtb/tk-scope-search").ProviderFilter[] | undefined;
|
|
3482
3486
|
}[];
|
|
3483
3487
|
}, {
|
|
3484
3488
|
items: import("@ydtb/tk-scope-search").SearchHit[];
|
|
3485
3489
|
providers: {
|
|
3486
3490
|
id: string;
|
|
3487
3491
|
label: string;
|
|
3492
|
+
filters: import("@ydtb/tk-scope-search").ProviderFilter[] | undefined;
|
|
3488
3493
|
}[];
|
|
3489
3494
|
}>, Record<never, never>, Record<never, never>>;
|
|
3490
3495
|
commands: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platform-api.d.ts","sourceRoot":"","sources":["../../../src/lib/platform-api.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"platform-api.d.ts","sourceRoot":"","sources":["../../../src/lib/platform-api.ts"],"names":[],"mappings":"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"}
|