@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.
@@ -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,