@uniformdev/webhooks 19.159.0 → 19.159.1-alpha.16

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/dist/index.d.mts CHANGED
@@ -1174,68 +1174,151 @@ declare const ProjectMapDeletedEventName: string;
1174
1174
  declare const ProjectMapNodeDeleteDefinition: Definition<z.ZodObject<{
1175
1175
  project_id: z.ZodString;
1176
1176
  project_map_id: z.ZodString;
1177
+ name: z.ZodString;
1177
1178
  id: z.ZodString;
1178
1179
  path: z.ZodString;
1179
1180
  composition_id: z.ZodOptional<z.ZodString>;
1181
+ locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1182
+ name: z.ZodString;
1183
+ inherited: z.ZodBoolean;
1184
+ path: z.ZodString;
1185
+ }, "strip", z.ZodTypeAny, {
1186
+ name: string;
1187
+ path: string;
1188
+ inherited: boolean;
1189
+ }, {
1190
+ name: string;
1191
+ path: string;
1192
+ inherited: boolean;
1193
+ }>>>;
1180
1194
  }, "strip", z.ZodTypeAny, {
1181
1195
  id: string;
1196
+ name: string;
1182
1197
  path: string;
1183
1198
  project_id: string;
1184
1199
  project_map_id: string;
1185
1200
  composition_id?: string | undefined;
1201
+ locales?: Record<string, {
1202
+ name: string;
1203
+ path: string;
1204
+ inherited: boolean;
1205
+ }> | undefined;
1186
1206
  }, {
1187
1207
  id: string;
1208
+ name: string;
1188
1209
  path: string;
1189
1210
  project_id: string;
1190
1211
  project_map_id: string;
1191
1212
  composition_id?: string | undefined;
1213
+ locales?: Record<string, {
1214
+ name: string;
1215
+ path: string;
1216
+ inherited: boolean;
1217
+ }> | undefined;
1192
1218
  }>>;
1193
1219
  type ProjectMapNodeDeletedPayload = z.infer<(typeof ProjectMapNodeDeleteDefinition)['schema']>;
1194
1220
  declare const ProjectMapNodeDeletedEventName: string;
1195
1221
 
1196
1222
  declare const ProjectMapNodeInsertDefinition: Definition<z.ZodObject<{
1197
1223
  id: z.ZodString;
1224
+ name: z.ZodString;
1198
1225
  project_map_id: z.ZodString;
1199
1226
  project_id: z.ZodString;
1200
1227
  path: z.ZodString;
1201
1228
  composition_id: z.ZodOptional<z.ZodString>;
1229
+ locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1230
+ name: z.ZodString;
1231
+ inherited: z.ZodBoolean;
1232
+ path: z.ZodString;
1233
+ }, "strip", z.ZodTypeAny, {
1234
+ name: string;
1235
+ path: string;
1236
+ inherited: boolean;
1237
+ }, {
1238
+ name: string;
1239
+ path: string;
1240
+ inherited: boolean;
1241
+ }>>>;
1202
1242
  }, "strip", z.ZodTypeAny, {
1203
1243
  id: string;
1244
+ name: string;
1204
1245
  path: string;
1205
1246
  project_id: string;
1206
1247
  project_map_id: string;
1207
1248
  composition_id?: string | undefined;
1249
+ locales?: Record<string, {
1250
+ name: string;
1251
+ path: string;
1252
+ inherited: boolean;
1253
+ }> | undefined;
1208
1254
  }, {
1209
1255
  id: string;
1256
+ name: string;
1210
1257
  path: string;
1211
1258
  project_id: string;
1212
1259
  project_map_id: string;
1213
1260
  composition_id?: string | undefined;
1261
+ locales?: Record<string, {
1262
+ name: string;
1263
+ path: string;
1264
+ inherited: boolean;
1265
+ }> | undefined;
1214
1266
  }>>;
1215
1267
  type ProjectMapNodeInsertedPayload = z.infer<(typeof ProjectMapNodeInsertDefinition)['schema']>;
1216
1268
  declare const ProjectMapNodeInsertedEventName: string;
1217
1269
 
