@rxdrag/rxcms-models 0.3.105 → 0.3.106

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.
Files changed (55) hide show
  1. package/dist/classes/AgentAttachmentQueryOptions.d.ts +6 -6
  2. package/dist/classes/AgentTimelineItemQueryOptions.d.ts +0 -3
  3. package/dist/classes/TempFileQueryOptions.d.ts +3 -1
  4. package/dist/classes/ThemeQueryOptions.d.ts +1 -0
  5. package/dist/classes/{SiteBlueprintQueryOptions.d.ts → WebsiteProfileQueryOptions.d.ts} +4 -4
  6. package/dist/classes/WebsiteQueryOptions.d.ts +3 -3
  7. package/dist/classes/index.d.ts +1 -2
  8. package/dist/entries/index.d.ts +1 -2
  9. package/dist/entries/websiteProfileEntry.d.ts +2 -0
  10. package/dist/fields/AgentAttachmentFields.d.ts +5 -7
  11. package/dist/fields/AgentTimelineItemFields.d.ts +0 -1
  12. package/dist/fields/TempFileFields.d.ts +2 -2
  13. package/dist/fields/ThemeFields.d.ts +2 -1
  14. package/dist/fields/WebsiteFields.d.ts +1 -1
  15. package/dist/fields/{SiteBlueprintFields.d.ts → WebsiteProfileFields.d.ts} +3 -3
  16. package/dist/fields/index.d.ts +1 -2
  17. package/dist/index.mjs +147 -249
  18. package/dist/index.mjs.map +1 -1
  19. package/dist/interfaces/AgentAttachment.d.ts +5 -7
  20. package/dist/interfaces/AgentAttachmentBoolExp.d.ts +6 -6
  21. package/dist/interfaces/AgentAttachmentDistinctExp.d.ts +4 -7
  22. package/dist/interfaces/AgentAttachmentInput.d.ts +5 -7
  23. package/dist/interfaces/AgentAttachmentOrderBy.d.ts +3 -6
  24. package/dist/interfaces/AgentTimelineItem.d.ts +0 -2
  25. package/dist/interfaces/AgentTimelineItemBoolExp.d.ts +0 -2
  26. package/dist/interfaces/AgentTimelineItemInput.d.ts +0 -2
  27. package/dist/interfaces/TempFile.d.ts +2 -1
  28. package/dist/interfaces/TempFileBoolExp.d.ts +2 -1
  29. package/dist/interfaces/TempFileDistinctExp.d.ts +0 -1
  30. package/dist/interfaces/TempFileInput.d.ts +2 -1
  31. package/dist/interfaces/TempFileOrderBy.d.ts +0 -1
  32. package/dist/interfaces/Theme.d.ts +1 -0
  33. package/dist/interfaces/ThemeBoolExp.d.ts +1 -0
  34. package/dist/interfaces/ThemeDistinctExp.d.ts +2 -1
  35. package/dist/interfaces/ThemeInput.d.ts +1 -0
  36. package/dist/interfaces/ThemeOrderBy.d.ts +1 -0
  37. package/dist/interfaces/Website.d.ts +2 -2
  38. package/dist/interfaces/WebsiteBoolExp.d.ts +2 -2
  39. package/dist/interfaces/WebsiteInput.d.ts +2 -2
  40. package/dist/interfaces/{SiteBlueprint.d.ts → WebsiteProfile.d.ts} +4 -4
  41. package/dist/interfaces/{SiteBlueprintBoolExp.d.ts → WebsiteProfileBoolExp.d.ts} +5 -5
  42. package/dist/interfaces/{SiteBlueprintDistinctExp.d.ts → WebsiteProfileDistinctExp.d.ts} +3 -3
  43. package/dist/interfaces/{SiteBlueprintInput.d.ts → WebsiteProfileInput.d.ts} +5 -5
  44. package/dist/interfaces/{SiteBlueprintOrderBy.d.ts → WebsiteProfileOrderBy.d.ts} +2 -2
  45. package/dist/interfaces/index.d.ts +5 -10
  46. package/package.json +3 -3
  47. package/dist/classes/CodeRevisionQueryOptions.d.ts +0 -16
  48. package/dist/entries/codeRevisionEntry.d.ts +0 -2
  49. package/dist/entries/siteBlueprintEntry.d.ts +0 -2
  50. package/dist/fields/CodeRevisionFields.d.ts +0 -12
  51. package/dist/interfaces/CodeRevision.d.ts +0 -13
  52. package/dist/interfaces/CodeRevisionBoolExp.d.ts +0 -17
  53. package/dist/interfaces/CodeRevisionDistinctExp.d.ts +0 -10
  54. package/dist/interfaces/CodeRevisionInput.d.ts +0 -15
  55. package/dist/interfaces/CodeRevisionOrderBy.d.ts +0 -10
