stacktape 3.0.4 → 3.0.6

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stacktape",
3
- "version": "3.0.4",
3
+ "version": "3.0.6",
4
4
  "description": "PaaS 2.0 that deploys to your own AWS account.",
5
5
  "author": "Stacktape team <support@stacktape.com>",
6
6
  "license": "MIT",
package/types.d.ts CHANGED
@@ -96,6 +96,8 @@ import type {
96
96
 
97
97
  declare const getTransformsSymbol: unique symbol;
98
98
  declare const setResourceNameSymbol: unique symbol;
99
+ declare const resourceParamRefSymbol: unique symbol;
100
+ declare const baseTypePropertiesSymbol: unique symbol;
99
101
  /**
100
102
  * A reference to a resource parameter that will be resolved at runtime.
101
103
  * Stores a reference to the resource for lazy name resolution.
@@ -132,6 +134,7 @@ declare const getOverridesSymbol: unique symbol;
132
134
  export declare class ResourceParamReference {
133
135
  private __resource;
134
136
  private __param;
137
+ readonly [resourceParamRefSymbol] = true;
135
138
  constructor(resource: BaseResource, param: string);
136
139
  toString(): string;
137
140
  toJSON(): string;
@@ -141,6 +144,7 @@ export declare class ResourceParamReference {
141
144
  export declare class BaseTypeProperties {
142
145
  readonly type: string;
143
146
  readonly properties: any;
147
+ readonly [baseTypePropertiesSymbol] = true;
144
148
  constructor(type: string, properties: any);
145
149
  }
146
150