@serve.zone/interfaces 16.1.0 → 16.3.0
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/changelog.md +18 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/data/deploymentadoption.d.ts +44 -1
- package/dist_ts/data/deploymentadoption.js +178 -2
- package/dist_ts/data/deploymentoperation.js +16 -1
- package/dist_ts/data/deploymentpreflight.d.ts +3 -0
- package/dist_ts/data/deploymentpreflight.js +1 -1
- package/dist_ts/data/service.d.ts +27 -0
- package/dist_ts/data/service.js +100 -2
- package/dist_ts/requests/service.d.ts +19 -1
- package/package.json +1 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/data/deploymentadoption.ts +244 -1
- package/ts/data/deploymentoperation.ts +23 -0
- package/ts/data/deploymentpreflight.ts +3 -0
- package/ts/data/service.ts +126 -0
- package/ts/requests/service.ts +32 -0
package/ts/requests/service.ts
CHANGED
|
@@ -17,11 +17,43 @@ import type {
|
|
|
17
17
|
import type { TSha256Digest } from '../data/immutableimage.js';
|
|
18
18
|
import type {
|
|
19
19
|
IServiceDeploymentAdoptionInput,
|
|
20
|
+
IServiceDeploymentAdoptionImagePromotionInput,
|
|
21
|
+
IServiceDeploymentAdoptionImagePromotionResult,
|
|
22
|
+
IServiceDeploymentAdoptionRolloutInput,
|
|
23
|
+
IServiceDeploymentAdoptionRolloutResult,
|
|
20
24
|
IServiceDeploymentAdoptionPreflightInput,
|
|
21
25
|
IServiceDeploymentAdoptionReport,
|
|
22
26
|
IServiceDeploymentAdoptionResult,
|
|
23
27
|
} from '../data/deploymentadoption.js';
|
|
24
28
|
|
|
29
|
+
export interface IRequest_Any_Cloudly_BootstrapServiceDeploymentAdoptionRollout
|
|
30
|
+
extends plugins.typedrequestInterfaces.implementsTR<
|
|
31
|
+
plugins.typedrequestInterfaces.ITypedRequest,
|
|
32
|
+
IRequest_Any_Cloudly_BootstrapServiceDeploymentAdoptionRollout
|
|
33
|
+
> {
|
|
34
|
+
method: 'bootstrapServiceDeploymentAdoptionRollout';
|
|
35
|
+
request: IServiceDeploymentAdoptionRolloutInput & {
|
|
36
|
+
identity: IIdentityCredential;
|
|
37
|
+
};
|
|
38
|
+
response: {
|
|
39
|
+
result: IServiceDeploymentAdoptionRolloutResult;
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface IRequest_Any_Cloudly_PromoteServiceDeploymentAdoptionImage
|
|
44
|
+
extends plugins.typedrequestInterfaces.implementsTR<
|
|
45
|
+
plugins.typedrequestInterfaces.ITypedRequest,
|
|
46
|
+
IRequest_Any_Cloudly_PromoteServiceDeploymentAdoptionImage
|
|
47
|
+
> {
|
|
48
|
+
method: 'promoteServiceDeploymentAdoptionImage';
|
|
49
|
+
request: IServiceDeploymentAdoptionImagePromotionInput & {
|
|
50
|
+
identity: IIdentityCredential;
|
|
51
|
+
};
|
|
52
|
+
response: {
|
|
53
|
+
result: IServiceDeploymentAdoptionImagePromotionResult;
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
|
|
25
57
|
export interface IRequest_Any_Cloudly_GetServiceDeploymentAdoptionPreflight
|
|
26
58
|
extends plugins.typedrequestInterfaces.implementsTR<
|
|
27
59
|
plugins.typedrequestInterfaces.ITypedRequest,
|