@nyrra/prismantix-oac-pharma 0.0.1

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 (48) hide show
  1. package/README.md +30 -0
  2. package/dist/index.d.mts +1 -0
  3. package/dist/index.mjs +1 -0
  4. package/dist/lib/prismantix/externalObjects.d.mts +3 -0
  5. package/dist/lib/prismantix/externalObjects.mjs +16 -0
  6. package/dist/lib/prismantix/index.d.mts +20 -0
  7. package/dist/lib/prismantix/index.mjs +29 -0
  8. package/dist/lib/prismantix/links.d.mts +27 -0
  9. package/dist/lib/prismantix/links.mjs +456 -0
  10. package/dist/lib/prismantix/objects/index.d.mts +2 -0
  11. package/dist/lib/prismantix/objects/index.mjs +2 -0
  12. package/dist/lib/prismantix/objects/masterData/Batch.d.mts +1 -0
  13. package/dist/lib/prismantix/objects/masterData/Batch.mjs +263 -0
  14. package/dist/lib/prismantix/objects/masterData/Equipment.d.mts +1 -0
  15. package/dist/lib/prismantix/objects/masterData/Equipment.mjs +126 -0
  16. package/dist/lib/prismantix/objects/masterData/Product.d.mts +1 -0
  17. package/dist/lib/prismantix/objects/masterData/Product.mjs +155 -0
  18. package/dist/lib/prismantix/objects/masterData/Site.d.mts +1 -0
  19. package/dist/lib/prismantix/objects/masterData/Site.mjs +182 -0
  20. package/dist/lib/prismantix/objects/masterData/Supplier.d.mts +1 -0
  21. package/dist/lib/prismantix/objects/masterData/Supplier.mjs +202 -0
  22. package/dist/lib/prismantix/objects/masterData/index.d.mts +6 -0
  23. package/dist/lib/prismantix/objects/masterData/index.mjs +17 -0
  24. package/dist/lib/prismantix/objects/quality/ActionItem.d.mts +1 -0
  25. package/dist/lib/prismantix/objects/quality/ActionItem.mjs +144 -0
  26. package/dist/lib/prismantix/objects/quality/Capa.d.mts +1 -0
  27. package/dist/lib/prismantix/objects/quality/Capa.mjs +286 -0
  28. package/dist/lib/prismantix/objects/quality/ChangeControl.d.mts +1 -0
  29. package/dist/lib/prismantix/objects/quality/ChangeControl.mjs +212 -0
  30. package/dist/lib/prismantix/objects/quality/ChangeControlApproval.d.mts +1 -0
  31. package/dist/lib/prismantix/objects/quality/ChangeControlApproval.mjs +122 -0
  32. package/dist/lib/prismantix/objects/quality/ChangeControlEffectiveness.d.mts +1 -0
  33. package/dist/lib/prismantix/objects/quality/ChangeControlEffectiveness.mjs +130 -0
  34. package/dist/lib/prismantix/objects/quality/ChangeControlImpact.d.mts +1 -0
  35. package/dist/lib/prismantix/objects/quality/ChangeControlImpact.mjs +150 -0
  36. package/dist/lib/prismantix/objects/quality/Complaint.d.mts +1 -0
  37. package/dist/lib/prismantix/objects/quality/Complaint.mjs +206 -0
  38. package/dist/lib/prismantix/objects/quality/Deviation.d.mts +1 -0
  39. package/dist/lib/prismantix/objects/quality/Deviation.mjs +212 -0
  40. package/dist/lib/prismantix/objects/quality/Investigation.d.mts +1 -0
  41. package/dist/lib/prismantix/objects/quality/Investigation.mjs +235 -0
  42. package/dist/lib/prismantix/objects/quality/RcaFactor.d.mts +1 -0
  43. package/dist/lib/prismantix/objects/quality/RcaFactor.mjs +89 -0
  44. package/dist/lib/prismantix/objects/quality/index.d.mts +11 -0
  45. package/dist/lib/prismantix/objects/quality/index.mjs +32 -0
  46. package/dist/lib/prismantix/valueTypes.d.mts +46 -0
  47. package/dist/lib/prismantix/valueTypes.mjs +586 -0
  48. package/package.json +49 -0
