@camstack/system 1.2.37 → 1.2.39
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.
|
@@ -16,7 +16,7 @@ export declare class IntegrationRegistry implements IIntegrationRegistry {
|
|
|
16
16
|
* mutation one API call away.
|
|
17
17
|
*/
|
|
18
18
|
static isFixed(integration: {
|
|
19
|
-
readonly info: Readonly<Record<string, unknown
|
|
19
|
+
readonly info: Readonly<Record<string, unknown>> | null;
|
|
20
20
|
}): boolean;
|
|
21
21
|
deleteIntegration(id: string): Promise<boolean>;
|
|
22
22
|
getIntegrationSettings(integrationId: string): Promise<Record<string, unknown>>;
|
package/dist/index.js
CHANGED
|
@@ -2419,7 +2419,7 @@ var IntegrationRegistry = class IntegrationRegistry {
|
|
|
2419
2419
|
* mutation one API call away.
|
|
2420
2420
|
*/
|
|
2421
2421
|
static isFixed(integration) {
|
|
2422
|
-
return integration.info["fixed"] === true;
|
|
2422
|
+
return integration.info?.["fixed"] === true;
|
|
2423
2423
|
}
|
|
2424
2424
|
async deleteIntegration(id) {
|
|
2425
2425
|
const integration = await this.getIntegration(id);
|
package/dist/index.mjs
CHANGED
|
@@ -2411,7 +2411,7 @@ var IntegrationRegistry = class IntegrationRegistry {
|
|
|
2411
2411
|
* mutation one API call away.
|
|
2412
2412
|
*/
|
|
2413
2413
|
static isFixed(integration) {
|
|
2414
|
-
return integration.info["fixed"] === true;
|
|
2414
|
+
return integration.info?.["fixed"] === true;
|
|
2415
2415
|
}
|
|
2416
2416
|
async deleteIntegration(id) {
|
|
2417
2417
|
const integration = await this.getIntegration(id);
|