@ignos/api-client 20251103.0.13086-alpha → 20251104.0.13119
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
|
@@ -3419,14 +3419,14 @@ export interface IMoveAppSettings {
|
|
|
3419
3419
|
defaultFromSuggestionAutoFillLocationId?: string | null;
|
|
3420
3420
|
}
|
|
3421
3421
|
export declare class EngageAppSettings implements IEngageAppSettings {
|
|
3422
|
-
|
|
3422
|
+
myResourceGroup?: string;
|
|
3423
3423
|
constructor(data?: IEngageAppSettings);
|
|
3424
3424
|
init(_data?: any): void;
|
|
3425
3425
|
static fromJS(data: any): EngageAppSettings;
|
|
3426
3426
|
toJSON(data?: any): any;
|
|
3427
3427
|
}
|
|
3428
3428
|
export interface IEngageAppSettings {
|
|
3429
|
-
|
|
3429
|
+
myResourceGroup?: string;
|
|
3430
3430
|
}
|
|
3431
3431
|
export declare class UploadInfoDto implements IUploadInfoDto {
|
|
3432
3432
|
baseUrl?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -24989,7 +24989,7 @@ export class EngageAppSettings {
|
|
|
24989
24989
|
}
|
|
24990
24990
|
init(_data) {
|
|
24991
24991
|
if (_data) {
|
|
24992
|
-
this.
|
|
24992
|
+
this.myResourceGroup = _data["myResourceGroup"];
|
|
24993
24993
|
}
|
|
24994
24994
|
}
|
|
24995
24995
|
static fromJS(data) {
|
|
@@ -25000,7 +25000,7 @@ export class EngageAppSettings {
|
|
|
25000
25000
|
}
|
|
25001
25001
|
toJSON(data) {
|
|
25002
25002
|
data = typeof data === 'object' ? data : {};
|
|
25003
|
-
data["
|
|
25003
|
+
data["myResourceGroup"] = this.myResourceGroup;
|
|
25004
25004
|
return data;
|
|
25005
25005
|
}
|
|
25006
25006
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -27139,7 +27139,7 @@ export interface IMoveAppSettings {
|
|
|
27139
27139
|
}
|
|
27140
27140
|
|
|
27141
27141
|
export class EngageAppSettings implements IEngageAppSettings {
|
|
27142
|
-
|
|
27142
|
+
myResourceGroup?: string;
|
|
27143
27143
|
|
|
27144
27144
|
constructor(data?: IEngageAppSettings) {
|
|
27145
27145
|
if (data) {
|
|
@@ -27152,7 +27152,7 @@ export class EngageAppSettings implements IEngageAppSettings {
|
|
|
27152
27152
|
|
|
27153
27153
|
init(_data?: any) {
|
|
27154
27154
|
if (_data) {
|
|
27155
|
-
this.
|
|
27155
|
+
this.myResourceGroup = _data["myResourceGroup"];
|
|
27156
27156
|
}
|
|
27157
27157
|
}
|
|
27158
27158
|
|
|
@@ -27165,13 +27165,13 @@ export class EngageAppSettings implements IEngageAppSettings {
|
|
|
27165
27165
|
|
|
27166
27166
|
toJSON(data?: any) {
|
|
27167
27167
|
data = typeof data === 'object' ? data : {};
|
|
27168
|
-
data["
|
|
27168
|
+
data["myResourceGroup"] = this.myResourceGroup;
|
|
27169
27169
|
return data;
|
|
27170
27170
|
}
|
|
27171
27171
|
}
|
|
27172
27172
|
|
|
27173
27173
|
export interface IEngageAppSettings {
|
|
27174
|
-
|
|
27174
|
+
myResourceGroup?: string;
|
|
27175
27175
|
}
|
|
27176
27176
|
|
|
27177
27177
|
export class UploadInfoDto implements IUploadInfoDto {
|