@ignos/api-client 20251103.0.13097 → 20251105.0.13136-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 +115 -92
- package/lib/ignosportal-api.js +463 -415
- package/package.json +1 -1
- package/src/ignosportal-api.ts +437 -370
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -276,6 +276,8 @@ 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>;
|
|
279
281
|
}
|
|
280
282
|
export declare class UserAppSettingsClient extends AuthorizedApiBase implements IUserAppSettingsClient {
|
|
281
283
|
private http;
|
|
@@ -292,6 +294,10 @@ export declare class UserAppSettingsClient extends AuthorizedApiBase implements
|
|
|
292
294
|
protected processGetMoveUserSettings(response: Response): Promise<MoveAppSettings>;
|
|
293
295
|
setMoveUserSettings(settings: MoveAppSettings): Promise<void>;
|
|
294
296
|
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>;
|
|
295
301
|
}
|
|
296
302
|
export interface IUploadClient {
|
|
297
303
|
createUploadInfo(): Promise<UploadInfoDto>;
|
|
@@ -2128,14 +2134,11 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2128
2134
|
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2129
2135
|
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2130
2136
|
}
|
|
2131
|
-
export interface
|
|
2132
|
-
|
|
2137
|
+
export interface IMeasurementFormSchemasAdminClient {
|
|
2138
|
+
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2133
2139
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2134
|
-
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2135
|
-
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2136
2140
|
updateMeasurementFormSchema(id: string, request: UpdateMeasurementFormSchemaRequest): Promise<MeasurementFormSchemaDto>;
|
|
2137
2141
|
deleteMeasurementForm(id: string): Promise<void>;
|
|
2138
|
-
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2139
2142
|
copyMeasurementFormSchema(id: string, request: CopyMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2140
2143
|
updateSchemaGroupedElements(id: string, request: UpdateSchemaGroupedElementsRequest): Promise<MeasurementFormSchemaDto>;
|
|
2141
2144
|
updateSchemaRow(id: string, request: UpdateSchemaGroupedElementRowDto): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2200,27 +2203,21 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2200
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>;
|
|
2201
2204
|
postListMeasurementFormSchemasWithHistory(request: ListMeasurementFormSchemasWithHistoryRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2202
2205
|
}
|
|
2203
|
-
export declare class
|
|
2206
|
+
export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase implements IMeasurementFormSchemasAdminClient {
|
|
2204
2207
|
private http;
|
|
2205
2208
|
private baseUrl;
|
|
2206
2209
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2207
2210
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2208
2211
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2209
2212
|
});
|
|
2210
|
-
|
|
2211
|
-
protected
|
|
2213
|
+
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2214
|
+
protected processGetArchivedMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2212
2215
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2213
2216
|
protected processCreateMeasurementForm(response: Response): Promise<MeasurementFormDto>;
|
|
2214
|
-
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2215
|
-
protected processPostListMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2216
|
-
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2217
|
-
protected processGetMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2218
2217
|
updateMeasurementFormSchema(id: string, request: UpdateMeasurementFormSchemaRequest): Promise<MeasurementFormSchemaDto>;
|
|
2219
2218
|
protected processUpdateMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2220
2219
|
deleteMeasurementForm(id: string): Promise<void>;
|
|
2221
2220
|
protected processDeleteMeasurementForm(response: Response): Promise<void>;
|
|
2222
|
-
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2223
|
-
protected processGetArchivedMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2224
2221
|
copyMeasurementFormSchema(id: string, request: CopyMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2225
2222
|
protected processCopyMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
|
|
2226
2223
|
updateSchemaGroupedElements(id: string, request: UpdateSchemaGroupedElementsRequest): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2333,6 +2330,22 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2333
2330
|
postListMeasurementFormSchemasWithHistory(request: ListMeasurementFormSchemasWithHistoryRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2334
2331
|
protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2335
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
|
+
}
|
|
2336
2349
|
export interface IMeasurementFormSettingsClient {
|
|
2337
2350
|
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2338
2351
|
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
@@ -3412,6 +3425,16 @@ export interface IMoveAppSettings {
|
|
|
3412
3425
|
engageMoveAutoPrompt?: boolean;
|
|
3413
3426
|
defaultFromSuggestionAutoFillLocationId?: string | null;
|
|
3414
3427
|
}
|
|
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
|
+
}
|
|
3415
3438
|
export declare class UploadInfoDto implements IUploadInfoDto {
|
|
3416
3439
|
baseUrl?: string | null;
|
|
3417
3440
|
key?: string | null;
|
|
@@ -12043,84 +12066,6 @@ export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
|
12043
12066
|
}
|
|
12044
12067
|
export interface ICreateWeldingIotConfig {
|
|
12045
12068
|
}
|
|
12046
|
-
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
12047
|
-
results: MeasurementFormListDto[];
|
|
12048
|
-
continuationToken?: string | null;
|
|
12049
|
-
constructor(data?: IPagedResultOfMeasurementFormListDto);
|
|
12050
|
-
init(_data?: any): void;
|
|
12051
|
-
static fromJS(data: any): PagedResultOfMeasurementFormListDto;
|
|
12052
|
-
toJSON(data?: any): any;
|
|
12053
|
-
}
|
|
12054
|
-
export interface IPagedResultOfMeasurementFormListDto {
|
|
12055
|
-
results: MeasurementFormListDto[];
|
|
12056
|
-
continuationToken?: string | null;
|
|
12057
|
-
}
|
|
12058
|
-
export declare class MeasurementFormListDto implements IMeasurementFormListDto {
|
|
12059
|
-
id: string;
|
|
12060
|
-
schemaId: string;
|
|
12061
|
-
versionId: number;
|
|
12062
|
-
customerId?: string | null;
|
|
12063
|
-
customerName?: string | null;
|
|
12064
|
-
partNumber?: string | null;
|
|
12065
|
-
partRevision?: string | null;
|
|
12066
|
-
partName?: string | null;
|
|
12067
|
-
drawing: string;
|
|
12068
|
-
drawingRevision?: string | null;
|
|
12069
|
-
createdBy: string;
|
|
12070
|
-
created: Date;
|
|
12071
|
-
status: MeasurementFormStatus;
|
|
12072
|
-
source: MeasurementFormSource;
|
|
12073
|
-
constructor(data?: IMeasurementFormListDto);
|
|
12074
|
-
init(_data?: any): void;
|
|
12075
|
-
static fromJS(data: any): MeasurementFormListDto;
|
|
12076
|
-
toJSON(data?: any): any;
|
|
12077
|
-
}
|
|
12078
|
-
export interface IMeasurementFormListDto {
|
|
12079
|
-
id: string;
|
|
12080
|
-
schemaId: string;
|
|
12081
|
-
versionId: number;
|
|
12082
|
-
customerId?: string | null;
|
|
12083
|
-
customerName?: string | null;
|
|
12084
|
-
partNumber?: string | null;
|
|
12085
|
-
partRevision?: string | null;
|
|
12086
|
-
partName?: string | null;
|
|
12087
|
-
drawing: string;
|
|
12088
|
-
drawingRevision?: string | null;
|
|
12089
|
-
createdBy: string;
|
|
12090
|
-
created: Date;
|
|
12091
|
-
status: MeasurementFormStatus;
|
|
12092
|
-
source: MeasurementFormSource;
|
|
12093
|
-
}
|
|
12094
|
-
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
12095
|
-
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
12096
|
-
export declare class ListMeasurementFormSchemasRequest implements IListMeasurementFormSchemasRequest {
|
|
12097
|
-
pageSize?: number | null;
|
|
12098
|
-
customerId?: string | null;
|
|
12099
|
-
customerName?: string | null;
|
|
12100
|
-
partName?: string | null;
|
|
12101
|
-
partNumber?: string | null;
|
|
12102
|
-
partRevision?: string | null;
|
|
12103
|
-
drawing?: string | null;
|
|
12104
|
-
drawingRevision?: string | null;
|
|
12105
|
-
filter?: string | null;
|
|
12106
|
-
continuationToken?: string | null;
|
|
12107
|
-
constructor(data?: IListMeasurementFormSchemasRequest);
|
|
12108
|
-
init(_data?: any): void;
|
|
12109
|
-
static fromJS(data: any): ListMeasurementFormSchemasRequest;
|
|
12110
|
-
toJSON(data?: any): any;
|
|
12111
|
-
}
|
|
12112
|
-
export interface 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
|
-
}
|
|
12124
12069
|
export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
12125
12070
|
id: string;
|
|
12126
12071
|
versionId: number;
|
|
@@ -12181,6 +12126,8 @@ export interface IMeasurementFormSchemaDto {
|
|
|
12181
12126
|
groupedElements: MeasurementFormGroupedElementDto[];
|
|
12182
12127
|
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
12183
12128
|
}
|
|
12129
|
+
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
12130
|
+
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
12184
12131
|
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
12185
12132
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
12186
12133
|
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
@@ -12579,6 +12526,54 @@ export interface IMeasurementFormImportStatusDto {
|
|
|
12579
12526
|
errorMessage: string;
|
|
12580
12527
|
timestamp: Date;
|
|
12581
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
|
+
}
|
|
12582
12577
|
export declare class ListLinkableMeasurementFormSchemasRequest implements IListLinkableMeasurementFormSchemasRequest {
|
|
12583
12578
|
schemaId: string;
|
|
12584
12579
|
pageSize?: number | null;
|
|
@@ -13120,6 +13115,34 @@ export interface IListMeasurementFormSchemasWithHistoryRequest {
|
|
|
13120
13115
|
version?: number | null;
|
|
13121
13116
|
continuationToken?: string | null;
|
|
13122
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
|
+
}
|
|
13123
13146
|
export declare class PagedResultOfMeasurementFormInstanceOverviewDto implements IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13124
13147
|
results: MeasurementFormInstanceOverviewDto[];
|
|
13125
13148
|
continuationToken?: string | null;
|