@ignos/api-client 20251106.0.13143 → 20251106.0.13145-alpha
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/lib/ignosportal-api.d.ts +92 -121
- package/lib/ignosportal-api.js +313 -439
- package/package.json +1 -1
- package/src/ignosportal-api.ts +370 -519
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -276,8 +276,6 @@ export interface IUserAppSettingsClient {
|
|
|
276
276
|
setRouteCardUserSettings(settings: RouteCardAppSettings): Promise<void>;
|
|
277
277
|
getMoveUserSettings(): Promise<MoveAppSettings>;
|
|
278
278
|
setMoveUserSettings(settings: MoveAppSettings): Promise<void>;
|
|
279
|
-
getEngageUserSettings(): Promise<EngageAppSettings>;
|
|
280
|
-
setEngageUserSettings(settings: EngageAppSettings): Promise<void>;
|
|
281
279
|
}
|
|
282
280
|
export declare class UserAppSettingsClient extends AuthorizedApiBase implements IUserAppSettingsClient {
|
|
283
281
|
private http;
|
|
@@ -294,10 +292,6 @@ export declare class UserAppSettingsClient extends AuthorizedApiBase implements
|
|
|
294
292
|
protected processGetMoveUserSettings(response: Response): Promise<MoveAppSettings>;
|
|
295
293
|
setMoveUserSettings(settings: MoveAppSettings): Promise<void>;
|
|
296
294
|
protected processSetMoveUserSettings(response: Response): Promise<void>;
|
|
297
|
-
getEngageUserSettings(): Promise<EngageAppSettings>;
|
|
298
|
-
protected processGetEngageUserSettings(response: Response): Promise<EngageAppSettings>;
|
|
299
|
-
setEngageUserSettings(settings: EngageAppSettings): Promise<void>;
|
|
300
|
-
protected processSetEngageUserSettings(response: Response): Promise<void>;
|
|
301
295
|
}
|
|
302
296
|
export interface IUploadClient {
|
|
303
297
|
createUploadInfo(): Promise<UploadInfoDto>;
|
|
@@ -1257,14 +1251,12 @@ export interface ICncSetupClient {
|
|
|
1257
1251
|
listCncToolByOperation(id: string): Promise<CncToolDto[]>;
|
|
1258
1252
|
updateCncMachineOperationTool(operationId: string, id: number, request: UpdateCncMachineOperationToolRequest): Promise<CncToolDto>;
|
|
1259
1253
|
deleteCncMachineOperationTool(operationId: string, id: number): Promise<void>;
|
|
1260
|
-
deleteCncMachineOperationToolMultiple(operationId: string, idsToDelete: number[]): Promise<void>;
|
|
1261
1254
|
uploadOperationCncToolImage(operationId: string, id: number, request: UploadCncToolImageRequest): Promise<ImageFileDto>;
|
|
1262
1255
|
deleteCncMachineOperationToolImage(operationId: string, id: number, filename: string): Promise<void>;
|
|
1263
1256
|
createCncMachineTool(id: string, request: CreateCncMachineOperationToolRequest): Promise<CncToolDto>;
|
|
1264
1257
|
listCncToolByCncMachine(id: string): Promise<CncToolDto[]>;
|
|
1265
1258
|
updateCncMachineTool(cncMachineId: string, id: number, request: UpdateCncMachineToolRequest): Promise<CncToolDto>;
|
|
1266
1259
|
deleteCncMachineTool(cncMachineId: string, id: number): Promise<void>;
|
|
1267
|
-
deleteCncMachineToolMultiple(cncMachineId: string, idsToDelete: number[]): Promise<void>;
|
|
1268
1260
|
uploadCncMachineToolImage(machineId: string, id: number, request: UploadCncToolImageRequest): Promise<ImageFileDto>;
|
|
1269
1261
|
deleteCncMachineToolImage(machineId: string, id: number, filename: string): Promise<void>;
|
|
1270
1262
|
importOperationWithTools(request: ImportOperationWithTool): Promise<void>;
|
|
@@ -1365,8 +1357,6 @@ export declare class CncSetupClient extends AuthorizedApiBase implements ICncSet
|
|
|
1365
1357
|
protected processUpdateCncMachineOperationTool(response: Response): Promise<CncToolDto>;
|
|
1366
1358
|
deleteCncMachineOperationTool(operationId: string, id: number): Promise<void>;
|
|
1367
1359
|
protected processDeleteCncMachineOperationTool(response: Response): Promise<void>;
|
|
1368
|
-
deleteCncMachineOperationToolMultiple(operationId: string, idsToDelete: number[]): Promise<void>;
|
|
1369
|
-
protected processDeleteCncMachineOperationToolMultiple(response: Response): Promise<void>;
|
|
1370
1360
|
uploadOperationCncToolImage(operationId: string, id: number, request: UploadCncToolImageRequest): Promise<ImageFileDto>;
|
|
1371
1361
|
protected processUploadOperationCncToolImage(response: Response): Promise<ImageFileDto>;
|
|
1372
1362
|
deleteCncMachineOperationToolImage(operationId: string, id: number, filename: string): Promise<void>;
|
|
@@ -1379,8 +1369,6 @@ export declare class CncSetupClient extends AuthorizedApiBase implements ICncSet
|
|
|
1379
1369
|
protected processUpdateCncMachineTool(response: Response): Promise<CncToolDto>;
|
|
1380
1370
|
deleteCncMachineTool(cncMachineId: string, id: number): Promise<void>;
|
|
1381
1371
|
protected processDeleteCncMachineTool(response: Response): Promise<void>;
|
|
1382
|
-
deleteCncMachineToolMultiple(cncMachineId: string, idsToDelete: number[]): Promise<void>;
|
|
1383
|
-
protected processDeleteCncMachineToolMultiple(response: Response): Promise<void>;
|
|
1384
1372
|
uploadCncMachineToolImage(machineId: string, id: number, request: UploadCncToolImageRequest): Promise<ImageFileDto>;
|
|
1385
1373
|
protected processUploadCncMachineToolImage(response: Response): Promise<ImageFileDto>;
|
|
1386
1374
|
deleteCncMachineToolImage(machineId: string, id: number, filename: string): Promise<void>;
|
|
@@ -2134,11 +2122,14 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2134
2122
|
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2135
2123
|
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2136
2124
|
}
|
|
2137
|
-
export interface
|
|
2138
|
-
|
|
2125
|
+
export interface IMeasurementFormSchemasClient {
|
|
2126
|
+
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2139
2127
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2128
|
+
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2129
|
+
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2140
2130
|
updateMeasurementFormSchema(id: string, request: UpdateMeasurementFormSchemaRequest): Promise<MeasurementFormSchemaDto>;
|
|
2141
2131
|
deleteMeasurementForm(id: string): Promise<void>;
|
|
2132
|
+
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2142
2133
|
copyMeasurementFormSchema(id: string, request: CopyMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2143
2134
|
updateSchemaGroupedElements(id: string, request: UpdateSchemaGroupedElementsRequest): Promise<MeasurementFormSchemaDto>;
|
|
2144
2135
|
updateSchemaRow(id: string, request: UpdateSchemaGroupedElementRowDto): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2203,21 +2194,27 @@ export interface IMeasurementFormSchemasAdminClient {
|
|
|
2203
2194
|
listMeasurmentFormSchemasWithHistory(pageSize: number | undefined, customerId: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, version: number | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2204
2195
|
postListMeasurementFormSchemasWithHistory(request: ListMeasurementFormSchemasWithHistoryRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2205
2196
|
}
|
|
2206
|
-
export declare class
|
|
2197
|
+
export declare class MeasurementFormSchemasClient extends AuthorizedApiBase implements IMeasurementFormSchemasClient {
|
|
2207
2198
|
private http;
|
|
2208
2199
|
private baseUrl;
|
|
2209
2200
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2210
2201
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2211
2202
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2212
2203
|
});
|
|
2213
|
-
|
|
2214
|
-
protected
|
|
2204
|
+
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2205
|
+
protected processListMeasurmentFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2215
2206
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2216
2207
|
protected processCreateMeasurementForm(response: Response): Promise<MeasurementFormDto>;
|
|
2208
|
+
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2209
|
+
protected processPostListMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2210
|
+
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2211
|
+
protected processGetMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2217
2212
|
updateMeasurementFormSchema(id: string, request: UpdateMeasurementFormSchemaRequest): Promise<MeasurementFormSchemaDto>;
|
|
2218
2213
|
protected processUpdateMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2219
2214
|
deleteMeasurementForm(id: string): Promise<void>;
|
|
2220
2215
|
protected processDeleteMeasurementForm(response: Response): Promise<void>;
|
|
2216
|
+
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2217
|
+
protected processGetArchivedMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2221
2218
|
copyMeasurementFormSchema(id: string, request: CopyMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2222
2219
|
protected processCopyMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
|
|
2223
2220
|
updateSchemaGroupedElements(id: string, request: UpdateSchemaGroupedElementsRequest): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2330,22 +2327,6 @@ export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase
|
|
|
2330
2327
|
postListMeasurementFormSchemasWithHistory(request: ListMeasurementFormSchemasWithHistoryRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2331
2328
|
protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2332
2329
|
}
|
|
2333
|
-
export interface IMeasurementFormSchemasClient {
|
|
2334
|
-
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2335
|
-
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2336
|
-
}
|
|
2337
|
-
export declare class MeasurementFormSchemasClient extends AuthorizedApiBase implements IMeasurementFormSchemasClient {
|
|
2338
|
-
private http;
|
|
2339
|
-
private baseUrl;
|
|
2340
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2341
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2342
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2343
|
-
});
|
|
2344
|
-
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2345
|
-
protected processGetMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2346
|
-
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2347
|
-
protected processPostListMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2348
|
-
}
|
|
2349
2330
|
export interface IMeasurementFormSettingsClient {
|
|
2350
2331
|
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2351
2332
|
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
@@ -3425,16 +3406,6 @@ export interface IMoveAppSettings {
|
|
|
3425
3406
|
engageMoveAutoPrompt?: boolean;
|
|
3426
3407
|
defaultFromSuggestionAutoFillLocationId?: string | null;
|
|
3427
3408
|
}
|
|
3428
|
-
export declare class EngageAppSettings implements IEngageAppSettings {
|
|
3429
|
-
myResourceGroup?: string;
|
|
3430
|
-
constructor(data?: IEngageAppSettings);
|
|
3431
|
-
init(_data?: any): void;
|
|
3432
|
-
static fromJS(data: any): EngageAppSettings;
|
|
3433
|
-
toJSON(data?: any): any;
|
|
3434
|
-
}
|
|
3435
|
-
export interface IEngageAppSettings {
|
|
3436
|
-
myResourceGroup?: string;
|
|
3437
|
-
}
|
|
3438
3409
|
export declare class UploadInfoDto implements IUploadInfoDto {
|
|
3439
3410
|
baseUrl?: string | null;
|
|
3440
3411
|
key?: string | null;
|
|
@@ -12066,6 +12037,84 @@ export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
|
12066
12037
|
}
|
|
12067
12038
|
export interface ICreateWeldingIotConfig {
|
|
12068
12039
|
}
|
|
12040
|
+
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
12041
|
+
results: MeasurementFormListDto[];
|
|
12042
|
+
continuationToken?: string | null;
|
|
12043
|
+
constructor(data?: IPagedResultOfMeasurementFormListDto);
|
|
12044
|
+
init(_data?: any): void;
|
|
12045
|
+
static fromJS(data: any): PagedResultOfMeasurementFormListDto;
|
|
12046
|
+
toJSON(data?: any): any;
|
|
12047
|
+
}
|
|
12048
|
+
export interface IPagedResultOfMeasurementFormListDto {
|
|
12049
|
+
results: MeasurementFormListDto[];
|
|
12050
|
+
continuationToken?: string | null;
|
|
12051
|
+
}
|
|
12052
|
+
export declare class MeasurementFormListDto implements IMeasurementFormListDto {
|
|
12053
|
+
id: string;
|
|
12054
|
+
schemaId: string;
|
|
12055
|
+
versionId: number;
|
|
12056
|
+
customerId?: string | null;
|
|
12057
|
+
customerName?: string | null;
|
|
12058
|
+
partNumber?: string | null;
|
|
12059
|
+
partRevision?: string | null;
|
|
12060
|
+
partName?: string | null;
|
|
12061
|
+
drawing: string;
|
|
12062
|
+
drawingRevision?: string | null;
|
|
12063
|
+
createdBy: string;
|
|
12064
|
+
created: Date;
|
|
12065
|
+
status: MeasurementFormStatus;
|
|
12066
|
+
source: MeasurementFormSource;
|
|
12067
|
+
constructor(data?: IMeasurementFormListDto);
|
|
12068
|
+
init(_data?: any): void;
|
|
12069
|
+
static fromJS(data: any): MeasurementFormListDto;
|
|
12070
|
+
toJSON(data?: any): any;
|
|
12071
|
+
}
|
|
12072
|
+
export interface IMeasurementFormListDto {
|
|
12073
|
+
id: string;
|
|
12074
|
+
schemaId: string;
|
|
12075
|
+
versionId: number;
|
|
12076
|
+
customerId?: string | null;
|
|
12077
|
+
customerName?: string | null;
|
|
12078
|
+
partNumber?: string | null;
|
|
12079
|
+
partRevision?: string | null;
|
|
12080
|
+
partName?: string | null;
|
|
12081
|
+
drawing: string;
|
|
12082
|
+
drawingRevision?: string | null;
|
|
12083
|
+
createdBy: string;
|
|
12084
|
+
created: Date;
|
|
12085
|
+
status: MeasurementFormStatus;
|
|
12086
|
+
source: MeasurementFormSource;
|
|
12087
|
+
}
|
|
12088
|
+
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
12089
|
+
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
12090
|
+
export declare class ListMeasurementFormSchemasRequest implements IListMeasurementFormSchemasRequest {
|
|
12091
|
+
pageSize?: number | null;
|
|
12092
|
+
customerId?: string | null;
|
|
12093
|
+
customerName?: string | null;
|
|
12094
|
+
partName?: string | null;
|
|
12095
|
+
partNumber?: string | null;
|
|
12096
|
+
partRevision?: string | null;
|
|
12097
|
+
drawing?: string | null;
|
|
12098
|
+
drawingRevision?: string | null;
|
|
12099
|
+
filter?: string | null;
|
|
12100
|
+
continuationToken?: string | null;
|
|
12101
|
+
constructor(data?: IListMeasurementFormSchemasRequest);
|
|
12102
|
+
init(_data?: any): void;
|
|
12103
|
+
static fromJS(data: any): ListMeasurementFormSchemasRequest;
|
|
12104
|
+
toJSON(data?: any): any;
|
|
12105
|
+
}
|
|
12106
|
+
export interface IListMeasurementFormSchemasRequest {
|
|
12107
|
+
pageSize?: number | null;
|
|
12108
|
+
customerId?: string | null;
|
|
12109
|
+
customerName?: string | null;
|
|
12110
|
+
partName?: string | null;
|
|
12111
|
+
partNumber?: string | null;
|
|
12112
|
+
partRevision?: string | null;
|
|
12113
|
+
drawing?: string | null;
|
|
12114
|
+
drawingRevision?: string | null;
|
|
12115
|
+
filter?: string | null;
|
|
12116
|
+
continuationToken?: string | null;
|
|
12117
|
+
}
|
|
12069
12118
|
export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
12070
12119
|
id: string;
|
|
12071
12120
|
versionId: number;
|
|
@@ -12126,8 +12175,6 @@ export interface IMeasurementFormSchemaDto {
|
|
|
12126
12175
|
groupedElements: MeasurementFormGroupedElementDto[];
|
|
12127
12176
|
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
12128
12177
|
}
|
|
12129
|
-
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
12130
|
-
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
12131
12178
|
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
12132
12179
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
12133
12180
|
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
@@ -12526,54 +12573,6 @@ export interface IMeasurementFormImportStatusDto {
|
|
|
12526
12573
|
errorMessage: string;
|
|
12527
12574
|
timestamp: Date;
|
|
12528
12575
|
}
|
|
12529
|
-
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
12530
|
-
results: MeasurementFormListDto[];
|
|
12531
|
-
continuationToken?: string | null;
|
|
12532
|
-
constructor(data?: IPagedResultOfMeasurementFormListDto);
|
|
12533
|
-
init(_data?: any): void;
|
|
12534
|
-
static fromJS(data: any): PagedResultOfMeasurementFormListDto;
|
|
12535
|
-
toJSON(data?: any): any;
|
|
12536
|
-
}
|
|
12537
|
-
export interface IPagedResultOfMeasurementFormListDto {
|
|
12538
|
-
results: MeasurementFormListDto[];
|
|
12539
|
-
continuationToken?: string | null;
|
|
12540
|
-
}
|
|
12541
|
-
export declare class MeasurementFormListDto implements IMeasurementFormListDto {
|
|
12542
|
-
id: string;
|
|
12543
|
-
schemaId: string;
|
|
12544
|
-
versionId: number;
|
|
12545
|
-
customerId?: string | null;
|
|
12546
|
-
customerName?: string | null;
|
|
12547
|
-
partNumber?: string | null;
|
|
12548
|
-
partRevision?: string | null;
|
|
12549
|
-
partName?: string | null;
|
|
12550
|
-
drawing: string;
|
|
12551
|
-
drawingRevision?: string | null;
|
|
12552
|
-
createdBy: string;
|
|
12553
|
-
created: Date;
|
|
12554
|
-
status: MeasurementFormStatus;
|
|
12555
|
-
source: MeasurementFormSource;
|
|
12556
|
-
constructor(data?: IMeasurementFormListDto);
|
|
12557
|
-
init(_data?: any): void;
|
|
12558
|
-
static fromJS(data: any): MeasurementFormListDto;
|
|
12559
|
-
toJSON(data?: any): any;
|
|
12560
|
-
}
|
|
12561
|
-
export interface IMeasurementFormListDto {
|
|
12562
|
-
id: string;
|
|
12563
|
-
schemaId: string;
|
|
12564
|
-
versionId: number;
|
|
12565
|
-
customerId?: string | null;
|
|
12566
|
-
customerName?: string | null;
|
|
12567
|
-
partNumber?: string | null;
|
|
12568
|
-
partRevision?: string | null;
|
|
12569
|
-
partName?: string | null;
|
|
12570
|
-
drawing: string;
|
|
12571
|
-
drawingRevision?: string | null;
|
|
12572
|
-
createdBy: string;
|
|
12573
|
-
created: Date;
|
|
12574
|
-
status: MeasurementFormStatus;
|
|
12575
|
-
source: MeasurementFormSource;
|
|
12576
|
-
}
|
|
12577
12576
|
export declare class ListLinkableMeasurementFormSchemasRequest implements IListLinkableMeasurementFormSchemasRequest {
|
|
12578
12577
|
schemaId: string;
|
|
12579
12578
|
pageSize?: number | null;
|
|
@@ -13115,34 +13114,6 @@ export interface IListMeasurementFormSchemasWithHistoryRequest {
|
|
|
13115
13114
|
version?: number | null;
|
|
13116
13115
|
continuationToken?: string | null;
|
|
13117
13116
|
}
|
|
13118
|
-
export declare class ListMeasurementFormSchemasRequest implements IListMeasurementFormSchemasRequest {
|
|
13119
|
-
pageSize?: number | null;
|
|
13120
|
-
customerId?: string | null;
|
|
13121
|
-
customerName?: string | null;
|
|
13122
|
-
partName?: string | null;
|
|
13123
|
-
partNumber?: string | null;
|
|
13124
|
-
partRevision?: string | null;
|
|
13125
|
-
drawing?: string | null;
|
|
13126
|
-
drawingRevision?: string | null;
|
|
13127
|
-
filter?: string | null;
|
|
13128
|
-
continuationToken?: string | null;
|
|
13129
|
-
constructor(data?: IListMeasurementFormSchemasRequest);
|
|
13130
|
-
init(_data?: any): void;
|
|
13131
|
-
static fromJS(data: any): ListMeasurementFormSchemasRequest;
|
|
13132
|
-
toJSON(data?: any): any;
|
|
13133
|
-
}
|
|
13134
|
-
export interface IListMeasurementFormSchemasRequest {
|
|
13135
|
-
pageSize?: number | null;
|
|
13136
|
-
customerId?: string | null;
|
|
13137
|
-
customerName?: string | null;
|
|
13138
|
-
partName?: string | null;
|
|
13139
|
-
partNumber?: string | null;
|
|
13140
|
-
partRevision?: string | null;
|
|
13141
|
-
drawing?: string | null;
|
|
13142
|
-
drawingRevision?: string | null;
|
|
13143
|
-
filter?: string | null;
|
|
13144
|
-
continuationToken?: string | null;
|
|
13145
|
-
}
|
|
13146
13117
|
export declare class PagedResultOfMeasurementFormInstanceOverviewDto implements IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13147
13118
|
results: MeasurementFormInstanceOverviewDto[];
|
|
13148
13119
|
continuationToken?: string | null;
|