1218
1270
  declare const ProjectMapNodeUpdateDefinition: Definition<z.ZodObject<{
1219
1271
  id: z.ZodString;
1272
+ name: z.ZodString;
1220
1273
  project_map_id: z.ZodString;
1221
1274
  project_id: z.ZodString;
1222
1275
  path: z.ZodString;
1223
1276
  composition_id: z.ZodOptional<z.ZodString>;
1224
1277
  previous_path: z.ZodString;
1278
+ locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1279
+ name: z.ZodString;
1280
+ inherited: z.ZodBoolean;
1281
+ path: z.ZodString;
1282
+ previous_path: z.ZodString;
1283
+ }, "strip", z.ZodTypeAny, {
1284
+ name: string;
1285
+ path: string;
1286
+ inherited: boolean;
1287
+ previous_path: string;
1288
+ }, {
1289
+ name: string;
1290
+ path: string;
1291
+ inherited: boolean;
1292
+ previous_path: string;
1293
+ }>>>;
1225
1294
  }, "strip", z.ZodTypeAny, {
1226
1295
  id: string;
1296
+ name: string;
1227
1297
  path: string;
1228
1298
  project_id: string;
1229
1299
  project_map_id: string;
1230
1300
  previous_path: string;
1231
1301
  composition_id?: string | undefined;
1302
+ locales?: Record<string, {
1303
+ name: string;
1304
+ path: string;
1305
+ inherited: boolean;
1306
+ previous_path: string;
1307
+ }> | undefined;
1232
1308
  }, {
1233
1309
  id: string;
1310
+ name: string;
1234
1311
  path: string;
1235
1312
  project_id: string;
1236
1313
  project_map_id: string;
1237
1314
  previous_path: string;
1238
1315
  composition_id?: string | undefined;
1316
+ locales?: Record<string, {
1317
+ name: string;
1318
+ path: string;
1319
+ inherited: boolean;
1320
+ previous_path: string;
1321
+ }> | undefined;
1239
1322
  }>>;
1240
1323
  type ProjectMapNodeUpdatedPayload = z.infer<(typeof ProjectMapNodeUpdateDefinition)['schema']>;
1241
1324
  declare const ProjectMapNodeUpdatedEventName: string;
package/dist/index.d.ts CHANGED
@@ -1174,68 +1174,151 @@ declare const ProjectMapDeletedEventName: string;
1174
1174
  declare const ProjectMapNodeDeleteDefinition: Definition<z.ZodObject<{
1175
1175
  project_id: z.ZodString;
1176
1176
  project_map_id: z.ZodString;
1177
+ name: z.ZodString;
1177
1178
  id: z.ZodString;
1178
1179
  path: z.ZodString;
1179
1180
  composition_id: z.ZodOptional<z.ZodString>;
1181
+ locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1182
+ name: z.ZodString;
1183
+ inherited: z.ZodBoolean;
1184
+ path: z.ZodString;
1185
+ }, "strip", z.ZodTypeAny, {
1186
+ name: string;
1187
+ path: string;
1188
+ inherited: boolean;
1189
+ }, {
1190
+ name: string;
1191
+ path: string;
1192
+ inherited: boolean;
1193
+ }>>>;
1180
1194
  }, "strip", z.ZodTypeAny, {
1181
1195
  id: string;
1196
+ name: string;
1182
1197
  path: string;
1183
1198
  project_id: string;
1184
1199
  project_map_id: string;
1185
1200
  composition_id?: string | undefined;
1201
+ locales?: Record<string, {
1202
+ name: string;
1203
+ path: string;
1204
+ inherited: boolean;
1205
+ }> | undefined;
1186
1206
  }, {
1187
1207
  id: string;
1208
+ name: string;
1188
1209
  path: string;
1189
1210
  project_id: string;
1190
1211
  project_map_id: string;
1191
1212
  composition_id?: string | undefined;
1213
+ locales?: Record<string, {
1214
+ name: string;
1215
+ path: string;
1216
+ inherited: boolean;
1217
+ }> | undefined;
1192
1218
  }>>;
1193
1219
  type ProjectMapNodeDeletedPayload = z.infer<(typeof ProjectMapNodeDeleteDefinition)['schema']>;
1194
1220
  declare const ProjectMapNodeDeletedEventName: string;
1195
1221
 
