@rxdrag/rxcms-models 0.3.108 → 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.
@@ -70,8 +70,6 @@ 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';
75
73
  import { AgentMemoFolderQueryOptions } from './AgentMemoFolderQueryOptions';
76
74
  import { AgentMemoFolder } from '../interfaces';
77
75
  import { AgentMemoFolderBoolExp } from '../interfaces';
@@ -158,7 +156,6 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
158
156
  agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
159
157
  tempFiles(options?: TempFileQueryOptions | (keyof TempFile)[]): this;
160
158
  tempFilesAggregate(aggregate: IAggregate<TempFileBoolExp>): this;
161
- profile(options?: WebsiteProfileQueryOptions | (keyof WebsiteProfile)[]): this;
162
159
  memoFolders(options?: AgentMemoFolderQueryOptions | (keyof AgentMemoFolder)[]): this;
163
160
  memoFoldersAggregate(aggregate: IAggregate<AgentMemoFolderBoolExp>): this;
164
161
  memoFiles(options?: AgentMemoFileQueryOptions | (keyof AgentMemoFile)[]): this;
@@ -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';
@@ -79,7 +79,6 @@ export declare enum WebsiteAssciations {
79
79
  agentThreadsAggregate = "agentThreadsAggregate",
80
80
  tempFiles = "tempFiles",
81
81
  tempFilesAggregate = "tempFilesAggregate",
82
- profile = "profile",
83
82
  memoFolders = "memoFolders",
84
83
  memoFoldersAggregate = "memoFoldersAggregate",
85
84
  memoFiles = "memoFiles",
@@ -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
@@ -1008,18 +1008,6 @@ const svgIconToInput = (entity) => {
1008
1008
  website: convertHasOneToInput(entity.website)
1009
1009
  };
1010
1010
  };
