@rxdrag/rxcms-models 0.3.107 → 0.3.109

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 (30) hide show
  1. package/dist/classes/AgentMemoFileQueryOptions.d.ts +3 -0
  2. package/dist/classes/AgentMemoFolderQueryOptions.d.ts +3 -0
  3. package/dist/classes/WebsiteQueryOptions.d.ts +10 -3
  4. package/dist/classes/index.d.ts +0 -1
  5. package/dist/entries/index.d.ts +0 -1
  6. package/dist/fields/AgentMemoFileFields.d.ts +2 -1
  7. package/dist/fields/AgentMemoFolderFields.d.ts +2 -1
  8. package/dist/fields/WebsiteFields.d.ts +4 -1
  9. package/dist/fields/index.d.ts +0 -1
  10. package/dist/index.mjs +119 -221
  11. package/dist/index.mjs.map +1 -1
  12. package/dist/interfaces/AgentMemoFile.d.ts +2 -0
  13. package/dist/interfaces/AgentMemoFileBoolExp.d.ts +2 -0
  14. package/dist/interfaces/AgentMemoFileInput.d.ts +2 -0
  15. package/dist/interfaces/AgentMemoFolder.d.ts +2 -0
  16. package/dist/interfaces/AgentMemoFolderBoolExp.d.ts +2 -0
  17. package/dist/interfaces/AgentMemoFolderInput.d.ts +2 -0
  18. package/dist/interfaces/Website.d.ts +6 -2
  19. package/dist/interfaces/WebsiteBoolExp.d.ts +4 -2
  20. package/dist/interfaces/WebsiteInput.d.ts +4 -2
  21. package/dist/interfaces/index.d.ts +0 -5
  22. package/package.json +1 -1
  23. package/dist/classes/WebsiteProfileQueryOptions.d.ts +0 -25
  24. package/dist/entries/websiteProfileEntry.d.ts +0 -2
  25. package/dist/fields/WebsiteProfileFields.d.ts +0 -21
  26. package/dist/interfaces/WebsiteProfile.d.ts +0 -22
  27. package/dist/interfaces/WebsiteProfileBoolExp.d.ts +0 -26
  28. package/dist/interfaces/WebsiteProfileDistinctExp.d.ts +0 -19
  29. package/dist/interfaces/WebsiteProfileInput.d.ts +0 -24
  30. package/dist/interfaces/WebsiteProfileOrderBy.d.ts +0 -19
@@ -3,6 +3,8 @@ import { QueryOptions } from "./QueryOptions";
3
3
  import { AgentMemoFile, AgentMemoFileBoolExp, AgentMemoFileDistinctExp, AgentMemoFileOrderBy } from "../interfaces";
4
4
  import { AgentMemoFolderQueryOptions } from './AgentMemoFolderQueryOptions';
5
5
  import { AgentMemoFolder } from '../interfaces';
6
+ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
7
+ import { Website } from '../interfaces';
6
8
  export declare class AgentMemoFileQueryOptions extends QueryOptions<AgentMemoFile, AgentMemoFileBoolExp, AgentMemoFileOrderBy, AgentMemoFileDistinctExp> {
7
9
  constructor(fields?: (keyof AgentMemoFile)[], queryArgs?: IQueryArgs<AgentMemoFileBoolExp, AgentMemoFileOrderBy, AgentMemoFileDistinctExp>);
8
10
  id(): this;
@@ -13,4 +15,5 @@ export declare class AgentMemoFileQueryOptions extends QueryOptions<AgentMemoFil
13
15
  createdAt(): this;
14
16
  updatedAt(): this;
15
17
  folder(options?: AgentMemoFolderQueryOptions | (keyof AgentMemoFolder)[]): this;
18
+ website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
16
19
  }