1196
1222
  declare const ProjectMapNodeInsertDefinition: Definition<z.ZodObject<{
1197
1223
  id: z.ZodString;
1224
+ name: z.ZodString;
1198
1225
  project_map_id: z.ZodString;
1199
1226
  project_id: z.ZodString;
1200
1227
  path: z.ZodString;
1201
1228
  composition_id: z.ZodOptional<z.ZodString>;
1229
+ locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1230
+ name: z.ZodString;
1231
+ inherited: z.ZodBoolean;
1232
+ path: z.ZodString;
1233
+ }, "strip", z.ZodTypeAny, {
1234
+ name: string;
1235
+ path: string;
1236
+ inherited: boolean;
1237
+ }, {
1238
+ name: string;
1239
+ path: string;
1240
+ inherited: boolean;
1241
+ }>>>;
1202
1242
  }, "strip", z.ZodTypeAny, {
1203
1243
  id: string;
1244
+ name: string;
1204
1245
  path: string;
1205
1246
  project_id: string;
1206
1247
  project_map_id: string;
1207
1248
  composition_id?: string | undefined;
1249
+ locales?: Record<string, {
1250
+ name: string;
1251
+ path: string;
1252
+ inherited: boolean;
1253
+ }> | undefined;
1208
1254
  }, {
1209
1255
  id: string;
1256
+ name: string;
1210
1257
  path: string;
1211
1258
  project_id: string;
1212
1259
  project_map_id: string;
1213
1260
  composition_id?: string | undefined;
1261
+ locales?: Record<string, {
1262
+ name: string;
1263
+ path: string;
1264
+ inherited: boolean;
1265
+ }> | undefined;
1214
1266
  }>>;
1215
1267
  type ProjectMapNodeInsertedPayload = z.infer<(typeof ProjectMapNodeInsertDefinition)['schema']>;
1216
1268
  declare const ProjectMapNodeInsertedEventName: string;
1217
1269
 
1218
1270
  declare const ProjectMapNodeUpdateDefinition: Definition<z.ZodObject<{
1219
1271
  id: z.ZodString;
1272
+ name: z.ZodString;
1220
1273
  project_map_id: z.ZodString;
1221
1274
  project_id: z.ZodString;
1222
1275
  path: z.ZodString;
1223
1276
  composition_id: z.ZodOptional<z.ZodString>;
1224
1277
  previous_path: z.ZodString;
1278
+ locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1279
+ name: z.ZodString;
1280
+ inherited: z.ZodBoolean;
1281
+ path: z.ZodString;
1282
+ previous_path: z.ZodString;
1283
+ }, "strip", z.ZodTypeAny, {
1284
+ name: string;
1285
+ path: string;
1286
+ inherited: boolean;
1287
+ previous_path: string;
1288
+ }, {
1289
+ name: string;
1290
+ path: string;
1291
+ inherited: boolean;
1292
+ previous_path: string;
1293
+ }>>>;
1225
1294
  }, "strip", z.ZodTypeAny, {
1226
1295
  id: string;
1296
+ name: string;
1227
1297
  path: string;
1228
1298
  project_id: string;
1229
1299
  project_map_id: string;
1230
1300
  previous_path: string;
1231
1301
  composition_id?: string | undefined;
1302
+ locales?: Record<string, {
1303
+ name: string;
1304
+ path: string;
1305
+ inherited: boolean;
1306
+ previous_path: string;
1307
+ }> | undefined;
1232
1308
  }, {
1233
1309
  id: string;
1310
+ name: string;
1234
1311
  path: string;
1235
1312
  project_id: string;
1236
1313
  project_map_id: string;
1237
1314
  previous_path: string;
1238
1315
  composition_id?: string | undefined;
1316
+ locales?: Record<string, {
1317
+ name: string;
1318
+ path: string;
1319
+ inherited: boolean;
1320
+ previous_path: string;
1321
+ }> | undefined;
1239
1322
  }>>;
1240
1323
  type ProjectMapNodeUpdatedPayload = z.infer<(typeof ProjectMapNodeUpdateDefinition)['schema']>;
1241
1324
  declare const ProjectMapNodeUpdatedEventName: string;
package/dist/index.esm.js CHANGED
@@ -478,17 +478,33 @@ var ProjectMapNodeDeleteDefinition = definition(
478
478
  schema: z5.object({
479
479
  project_id: z5.string(),
480
480
  project_map_id: z5.string(),
481
+ name: z5.string(),
481
482
  id: z5.string(),
482
483
  path: z5.string(),
483
- composition_id: z5.string().optional()
484
+ composition_id: z5.string().optional(),
485
+ locales: z5.record(
486
+ z5.object({
487
+ name: z5.string(),
488
+ inherited: z5.boolean(),
489
+ path: z5.string()
490
+ })
491
+ ).optional()
484
492
  })
485
493
  },
