contentful-management 10.31.2 → 10.31.3

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.
@@ -504,7 +504,14 @@ export default function createOrganizationApi(makeRequest: MakeRequest): {
504
504
  createAppAction(appDefinitionId: string, data: CreateAppActionProps): Promise<({
505
505
  category: "Entries.v1.0" | "Notification.v1.0";
506
506
  } & {
507
- sys: import("type-fest").Except<import("./common-types").BasicMetaSysProps, "version"> & {
507
+ sys: {
508
+ type: string;
509
+ id: string;
510
+ createdBy?: import("./common-types").SysLink | undefined;
511
+ createdAt: string;
512
+ updatedBy?: import("./common-types").SysLink | undefined;
513
+ updatedAt: string;
514
+ } & {
508
515
  appDefinition: import("./common-types").SysLink;
509
516
  organization: import("./common-types").SysLink;
510
517
  };
@@ -518,7 +525,14 @@ export default function createOrganizationApi(makeRequest: MakeRequest): {
518
525
  category: "Custom";
519
526
  parameters: import("./entities/app-action").AppActionParameterDefinition[];
520
527
  } & {
521
- sys: import("type-fest").Except<import("./common-types").BasicMetaSysProps, "version"> & {
528
+ sys: {
529
+ type: string;
530
+ id: string;
531
+ createdBy?: import("./common-types").SysLink | undefined;
532
+ createdAt: string;
533
+ updatedBy?: import("./common-types").SysLink | undefined;
534
+ updatedAt: string;
535
+ } & {
522
536
  appDefinition: import("./common-types").SysLink;
523
537
  organization: import("./common-types").SysLink;
524
538
  };
@@ -551,7 +565,14 @@ export default function createOrganizationApi(makeRequest: MakeRequest): {
551
565
  updateAppAction(appDefinitionId: string, appActionId: string, data: CreateAppActionProps): Promise<({
552
566
  category: "Entries.v1.0" | "Notification.v1.0";
553
567
  } & {
554
- sys: import("type-fest").Except<import("./common-types").BasicMetaSysProps, "version"> & {
568
+ sys: {
569
+ type: string;
570
+ id: string;
571
+ createdBy?: import("./common-types").SysLink | undefined;
572
+ createdAt: string;
573
+ updatedBy?: import("./common-types").SysLink | undefined;
574
+ updatedAt: string;
575
+ } & {
555
576
  appDefinition: import("./common-types").SysLink;
556
577
  organization: import("./common-types").SysLink;
557
578
  };
@@ -565,7 +586,14 @@ export default function createOrganizationApi(makeRequest: MakeRequest): {
565
586
  category: "Custom";
566
587
  parameters: import("./entities/app-action").AppActionParameterDefinition[];
567
588
  } & {
568
- sys: import("type-fest").Except<import("./common-types").BasicMetaSysProps, "version"> & {
589
+ sys: {
590
+ type: string;
591
+ id: string;
592
+ createdBy?: import("./common-types").SysLink | undefined;
593
+ createdAt: string;
594
+ updatedBy?: import("./common-types").SysLink | undefined;
595
+ updatedAt: string;
596
+ } & {
569
597
  appDefinition: import("./common-types").SysLink;
570
598
  organization: import("./common-types").SysLink;
571
599
  };
@@ -610,7 +638,14 @@ export default function createOrganizationApi(makeRequest: MakeRequest): {
610
638
  getAppAction(appDefinitionId: string, appActionId: string): Promise<({
611
639
  category: "Entries.v1.0" | "Notification.v1.0";
612
640
  } & {
613
- sys: import("type-fest").Except<import("./common-types").BasicMetaSysProps, "version"> & {
641
+ sys: {
642
+ type: string;
643
+ id: string;
644
+ createdBy?: import("./common-types").SysLink | undefined;
645
+ createdAt: string;
646
+ updatedBy?: import("./common-types").SysLink | undefined;
647
+ updatedAt: string;
648
+ } & {
614
649
  appDefinition: import("./common-types").SysLink;
615
650
  organization: import("./common-types").SysLink;
616
651
  };
@@ -624,7 +659,14 @@ export default function createOrganizationApi(makeRequest: MakeRequest): {
624
659
  category: "Custom";
625
660
  parameters: import("./entities/app-action").AppActionParameterDefinition[];
626
661
  } & {
627
- sys: import("type-fest").Except<import("./common-types").BasicMetaSysProps, "version"> & {
662
+ sys: {
663
+ type: string;
664
+ id: string;
665
+ createdBy?: import("./common-types").SysLink | undefined;
666
+ createdAt: string;
667
+ updatedBy?: import("./common-types").SysLink | undefined;
668
+ updatedAt: string;
669
+ } & {
628
670
  appDefinition: import("./common-types").SysLink;
629
671
  organization: import("./common-types").SysLink;
630
672
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contentful-management",
3
- "version": "10.31.2",
3
+ "version": "10.31.3",
4
4
  "description": "Client for Contentful's Content Management API",
5
5
  "homepage": "https://www.contentful.com/developers/documentation/content-management-api/",
6
6
  "main": "./dist/contentful-management.node.js",