@@ -4,6 +4,8 @@ import { AgentMemoFolder, AgentMemoFolderBoolExp, AgentMemoFolderDistinctExp, Ag
4
4
  import { AgentMemoFileQueryOptions } from './AgentMemoFileQueryOptions';
5
5
  import { AgentMemoFile } from '../interfaces';
6
6
  import { AgentMemoFileBoolExp } from '../interfaces';
7
+ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
8
+ import { Website } from '../interfaces';
7
9
  export declare class AgentMemoFolderQueryOptions extends QueryOptions<AgentMemoFolder, AgentMemoFolderBoolExp, AgentMemoFolderOrderBy, AgentMemoFolderDistinctExp> {
8
10
  constructor(fields?: (keyof AgentMemoFolder)[], queryArgs?: IQueryArgs<AgentMemoFolderBoolExp, AgentMemoFolderOrderBy, AgentMemoFolderDistinctExp>);
9
11
  id(): this;
@@ -15,4 +17,5 @@ export declare class AgentMemoFolderQueryOptions extends QueryOptions<AgentMemoF
15
17
  children(options?: AgentMemoFolderQueryOptions | (keyof AgentMemoFolder)[]): this;
16
18
  childrenAggregate(aggregate: IAggregate<AgentMemoFolderBoolExp>): this;
17
19
  parent(options?: AgentMemoFolderQueryOptions | (keyof AgentMemoFolder)[]): this;
20
+ website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
18
21
  }
@@ -70,8 +70,12 @@ import { AgentThreadBoolExp } from '../interfaces';
70
70
  import { TempFileQueryOptions } from './TempFileQueryOptions';
71
71
  import { TempFile } from '../interfaces';
72
72
  import { TempFileBoolExp } from '../interfaces';
73
- import { WebsiteProfileQueryOptions } from './WebsiteProfileQueryOptions';
74
- import { WebsiteProfile } from '../interfaces';
73
+ import { AgentMemoFolderQueryOptions } from './AgentMemoFolderQueryOptions';
74
+ import { AgentMemoFolder } from '../interfaces';
75
+ import { AgentMemoFolderBoolExp } from '../interfaces';
76
+ import { AgentMemoFileQueryOptions } from './AgentMemoFileQueryOptions';
77
+ import { AgentMemoFile } from '../interfaces';
78
+ import { AgentMemoFileBoolExp } from '../interfaces';
75
79
  export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
76
80
  constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
77
81
  id(): this;
@@ -152,6 +156,9 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
152
156
  agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
153
157
  tempFiles(options?: TempFileQueryOptions | (keyof TempFile)[]): this;
154
158
  tempFilesAggregate(aggregate: IAggregate<TempFileBoolExp>): this;
155
- profile(options?: WebsiteProfileQueryOptions | (keyof WebsiteProfile)[]): this;
159
+ memoFolders(options?: AgentMemoFolderQueryOptions | (keyof AgentMemoFolder)[]): this;
160
+ memoFoldersAggregate(aggregate: IAggregate<AgentMemoFolderBoolExp>): this;
161
+ memoFiles(options?: AgentMemoFileQueryOptions | (keyof AgentMemoFile)[]): this;
162
+ memoFilesAggregate(aggregate: IAggregate<AgentMemoFileBoolExp>): this;
156
163
  mockBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
157
164
  }
@@ -51,7 +51,6 @@ export * from './AgentRunQueryOptions';
51
51
  export * from './AgentTimelineItemQueryOptions';
52
52
  export * from './AgentAttachmentQueryOptions';
53
53
  export * from './TempFileQueryOptions';
54
- export * from './WebsiteProfileQueryOptions';
55
54
  export * from './AgentMemoFileQueryOptions';
56
55
  export * from './AgentMemoFolderQueryOptions';
57
56
  export * from './QueryOptions';
@@ -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 './websiteProfileEntry';
55
54
  export * from './agentMemoFileEntry';
56
55
  export * from './agentMemoFolderEntry';
@@ -8,5 +8,6 @@ export declare enum AgentMemoFileFields {
8
8
  updatedAt = "updatedAt"
9
9
  }
10
10
  export declare enum AgentMemoFileAssciations {
11
- folder = "folder"
11
+ folder = "folder",
12
+ website = "website"
12
13
  }
@@ -9,5 +9,6 @@ export declare enum AgentMemoFolderAssciations {
9
9
  filesAggregate = "filesAggregate",
10
10
  children = "children",
11
11
  childrenAggregate = "childrenAggregate",
12
- parent = "parent"
12
+ parent = "parent",
13
+ website = "website"
13
14
  }
@@ -79,6 +79,9 @@ export declare enum WebsiteAssciations {
79
79
  agentThreadsAggregate = "agentThreadsAggregate",
80
80
  tempFiles = "tempFiles",
81
81
  tempFilesAggregate = "tempFilesAggregate",
82
- profile = "profile",
82
+ memoFolders = "memoFolders",
83
+ memoFoldersAggregate = "memoFoldersAggregate",
84
+ memoFiles = "memoFiles",
85
+ memoFilesAggregate = "memoFilesAggregate",
83
86
  mockBranch = "mockBranch"
84
87
  }
@@ -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 './WebsiteProfileFields';
55
54
  export * from './AgentMemoFileFields';