486
494
  {
487
495
  id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
496
+ name: "Product Detail",
488
497
  project_map_id: "c57ba7ac-4b5a-42f2-980f-afc75fe9d234",
489
498
  project_id: "bf978bb4-693b-4e75-9a57-8c89d27f4496",
490
499
  path: "/product-detail",
491
- composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66"
500
+ composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
501
+ locales: {
502
+ de: {
503
+ name: "Produktdetail",
504
+ inherited: false,
505
+ path: "/produktdetail"
506
+ }
507
+ }
492
508
  }
493
509
  );
494
510
  var ProjectMapNodeDeletedEventName = ProjectMapNodeDeleteDefinition["event"];
@@ -502,18 +518,34 @@ var ProjectMapNodeInsertDefinition = definition(
502
518
  description: "Triggers when a project map node is inserted.",
503
519
  schema: z6.object({
504
520
  id: z6.string(),
521
+ name: z6.string(),
505
522
  project_map_id: z6.string(),
506
523
  project_id: z6.string(),
507
524
  path: z6.string(),
508
- composition_id: z6.string().optional()
525
+ composition_id: z6.string().optional(),
526
+ locales: z6.record(
527
+ z6.object({
528
+ name: z6.string(),
529
+ inherited: z6.boolean(),
530
+ path: z6.string()
531
+ })
532
+ ).optional()
509
533
  })
510
534
  },
511
535
  {
512
536
  id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
537
+ name: "Product Detail",
513
538
  project_map_id: "c57ba7ac-4b5a-42f2-980f-afc75fe9d234",
514
539
  project_id: "bf978bb4-693b-4e75-9a57-8c89d27f4496",
515
540
  path: "/product-detail",
516
- composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66"
541
+ composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
542
+ locales: {
543
+ de: {
544
+ name: "Produktdetail",
545
+ inherited: false,
546
+ path: "/produktdetail"
547
+ }
548
+ }
517
549
  }
518
550
  );
519
551
  var ProjectMapNodeInsertedEventName = ProjectMapNodeInsertDefinition["event"];
@@ -527,20 +559,38 @@ var ProjectMapNodeUpdateDefinition = definition(
527
559
  description: "Triggers when a project map node is updated.",
528
560
  schema: z7.object({
529
561
  id: z7.string(),
562
+ name: z7.string(),
530
563
  project_map_id: z7.string(),
531
564
  project_id: z7.string(),
532
565
  path: z7.string(),
533
566
  composition_id: z7.string().optional(),
534
- previous_path: z7.string()
567
+ previous_path: z7.string(),
568
+ locales: z7.record(
569
+ z7.object({
570
+ name: z7.string(),
571
+ inherited: z7.boolean(),
572
+ path: z7.string(),
573
+ previous_path: z7.string()
574
+ })
575
+ ).optional()
535
576
  })
536
577
  },
537
578
  {
538
579
  id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
580
+ name: "Product Detail",
539
581
  project_map_id: "c57ba7ac-4b5a-42f2-980f-afc75fe9d234",
540
582
  project_id: "bf978bb4-693b-4e75-9a57-8c89d27f4496",
541
583
  path: "/product-detail",
542
584
  composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
543
- previous_path: "/promo/product-detail"
585
+ previous_path: "/promo/product-detail",
586
+ locales: {
587
+ de: {
588
+ name: "Produktdetail",
589
+ inherited: false,
590
+ path: "/produktdetail",
591
+ previous_path: "/promo/product-detail"
592
+ }
593
+ }
544
594
  }
545
595
  );
546
596
  var ProjectMapNodeUpdatedEventName = ProjectMapNodeUpdateDefinition["event"];
package/dist/index.js CHANGED
@@ -571,17 +571,33 @@ var ProjectMapNodeDeleteDefinition = definition(
571
571
  schema: import_zod5.z.object({
572
572
  project_id: import_zod5.z.string(),
573
573
  project_map_id: import_zod5.z.string(),
574
+ name: import_zod5.z.string(),
574
575
  id: import_zod5.z.string(),
575
576
  path: import_zod5.z.string(),
576
- composition_id: import_zod5.z.string().optional()
577
+ composition_id: import_zod5.z.string().optional(),
578
+ locales: import_zod5.z.record(
579
+ import_zod5.z.object({
580
+ name: import_zod5.z.string(),
581
+ inherited: import_zod5.z.boolean(),
582
+ path: import_zod5.z.string()
583
+ })
584
+ ).optional()
577
585
  })
578
586
  },