@@ -1,17 +1,15 @@
1
- import { FileRef } from './FileRef';
1
+ import { TempFile } from './TempFile';
2
2
  import { AgentTimelineItem } from './AgentTimelineItem';
3
3
  export declare const AgentAttachmentEntityName = "AgentAttachment";
4
4
  export declare const AgentAttachmentEntityLabel = "";
5
5
  export interface AgentAttachment {
6
6
  id?: string | null;
7
7
  name?: string;
8
- mimeType?: string;
9
- size?: number;
10
- extName?: string;
11
- mediaType?: string;
12
- storageMeta?: FileRef;
13
- seqValue?: number;
8
+ type?: string;
9
+ playload?: any;
14
10
  createdAt?: Date;
15
11
  updatedAt?: Date;
12
+ seqValue?: number;
13
+ file?: TempFile;
16
14
  timelineItme?: AgentTimelineItem;
17
15
  }
@@ -1,7 +1,8 @@
1
1
  import { IdComparisonExp } from './IdComparisonExp';
2
2
  import { StringComparisonExp } from './StringComparisonExp';
3
- import { NumberComparisonExp } from './NumberComparisonExp';
4
3
  import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { NumberComparisonExp } from './NumberComparisonExp';
5
+ import { TempFileBoolExp } from './TempFileBoolExp';
5
6
  import { AgentTimelineItemBoolExp } from './AgentTimelineItemBoolExp';
