@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,19 +1,19 @@
1
1
  import { IQueryArgs } from "@rxdrag/entify-lib";
2
2
  import { QueryOptions } from "./QueryOptions";
3
3
  import { AgentAttachment, AgentAttachmentBoolExp, AgentAttachmentDistinctExp, AgentAttachmentOrderBy } from "../interfaces";
4
+ import { TempFileQueryOptions } from './TempFileQueryOptions';
5
+ import { TempFile } from '../interfaces';
4
6
  import { AgentTimelineItemQueryOptions } from './AgentTimelineItemQueryOptions';
5
7
  import { AgentTimelineItem } from '../interfaces';
6
8
  export declare class AgentAttachmentQueryOptions extends QueryOptions<AgentAttachment, AgentAttachmentBoolExp, AgentAttachmentOrderBy, AgentAttachmentDistinctExp> {
7
9
  constructor(fields?: (keyof AgentAttachment)[], queryArgs?: IQueryArgs<AgentAttachmentBoolExp, AgentAttachmentOrderBy, AgentAttachmentDistinctExp>);
8
10
  id(): this;
9
11
  name(): this;
10
- mimeType(): this;
11
- size(): this;
12
- extName(): this;
13
- mediaType(): this;
14
- storageMeta(fields: string[]): this;
15
- seqValue(): this;
12
+ type(): this;
13
+ playload(): this;
16
14
  createdAt(): this;
17
15
  updatedAt(): this;
16
+ seqValue(): this;
17
+ file(options?: TempFileQueryOptions | (keyof TempFile)[]): this;
18
18
  timelineItme(options?: AgentTimelineItemQueryOptions | (keyof AgentTimelineItem)[]): this;
19
19
  }