1011
- const websiteProfileToInputCascade = (entity) => {
1012
- return {
1013
- ...entity,
1014
- website: entity.website ? processHasOneClear({ sync: websiteToInputCascade(entity.website) }) : void 0
1015
- };
1016
- };
1017
- const websiteProfileToInput = (entity) => {
1018
- return {
1019
- ...entity,
1020
- website: convertHasOneToInput(entity.website)
1021
- };
1022
- };
1023
1011
  const agentMemoFileToInputCascade = (entity) => {
1024
1012
  return {
1025
1013
  ...entity,
@@ -1086,7 +1074,6 @@ const websiteToInputCascade = (entity) => {
1086
1074
  tags: entity.tags ? processHasManyClear({ sync: (_s = entity.tags) == null ? void 0 : _s.map((ent) => tagToInputCascade(ent)) }) : void 0,
1087
1075
  agentThreads: entity.agentThreads ? processHasManyClear({ sync: (_t = entity.agentThreads) == null ? void 0 : _t.map((ent) => agentThreadToInputCascade(ent)) }) : void 0,
1088
1076
  tempFiles: entity.tempFiles ? processHasManyClear({ sync: (_u = entity.tempFiles) == null ? void 0 : _u.map((ent) => tempFileToInputCascade(ent)) }) : void 0,
1089
- profile: entity.profile ? processHasOneClear({ sync: websiteProfileToInputCascade(entity.profile) }) : void 0,
1090
1077
  memoFolders: entity.memoFolders ? processHasManyClear({ sync: (_v = entity.memoFolders) == null ? void 0 : _v.map((ent) => agentMemoFolderToInputCascade(ent)) }) : void 0,
1091
1078
  memoFiles: entity.memoFiles ? processHasManyClear({ sync: (_w = entity.memoFiles) == null ? void 0 : _w.map((ent) => agentMemoFileToInputCascade(ent)) }) : void 0,
1092
1079
  mockBranch: entity.mockBranch ? processHasOneClear({ sync: themeBranchToInputCascade(entity.mockBranch) }) : void 0
@@ -1122,7 +1109,6 @@ const websiteToInput = (entity) => {
1122
1109
  tags: convertHasManyToInput(entity.tags),
1123
1110
  agentThreads: convertHasManyToInput(entity.agentThreads),
1124
1111
  tempFiles: convertHasManyToInput(entity.tempFiles),
1125
- profile: convertHasOneToInput(entity.profile),
1126
1112
  memoFolders: convertHasManyToInput(entity.memoFolders),
1127
1113
  memoFiles: convertHasManyToInput(entity.memoFiles),
1128
1114
  mockBranch: convertHasOneToInput(entity.mockBranch)
@@ -2341,27 +2327,6 @@ var TempFileDistinctEnum = /* @__PURE__ */ ((TempFileDistinctEnum2) => {
2341
2327
  TempFileDistinctEnum2["mimeType"] = "mimeType";
2342
2328
  return TempFileDistinctEnum2;
2343
2329
  })(TempFileDistinctEnum || {});
2344
- const WebsiteProfileEntityName = "WebsiteProfile";
2345
- const WebsiteProfileEntityLabel = "";
2346
- var WebsiteProfileDistinctEnum = /* @__PURE__ */ ((WebsiteProfileDistinctEnum2) => {
2347
- WebsiteProfileDistinctEnum2["id"] = "id";
2348
- WebsiteProfileDistinctEnum2["name"] = "name";
2349
- WebsiteProfileDistinctEnum2["industry"] = "industry";
2350
- WebsiteProfileDistinctEnum2["targetMarket"] = "targetMarket";
2351
- WebsiteProfileDistinctEnum2["references"] = "references";
2352
- WebsiteProfileDistinctEnum2["layoutPreference"] = "layoutPreference";
2353
- WebsiteProfileDistinctEnum2["styleGuide"] = "styleGuide";
2354
- WebsiteProfileDistinctEnum2["contentStrategy"] = "contentStrategy";
2355
- WebsiteProfileDistinctEnum2["themeBranchId"] = "themeBranchId";
2356
- WebsiteProfileDistinctEnum2["createdAt"] = "createdAt";
2357
- WebsiteProfileDistinctEnum2["updatedAt"] = "updatedAt";
2358
- WebsiteProfileDistinctEnum2["products"] = "products";
2359
- WebsiteProfileDistinctEnum2["companyInfo"] = "companyInfo";
2360
- WebsiteProfileDistinctEnum2["slug"] = "slug";
2361
- WebsiteProfileDistinctEnum2["langAbbr"] = "langAbbr";
2362
- WebsiteProfileDistinctEnum2["pages"] = "pages";
2363
- return WebsiteProfileDistinctEnum2;
2364
- })(WebsiteProfileDistinctEnum || {});
2365
2330
  const AgentMemoFileEntityName = "AgentMemoFile";
2366
2331
  const AgentMemoFileEntityLabel = "";
2367
2332
  var AgentMemoFileDistinctEnum = /* @__PURE__ */ ((AgentMemoFileDistinctEnum2) => {
@@ -4969,83 +4934,6 @@ class SvgIconQueryOptions extends QueryOptions {
4969
4934
  return this;
4970
4935
  }
4971
4936
  }
4972
- class WebsiteProfileQueryOptions extends QueryOptions {
4973
- constructor(fields, queryArgs) {
4974
- super(WebsiteProfileEntityName, fields, queryArgs);
4975
- }
4976
- id() {
4977
- this.addField("id");
4978
- return this;
4979
- }
4980
- name() {
4981
- this.addField("name");
4982
- return this;
4983
- }
4984
- industry() {
4985
- this.addField("industry");
4986
- return this;
4987
- }
4988
- targetMarket() {
4989
- this.addField("targetMarket");
4990
- return this;
4991
- }
4992
- references() {
4993
- this.addField("references");
4994
- return this;
4995
- }
4996
- layoutPreference() {
4997
- this.addField("layoutPreference");
4998
- return this;
4999
- }
5000
- styleGuide() {
5001
- this.addField("styleGuide");
5002
- return this;
5003
- }
5004
- contentStrategy() {
5005
- this.addField("contentStrategy");
5006
- return this;
5007
- }
5008
- themeBranchId() {
5009
- this.addField("themeBranchId");
5010
- return this;
5011
- }
5012
- createdAt() {
5013
- this.addField("createdAt");
5014
- return this;
5015
- }
5016
- updatedAt() {
5017
- this.addField("updatedAt");
5018
- return this;
5019
- }
5020
- products() {
5021
- this.addField("products");
5022
- return this;
5023
- }
5024
- companyInfo() {
5025
- this.addField("companyInfo");
5026
- return this;
5027
- }
5028
- slug() {
5029
- this.addField("slug");
5030
- return this;
5031
- }
5032
- langAbbr() {
5033
- this.addField("langAbbr");
5034
- return this;
5035
- }
5036
- pages() {
5037
- this.addField("pages");
5038
- return this;
5039
- }
5040
- website(options) {
5041
- if (Array.isArray(options)) {
5042
- this._associations["website"] = new WebsiteQueryOptions(options);
5043
- } else {
5044
- this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
5045
- }
5046
- return this;
5047
- }
5048
- }
5049
4937
  class AgentMemoFileQueryOptions extends QueryOptions {
5050
4938
  constructor(fields, queryArgs) {
5051
4939
  super(AgentMemoFileEntityName, fields, queryArgs);
@@ -5513,14 +5401,6 @@ class WebsiteQueryOptions extends QueryOptions {
5513
5401
  this._aggregates["tempFilesAggregate"] = aggregate;
5514
5402
  return this;
5515
5403
  }
5516
- profile(options) {
5517
- if (Array.isArray(options)) {
5518
- this._associations["profile"] = new WebsiteProfileQueryOptions(options);
5519
- } else {
5520
- this._associations["profile"] = options || new WebsiteProfileQueryOptions(["id"]);
5521
- }
5522
- return this;
5523
- }
5524
5404
  memoFolders(options) {
5525
5405
  if (Array.isArray(options)) {
5526
5406
  this._associations["memoFolders"] = new AgentMemoFolderQueryOptions(options);
@@ -7146,11 +7026,6 @@ const tempFileEntry = {
7146
7026
  entityLabel: TempFileEntityLabel,
7147
7027
  toInput: tempFileToInput
7148
7028
  };
7149
- const websiteProfileEntry = {
7150
- entityName: WebsiteProfileEntityName,
7151
- entityLabel: WebsiteProfileEntityLabel,
7152
- toInput: websiteProfileToInput
7153
- };
7154
7029
  const agentMemoFileEntry = {
7155
7030
  entityName: AgentMemoFileEntityName,
7156
7031
  entityLabel: AgentMemoFileEntityLabel,
@@ -7384,7 +7259,6 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
7384
7259
  WebsiteAssciations2["agentThreadsAggregate"] = "agentThreadsAggregate";
7385
7260
  WebsiteAssciations2["tempFiles"] = "tempFiles";
7386
7261
  WebsiteAssciations2["tempFilesAggregate"] = "tempFilesAggregate";
7387
- WebsiteAssciations2["profile"] = "profile";
7388
7262
  WebsiteAssciations2["memoFolders"] = "memoFolders";
7389
7263
  WebsiteAssciations2["memoFoldersAggregate"] = "memoFoldersAggregate";
7390
7264
  WebsiteAssciations2["memoFiles"] = "memoFiles";
@@ -8255,29 +8129,6 @@ var TempFileAssciations = /* @__PURE__ */ ((TempFileAssciations2) => {
8255
8129
  TempFileAssciations2["agentAttachment"] = "agentAttachment";
8256
8130
  return TempFileAssciations2;
8257
8131
  })(TempFileAssciations || {});
8258
- var WebsiteProfileFields = /* @__PURE__ */ ((WebsiteProfileFields2) => {
8259
- WebsiteProfileFields2["id"] = "id";
8260
- WebsiteProfileFields2["name"] = "name";
8261
- WebsiteProfileFields2["industry"] = "industry";
8262
- WebsiteProfileFields2["targetMarket"] = "targetMarket";
8263
- WebsiteProfileFields2["references"] = "references";
8264
- WebsiteProfileFields2["layoutPreference"] = "layoutPreference";
8265
- WebsiteProfileFields2["styleGuide"] = "styleGuide";
8266
- WebsiteProfileFields2["contentStrategy"] = "contentStrategy";
8267
- WebsiteProfileFields2["themeBranchId"] = "themeBranchId";
8268
- WebsiteProfileFields2["createdAt"] = "createdAt";
8269
- WebsiteProfileFields2["updatedAt"] = "updatedAt";
8270
- WebsiteProfileFields2["products"] = "products";
8271
- WebsiteProfileFields2["companyInfo"] = "companyInfo";
8272
- WebsiteProfileFields2["slug"] = "slug";
8273
- WebsiteProfileFields2["langAbbr"] = "langAbbr";
8274
- WebsiteProfileFields2["pages"] = "pages";
8275
- return WebsiteProfileFields2;
8276
- })(WebsiteProfileFields || {});
8277
- var WebsiteProfileAssciations = /* @__PURE__ */ ((WebsiteProfileAssciations2) => {
8278
- WebsiteProfileAssciations2["website"] = "website";
8279
- return WebsiteProfileAssciations2;
8280
- })(WebsiteProfileAssciations || {});
8281
8132
  var AgentMemoFileFields = /* @__PURE__ */ ((AgentMemoFileFields2) => {
8282
8133
  AgentMemoFileFields2["id"] = "id";
8283
8134
  AgentMemoFileFields2["name"] = "name";
@@ -8646,12 +8497,6 @@ export {
8646
8497
  WebsiteEntityName,
8647
8498
  WebsiteFields,
8648
8499
  WebsitePartDistinctEnum,
8649
- WebsiteProfileAssciations,
8650
- WebsiteProfileDistinctEnum,
8651
- WebsiteProfileEntityLabel,
8652
- WebsiteProfileEntityName,
8653
- WebsiteProfileFields,
8654
- WebsiteProfileQueryOptions,
8655
8500
  WebsiteQueryOptions,
8656
8501
  WebsiteSettingsAssciations,
8657
8502
  WebsiteSettingsDistinctEnum,
@@ -8829,9 +8674,6 @@ export {
8829
8674
  visitorLogToInput,
8830
8675
  visitorLogToInputCascade,
8831
8676
  websiteEntry,
8832
- websiteProfileEntry,
8833
- websiteProfileToInput,
8834
- websiteProfileToInputCascade,
8835
8677
  websiteSettingsEntry,
8836
8678
  websiteSettingsToInput,
8837
8679
  websiteSettingsToInputCascade,