@ignos/api-client 20260814.223.1-alpha → 20260814.224.1-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.
@@ -2886,7 +2886,7 @@ export interface IInspectSchemaCreatorClient {
2886
2886
  schema for every viewer until it completes. If one is already in
2887
2887
  progress, returns that instead of starting a second one.
2888
2888
  */
2889
- requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto>;
2889
+ requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
2890
2890
  /**
2891
2891
  * Stamps the creator state's balloons onto the schema's drawing PDF and
2892
2892
  returns a temporary download link.
@@ -2897,7 +2897,7 @@ export interface IInspectSchemaCreatorClient {
2897
2897
  SchemaCreatorSnipResolved SignalR notification.
2898
2898
  * @param image (optional)
2899
2899
  */
2900
- resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2900
+ requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2901
2901
  }
2902
2902
  export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
2903
2903
  private http;
@@ -2920,8 +2920,8 @@ export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implem
2920
2920
  schema for every viewer until it completes. If one is already in
2921
2921
  progress, returns that instead of starting a second one.
2922
2922
  */
2923
- requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto>;
2924
- protected processRequestFullDrawingParse(response: Response): Promise<SchemaCreatorStateDto>;
2923
+ requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
2924
+ protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto>;
2925
2925
  /**
2926
2926
  * Stamps the creator state's balloons onto the schema's drawing PDF and
2927
2927
  returns a temporary download link.
@@ -2933,8 +2933,8 @@ export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implem
2933
2933
  SchemaCreatorSnipResolved SignalR notification.
2934
2934
  * @param image (optional)
2935
2935
  */
2936
- resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2937
- protected processResolveSchemaCreatorSnip(response: Response): Promise<FileResponse>;
2936
+ requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2937
+ protected processRequestSchemaCreatorSnipParse(response: Response): Promise<FileResponse>;
2938
2938
  }