@@ -0,0 +1,263 @@
1
+ import { defineObject } from "@nyrra/maker";
2
+ import { Client } from "../../externalObjects.mjs";
3
+ import { BatchBatchSizeUnitValueType, BatchReleaseStatusValueType, BatchStatusValueType, EpochMillisValueType, IsoTimestampStringValueType, } from "../../valueTypes.mjs";
4
+ import { Product } from "./Product.mjs";
5
+ import { Site } from "./Site.mjs";
6
+ import { Supplier } from "./Supplier.mjs";
7
+ export const Batch = defineObject({
8
+ apiName: "Batch",
9
+ displayName: "Batch",
10
+ pluralDisplayName: "Batches",
11
+ primaryKeyPropertyApiName: "batchNumber",
12
+ titlePropertyApiName: "batchNumber",
13
+ description: "Create batches that would logically be appropriate in the manufacturing of the specified products at the specified sites for this company. Each batch should represent a believable pharmaceutical production run with: - Professional batch numbering following industry conventions - Appropriate batch sizes based on product type and manufacturing scale - Realistic manufacturing timelines (start and end dates) - Proper batch status based on quality control and release procedures - Complete traceability to products and manufacturing sites - Parent batch relationships for multi-stage manufacturing processes when applicable",
14
+ properties: {
15
+ batchNo: {
16
+ displayName: "Batch No",
17
+ description: "Batch No for the batch record.",
18
+ type: "string",
19
+ optional: true,
20
+ },
21
+ batchNumber: {
22
+ displayName: "Batch Number",
23
+ description: "Unique batch identifier following pharmaceutical batch numbering conventions",
24
+ type: "string",
25
+ exampleValues: ["B2024001", "B2024002", "B2024003"],
26
+ },
27
+ batchSize: {
28
+ displayName: "Batch Size",
29
+ description: "Manufacturing batch size with appropriate units (e.g., 10000 tablets, 500 kg, 2000 vials)",
30
+ type: "integer",
31
+ optional: true,
32
+ exampleValues: [10000, 500, 2000],
33
+ },
34
+ batchSizeUnit: {
35
+ displayName: "Batch Size Unit",
36
+ description: "Unit of measurement for batch size",
37
+ type: BatchBatchSizeUnitValueType,
38
+ optional: true,
39
+ exampleValues: ["tablets", "kg", "vials"],
40
+ },
41
+ clientId: {
42
+ displayName: "Client ID",
43
+ description: "Reference to client.",
44
+ type: "string",
45
+ reference: Client,
46
+ },
47
+ completionDate: {
48
+ displayName: "Completion Date",
49
+ description: "Date when batch manufacturing completed, typically 1-30 days after start",
50
+ type: IsoTimestampStringValueType,
51
+ optional: true,
52
+ exampleValues: [
53
+ "2024-01-17T16:00:00Z",
54
+ "2024-02-03T15:00:00Z",
55
+ "2024-03-12T18:00:00Z",
56
+ ],
57
+ },
58
+ createdAt: {
59
+ displayName: "Created At",
60
+ description: "Created At for the batch record.",
61
+ type: EpochMillisValueType,
62
+ optional: true,
63
+ },
64
+ deviationCount: {
65
+ displayName: "Deviation Count",
66
+ description: "Number of deviations associated with this batch (0-3 typical)",
67
+ type: "integer",
68
+ optional: true,
69
+ exampleValues: [0, 1],
70
+ },
71
+ endTs: {
72
+ displayName: "End Timestamp",
73
+ description: "End Timestamp for the batch record.",
74
+ type: EpochMillisValueType,
75
+ optional: true,
76
+ },
77
+ expiryDate: {
78
+ displayName: "Expiry Date",
79
+ description: "Batch expiry date based on product shelf life, in ISO 8601 format",
80
+ type: IsoTimestampStringValueType,
81
+ optional: true,
82
+ exampleValues: [
83
+ "2026-01-15T00:00:00Z",
84
+ "2027-02-01T00:00:00Z",
85
+ "2025-03-10T00:00:00Z",
86
+ ],
87
+ },
88
+ manufacturingDate: {
89
+ displayName: "Manufacturing Date",
90
+ description: "Date when batch manufacturing started, in ISO 8601 format (within last 12 months)",
91
+ type: IsoTimestampStringValueType,
92
+ optional: true,
93
+ exampleValues: [
94
+ "2024-01-15T08:00:00Z",
95
+ "2024-02-01T09:00:00Z",
96
+ "2024-03-10T07:00:00Z",
97
+ ],
98
+ },
99
+ notes: {
100
+ displayName: "Notes",
101
+ description: "Manufacturing notes or special observations about the batch",
102
+ type: "string",
103
+ optional: true,
104
+ exampleValues: [
105
+ "Standard production run, all parameters within specifications",
106
+ "Minor temperature excursion during granulation, under investigation",
107
+ "Sterile fill batch, awaiting sterility test results",
108
+ ],
109
+ },
110
+ parentBatchIds: {
111
+ displayName: "Parent Batch Ids",
112
+ description: "References to batch.",
113
+ type: "string",
114
+ optional: true,
115
+ array: true,
116
+ reference: "Batch",
117
+ },
118
+ productId: {
119
+ displayName: "Product ID",
120
+ description: "Reference to product.",
121
+ type: "string",
122
+ reference: Product,
123
+ exampleValues: [
124
+ "prod_aspirin_500mg",
125
+ "prod_amoxicillin_250mg",
126
+ "prod_insulin_100u",
127
+ ],
128
+ },
129
+ qaReviewDate: {
130
+ displayName: "QA Review Date",
131
+ description: "Date of quality assurance review, in ISO 8601 format",
132
+ type: IsoTimestampStringValueType,
133
+ optional: true,
134
+ exampleValues: ["2024-01-25T14:00:00Z", "2024-02-10T10:00:00Z"],
135
+ },
136
+ qaReviewer: {
137
+ displayName: "QA Reviewer",
138
+ description: "Name of quality assurance reviewer who released the batch",
139
+ type: "string",
140
+ optional: true,
141
+ exampleValues: ["Jennifer Martinez", "Michael Chen"],
142
+ },
143
+ releaseStatus: {
144
+ displayName: "Release Status",
145
+ description: "Quality release status for the batch",
146
+ type: BatchReleaseStatusValueType,
147
+ optional: true,
148
+ exampleValues: ["Approved", "On Hold", "Pending"],
149
+ },
150
+ siteId: {
151
+ displayName: "Site ID",
152
+ description: "Reference to site.",
153
+ type: "string",
154
+ reference: Site,
155
+ exampleValues: [
156
+ "site_austin_mfg",
157
+ "site_boston_facility",
158
+ "site_seattle_biotech",
159
+ ],
160
+ },
161
+ size: {
162
+ displayName: "Size",
163
+ description: "Size for the batch record.",
164
+ type: "integer",
165
+ optional: true,
166
+ },
167
+ startTs: {
168
+ displayName: "Start Timestamp",
169
+ description: "Start Timestamp for the batch record.",
170
+ type: EpochMillisValueType,
171
+ optional: true,
172
+ },
173
+ status: {
174
+ displayName: "Status",
175
+ description: "Current batch status in quality control workflow",
176
+ type: BatchStatusValueType,
177
+ exampleValues: ["Released", "Quarantined", "In Testing"],
178
+ },
179
+ supplierIds: {
180
+ displayName: "Supplier Ids",
181
+ description: "References to supplier.",
182
+ type: "string",
183
+ optional: true,
184
+ array: true,
185
+ reference: Supplier,
186
+ },
187
+ updatedAt: {
188
+ displayName: "Updated At",
189
+ description: "Updated At for the batch record.",
190
+ type: EpochMillisValueType,
191
+ optional: true,
192
+ },
193
+ yieldPercentage: {
194
+ displayName: "Yield Percentage",
195
+ description: "Actual yield as percentage of theoretical yield (typically 85-105%)",
196
+ type: "double",
197
+ optional: true,
198
+ exampleValues: [98.5, 92.3, 99.1],
199
+ },
200
+ },
201
+ prismantix: {
202
+ category: "master-data",
203
+ convex: {
204
+ componentName: "ontology",
205
+ indexes: [
206
+ {
207
+ fields: ["batchNumber"],
208
+ name: "by_batch_number",
209
+ },
210
+ {
211
+ fields: ["batchNo"],
212
+ name: "by_legacy_batch_no",
213
+ },
214
+ {
215
+ fields: ["productId"],
216
+ name: "by_product",
217
+ },
218
+ {
219
+ fields: ["siteId"],
220
+ name: "by_site",
221
+ },
222
+ {
223
+ fields: ["status"],
224
+ name: "by_status",
225
+ },
226
+ {
227
+ fields: ["releaseStatus"],
228
+ name: "by_release_status",
229
+ },
230
+ {
231
+ fields: ["clientId"],
232
+ name: "by_client",
233
+ },
234
+ ],
235
+ materialized: true,
236
+ tableName: "datastudio_batches",
237
+ },
238
+ defaults: {
239
+ fabricationCount: 50,
240
+ seedCount: 50,
241
+ },
242
+ domain: "masterData",
243
+ guidance: [
244
+ "Generate realistic pharmaceutical batch records with proper traceability",
245
+ "Follow GMP batch numbering conventions",
246
+ "Include appropriate batch sizes for pharmaceutical manufacturing",
247
+ "Consider batch genealogy and material traceability",
248
+ "Apply realistic manufacturing timelines and status transitions",
249
+ ],
250
+ notes: "pharmaceutical manufacturing batches",
251
+ requiresClient: true,
252
+ seeding: {
253
+ order: 5,
254
+ requires: [
255
+ "datastudio_clients",
256
+ "datastudio_products",
257
+ "datastudio_sites",
258
+ "datastudio_suppliers",
259
+ ],
260
+ },
261
+ showInNavigation: true,
262
+ },
263
+ });
@@ -0,0 +1 @@
1
+ export declare const Equipment: import("@nyrra/maker").PrismantixObjectDefinition;
@@ -0,0 +1,126 @@
1
+ import { defineObject } from "@nyrra/maker";
2
+ import { Client } from "../../externalObjects.mjs";
3
+ import { EpochMillisValueType, EquipmentStatusValueType, IsoTimestampStringValueType, } from "../../valueTypes.mjs";
4
+ import { Site } from "./Site.mjs";
5
+ export const Equipment = defineObject({
6
+ apiName: "Equipment",
7
+ displayName: "Equipment",
8
+ pluralDisplayName: "Equipment",
9
+ primaryKeyPropertyApiName: "equipmentCode",
10
+ titlePropertyApiName: "name",
11
+ description: 'Generate realistic equipment master data records. Each equipment should include: - A unique equipmentCode following a consistent pattern - A clear, human-friendly name (e.g., "Granulator G-120", "Autoclave A-02") - A realistic operational status - Optional calibration dates in ISO 8601 format when appropriate',
12
+ properties: {
13
+ clientId: {
14
+ displayName: "Client ID",
15
+ description: "Reference to client.",
16
+ type: "string",
17
+ reference: Client,
18
+ },
19
+ createdAt: {
20
+ displayName: "Created At",
21
+ description: "Created At for the equipment record.",
22
+ type: EpochMillisValueType,
23
+ optional: true,
24
+ },
25
+ equipmentCode: {
26
+ displayName: "Equipment Code",
27
+ description: "Unique code following EQP### pattern",
28
+ type: "string",
29
+ exampleValues: ["EQP001", "EQP002", "EQP003"],
30
+ },
31
+ lastCalibrationDate: {
32
+ displayName: "Last Calibration Date",
33
+ description: "ISO 8601 date string within the last 24 months, when applicable",
34
+ type: IsoTimestampStringValueType,
35
+ optional: true,
36
+ exampleValues: [
37
+ "2025-04-10T00:00:00Z",
38
+ "2024-12-01T00:00:00Z",
39
+ "2024-09-15T00:00:00Z",
40
+ ],
41
+ },
42
+ name: {
43
+ displayName: "Name",
44
+ description: "Concise human-readable equipment names reflecting actual manufacturing assets",
45
+ type: "string",
46
+ exampleValues: [
47
+ "Autoclave A-02",
48
+ "Granulator G-120",
49
+ "Reactor Vessel RV-15",
50
+ ],
51
+ },
52
+ nextCalibrationDueDate: {
53
+ displayName: "Next Calibration Due Date",
54
+ description: "ISO 8601 date string within the next 12 months, when applicable",
55
+ type: IsoTimestampStringValueType,
56
+ optional: true,
57
+ exampleValues: [
58
+ "2025-10-10T00:00:00Z",
59
+ "2025-12-01T00:00:00Z",
60
+ "2025-09-15T00:00:00Z",
61
+ ],
62
+ },
63
+ siteId: {
64
+ displayName: "Site ID",
65
+ description: "Reference to site.",
66
+ type: "string",
67
+ reference: Site,
68
+ },
69
+ status: {
70
+ displayName: "Status",
71
+ description: "Operational status",
72
+ type: EquipmentStatusValueType,
73
+ exampleValues: ["Active", "UnderMaintenance", "CalDue"],
74
+ },
75
+ updatedAt: {
76
+ displayName: "Updated At",
77
+ description: "Updated At for the equipment record.",
78
+ type: EpochMillisValueType,
79
+ optional: true,
80
+ },
81
+ },
82
+ prismantix: {
83
+ category: "master-data",
84
+ convex: {
85
+ componentName: "ontology",
86
+ indexes: [
87
+ {
88
+ fields: ["equipmentCode"],
89
+ name: "by_code",
90
+ },
91
+ {
92
+ fields: ["clientId"],
93
+ name: "by_client",
94
+ },
95
+ {
96
+ fields: ["siteId"],
97
+ name: "by_site",
98
+ },
99
+ {
100
+ fields: ["status"],
101
+ name: "by_status",
102
+ },
103
+ ],
104
+ materialized: true,
105
+ tableName: "datastudio_equipment",
106
+ },
107
+ defaults: {
108
+ fabricationCount: 10,
109
+ },
110
+ domain: "masterData",
111
+ guidance: [
112
+ "Represent common GMP manufacturing equipment used in pharma/biotech",
113
+ "Names should be human-friendly, concise, and clearly identify equipment",
114
+ "Equipment codes follow a standardized pattern for inventory tracking",
115
+ "Calibration status and dates should look realistic",
116
+ ],
117
+ notes: "manufacturing equipment assets",
118
+ requiresClient: true,
119
+ seeding: {
120
+ order: 3,
121
+ requires: ["datastudio_clients", "datastudio_sites"],
122
+ skipReason: "prefer-ai-generation",
123
+ },
124
+ showInNavigation: true,
125
+ },
126
+ });
@@ -0,0 +1 @@
1
+ export declare const Product: import("@nyrra/maker").PrismantixObjectDefinition;
@@ -0,0 +1,155 @@
1
+ import { defineObject } from "@nyrra/maker";
2
+ import { Client } from "../../externalObjects.mjs";
3
+ import { EpochMillisValueType, ProductDevelopmentStageValueType, ProductDosageFormValueType, ProductProductTypeValueType, ProductRegulatoryStatusValueType, ProductTherapeuticAreaValueType, } from "../../valueTypes.mjs";
4
+ export const Product = defineObject({
5
+ apiName: "Product",
6
+ displayName: "Product",
7
+ pluralDisplayName: "Products",
8
+ primaryKeyPropertyApiName: "productCode",
9
+ titlePropertyApiName: "productName",
10
+ description: "Generate realistic pharmaceutical product records with authentic brand names and details. Each product should represent a believable pharmaceutical therapy with: - Authentic product names from the client's actual portfolio - Appropriate generic names that match the brand - Dosage forms that align with the product type and therapeutic area - Realistic strength formulations for the specific drug class - Proper therapeutic area classifications - Development stages that match commercial reality - Regulatory statuses appropriate for the product lifecycle",
11
+ properties: {
12
+ clientId: {
13
+ displayName: "Client ID",
14
+ description: "Reference to client.",
15
+ type: "string",
16
+ reference: Client,
17
+ },
18
+ createdAt: {
19
+ displayName: "Created At",
20
+ description: "Created At for the product record.",
21
+ type: EpochMillisValueType,
22
+ optional: true,
23
+ },
24
+ developmentStage: {
25
+ displayName: "Development Stage",
26
+ description: "Current development/lifecycle stage",
27
+ type: ProductDevelopmentStageValueType,
28
+ exampleValues: ["Commercial"],
29
+ },
30
+ description: {
31
+ displayName: "Description",
32
+ description: "Professional pharmaceutical product description including therapeutic indication and mechanism of action",
33
+ type: "string",
34
+ exampleValues: [
35
+ "Fast-acting insulin analog for diabetes management, providing rapid glucose control",
36
+ "CDK4/6 inhibitor for hormone receptor-positive breast cancer treatment",
37
+ "GLP-1 receptor agonist for type 2 diabetes and cardiovascular risk reduction",
38
+ ],
39
+ },
40
+ dosageForm: {
41
+ displayName: "Dosage Form",
42
+ description: "Pharmaceutical dosage form that matches the product type",
43
+ type: ProductDosageFormValueType,
44
+ exampleValues: ["Pre-filled Pen", "Tablet"],
45
+ },
46
+ genericName: {
47
+ displayName: "Generic Name",
48
+ description: "Scientific/generic name that corresponds to the brand name (e.g., insulin lispro for Humalog)",
49
+ type: "string",
50
+ exampleValues: ["insulin lispro", "abemaciclib", "dulaglutide"],
51
+ },
52
+ productCode: {
53
+ displayName: "Product Code",
54
+ description: "Unique product identifier following PROD### pattern",
55
+ type: "string",
56
+ exampleValues: ["PROD001", "PROD002", "PROD003"],
57
+ },
58
+ productName: {
59
+ displayName: "Product Name",
60
+ description: "MUST use authentic pharmaceutical product names from the client's actual portfolio. For Eli Lilly use names like Humalog, Trulicity, Jardiance, Cymbalta, Mounjaro, Verzenio, Taltz, Emgality",
61
+ type: "string",
62
+ exampleValues: ["Humalog", "Verzenio", "Trulicity"],
63
+ },
64
+ productType: {
65
+ displayName: "Product Type",
66
+ description: "Product classification type",
67
+ type: ProductProductTypeValueType,
68
+ exampleValues: ["Branded"],
69
+ },
70
+ regulatoryStatus: {
71
+ displayName: "Regulatory Status",
72
+ description: "Current regulatory status",
73
+ type: ProductRegulatoryStatusValueType,
74
+ exampleValues: ["Active"],
75
+ },
76
+ shelfLife: {
77
+ displayName: "Shelf Life",
78
+ description: "Shelf life in months (number between 12-60 months typical for pharmaceuticals)",
79
+ type: "integer",
80
+ exampleValues: [36, 48, 30],
81
+ },
82
+ storageConditions: {
83
+ displayName: "Storage Conditions",
84
+ description: 'Storage requirements (e.g., "Store in refrigerator 2-8°C", "Store at room temperature")',
85
+ type: "string",
86
+ exampleValues: [
87
+ "Store in refrigerator 2-8°C. Do not freeze.",
88
+ "Store at room temperature 20-25°C",
89
+ "Store in refrigerator 2-8°C. Do not freeze or shake.",
90
+ ],
91
+ },
92
+ strength: {
93
+ displayName: "Strength",
94
+ description: "Dosage strength appropriate for the specific drug (e.g., 100 units/mL, 25mg, 10mg/mL)",
95
+ type: "string",
96
+ exampleValues: ["100 units/mL", "150mg", "1.5mg/0.5mL"],
97
+ },
98
+ therapeuticArea: {
99
+ displayName: "Therapeutic Area",
100
+ description: "Primary therapeutic area that matches the product's indication",
101
+ type: ProductTherapeuticAreaValueType,
102
+ exampleValues: ["Diabetes Care", "Oncology"],
103
+ },
104
+ updatedAt: {
105
+ displayName: "Updated At",
106
+ description: "Updated At for the product record.",
107
+ type: EpochMillisValueType,
108
+ optional: true,
109
+ },
110
+ },
111
+ prismantix: {
112
+ category: "master-data",
113
+ convex: {
114
+ componentName: "ontology",
115
+ indexes: [
116
+ {
117
+ fields: ["productCode"],
118
+ name: "by_code",
119
+ },
120
+ {
121
+ fields: ["clientId"],
122
+ name: "by_client",
123
+ },
124
+ {
125
+ fields: ["therapeuticArea"],
126
+ name: "by_therapeutic_area",
127
+ },
128
+ {
129
+ fields: ["regulatoryStatus"],
130
+ name: "by_regulatory_status",
131
+ },
132
+ ],
133
+ materialized: true,
134
+ tableName: "datastudio_products",
135
+ },
136
+ defaults: {
137
+ fabricationCount: 20,
138
+ seedCount: 20,
139
+ },
140
+ domain: "masterData",
141
+ guidance: [
142
+ "Generate authentic pharmaceutical product names from real client portfolios",
143
+ "Use actual brand names that match the specified client",
144
+ "Consider therapeutic areas and appropriate indications",
145
+ "Ensure product names match their dosage forms and development stages",
146
+ ],
147
+ notes: "pharmaceutical products and therapies",
148
+ requiresClient: true,
149
+ seeding: {
150
+ order: 3,
151
+ requires: ["datastudio_clients"],
152
+ },
153
+ showInNavigation: true,
154
+ },
155
+ });
@@ -0,0 +1 @@
1
+ export declare const Site: import("@nyrra/maker").PrismantixObjectDefinition;