-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstrings.ts
15 lines (14 loc) · 1 KB
/
strings.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export const ERROR = {
"FORCE_STORE_OPTION": "JsonApiAdapter needs to be given a store option.",
"PREVENT_SERIALIZE_DESERIALIZE_OPTIONS": "You can not use deserialize and serialize options with this adapter, you should instead provide an afterSerialize, a beforeSerialize, an afterDeserialize or a beforeDeserialize.",
NO_BATCH_CREATE: 'JSONApi doesn\'t support creating in batch.',
NO_BATCH_UPDATE: 'JSONApi doesn\'t support updating in batch.',
NO_BATCH_DESTROY: 'JSONApi doesn\'t support destroying in batch.'
};
export const WARNING = {
NO_RESSOURCE: (type:string) => { return `Can\'t find resource '${type}'` },
RELATION_UNKNOWN: 'Unknown relation',
WRONG_RELATION_ARRAY_EXPECTED: 'Wrong relation somewhere, array expected',
WRONG_RELATION_OBJECT_EXPECTED: 'Wrong relation somewhere, object expected',
NO_FOREIGN_KEY: 'No `foreignKey` on this relation. Be careful `localKey` doesn\'t exist anymore on JSData v3 and has been replaced with `foreignKey`. `belongsTo` relations must have a `foreignKey`.'
}