@ignos/api-client 20250728.0.12218-alpha → 20250729.0.12229-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
CHANGED
|
@@ -14455,6 +14455,7 @@ export declare class WorkorderDiscussionMessage extends TableEntityBase implemen
|
|
|
14455
14455
|
senderUpn?: string;
|
|
14456
14456
|
senderName?: string;
|
|
14457
14457
|
operationId?: string | null;
|
|
14458
|
+
operationName?: string | null;
|
|
14458
14459
|
resourceId?: string | null;
|
|
14459
14460
|
constructor(data?: IWorkorderDiscussionMessage);
|
|
14460
14461
|
init(_data?: any): void;
|
|
@@ -14466,6 +14467,7 @@ export interface IWorkorderDiscussionMessage extends ITableEntityBase {
|
|
|
14466
14467
|
senderUpn?: string;
|
|
14467
14468
|
senderName?: string;
|
|
14468
14469
|
operationId?: string | null;
|
|
14470
|
+
operationName?: string | null;
|
|
14469
14471
|
resourceId?: string | null;
|
|
14470
14472
|
}
|
|
14471
14473
|
/** Represents an HTTP ETag. */
|
|
@@ -14495,6 +14497,7 @@ export interface IAuditInfo {
|
|
|
14495
14497
|
export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
14496
14498
|
message?: string;
|
|
14497
14499
|
operationId?: string | null;
|
|
14500
|
+
operationName?: string | null;
|
|
14498
14501
|
resourceId?: string | null;
|
|
14499
14502
|
constructor(data?: IAddDiscussionMessageRequest);
|
|
14500
14503
|
init(_data?: any): void;
|
|
@@ -14504,6 +14507,7 @@ export declare class AddDiscussionMessageRequest implements IAddDiscussionMessag
|
|
|
14504
14507
|
export interface IAddDiscussionMessageRequest {
|
|
14505
14508
|
message?: string;
|
|
14506
14509
|
operationId?: string | null;
|
|
14510
|
+
operationName?: string | null;
|
|
14507
14511
|
resourceId?: string | null;
|
|
14508
14512
|
}
|
|
14509
14513
|
export interface FileParameter {
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -46838,6 +46838,7 @@ export class WorkorderDiscussionMessage extends TableEntityBase {
|
|
|
46838
46838
|
this.senderUpn = _data["senderUpn"];
|
|
46839
46839
|
this.senderName = _data["senderName"];
|
|
46840
46840
|
this.operationId = _data["operationId"];
|
|
46841
|
+
this.operationName = _data["operationName"];
|
|
46841
46842
|
this.resourceId = _data["resourceId"];
|
|
46842
46843
|
}
|
|
46843
46844
|
}
|
|
@@ -46853,6 +46854,7 @@ export class WorkorderDiscussionMessage extends TableEntityBase {
|
|
|
46853
46854
|
data["senderUpn"] = this.senderUpn;
|
|
46854
46855
|
data["senderName"] = this.senderName;
|
|
46855
46856
|
data["operationId"] = this.operationId;
|
|
46857
|
+
data["operationName"] = this.operationName;
|
|
46856
46858
|
data["resourceId"] = this.resourceId;
|
|
46857
46859
|
super.toJSON(data);
|
|
46858
46860
|
return data;
|
|
@@ -46924,6 +46926,7 @@ export class AddDiscussionMessageRequest {
|
|
|
46924
46926
|
if (_data) {
|
|
46925
46927
|
this.message = _data["message"];
|
|
46926
46928
|
this.operationId = _data["operationId"];
|
|
46929
|
+
this.operationName = _data["operationName"];
|
|
46927
46930
|
this.resourceId = _data["resourceId"];
|
|
46928
46931
|
}
|
|
46929
46932
|
}
|
|
@@ -46937,6 +46940,7 @@ export class AddDiscussionMessageRequest {
|
|
|
46937
46940
|
data = typeof data === 'object' ? data : {};
|
|
46938
46941
|
data["message"] = this.message;
|
|
46939
46942
|
data["operationId"] = this.operationId;
|
|
46943
|
+
data["operationName"] = this.operationName;
|
|
46940
46944
|
data["resourceId"] = this.resourceId;
|
|
46941
46945
|
return data;
|
|
46942
46946
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -60113,6 +60113,7 @@ export class WorkorderDiscussionMessage extends TableEntityBase implements IWork
|
|
|
60113
60113
|
senderUpn?: string;
|
|
60114
60114
|
senderName?: string;
|
|
60115
60115
|
operationId?: string | null;
|
|
60116
|
+
operationName?: string | null;
|
|
60116
60117
|
resourceId?: string | null;
|
|
60117
60118
|
|
|
60118
60119
|
constructor(data?: IWorkorderDiscussionMessage) {
|
|
@@ -60126,6 +60127,7 @@ export class WorkorderDiscussionMessage extends TableEntityBase implements IWork
|
|
|
60126
60127
|
this.senderUpn = _data["senderUpn"];
|
|
60127
60128
|
this.senderName = _data["senderName"];
|
|
60128
60129
|
this.operationId = _data["operationId"];
|
|
60130
|
+
this.operationName = _data["operationName"];
|
|
60129
60131
|
this.resourceId = _data["resourceId"];
|
|
60130
60132
|
}
|
|
60131
60133
|
}
|
|
@@ -60143,6 +60145,7 @@ export class WorkorderDiscussionMessage extends TableEntityBase implements IWork
|
|
|
60143
60145
|
data["senderUpn"] = this.senderUpn;
|
|
60144
60146
|
data["senderName"] = this.senderName;
|
|
60145
60147
|
data["operationId"] = this.operationId;
|
|
60148
|
+
data["operationName"] = this.operationName;
|
|
60146
60149
|
data["resourceId"] = this.resourceId;
|
|
60147
60150
|
super.toJSON(data);
|
|
60148
60151
|
return data;
|
|
@@ -60154,6 +60157,7 @@ export interface IWorkorderDiscussionMessage extends ITableEntityBase {
|
|
|
60154
60157
|
senderUpn?: string;
|
|
60155
60158
|
senderName?: string;
|
|
60156
60159
|
operationId?: string | null;
|
|
60160
|
+
operationName?: string | null;
|
|
60157
60161
|
resourceId?: string | null;
|
|
60158
60162
|
}
|
|
60159
60163
|
|
|
@@ -60236,6 +60240,7 @@ export interface IAuditInfo {
|
|
|
60236
60240
|
export class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
60237
60241
|
message?: string;
|
|
60238
60242
|
operationId?: string | null;
|
|
60243
|
+
operationName?: string | null;
|
|
60239
60244
|
resourceId?: string | null;
|
|
60240
60245
|
|
|
60241
60246
|
constructor(data?: IAddDiscussionMessageRequest) {
|
|
@@ -60251,6 +60256,7 @@ export class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest
|
|
|
60251
60256
|
if (_data) {
|
|
60252
60257
|
this.message = _data["message"];
|
|
60253
60258
|
this.operationId = _data["operationId"];
|
|
60259
|
+
this.operationName = _data["operationName"];
|
|
60254
60260
|
this.resourceId = _data["resourceId"];
|
|
60255
60261
|
}
|
|
60256
60262
|
}
|
|
@@ -60266,6 +60272,7 @@ export class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest
|
|
|
60266
60272
|
data = typeof data === 'object' ? data : {};
|
|
60267
60273
|
data["message"] = this.message;
|
|
60268
60274
|
data["operationId"] = this.operationId;
|
|
60275
|
+
data["operationName"] = this.operationName;
|
|
60269
60276
|
data["resourceId"] = this.resourceId;
|
|
60270
60277
|
return data;
|
|
60271
60278
|
}
|
|
@@ -60274,6 +60281,7 @@ export class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest
|
|
|
60274
60281
|
export interface IAddDiscussionMessageRequest {
|
|
60275
60282
|
message?: string;
|
|
60276
60283
|
operationId?: string | null;
|
|
60284
|
+
operationName?: string | null;
|
|
60277
60285
|
resourceId?: string | null;
|
|
60278
60286
|
}
|
|
60279
60287
|
|