@rxdrag/rxcms-models 0.2.8 → 0.2.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/classes/index.d.ts +0 -1
- package/dist/entries/index.d.ts +0 -1
- package/dist/fields/index.d.ts +0 -1
- package/dist/index.mjs +0 -131
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/index.d.ts +6 -6
- package/package.json +1 -1
- package/dist/classes/MailQueryOptions.d.ts +0 -20
- package/dist/entries/mailEntry.d.ts +0 -2
- package/dist/fields/MailFields.d.ts +0 -18
- package/dist/interfaces/Mail.d.ts +0 -18
- package/dist/interfaces/MailBoolExp.d.ts +0 -22
- package/dist/interfaces/MailDistinctExp.d.ts +0 -17
- package/dist/interfaces/MailInput.d.ts +0 -19
- package/dist/interfaces/MailOrderBy.d.ts +0 -17
- package/dist/interfaces/MailType.d.ts +0 -18
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
export * from './IdComparisonExp';
|
|
2
|
+
export * from './BooleanComparisonExp';
|
|
3
|
+
export * from './DateTimeComparisonExp';
|
|
4
|
+
export * from './StringComparisonExp';
|
|
5
|
+
export * from './NumberComparisonExp';
|
|
6
|
+
export * from './EnumComparisonExp';
|
|
1
7
|
export * from './User';
|
|
2
8
|
export * from './UserInput';
|
|
3
9
|
export * from './UserBoolExp';
|
|
@@ -20,12 +26,6 @@ export * from './MediaBoolExp';
|
|
|
20
26
|
export * from './MediaOrderBy';
|
|
21
27
|
export * from './MediaDistinctExp';
|
|
22
28
|
export * from './MediaType';
|
|
23
|
-
export * from './Mail';
|
|
24
|
-
export * from './MailInput';
|
|
25
|
-
export * from './MailBoolExp';
|
|
26
|
-
export * from './MailOrderBy';
|
|
27
|
-
export * from './MailDistinctExp';
|
|
28
|
-
export * from './MailType';
|
|
29
29
|
export * from './Website';
|
|
30
30
|
export * from './WebsiteInput';
|
|
31
31
|
export * from './WebsiteBoolExp';
|
package/package.json
CHANGED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { IQueryArgs } from "@rxdrag/entify-hooks";
|
|
2
|
-
import { QueryOptions } from "./QueryOptions";
|
|
3
|
-
import { Mail, MailBoolExp, MailDistinctExp, MailOrderBy } from "../interfaces";
|
|
4
|
-
export declare class MailQueryOptions extends QueryOptions<Mail, MailBoolExp, MailOrderBy, MailDistinctExp> {
|
|
5
|
-
constructor(fields?: (keyof Mail)[], queryArgs?: IQueryArgs<MailBoolExp, MailOrderBy, MailDistinctExp>);
|
|
6
|
-
id(): this;
|
|
7
|
-
createdAt(): this;
|
|
8
|
-
updatedAt(): this;
|
|
9
|
-
taskId(): this;
|
|
10
|
-
taskName(): this;
|
|
11
|
-
remark(): this;
|
|
12
|
-
subject(): this;
|
|
13
|
-
message(): this;
|
|
14
|
-
to(): this;
|
|
15
|
-
cc(): this;
|
|
16
|
-
label(): this;
|
|
17
|
-
name(): this;
|
|
18
|
-
company(): this;
|
|
19
|
-
mailType(): this;
|
|
20
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export declare enum MailFields {
|
|
2
|
-
id = "id",
|
|
3
|
-
createdAt = "createdAt",
|
|
4
|
-
updatedAt = "updatedAt",
|
|
5
|
-
taskId = "taskId",
|
|
6
|
-
taskName = "taskName",
|
|
7
|
-
remark = "remark",
|
|
8
|
-
subject = "subject",
|
|
9
|
-
message = "message",
|
|
10
|
-
to = "to",
|
|
11
|
-
cc = "cc",
|
|
12
|
-
label = "label",
|
|
13
|
-
name = "name",
|
|
14
|
-
company = "company",
|
|
15
|
-
mailType = "mailType"
|
|
16
|
-
}
|
|
17
|
-
export declare enum MailAssciations {
|
|
18
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export declare const MailEntityName = "Mail";
|
|
2
|
-
export declare const MailEntityLabel = "";
|
|
3
|
-
export interface Mail {
|
|
4
|
-
id?: string;
|
|
5
|
-
createdAt?: Date;
|
|
6
|
-
updatedAt?: Date;
|
|
7
|
-
taskId?: string;
|
|
8
|
-
taskName?: string;
|
|
9
|
-
remark?: string;
|
|
10
|
-
subject?: string;
|
|
11
|
-
message?: string;
|
|
12
|
-
to?: string;
|
|
13
|
-
cc?: string;
|
|
14
|
-
label?: string;
|
|
15
|
-
name?: string;
|
|
16
|
-
company?: string;
|
|
17
|
-
mailType?: string;
|
|
18
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
-
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
3
|
-
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
-
export interface MailBoolExp {
|
|
5
|
-
_and?: MailBoolExp[];
|
|
6
|
-
_or?: MailBoolExp[];
|
|
7
|
-
_not?: MailBoolExp;
|
|
8
|
-
id?: IdComparisonExp;
|
|
9
|
-
createdAt?: DateTimeComparisonExp;
|
|
10
|
-
updatedAt?: DateTimeComparisonExp;
|
|
11
|
-
taskId?: StringComparisonExp;
|
|
12
|
-
taskName?: StringComparisonExp;
|
|
13
|
-
remark?: StringComparisonExp;
|
|
14
|
-
subject?: StringComparisonExp;
|
|
15
|
-
message?: StringComparisonExp;
|
|
16
|
-
to?: StringComparisonExp;
|
|
17
|
-
cc?: StringComparisonExp;
|
|
18
|
-
label?: StringComparisonExp;
|
|
19
|
-
name?: StringComparisonExp;
|
|
20
|
-
company?: StringComparisonExp;
|
|
21
|
-
mailType?: StringComparisonExp;
|
|
22
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export declare enum MailDistinctEnum {
|
|
2
|
-
id = "id",
|
|
3
|
-
createdAt = "createdAt",
|
|
4
|
-
updatedAt = "updatedAt",
|
|
5
|
-
taskId = "taskId",
|
|
6
|
-
taskName = "taskName",
|
|
7
|
-
remark = "remark",
|
|
8
|
-
subject = "subject",
|
|
9
|
-
message = "message",
|
|
10
|
-
to = "to",
|
|
11
|
-
cc = "cc",
|
|
12
|
-
label = "label",
|
|
13
|
-
name = "name",
|
|
14
|
-
company = "company",
|
|
15
|
-
mailType = "mailType"
|
|
16
|
-
}
|
|
17
|
-
export type MailDistinctExp = MailDistinctEnum;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Mail } from './Mail';
|
|
2
|
-
export interface MailInput {
|
|
3
|
-
id?: string;
|
|
4
|
-
createdAt?: Date;
|
|
5
|
-
updatedAt?: Date;
|
|
6
|
-
taskId?: string;
|
|
7
|
-
taskName?: string;
|
|
8
|
-
remark?: string;
|
|
9
|
-
subject?: string;
|
|
10
|
-
message?: string;
|
|
11
|
-
to?: string;
|
|
12
|
-
cc?: string;
|
|
13
|
-
label?: string;
|
|
14
|
-
name?: string;
|
|
15
|
-
company?: string;
|
|
16
|
-
mailType?: string;
|
|
17
|
-
}
|
|
18
|
-
export declare const mailToInputCascade: (entity: Mail) => MailInput;
|
|
19
|
-
export declare const mailToInput: (entity: Mail) => MailInput;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
-
export interface MailOrderBy {
|
|
3
|
-
id?: OrderBy;
|
|
4
|
-
createdAt?: OrderBy;
|
|
5
|
-
updatedAt?: OrderBy;
|
|
6
|
-
taskId?: OrderBy;
|
|
7
|
-
taskName?: OrderBy;
|
|
8
|
-
remark?: OrderBy;
|
|
9
|
-
subject?: OrderBy;
|
|
10
|
-
message?: OrderBy;
|
|
11
|
-
to?: OrderBy;
|
|
12
|
-
cc?: OrderBy;
|
|
13
|
-
label?: OrderBy;
|
|
14
|
-
name?: OrderBy;
|
|
15
|
-
company?: OrderBy;
|
|
16
|
-
mailType?: OrderBy;
|
|
17
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export declare enum MailType {
|
|
2
|
-
/**
|
|
3
|
-
* label: undefined
|
|
4
|
-
*/
|
|
5
|
-
default = "default",
|
|
6
|
-
/**
|
|
7
|
-
* label: undefined
|
|
8
|
-
*/
|
|
9
|
-
getPrice = "getPrice",
|
|
10
|
-
/**
|
|
11
|
-
* label: undefined
|
|
12
|
-
*/
|
|
13
|
-
findPassword = "findPassword",
|
|
14
|
-
/**
|
|
15
|
-
* label: undefined
|
|
16
|
-
*/
|
|
17
|
-
notice = "notice"
|
|
18
|
-
}
|