@ydtb/tk-scope-app 0.14.27 → 0.15.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.
|
@@ -11,7 +11,7 @@ export declare class ErrorBoundary extends Component<Props, State> {
|
|
|
11
11
|
constructor(props: Props);
|
|
12
12
|
static getDerivedStateFromError(error: Error): State;
|
|
13
13
|
componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
|
|
14
|
-
render(): string | number | bigint | boolean |
|
|
14
|
+
render(): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
15
15
|
}
|
|
16
16
|
export {};
|
|
17
17
|
//# sourceMappingURL=ErrorBoundary.d.ts.map
|
|
@@ -51,9 +51,9 @@ export declare const scopeApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
51
51
|
updatedAt: Date;
|
|
52
52
|
};
|
|
53
53
|
member: {
|
|
54
|
-
scopeId: string;
|
|
55
54
|
id: string;
|
|
56
55
|
createdAt: Date;
|
|
56
|
+
scopeId: string;
|
|
57
57
|
userId: string;
|
|
58
58
|
role: string;
|
|
59
59
|
};
|
|
@@ -71,9 +71,9 @@ export declare const scopeApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
71
71
|
updatedAt: Date;
|
|
72
72
|
};
|
|
73
73
|
member: {
|
|
74
|
-
scopeId: string;
|
|
75
74
|
id: string;
|
|
76
75
|
createdAt: Date;
|
|
76
|
+
scopeId: string;
|
|
77
77
|
userId: string;
|
|
78
78
|
role: string;
|
|
79
79
|
};
|
|
@@ -888,8 +888,8 @@ export declare const membersApi: import("@ydtb/tk-scope-api-client").ToolClient<
|
|
|
888
888
|
}>, import("zod").ZodObject<{
|
|
889
889
|
memberId: import("zod").ZodString;
|
|
890
890
|
tier: import("zod").ZodEnum<{
|
|
891
|
-
owner: "owner";
|
|
892
891
|
member: "member";
|
|
892
|
+
owner: "owner";
|
|
893
893
|
}>;
|
|
894
894
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
895
895
|
success: boolean;
|
|
@@ -1520,13 +1520,14 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1520
1520
|
displayOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1521
1521
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
1522
1522
|
role: {
|
|
1523
|
-
scopeId: string;
|
|
1524
1523
|
id: string;
|
|
1525
1524
|
name: string;
|
|
1526
1525
|
scope: string;
|
|
1527
1526
|
slug: string;
|
|
1528
1527
|
createdAt: Date;
|
|
1529
1528
|
updatedAt: Date;
|
|
1529
|
+
scopeId: string;
|
|
1530
|
+
createdById: string | null;
|
|
1530
1531
|
description: string | null;
|
|
1531
1532
|
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1532
1533
|
isSystem: boolean;
|
|
@@ -1537,17 +1538,17 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1537
1538
|
color: string | null;
|
|
1538
1539
|
displayOrder: number;
|
|
1539
1540
|
deletedAt: Date | null;
|
|
1540
|
-
createdById: string | null;
|
|
1541
1541
|
};
|
|
1542
1542
|
}, {
|
|
1543
1543
|
role: {
|
|
1544
|
-
scopeId: string;
|
|
1545
1544
|
id: string;
|
|
1546
1545
|
name: string;
|
|
1547
1546
|
scope: string;
|
|
1548
1547
|
slug: string;
|
|
1549
1548
|
createdAt: Date;
|
|
1550
1549
|
updatedAt: Date;
|
|
1550
|
+
scopeId: string;
|
|
1551
|
+
createdById: string | null;
|
|
1551
1552
|
description: string | null;
|
|
1552
1553
|
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1553
1554
|
isSystem: boolean;
|
|
@@ -1558,7 +1559,6 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1558
1559
|
color: string | null;
|
|
1559
1560
|
displayOrder: number;
|
|
1560
1561
|
deletedAt: Date | null;
|
|
1561
|
-
createdById: string | null;
|
|
1562
1562
|
};
|
|
1563
1563
|
}>, Record<never, never>, Record<never, never>>;
|
|
1564
1564
|
update: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<{
|
|
@@ -1785,13 +1785,14 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1785
1785
|
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1786
1786
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
1787
1787
|
role: {
|
|
1788
|
-
scopeId: string;
|
|
1789
1788
|
id: string;
|
|
1790
1789
|
name: string;
|
|
1791
1790
|
scope: string;
|
|
1792
1791
|
slug: string;
|
|
1793
1792
|
createdAt: Date;
|
|
1794
1793
|
updatedAt: Date;
|
|
1794
|
+
scopeId: string;
|
|
1795
|
+
createdById: string | null;
|
|
1795
1796
|
description: string | null;
|
|
1796
1797
|
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1797
1798
|
isSystem: boolean;
|
|
@@ -1802,17 +1803,17 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1802
1803
|
color: string | null;
|
|
1803
1804
|
displayOrder: number;
|
|
1804
1805
|
deletedAt: Date | null;
|
|
1805
|
-
createdById: string | null;
|
|
1806
1806
|
};
|
|
1807
1807
|
}, {
|
|
1808
1808
|
role: {
|
|
1809
|
-
scopeId: string;
|
|
1810
1809
|
id: string;
|
|
1811
1810
|
name: string;
|
|
1812
1811
|
scope: string;
|
|
1813
1812
|
slug: string;
|
|
1814
1813
|
createdAt: Date;
|
|
1815
1814
|
updatedAt: Date;
|
|
1815
|
+
scopeId: string;
|
|
1816
|
+
createdById: string | null;
|
|
1816
1817
|
description: string | null;
|
|
1817
1818
|
permissions: import("@ydtb/tk-scope-extension/db").RolePermissionEntry[];
|
|
1818
1819
|
isSystem: boolean;
|
|
@@ -1823,7 +1824,6 @@ export declare const rolesApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
1823
1824
|
color: string | null;
|
|
1824
1825
|
displayOrder: number;
|
|
1825
1826
|
deletedAt: Date | null;
|
|
1826
|
-
createdById: string | null;
|
|
1827
1827
|
};
|
|
1828
1828
|
}>, Record<never, never>, Record<never, never>>;
|
|
1829
1829
|
addMember: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<{
|
|
@@ -2006,26 +2006,26 @@ export declare const invitationsApi: import("@ydtb/tk-scope-api-client").ToolCli
|
|
|
2006
2006
|
roleId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2007
2007
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
2008
2008
|
invitation: {
|
|
2009
|
-
|
|
2009
|
+
status: string;
|
|
2010
2010
|
id: string;
|
|
2011
2011
|
createdAt: Date;
|
|
2012
|
+
scopeId: string;
|
|
2012
2013
|
email: string;
|
|
2013
2014
|
role: string;
|
|
2014
|
-
status: string;
|
|
2015
|
-
roleId: string | null;
|
|
2016
2015
|
inviterId: string | null;
|
|
2016
|
+
roleId: string | null;
|
|
2017
2017
|
expiresAt: Date | null;
|
|
2018
2018
|
};
|
|
2019
2019
|
}, {
|
|
2020
2020
|
invitation: {
|
|
2021
|
-
|
|
2021
|
+
status: string;
|
|
2022
2022
|
id: string;
|
|
2023
2023
|
createdAt: Date;
|
|
2024
|
+
scopeId: string;
|
|
2024
2025
|
email: string;
|
|
2025
2026
|
role: string;
|
|
2026
|
-
status: string;
|
|
2027
|
-
roleId: string | null;
|
|
2028
2027
|
inviterId: string | null;
|
|
2028
|
+
roleId: string | null;
|
|
2029
2029
|
expiresAt: Date | null;
|
|
2030
2030
|
};
|
|
2031
2031
|
}>, Record<never, never>, Record<never, never>>;
|
|
@@ -2225,9 +2225,9 @@ export declare const invitationsApi: import("@ydtb/tk-scope-api-client").ToolCli
|
|
|
2225
2225
|
updatedAt: Date;
|
|
2226
2226
|
} | undefined;
|
|
2227
2227
|
member: {
|
|
2228
|
-
scopeId: string;
|
|
2229
2228
|
id: string;
|
|
2230
2229
|
createdAt: Date;
|
|
2230
|
+
scopeId: string;
|
|
2231
2231
|
userId: string;
|
|
2232
2232
|
role: string;
|
|
2233
2233
|
};
|
|
@@ -2252,9 +2252,9 @@ export declare const invitationsApi: import("@ydtb/tk-scope-api-client").ToolCli
|
|
|
2252
2252
|
updatedAt: Date;
|
|
2253
2253
|
} | undefined;
|
|
2254
2254
|
member: {
|
|
2255
|
-
scopeId: string;
|
|
2256
2255
|
id: string;
|
|
2257
2256
|
createdAt: Date;
|
|
2257
|
+
scopeId: string;
|
|
2258
2258
|
userId: string;
|
|
2259
2259
|
role: string;
|
|
2260
2260
|
};
|
|
@@ -2457,27 +2457,27 @@ export declare const joinCodesApi: import("@ydtb/tk-scope-api-client").ToolClien
|
|
|
2457
2457
|
expiresAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2458
2458
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
2459
2459
|
joinCode: {
|
|
2460
|
-
|
|
2460
|
+
status: string;
|
|
2461
2461
|
id: string;
|
|
2462
2462
|
createdAt: Date;
|
|
2463
|
-
|
|
2464
|
-
createdById: string | null;
|
|
2463
|
+
scopeId: string;
|
|
2465
2464
|
expiresAt: Date | null;
|
|
2466
|
-
label: string | null;
|
|
2467
2465
|
code: string;
|
|
2466
|
+
label: string | null;
|
|
2467
|
+
createdById: string | null;
|
|
2468
2468
|
usedBy: string | null;
|
|
2469
2469
|
usedAt: Date | null;
|
|
2470
2470
|
} | undefined;
|
|
2471
2471
|
}, {
|
|
2472
2472
|
joinCode: {
|
|
2473
|
-
|
|
2473
|
+
status: string;
|
|
2474
2474
|
id: string;
|
|
2475
2475
|
createdAt: Date;
|
|
2476
|
-
|
|
2477
|
-
createdById: string | null;
|
|
2476
|
+
scopeId: string;
|
|
2478
2477
|
expiresAt: Date | null;
|
|
2479
|
-
label: string | null;
|
|
2480
2478
|
code: string;
|
|
2479
|
+
label: string | null;
|
|
2480
|
+
createdById: string | null;
|
|
2481
2481
|
usedBy: string | null;
|
|
2482
2482
|
usedAt: Date | null;
|
|
2483
2483
|
} | undefined;
|
|
@@ -3121,25 +3121,25 @@ export declare const scopeChildrenApi: import("@ydtb/tk-scope-api-client").ToolC
|
|
|
3121
3121
|
slug: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3122
3122
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
3123
3123
|
id: string;
|
|
3124
|
-
createdAt: Date;
|
|
3125
|
-
name: string;
|
|
3126
3124
|
scope: string;
|
|
3127
3125
|
parentScope: string | null;
|
|
3128
3126
|
parentScopeId: string | null;
|
|
3127
|
+
name: string;
|
|
3129
3128
|
slug: string;
|
|
3130
3129
|
logo: string | null;
|
|
3131
3130
|
metadata: unknown;
|
|
3131
|
+
createdAt: Date;
|
|
3132
3132
|
updatedAt: Date;
|
|
3133
3133
|
}, {
|
|
3134
3134
|
id: string;
|
|
3135
|
-
createdAt: Date;
|
|
3136
|
-
name: string;
|
|
3137
3135
|
scope: string;
|
|
3138
3136
|
parentScope: string | null;
|
|
3139
3137
|
parentScopeId: string | null;
|
|
3138
|
+
name: string;
|
|
3140
3139
|
slug: string;
|
|
3141
3140
|
logo: string | null;
|
|
3142
3141
|
metadata: unknown;
|
|
3142
|
+
createdAt: Date;
|
|
3143
3143
|
updatedAt: Date;
|
|
3144
3144
|
}>, Record<never, never>, Record<never, never>>;
|
|
3145
3145
|
getById: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<import("@orpc/server").MergedInitialContext<{
|
|
@@ -3426,22 +3426,22 @@ export declare const preferencesApi: import("@ydtb/tk-scope-api-client").ToolCli
|
|
|
3426
3426
|
value: import("zod").ZodString;
|
|
3427
3427
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<{
|
|
3428
3428
|
id: string;
|
|
3429
|
-
scopeId: string;
|
|
3430
|
-
createdAt: Date;
|
|
3431
3429
|
scope: string;
|
|
3430
|
+
createdAt: Date;
|
|
3432
3431
|
updatedAt: Date;
|
|
3432
|
+
scopeId: string;
|
|
3433
3433
|
userId: string;
|
|
3434
|
-
value: string;
|
|
3435
3434
|
key: string;
|
|
3435
|
+
value: string;
|
|
3436
3436
|
} | undefined, {
|
|
3437
3437
|
id: string;
|
|
3438
|
-
scopeId: string;
|
|
3439
|
-
createdAt: Date;
|
|
3440
3438
|
scope: string;
|
|
3439
|
+
createdAt: Date;
|
|
3441
3440
|
updatedAt: Date;
|
|
3441
|
+
scopeId: string;
|
|
3442
3442
|
userId: string;
|
|
3443
|
-
value: string;
|
|
3444
3443
|
key: string;
|
|
3444
|
+
value: string;
|
|
3445
3445
|
} | undefined>, Record<never, never>, Record<never, never>>;
|
|
3446
3446
|
list: import("@orpc/server").DecoratedProcedure<import("@orpc/server").MergedInitialContext<{
|
|
3447
3447
|
headers: Headers;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ydtb/tk-scope-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Platform client shell for tk-scope — pages, layouts, dashboard chrome, onboarding, auth strategies",
|
|
6
6
|
"type": "module",
|
|
@@ -78,20 +78,20 @@
|
|
|
78
78
|
"@orpc/server": "^1.13.14",
|
|
79
79
|
"@orpc/tanstack-query": "^1.13.14",
|
|
80
80
|
"@ydtb/core-client": "^0.13.2",
|
|
81
|
-
"@ydtb/tk-scope
|
|
82
|
-
"@ydtb/tk-scope-dashboard": "0.
|
|
81
|
+
"@ydtb/tk-scope": "0.13.3",
|
|
82
|
+
"@ydtb/tk-scope-dashboard": "0.15.0",
|
|
83
83
|
"@ydtb/tk-scope-api-client": "0.13.0",
|
|
84
|
-
"@ydtb/tk-scope-extension": "0.14.27",
|
|
85
|
-
"@ydtb/tk-scope-lib": "0.13.0",
|
|
86
84
|
"@ydtb/tk-scope-events": "0.14.27",
|
|
87
|
-
"@ydtb/tk-scope-
|
|
88
|
-
"@ydtb/tk-scope-
|
|
85
|
+
"@ydtb/tk-scope-lib": "0.13.0",
|
|
86
|
+
"@ydtb/tk-scope-extension": "0.14.27",
|
|
89
87
|
"@ydtb/tk-scope-notifications": "0.14.27",
|
|
88
|
+
"@ydtb/tk-scope-platform": "0.14.27",
|
|
90
89
|
"@ydtb/tk-scope-onboarding": "0.14.27",
|
|
90
|
+
"@ydtb/tk-scope-auth": "0.14.27",
|
|
91
|
+
"@ydtb/tk-scope-shell": "0.14.14",
|
|
91
92
|
"@ydtb/tk-scope-ui": "0.14.14",
|
|
92
93
|
"@ydtb/tk-scope-search": "0.14.27",
|
|
93
|
-
"@ydtb/tk-scope-
|
|
94
|
-
"@ydtb/tk-scope": "0.13.3"
|
|
94
|
+
"@ydtb/tk-scope-query-client": "0.14.0"
|
|
95
95
|
},
|
|
96
96
|
"peerDependencies": {
|
|
97
97
|
"@tanstack/react-query": ">=5.99.0 <6.0.0",
|