@devtion/actions 0.0.0-bfc9ee4 → 0.0.0-c749be4

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,14 +17,14 @@ import {
17
17
  * @property {string} accessKeyId - the key identifier related to S3 APIs.
18
18
  * @property {string} secretAccessKey - the secret access key related to S3 APIs.
19
19
  * @property {string} region - the region where your buckets are located.
20
- * @property {string} roleArn - the EC2 instance role to access S3.
20
+ * @property {string} instanceProfileArn - the EC2 instance profile the VM should use to access S3.
21
21
  * @property {string} amiId - the AWS AMI ID (default to Amazon Linux 2).
22
22
  */
23
23
  export type AWSVariables = {
24
24
  accessKeyId: string
25
25
  secretAccessKey: string
26
26
  region: string
27
- roleArn: string
27
+ instanceProfileArn: string
28
28
  amiId: string
29
29
  }
30
30
 
@@ -620,7 +620,6 @@ export type SetupCeremonyData = {
620
620
  circuitArtifacts: Array<CeremonySetupTemplateCircuitArtifacts>
621
621
  }
622
622
 
623
-
624
623
  export type CeremonySetupTemplateCircuitArtifacts = {
625
624
  artifacts: {
626
625
  bucket: string
@@ -640,11 +639,16 @@ export type CeremonySetupTemplateCircuitName = {
640
639
  }
641
640
 
642
641
  export type CeremonySetupTemplate = {
643
- title: string
642
+ title: string
644
643
  description: string
645
644
  startDate: string
646
645
  endDate: string
647
646
  timeoutMechanismType: CeremonyTimeoutType
648
- penalty: number
649
- circuits: Array<CircuitDocument & CeremonySetupTemplateCircuitArtifacts & CeremonySetupTemplateCircuitTimeout & CeremonySetupTemplateCircuitName>
650
- }
647
+ penalty: number
648
+ circuits: Array<
649
+ CircuitDocument &
650
+ CeremonySetupTemplateCircuitArtifacts &
651
+ CeremonySetupTemplateCircuitTimeout &
652
+ CeremonySetupTemplateCircuitName
653
+ >
654
+ }