@tagsamurai/fats-api-services 1.0.3-alpha.74 → 1.0.3-alpha.76
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/package.json
CHANGED
|
@@ -22,7 +22,7 @@ export interface GetLifecycleParams extends BaseParams {
|
|
|
22
22
|
export interface GetResourceParams extends BaseParams {
|
|
23
23
|
}
|
|
24
24
|
export interface GetAmpOptionsParams {
|
|
25
|
-
|
|
25
|
+
linkedSampOptions?: boolean;
|
|
26
26
|
}
|
|
27
27
|
export interface GetAmpFilterOptionsParams {
|
|
28
28
|
ampIdOptions?: boolean;
|
|
@@ -31,7 +31,7 @@ export interface GetAmpFilterOptionsParams {
|
|
|
31
31
|
export interface AmpPayload {
|
|
32
32
|
submitType: 'Save as Draft' | 'Submit';
|
|
33
33
|
name: string;
|
|
34
|
-
|
|
34
|
+
linkedSampId?: string;
|
|
35
35
|
group?: string;
|
|
36
36
|
demands?: AmpDemand[];
|
|
37
37
|
lifecycles?: AmpLifecycle[];
|
|
@@ -6,7 +6,7 @@ export interface Amp {
|
|
|
6
6
|
ampId: string;
|
|
7
7
|
name: string;
|
|
8
8
|
version: string;
|
|
9
|
-
|
|
9
|
+
linkedSampId: string;
|
|
10
10
|
group: string;
|
|
11
11
|
status: AmpStatus;
|
|
12
12
|
lastModified: number;
|
|
@@ -16,7 +16,7 @@ export interface AmpDemand {
|
|
|
16
16
|
description: string;
|
|
17
17
|
performanceTarget: string;
|
|
18
18
|
measurementMethod: string;
|
|
19
|
-
|
|
19
|
+
note: string;
|
|
20
20
|
}
|
|
21
21
|
export interface AmpLifecycle {
|
|
22
22
|
lifecycleId: string;
|