@ignos/api-client 20251104.0.13119 → 20251106.0.13140
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 +99 -92
- package/lib/ignosportal-api.js +232 -283
- package/package.json +1 -1
- package/src/ignosportal-api.ts +325 -370
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2134,14 +2134,11 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2134
2134
|
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2135
2135
|
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2136
2136
|
}
|
|
2137
|
-
export interface
|
|
2138
|
-
|
|
2137
|
+
export interface IMeasurementFormSchemasAdminClient {
|
|
2138
|
+
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2139
2139
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2140
|
-
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2141
|
-
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2142
2140
|
updateMeasurementFormSchema(id: string, request: UpdateMeasurementFormSchemaRequest): Promise<MeasurementFormSchemaDto>;
|
|
2143
2141
|
deleteMeasurementForm(id: string): Promise<void>;
|
|
2144
|
-
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2145
2142
|
copyMeasurementFormSchema(id: string, request: CopyMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2146
2143
|
updateSchemaGroupedElements(id: string, request: UpdateSchemaGroupedElementsRequest): Promise<MeasurementFormSchemaDto>;
|
|
2147
2144
|
updateSchemaRow(id: string, request: UpdateSchemaGroupedElementRowDto): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2206,27 +2203,21 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2206
2203
|
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>;
|
|
2207
2204
|
postListMeasurementFormSchemasWithHistory(request: ListMeasurementFormSchemasWithHistoryRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2208
2205
|
}
|
|
2209
|
-
export declare class
|
|
2206
|
+
export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase implements IMeasurementFormSchemasAdminClient {
|
|
2210
2207
|
private http;
|
|
2211
2208
|
private baseUrl;
|
|
2212
2209
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2213
2210
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2214
2211
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2215
2212
|
});
|
|
2216
|
-
|
|
2217
|
-
protected
|
|
2213
|
+
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2214
|
+
protected processGetArchivedMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2218
2215
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2219
2216
|
protected processCreateMeasurementForm(response: Response): Promise<MeasurementFormDto>;
|
|
2220
|
-
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2221
|
-
protected processPostListMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2222
|
-
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2223
|
-
protected processGetMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2224
2217
|
updateMeasurementFormSchema(id: string, request: UpdateMeasurementFormSchemaRequest): Promise<MeasurementFormSchemaDto>;
|
|
2225
2218
|
protected processUpdateMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2226
2219
|
deleteMeasurementForm(id: string): Promise<void>;
|
|
2227
2220
|
protected processDeleteMeasurementForm(response: Response): Promise<void>;
|
|
2228
|
-
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2229
|
-
protected processGetArchivedMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2230
2221
|
copyMeasurementFormSchema(id: string, request: CopyMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2231
2222
|
protected processCopyMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
|
|
2232
2223
|
updateSchemaGroupedElements(id: string, request: UpdateSchemaGroupedElementsRequest): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2339,6 +2330,22 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2339
2330
|
postListMeasurementFormSchemasWithHistory(request: ListMeasurementFormSchemasWithHistoryRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2340
2331
|
protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2341
2332
|
}
|
|
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
|
+
}
|
|
2342
2349
|
export interface IMeasurementFormSettingsClient {
|
|
2343
2350
|
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2344
2351
|
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
@@ -12059,84 +12066,6 @@ export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
|
12059
12066
|
}
|
|
12060
12067
|
export interface ICreateWeldingIotConfig {
|
|
12061
12068
|
}
|
|
12062
|
-
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
12063
|
-
results: MeasurementFormListDto[];
|
|
12064
|
-
continuationToken?: string | null;
|
|
12065
|
-
constructor(data?: IPagedResultOfMeasurementFormListDto);
|
|
12066
|
-
init(_data?: any): void;
|
|
12067
|
-
static fromJS(data: any): PagedResultOfMeasurementFormListDto;
|
|
12068
|
-
toJSON(data?: any): any;
|
|
12069
|
-
}
|
|
12070
|
-
export interface IPagedResultOfMeasurementFormListDto {
|
|
12071
|
-
results: MeasurementFormListDto[];
|
|
12072
|
-
continuationToken?: string | null;
|
|
12073
|
-
}
|
|
12074
|
-
export declare class MeasurementFormListDto implements IMeasurementFormListDto {
|
|
12075
|
-
id: string;
|
|
12076
|
-
schemaId: string;
|
|
12077
|
-
versionId: number;
|
|
12078
|
-
customerId?: string | null;
|
|
12079
|
-
customerName?: string | null;
|
|
12080
|
-
partNumber?: string | null;
|
|
12081
|
-
partRevision?: string | null;
|
|
12082
|
-
partName?: string | null;
|
|
12083
|
-
drawing: string;
|
|
12084
|
-
drawingRevision?: string | null;
|
|
12085
|
-
createdBy: string;
|
|
12086
|
-
created: Date;
|
|
12087
|
-
status: MeasurementFormStatus;
|
|
12088
|
-
source: MeasurementFormSource;
|
|
12089
|
-
constructor(data?: IMeasurementFormListDto);
|
|
12090
|
-
init(_data?: any): void;
|
|
12091
|
-
static fromJS(data: any): MeasurementFormListDto;
|
|
12092
|
-
toJSON(data?: any): any;
|
|
12093
|
-
}
|
|
12094
|
-
export interface IMeasurementFormListDto {
|
|
12095
|
-
id: string;
|
|
12096
|
-
schemaId: string;
|
|
12097
|
-
versionId: number;
|
|
12098
|
-
customerId?: string | null;
|
|
12099
|
-
customerName?: string | null;
|
|
12100
|
-
partNumber?: string | null;
|
|
12101
|
-
partRevision?: string | null;
|
|
12102
|
-
partName?: string | null;
|
|
12103
|
-
drawing: string;
|
|
12104
|
-
drawingRevision?: string | null;
|
|
12105
|
-
createdBy: string;
|
|
12106
|
-
created: Date;
|
|
12107
|
-
status: MeasurementFormStatus;
|
|
12108
|
-
source: MeasurementFormSource;
|
|
12109
|
-
}
|
|
12110
|
-
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
12111
|
-
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
12112
|
-
export declare class ListMeasurementFormSchemasRequest implements IListMeasurementFormSchemasRequest {
|
|
12113
|
-
pageSize?: number | null;
|
|
12114
|
-
customerId?: string | null;
|
|
12115
|
-
customerName?: string | null;
|
|
12116
|
-
partName?: string | null;
|
|
12117
|
-
partNumber?: string | null;
|
|
12118
|
-
partRevision?: string | null;
|
|
12119
|
-
drawing?: string | null;
|
|
12120
|
-
drawingRevision?: string | null;
|
|
12121
|
-
filter?: string | null;
|
|
12122
|
-
continuationToken?: string | null;
|
|
12123
|
-
constructor(data?: IListMeasurementFormSchemasRequest);
|
|
12124
|
-
init(_data?: any): void;
|
|
12125
|
-
static fromJS(data: any): ListMeasurementFormSchemasRequest;
|
|
12126
|
-
toJSON(data?: any): any;
|
|
12127
|
-
}
|
|
12128
|
-
export interface IListMeasurementFormSchemasRequest {
|
|
12129
|
-
pageSize?: number | null;
|
|
12130
|
-
customerId?: string | null;
|
|
12131
|
-
customerName?: string | null;
|
|
12132
|
-
partName?: string | null;
|
|
12133
|
-
partNumber?: string | null;
|
|
12134
|
-
partRevision?: string | null;
|
|
12135
|
-
drawing?: string | null;
|
|
12136
|
-
drawingRevision?: string | null;
|
|
12137
|
-
filter?: string | null;
|
|
12138
|
-
continuationToken?: string | null;
|
|
12139
|
-
}
|
|
12140
12069
|
export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
12141
12070
|
id: string;
|
|
12142
12071
|
versionId: number;
|
|
@@ -12197,6 +12126,8 @@ export interface IMeasurementFormSchemaDto {
|
|
|
12197
12126
|
groupedElements: MeasurementFormGroupedElementDto[];
|
|
12198
12127
|
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
12199
12128
|
}
|
|
12129
|
+
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
12130
|
+
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
12200
12131
|
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
12201
12132
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
12202
12133
|
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
@@ -12595,6 +12526,54 @@ export interface IMeasurementFormImportStatusDto {
|
|
|
12595
12526
|
errorMessage: string;
|
|
12596
12527
|
timestamp: Date;
|
|
12597
12528
|
}
|
|
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
|
+
}
|
|
12598
12577
|
export declare class ListLinkableMeasurementFormSchemasRequest implements IListLinkableMeasurementFormSchemasRequest {
|
|
12599
12578
|
schemaId: string;
|
|
12600
12579
|
pageSize?: number | null;
|
|
@@ -13136,6 +13115,34 @@ export interface IListMeasurementFormSchemasWithHistoryRequest {
|
|
|
13136
13115
|
version?: number | null;
|
|
13137
13116
|
continuationToken?: string | null;
|
|
13138
13117
|
}
|
|
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
|
+
}
|
|
13139
13146
|
export declare class PagedResultOfMeasurementFormInstanceOverviewDto implements IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13140
13147
|
results: MeasurementFormInstanceOverviewDto[];
|
|
13141
13148
|
continuationToken?: string | null;
|