@rxdrag/rxcms-models 0.3.93 → 0.3.94

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.
@@ -0,0 +1,13 @@
1
+ import { Website } from './Website';
2
+ export declare const SvgIconEntityName = "SvgIcon";
3
+ export declare const SvgIconEntityLabel = "";
4
+ export interface SvgIcon {
5
+ id?: string | null;
6
+ name?: string;
7
+ title?: string;
8
+ code?: string;
9
+ description?: string;
10
+ createdAt?: Date;
11
+ updatedAt?: Date;
12
+ website?: Website;
13
+ }
@@ -0,0 +1,17 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
5
+ export interface SvgIconBoolExp {
6
+ _and?: SvgIconBoolExp[];
7
+ _or?: SvgIconBoolExp[];
8
+ _not?: SvgIconBoolExp;
9
+ id?: IdComparisonExp;
10
+ name?: StringComparisonExp;
11
+ title?: StringComparisonExp;
12
+ code?: StringComparisonExp;
13
+ description?: StringComparisonExp;
14
+ createdAt?: DateTimeComparisonExp;
15
+ updatedAt?: DateTimeComparisonExp;
16
+ website?: WebsiteBoolExp;
17
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum SvgIconDistinctEnum {
2
+ id = "id",
3
+ name = "name",
4
+ title = "title",
5
+ code = "code",
6
+ description = "description",
7
+ createdAt = "createdAt",
8
+ updatedAt = "updatedAt"
9
+ }
10
+ export type SvgIconDistinctExp = SvgIconDistinctEnum;
@@ -0,0 +1,15 @@
1
+ import { SvgIcon } from './SvgIcon';
2
+ import { WebsiteInput } from './WebsiteInput';
3
+ import { SetHasOne } from '@rxdrag/entify-lib';
4
+ export interface SvgIconInput {
5
+ id?: string | null;
6
+ name?: string;
7
+ title?: string;
8
+ code?: string;
9
+ description?: string;
10
+ createdAt?: Date;
11
+ updatedAt?: Date;
12
+ website?: SetHasOne<WebsiteInput>;
13
+ }
14
+ export declare const svgIconToInputCascade: (entity: SvgIcon) => SvgIconInput;
15
+ export declare const svgIconToInput: (entity: SvgIcon) => SvgIconInput;
@@ -0,0 +1,10 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ export interface SvgIconOrderBy {
3
+ id?: OrderBy;
4
+ name?: OrderBy;
5
+ title?: OrderBy;
6
+ code?: OrderBy;
7
+ description?: OrderBy;
8
+ createdAt?: OrderBy;
9
+ updatedAt?: OrderBy;
10
+ }
@@ -19,6 +19,7 @@ import { SearchIndex } from './SearchIndex';
19
19
  import { Bulletin } from './Bulletin';
20
20
  import { WebsiteSnapshot } from './WebsiteSnapshot';
21
21
  import { UserOperation } from './UserOperation';
22
+ import { SvgIcon } from './SvgIcon';
22
23
  import { Aggregate } from './Aggregate';
23
24
  export declare const WebsiteEntityName = "Website";
24
25
  export declare const WebsiteEntityLabel = "\u7AD9\u70B9";
@@ -81,6 +82,7 @@ export interface Website {
81
82
  bulletins?: Bulletin[];
82
83
  snapshots?: WebsiteSnapshot[];
83
84
  userOperations?: UserOperation[];
85
+ svgIcons?: SvgIcon[];
84
86
  mockBranch?: ThemeBranch;
85
87
  usersAggregate?: Aggregate;
86
88
  partsOfMediaFolderAggregate?: Aggregate;
@@ -100,4 +102,5 @@ export interface Website {
100
102
  bulletinsAggregate?: Aggregate;
101
103
  snapshotsAggregate?: Aggregate;
102
104
  userOperationsAggregate?: Aggregate;
105
+ svgIconsAggregate?: Aggregate;
103
106
  }
@@ -22,6 +22,7 @@ import { SearchIndexBoolExp } from './SearchIndexBoolExp';
22
22
  import { BulletinBoolExp } from './BulletinBoolExp';
23
23
  import { WebsiteSnapshotBoolExp } from './WebsiteSnapshotBoolExp';
24
24
  import { UserOperationBoolExp } from './UserOperationBoolExp';
25
+ import { SvgIconBoolExp } from './SvgIconBoolExp';
25
26
  /**
26
27
  * 站点
27
28
  * 网站实体
@@ -63,5 +64,6 @@ export interface WebsiteBoolExp {
63
64
  bulletins?: BulletinBoolExp;
64
65
  snapshots?: WebsiteSnapshotBoolExp;
65
66
  userOperations?: UserOperationBoolExp;
67
+ svgIcons?: SvgIconBoolExp;
66
68
  mockBranch?: ThemeBranchBoolExp;
67
69
  }
@@ -20,6 +20,7 @@ import { SearchIndexInput } from './SearchIndexInput';
20
20
  import { BulletinInput } from './BulletinInput';
21
21
  import { WebsiteSnapshotInput } from './WebsiteSnapshotInput';
22
22
  import { UserOperationInput } from './UserOperationInput';
23
+ import { SvgIconInput } from './SvgIconInput';
23
24
  import { SetHasMany } from '@rxdrag/entify-lib';
24
25
  import { SetHasOne } from '@rxdrag/entify-lib';
25
26
  /**
@@ -81,6 +82,7 @@ export interface WebsiteInput {
81
82
  bulletins?: SetHasMany<BulletinInput>;
82
83
  snapshots?: SetHasMany<WebsiteSnapshotInput>;
83
84
  userOperations?: SetHasMany<UserOperationInput>;
85
+ svgIcons?: SetHasMany<SvgIconInput>;
84
86
  mockBranch?: SetHasOne<ThemeBranchInput>;
85
87
  }
86
88
  export declare const websiteToInputCascade: (entity: Website) => WebsiteInput;
@@ -303,3 +303,8 @@ export * from './ThemeInput';
303
303
  export * from './ThemeBoolExp';
304
304
  export * from './ThemeOrderBy';
305
305
  export * from './ThemeDistinctExp';
306
+ export * from './SvgIcon';
307
+ export * from './SvgIconInput';
308
+ export * from './SvgIconBoolExp';
309
+ export * from './SvgIconOrderBy';
310
+ export * from './SvgIconDistinctExp';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.3.93",
3
+ "version": "0.3.94",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [
@@ -12,11 +12,11 @@
12
12
  "devDependencies": {
13
13
  "eslint": "^7.32.0",
14
14
  "typescript": "^5",
15
- "@rxdrag/tsconfig": "0.2.0",
16
- "@rxdrag/eslint-config-custom": "0.2.12"
15
+ "@rxdrag/eslint-config-custom": "0.2.12",
16
+ "@rxdrag/tsconfig": "0.2.0"
17
17
  },
18
18
  "dependencies": {
19
- "@rxdrag/entify-lib": "0.0.22"
19
+ "@rxdrag/entify-lib": "0.0.23"
20
20
  },
21
21
  "scripts": {
22
22
  "lint": "eslint . --ext .ts,tsx",