@secrecy/trpc-api-types 1.33.0-feat-remove-me-domain.8 → 1.33.0-feat-remove-me-domain.9
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.cts +24 -12
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -11354,9 +11354,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
11354
11354
|
};
|
|
11355
11355
|
id: string;
|
|
11356
11356
|
createdAt: Date;
|
|
11357
|
-
users: {
|
|
11358
|
-
userId: string;
|
|
11359
|
-
}[];
|
|
11360
11357
|
ownerId: string;
|
|
11361
11358
|
blocked: boolean;
|
|
11362
11359
|
name: string;
|
|
@@ -11372,6 +11369,12 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
11372
11369
|
id: string;
|
|
11373
11370
|
} | null;
|
|
11374
11371
|
};
|
|
11372
|
+
developers: {
|
|
11373
|
+
id: string;
|
|
11374
|
+
lastname: string;
|
|
11375
|
+
firstname: string;
|
|
11376
|
+
}[];
|
|
11377
|
+
usersCount: number;
|
|
11375
11378
|
};
|
|
11376
11379
|
_output_out: {
|
|
11377
11380
|
plan: {
|
|
@@ -11405,9 +11408,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
11405
11408
|
};
|
|
11406
11409
|
id: string;
|
|
11407
11410
|
createdAt: Date;
|
|
11408
|
-
users: {
|
|
11409
|
-
userId: string;
|
|
11410
|
-
}[];
|
|
11411
11411
|
ownerId: string;
|
|
11412
11412
|
blocked: boolean;
|
|
11413
11413
|
name: string;
|
|
@@ -11423,6 +11423,12 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
11423
11423
|
id: string;
|
|
11424
11424
|
} | null;
|
|
11425
11425
|
};
|
|
11426
|
+
developers: {
|
|
11427
|
+
id: string;
|
|
11428
|
+
lastname: string;
|
|
11429
|
+
firstname: string;
|
|
11430
|
+
}[];
|
|
11431
|
+
usersCount: number;
|
|
11426
11432
|
};
|
|
11427
11433
|
}, unknown>;
|
|
11428
11434
|
applications: _trpc_server.BuildProcedure<"query", {
|
|
@@ -11486,9 +11492,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
11486
11492
|
};
|
|
11487
11493
|
id: string;
|
|
11488
11494
|
createdAt: Date;
|
|
11489
|
-
users: {
|
|
11490
|
-
userId: string;
|
|
11491
|
-
}[];
|
|
11492
11495
|
ownerId: string;
|
|
11493
11496
|
blocked: boolean;
|
|
11494
11497
|
name: string;
|
|
@@ -11504,6 +11507,12 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
11504
11507
|
id: string;
|
|
11505
11508
|
} | null;
|
|
11506
11509
|
};
|
|
11510
|
+
developers: {
|
|
11511
|
+
id: string;
|
|
11512
|
+
lastname: string;
|
|
11513
|
+
firstname: string;
|
|
11514
|
+
}[];
|
|
11515
|
+
usersCount: number;
|
|
11507
11516
|
}[];
|
|
11508
11517
|
_output_out: {
|
|
11509
11518
|
plan: {
|
|
@@ -11537,9 +11546,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
11537
11546
|
};
|
|
11538
11547
|
id: string;
|
|
11539
11548
|
createdAt: Date;
|
|
11540
|
-
users: {
|
|
11541
|
-
userId: string;
|
|
11542
|
-
}[];
|
|
11543
11549
|
ownerId: string;
|
|
11544
11550
|
blocked: boolean;
|
|
11545
11551
|
name: string;
|
|
@@ -11555,6 +11561,12 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
11555
11561
|
id: string;
|
|
11556
11562
|
} | null;
|
|
11557
11563
|
};
|
|
11564
|
+
developers: {
|
|
11565
|
+
id: string;
|
|
11566
|
+
lastname: string;
|
|
11567
|
+
firstname: string;
|
|
11568
|
+
}[];
|
|
11569
|
+
usersCount: number;
|
|
11558
11570
|
}[];
|
|
11559
11571
|
}, unknown>;
|
|
11560
11572
|
createApplication: _trpc_server.BuildProcedure<"mutation", {
|