@intentius/chant-lexicon-azure 0.15.0 → 0.15.2

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.
@@ -6,5 +6,32 @@
6
6
  export { azGroupEnsure, azGroupDelete, azGroupEnsureCommand, azGroupDeleteCommand } from "./azure";
7
7
  export type { AzGroupEnsureArgs, AzGroupDeleteArgs } from "./azure";
8
8
 
9
- export { azApply, evalArm, evalArmString, armResourceUrl, armResourceBody } from "./az-apply";
10
- export type { AzApplyArgs, ArmContext, ArmResource, AzHttp } from "./az-apply";
9
+ // floci-az (Azure emulator) lifecycle the typed twin of aws's flociUp/Down, so
10
+ // the trio's Azure op boots/tears down the emulator as a modeled step, not a shell.
11
+ export {
12
+ flociAzUp,
13
+ flociAzDown,
14
+ flociAzRunCommand,
15
+ flociAzRmCommand,
16
+ flociAzExistsCommand,
17
+ flociAzHealthUrl,
18
+ flociAzEndpoint,
19
+ } from "./floci-az";
20
+ export type { FlociAzUpArgs, FlociAzDownArgs } from "./floci-az";
21
+
22
+ export {
23
+ azApply,
24
+ azDelete,
25
+ pruneArmOrphans,
26
+ deleteArmResource,
27
+ listGroupResources,
28
+ chantOwnershipTags,
29
+ isChantOwned,
30
+ evalArm,
31
+ evalArmString,
32
+ armResourceUrl,
33
+ armResourceBody,
34
+ armDependencies,
35
+ orderArmResources,
36
+ } from "./az-apply";
37
+ export type { AzApplyArgs, ArmEvalCtx, ArmResource, ArmListItem, AzHttp } from "./az-apply";