579
587
  {
580
588
  id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
589
+ name: "Product Detail",
581
590
  project_map_id: "c57ba7ac-4b5a-42f2-980f-afc75fe9d234",
582
591
  project_id: "bf978bb4-693b-4e75-9a57-8c89d27f4496",
583
592
  path: "/product-detail",
584
- composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66"
593
+ composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
594
+ locales: {
595
+ de: {
596
+ name: "Produktdetail",
597
+ inherited: false,
598
+ path: "/produktdetail"
599
+ }
600
+ }
585
601
  }
586
602
  );
587
603
  var ProjectMapNodeDeletedEventName = ProjectMapNodeDeleteDefinition["event"];
@@ -595,18 +611,34 @@ var ProjectMapNodeInsertDefinition = definition(
595
611
  description: "Triggers when a project map node is inserted.",
596
612
  schema: import_zod6.z.object({
597
613
  id: import_zod6.z.string(),
614
+ name: import_zod6.z.string(),
598
615
  project_map_id: import_zod6.z.string(),
599
616
  project_id: import_zod6.z.string(),
600
617
  path: import_zod6.z.string(),
601
- composition_id: import_zod6.z.string().optional()
618
+ composition_id: import_zod6.z.string().optional(),
619
+ locales: import_zod6.z.record(
620
+ import_zod6.z.object({
621
+ name: import_zod6.z.string(),
622
+ inherited: import_zod6.z.boolean(),
623
+ path: import_zod6.z.string()
624
+ })
625
+ ).optional()
602
626
  })
603
627
  },
604
628
  {
605
629
  id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
630
+ name: "Product Detail",
606
631
  project_map_id: "c57ba7ac-4b5a-42f2-980f-afc75fe9d234",
607
632
  project_id: "bf978bb4-693b-4e75-9a57-8c89d27f4496",
608
633
  path: "/product-detail",
609
- composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66"
634
+ composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
635
+ locales: {
636
+ de: {
637
+ name: "Produktdetail",
638
+ inherited: false,
639
+ path: "/produktdetail"
640
+ }
641
+ }
610
642
  }
611
643
  );
612
644
  var ProjectMapNodeInsertedEventName = ProjectMapNodeInsertDefinition["event"];
@@ -620,20 +652,38 @@ var ProjectMapNodeUpdateDefinition = definition(
620
652
  description: "Triggers when a project map node is updated.",
621
653
  schema: import_zod7.z.object({
622
654
  id: import_zod7.z.string(),
655
+ name: import_zod7.z.string(),
623
656
  project_map_id: import_zod7.z.string(),
624
657
  project_id: import_zod7.z.string(),
625
658
  path: import_zod7.z.string(),
626
659
  composition_id: import_zod7.z.string().optional(),
627
- previous_path: import_zod7.z.string()
660
+ previous_path: import_zod7.z.string(),
661
+ locales: import_zod7.z.record(
662
+ import_zod7.z.object({
663
+ name: import_zod7.z.string(),
664
+ inherited: import_zod7.z.boolean(),
665
+ path: import_zod7.z.string(),
666
+ previous_path: import_zod7.z.string()
667
+ })
668
+ ).optional()
628
669
  })
629
670
  },
630
671
  {
631
672
  id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
673
+ name: "Product Detail",
632
674
  project_map_id: "c57ba7ac-4b5a-42f2-980f-afc75fe9d234",
633
675
  project_id: "bf978bb4-693b-4e75-9a57-8c89d27f4496",
634
676
  path: "/product-detail",
635
677
  composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
636
- previous_path: "/promo/product-detail"
678
+ previous_path: "/promo/product-detail",
679
+ locales: {
680
+ de: {
681
+ name: "Produktdetail",
682
+ inherited: false,
683
+ path: "/produktdetail",
684
+ previous_path: "/promo/product-detail"
685
+ }
686
+ }
637
687
  }
638
688
  );
639
689
  var ProjectMapNodeUpdatedEventName = ProjectMapNodeUpdateDefinition["event"];
package/dist/index.mjs CHANGED
@@ -478,17 +478,33 @@ var ProjectMapNodeDeleteDefinition = definition(
478
478
  schema: z5.object({
479
479
  project_id: z5.string(),
480
480
  project_map_id: z5.string(),
481
+ name: z5.string(),
481
482
  id: z5.string(),
482
483
  path: z5.string(),
483
- composition_id: z5.string().optional()
484
+ composition_id: z5.string().optional(),
485
+ locales: z5.record(
486
+ z5.object({
487
+ name: z5.string(),
488
+ inherited: z5.boolean(),
489
+ path: z5.string()
490
+ })
491
+ ).optional()
484
492
  })
485
493
  },
