@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
package/dist/index.mjs CHANGED
@@ -474,30 +474,36 @@ const themeFileToInput = (entity) => {
474
474
  folder: convertHasOneToInput(entity.folder)
475
475
  };
476
476
  };
477
- const agentAttachmentToInputCascade = (entity) => {
477
+ const tempFileToInputCascade = (entity) => {
478
478
  const { storageMeta, ...rest } = entity;
479
479
  return {
480
480
  ...rest,
481
- timelineItme: entity.timelineItme ? processHasOneClear({ sync: agentTimelineItemToInput(entity.timelineItme) }) : void 0
481
+ website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0,
482
+ themeBranch: entity.themeBranch ? processHasOneClear({ sync: themeBranchToInput(entity.themeBranch) }) : void 0,
483
+ agentAttachment: entity.agentAttachment ? processHasOneClear({ sync: agentAttachmentToInput(entity.agentAttachment) }) : void 0
482
484
  };
483
485
  };
484
- const agentAttachmentToInput = (entity) => {
486
+ const tempFileToInput = (entity) => {
485
487
  const { storageMeta, ...rest } = entity;
486
488
  return {
487
489
  ...rest,
488
- timelineItme: convertHasOneToInput(entity.timelineItme)
490
+ website: convertHasOneToInput(entity.website),
491
+ themeBranch: convertHasOneToInput(entity.themeBranch),
492
+ agentAttachment: convertHasOneToInput(entity.agentAttachment)
489
493
  };
490
494
  };
491
- const codeRevisionToInputCascade = (entity) => {
495
+ const agentAttachmentToInputCascade = (entity) => {
492
496
  return {
493
497
  ...entity,
494
- timelineItem: entity.timelineItem ? processHasOneClear({ sync: agentTimelineItemToInput(entity.timelineItem) }) : void 0
498
+ file: entity.file ? processHasOneClear({ sync: tempFileToInput(entity.file) }) : void 0,
499
+ timelineItme: entity.timelineItme ? processHasOneClear({ sync: agentTimelineItemToInput(entity.timelineItme) }) : void 0
495
500
  };
496
501
  };
497
- const codeRevisionToInput = (entity) => {
502
+ const agentAttachmentToInput = (entity) => {
498
503
  return {
499
504
  ...entity,
500
- timelineItem: convertHasOneToInput(entity.timelineItem)
505
+ file: convertHasOneToInput(entity.file),
506
+ timelineItme: convertHasOneToInput(entity.timelineItme)
501
507
  };
502
508
  };
503
509
  const agentTimelineItemToInputCascade = (entity) => {
@@ -506,7 +512,6 @@ const agentTimelineItemToInputCascade = (entity) => {
506
512
  return {
507
513
  ...rest,
508
514
  attachments: entity.attachments ? processHasManyClear({ sync: (_a = entity.attachments) == null ? void 0 : _a.map((ent) => agentAttachmentToInput(ent)) }) : void 0,
509
- codeRevision: entity.codeRevision ? processHasOneClear({ sync: codeRevisionToInput(entity.codeRevision) }) : void 0,
510
515
  run: entity.run ? processHasOneClear({ sync: agentRunToInput(entity.run) }) : void 0
511
516
  };
512
517
  };
@@ -515,7 +520,6 @@ const agentTimelineItemToInput = (entity) => {
515
520
  return {
516
521
  ...rest,
517
522
  attachments: convertHasManyToInput(entity.attachments),
518
- codeRevision: convertHasOneToInput(entity.codeRevision),
519
523
  run: convertHasOneToInput(entity.run)
520
524
  };
521
525
  };
@@ -557,22 +561,6 @@ const agentThreadToInput = (entity) => {
557
561
  themeBranch: convertHasOneToInput(entity.themeBranch)
558
562
  };
559
563
  };
560
- const tempFileToInputCascade = (entity) => {
561
- const { storageMeta, ...rest } = entity;
562
- return {
563
- ...rest,
564
- website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0,
565
- themeBranch: entity.themeBranch ? processHasOneClear({ sync: themeBranchToInput(entity.themeBranch) }) : void 0
566
- };
567
- };
568
- const tempFileToInput = (entity) => {
569
- const { storageMeta, ...rest } = entity;
570
- return {
571
- ...rest,
572
- website: convertHasOneToInput(entity.website),
573
- themeBranch: convertHasOneToInput(entity.themeBranch)
574
- };
575
- };
576
564
  const themeInMarketToInputCascade = (entity) => {
577
565
  var _a;
578
566
  const { versionsAggregate, ...rest } = entity;
@@ -1027,13 +1015,13 @@ const agentContextToInput = (entity) => {
1027
1015
  website: convertHasOneToInput(entity.website)
1028
1016
  };
1029
1017
  };
1030
- const siteBlueprintToInputCascade = (entity) => {
1018
+ const websiteProfileToInputCascade = (entity) => {
1031
1019
  return {
1032
1020
  ...entity,
1033
1021
  website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0
1034
1022
  };
1035
1023
  };
1036
- const siteBlueprintToInput = (entity) => {
1024
+ const websiteProfileToInput = (entity) => {
1037
1025
  return {
1038
1026
  ...entity,
1039
1027
  website: convertHasOneToInput(entity.website)
@@ -1071,7 +1059,7 @@ const websiteToInputCascade = (entity) => {
1071
1059
  agentThreads: entity.agentThreads ? processHasManyClear({ sync: (_t = entity.agentThreads) == null ? void 0 : _t.map((ent) => agentThreadToInput(ent)) }) : void 0,
1072
1060
  tempFiles: entity.tempFiles ? processHasManyClear({ sync: (_u = entity.tempFiles) == null ? void 0 : _u.map((ent) => tempFileToInput(ent)) }) : void 0,
1073
1061
  agentContexts: entity.agentContexts ? processHasManyClear({ sync: (_v = entity.agentContexts) == null ? void 0 : _v.map((ent) => agentContextToInput(ent)) }) : void 0,
1074
- siteBlueprint: entity.siteBlueprint ? processHasOneClear({ sync: siteBlueprintToInput(entity.siteBlueprint) }) : void 0,
1062
+ profile: entity.profile ? processHasOneClear({ sync: websiteProfileToInput(entity.profile) }) : void 0,
1075
1063
  mockBranch: entity.mockBranch ? processHasOneClear({ sync: themeBranchToInput(entity.mockBranch) }) : void 0
1076
1064
  };
1077
1065
  };
@@ -1106,7 +1094,7 @@ const websiteToInput = (entity) => {
1106
1094
  agentThreads: convertHasManyToInput(entity.agentThreads),
1107
1095
  tempFiles: convertHasManyToInput(entity.tempFiles),
1108
1096
  agentContexts: convertHasManyToInput(entity.agentContexts),
1109
- siteBlueprint: convertHasOneToInput(entity.siteBlueprint),
1097
+ profile: convertHasOneToInput(entity.profile),
1110
1098
  mockBranch: convertHasOneToInput(entity.mockBranch)
1111
1099
  };
1112
1100
  };
@@ -2213,6 +2201,7 @@ var ThemeDistinctEnum = /* @__PURE__ */ ((ThemeDistinctEnum2) => {
2213
2201
  ThemeDistinctEnum2["createdAt"] = "createdAt";
2214
2202
  ThemeDistinctEnum2["updatedAt"] = "updatedAt";
2215
2203
  ThemeDistinctEnum2["seqValue"] = "seqValue";
2204
+ ThemeDistinctEnum2["slug"] = "slug";
2216
2205
  return ThemeDistinctEnum2;
2217
2206
  })(ThemeDistinctEnum || {});
2218
2207
  const SvgIconEntityName = "SvgIcon";
@@ -2301,14 +2290,11 @@ const AgentAttachmentEntityLabel = "";
2301
2290
  var AgentAttachmentDistinctEnum = /* @__PURE__ */ ((AgentAttachmentDistinctEnum2) => {
2302
2291
  AgentAttachmentDistinctEnum2["id"] = "id";
2303
2292
  AgentAttachmentDistinctEnum2["name"] = "name";
2304
- AgentAttachmentDistinctEnum2["mimeType"] = "mimeType";
2305
- AgentAttachmentDistinctEnum2["size"] = "size";
2306
- AgentAttachmentDistinctEnum2["extName"] = "extName";
2307
- AgentAttachmentDistinctEnum2["mediaType"] = "mediaType";
2308
- AgentAttachmentDistinctEnum2["storageMeta"] = "storageMeta";
2309
- AgentAttachmentDistinctEnum2["seqValue"] = "seqValue";
2293
+ AgentAttachmentDistinctEnum2["type"] = "type";
2294
+ AgentAttachmentDistinctEnum2["playload"] = "playload";
2310
2295
  AgentAttachmentDistinctEnum2["createdAt"] = "createdAt";
2311
2296
  AgentAttachmentDistinctEnum2["updatedAt"] = "updatedAt";
2297
+ AgentAttachmentDistinctEnum2["seqValue"] = "seqValue";
2312
2298
  return AgentAttachmentDistinctEnum2;
2313
2299
  })(AgentAttachmentDistinctEnum || {});
2314
2300
  const TempFileEntityName = "TempFile";
@@ -2320,24 +2306,11 @@ var TempFileDistinctEnum = /* @__PURE__ */ ((TempFileDistinctEnum2) => {
2320
2306
  TempFileDistinctEnum2["extName"] = "extName";
2321
2307
  TempFileDistinctEnum2["mediaType"] = "mediaType";
2322
2308
  TempFileDistinctEnum2["storageMeta"] = "storageMeta";
2323
- TempFileDistinctEnum2["seqValue"] = "seqValue";
2324
2309
  TempFileDistinctEnum2["createdAt"] = "createdAt";
2325
2310
  TempFileDistinctEnum2["updateAt"] = "updateAt";
2326
2311
  TempFileDistinctEnum2["mimeType"] = "mimeType";
2327
2312
  return TempFileDistinctEnum2;
2328
2313
  })(TempFileDistinctEnum || {});
2329
- const CodeRevisionEntityName = "CodeRevision";
2330
- const CodeRevisionEntityLabel = "";
2331
- var CodeRevisionDistinctEnum = /* @__PURE__ */ ((CodeRevisionDistinctEnum2) => {
2332
- CodeRevisionDistinctEnum2["id"] = "id";
2333
- CodeRevisionDistinctEnum2["targetPath"] = "targetPath";
2334
- CodeRevisionDistinctEnum2["baseSnapshot"] = "baseSnapshot";
2335
- CodeRevisionDistinctEnum2["delta"] = "delta";
2336
- CodeRevisionDistinctEnum2["resultSnapshot"] = "resultSnapshot";
2337
- CodeRevisionDistinctEnum2["createdAt"] = "createdAt";
2338
- CodeRevisionDistinctEnum2["updatedAt"] = "updatedAt";
2339
- return CodeRevisionDistinctEnum2;
2340
- })(CodeRevisionDistinctEnum || {});
2341
2314
  const AgentContextEntityName = "AgentContext";
2342
2315
  const AgentContextEntityLabel = "";
2343
2316
  var AgentContextDistinctEnum = /* @__PURE__ */ ((AgentContextDistinctEnum2) => {
@@ -2348,27 +2321,27 @@ var AgentContextDistinctEnum = /* @__PURE__ */ ((AgentContextDistinctEnum2) => {
2348
2321
  AgentContextDistinctEnum2["content"] = "content";
2349
2322
  return AgentContextDistinctEnum2;
2350
2323
  })(AgentContextDistinctEnum || {});
2351
- const SiteBlueprintEntityName = "SiteBlueprint";
2352
- const SiteBlueprintEntityLabel = "";
2353
- var SiteBlueprintDistinctEnum = /* @__PURE__ */ ((SiteBlueprintDistinctEnum2) => {
2354
- SiteBlueprintDistinctEnum2["id"] = "id";
2355
- SiteBlueprintDistinctEnum2["name"] = "name";
2356
- SiteBlueprintDistinctEnum2["industry"] = "industry";
2357
- SiteBlueprintDistinctEnum2["targetMarket"] = "targetMarket";
2358
- SiteBlueprintDistinctEnum2["references"] = "references";
2359
- SiteBlueprintDistinctEnum2["layoutPreference"] = "layoutPreference";
2360
- SiteBlueprintDistinctEnum2["styleGuide"] = "styleGuide";
2361
- SiteBlueprintDistinctEnum2["contentStrategy"] = "contentStrategy";
2362
- SiteBlueprintDistinctEnum2["baseTemplateId"] = "baseTemplateId";
2363
- SiteBlueprintDistinctEnum2["createdAt"] = "createdAt";
2364
- SiteBlueprintDistinctEnum2["updatedAt"] = "updatedAt";
2365
- SiteBlueprintDistinctEnum2["products"] = "products";
2366
- SiteBlueprintDistinctEnum2["companyInfo"] = "companyInfo";
2367
- SiteBlueprintDistinctEnum2["slug"] = "slug";
2368
- SiteBlueprintDistinctEnum2["langAbbr"] = "langAbbr";
2369
- SiteBlueprintDistinctEnum2["pages"] = "pages";
2370
- return SiteBlueprintDistinctEnum2;
2371
- })(SiteBlueprintDistinctEnum || {});
2324
+ const WebsiteProfileEntityName = "WebsiteProfile";
2325
+ const WebsiteProfileEntityLabel = "";
2326
+ var WebsiteProfileDistinctEnum = /* @__PURE__ */ ((WebsiteProfileDistinctEnum2) => {
2327
+ WebsiteProfileDistinctEnum2["id"] = "id";
2328
+ WebsiteProfileDistinctEnum2["name"] = "name";
2329
+ WebsiteProfileDistinctEnum2["industry"] = "industry";
2330
+ WebsiteProfileDistinctEnum2["targetMarket"] = "targetMarket";
2331
+ WebsiteProfileDistinctEnum2["references"] = "references";
2332
+ WebsiteProfileDistinctEnum2["layoutPreference"] = "layoutPreference";
2333
+ WebsiteProfileDistinctEnum2["styleGuide"] = "styleGuide";
2334
+ WebsiteProfileDistinctEnum2["contentStrategy"] = "contentStrategy";
2335
+ WebsiteProfileDistinctEnum2["themeBranchId"] = "themeBranchId";
2336
+ WebsiteProfileDistinctEnum2["createdAt"] = "createdAt";
2337
+ WebsiteProfileDistinctEnum2["updatedAt"] = "updatedAt";
2338
+ WebsiteProfileDistinctEnum2["products"] = "products";
2339
+ WebsiteProfileDistinctEnum2["companyInfo"] = "companyInfo";
2340
+ WebsiteProfileDistinctEnum2["slug"] = "slug";
2341
+ WebsiteProfileDistinctEnum2["langAbbr"] = "langAbbr";
2342
+ WebsiteProfileDistinctEnum2["pages"] = "pages";
2343
+ return WebsiteProfileDistinctEnum2;
2344
+ })(WebsiteProfileDistinctEnum || {});
2372
2345
  class RoleVariableQueryOptions extends QueryOptions {
2373
2346
  constructor(fields, queryArgs) {
2374
2347
  super(RoleVariableEntityName, fields, queryArgs);
@@ -3046,9 +3019,9 @@ class ThemeFileQueryOptions extends QueryOptions {
3046
3019
  return this;
3047
3020
  }
3048
3021
  }
3049
- class AgentAttachmentQueryOptions extends QueryOptions {
3022
+ class TempFileQueryOptions extends QueryOptions {
3050
3023
  constructor(fields, queryArgs) {
3051
- super(AgentAttachmentEntityName, fields, queryArgs);
3024
+ super(TempFileEntityName, fields, queryArgs);
3052
3025
  }
3053
3026
  id() {
3054
3027
  this.addField("id");
@@ -3058,10 +3031,6 @@ class AgentAttachmentQueryOptions extends QueryOptions {
3058
3031
  this.addField("name");
3059
3032
  return this;
3060
3033
  }
3061
- mimeType() {
3062
- this.addField("mimeType");
3063
- return this;
3064
- }
3065
3034
  size() {
3066
3035
  this.addField("size");
3067
3036
  return this;
@@ -3078,49 +3047,61 @@ class AgentAttachmentQueryOptions extends QueryOptions {
3078
3047
  this.addObjectField("storageMeta", fields);
3079
3048
  return this;
3080
3049
  }
3081
- seqValue() {
3082
- this.addField("seqValue");
3083
- return this;
3084
- }
3085
3050
  createdAt() {
3086
3051
  this.addField("createdAt");
3087
3052
  return this;
3088
3053
  }
3089
- updatedAt() {
3090
- this.addField("updatedAt");
3054
+ updateAt() {
3055
+ this.addField("updateAt");
3091
3056
  return this;
3092
3057
  }
3093
- timelineItme(options) {
3058
+ mimeType() {
3059
+ this.addField("mimeType");
3060
+ return this;
3061
+ }
3062
+ website(options) {
3094
3063
  if (Array.isArray(options)) {
3095
- this._associations["timelineItme"] = new AgentTimelineItemQueryOptions(options);
3064
+ this._associations["website"] = new WebsiteQueryOptions(options);
3096
3065
  } else {
3097
- this._associations["timelineItme"] = options || new AgentTimelineItemQueryOptions(["id"]);
3066
+ this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
3067
+ }
3068
+ return this;
3069
+ }
3070
+ themeBranch(options) {
3071
+ if (Array.isArray(options)) {
3072
+ this._associations["themeBranch"] = new ThemeBranchQueryOptions(options);
3073
+ } else {
3074
+ this._associations["themeBranch"] = options || new ThemeBranchQueryOptions(["id"]);
3075
+ }
3076
+ return this;
3077
+ }
3078
+ agentAttachment(options) {
3079
+ if (Array.isArray(options)) {
3080
+ this._associations["agentAttachment"] = new AgentAttachmentQueryOptions(options);
3081
+ } else {
3082
+ this._associations["agentAttachment"] = options || new AgentAttachmentQueryOptions(["id"]);
3098
3083
  }
3099
3084
  return this;
3100
3085
  }
3101
3086
  }
3102
- class CodeRevisionQueryOptions extends QueryOptions {
3087
+ class AgentAttachmentQueryOptions extends QueryOptions {
3103
3088
  constructor(fields, queryArgs) {
3104
- super(CodeRevisionEntityName, fields, queryArgs);
3089
+ super(AgentAttachmentEntityName, fields, queryArgs);
3105
3090
  }
3106
3091
  id() {
3107
3092
  this.addField("id");
3108
3093
  return this;
3109
3094
  }
3110
- targetPath() {
3111
- this.addField("targetPath");
3112
- return this;
3113
- }
3114
- baseSnapshot() {
3115
- this.addField("baseSnapshot");
3095
+ name() {
3096
+ this.addField("name");
3116
3097
  return this;
3117
3098
  }
3118
- delta() {
3119
- this.addField("delta");
3099
+ type() {
3100
+ this.addField("type");
3120
3101
  return this;
3121
3102
  }
3122
- resultSnapshot() {
3123
- this.addField("resultSnapshot");
3103
+ playload() {
3104
+ this.addField("playload");
3124
3105
  return this;
3125
3106
  }
3126
3107
  createdAt() {
@@ -3131,11 +3112,23 @@ class CodeRevisionQueryOptions extends QueryOptions {
3131
3112
  this.addField("updatedAt");
3132
3113
  return this;
3133
3114
  }
3134
- timelineItem(options) {
3115
+ seqValue() {
3116
+ this.addField("seqValue");
3117
+ return this;
3118
+ }
3119
+ file(options) {
3135
3120
  if (Array.isArray(options)) {
3136
- this._associations["timelineItem"] = new AgentTimelineItemQueryOptions(options);
3121
+ this._associations["file"] = new TempFileQueryOptions(options);
3137
3122
  } else {
3138
- this._associations["timelineItem"] = options || new AgentTimelineItemQueryOptions(["id"]);
3123
+ this._associations["file"] = options || new TempFileQueryOptions(["id"]);
3124
+ }
3125
+ return this;
3126
+ }
3127
+ timelineItme(options) {
3128
+ if (Array.isArray(options)) {
3129
+ this._associations["timelineItme"] = new AgentTimelineItemQueryOptions(options);
3130
+ } else {
3131
+ this._associations["timelineItme"] = options || new AgentTimelineItemQueryOptions(["id"]);
3139
3132
  }
3140
3133
  return this;
3141
3134
  }
@@ -3180,14 +3173,6 @@ class AgentTimelineItemQueryOptions extends QueryOptions {
3180
3173
  this._aggregates["attachmentsAggregate"] = aggregate;
3181
3174
  return this;
3182
3175
  }
3183
- codeRevision(options) {
3184
- if (Array.isArray(options)) {
3185
- this._associations["codeRevision"] = new CodeRevisionQueryOptions(options);
3186
- } else {
3187
- this._associations["codeRevision"] = options || new CodeRevisionQueryOptions(["id"]);
3188
- }
3189
- return this;
3190
- }
3191
3176
  run(options) {
3192
3177
  if (Array.isArray(options)) {
3193
3178
  this._associations["run"] = new AgentRunQueryOptions(options);
@@ -3323,67 +3308,6 @@ class AgentThreadQueryOptions extends QueryOptions {
3323
3308
  return this;
3324
3309
  }
3325
3310
  }
3326
- class TempFileQueryOptions extends QueryOptions {
3327
- constructor(fields, queryArgs) {
3328
- super(TempFileEntityName, fields, queryArgs);
3329
- }
3330
- id() {
3331
- this.addField("id");
3332
- return this;
3333
- }
3334
- name() {
3335
- this.addField("name");
3336
- return this;
3337
- }
3338
- size() {
3339
- this.addField("size");
3340
- return this;
3341
- }
3342
- extName() {
3343
- this.addField("extName");
3344
- return this;
3345
- }
3346
- mediaType() {
3347
- this.addField("mediaType");
3348
- return this;
3349
- }
3350
- storageMeta(fields) {
3351
- this.addObjectField("storageMeta", fields);
3352
- return this;
3353
- }
3354
- seqValue() {
3355
- this.addField("seqValue");
3356
- return this;
3357
- }
3358
- createdAt() {
3359
- this.addField("createdAt");
3360
- return this;
3361
- }
3362
- updateAt() {
3363
- this.addField("updateAt");
3364
- return this;
3365
- }
3366
- mimeType() {
3367
- this.addField("mimeType");
3368
- return this;
3369
- }
3370
- website(options) {
3371
- if (Array.isArray(options)) {
3372
- this._associations["website"] = new WebsiteQueryOptions(options);
3373
- } else {
3374
- this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
3375
- }
3376
- return this;
3377
- }
3378
- themeBranch(options) {
3379
- if (Array.isArray(options)) {
3380
- this._associations["themeBranch"] = new ThemeBranchQueryOptions(options);
3381
- } else {
3382
- this._associations["themeBranch"] = options || new ThemeBranchQueryOptions(["id"]);
3383
- }
3384
- return this;
3385
- }
3386
- }
3387
3311
  class ThemeInMarketQueryOptions extends QueryOptions {
3388
3312
  constructor(fields, queryArgs) {
3389
3313
  super(ThemeInMarketEntityName, fields, queryArgs);
@@ -3523,6 +3447,10 @@ class ThemeQueryOptions extends QueryOptions {
3523
3447
  this.addField("seqValue");
3524
3448
  return this;
3525
3449
  }
3450
+ slug() {
3451
+ this.addField("slug");
3452
+ return this;
3453
+ }
3526
3454
  branches(options) {
3527
3455
  if (Array.isArray(options)) {
3528
3456
  this._associations["branches"] = new ThemeBranchQueryOptions(options);
@@ -5033,9 +4961,9 @@ class AgentContextQueryOptions extends QueryOptions {
5033
4961
  return this;
5034
4962
  }
5035
4963
  }
5036
- class SiteBlueprintQueryOptions extends QueryOptions {
4964
+ class WebsiteProfileQueryOptions extends QueryOptions {
5037
4965
  constructor(fields, queryArgs) {
5038
- super(SiteBlueprintEntityName, fields, queryArgs);
4966
+ super(WebsiteProfileEntityName, fields, queryArgs);
5039
4967
  }
5040
4968
  id() {
5041
4969
  this.addField("id");
@@ -5069,8 +4997,8 @@ class SiteBlueprintQueryOptions extends QueryOptions {
5069
4997
  this.addField("contentStrategy");
5070
4998
  return this;
5071
4999
  }
5072
- baseTemplateId() {
5073
- this.addField("baseTemplateId");
5000
+ themeBranchId() {
5001
+ this.addField("themeBranchId");
5074
5002
  return this;
5075
5003
  }
5076
5004
  createdAt() {
@@ -5479,11 +5407,11 @@ class WebsiteQueryOptions extends QueryOptions {
5479
5407
  this._aggregates["agentContextsAggregate"] = aggregate;
5480
5408
  return this;
5481
5409
  }
5482
- siteBlueprint(options) {
5410
+ profile(options) {
5483
5411
  if (Array.isArray(options)) {
5484
- this._associations["siteBlueprint"] = new SiteBlueprintQueryOptions(options);
5412
+ this._associations["profile"] = new WebsiteProfileQueryOptions(options);
5485
5413
  } else {
5486
- this._associations["siteBlueprint"] = options || new SiteBlueprintQueryOptions(["id"]);
5414
+ this._associations["profile"] = options || new WebsiteProfileQueryOptions(["id"]);
5487
5415
  }
5488
5416
  return this;
5489
5417
  }
@@ -7088,20 +7016,15 @@ const tempFileEntry = {
7088
7016
  entityLabel: TempFileEntityLabel,
7089
7017
  toInput: tempFileToInput
7090
7018
  };
7091
- const codeRevisionEntry = {
7092
- entityName: CodeRevisionEntityName,
7093
- entityLabel: CodeRevisionEntityLabel,
7094
- toInput: codeRevisionToInput
7095
- };
7096
7019
  const agentContextEntry = {
7097
7020
  entityName: AgentContextEntityName,
7098
7021
  entityLabel: AgentContextEntityLabel,
7099
7022
  toInput: agentContextToInput
7100
7023
  };
7101
- const siteBlueprintEntry = {
7102
- entityName: SiteBlueprintEntityName,
7103
- entityLabel: SiteBlueprintEntityLabel,
7104
- toInput: siteBlueprintToInput
7024
+ const websiteProfileEntry = {
7025
+ entityName: WebsiteProfileEntityName,
7026
+ entityLabel: WebsiteProfileEntityLabel,
7027
+ toInput: websiteProfileToInput
7105
7028
  };
7106
7029
  var UserFields = /* @__PURE__ */ ((UserFields2) => {
7107
7030
  UserFields2["id"] = "id";
@@ -7328,7 +7251,7 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
7328
7251
  WebsiteAssciations2["tempFilesAggregate"] = "tempFilesAggregate";
7329
7252
  WebsiteAssciations2["agentContexts"] = "agentContexts";
7330
7253
  WebsiteAssciations2["agentContextsAggregate"] = "agentContextsAggregate";
7331
- WebsiteAssciations2["siteBlueprint"] = "siteBlueprint";
7254
+ WebsiteAssciations2["profile"] = "profile";
7332
7255
  WebsiteAssciations2["mockBranch"] = "mockBranch";
7333
7256
  return WebsiteAssciations2;
7334
7257
  })(WebsiteAssciations || {});
@@ -8038,6 +7961,7 @@ var ThemeFields = /* @__PURE__ */ ((ThemeFields2) => {
8038
7961
  ThemeFields2["createdAt"] = "createdAt";
8039
7962
  ThemeFields2["updatedAt"] = "updatedAt";
8040
7963
  ThemeFields2["seqValue"] = "seqValue";
7964
+ ThemeFields2["slug"] = "slug";
8041
7965
  return ThemeFields2;
8042
7966
  })(ThemeFields || {});
8043
7967
  var ThemeAssciations = /* @__PURE__ */ ((ThemeAssciations2) => {
@@ -8158,24 +8082,21 @@ var AgentTimelineItemFields = /* @__PURE__ */ ((AgentTimelineItemFields2) => {
8158
8082
  var AgentTimelineItemAssciations = /* @__PURE__ */ ((AgentTimelineItemAssciations2) => {
8159
8083
  AgentTimelineItemAssciations2["attachments"] = "attachments";
8160
8084
  AgentTimelineItemAssciations2["attachmentsAggregate"] = "attachmentsAggregate";
8161
- AgentTimelineItemAssciations2["codeRevision"] = "codeRevision";
8162
8085
  AgentTimelineItemAssciations2["run"] = "run";
8163
8086
  return AgentTimelineItemAssciations2;
8164
8087
  })(AgentTimelineItemAssciations || {});
8165
8088
  var AgentAttachmentFields = /* @__PURE__ */ ((AgentAttachmentFields2) => {
8166
8089
  AgentAttachmentFields2["id"] = "id";
8167
8090
  AgentAttachmentFields2["name"] = "name";
8168
- AgentAttachmentFields2["mimeType"] = "mimeType";
8169
- AgentAttachmentFields2["size"] = "size";
8170
- AgentAttachmentFields2["extName"] = "extName";
8171
- AgentAttachmentFields2["mediaType"] = "mediaType";
8172
- AgentAttachmentFields2["storageMeta"] = "storageMeta";
8173
- AgentAttachmentFields2["seqValue"] = "seqValue";
8091
+ AgentAttachmentFields2["type"] = "type";
8092
+ AgentAttachmentFields2["playload"] = "playload";
8174
8093
  AgentAttachmentFields2["createdAt"] = "createdAt";
8175
8094
  AgentAttachmentFields2["updatedAt"] = "updatedAt";
8095
+ AgentAttachmentFields2["seqValue"] = "seqValue";
8176
8096
  return AgentAttachmentFields2;
8177
8097
  })(AgentAttachmentFields || {});
8178
8098
  var AgentAttachmentAssciations = /* @__PURE__ */ ((AgentAttachmentAssciations2) => {
8099
+ AgentAttachmentAssciations2["file"] = "file";
8179
8100
  AgentAttachmentAssciations2["timelineItme"] = "timelineItme";
8180
8101
  return AgentAttachmentAssciations2;
8181
8102
  })(AgentAttachmentAssciations || {});
@@ -8186,7 +8107,6 @@ var TempFileFields = /* @__PURE__ */ ((TempFileFields2) => {
8186
8107
  TempFileFields2["extName"] = "extName";
8187
8108
  TempFileFields2["mediaType"] = "mediaType";
8188
8109
  TempFileFields2["storageMeta"] = "storageMeta";
8189
- TempFileFields2["seqValue"] = "seqValue";
8190
8110
  TempFileFields2["createdAt"] = "createdAt";
8191
8111
  TempFileFields2["updateAt"] = "updateAt";
8192
8112
  TempFileFields2["mimeType"] = "mimeType";
@@ -8195,22 +8115,9 @@ var TempFileFields = /* @__PURE__ */ ((TempFileFields2) => {
8195
8115
  var TempFileAssciations = /* @__PURE__ */ ((TempFileAssciations2) => {
8196
8116
  TempFileAssciations2["website"] = "website";
8197
8117
  TempFileAssciations2["themeBranch"] = "themeBranch";
8118
+ TempFileAssciations2["agentAttachment"] = "agentAttachment";
8198
8119
  return TempFileAssciations2;
8199
8120
  })(TempFileAssciations || {});
8200
- var CodeRevisionFields = /* @__PURE__ */ ((CodeRevisionFields2) => {
8201
- CodeRevisionFields2["id"] = "id";
8202
- CodeRevisionFields2["targetPath"] = "targetPath";
8203
- CodeRevisionFields2["baseSnapshot"] = "baseSnapshot";
8204
- CodeRevisionFields2["delta"] = "delta";
8205
- CodeRevisionFields2["resultSnapshot"] = "resultSnapshot";
8206
- CodeRevisionFields2["createdAt"] = "createdAt";
8207
- CodeRevisionFields2["updatedAt"] = "updatedAt";
8208
- return CodeRevisionFields2;
8209
- })(CodeRevisionFields || {});
8210
- var CodeRevisionAssciations = /* @__PURE__ */ ((CodeRevisionAssciations2) => {
8211
- CodeRevisionAssciations2["timelineItem"] = "timelineItem";
8212
- return CodeRevisionAssciations2;
8213
- })(CodeRevisionAssciations || {});
8214
8121
  var AgentContextFields = /* @__PURE__ */ ((AgentContextFields2) => {
8215
8122
  AgentContextFields2["id"] = "id";
8216
8123
  AgentContextFields2["scopeType"] = "scopeType";
@@ -8223,29 +8130,29 @@ var AgentContextAssciations = /* @__PURE__ */ ((AgentContextAssciations2) => {
8223
8130
  AgentContextAssciations2["website"] = "website";
8224
8131
  return AgentContextAssciations2;
8225
8132
  })(AgentContextAssciations || {});
8226
- var SiteBlueprintFields = /* @__PURE__ */ ((SiteBlueprintFields2) => {
8227
- SiteBlueprintFields2["id"] = "id";
8228
- SiteBlueprintFields2["name"] = "name";
8229
- SiteBlueprintFields2["industry"] = "industry";
8230
- SiteBlueprintFields2["targetMarket"] = "targetMarket";
8231
- SiteBlueprintFields2["references"] = "references";
8232
- SiteBlueprintFields2["layoutPreference"] = "layoutPreference";
8233
- SiteBlueprintFields2["styleGuide"] = "styleGuide";
8234
- SiteBlueprintFields2["contentStrategy"] = "contentStrategy";
8235
- SiteBlueprintFields2["baseTemplateId"] = "baseTemplateId";
8236
- SiteBlueprintFields2["createdAt"] = "createdAt";
8237
- SiteBlueprintFields2["updatedAt"] = "updatedAt";
8238
- SiteBlueprintFields2["products"] = "products";
8239
- SiteBlueprintFields2["companyInfo"] = "companyInfo";
8240
- SiteBlueprintFields2["slug"] = "slug";
8241
- SiteBlueprintFields2["langAbbr"] = "langAbbr";
8242
- SiteBlueprintFields2["pages"] = "pages";
8243
- return SiteBlueprintFields2;
8244
- })(SiteBlueprintFields || {});
8245
- var SiteBlueprintAssciations = /* @__PURE__ */ ((SiteBlueprintAssciations2) => {
8246
- SiteBlueprintAssciations2["website"] = "website";
8247
- return SiteBlueprintAssciations2;
8248
- })(SiteBlueprintAssciations || {});
8133
+ var WebsiteProfileFields = /* @__PURE__ */ ((WebsiteProfileFields2) => {
8134
+ WebsiteProfileFields2["id"] = "id";
8135
+ WebsiteProfileFields2["name"] = "name";
8136
+ WebsiteProfileFields2["industry"] = "industry";
8137
+ WebsiteProfileFields2["targetMarket"] = "targetMarket";
8138
+ WebsiteProfileFields2["references"] = "references";
8139
+ WebsiteProfileFields2["layoutPreference"] = "layoutPreference";
8140
+ WebsiteProfileFields2["styleGuide"] = "styleGuide";
8141
+ WebsiteProfileFields2["contentStrategy"] = "contentStrategy";
8142
+ WebsiteProfileFields2["themeBranchId"] = "themeBranchId";
8143
+ WebsiteProfileFields2["createdAt"] = "createdAt";
8144
+ WebsiteProfileFields2["updatedAt"] = "updatedAt";
8145
+ WebsiteProfileFields2["products"] = "products";
8146
+ WebsiteProfileFields2["companyInfo"] = "companyInfo";
8147
+ WebsiteProfileFields2["slug"] = "slug";
8148
+ WebsiteProfileFields2["langAbbr"] = "langAbbr";
8149
+ WebsiteProfileFields2["pages"] = "pages";
8150
+ return WebsiteProfileFields2;
8151
+ })(WebsiteProfileFields || {});
8152
+ var WebsiteProfileAssciations = /* @__PURE__ */ ((WebsiteProfileAssciations2) => {
8153
+ WebsiteProfileAssciations2["website"] = "website";
8154
+ return WebsiteProfileAssciations2;
8155
+ })(WebsiteProfileAssciations || {});
8249
8156
  export {
8250
8157
  AbilityAssciations,
8251
8158
  AbilityDistinctEnum,
@@ -8309,12 +8216,6 @@ export {
8309
8216
  ChangeLogEntityName,
8310
8217
  ChangeLogFields,
8311
8218
  ChangeLogQueryOptions,
8312
- CodeRevisionAssciations,
8313
- CodeRevisionDistinctEnum,
8314
- CodeRevisionEntityLabel,
8315
- CodeRevisionEntityName,
8316
- CodeRevisionFields,
8317
- CodeRevisionQueryOptions,
8318
8219
  ComponentCategoryAssciations,
8319
8220
  ComponentCategoryDistinctEnum,
8320
8221
  ComponentCategoryEntityLabel,
@@ -8454,12 +8355,6 @@ export {
8454
8355
  SearchIndexEntityName,
8455
8356
  SearchIndexFields,
8456
8357
  SearchIndexQueryOptions,
8457
- SiteBlueprintAssciations,
8458
- SiteBlueprintDistinctEnum,
8459
- SiteBlueprintEntityLabel,
8460
- SiteBlueprintEntityName,
8461
- SiteBlueprintFields,
8462
- SiteBlueprintQueryOptions,
8463
8358
  SlugableDistinctEnum,
8464
8359
  SoftableDistinctEnum,
8465
8360
  SourceType,
@@ -8589,6 +8484,12 @@ export {
8589
8484
  WebsiteEntityName,
8590
8485
  WebsiteFields,
8591
8486
  WebsitePartDistinctEnum,
8487
+ WebsiteProfileAssciations,
8488
+ WebsiteProfileDistinctEnum,
8489
+ WebsiteProfileEntityLabel,
8490
+ WebsiteProfileEntityName,
8491
+ WebsiteProfileFields,
8492
+ WebsiteProfileQueryOptions,
8592
8493
  WebsiteQueryOptions,
8593
8494
  WebsiteSettingsAssciations,
8594
8495
  WebsiteSettingsDistinctEnum,
@@ -8642,9 +8543,6 @@ export {
8642
8543
  changeLogEntry,
8643
8544
  changeLogToInput,
8644
8545
  changeLogToInputCascade,
8645
- codeRevisionEntry,
8646
- codeRevisionToInput,
8647
- codeRevisionToInputCascade,
8648
8546
  componentCategoryEntry,
8649
8547
  componentCategoryToInput,
8650
8548
  componentCategoryToInputCascade,
@@ -8708,9 +8606,6 @@ export {
8708
8606
  searchIndexEntry,
8709
8607
  searchIndexToInput,
8710
8608
  searchIndexToInputCascade,
8711
- siteBlueprintEntry,
8712
- siteBlueprintToInput,
8713
- siteBlueprintToInputCascade,
8714
8609
  spamFilterRuleEntry,
8715
8610
  spamFilterRuleToInput,
8716
8611
  spamFilterRuleToInputCascade,
@@ -8769,6 +8664,9 @@ export {
8769
8664
  visitorLogToInput,
8770
8665
  visitorLogToInputCascade,
8771
8666
  websiteEntry,
8667
+ websiteProfileEntry,
8668
+ websiteProfileToInput,
8669
+ websiteProfileToInputCascade,
8772
8670
  websiteSettingsEntry,
8773
8671
  websiteSettingsToInput,
8774
8672
  websiteSettingsToInputCascade,