56
55
  export * from './AgentMemoFolderFields';
package/dist/index.mjs CHANGED
@@ -52,7 +52,9 @@ const aggregateEntities = {
52
52
  svgIconsAggregate: "SvgIcon",
53
53
  tagsAggregate: "Tag",
54
54
  agentThreadsAggregate: "AgentThread",
55
- tempFilesAggregate: "TempFile"
55
+ tempFilesAggregate: "TempFile",
56
+ memoFoldersAggregate: "AgentMemoFolder",
57
+ memoFilesAggregate: "AgentMemoFile"
56
58
  },
57
59
  Lang: {
58
60
  webPartsOfMediaFolderAggregate: "MediaFolder",
@@ -1006,21 +1008,44 @@ const svgIconToInput = (entity) => {
1006
1008
  website: convertHasOneToInput(entity.website)
1007
1009
  };
1008
1010
  };
1009
- const websiteProfileToInputCascade = (entity) => {
1011
+ const agentMemoFileToInputCascade = (entity) => {
1010
1012
  return {
1011
1013
  ...entity,
1014
+ folder: entity.folder ? processHasOneClear({ sync: agentMemoFolderToInputCascade(entity.folder) }) : void 0,
1012
1015
  website: entity.website ? processHasOneClear({ sync: websiteToInputCascade(entity.website) }) : void 0
1013
1016
  };
1014
1017
  };
1015
- const websiteProfileToInput = (entity) => {
1018
+ const agentMemoFileToInput = (entity) => {
1016
1019
  return {
1017
1020
  ...entity,
1021
+ folder: convertHasOneToInput(entity.folder),
1022
+ website: convertHasOneToInput(entity.website)
1023
+ };
1024
+ };
1025
+ const agentMemoFolderToInputCascade = (entity) => {
1026
+ var _a, _b;
1027
+ const { filesAggregate, childrenAggregate, ...rest } = entity;
1028
+ return {
1029
+ ...rest,
1030
+ files: entity.files ? processHasManyClear({ sync: (_a = entity.files) == null ? void 0 : _a.map((ent) => agentMemoFileToInputCascade(ent)) }) : void 0,
1031
+ children: entity.children ? processHasManyClear({ sync: (_b = entity.children) == null ? void 0 : _b.map((ent) => agentMemoFolderToInputCascade(ent)) }) : void 0,
1032
+ parent: entity.parent ? processHasOneClear({ sync: agentMemoFolderToInputCascade(entity.parent) }) : void 0,
1033
+ website: entity.website ? processHasOneClear({ sync: websiteToInputCascade(entity.website) }) : void 0
1034
+ };
1035
+ };
1036
+ const agentMemoFolderToInput = (entity) => {
1037
+ const { filesAggregate, childrenAggregate, ...rest } = entity;
1038
+ return {
1039
+ ...rest,
1040
+ files: convertHasManyToInput(entity.files),
1041
+ children: convertHasManyToInput(entity.children),
1042
+ parent: convertHasOneToInput(entity.parent),
1018
1043
  website: convertHasOneToInput(entity.website)
1019
1044
  };
1020
1045
  };
1021
1046
  const websiteToInputCascade = (entity) => {
1022
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u;
1023
- const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, svgIconsAggregate, tagsAggregate, agentThreadsAggregate, tempFilesAggregate, ...rest } = entity;
1047
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w;
1048
+ const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, svgIconsAggregate, tagsAggregate, agentThreadsAggregate, tempFilesAggregate, memoFoldersAggregate, memoFilesAggregate, ...rest } = entity;
1024
1049
  return {
1025
1050
  ...rest,
1026
1051
  websiteType: entity.websiteType ? processHasOneClear({ sync: websiteTypeToInputCascade(entity.websiteType) }) : void 0,
@@ -1049,12 +1074,13 @@ const websiteToInputCascade = (entity) => {
1049
1074
  tags: entity.tags ? processHasManyClear({ sync: (_s = entity.tags) == null ? void 0 : _s.map((ent) => tagToInputCascade(ent)) }) : void 0,
1050
1075
  agentThreads: entity.agentThreads ? processHasManyClear({ sync: (_t = entity.agentThreads) == null ? void 0 : _t.map((ent) => agentThreadToInputCascade(ent)) }) : void 0,
1051
1076
  tempFiles: entity.tempFiles ? processHasManyClear({ sync: (_u = entity.tempFiles) == null ? void 0 : _u.map((ent) => tempFileToInputCascade(ent)) }) : void 0,
1052
- profile: entity.profile ? processHasOneClear({ sync: websiteProfileToInputCascade(entity.profile) }) : void 0,
1077
+ memoFolders: entity.memoFolders ? processHasManyClear({ sync: (_v = entity.memoFolders) == null ? void 0 : _v.map((ent) => agentMemoFolderToInputCascade(ent)) }) : void 0,
1078
+ memoFiles: entity.memoFiles ? processHasManyClear({ sync: (_w = entity.memoFiles) == null ? void 0 : _w.map((ent) => agentMemoFileToInputCascade(ent)) }) : void 0,
1053
1079
  mockBranch: entity.mockBranch ? processHasOneClear({ sync: themeBranchToInputCascade(entity.mockBranch) }) : void 0
1054
1080
  };
1055
1081
  };
1056
1082
  const websiteToInput = (entity) => {
1057
- const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, svgIconsAggregate, tagsAggregate, agentThreadsAggregate, tempFilesAggregate, ...rest } = entity;
1083
+ const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, svgIconsAggregate, tagsAggregate, agentThreadsAggregate, tempFilesAggregate, memoFoldersAggregate, memoFilesAggregate, ...rest } = entity;
1058
1084
  return {
1059
1085
  ...rest,
1060
1086
  websiteType: convertHasOneToInput(entity.websiteType),
@@ -1083,7 +1109,8 @@ const websiteToInput = (entity) => {
1083
1109
  tags: convertHasManyToInput(entity.tags),
1084
1110
  agentThreads: convertHasManyToInput(entity.agentThreads),
1085
1111
  tempFiles: convertHasManyToInput(entity.tempFiles),
1086
- profile: convertHasOneToInput(entity.profile),
1112
+ memoFolders: convertHasManyToInput(entity.memoFolders),
1113
+ memoFiles: convertHasManyToInput(entity.memoFiles),
1087
1114
  mockBranch: convertHasOneToInput(entity.mockBranch)
1088
1115
  };
1089
1116
  };
