shoal-web-sdk 1.0.26 → 1.0.27

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.
@@ -355,6 +355,10 @@ export type Deployment = {
355
355
  finishedAt?: string;
356
356
  status: DeploymentStatus;
357
357
  message?: string;
358
+ triggeredByKindeId?: string;
359
+ triggeredByFirstName?: string;
360
+ triggeredByLastName?: string;
361
+ triggeredByEmail?: string;
358
362
  };
359
363
  export type Version = {
360
364
  id: string;
@@ -1317,6 +1317,10 @@ export declare const zDeployment: z.ZodObject<{
1317
1317
  failed: "failed";
1318
1318
  }>;
1319
1319
  message: z.ZodOptional<z.ZodString>;
1320
+ triggeredByKindeId: z.ZodOptional<z.ZodString>;
1321
+ triggeredByFirstName: z.ZodOptional<z.ZodString>;
1322
+ triggeredByLastName: z.ZodOptional<z.ZodString>;
1323
+ triggeredByEmail: z.ZodOptional<z.ZodString>;
1320
1324
  }, z.core.$strip>;
1321
1325
  export declare const zVersion: z.ZodObject<{
1322
1326
  id: z.ZodUUID;
@@ -1339,6 +1343,10 @@ export declare const zVersion: z.ZodObject<{
1339
1343
  failed: "failed";
1340
1344
  }>;
1341
1345
  message: z.ZodOptional<z.ZodString>;
1346
+ triggeredByKindeId: z.ZodOptional<z.ZodString>;
1347
+ triggeredByFirstName: z.ZodOptional<z.ZodString>;
1348
+ triggeredByLastName: z.ZodOptional<z.ZodString>;
1349
+ triggeredByEmail: z.ZodOptional<z.ZodString>;
1342
1350
  }, z.core.$strip>>;
1343
1351
  }, z.core.$strip>;
1344
1352
  export declare const zPaginatedEnvironmentVersions: z.ZodIntersection<z.ZodObject<{
@@ -1367,6 +1375,10 @@ export declare const zPaginatedEnvironmentVersions: z.ZodIntersection<z.ZodObjec
1367
1375
  failed: "failed";
1368
1376
  }>;
1369
1377
  message: z.ZodOptional<z.ZodString>;
1378
+ triggeredByKindeId: z.ZodOptional<z.ZodString>;
1379
+ triggeredByFirstName: z.ZodOptional<z.ZodString>;
1380
+ triggeredByLastName: z.ZodOptional<z.ZodString>;
1381
+ triggeredByEmail: z.ZodOptional<z.ZodString>;
1370
1382
  }, z.core.$strip>>;
1371
1383
  }, z.core.$strip>>;
1372
1384
  }, z.core.$strip>>;
@@ -1645,6 +1657,10 @@ export declare const zGetVersionM2mResponse: z.ZodObject<{
1645
1657
  failed: "failed";
1646
1658
  }>;
1647
1659
  message: z.ZodOptional<z.ZodString>;
1660
+ triggeredByKindeId: z.ZodOptional<z.ZodString>;
1661
+ triggeredByFirstName: z.ZodOptional<z.ZodString>;
1662
+ triggeredByLastName: z.ZodOptional<z.ZodString>;
1663
+ triggeredByEmail: z.ZodOptional<z.ZodString>;
1648
1664
  }, z.core.$strip>>;
1649
1665
  }, z.core.$strip>;
1650
1666
  export declare const zUpdateDeploymentStatusM2mData: z.ZodObject<{
@@ -3359,6 +3375,10 @@ export declare const zGetEnvironmentVersionsResponse: z.ZodIntersection<z.ZodObj
3359
3375
  failed: "failed";
3360
3376
  }>;
3361
3377
  message: z.ZodOptional<z.ZodString>;
3378
+ triggeredByKindeId: z.ZodOptional<z.ZodString>;
3379
+ triggeredByFirstName: z.ZodOptional<z.ZodString>;
3380
+ triggeredByLastName: z.ZodOptional<z.ZodString>;
3381
+ triggeredByEmail: z.ZodOptional<z.ZodString>;
3362
3382
  }, z.core.$strip>>;
3363
3383
  }, z.core.$strip>>;
3364
3384
  }, z.core.$strip>>;
@@ -3554,6 +3574,10 @@ export declare const zGetVersionResponse: z.ZodObject<{
3554
3574
  failed: "failed";
3555
3575
  }>;
3556
3576
  message: z.ZodOptional<z.ZodString>;
3577
+ triggeredByKindeId: z.ZodOptional<z.ZodString>;
3578
+ triggeredByFirstName: z.ZodOptional<z.ZodString>;
3579
+ triggeredByLastName: z.ZodOptional<z.ZodString>;
3580
+ triggeredByEmail: z.ZodOptional<z.ZodString>;
3557
3581
  }, z.core.$strip>>;
3558
3582
  }, z.core.$strip>;
3559
3583
  export declare const zImportBlueprintData: z.ZodObject<{
@@ -615,7 +615,11 @@ export const zDeployment = z.object({
615
615
  startedAt: z.iso.datetime(),
616
616
  finishedAt: z.optional(z.iso.datetime()),
617
617
  status: zDeploymentStatus,
618
- message: z.optional(z.string())
618
+ message: z.optional(z.string()),
619
+ triggeredByKindeId: z.optional(z.string()),
620
+ triggeredByFirstName: z.optional(z.string()),
621
+ triggeredByLastName: z.optional(z.string()),
622
+ triggeredByEmail: z.optional(z.string())
619
623
  });
620
624
  export const zVersion = z.object({
621
625
  id: z.uuid(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",