@smartspace/api-client 0.1.0-pr.721.65aa4d7 → 0.1.0-pr.722.672289f

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.
@@ -11,6 +11,8 @@ export interface NotificationNotification {
11
11
  /** @nullable */
12
12
  createdBy?: string | null;
13
13
  /** @nullable */
14
+ createdByUserId?: string | null;
15
+ /** @nullable */
14
16
  description?: string | null;
15
17
  /** @nullable */
16
18
  dismissedAt?: string | null;
@@ -524,6 +524,7 @@ export declare const notificationGetResponse: zod.ZodObject<{
524
524
  data: zod.ZodArray<zod.ZodObject<{
525
525
  createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
526
526
  createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
527
+ createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
527
528
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
528
529
  dismissedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
529
530
  id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -466,6 +466,7 @@ exports.notificationGetResponse = zod_1.default.object({
466
466
  "data": zod_1.default.array(zod_1.default.object({
467
467
  "createdAt": zod_1.default.iso.datetime({}).nullish(),
468
468
  "createdBy": zod_1.default.string().nullish(),
469
+ "createdByUserId": zod_1.default.string().nullish(),
469
470
  "description": zod_1.default.string().nullish(),
470
471
  "dismissedAt": zod_1.default.iso.datetime({}).nullish(),
471
472
  "id": zod_1.default.string().regex(exports.notificationGetResponseDataItemIdRegExp).nullish(),
@@ -11,6 +11,8 @@ export interface NotificationNotification {
11
11
  /** @nullable */
12
12
  createdBy?: string | null;
13
13
  /** @nullable */
14
+ createdByUserId?: string | null;
15
+ /** @nullable */
14
16
  description?: string | null;
15
17
  /** @nullable */
16
18
  dismissedAt?: string | null;
@@ -2140,6 +2140,7 @@ export declare const notificationGetResponse: zod.ZodObject<{
2140
2140
  data: zod.ZodArray<zod.ZodObject<{
2141
2141
  createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
2142
2142
  createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2143
+ createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2143
2144
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2144
2145
  dismissedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
2145
2146
  id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -1714,6 +1714,7 @@ exports.notificationGetResponse = zod_1.default.object({
1714
1714
  "data": zod_1.default.array(zod_1.default.object({
1715
1715
  "createdAt": zod_1.default.iso.datetime({}).nullish(),
1716
1716
  "createdBy": zod_1.default.string().nullish(),
1717
+ "createdByUserId": zod_1.default.string().nullish(),
1717
1718
  "description": zod_1.default.string().nullish(),
1718
1719
  "dismissedAt": zod_1.default.iso.datetime({}).nullish(),
1719
1720
  "id": zod_1.default.string().regex(exports.notificationGetResponseDataItemIdRegExpOne).nullish(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartspace/api-client",
3
- "version": "0.1.0-pr.721.65aa4d7",
3
+ "version": "0.1.0-pr.722.672289f",
4
4
  "description": "Generated TypeScript client for SmartSpace APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",