@webiny/api-prerendering-service-so-ddb 5.40.6-beta.3 → 5.41.0-beta.0

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.
Files changed (2) hide show
  1. package/package.json +11 -11
  2. package/types.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/api-prerendering-service-so-ddb",
3
- "version": "5.40.6-beta.3",
3
+ "version": "5.41.0-beta.0",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,9 +19,9 @@
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
21
  "@babel/runtime": "7.24.1",
22
- "@webiny/api-prerendering-service": "5.40.6-beta.3",
23
- "@webiny/aws-sdk": "5.40.6-beta.3",
24
- "@webiny/error": "5.40.6-beta.3"
22
+ "@webiny/api-prerendering-service": "5.41.0-beta.0",
23
+ "@webiny/aws-sdk": "5.41.0-beta.0",
24
+ "@webiny/error": "5.41.0-beta.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@babel/cli": "7.24.1",
@@ -29,16 +29,16 @@
29
29
  "@babel/plugin-proposal-export-default-from": "7.24.1",
30
30
  "@babel/preset-env": "7.24.3",
31
31
  "@babel/preset-typescript": "7.24.1",
32
- "@webiny/cli": "5.40.6-beta.3",
33
- "@webiny/db": "5.40.6-beta.3",
34
- "@webiny/db-dynamodb": "5.40.6-beta.3",
35
- "@webiny/handler-aws": "5.40.6-beta.3",
36
- "@webiny/project-utils": "5.40.6-beta.3",
32
+ "@webiny/cli": "5.41.0-beta.0",
33
+ "@webiny/db": "5.41.0-beta.0",
34
+ "@webiny/db-dynamodb": "5.41.0-beta.0",
35
+ "@webiny/handler-aws": "5.41.0-beta.0",
36
+ "@webiny/project-utils": "5.41.0-beta.0",
37
37
  "jest-dynalite": "3.6.1",
38
38
  "prettier": "2.8.8",
39
39
  "rimraf": "5.0.5",
40
40
  "ttypescript": "1.5.15",
41
- "typescript": "4.7.4"
41
+ "typescript": "4.9.5"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public",
@@ -48,5 +48,5 @@
48
48
  "build": "yarn webiny run build",
49
49
  "watch": "yarn webiny run watch"
50
50
  },
51
- "gitHead": "f9da84b373e62f9f269599c4301e5e4418a98d51"
51
+ "gitHead": "9ce5e75fc577aa4de2cf08d5ca734b3c98fe65b6"
52
52
  }
package/types.d.ts CHANGED
@@ -3,7 +3,7 @@ import { Entity, Table } from "@webiny/db-dynamodb/toolbox";
3
3
  import { TableConstructor } from "@webiny/db-dynamodb/toolbox";
4
4
  import { AttributeDefinition } from "@webiny/db-dynamodb/toolbox";
5
5
  import { PrerenderingServiceStorageOperations as BasePrerenderingServiceStorageOperations } from "@webiny/api-prerendering-service/types";
6
- export declare type Attributes = Record<string, AttributeDefinition>;
6
+ export type Attributes = Record<string, AttributeDefinition>;
7
7
  export declare enum ENTITIES {
8
8
  RENDER = "PrerenderingServiceRender",
9
9
  SETTINGS = "PrerenderingServiceSettings",
@@ -16,7 +16,7 @@ export interface PrerenderingServiceFactoryParams {
16
16
  table?: TableModifier;
17
17
  attributes?: Record<ENTITIES, Attributes>;
18
18
  }
19
- export declare type Entities = "render" | "queueJob" | "tagPathLink";
19
+ export type Entities = "render" | "queueJob" | "tagPathLink";
20
20
  export interface PrerenderingServiceStorageOperations extends BasePrerenderingServiceStorageOperations {
21
21
  getTable(): Table<string, string, string>;
22
22
  getEntities(): Record<Entities, Entity<any>>;