solidworks-mcp-server 2.2.0 → 3.0.0
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.
- package/README.md +33 -10
- package/dist/application/services/command-bus.d.ts +39 -0
- package/dist/application/services/command-bus.d.ts.map +1 -0
- package/dist/application/services/command-bus.js +88 -0
- package/dist/application/services/command-bus.js.map +1 -0
- package/dist/application/services/event-bus.d.ts +31 -0
- package/dist/application/services/event-bus.d.ts.map +1 -0
- package/dist/application/services/event-bus.js +83 -0
- package/dist/application/services/event-bus.js.map +1 -0
- package/dist/application/services/query-bus.d.ts +30 -0
- package/dist/application/services/query-bus.d.ts.map +1 -0
- package/dist/application/services/query-bus.js +59 -0
- package/dist/application/services/query-bus.js.map +1 -0
- package/dist/application/services/tool-registry.d.ts +53 -0
- package/dist/application/services/tool-registry.d.ts.map +1 -0
- package/dist/application/services/tool-registry.js +81 -0
- package/dist/application/services/tool-registry.js.map +1 -0
- package/dist/application/use-cases/analysis/index.d.ts +13 -0
- package/dist/application/use-cases/analysis/index.d.ts.map +1 -0
- package/dist/application/use-cases/analysis/index.js +17 -0
- package/dist/application/use-cases/analysis/index.js.map +1 -0
- package/dist/application/use-cases/drawing/index.d.ts +13 -0
- package/dist/application/use-cases/drawing/index.d.ts.map +1 -0
- package/dist/application/use-cases/drawing/index.js +17 -0
- package/dist/application/use-cases/drawing/index.js.map +1 -0
- package/dist/application/use-cases/export/index.d.ts +13 -0
- package/dist/application/use-cases/export/index.d.ts.map +1 -0
- package/dist/application/use-cases/export/index.js +17 -0
- package/dist/application/use-cases/export/index.js.map +1 -0
- package/dist/application/use-cases/macro/index.d.ts +13 -0
- package/dist/application/use-cases/macro/index.d.ts.map +1 -0
- package/dist/application/use-cases/macro/index.js +17 -0
- package/dist/application/use-cases/macro/index.js.map +1 -0
- package/dist/application/use-cases/modeling/index.d.ts +56 -0
- package/dist/application/use-cases/modeling/index.d.ts.map +1 -0
- package/dist/application/use-cases/modeling/index.js +385 -0
- package/dist/application/use-cases/modeling/index.js.map +1 -0
- package/dist/core/interfaces/core-abstractions.d.ts +289 -0
- package/dist/core/interfaces/core-abstractions.d.ts.map +1 -0
- package/dist/core/interfaces/core-abstractions.js +121 -0
- package/dist/core/interfaces/core-abstractions.js.map +1 -0
- package/dist/index.refactored.d.ts +7 -0
- package/dist/index.refactored.d.ts.map +1 -0
- package/dist/index.refactored.js +254 -0
- package/dist/index.refactored.js.map +1 -0
- package/dist/infrastructure/config/configuration-manager.d.ts +381 -0
- package/dist/infrastructure/config/configuration-manager.d.ts.map +1 -0
- package/dist/infrastructure/config/configuration-manager.js +566 -0
- package/dist/infrastructure/config/configuration-manager.js.map +1 -0
- package/dist/infrastructure/container/service-locator.d.ts +14 -0
- package/dist/infrastructure/container/service-locator.d.ts.map +1 -0
- package/dist/infrastructure/container/service-locator.js +38 -0
- package/dist/infrastructure/container/service-locator.js.map +1 -0
- package/dist/infrastructure/logging/logger.d.ts +24 -0
- package/dist/infrastructure/logging/logger.d.ts.map +1 -0
- package/dist/infrastructure/logging/logger.js +65 -0
- package/dist/infrastructure/logging/logger.js.map +1 -0
- package/dist/infrastructure/solidworks/solidworks-adapter.d.ts +43 -0
- package/dist/infrastructure/solidworks/solidworks-adapter.d.ts.map +1 -0
- package/dist/infrastructure/solidworks/solidworks-adapter.js +527 -0
- package/dist/infrastructure/solidworks/solidworks-adapter.js.map +1 -0
- package/dist/presentation/mcp/request-handler.d.ts +41 -0
- package/dist/presentation/mcp/request-handler.d.ts.map +1 -0
- package/dist/presentation/mcp/request-handler.js +100 -0
- package/dist/presentation/mcp/request-handler.js.map +1 -0
- package/dist/presentation/transformers/error-transformer.d.ts +16 -0
- package/dist/presentation/transformers/error-transformer.d.ts.map +1 -0
- package/dist/presentation/transformers/error-transformer.js +44 -0
- package/dist/presentation/transformers/error-transformer.js.map +1 -0
- package/dist/presentation/transformers/response-transformer.d.ts +24 -0
- package/dist/presentation/transformers/response-transformer.d.ts.map +1 -0
- package/dist/presentation/transformers/response-transformer.js +102 -0
- package/dist/presentation/transformers/response-transformer.js.map +1 -0
- package/dist/resources/design-table.d.ts +28 -28
- package/dist/resources/pdm.d.ts +70 -70
- package/dist/shared/constants/solidworks-constants.d.ts +302 -0
- package/dist/shared/constants/solidworks-constants.d.ts.map +1 -0
- package/dist/shared/constants/solidworks-constants.js +471 -0
- package/dist/shared/constants/solidworks-constants.js.map +1 -0
- package/dist/tools/diagnostics.d.ts +21 -0
- package/dist/tools/diagnostics.d.ts.map +1 -0
- package/dist/tools/diagnostics.js +120 -0
- package/dist/tools/diagnostics.js.map +1 -0
- package/dist/tools/drawing-analysis.d.ts +9 -0
- package/dist/tools/drawing-analysis.d.ts.map +1 -0
- package/dist/tools/drawing-analysis.js +239 -0
- package/dist/tools/drawing-analysis.js.map +1 -0
- package/dist/tools/drawing.d.ts +4 -4
- package/dist/tools/enhanced-drawing.d.ts +51 -0
- package/dist/tools/enhanced-drawing.d.ts.map +1 -0
- package/dist/tools/enhanced-drawing.js +193 -0
- package/dist/tools/enhanced-drawing.js.map +1 -0
- package/dist/tools/export.d.ts +6 -6
- package/dist/tools/macro-security.d.ts +9 -0
- package/dist/tools/macro-security.d.ts.map +1 -0
- package/dist/tools/macro-security.js +86 -0
- package/dist/tools/macro-security.js.map +1 -0
- package/dist/tools/vba-advanced.d.ts +12 -12
- package/dist/tools/vba-assembly.d.ts +8 -8
- package/dist/tools/vba-drawing.d.ts +14 -14
- package/dist/tools/vba-file-management.d.ts +16 -16
- package/dist/tools/vba-part.d.ts +10 -10
- package/dist/tools/vba.d.ts +67 -67
- package/package.json +12 -7
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SolidWorks Constants and Enumerations
|
|
3
|
+
* Replaces all magic numbers with meaningful constants
|
|
4
|
+
*/
|
|
5
|
+
export declare enum SwDocumentType {
|
|
6
|
+
None = 0,
|
|
7
|
+
Part = 1,
|
|
8
|
+
Assembly = 2,
|
|
9
|
+
Drawing = 3
|
|
10
|
+
}
|
|
11
|
+
export declare const DocumentExtensions: {
|
|
12
|
+
readonly Part: readonly [".sldprt", ".prt"];
|
|
13
|
+
readonly Assembly: readonly [".sldasm", ".asm"];
|
|
14
|
+
readonly Drawing: readonly [".slddrw", ".drw"];
|
|
15
|
+
readonly Template: readonly [".prtdot", ".asmdot", ".drwdot"];
|
|
16
|
+
};
|
|
17
|
+
export declare enum SwSaveAsOptions {
|
|
18
|
+
Silent = 1,
|
|
19
|
+
Copy = 2,
|
|
20
|
+
UpdateInactiveViews = 4,
|
|
21
|
+
AvoidRebuildOnSave = 8,
|
|
22
|
+
OverrideSaveEmodel = 16,
|
|
23
|
+
SaveEmodelData = 32,
|
|
24
|
+
UseCurrentWorkingDirectory = 64
|
|
25
|
+
}
|
|
26
|
+
export declare enum SwSaveAsVersion {
|
|
27
|
+
CurrentVersion = 0,
|
|
28
|
+
Sw98plus = 5000,
|
|
29
|
+
Sw99 = 5500,
|
|
30
|
+
Sw2000 = 6000,
|
|
31
|
+
Sw2001 = 7000,
|
|
32
|
+
Sw2001Plus = 7500,
|
|
33
|
+
Sw2003 = 8000
|
|
34
|
+
}
|
|
35
|
+
export declare enum SwOpenDocOptions {
|
|
36
|
+
Silent = 1,
|
|
37
|
+
ReadOnly = 2,
|
|
38
|
+
ViewOnly = 4,
|
|
39
|
+
LoadModel = 8,
|
|
40
|
+
DontLoadHiddenComponents = 16,
|
|
41
|
+
LoadExternalReferences = 32,
|
|
42
|
+
AutoMissingConfig = 64,
|
|
43
|
+
LoadLightweight = 128,
|
|
44
|
+
RapidDraft = 256
|
|
45
|
+
}
|
|
46
|
+
export declare enum SwFeatureType {
|
|
47
|
+
ProfileFeature = 0,
|
|
48
|
+
ExtrudeFeature = 1,
|
|
49
|
+
RevolveFeature = 2,
|
|
50
|
+
SweepFeature = 3,
|
|
51
|
+
LoftFeature = 4,
|
|
52
|
+
BoundaryFeature = 5,
|
|
53
|
+
FilletFeature = 6,
|
|
54
|
+
ChamferFeature = 7,
|
|
55
|
+
ShellFeature = 8,
|
|
56
|
+
DraftFeature = 9,
|
|
57
|
+
PatternFeature = 10,
|
|
58
|
+
MirrorFeature = 11,
|
|
59
|
+
HoleFeature = 12
|
|
60
|
+
}
|
|
61
|
+
export declare enum SwEndCondition {
|
|
62
|
+
Blind = 0,
|
|
63
|
+
ThroughAll = 1,
|
|
64
|
+
ThroughNext = 2,
|
|
65
|
+
UpToVertex = 3,
|
|
66
|
+
UpToSurface = 4,
|
|
67
|
+
OffsetFromSurface = 5,
|
|
68
|
+
UpToBody = 6,
|
|
69
|
+
MidPlane = 7,
|
|
70
|
+
ThroughAllBoth = 8,
|
|
71
|
+
UpToSelection = 9
|
|
72
|
+
}
|
|
73
|
+
export declare enum SwSelectType {
|
|
74
|
+
Faces = 2,
|
|
75
|
+
Edges = 3,
|
|
76
|
+
Vertices = 4,
|
|
77
|
+
Sketches = 5,
|
|
78
|
+
SketchSegments = 6,
|
|
79
|
+
SketchPoints = 7,
|
|
80
|
+
Datums = 8,
|
|
81
|
+
Axes = 9,
|
|
82
|
+
Planes = 10,
|
|
83
|
+
Components = 11,
|
|
84
|
+
Bodies = 12,
|
|
85
|
+
Features = 13,
|
|
86
|
+
Dimensions = 14
|
|
87
|
+
}
|
|
88
|
+
export declare enum SwRebuildOptions {
|
|
89
|
+
Current = 0,
|
|
90
|
+
All = 1,
|
|
91
|
+
TopLevel = 2,
|
|
92
|
+
OnlyFeatures = 3
|
|
93
|
+
}
|
|
94
|
+
export declare enum SwMassPropertyAccuracy {
|
|
95
|
+
Low = 0,
|
|
96
|
+
Medium = 1,
|
|
97
|
+
High = 2,
|
|
98
|
+
VeryHigh = 3,
|
|
99
|
+
Exact = 4
|
|
100
|
+
}
|
|
101
|
+
export declare enum SwSheetMetalReliefType {
|
|
102
|
+
Rectangular = 0,
|
|
103
|
+
Obround = 1,
|
|
104
|
+
Tear = 2
|
|
105
|
+
}
|
|
106
|
+
export declare enum SwBendAllowance {
|
|
107
|
+
BendTable = 0,
|
|
108
|
+
KFactor = 1,
|
|
109
|
+
BendAllowance = 2,
|
|
110
|
+
BendDeduction = 3
|
|
111
|
+
}
|
|
112
|
+
export declare enum SwDrawingViewType {
|
|
113
|
+
Standard = 0,
|
|
114
|
+
Projected = 1,
|
|
115
|
+
Auxiliary = 2,
|
|
116
|
+
Section = 3,
|
|
117
|
+
Detail = 4,
|
|
118
|
+
Broken = 5,
|
|
119
|
+
BreakOutSection = 6,
|
|
120
|
+
Isometric = 7,
|
|
121
|
+
Named = 8
|
|
122
|
+
}
|
|
123
|
+
export declare enum SwDrawingViewOrientation {
|
|
124
|
+
Front = 0,
|
|
125
|
+
Back = 1,
|
|
126
|
+
Left = 2,
|
|
127
|
+
Right = 3,
|
|
128
|
+
Top = 4,
|
|
129
|
+
Bottom = 5,
|
|
130
|
+
Isometric = 6,
|
|
131
|
+
Dimetric = 7,
|
|
132
|
+
Trimetric = 8,
|
|
133
|
+
Current = 9
|
|
134
|
+
}
|
|
135
|
+
export declare enum SwDimensionType {
|
|
136
|
+
Linear = 0,
|
|
137
|
+
Angular = 1,
|
|
138
|
+
Radial = 2,
|
|
139
|
+
Diameter = 3,
|
|
140
|
+
Ordinate = 4,
|
|
141
|
+
Chamfer = 5,
|
|
142
|
+
ArcLength = 6,
|
|
143
|
+
Coordinate = 7
|
|
144
|
+
}
|
|
145
|
+
export declare enum SwDimensionToleranceType {
|
|
146
|
+
None = 0,
|
|
147
|
+
Bilateral = 1,
|
|
148
|
+
Limit = 2,
|
|
149
|
+
Symmetric = 3,
|
|
150
|
+
Basic = 4,
|
|
151
|
+
Min = 5,
|
|
152
|
+
Max = 6
|
|
153
|
+
}
|
|
154
|
+
export declare enum SwExportFormat {
|
|
155
|
+
Step = "step",
|
|
156
|
+
Iges = "iges",
|
|
157
|
+
Stl = "stl",
|
|
158
|
+
Pdf = "pdf",
|
|
159
|
+
Dxf = "dxf",
|
|
160
|
+
Dwg = "dwg",
|
|
161
|
+
Parasolid = "x_t",
|
|
162
|
+
Sat = "sat",
|
|
163
|
+
Vrml = "wrl",
|
|
164
|
+
Obj = "obj",
|
|
165
|
+
Ply = "ply",
|
|
166
|
+
ThreeMf = "3mf"
|
|
167
|
+
}
|
|
168
|
+
export declare const ExportExtensions: Record<SwExportFormat, string[]>;
|
|
169
|
+
export declare enum SwLengthUnit {
|
|
170
|
+
Millimeters = 0,
|
|
171
|
+
Centimeters = 1,
|
|
172
|
+
Meters = 2,
|
|
173
|
+
Inches = 3,
|
|
174
|
+
Feet = 4,
|
|
175
|
+
FeetInches = 5,
|
|
176
|
+
Angstroms = 6,
|
|
177
|
+
Nanometers = 7,
|
|
178
|
+
Microns = 8
|
|
179
|
+
}
|
|
180
|
+
export declare enum SwAngleUnit {
|
|
181
|
+
Degrees = 0,
|
|
182
|
+
Radians = 1,
|
|
183
|
+
Gradians = 2,
|
|
184
|
+
DegreesMinutes = 3,
|
|
185
|
+
DegreesMinutesSeconds = 4
|
|
186
|
+
}
|
|
187
|
+
export declare enum SwMassUnit {
|
|
188
|
+
Grams = 0,
|
|
189
|
+
Kilograms = 1,
|
|
190
|
+
Pounds = 2,
|
|
191
|
+
Ounces = 3,
|
|
192
|
+
Tons = 4
|
|
193
|
+
}
|
|
194
|
+
export declare const ConversionFactors: {
|
|
195
|
+
readonly MillimetersToMeters: 0.001;
|
|
196
|
+
readonly CentimetersToMeters: 0.01;
|
|
197
|
+
readonly InchesToMeters: 0.0254;
|
|
198
|
+
readonly FeetToMeters: 0.3048;
|
|
199
|
+
readonly MetersToMillimeters: 1000;
|
|
200
|
+
readonly MetersToCentimeters: 100;
|
|
201
|
+
readonly MetersToInches: 39.3701;
|
|
202
|
+
readonly MetersToFeet: 3.28084;
|
|
203
|
+
readonly DegreesToRadians: number;
|
|
204
|
+
readonly RadiansToDegrees: number;
|
|
205
|
+
readonly GramsToKilograms: 0.001;
|
|
206
|
+
readonly PoundsToKilograms: 0.453592;
|
|
207
|
+
readonly OuncesToKilograms: 0.0283495;
|
|
208
|
+
readonly KilogramsToGrams: 1000;
|
|
209
|
+
readonly KilogramsToPounds: 2.20462;
|
|
210
|
+
readonly KilogramsToOunces: 35.274;
|
|
211
|
+
};
|
|
212
|
+
export declare enum SwErrorCode {
|
|
213
|
+
Success = 0,
|
|
214
|
+
GenericError = 1,
|
|
215
|
+
FileNotFound = 2,
|
|
216
|
+
InvalidFileType = 3,
|
|
217
|
+
ReadOnly = 4,
|
|
218
|
+
InvalidOperation = 5,
|
|
219
|
+
NoActiveDocument = 6,
|
|
220
|
+
InvalidDimension = 7,
|
|
221
|
+
InvalidFeature = 8,
|
|
222
|
+
RebuildError = 9,
|
|
223
|
+
SaveError = 10,
|
|
224
|
+
ExportError = 11,
|
|
225
|
+
MacroError = 12,
|
|
226
|
+
SelectionError = 13,
|
|
227
|
+
GeometryError = 14,
|
|
228
|
+
AssemblyError = 15,
|
|
229
|
+
DrawingError = 16
|
|
230
|
+
}
|
|
231
|
+
export declare enum SwPaperSize {
|
|
232
|
+
Letter = 0,
|
|
233
|
+
LetterLandscape = 1,
|
|
234
|
+
Tabloid = 2,
|
|
235
|
+
TabloidLandscape = 3,
|
|
236
|
+
C = 4,
|
|
237
|
+
CLandscape = 5,
|
|
238
|
+
D = 6,
|
|
239
|
+
DLandscape = 7,
|
|
240
|
+
E = 8,
|
|
241
|
+
ELandscape = 9,
|
|
242
|
+
A4 = 10,
|
|
243
|
+
A4Landscape = 11,
|
|
244
|
+
A3 = 12,
|
|
245
|
+
A3Landscape = 13,
|
|
246
|
+
A2 = 14,
|
|
247
|
+
A2Landscape = 15,
|
|
248
|
+
A1 = 16,
|
|
249
|
+
A1Landscape = 17,
|
|
250
|
+
A0 = 18,
|
|
251
|
+
A0Landscape = 19,
|
|
252
|
+
UserDefined = 20
|
|
253
|
+
}
|
|
254
|
+
export declare const PaperDimensions: Record<SwPaperSize, {
|
|
255
|
+
width: number;
|
|
256
|
+
height: number;
|
|
257
|
+
}>;
|
|
258
|
+
export declare enum SwMacroSecurityLevel {
|
|
259
|
+
Low = 0,
|
|
260
|
+
Medium = 1,
|
|
261
|
+
High = 2
|
|
262
|
+
}
|
|
263
|
+
export declare const DefaultConfiguration: {
|
|
264
|
+
readonly Connection: {
|
|
265
|
+
readonly RetryAttempts: 3;
|
|
266
|
+
readonly RetryDelay: 1000;
|
|
267
|
+
readonly Timeout: 30000;
|
|
268
|
+
};
|
|
269
|
+
readonly Cache: {
|
|
270
|
+
readonly MaxEntries: 1000;
|
|
271
|
+
readonly TTL: 3600000;
|
|
272
|
+
};
|
|
273
|
+
readonly Logging: {
|
|
274
|
+
readonly Level: "info";
|
|
275
|
+
readonly MaxFileSize: 10485760;
|
|
276
|
+
readonly MaxFiles: 5;
|
|
277
|
+
};
|
|
278
|
+
readonly Performance: {
|
|
279
|
+
readonly MaxConcurrentOperations: 5;
|
|
280
|
+
readonly OperationTimeout: 60000;
|
|
281
|
+
};
|
|
282
|
+
readonly Templates: {
|
|
283
|
+
readonly DefaultPartTemplate: "C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2023\\templates\\Part.prtdot";
|
|
284
|
+
readonly DefaultAssemblyTemplate: "C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2023\\templates\\Assembly.asmdot";
|
|
285
|
+
readonly DefaultDrawingTemplate: "C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2023\\templates\\Drawing.drwdot";
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
export declare class SwConstants {
|
|
289
|
+
/**
|
|
290
|
+
* Get document type from file extension
|
|
291
|
+
*/
|
|
292
|
+
static getDocumentTypeFromExtension(filepath: string): SwDocumentType;
|
|
293
|
+
/**
|
|
294
|
+
* Convert units
|
|
295
|
+
*/
|
|
296
|
+
static convertLength(value: number, from: SwLengthUnit, to: SwLengthUnit): number;
|
|
297
|
+
/**
|
|
298
|
+
* Convert angle units
|
|
299
|
+
*/
|
|
300
|
+
static convertAngle(value: number, from: SwAngleUnit, to: SwAngleUnit): number;
|
|
301
|
+
}
|
|
302
|
+
//# sourceMappingURL=solidworks-constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"solidworks-constants.d.ts","sourceRoot":"","sources":["../../../src/shared/constants/solidworks-constants.ts"],"names":[],"mappings":"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"}
|