@@ -2300,60 +2327,8 @@ var TempFileDistinctEnum = /* @__PURE__ */ ((TempFileDistinctEnum2) => {
2300
2327
  TempFileDistinctEnum2["mimeType"] = "mimeType";
2301
2328
  return TempFileDistinctEnum2;
2302
2329
  })(TempFileDistinctEnum || {});
2303
- const WebsiteProfileEntityName = "WebsiteProfile";
2304
- const WebsiteProfileEntityLabel = "";
2305
- var WebsiteProfileDistinctEnum = /* @__PURE__ */ ((WebsiteProfileDistinctEnum2) => {
2306
- WebsiteProfileDistinctEnum2["id"] = "id";
2307
- WebsiteProfileDistinctEnum2["name"] = "name";
2308
- WebsiteProfileDistinctEnum2["industry"] = "industry";
2309
- WebsiteProfileDistinctEnum2["targetMarket"] = "targetMarket";
2310
- WebsiteProfileDistinctEnum2["references"] = "references";
2311
- WebsiteProfileDistinctEnum2["layoutPreference"] = "layoutPreference";
2312
- WebsiteProfileDistinctEnum2["styleGuide"] = "styleGuide";
2313
- WebsiteProfileDistinctEnum2["contentStrategy"] = "contentStrategy";
2314
- WebsiteProfileDistinctEnum2["themeBranchId"] = "themeBranchId";
2315
- WebsiteProfileDistinctEnum2["createdAt"] = "createdAt";
2316
- WebsiteProfileDistinctEnum2["updatedAt"] = "updatedAt";
2317
- WebsiteProfileDistinctEnum2["products"] = "products";
2318
- WebsiteProfileDistinctEnum2["companyInfo"] = "companyInfo";
2319
- WebsiteProfileDistinctEnum2["slug"] = "slug";
2320
- WebsiteProfileDistinctEnum2["langAbbr"] = "langAbbr";
2321
- WebsiteProfileDistinctEnum2["pages"] = "pages";
2322
- return WebsiteProfileDistinctEnum2;
2323
- })(WebsiteProfileDistinctEnum || {});
2324
2330
  const AgentMemoFileEntityName = "AgentMemoFile";
2325
2331
  const AgentMemoFileEntityLabel = "";