@@ -4,8 +4,6 @@ import { AgentTimelineItem, AgentTimelineItemBoolExp, AgentTimelineItemDistinctE
4
4
  import { AgentAttachmentQueryOptions } from './AgentAttachmentQueryOptions';
5
5
  import { AgentAttachment } from '../interfaces';
6
6
  import { AgentAttachmentBoolExp } from '../interfaces';
7
- import { CodeRevisionQueryOptions } from './CodeRevisionQueryOptions';
8
- import { CodeRevision } from '../interfaces';
9
7
  import { AgentRunQueryOptions } from './AgentRunQueryOptions';
10
8
  import { AgentRun } from '../interfaces';
11
9
  export declare class AgentTimelineItemQueryOptions extends QueryOptions<AgentTimelineItem, AgentTimelineItemBoolExp, AgentTimelineItemOrderBy, AgentTimelineItemDistinctExp> {
@@ -18,6 +16,5 @@ export declare class AgentTimelineItemQueryOptions extends QueryOptions<AgentTim
18
16
  seqValue(): this;
19
17
  attachments(options?: AgentAttachmentQueryOptions | (keyof AgentAttachment)[]): this;
20
18
  attachmentsAggregate(aggregate: IAggregate<AgentAttachmentBoolExp>): this;
21
- codeRevision(options?: CodeRevisionQueryOptions | (keyof CodeRevision)[]): this;
22
19
  run(options?: AgentRunQueryOptions | (keyof AgentRun)[]): this;
23
20
  }
@@ -5,6 +5,8 @@ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
5
5
  import { Website } from '../interfaces';
6
6
  import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
7
7
  import { ThemeBranch } from '../interfaces';
8
+ import { AgentAttachmentQueryOptions } from './AgentAttachmentQueryOptions';
9
+ import { AgentAttachment } from '../interfaces';
8
10
  export declare class TempFileQueryOptions extends QueryOptions<TempFile, TempFileBoolExp, TempFileOrderBy, TempFileDistinctExp> {
9
11
  constructor(fields?: (keyof TempFile)[], queryArgs?: IQueryArgs<TempFileBoolExp, TempFileOrderBy, TempFileDistinctExp>);
10
12
  id(): this;
@@ -13,10 +15,10 @@ export declare class TempFileQueryOptions extends QueryOptions<TempFile, TempFil
13
15
  extName(): this;
14
16
  mediaType(): this;
15
17
  storageMeta(fields: string[]): this;
16
- seqValue(): this;
17
18
  createdAt(): this;
18
19
  updateAt(): this;
19
20
  mimeType(): this;
20
21
  website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
21
22
  themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
23
+ agentAttachment(options?: AgentAttachmentQueryOptions | (keyof AgentAttachment)[]): this;
22
24
  }
@@ -16,6 +16,7 @@ export declare class ThemeQueryOptions extends QueryOptions<Theme, ThemeBoolExp,
16
16
  createdAt(): this;
17
17
  updatedAt(): this;
18
18
  seqValue(): this;
19
+ slug(): this;
19
20
  branches(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
20
21
  branchesAggregate(aggregate: IAggregate<ThemeBranchBoolExp>): this;
21
22
  cover(options?: MediaQueryOptions | (keyof Media)[]): this;
@@ -1,10 +1,10 @@
1
1
  import { IQueryArgs } from "@rxdrag/entify-lib";
2
2
  import { QueryOptions } from "./QueryOptions";
3
- import { SiteBlueprint, SiteBlueprintBoolExp, SiteBlueprintDistinctExp, SiteBlueprintOrderBy } from "../interfaces";
3
+ import { WebsiteProfile, WebsiteProfileBoolExp, WebsiteProfileDistinctExp, WebsiteProfileOrderBy } from "../interfaces";
4
4
  import { WebsiteQueryOptions } from './WebsiteQueryOptions';
5
5
  import { Website } from '../interfaces';
6
- export declare class SiteBlueprintQueryOptions extends QueryOptions<SiteBlueprint, SiteBlueprintBoolExp, SiteBlueprintOrderBy, SiteBlueprintDistinctExp> {
7
- constructor(fields?: (keyof SiteBlueprint)[], queryArgs?: IQueryArgs<SiteBlueprintBoolExp, SiteBlueprintOrderBy, SiteBlueprintDistinctExp>);
6
+ export declare class WebsiteProfileQueryOptions extends QueryOptions<WebsiteProfile, WebsiteProfileBoolExp, WebsiteProfileOrderBy, WebsiteProfileDistinctExp> {
7
+ constructor(fields?: (keyof WebsiteProfile)[], queryArgs?: IQueryArgs<WebsiteProfileBoolExp, WebsiteProfileOrderBy, WebsiteProfileDistinctExp>);
8
8
  id(): this;
9
9
  name(): this;
10
10
  industry(): this;
@@ -13,7 +13,7 @@ export declare class SiteBlueprintQueryOptions extends QueryOptions<SiteBlueprin
13
13
  layoutPreference(): this;
14
14
  styleGuide(): this;
15
15
  contentStrategy(): this;
16
- baseTemplateId(): this;
16
+ themeBranchId(): this;
17
17
  createdAt(): this;
18
18
  updatedAt(): this;
19
19
  products(): this;
@@ -73,8 +73,8 @@ import { TempFileBoolExp } from '../interfaces';
73
73
  import { AgentContextQueryOptions } from './AgentContextQueryOptions';
74
74
  import { AgentContext } from '../interfaces';
75
75
  import { AgentContextBoolExp } from '../interfaces';
76
- import { SiteBlueprintQueryOptions } from './SiteBlueprintQueryOptions';
77
- import { SiteBlueprint } from '../interfaces';
76
+ import { WebsiteProfileQueryOptions } from './WebsiteProfileQueryOptions';
77
+ import { WebsiteProfile } from '../interfaces';
78
78
  export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
79
79
  constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
80
80
  id(): this;
@@ -157,6 +157,6 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
157
157
  tempFilesAggregate(aggregate: IAggregate<TempFileBoolExp>): this;
158
158
  agentContexts(options?: AgentContextQueryOptions | (keyof AgentContext)[]): this;
159
159
  agentContextsAggregate(aggregate: IAggregate<AgentContextBoolExp>): this;
160
- siteBlueprint(options?: SiteBlueprintQueryOptions | (keyof SiteBlueprint)[]): this;
160
+ profile(options?: WebsiteProfileQueryOptions | (keyof WebsiteProfile)[]): this;
161
161
  mockBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
162
162
  }
@@ -51,8 +51,7 @@ export * from './AgentRunQueryOptions';
51
51
  export * from './AgentTimelineItemQueryOptions';
52
52
  export * from './AgentAttachmentQueryOptions';
53
53
  export * from './TempFileQueryOptions';
54
- export * from './CodeRevisionQueryOptions';
55
54
  export * from './AgentContextQueryOptions';
56
- export * from './SiteBlueprintQueryOptions';
55
+ export * from './WebsiteProfileQueryOptions';
57
56
  export * from './QueryOptions';
58
57
  export * from './metainfo';
@@ -51,6 +51,5 @@ export * from './agentRunEntry';
51
51
  export * from './agentTimelineItemEntry';
52
52
  export * from './agentAttachmentEntry';
53
53
  export * from './tempFileEntry';
54
- export * from './codeRevisionEntry';
55
54
  export * from './agentContextEntry';
56
- export * from './siteBlueprintEntry';
55
+ export * from './websiteProfileEntry';
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const websiteProfileEntry: EntityEntry;
@@ -1,15 +1,13 @@
1
1
  export declare enum AgentAttachmentFields {
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 declare enum AgentAttachmentAssciations {
11
+ file = "file",
14
12
  timelineItme = "timelineItme"
15
13
  }
@@ -9,6 +9,5 @@ export declare enum AgentTimelineItemFields {
9
9
  export declare enum AgentTimelineItemAssciations {
10
10
  attachments = "attachments",
11
11
  attachmentsAggregate = "attachmentsAggregate",
12
- codeRevision = "codeRevision",
13
12
  run = "run"
14
13
  }
@@ -5,12 +5,12 @@ export declare enum TempFileFields {
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"
12
11
  }
13
12
  export declare enum TempFileAssciations {
14
13
  website = "website",
15
- themeBranch = "themeBranch"
14
+ themeBranch = "themeBranch",
15
+ agentAttachment = "agentAttachment"
16
16
  }
@@ -4,7 +4,8 @@ export declare enum ThemeFields {
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 declare enum ThemeAssciations {
10
11
  branches = "branches",
@@ -81,6 +81,6 @@ export declare enum WebsiteAssciations {
81
81
  tempFilesAggregate = "tempFilesAggregate",
82
82
  agentContexts = "agentContexts",
83
83
  agentContextsAggregate = "agentContextsAggregate",
84
- siteBlueprint = "siteBlueprint",
84
+ profile = "profile",
85
85
  mockBranch = "mockBranch"
86
86
  }
@@ -1,4 +1,4 @@
1
- export declare enum SiteBlueprintFields {
1
+ export declare enum WebsiteProfileFields {
2
2
  id = "id",
3
3
  name = "name",
4
4
  industry = "industry",
@@ -7,7 +7,7 @@ export declare enum SiteBlueprintFields {
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,6 +16,6 @@ export declare enum SiteBlueprintFields {
16
16
  langAbbr = "langAbbr",
17
17
  pages = "pages"
18
18
  }
19
- export declare enum SiteBlueprintAssciations {
19
+ export declare enum WebsiteProfileAssciations {
20
20
  website = "website"
21
21
  }
@@ -51,6 +51,5 @@ export * from './AgentRunFields';
51
51
  export * from './AgentTimelineItemFields';
52
52
  export * from './AgentAttachmentFields';
53
53
  export * from './TempFileFields';
54
- export * from './CodeRevisionFields';
55
54
  export * from './AgentContextFields';
56
- export * from './SiteBlueprintFields';
55
+ export * from './WebsiteProfileFields';