File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 1
- < < < << << HEAD
2
1
import { ColumnType , Schema } from "@topcoder-framework/client-relational" ;
3
2
import { ResourceInfoType } from "../../models/domain-layer/legacy/resource_info_type" ;
4
3
import { AuditColumns } from "../common/AuditColumns" ;
5
4
6
5
export const ResourceInfoTypeSchema : Schema < ResourceInfoType > = {
7
- === === =
8
- import { Schema } from "../../common/QueryRunner.js" ;
9
- import { ColumnType } from "@topcoder-framework/client-relational" ;
10
- import { AuditColumns } from "../common/AuditColumns" ;
11
-
12
- export const Resource : Schema = {
13
- > >>> >>> e4ff7a2 ( feat : add project , resource , payment schema )
14
6
dbSchema : "tcs_catalog" ,
15
7
tableName : "resource_info_type_lu" ,
16
8
columns : {
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import {
14
14
15
15
import { CreateResult , LookupCriteria } from "@topcoder-framework/lib-common" ;
16
16
import LegacyChallengeDomain from "../domain/LegacyChallenge" ;
17
- import { LookupCriteria } from "@topcoder-framework/lib-common" ;
18
17
19
18
class LegacyChallengeServerImpl implements LegacyChallengeServer {
20
19
create : handleUnaryCall < CreateChallengeInput , CreateResult > = (
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ class PrizeServerImpl implements PrizeServiceServer {
41
41
getPrizeTypes : handleUnaryCall < Empty , PrizeTypeList > = (
42
42
call : ServerUnaryCall < Empty , PrizeTypeList > ,
43
43
callback : sendUnaryData < PrizeTypeList >
44
+ < << << << HEAD
44
45
) => { } ;
45
46
46
47
update : handleUnaryCall < UpdatePrizeInput , UpdateResult > = (
@@ -50,6 +51,10 @@ class PrizeServerImpl implements PrizeServiceServer {
50
51
PrizeDomain . update ( call . request )
51
52
. then ( ( result ) => callback ( null , result ) )
52
53
. catch ( ( err ) => callback ( err , null ) ) ;
54
+ = === ===
55
+ ) => {
56
+ console . log ( "TODO" ) ;
57
+ > >>> >>> 4 df2104 ( feat : add type information to schema )
53
58
} ;
54
59
}
55
60
You can’t perform that action at this time.
0 commit comments