shoal-web-sdk 0.0.74 → 0.0.75

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.
@@ -249,8 +249,21 @@ export type CacheNodeProps = {
249
249
  size?: number;
250
250
  };
251
251
  export type ContainerNodeProps = {
252
+ region?: Region;
252
253
  image?: string;
253
- };
254
+ port?: number;
255
+ cpu?: string;
256
+ memory?: Memory;
257
+ ingress?: Ingress;
258
+ timeoutSeconds?: number;
259
+ maxInstances?: number;
260
+ minInstances?: number;
261
+ concurrency?: number;
262
+ allowUnauthenticated?: boolean;
263
+ };
264
+ export type Region = 'africa-south1' | 'asia-east1' | 'asia-east2' | 'asia-northeast1' | 'asia-northeast2' | 'asia-northeast3' | 'asia-south1' | 'asia-southeast1' | 'asia-southeast2' | 'australia-southeast1' | 'europe-north1' | 'europe-west1' | 'europe-west2' | 'europe-west3' | 'europe-west4' | 'europe-west6' | 'northamerica-northeast1' | 'northamerica-northeast2' | 'southamerica-east1' | 'southamerica-west1' | 'us-central1' | 'us-east1' | 'us-east4' | 'us-west1' | 'us-west2' | 'us-west3' | 'us-west4';
265
+ export type Memory = '128Mi' | '256Mi' | '512Mi' | '1Gi' | '2Gi' | '4Gi' | '8Gi' | '16Gi' | '32Gi';
266
+ export type Ingress = 'INGRESS_TRAFFIC_ALL' | 'INGRESS_TRAFFIC_INTERNAL_ONLY' | 'INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER';
254
267
  export type CronJobNodeProps = {
255
268
  cronTab?: string;
256
269
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.74",
3
+ "version": "0.0.75",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",