6
7
  export interface AgentAttachmentBoolExp {
7
8
  _and?: AgentAttachmentBoolExp[];
@@ -9,12 +10,11 @@ export interface AgentAttachmentBoolExp {
9
10
  _not?: AgentAttachmentBoolExp;
10
11
  id?: IdComparisonExp;
11
12
  name?: StringComparisonExp;
12
- mimeType?: StringComparisonExp;
13
- size?: NumberComparisonExp;
14
- extName?: StringComparisonExp;
15
- mediaType?: StringComparisonExp;
16
- seqValue?: NumberComparisonExp;
13
+ type?: StringComparisonExp;
14
+ playload?: unknown;
17
15
  createdAt?: DateTimeComparisonExp;
18
16
  updatedAt?: DateTimeComparisonExp;
17
+ seqValue?: NumberComparisonExp;
18
+ file?: TempFileBoolExp;
19
19
  timelineItme?: AgentTimelineItemBoolExp;
20
20
  }
@@ -1,13 +1,10 @@
1
1
  export declare enum AgentAttachmentDistinctEnum {
2
2
  id = "id",
3
3
  name = "name",
4
- mimeType = "mimeType",
5
- size = "size",
6
- extName = "extName",
7
- mediaType = "mediaType",
8
- storageMeta = "storageMeta",
9
- seqValue = "seqValue",
4
+ type = "type",
5
+ playload = "playload",
10
6
  createdAt = "createdAt",
11
- updatedAt = "updatedAt"
7
+ updatedAt = "updatedAt",
8
+ seqValue = "seqValue"
12
9
  }
13
10
  export type AgentAttachmentDistinctExp = AgentAttachmentDistinctEnum;
@@ -1,18 +1,16 @@
1
1
  import { AgentAttachment } from './AgentAttachment';
2
- import { FileRefInput } from './FileRefInput';
2
+ import { TempFileInput } from './TempFileInput';
3
3
  import { AgentTimelineItemInput } from './AgentTimelineItemInput';
4
4
  import { SetHasOne } from '@rxdrag/entify-lib';
5
5
  export interface AgentAttachmentInput {
6
6
  id?: string | null;
7
7
  name?: string;
8
- mimeType?: string;
9
- size?: number;
10
- extName?: string;
11
- mediaType?: string;
12
- storageMeta?: FileRefInput;
13
- seqValue?: number;
8
+ type?: string;
9
+ playload?: any;
14
10
  createdAt?: Date;
15
11
  updatedAt?: Date;
12
+ seqValue?: number;
13
+ file?: SetHasOne<TempFileInput>;
16
14
  timelineItme?: SetHasOne<AgentTimelineItemInput>;
17
15
  }
18
16
  export declare const agentAttachmentToInputCascade: (entity: AgentAttachment) => AgentAttachmentInput;
@@ -2,12 +2,9 @@ import { OrderBy } from '@rxdrag/entify-lib';
2
2
  export interface AgentAttachmentOrderBy {
3
3
  id?: OrderBy;
4
4
  name?: OrderBy;
5
- mimeType?: OrderBy;
6
- size?: OrderBy;
7
- extName?: OrderBy;
8
- mediaType?: OrderBy;
9
- storageMeta?: OrderBy;
10
- seqValue?: OrderBy;
5
+ type?: OrderBy;
6
+ playload?: OrderBy;
11
7
  createdAt?: OrderBy;
12
8
  updatedAt?: OrderBy;
9
+ seqValue?: OrderBy;
13
10
  }
@@ -1,5 +1,4 @@
1
1
  import { AgentAttachment } from './AgentAttachment';
2
- import { CodeRevision } from './CodeRevision';
3
2
  import { AgentRun } from './AgentRun';
4
3
  import { Aggregate } from './Aggregate';
5
4
  export declare const AgentTimelineItemEntityName = "AgentTimelineItem";
@@ -12,7 +11,6 @@ export interface AgentTimelineItem {
12
11
  updatedAt?: Date;
13
12
  seqValue?: number;
14
13
  attachments?: AgentAttachment[];
15
- codeRevision?: CodeRevision;
16
14
  run?: AgentRun;
17
15
  attachmentsAggregate?: Aggregate;
18
16
  }
@@ -3,7 +3,6 @@ import { StringComparisonExp } from './StringComparisonExp';
3
3
  import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
4
  import { NumberComparisonExp } from './NumberComparisonExp';
5
5
  import { AgentAttachmentBoolExp } from './AgentAttachmentBoolExp';
6
- import { CodeRevisionBoolExp } from './CodeRevisionBoolExp';
7
6
  import { AgentRunBoolExp } from './AgentRunBoolExp';
8
7
  export interface AgentTimelineItemBoolExp {
9
8
  _and?: AgentTimelineItemBoolExp[];
@@ -16,6 +15,5 @@ export interface AgentTimelineItemBoolExp {
16
15
  updatedAt?: DateTimeComparisonExp;
17
16
  seqValue?: NumberComparisonExp;
18
17
  attachments?: AgentAttachmentBoolExp;
19
- codeRevision?: CodeRevisionBoolExp;
20
18
  run?: AgentRunBoolExp;
21
19
  }
@@ -1,6 +1,5 @@
1
1
  import { AgentTimelineItem } from './AgentTimelineItem';
2
2
  import { AgentAttachmentInput } from './AgentAttachmentInput';
3
- import { CodeRevisionInput } from './CodeRevisionInput';
4
3
  import { AgentRunInput } from './AgentRunInput';
5
4
  import { SetHasMany } from '@rxdrag/entify-lib';
6
5
  import { SetHasOne } from '@rxdrag/entify-lib';
@@ -12,7 +11,6 @@ export interface AgentTimelineItemInput {
12
11
  updatedAt?: Date;
13
12
  seqValue?: number;
14
13
  attachments?: SetHasMany<AgentAttachmentInput>;
15
- codeRevision?: SetHasOne<CodeRevisionInput>;
16
14
  run?: SetHasOne<AgentRunInput>;
17
15
  }
18
16
  export declare const agentTimelineItemToInputCascade: (entity: AgentTimelineItem) => AgentTimelineItemInput;
@@ -1,6 +1,7 @@
1
1
  import { FileRef } from './FileRef';
2
2
  import { Website } from './Website';
3
3
  import { ThemeBranch } from './ThemeBranch';
4
+ import { AgentAttachment } from './AgentAttachment';
4
5
  export declare const TempFileEntityName = "TempFile";
5
6
  export declare const TempFileEntityLabel = "";
6
7
  export interface TempFile {
@@ -10,10 +11,10 @@ export interface TempFile {
10
11
  extName?: string;
11
12
  mediaType?: string;
12
13
  storageMeta?: FileRef;
13
- seqValue?: number;
14
14
  createdAt?: Date;
15
15
  updateAt?: Date;
16
16
  mimeType?: string;
17
17
  website?: Website;
18
18
  themeBranch?: ThemeBranch;
19
+ agentAttachment?: AgentAttachment;
19
20
  }
@@ -4,6 +4,7 @@ import { NumberComparisonExp } from './NumberComparisonExp';
4
4
  import { DateTimeComparisonExp } from './DateTimeComparisonExp';
5
5
  import { WebsiteBoolExp } from './WebsiteBoolExp';
6
6
  import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
7
+ import { AgentAttachmentBoolExp } from './AgentAttachmentBoolExp';
7
8
  export interface TempFileBoolExp {
8
9
  _and?: TempFileBoolExp[];
9
10
  _or?: TempFileBoolExp[];
@@ -13,10 +14,10 @@ export interface TempFileBoolExp {
13
14
  size?: NumberComparisonExp;
14
15
  extName?: StringComparisonExp;
15
16
  mediaType?: StringComparisonExp;
16
- seqValue?: NumberComparisonExp;
17
17
  createdAt?: DateTimeComparisonExp;
18
18
  updateAt?: DateTimeComparisonExp;
19
19
  mimeType?: StringComparisonExp;
20
20
  website?: WebsiteBoolExp;
21
21
  themeBranch?: ThemeBranchBoolExp;
22
+ agentAttachment?: AgentAttachmentBoolExp;
22
23
  }
@@ -5,7 +5,6 @@ export declare enum TempFileDistinctEnum {
5
5
  extName = "extName",
6
6
  mediaType = "mediaType",
7
7
  storageMeta = "storageMeta",
8
- seqValue = "seqValue",
9
8
  createdAt = "createdAt",
10
9
  updateAt = "updateAt",
11
10
  mimeType = "mimeType"
@@ -2,6 +2,7 @@ import { TempFile } from './TempFile';
2
2
  import { FileRefInput } from './FileRefInput';
3
3
  import { WebsiteInput } from './WebsiteInput';
4
4
  import { ThemeBranchInput } from './ThemeBranchInput';
5
+ import { AgentAttachmentInput } from './AgentAttachmentInput';
5
6
  import { SetHasOne } from '@rxdrag/entify-lib';
6
7
  export interface TempFileInput {
7
8
  id?: string | null;
@@ -10,12 +11,12 @@ export interface TempFileInput {
10
11
  extName?: string;
11
12
  mediaType?: string;
12
13
  storageMeta?: FileRefInput;
13
- seqValue?: number;
14
14
  createdAt?: Date;
15
15
  updateAt?: Date;
16
16
  mimeType?: string;
17
17
  website?: SetHasOne<WebsiteInput>;
18
18
  themeBranch?: SetHasOne<ThemeBranchInput>;
19
+ agentAttachment?: SetHasOne<AgentAttachmentInput>;
19
20
  }
20
21
  export declare const tempFileToInputCascade: (entity: TempFile) => TempFileInput;
21
22
  export declare const tempFileToInput: (entity: TempFile) => TempFileInput;
@@ -6,7 +6,6 @@ export interface TempFileOrderBy {
6
6
  extName?: OrderBy;
7
7
  mediaType?: OrderBy;
8
8
  storageMeta?: OrderBy;
9
- seqValue?: OrderBy;
10
9
  createdAt?: OrderBy;
11
10
  updateAt?: OrderBy;
12
11
  mimeType?: OrderBy;
@@ -11,6 +11,7 @@ export interface Theme {
11
11
  createdAt?: Date;
12
12
  updatedAt?: Date;
13
13
  seqValue?: boolean;
14
+ slug?: string;
14
15
  branches?: ThemeBranch[];
15
16
  cover?: Media;
16
17
  category?: ThemeCategory;
@@ -15,6 +15,7 @@ export interface ThemeBoolExp {
15
15
  createdAt?: DateTimeComparisonExp;
16
16
  updatedAt?: DateTimeComparisonExp;
17
17
  seqValue?: BooleanComparisonExp;
18
+ slug?: StringComparisonExp;
18
19
  branches?: ThemeBranchBoolExp;
19
20
  cover?: MediaBoolExp;
20
21
  category?: ThemeCategoryBoolExp;
@@ -4,6 +4,7 @@ export declare enum ThemeDistinctEnum {
4
4
  description = "description",
5
5
  createdAt = "createdAt",
6
6
  updatedAt = "updatedAt",
7
- seqValue = "seqValue"
7
+ seqValue = "seqValue",
8
+ slug = "slug"
8
9
  }
9
10
  export type ThemeDistinctExp = ThemeDistinctEnum;
@@ -11,6 +11,7 @@ export interface ThemeInput {
11
11
  createdAt?: Date;
12
12
  updatedAt?: Date;
13
13
  seqValue?: boolean;
14
+ slug?: string;
14
15
  branches?: SetHasMany<ThemeBranchInput>;
15
16
  cover?: SetHasOne<MediaInput>;
16
17
  category?: SetHasOne<ThemeCategoryInput>;
@@ -6,4 +6,5 @@ export interface ThemeOrderBy {
6
6
  createdAt?: OrderBy;
7
7
  updatedAt?: OrderBy;
8
8
  seqValue?: OrderBy;
9
+ slug?: OrderBy;
9
10
  }
@@ -23,7 +23,7 @@ import { Tag } from './Tag';
23
23
  import { AgentThread } from './AgentThread';
24
24
  import { TempFile } from './TempFile';
25
25
  import { AgentContext } from './AgentContext';
26
- import { SiteBlueprint } from './SiteBlueprint';
26
+ import { WebsiteProfile } from './WebsiteProfile';
27
27
  import { Aggregate } from './Aggregate';
28
28
  export declare const WebsiteEntityName = "Website";
29
29
  export declare const WebsiteEntityLabel = "\u7AD9\u70B9";
@@ -90,7 +90,7 @@ export interface Website {
90
90
  agentThreads?: AgentThread[];
91
91
  tempFiles?: TempFile[];
92
92
  agentContexts?: AgentContext[];
93
- siteBlueprint?: SiteBlueprint;
93
+ profile?: WebsiteProfile;
94
94
  mockBranch?: ThemeBranch;
95
95
  usersAggregate?: Aggregate;
96
96
  partsOfMediaFolderAggregate?: Aggregate;
@@ -26,7 +26,7 @@ import { TagBoolExp } from './TagBoolExp';
26
26
  import { AgentThreadBoolExp } from './AgentThreadBoolExp';
27
27
  import { TempFileBoolExp } from './TempFileBoolExp';
28
28
  import { AgentContextBoolExp } from './AgentContextBoolExp';
29
- import { SiteBlueprintBoolExp } from './SiteBlueprintBoolExp';
29
+ import { WebsiteProfileBoolExp } from './WebsiteProfileBoolExp';
30
30
  /**
31
31
  * 站点
32
32
  * 网站实体
@@ -72,6 +72,6 @@ export interface WebsiteBoolExp {
72
72
  agentThreads?: AgentThreadBoolExp;
73
73
  tempFiles?: TempFileBoolExp;
74
74
  agentContexts?: AgentContextBoolExp;
75
- siteBlueprint?: SiteBlueprintBoolExp;
75
+ profile?: WebsiteProfileBoolExp;
76
76
  mockBranch?: ThemeBranchBoolExp;
77
77
  }
@@ -24,7 +24,7 @@ import { TagInput } from './TagInput';
24
24
  import { AgentThreadInput } from './AgentThreadInput';
25
25
  import { TempFileInput } from './TempFileInput';
26
26
  import { AgentContextInput } from './AgentContextInput';
27
- import { SiteBlueprintInput } from './SiteBlueprintInput';
27
+ import { WebsiteProfileInput } from './WebsiteProfileInput';
28
28
  import { SetHasMany } from '@rxdrag/entify-lib';
29
29
  import { SetHasOne } from '@rxdrag/entify-lib';
30
30
  /**
@@ -90,7 +90,7 @@ export interface WebsiteInput {
90
90
  agentThreads?: SetHasMany<AgentThreadInput>;
91
91
  tempFiles?: SetHasMany<TempFileInput>;
92
92
  agentContexts?: SetHasMany<AgentContextInput>;
93
- siteBlueprint?: SetHasOne<SiteBlueprintInput>;
93
+ profile?: SetHasOne<WebsiteProfileInput>;
94
94
  mockBranch?: SetHasOne<ThemeBranchInput>;
95
95
  }
96
96
  export declare const websiteToInputCascade: (entity: Website) => WebsiteInput;
@@ -1,7 +1,7 @@
1
1
  import { Website } from './Website';
2
- export declare const SiteBlueprintEntityName = "SiteBlueprint";
3
- export declare const SiteBlueprintEntityLabel = "";
4
- export interface SiteBlueprint {
2
+ export declare const WebsiteProfileEntityName = "WebsiteProfile";
3
+ export declare const WebsiteProfileEntityLabel = "";
4
+ export interface WebsiteProfile {
5
5
  id?: string | null;
6
6
  name?: string;
7
7
  industry?: string;
@@ -10,7 +10,7 @@ export interface SiteBlueprint {
10
10
  layoutPreference?: string;
11
11
  styleGuide?: string;
12
12
  contentStrategy?: string;
13
- baseTemplateId?: string;
13
+ themeBranchId?: string;
14
14
  createdAt?: Date;
15
15
  updatedAt?: Date;
16
16
  products?: string;
@@ -2,10 +2,10 @@ import { IdComparisonExp } from './IdComparisonExp';
2
2
  import { StringComparisonExp } from './StringComparisonExp';
3
3
  import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
4
  import { WebsiteBoolExp } from './WebsiteBoolExp';
5
- export interface SiteBlueprintBoolExp {
6
- _and?: SiteBlueprintBoolExp[];
7
- _or?: SiteBlueprintBoolExp[];
8
- _not?: SiteBlueprintBoolExp;
5
+ export interface WebsiteProfileBoolExp {
6
+ _and?: WebsiteProfileBoolExp[];
7
+ _or?: WebsiteProfileBoolExp[];
8
+ _not?: WebsiteProfileBoolExp;
9
9
  id?: IdComparisonExp;
10
10
  name?: StringComparisonExp;
11
11
  industry?: StringComparisonExp;
@@ -14,7 +14,7 @@ export interface SiteBlueprintBoolExp {
14
14
  layoutPreference?: StringComparisonExp;
15
15
  styleGuide?: StringComparisonExp;
16
16
  contentStrategy?: StringComparisonExp;
17
- baseTemplateId?: StringComparisonExp;
17
+ themeBranchId?: StringComparisonExp;
18
18
  createdAt?: DateTimeComparisonExp;
19
19
  updatedAt?: DateTimeComparisonExp;
20
20
  products?: StringComparisonExp;
@@ -1,4 +1,4 @@
1
- export declare enum SiteBlueprintDistinctEnum {
1
+ export declare enum WebsiteProfileDistinctEnum {
2
2
  id = "id",
3
3
  name = "name",
4
4
  industry = "industry",
@@ -7,7 +7,7 @@ export declare enum SiteBlueprintDistinctEnum {
7
7
  layoutPreference = "layoutPreference",
8
8
  styleGuide = "styleGuide",
9
9
  contentStrategy = "contentStrategy",
10
- baseTemplateId = "baseTemplateId",
10
+ themeBranchId = "themeBranchId",
11
11
  createdAt = "createdAt",
12
12
  updatedAt = "updatedAt",
13
13
  products = "products",
@@ -16,4 +16,4 @@ export declare enum SiteBlueprintDistinctEnum {
16
16
  langAbbr = "langAbbr",
17
17
  pages = "pages"
18
18
  }
19
- export type SiteBlueprintDistinctExp = SiteBlueprintDistinctEnum;
19
+ export type WebsiteProfileDistinctExp = WebsiteProfileDistinctEnum;
@@ -1,7 +1,7 @@
1
- import { SiteBlueprint } from './SiteBlueprint';
1
+ import { WebsiteProfile } from './WebsiteProfile';
2
2
  import { WebsiteInput } from './WebsiteInput';
3
3
  import { SetHasOne } from '@rxdrag/entify-lib';
4
- export interface SiteBlueprintInput {
4
+ export interface WebsiteProfileInput {
5
5
  id?: string | null;
6
6
  name?: string;
7
7
  industry?: string;
@@ -10,7 +10,7 @@ export interface SiteBlueprintInput {
10
10
  layoutPreference?: string;
11
11
  styleGuide?: string;
12
12
  contentStrategy?: string;
13
- baseTemplateId?: string;
13
+ themeBranchId?: string;
14
14
  createdAt?: Date;
15
15
  updatedAt?: Date;
16
16
  products?: string;
@@ -20,5 +20,5 @@ export interface SiteBlueprintInput {
20
20
  pages?: string;
21
21
  website?: SetHasOne<WebsiteInput>;
22
22
  }
23
- export declare const siteBlueprintToInputCascade: (entity: SiteBlueprint) => SiteBlueprintInput;
24
- export declare const siteBlueprintToInput: (entity: SiteBlueprint) => SiteBlueprintInput;
23
+ export declare const websiteProfileToInputCascade: (entity: WebsiteProfile) => WebsiteProfileInput;
24
+ export declare const websiteProfileToInput: (entity: WebsiteProfile) => WebsiteProfileInput;
@@ -1,5 +1,5 @@
1
1
  import { OrderBy } from '@rxdrag/entify-lib';
2
- export interface SiteBlueprintOrderBy {
2
+ export interface WebsiteProfileOrderBy {
3
3
  id?: OrderBy;
4
4
  name?: OrderBy;
5
5
  industry?: OrderBy;
@@ -8,7 +8,7 @@ export interface SiteBlueprintOrderBy {
8
8
  layoutPreference?: OrderBy;
9
9
  styleGuide?: OrderBy;
10
10
  contentStrategy?: OrderBy;
11
- baseTemplateId?: OrderBy;
11
+ themeBranchId?: OrderBy;
12
12
  createdAt?: OrderBy;
13
13
  updatedAt?: OrderBy;
14
14
  products?: OrderBy;
@@ -341,18 +341,13 @@ export * from './TempFileInput';
341
341
  export * from './TempFileBoolExp';
342
342
  export * from './TempFileOrderBy';
343
343
  export * from './TempFileDistinctExp';
344
- export * from './CodeRevision';
345
- export * from './CodeRevisionInput';
346
- export * from './CodeRevisionBoolExp';
347
- export * from './CodeRevisionOrderBy';
348
- export * from './CodeRevisionDistinctExp';
349
344
  export * from './AgentContext';
350
345
  export * from './AgentContextInput';
351
346
  export * from './AgentContextBoolExp';
352
347
  export * from './AgentContextOrderBy';
353
348
  export * from './AgentContextDistinctExp';
354
- export * from './SiteBlueprint';
355
- export * from './SiteBlueprintInput';
356
- export * from './SiteBlueprintBoolExp';
357
- export * from './SiteBlueprintOrderBy';
358
- export * from './SiteBlueprintDistinctExp';
349
+ export * from './WebsiteProfile';
350
+ export * from './WebsiteProfileInput';
351
+ export * from './WebsiteProfileBoolExp';
352
+ export * from './WebsiteProfileOrderBy';
353
+ export * from './WebsiteProfileDistinctExp';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.3.105",
3
+ "version": "0.3.106",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [
@@ -12,8 +12,8 @@
12
12
  "devDependencies": {
13
13
  "eslint": "^9.39.2",
14
14
  "typescript": "^5",
15
- "@rxdrag/eslint-config-custom": "0.2.13",
16
- "@rxdrag/tsconfig": "0.2.1"
15
+ "@rxdrag/tsconfig": "0.2.1",
16
+ "@rxdrag/eslint-config-custom": "0.2.13"
17
17
  },
18
18
  "dependencies": {
19
19
  "@rxdrag/entify-lib": "0.0.24"
@@ -1,16 +0,0 @@
1
- import { IQueryArgs } from "@rxdrag/entify-lib";
2
- import { QueryOptions } from "./QueryOptions";
3
- import { CodeRevision, CodeRevisionBoolExp, CodeRevisionDistinctExp, CodeRevisionOrderBy } from "../interfaces";
4
- import { AgentTimelineItemQueryOptions } from './AgentTimelineItemQueryOptions';
5
- import { AgentTimelineItem } from '../interfaces';
6
- export declare class CodeRevisionQueryOptions extends QueryOptions<CodeRevision, CodeRevisionBoolExp, CodeRevisionOrderBy, CodeRevisionDistinctExp> {
7
- constructor(fields?: (keyof CodeRevision)[], queryArgs?: IQueryArgs<CodeRevisionBoolExp, CodeRevisionOrderBy, CodeRevisionDistinctExp>);
8
- id(): this;
9
- targetPath(): this;
10
- baseSnapshot(): this;
11
- delta(): this;
12
- resultSnapshot(): this;
13
- createdAt(): this;
14
- updatedAt(): this;
15
- timelineItem(options?: AgentTimelineItemQueryOptions | (keyof AgentTimelineItem)[]): this;
16
- }
@@ -1,2 +0,0 @@
1
- import { EntityEntry } from "@rxdrag/entify-lib";
2
- export declare const codeRevisionEntry: EntityEntry;
@@ -1,2 +0,0 @@
1
- import { EntityEntry } from "@rxdrag/entify-lib";
2
- export declare const siteBlueprintEntry: EntityEntry;
@@ -1,12 +0,0 @@
1
- export declare enum CodeRevisionFields {
2
- id = "id",
3
- targetPath = "targetPath",
4
- baseSnapshot = "baseSnapshot",
5
- delta = "delta",
6
- resultSnapshot = "resultSnapshot",
7
- createdAt = "createdAt",
8
- updatedAt = "updatedAt"
9
- }
10
- export declare enum CodeRevisionAssciations {
11
- timelineItem = "timelineItem"
12
- }
@@ -1,13 +0,0 @@
1
- import { AgentTimelineItem } from './AgentTimelineItem';
2
- export declare const CodeRevisionEntityName = "CodeRevision";
3
- export declare const CodeRevisionEntityLabel = "";
4
- export interface CodeRevision {
5
- id?: string | null;
6
- targetPath?: string;
7
- baseSnapshot?: string;
8
- delta?: string;
9
- resultSnapshot?: string;
10
- createdAt?: Date;
11
- updatedAt?: Date;
12
- timelineItem?: AgentTimelineItem;
13
- }
@@ -1,17 +0,0 @@
1
- import { IdComparisonExp } from './IdComparisonExp';
2
- import { StringComparisonExp } from './StringComparisonExp';
3
- import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
- import { AgentTimelineItemBoolExp } from './AgentTimelineItemBoolExp';
5
- export interface CodeRevisionBoolExp {
6
- _and?: CodeRevisionBoolExp[];
7
- _or?: CodeRevisionBoolExp[];
8
- _not?: CodeRevisionBoolExp;
9
- id?: IdComparisonExp;
10
- targetPath?: StringComparisonExp;
11
- baseSnapshot?: StringComparisonExp;
12
- delta?: StringComparisonExp;
13
- resultSnapshot?: StringComparisonExp;
14
- createdAt?: DateTimeComparisonExp;
15
- updatedAt?: DateTimeComparisonExp;
16
- timelineItem?: AgentTimelineItemBoolExp;
17
- }
@@ -1,10 +0,0 @@
1
- export declare enum CodeRevisionDistinctEnum {
2
- id = "id",
3
- targetPath = "targetPath",
4
- baseSnapshot = "baseSnapshot",
5
- delta = "delta",
6
- resultSnapshot = "resultSnapshot",
7
- createdAt = "createdAt",
8
- updatedAt = "updatedAt"
9
- }
10
- export type CodeRevisionDistinctExp = CodeRevisionDistinctEnum;
@@ -1,15 +0,0 @@
1
- import { CodeRevision } from './CodeRevision';
2
- import { AgentTimelineItemInput } from './AgentTimelineItemInput';
3
- import { SetHasOne } from '@rxdrag/entify-lib';
4
- export interface CodeRevisionInput {
5
- id?: string | null;
6
- targetPath?: string;
7
- baseSnapshot?: string;
8
- delta?: string;
9
- resultSnapshot?: string;
10
- createdAt?: Date;
11
- updatedAt?: Date;
12
- timelineItem?: SetHasOne<AgentTimelineItemInput>;
13
- }
14
- export declare const codeRevisionToInputCascade: (entity: CodeRevision) => CodeRevisionInput;
15
- export declare const codeRevisionToInput: (entity: CodeRevision) => CodeRevisionInput;
@@ -1,10 +0,0 @@
1
- import { OrderBy } from '@rxdrag/entify-lib';
2
- export interface CodeRevisionOrderBy {
3
- id?: OrderBy;
4
- targetPath?: OrderBy;
5
- baseSnapshot?: OrderBy;
6
- delta?: OrderBy;
7
- resultSnapshot?: OrderBy;
8
- createdAt?: OrderBy;
9
- updatedAt?: OrderBy;
10
- }