2326
- const agentMemoFolderToInputCascade = (entity) => {
2327
- var _a, _b;
2328
- const { filesAggregate, childrenAggregate, ...rest } = entity;
2329
- return {
2330
- ...rest,
2331
- files: entity.files ? processHasManyClear({ sync: (_a = entity.files) == null ? void 0 : _a.map((ent) => agentMemoFileToInputCascade(ent)) }) : void 0,
2332
- children: entity.children ? processHasManyClear({ sync: (_b = entity.children) == null ? void 0 : _b.map((ent) => agentMemoFolderToInputCascade(ent)) }) : void 0,
2333
- parent: entity.parent ? processHasOneClear({ sync: agentMemoFolderToInputCascade(entity.parent) }) : void 0
2334
- };
2335
- };
2336
- const agentMemoFolderToInput = (entity) => {
2337
- const { filesAggregate, childrenAggregate, ...rest } = entity;
2338
- return {
2339
- ...rest,
2340
- files: convertHasManyToInput(entity.files),
2341
- children: convertHasManyToInput(entity.children),
2342
- parent: convertHasOneToInput(entity.parent)
2343
- };
2344
- };
2345
- const agentMemoFileToInputCascade = (entity) => {
2346
- return {
2347
- ...entity,
2348
- folder: entity.folder ? processHasOneClear({ sync: agentMemoFolderToInputCascade(entity.folder) }) : void 0
2349
- };
2350
- };
2351
- const agentMemoFileToInput = (entity) => {
2352
- return {
2353
- ...entity,
2354
- folder: convertHasOneToInput(entity.folder)
2355
- };
2356
- };
2357
2332
  var AgentMemoFileDistinctEnum = /* @__PURE__ */ ((AgentMemoFileDistinctEnum2) => {
2358
2333
  AgentMemoFileDistinctEnum2["id"] = "id";
2359
2334
  AgentMemoFileDistinctEnum2["name"] = "name";
@@ -4959,9 +4934,9 @@ class SvgIconQueryOptions extends QueryOptions {
4959
4934
  return this;
4960
4935
  }
4961
4936
  }
4962
- class WebsiteProfileQueryOptions extends QueryOptions {
4937
+ class AgentMemoFileQueryOptions extends QueryOptions {
4963
4938
  constructor(fields, queryArgs) {
4964
- super(WebsiteProfileEntityName, fields, queryArgs);
4939
+ super(AgentMemoFileEntityName, fields, queryArgs);
4965
4940
  }
4966
4941
  id() {
4967
4942
  this.addField("id");
@@ -4971,32 +4946,53 @@ class WebsiteProfileQueryOptions extends QueryOptions {
4971
4946
  this.addField("name");
4972
4947
  return this;
4973
4948
  }
4974
- industry() {
4975
- this.addField("industry");
4949
+ content() {
4950
+ this.addField("content");
4976
4951
  return this;
4977
4952
  }
4978
- targetMarket() {
4979
- this.addField("targetMarket");
4953
+ mimeType() {
4954
+ this.addField("mimeType");
4980
4955
  return this;
4981
4956
  }
4982
- references() {
4983
- this.addField("references");
4957
+ extName() {
4958
+ this.addField("extName");
4984
4959
  return this;
4985
4960
  }
4986
- layoutPreference() {
4987
- this.addField("layoutPreference");
4961
+ createdAt() {
4962
+ this.addField("createdAt");
4988
4963
  return this;
4989
4964
  }
4990
- styleGuide() {
4991
- this.addField("styleGuide");
4965
+ updatedAt() {
4966
+ this.addField("updatedAt");
4992
4967
  return this;
4993
4968
  }
4994
- contentStrategy() {
4995
- this.addField("contentStrategy");
4969
+ folder(options) {
4970
+ if (Array.isArray(options)) {
4971
+ this._associations["folder"] = new AgentMemoFolderQueryOptions(options);
4972
+ } else {
4973
+ this._associations["folder"] = options || new AgentMemoFolderQueryOptions(["id"]);
4974
+ }
4996
4975
  return this;
4997
4976
  }
4998
- themeBranchId() {
4999
- this.addField("themeBranchId");
4977
+ website(options) {
4978
+ if (Array.isArray(options)) {
4979
+ this._associations["website"] = new WebsiteQueryOptions(options);
4980
+ } else {
4981
+ this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
4982
+ }
4983
+ return this;
4984
+ }
4985
+ }
4986
+ class AgentMemoFolderQueryOptions extends QueryOptions {
4987
+ constructor(fields, queryArgs) {
4988
+ super(AgentMemoFolderEntityName, fields, queryArgs);
4989
+ }
4990
+ id() {
4991
+ this.addField("id");
4992
+ return this;
4993
+ }
4994
+ name() {
4995
+ this.addField("name");
5000
4996
  return this;
5001
4997
  }
5002
4998
  createdAt() {
@@ -5007,24 +5003,36 @@ class WebsiteProfileQueryOptions extends QueryOptions {
5007
5003
  this.addField("updatedAt");
5008
5004
  return this;
5009
5005
  }
5010
- products() {
5011
- this.addField("products");
5006
+ files(options) {
5007
+ if (Array.isArray(options)) {
5008
+ this._associations["files"] = new AgentMemoFileQueryOptions(options);
5009
+ } else {
5010
+ this._associations["files"] = options || new AgentMemoFileQueryOptions(["id"]);
5011
+ }
5012
5012
  return this;
5013
5013
  }
5014
- companyInfo() {
5015
- this.addField("companyInfo");
5014
+ filesAggregate(aggregate) {
5015
+ this._aggregates["filesAggregate"] = aggregate;
5016
5016
  return this;
5017
5017
  }
5018
- slug() {
5019
- this.addField("slug");
5018
+ children(options) {
5019
+ if (Array.isArray(options)) {
5020
+ this._associations["children"] = new AgentMemoFolderQueryOptions(options);
5021
+ } else {
5022
+ this._associations["children"] = options || new AgentMemoFolderQueryOptions(["id"]);
5023
+ }
5020
5024
  return this;
5021
5025
  }
5022
- langAbbr() {
5023
- this.addField("langAbbr");
5026
+ childrenAggregate(aggregate) {
5027
+ this._aggregates["childrenAggregate"] = aggregate;
5024
5028
  return this;
5025
5029
  }
5026
- pages() {
5027
- this.addField("pages");
5030
+ parent(options) {
5031
+ if (Array.isArray(options)) {
5032
+ this._associations["parent"] = new AgentMemoFolderQueryOptions(options);
5033
+ } else {
5034
+ this._associations["parent"] = options || new AgentMemoFolderQueryOptions(["id"]);
5035
+ }
5028
5036
  return this;
5029
5037
  }
5030
5038
  website(options) {
@@ -5393,14 +5401,30 @@ class WebsiteQueryOptions extends QueryOptions {
5393
5401
  this._aggregates["tempFilesAggregate"] = aggregate;
5394
5402
  return this;
5395
5403
  }
5396
- profile(options) {
5404
+ memoFolders(options) {
5405
+ if (Array.isArray(options)) {
5406
+ this._associations["memoFolders"] = new AgentMemoFolderQueryOptions(options);
5407
+ } else {
5408
+ this._associations["memoFolders"] = options || new AgentMemoFolderQueryOptions(["id"]);
5409
+ }
5410
+ return this;
5411
+ }
5412
+ memoFoldersAggregate(aggregate) {
5413
+ this._aggregates["memoFoldersAggregate"] = aggregate;
5414
+ return this;
5415
+ }
5416
+ memoFiles(options) {
5397
5417
  if (Array.isArray(options)) {
5398
- this._associations["profile"] = new WebsiteProfileQueryOptions(options);
5418
+ this._associations["memoFiles"] = new AgentMemoFileQueryOptions(options);
5399
5419
  } else {
5400
- this._associations["profile"] = options || new WebsiteProfileQueryOptions(["id"]);
5420
+ this._associations["memoFiles"] = options || new AgentMemoFileQueryOptions(["id"]);
5401
5421
  }
5402
5422
  return this;
5403
5423
  }
5424
+ memoFilesAggregate(aggregate) {
5425
+ this._aggregates["memoFilesAggregate"] = aggregate;
5426
+ return this;
5427
+ }
5404
5428
  mockBranch(options) {
5405
5429
  if (Array.isArray(options)) {
5406
5430
  this._associations["mockBranch"] = new ThemeBranchQueryOptions(options);
@@ -6737,100 +6761,6 @@ class VisitorLogQueryOptions extends QueryOptions {
6737
6761
  return this;
6738
6762
  }
6739
6763
  }
6740
- class AgentMemoFolderQueryOptions extends QueryOptions {
6741
- constructor(fields, queryArgs) {
6742
- super(AgentMemoFolderEntityName, fields, queryArgs);
6743
- }
6744
- id() {
6745
- this.addField("id");
6746
- return this;
6747
- }
6748
- name() {
6749
- this.addField("name");
6750
- return this;
6751
- }
6752
- createdAt() {
6753
- this.addField("createdAt");
6754
- return this;
6755
- }
6756
- updatedAt() {
6757
- this.addField("updatedAt");
6758
- return this;
6759
- }
6760
- files(options) {
6761
- if (Array.isArray(options)) {
6762
- this._associations["files"] = new AgentMemoFileQueryOptions(options);
6763
- } else {
6764
- this._associations["files"] = options || new AgentMemoFileQueryOptions(["id"]);
6765
- }
6766
- return this;
6767
- }
6768
- filesAggregate(aggregate) {
6769
- this._aggregates["filesAggregate"] = aggregate;
6770
- return this;
6771
- }
6772
- children(options) {
6773
- if (Array.isArray(options)) {
6774
- this._associations["children"] = new AgentMemoFolderQueryOptions(options);
6775
- } else {
6776
- this._associations["children"] = options || new AgentMemoFolderQueryOptions(["id"]);
6777
- }
6778
- return this;
6779
- }
6780
- childrenAggregate(aggregate) {
6781
- this._aggregates["childrenAggregate"] = aggregate;
6782
- return this;
6783
- }
6784
- parent(options) {
6785
- if (Array.isArray(options)) {
6786
- this._associations["parent"] = new AgentMemoFolderQueryOptions(options);
6787
- } else {
6788
- this._associations["parent"] = options || new AgentMemoFolderQueryOptions(["id"]);
6789
- }
6790
- return this;
6791
- }
6792
- }
6793
- class AgentMemoFileQueryOptions extends QueryOptions {
6794
- constructor(fields, queryArgs) {
6795
- super(AgentMemoFileEntityName, fields, queryArgs);
6796
- }
6797
- id() {
6798
- this.addField("id");
6799
- return this;
6800
- }
6801
- name() {
6802
- this.addField("name");
6803
- return this;
6804
- }
6805
- content() {
6806
- this.addField("content");
6807
- return this;
6808
- }
6809
- mimeType() {
6810
- this.addField("mimeType");
6811
- return this;
6812
- }
6813
- extName() {
6814
- this.addField("extName");
6815
- return this;
6816
- }
6817
- createdAt() {
6818
- this.addField("createdAt");
6819
- return this;
6820
- }
6821
- updatedAt() {
6822
- this.addField("updatedAt");
6823
- return this;
6824
- }
6825
- folder(options) {
6826
- if (Array.isArray(options)) {
6827
- this._associations["folder"] = new AgentMemoFolderQueryOptions(options);
6828
- } else {
6829
- this._associations["folder"] = options || new AgentMemoFolderQueryOptions(["id"]);
6830
- }
6831
- return this;
6832
- }
6833
- }
6834
6764
  const userEntry = {
6835
6765
  entityName: UserEntityName,
6836
6766
  entityLabel: UserEntityLabel,
@@ -7096,11 +7026,6 @@ const tempFileEntry = {
7096
7026
  entityLabel: TempFileEntityLabel,
7097
7027
  toInput: tempFileToInput
7098
7028
  };
7099
- const websiteProfileEntry = {
7100
- entityName: WebsiteProfileEntityName,
7101
- entityLabel: WebsiteProfileEntityLabel,
7102
- toInput: websiteProfileToInput
7103
- };
7104
7029
  const agentMemoFileEntry = {
7105
7030
  entityName: AgentMemoFileEntityName,
7106
7031
  entityLabel: AgentMemoFileEntityLabel,
@@ -7334,7 +7259,10 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
7334
7259
  WebsiteAssciations2["agentThreadsAggregate"] = "agentThreadsAggregate";
7335
7260
  WebsiteAssciations2["tempFiles"] = "tempFiles";
7336
7261
  WebsiteAssciations2["tempFilesAggregate"] = "tempFilesAggregate";
7337
- WebsiteAssciations2["profile"] = "profile";
7262
+ WebsiteAssciations2["memoFolders"] = "memoFolders";
7263
+ WebsiteAssciations2["memoFoldersAggregate"] = "memoFoldersAggregate";
7264
+ WebsiteAssciations2["memoFiles"] = "memoFiles";
7265
+ WebsiteAssciations2["memoFilesAggregate"] = "memoFilesAggregate";
7338
7266
  WebsiteAssciations2["mockBranch"] = "mockBranch";
7339
7267
  return WebsiteAssciations2;
7340
7268
  })(WebsiteAssciations || {});
@@ -8201,29 +8129,6 @@ var TempFileAssciations = /* @__PURE__ */ ((TempFileAssciations2) => {
8201
8129
  TempFileAssciations2["agentAttachment"] = "agentAttachment";
8202
8130
  return TempFileAssciations2;
8203
8131
  })(TempFileAssciations || {});
8204
- var WebsiteProfileFields = /* @__PURE__ */ ((WebsiteProfileFields2) => {
8205
- WebsiteProfileFields2["id"] = "id";
8206
- WebsiteProfileFields2["name"] = "name";
8207
- WebsiteProfileFields2["industry"] = "industry";
8208
- WebsiteProfileFields2["targetMarket"] = "targetMarket";
8209
- WebsiteProfileFields2["references"] = "references";
8210
- WebsiteProfileFields2["layoutPreference"] = "layoutPreference";
8211
- WebsiteProfileFields2["styleGuide"] = "styleGuide";
8212
- WebsiteProfileFields2["contentStrategy"] = "contentStrategy";
8213
- WebsiteProfileFields2["themeBranchId"] = "themeBranchId";
8214
- WebsiteProfileFields2["createdAt"] = "createdAt";
8215
- WebsiteProfileFields2["updatedAt"] = "updatedAt";
8216
- WebsiteProfileFields2["products"] = "products";
8217
- WebsiteProfileFields2["companyInfo"] = "companyInfo";
8218
- WebsiteProfileFields2["slug"] = "slug";
8219
- WebsiteProfileFields2["langAbbr"] = "langAbbr";
8220
- WebsiteProfileFields2["pages"] = "pages";
8221
- return WebsiteProfileFields2;
8222
- })(WebsiteProfileFields || {});
8223
- var WebsiteProfileAssciations = /* @__PURE__ */ ((WebsiteProfileAssciations2) => {
8224
- WebsiteProfileAssciations2["website"] = "website";
8225
- return WebsiteProfileAssciations2;
8226
- })(WebsiteProfileAssciations || {});
8227
8132
  var AgentMemoFileFields = /* @__PURE__ */ ((AgentMemoFileFields2) => {
8228
8133
  AgentMemoFileFields2["id"] = "id";
8229
8134
  AgentMemoFileFields2["name"] = "name";
@@ -8236,6 +8141,7 @@ var AgentMemoFileFields = /* @__PURE__ */ ((AgentMemoFileFields2) => {
8236
8141
  })(AgentMemoFileFields || {});
8237
8142
  var AgentMemoFileAssciations = /* @__PURE__ */ ((AgentMemoFileAssciations2) => {
8238
8143
  AgentMemoFileAssciations2["folder"] = "folder";
8144
+ AgentMemoFileAssciations2["website"] = "website";
8239
8145
  return AgentMemoFileAssciations2;
8240
8146
  })(AgentMemoFileAssciations || {});
8241
8147
  var AgentMemoFolderFields = /* @__PURE__ */ ((AgentMemoFolderFields2) => {
@@ -8251,6 +8157,7 @@ var AgentMemoFolderAssciations = /* @__PURE__ */ ((AgentMemoFolderAssciations2)
8251
8157
  AgentMemoFolderAssciations2["children"] = "children";
8252
8158
  AgentMemoFolderAssciations2["childrenAggregate"] = "childrenAggregate";
8253
8159
  AgentMemoFolderAssciations2["parent"] = "parent";
8160
+ AgentMemoFolderAssciations2["website"] = "website";
8254
8161
  return AgentMemoFolderAssciations2;
8255
8162
  })(AgentMemoFolderAssciations || {});
8256
8163
  export {
@@ -8590,12 +8497,6 @@ export {
8590
8497
  WebsiteEntityName,
8591
8498
  WebsiteFields,
8592
8499
  WebsitePartDistinctEnum,
8593
- WebsiteProfileAssciations,
8594
- WebsiteProfileDistinctEnum,
8595
- WebsiteProfileEntityLabel,
8596
- WebsiteProfileEntityName,
8597
- WebsiteProfileFields,
8598
- WebsiteProfileQueryOptions,
8599
8500
  WebsiteQueryOptions,
8600
8501
  WebsiteSettingsAssciations,
8601
8502
  WebsiteSettingsDistinctEnum,
@@ -8773,9 +8674,6 @@ export {
8773
8674
  visitorLogToInput,
8774
8675
  visitorLogToInputCascade,
8775
8676
  websiteEntry,
8776
- websiteProfileEntry,
8777
- websiteProfileToInput,
8778
- websiteProfileToInputCascade,
8779
8677
  websiteSettingsEntry,
8780
8678
  websiteSettingsToInput,
8781
8679
  websiteSettingsToInputCascade,