2939
2939
  export interface IMeasurementFormSchemasAdminClient {
2940
2940
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
@@ -9179,7 +9179,7 @@ export interface ImaSpecificationLiteDto {
9179
9179
  export interface SchemaCreatorStateDto {
9180
9180
  settings: SchemaCreatorSettingsDto;
9181
9181
  elements: SchemaCreatorElementDto[];
9182
- fullParse?: SchemaCreatorFullParseStatusDto | null;
9182
+ documentParse?: SchemaCreatorDocumentParseStatusDto | null;
9183
9183
  }
9184
9184
  export interface SchemaCreatorSettingsDto {
9185
9185
  unit?: UnitOfMeasureDto;
@@ -9253,7 +9253,7 @@ export interface SchemaCreatorParseAttemptDto {
9253
9253
  errorMessage?: string | null;
9254
9254
  }
9255
9255
  export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
9256
- export interface SchemaCreatorFullParseStatusDto {
9256
+ export interface SchemaCreatorDocumentParseStatusDto {
9257
9257
  inProgress: boolean;
9258
9258
  attempt?: SchemaCreatorParseAttemptDto | null;
9259
9259
  }
@@ -23882,8 +23882,8 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase {
23882
23882
  schema for every viewer until it completes. If one is already in
23883
23883
  progress, returns that instead of starting a second one.
23884
23884
  */
23885
- requestFullDrawingParse(id) {
23886
- let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/fullparse";
23885
+ requestSchemaCreatorDocumentParse(id) {
23886
+ let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/parse-document";
23887
23887
  if (id === undefined || id === null)
23888
23888
  throw new globalThis.Error("The parameter 'id' must be defined.");
23889
23889
  url_ = url_.replace("{id}", encodeURIComponent("" + id));
@@ -23897,10 +23897,10 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase {
23897
23897
  return this.transformOptions(options_).then(transformedOptions_ => {
23898
23898
  return this.http.fetch(url_, transformedOptions_);
23899
23899
  }).then((_response) => {
23900
- return this.processRequestFullDrawingParse(_response);
23900
+ return this.processRequestSchemaCreatorDocumentParse(_response);
23901
23901
  });
23902
23902
  }
23903
- processRequestFullDrawingParse(response) {
23903
+ processRequestSchemaCreatorDocumentParse(response) {
23904
23904
  const status = response.status;
23905
23905
  let _headers = {};
23906
23906
  if (response.headers && response.headers.forEach) {
@@ -23969,8 +23969,8 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase {
23969
23969
  SchemaCreatorSnipResolved SignalR notification.
23970
23970
  * @param image (optional)
23971
23971
  */
23972
- resolveSchemaCreatorSnip(id, elementId, image) {
23973
- let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/elements/{elementId}/resolvesnip";
23972
+ requestSchemaCreatorSnipParse(id, elementId, image) {
23973
+ let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/elements/{elementId}/parse-snip";
23974
23974
  if (id === undefined || id === null)
23975
23975
  throw new globalThis.Error("The parameter 'id' must be defined.");
23976
23976
  url_ = url_.replace("{id}", encodeURIComponent("" + id));
@@ -23991,10 +23991,10 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase {
23991
23991
  return this.transformOptions(options_).then(transformedOptions_ => {
23992
23992
  return this.http.fetch(url_, transformedOptions_);
23993
23993
  }).then((_response) => {
23994
- return this.processResolveSchemaCreatorSnip(_response);
23994
+ return this.processRequestSchemaCreatorSnipParse(_response);
23995
23995
  });
23996
23996
  }
23997
- processResolveSchemaCreatorSnip(response) {
23997
+ processRequestSchemaCreatorSnipParse(response) {
23998
23998
  const status = response.status;
23999
23999
  let _headers = {};
24000
24000
  if (response.headers && response.headers.forEach) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260814.223.1-alpha",
3
+ "version": "20260814.224.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -25411,7 +25411,7 @@ export interface IInspectSchemaCreatorClient {
25411
25411
  schema for every viewer until it completes. If one is already in
25412
25412
  progress, returns that instead of starting a second one.
25413
25413
  */
25414
- requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto>;
25414
+ requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
25415
25415
 
25416
25416
  /**
25417
25417
  * Stamps the creator state's balloons onto the schema's drawing PDF and
@@ -25424,7 +25424,7 @@ export interface IInspectSchemaCreatorClient {
25424
25424
  SchemaCreatorSnipResolved SignalR notification.
25425
25425
  * @param image (optional)
25426
25426
  */
25427
- resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
25427
+ requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
25428
25428
  }
25429
25429
 
25430
25430
  export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
@@ -25574,8 +25574,8 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IIn
25574
25574
  schema for every viewer until it completes. If one is already in
25575
25575
  progress, returns that instead of starting a second one.
25576
25576
  */
25577
- requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto> {
25578
- let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/fullparse";
25577
+ requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto> {
25578
+ let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/parse-document";
25579
25579
  if (id === undefined || id === null)
25580
25580
  throw new globalThis.Error("The parameter 'id' must be defined.");
25581
25581
  url_ = url_.replace("{id}", encodeURIComponent("" + id));
@@ -25591,11 +25591,11 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IIn
25591
25591
  return this.transformOptions(options_).then(transformedOptions_ => {
25592
25592
  return this.http.fetch(url_, transformedOptions_);
25593
25593
  }).then((_response: Response) => {
25594
- return this.processRequestFullDrawingParse(_response);
25594
+ return this.processRequestSchemaCreatorDocumentParse(_response);
25595
25595
  });
25596
25596
  }
25597
25597
 
25598
- protected processRequestFullDrawingParse(response: Response): Promise<SchemaCreatorStateDto> {
25598
+ protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto> {
25599
25599
  const status = response.status;
25600
25600
  let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
25601
25601
  if (status === 200) {
@@ -25659,8 +25659,8 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IIn
25659
25659
  SchemaCreatorSnipResolved SignalR notification.
25660
25660
  * @param image (optional)
25661
25661
  */
25662
- resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse> {
25663
- let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/elements/{elementId}/resolvesnip";
25662
+ requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse> {
25663
+ let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/elements/{elementId}/parse-snip";
25664
25664
  if (id === undefined || id === null)
25665
25665
  throw new globalThis.Error("The parameter 'id' must be defined.");
25666
25666
  url_ = url_.replace("{id}", encodeURIComponent("" + id));
@@ -25684,11 +25684,11 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IIn
25684
25684
  return this.transformOptions(options_).then(transformedOptions_ => {
25685
25685
  return this.http.fetch(url_, transformedOptions_);
25686
25686
  }).then((_response: Response) => {
25687
- return this.processResolveSchemaCreatorSnip(_response);
25687
+ return this.processRequestSchemaCreatorSnipParse(_response);
25688
25688
  });
25689
25689
  }
25690
25690
 
25691
- protected processResolveSchemaCreatorSnip(response: Response): Promise<FileResponse> {
25691
+ protected processRequestSchemaCreatorSnipParse(response: Response): Promise<FileResponse> {
25692
25692
  const status = response.status;
25693
25693
  let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
25694
25694
  if (status === 200 || status === 206) {
@@ -37983,7 +37983,7 @@ export interface ImaSpecificationLiteDto {
37983
37983
  export interface SchemaCreatorStateDto {
37984
37984
  settings: SchemaCreatorSettingsDto;
37985
37985
  elements: SchemaCreatorElementDto[];
37986
- fullParse?: SchemaCreatorFullParseStatusDto | null;
37986
+ documentParse?: SchemaCreatorDocumentParseStatusDto | null;
37987
37987
  }
37988
37988
 
37989
37989
  export interface SchemaCreatorSettingsDto {
@@ -38073,7 +38073,7 @@ export interface SchemaCreatorParseAttemptDto {
38073
38073
 
38074
38074
  export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
38075
38075
 
38076
- export interface SchemaCreatorFullParseStatusDto {
38076
+ export interface SchemaCreatorDocumentParseStatusDto {
38077
38077
  inProgress: boolean;
38078
38078
  attempt?: SchemaCreatorParseAttemptDto | null;
38079
38079
  }