@sortsys/v2-client 0.1.8 → 0.1.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/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2102,6 +2102,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
2102
2102
|
expiresAt: Date;
|
|
2103
2103
|
};
|
|
2104
2104
|
roles: (":admin" | "view:users" | "manage:users" | "delete:users" | "view:projects" | "manage:projects" | "delete:projects" | "view:projectDeployments" | "manage:projectDeployments" | "delete:projectDeployments" | "view:tools" | "manage:tools" | "delete:tools" | "view:toolTrackings" | "manage:toolTrackings" | "delete:toolTrackings" | "view:toolInventories" | "manage:toolInventories" | "delete:toolInventories" | "view:products" | "manage:products" | "delete:products" | "view:deliveryNotes" | "manage:deliveryNotes" | "delete:deliveryNotes" | "view:productVendors" | "manage:productVendors" | "delete:productVendors" | "view:contacts" | "manage:contacts" | "delete:contacts" | "view:productPriceRecords" | "manage:productPriceRecords" | "delete:productPriceRecords" | "view:customers" | "manage:customers" | "delete:customers")[];
|
|
2105
|
+
tenant: {
|
|
2106
|
+
companyName: string | null;
|
|
2107
|
+
};
|
|
2105
2108
|
};
|
|
2106
2109
|
meta: object;
|
|
2107
2110
|
}>;
|
|
@@ -3218,6 +3221,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
3218
3221
|
projectId: string;
|
|
3219
3222
|
comment: string | null;
|
|
3220
3223
|
createdByUserId: string | null;
|
|
3224
|
+
createdAt: Date;
|
|
3225
|
+
effectiveTimestamp: Date;
|
|
3221
3226
|
records: {
|
|
3222
3227
|
id: string;
|
|
3223
3228
|
noteId: string;
|
|
@@ -3236,6 +3241,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
3236
3241
|
quantity: number;
|
|
3237
3242
|
comment?: string | null | undefined;
|
|
3238
3243
|
}[];
|
|
3244
|
+
effectiveTimestamp?: Date | null | undefined;
|
|
3239
3245
|
comment?: string | null | undefined;
|
|
3240
3246
|
};
|
|
3241
3247
|
output: {
|
|
@@ -3253,6 +3259,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
3253
3259
|
projectId: string;
|
|
3254
3260
|
comment: string | null;
|
|
3255
3261
|
createdByUserId: string | null;
|
|
3262
|
+
createdAt: Date;
|
|
3263
|
+
effectiveTimestamp: Date;
|
|
3256
3264
|
records: {
|
|
3257
3265
|
id: string;
|
|
3258
3266
|
noteId: string;
|