@ignos/api-client 20250805.0.12267-alpha → 20250805.0.12270-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
|
@@ -14429,6 +14429,7 @@ export interface ICreateWorkOrderMapping {
|
|
|
14429
14429
|
newWorkOrderId: string;
|
|
14430
14430
|
}
|
|
14431
14431
|
export declare class WorkorderDiscussionMessageDto implements IWorkorderDiscussionMessageDto {
|
|
14432
|
+
id?: string;
|
|
14432
14433
|
workorderId?: string;
|
|
14433
14434
|
companyId?: string;
|
|
14434
14435
|
content?: string;
|
|
@@ -14444,6 +14445,7 @@ export declare class WorkorderDiscussionMessageDto implements IWorkorderDiscussi
|
|
|
14444
14445
|
toJSON(data?: any): any;
|
|
14445
14446
|
}
|
|
14446
14447
|
export interface IWorkorderDiscussionMessageDto {
|
|
14448
|
+
id?: string;
|
|
14447
14449
|
workorderId?: string;
|
|
14448
14450
|
companyId?: string;
|
|
14449
14451
|
content?: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -46875,6 +46875,7 @@ export class WorkorderDiscussionMessageDto {
|
|
|
46875
46875
|
}
|
|
46876
46876
|
init(_data) {
|
|
46877
46877
|
if (_data) {
|
|
46878
|
+
this.id = _data["id"];
|
|
46878
46879
|
this.workorderId = _data["workorderId"];
|
|
46879
46880
|
this.companyId = _data["companyId"];
|
|
46880
46881
|
this.content = _data["content"];
|
|
@@ -46894,6 +46895,7 @@ export class WorkorderDiscussionMessageDto {
|
|
|
46894
46895
|
}
|
|
46895
46896
|
toJSON(data) {
|
|
46896
46897
|
data = typeof data === 'object' ? data : {};
|
|
46898
|
+
data["id"] = this.id;
|
|
46897
46899
|
data["workorderId"] = this.workorderId;
|
|
46898
46900
|
data["companyId"] = this.companyId;
|
|
46899
46901
|
data["content"] = this.content;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -60121,6 +60121,7 @@ export interface ICreateWorkOrderMapping {
|
|
|
60121
60121
|
}
|
|
60122
60122
|
|
|
60123
60123
|
export class WorkorderDiscussionMessageDto implements IWorkorderDiscussionMessageDto {
|
|
60124
|
+
id?: string;
|
|
60124
60125
|
workorderId?: string;
|
|
60125
60126
|
companyId?: string;
|
|
60126
60127
|
content?: string;
|
|
@@ -60142,6 +60143,7 @@ export class WorkorderDiscussionMessageDto implements IWorkorderDiscussionMessag
|
|
|
60142
60143
|
|
|
60143
60144
|
init(_data?: any) {
|
|
60144
60145
|
if (_data) {
|
|
60146
|
+
this.id = _data["id"];
|
|
60145
60147
|
this.workorderId = _data["workorderId"];
|
|
60146
60148
|
this.companyId = _data["companyId"];
|
|
60147
60149
|
this.content = _data["content"];
|
|
@@ -60163,6 +60165,7 @@ export class WorkorderDiscussionMessageDto implements IWorkorderDiscussionMessag
|
|
|
60163
60165
|
|
|
60164
60166
|
toJSON(data?: any) {
|
|
60165
60167
|
data = typeof data === 'object' ? data : {};
|
|
60168
|
+
data["id"] = this.id;
|
|
60166
60169
|
data["workorderId"] = this.workorderId;
|
|
60167
60170
|
data["companyId"] = this.companyId;
|
|
60168
60171
|
data["content"] = this.content;
|
|
@@ -60177,6 +60180,7 @@ export class WorkorderDiscussionMessageDto implements IWorkorderDiscussionMessag
|
|
|
60177
60180
|
}
|
|
60178
60181
|
|
|
60179
60182
|
export interface IWorkorderDiscussionMessageDto {
|
|
60183
|
+
id?: string;
|
|
60180
60184
|
workorderId?: string;
|
|
60181
60185
|
companyId?: string;
|
|
60182
60186
|
content?: string;
|