486
494
  {
487
495
  id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
496
+ name: "Product Detail",
488
497
  project_map_id: "c57ba7ac-4b5a-42f2-980f-afc75fe9d234",
489
498
  project_id: "bf978bb4-693b-4e75-9a57-8c89d27f4496",
490
499
  path: "/product-detail",
491
- composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66"
500
+ composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
501
+ locales: {
502
+ de: {
503
+ name: "Produktdetail",
504
+ inherited: false,
505
+ path: "/produktdetail"
506
+ }
507
+ }
492
508
  }
493
509
  );
494
510
  var ProjectMapNodeDeletedEventName = ProjectMapNodeDeleteDefinition["event"];
@@ -502,18 +518,34 @@ var ProjectMapNodeInsertDefinition = definition(
502
518
  description: "Triggers when a project map node is inserted.",
503
519
  schema: z6.object({
504
520
  id: z6.string(),
521
+ name: z6.string(),
505
522
  project_map_id: z6.string(),
506
523
  project_id: z6.string(),
507
524
  path: z6.string(),
508
- composition_id: z6.string().optional()
525
+ composition_id: z6.string().optional(),
526
+ locales: z6.record(
527
+ z6.object({
528
+ name: z6.string(),
529
+ inherited: z6.boolean(),
530
+ path: z6.string()
531
+ })
532
+ ).optional()
509
533
  })
510
534
  },
511
535
  {
512
536
  id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
537
+ name: "Product Detail",
513
538
  project_map_id: "c57ba7ac-4b5a-42f2-980f-afc75fe9d234",
514
539
  project_id: "bf978bb4-693b-4e75-9a57-8c89d27f4496",
515
540
  path: "/product-detail",
516
- composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66"
541
+ composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
542
+ locales: {
543
+ de: {
544
+ name: "Produktdetail",
545
+ inherited: false,
546
+ path: "/produktdetail"
547
+ }
548
+ }
517
549
  }
518
550
  );
519
551
  var ProjectMapNodeInsertedEventName = ProjectMapNodeInsertDefinition["event"];
@@ -527,20 +559,38 @@ var ProjectMapNodeUpdateDefinition = definition(
527
559
  description: "Triggers when a project map node is updated.",
528
560
  schema: z7.object({
529
561
  id: z7.string(),
562
+ name: z7.string(),
530
563
  project_map_id: z7.string(),
531
564
  project_id: z7.string(),
532
565
  path: z7.string(),
533
566
  composition_id: z7.string().optional(),
534
- previous_path: z7.string()
567
+ previous_path: z7.string(),
568
+ locales: z7.record(
569
+ z7.object({
570
+ name: z7.string(),
571
+ inherited: z7.boolean(),
572
+ path: z7.string(),
573
+ previous_path: z7.string()
574
+ })
575
+ ).optional()
535
576
  })
536
577
  },
537
578
  {
538
579
  id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
580
+ name: "Product Detail",
539
581
  project_map_id: "c57ba7ac-4b5a-42f2-980f-afc75fe9d234",
540
582
  project_id: "bf978bb4-693b-4e75-9a57-8c89d27f4496",
541
583
  path: "/product-detail",
542
584
  composition_id: "644ede73-d6aa-4159-bf98-14ad7fb4cb66",
543
- previous_path: "/promo/product-detail"
585
+ previous_path: "/promo/product-detail",
586
+ locales: {
587
+ de: {
588
+ name: "Produktdetail",
589
+ inherited: false,
590
+ path: "/produktdetail",
591
+ previous_path: "/promo/product-detail"
592
+ }
593
+ }
544
594
  }
545
595
  );
546
596
  var ProjectMapNodeUpdatedEventName = ProjectMapNodeUpdateDefinition["event"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/webhooks",
3
- "version": "19.159.0",
3
+ "version": "19.159.1-alpha.16+112313047e",
4
4
  "description": "Uniform Webhooks",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "49ed8744113d885f24c96d819a6e1dd1896b6ce0"
44
+ "gitHead": "112313047e98c7a1c0045ea1c5d01a4c74b29871"
45
45
  }