@webiny/api-page-builder-import-export 5.40.5 → 5.41.0-dbt.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.
- package/export/pages/types.d.ts +5 -5
- package/graphql/graphql/importExportTasks.gql.js +1 -1
- package/graphql/graphql/importExportTasks.gql.js.map +1 -1
- package/graphql/graphql/pages.gql.js +2 -2
- package/graphql/graphql/pages.gql.js.map +1 -1
- package/graphql/graphql/utils/resolve.d.ts +2 -2
- package/graphql/types.d.ts +5 -5
- package/import/pages/types.d.ts +2 -2
- package/import/utils/uploadFilesFromS3.d.ts +1 -1
- package/package.json +24 -24
- package/types.d.ts +2 -2
package/export/pages/types.d.ts
CHANGED
@@ -20,7 +20,7 @@ export interface IExportPagesControllerOutput extends ITaskResponseDoneResultOut
|
|
20
20
|
key: string;
|
21
21
|
url: string;
|
22
22
|
}
|
23
|
-
export
|
23
|
+
export type IExportPagesControllerTaskParams = ITaskRunParams<PbImportExportContext, IExportPagesControllerInput, IExportPagesControllerOutput>;
|
24
24
|
/**
|
25
25
|
* Zip Pages
|
26
26
|
*/
|
@@ -37,7 +37,7 @@ export interface IExportPagesZipPagesOutput extends ITaskResponseDoneResultOutpu
|
|
37
37
|
done: IExportPagesZipPagesDone;
|
38
38
|
failed: string[];
|
39
39
|
}
|
40
|
-
export
|
40
|
+
export type IExportPagesZipPagesTaskParams = ITaskRunParams<PbImportExportContext, IExportPagesZipPagesInput, IExportPagesZipPagesOutput>;
|
41
41
|
/**
|
42
42
|
* Combine Zipped Pages
|
43
43
|
*/
|
@@ -45,9 +45,9 @@ export interface IExportPagesCombineZippedPagesOutput extends ITaskResponseDoneR
|
|
45
45
|
key: string;
|
46
46
|
url: string;
|
47
47
|
}
|
48
|
-
export
|
48
|
+
export type IExportPagesCombineZippedPagesParams = Pick<ITaskRunParams<PbImportExportContext, IExportPagesControllerInput, IExportPagesCombineZippedPagesOutput>, "store" | "response">;
|
49
49
|
/**
|
50
50
|
* Cleanup Zip files
|
51
51
|
*/
|
52
|
-
export
|
53
|
-
export
|
52
|
+
export type IExportPagesCleanupInput = Record<string, boolean>;
|
53
|
+
export type IExportPagesCleanupTaskParams = ITaskRunParams<PbImportExportContext, IExportPagesCleanupInput>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_resolve","require","plugin","type","schema","typeDefs","resolvers","PbQuery","getImportExportTask","_","args","context","resolve","pageBuilder","importExportTask","getTask","id","listImportExportSubTask","listSubTasks","status","limit","_default","exports","default"],"sources":["importExportTasks.gql.ts"],"sourcesContent":["import { GraphQLSchemaPlugin } from \"@webiny/handler-graphql/types\";\nimport { resolve } from \"./utils/resolve\";\nimport { PbImportExportContext } from \"../types\";\n\nconst plugin: GraphQLSchemaPlugin<PbImportExportContext> = {\n type: \"graphql-schema\",\n schema: {\n typeDefs: /* GraphQL */ `\n enum PbImportExportTaskStatus {\n pending\n processing\n completed\n failed\n }\n\n type PbImportExportTaskStats {\n pending: Int\n processing: Int\n completed: Int\n failed: Int\n total: Int\n }\n\n type PbImportExportTask {\n id: ID\n createdOn: DateTime\n createdBy:
|
1
|
+
{"version":3,"names":["_resolve","require","plugin","type","schema","typeDefs","resolvers","PbQuery","getImportExportTask","_","args","context","resolve","pageBuilder","importExportTask","getTask","id","listImportExportSubTask","listSubTasks","status","limit","_default","exports","default"],"sources":["importExportTasks.gql.ts"],"sourcesContent":["import { GraphQLSchemaPlugin } from \"@webiny/handler-graphql/types\";\nimport { resolve } from \"./utils/resolve\";\nimport { PbImportExportContext } from \"../types\";\n\nconst plugin: GraphQLSchemaPlugin<PbImportExportContext> = {\n type: \"graphql-schema\",\n schema: {\n typeDefs: /* GraphQL */ `\n enum PbImportExportTaskStatus {\n pending\n processing\n completed\n failed\n }\n\n type PbImportExportTaskStats {\n pending: Int\n processing: Int\n completed: Int\n failed: Int\n total: Int\n }\n\n type PbImportExportTask {\n id: ID\n createdOn: DateTime\n createdBy: PbIdentity\n status: PbImportExportTaskStatus\n data: JSON\n stats: PbImportExportTaskStats\n error: JSON\n }\n\n # Response types\n type PbImportExportTaskResponse {\n data: PbImportExportTask\n error: PbError\n }\n\n type PbImportExportTaskListResponse {\n data: [PbImportExportTask]\n error: PbError\n }\n\n extend type PbQuery {\n getImportExportTask(id: ID!): PbImportExportTaskResponse\n listImportExportSubTask(\n id: ID!\n status: PbImportExportTaskStatus\n limit: Int\n ): PbImportExportTaskListResponse\n }\n `,\n resolvers: {\n PbQuery: {\n getImportExportTask: async (_, args: any, context) => {\n return resolve(() => {\n return context.pageBuilder.importExportTask.getTask(args.id);\n });\n },\n listImportExportSubTask: async (_, args: any, context) => {\n return resolve(() => {\n return context.pageBuilder.importExportTask.listSubTasks(\n args.id,\n args.status,\n args.limit\n );\n });\n }\n }\n }\n }\n};\nexport default plugin;\n"],"mappings":";;;;;;AACA,IAAAA,QAAA,GAAAC,OAAA;AAGA,MAAMC,MAAkD,GAAG;EACvDC,IAAI,EAAE,gBAAgB;EACtBC,MAAM,EAAE;IACJC,QAAQ,EAAE,aAAe;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;IACDC,SAAS,EAAE;MACPC,OAAO,EAAE;QACLC,mBAAmB,EAAE,MAAAA,CAAOC,CAAC,EAAEC,IAAS,EAAEC,OAAO,KAAK;UAClD,OAAO,IAAAC,gBAAO,EAAC,MAAM;YACjB,OAAOD,OAAO,CAACE,WAAW,CAACC,gBAAgB,CAACC,OAAO,CAACL,IAAI,CAACM,EAAE,CAAC;UAChE,CAAC,CAAC;QACN,CAAC;QACDC,uBAAuB,EAAE,MAAAA,CAAOR,CAAC,EAAEC,IAAS,EAAEC,OAAO,KAAK;UACtD,OAAO,IAAAC,gBAAO,EAAC,MAAM;YACjB,OAAOD,OAAO,CAACE,WAAW,CAACC,gBAAgB,CAACI,YAAY,CACpDR,IAAI,CAACM,EAAE,EACPN,IAAI,CAACS,MAAM,EACXT,IAAI,CAACU,KACT,CAAC;UACL,CAAC,CAAC;QACN;MACJ;IACJ;EACJ;AACJ,CAAC;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAC,OAAA,GACarB,MAAM","ignoreList":[]}
|
@@ -31,7 +31,7 @@ const plugin = {
|
|
31
31
|
type PbExportPagesTask {
|
32
32
|
id: ID!
|
33
33
|
createdOn: DateTime!
|
34
|
-
createdBy:
|
34
|
+
createdBy: PbIdentity!
|
35
35
|
status: PbImportExportPagesTaskStatus!
|
36
36
|
data: PbExportPagesTaskData!
|
37
37
|
stats: PbImportExportPagesTaskStats!
|
@@ -51,7 +51,7 @@ const plugin = {
|
|
51
51
|
type PbImportPagesTask {
|
52
52
|
id: ID!
|
53
53
|
createdOn: DateTime!
|
54
|
-
createdBy:
|
54
|
+
createdBy: PbIdentity!
|
55
55
|
status: PbImportExportPagesTaskStatus!
|
56
56
|
stats: PbImportExportPagesTaskStats!
|
57
57
|
data: PbImportExportPagesTaskData!
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_resolve","require","plugin","type","schema","typeDefs","resolvers","PbQuery","getExportPagesTask","_","args","context","resolve","pageBuilder","pages","id","getImportPagesTask","listImportedPages","taskId","PbMutation","exportPages","importPages","_default","exports","default"],"sources":["pages.gql.ts"],"sourcesContent":["import { GraphQLSchemaPlugin } from \"@webiny/handler-graphql/types\";\nimport {\n ExportPagesParams,\n ImportPagesParams,\n PbExportPagesResponse,\n PbImportExportContext\n} from \"../types\";\nimport { resolve } from \"./utils/resolve\";\nimport { ErrorResponse, Response } from \"@webiny/handler-graphql\";\n\nconst plugin: GraphQLSchemaPlugin<PbImportExportContext> = {\n type: \"graphql-schema\",\n schema: {\n typeDefs: /* GraphQL */ `\n enum PbImportExportPagesTaskStatus {\n pending\n running\n failed\n success\n aborted\n }\n\n type PbImportExportPagesTaskStats {\n completed: Int\n failed: Int\n total: Int\n }\n\n type PbExportPagesTaskData {\n url: String\n error: PbError\n }\n\n type PbExportPagesTask {\n id: ID!\n createdOn: DateTime!\n createdBy:
|
1
|
+
{"version":3,"names":["_resolve","require","plugin","type","schema","typeDefs","resolvers","PbQuery","getExportPagesTask","_","args","context","resolve","pageBuilder","pages","id","getImportPagesTask","listImportedPages","taskId","PbMutation","exportPages","importPages","_default","exports","default"],"sources":["pages.gql.ts"],"sourcesContent":["import { GraphQLSchemaPlugin } from \"@webiny/handler-graphql/types\";\nimport {\n ExportPagesParams,\n ImportPagesParams,\n PbExportPagesResponse,\n PbImportExportContext\n} from \"../types\";\nimport { resolve } from \"./utils/resolve\";\nimport { ErrorResponse, Response } from \"@webiny/handler-graphql\";\n\nconst plugin: GraphQLSchemaPlugin<PbImportExportContext> = {\n type: \"graphql-schema\",\n schema: {\n typeDefs: /* GraphQL */ `\n enum PbImportExportPagesTaskStatus {\n pending\n running\n failed\n success\n aborted\n }\n\n type PbImportExportPagesTaskStats {\n completed: Int\n failed: Int\n total: Int\n }\n\n type PbExportPagesTaskData {\n url: String\n error: PbError\n }\n\n type PbExportPagesTask {\n id: ID!\n createdOn: DateTime!\n createdBy: PbIdentity!\n status: PbImportExportPagesTaskStatus!\n data: PbExportPagesTaskData!\n stats: PbImportExportPagesTaskStats!\n }\n type PbExportPagesData {\n task: PbExportPagesTask!\n }\n\n type PbExportPageResponse {\n data: PbExportPagesData\n error: PbError\n }\n\n type PbImportExportPagesTaskData {\n error: PbError\n }\n type PbImportPagesTask {\n id: ID!\n createdOn: DateTime!\n createdBy: PbIdentity!\n status: PbImportExportPagesTaskStatus!\n stats: PbImportExportPagesTaskStats!\n data: PbImportExportPagesTaskData!\n }\n\n type PbImportPageData {\n task: PbImportPagesTask!\n }\n\n type PbImportPageResponse {\n data: PbImportPageData\n error: PbError\n }\n\n enum PbExportPageRevisionType {\n published\n latest\n }\n\n type PbExportPagesTaskResponse {\n data: PbExportPagesTask\n error: PbError\n }\n\n type PbImportPagesTaskResponse {\n data: PbImportPagesTask\n error: PbError\n }\n\n type PbListImportedPagesData {\n id: ID!\n title: String!\n version: Int!\n }\n type PbListImportedPagesResponse {\n data: [PbListImportedPagesData!]\n error: PbError\n }\n\n extend type PbQuery {\n getExportPagesTask(id: ID!): PbExportPagesTaskResponse!\n getImportPagesTask(id: ID!): PbImportPagesTaskResponse!\n listImportedPages(taskId: ID!): PbListImportedPagesResponse!\n }\n\n extend type PbMutation {\n # Export pages\n exportPages(\n where: PbListPagesWhereInput\n sort: [PbListPagesSort!]\n search: PbListPagesSearchInput\n revisionType: PbExportPageRevisionType!\n ): PbExportPageResponse!\n\n # Import pages\n importPages(\n category: String!\n zipFileUrl: String!\n meta: JSON\n ): PbImportPageResponse!\n }\n `,\n resolvers: {\n PbQuery: {\n async getExportPagesTask(_, args, context) {\n return resolve(() => {\n return context.pageBuilder.pages.getExportPagesTask(args.id);\n });\n },\n async getImportPagesTask(_, args, context) {\n return resolve(() => {\n return context.pageBuilder.pages.getImportPagesTask(args.id);\n });\n },\n async listImportedPages(_, args, context) {\n return resolve(() => {\n return context.pageBuilder.pages.listImportedPages(args.taskId);\n });\n }\n },\n PbMutation: {\n exportPages: async (\n _,\n args,\n context\n ): Promise<Response<PbExportPagesResponse> | ErrorResponse> => {\n return resolve(() => {\n return context.pageBuilder.pages.exportPages(args as ExportPagesParams);\n });\n },\n\n importPages: async (_, args, context) => {\n return resolve(() => {\n return context.pageBuilder.pages.importPages(args as ImportPagesParams);\n });\n }\n }\n }\n }\n};\n\nexport default plugin;\n"],"mappings":";;;;;;AAOA,IAAAA,QAAA,GAAAC,OAAA;AAGA,MAAMC,MAAkD,GAAG;EACvDC,IAAI,EAAE,gBAAgB;EACtBC,MAAM,EAAE;IACJC,QAAQ,EAAE,aAAe;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;IACDC,SAAS,EAAE;MACPC,OAAO,EAAE;QACL,MAAMC,kBAAkBA,CAACC,CAAC,EAAEC,IAAI,EAAEC,OAAO,EAAE;UACvC,OAAO,IAAAC,gBAAO,EAAC,MAAM;YACjB,OAAOD,OAAO,CAACE,WAAW,CAACC,KAAK,CAACN,kBAAkB,CAACE,IAAI,CAACK,EAAE,CAAC;UAChE,CAAC,CAAC;QACN,CAAC;QACD,MAAMC,kBAAkBA,CAACP,CAAC,EAAEC,IAAI,EAAEC,OAAO,EAAE;UACvC,OAAO,IAAAC,gBAAO,EAAC,MAAM;YACjB,OAAOD,OAAO,CAACE,WAAW,CAACC,KAAK,CAACE,kBAAkB,CAACN,IAAI,CAACK,EAAE,CAAC;UAChE,CAAC,CAAC;QACN,CAAC;QACD,MAAME,iBAAiBA,CAACR,CAAC,EAAEC,IAAI,EAAEC,OAAO,EAAE;UACtC,OAAO,IAAAC,gBAAO,EAAC,MAAM;YACjB,OAAOD,OAAO,CAACE,WAAW,CAACC,KAAK,CAACG,iBAAiB,CAACP,IAAI,CAACQ,MAAM,CAAC;UACnE,CAAC,CAAC;QACN;MACJ,CAAC;MACDC,UAAU,EAAE;QACRC,WAAW,EAAE,MAAAA,CACTX,CAAC,EACDC,IAAI,EACJC,OAAO,KACoD;UAC3D,OAAO,IAAAC,gBAAO,EAAC,MAAM;YACjB,OAAOD,OAAO,CAACE,WAAW,CAACC,KAAK,CAACM,WAAW,CAACV,IAAyB,CAAC;UAC3E,CAAC,CAAC;QACN,CAAC;QAEDW,WAAW,EAAE,MAAAA,CAAOZ,CAAC,EAAEC,IAAI,EAAEC,OAAO,KAAK;UACrC,OAAO,IAAAC,gBAAO,EAAC,MAAM;YACjB,OAAOD,OAAO,CAACE,WAAW,CAACC,KAAK,CAACO,WAAW,CAACX,IAAyB,CAAC;UAC3E,CAAC,CAAC;QACN;MACJ;IACJ;EACJ;AACJ,CAAC;AAAC,IAAAY,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAEatB,MAAM","ignoreList":[]}
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { ErrorResponse, ListErrorResponse, ListResponse, Response } from "@webiny/handler-graphql";
|
2
|
-
export declare const resolve: (fn: () => Promise<any>) => Promise<Response<any
|
3
|
-
export declare const resolveList: (fn: () => Promise<any>) => Promise<ListResponse<unknown, any
|
2
|
+
export declare const resolve: (fn: () => Promise<any>) => Promise<ErrorResponse | Response<any>>;
|
3
|
+
export declare const resolveList: (fn: () => Promise<any>) => Promise<ListErrorResponse | ListResponse<unknown, any>>;
|
package/graphql/types.d.ts
CHANGED
@@ -122,7 +122,7 @@ export interface OnBlocksBeforeImportTopicParams {
|
|
122
122
|
export interface OnBlocksAfterImportTopicParams {
|
123
123
|
params: ImportBlocksParams;
|
124
124
|
}
|
125
|
-
export
|
125
|
+
export type BlocksImportExportCrud = {
|
126
126
|
exportBlocks(params: ExportBlocksParams): Promise<{
|
127
127
|
task: ImportExportTask;
|
128
128
|
}>;
|
@@ -165,7 +165,7 @@ export interface OnTemplatesBeforeImportTopicParams {
|
|
165
165
|
export interface OnTemplatesAfterImportTopicParams {
|
166
166
|
params: ImportTemplatesParams;
|
167
167
|
}
|
168
|
-
export
|
168
|
+
export type TemplatesImportExportCrud = {
|
169
169
|
exportTemplates(params: ExportTemplatesParams): Promise<{
|
170
170
|
task: ImportExportTask;
|
171
171
|
}>;
|
@@ -212,7 +212,7 @@ export interface OnFormsBeforeImportTopicParams {
|
|
212
212
|
export interface OnFormsAfterImportTopicParams {
|
213
213
|
params: ImportFormsParams;
|
214
214
|
}
|
215
|
-
export
|
215
|
+
export type FormsImportExportCrud = {
|
216
216
|
exportForms(params: ExportFormsParams): Promise<{
|
217
217
|
task: ImportExportTask;
|
218
218
|
}>;
|
@@ -224,8 +224,8 @@ export declare type FormsImportExportCrud = {
|
|
224
224
|
onFormsBeforeImport: Topic<OnFormsBeforeImportTopicParams>;
|
225
225
|
onFormsAfterImport: Topic<OnFormsAfterImportTopicParams>;
|
226
226
|
};
|
227
|
-
|
228
|
-
export
|
227
|
+
type ImportExportTaskCreateData = Omit<ImportExportTask, "id" | "createdOn" | "createdBy">;
|
228
|
+
export type ImportExportTaskCrud = {
|
229
229
|
/**
|
230
230
|
* To be used internally in our code.
|
231
231
|
* @internal
|
package/import/pages/types.d.ts
CHANGED
@@ -27,7 +27,7 @@ export interface IImportPagesControllerInput {
|
|
27
27
|
export interface IImportPagesControllerOutput extends ITaskResponseDoneResultOutput {
|
28
28
|
total: number;
|
29
29
|
}
|
30
|
-
export
|
30
|
+
export type IImportPagesControllerTaskParams = ITaskRunParams<PbImportExportContext, IImportPagesControllerInput, IImportPagesControllerOutput>;
|
31
31
|
/**
|
32
32
|
* Process Pages.
|
33
33
|
*/
|
@@ -45,4 +45,4 @@ export interface IImportPagesProcessPagesOutput extends ITaskResponseDoneResultO
|
|
45
45
|
failed: string[];
|
46
46
|
pageIdList: string[];
|
47
47
|
}
|
48
|
-
export
|
48
|
+
export type IImportPagesProcessPagesTaskParams = ITaskRunParams<PbImportExportContext, IImportPagesProcessPagesInput, IImportPagesProcessPagesOutput>;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { FileInput } from "@webiny/api-file-manager/types";
|
2
|
-
export
|
2
|
+
export type UploadFileMap = Map<string, FileInput>;
|
3
3
|
export declare function uploadFilesFromS3(fileMap: UploadFileMap): Promise<import("@aws-sdk/client-s3").CompleteMultipartUploadCommandOutput[]>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@webiny/api-page-builder-import-export",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.41.0-dbt.0",
|
4
4
|
"main": "index.js",
|
5
5
|
"keywords": [
|
6
6
|
"pbie:base"
|
@@ -17,20 +17,20 @@
|
|
17
17
|
"@babel/runtime": "7.24.1",
|
18
18
|
"@commodo/fields": "1.1.2-beta.20",
|
19
19
|
"@smithy/node-http-handler": "2.1.6",
|
20
|
-
"@webiny/api": "5.
|
21
|
-
"@webiny/api-file-manager": "5.
|
22
|
-
"@webiny/api-form-builder": "5.
|
23
|
-
"@webiny/api-page-builder": "5.
|
24
|
-
"@webiny/api-security": "5.
|
25
|
-
"@webiny/aws-sdk": "5.
|
26
|
-
"@webiny/error": "5.
|
27
|
-
"@webiny/handler": "5.
|
28
|
-
"@webiny/handler-aws": "5.
|
29
|
-
"@webiny/handler-graphql": "5.
|
30
|
-
"@webiny/pubsub": "5.
|
31
|
-
"@webiny/tasks": "5.
|
32
|
-
"@webiny/utils": "5.
|
33
|
-
"@webiny/validation": "5.
|
20
|
+
"@webiny/api": "5.41.0-dbt.0",
|
21
|
+
"@webiny/api-file-manager": "5.41.0-dbt.0",
|
22
|
+
"@webiny/api-form-builder": "5.41.0-dbt.0",
|
23
|
+
"@webiny/api-page-builder": "5.41.0-dbt.0",
|
24
|
+
"@webiny/api-security": "5.41.0-dbt.0",
|
25
|
+
"@webiny/aws-sdk": "5.41.0-dbt.0",
|
26
|
+
"@webiny/error": "5.41.0-dbt.0",
|
27
|
+
"@webiny/handler": "5.41.0-dbt.0",
|
28
|
+
"@webiny/handler-aws": "5.41.0-dbt.0",
|
29
|
+
"@webiny/handler-graphql": "5.41.0-dbt.0",
|
30
|
+
"@webiny/pubsub": "5.41.0-dbt.0",
|
31
|
+
"@webiny/tasks": "5.41.0-dbt.0",
|
32
|
+
"@webiny/utils": "5.41.0-dbt.0",
|
33
|
+
"@webiny/validation": "5.41.0-dbt.0",
|
34
34
|
"archiver": "7.0.1",
|
35
35
|
"commodo-fields-object": "1.0.6",
|
36
36
|
"dot-prop-immutable": "2.1.1",
|
@@ -51,18 +51,18 @@
|
|
51
51
|
"@types/archiver": "5.3.1",
|
52
52
|
"@types/node-fetch": "2.6.2",
|
53
53
|
"@types/yauzl": "2.10.0",
|
54
|
-
"@webiny/api-authentication": "5.
|
55
|
-
"@webiny/api-dynamodb-to-elasticsearch": "5.
|
56
|
-
"@webiny/api-tenancy": "5.
|
57
|
-
"@webiny/api-wcp": "5.
|
58
|
-
"@webiny/cli": "5.
|
59
|
-
"@webiny/db": "5.
|
60
|
-
"@webiny/project-utils": "5.
|
54
|
+
"@webiny/api-authentication": "5.41.0-dbt.0",
|
55
|
+
"@webiny/api-dynamodb-to-elasticsearch": "5.41.0-dbt.0",
|
56
|
+
"@webiny/api-tenancy": "5.41.0-dbt.0",
|
57
|
+
"@webiny/api-wcp": "5.41.0-dbt.0",
|
58
|
+
"@webiny/cli": "5.41.0-dbt.0",
|
59
|
+
"@webiny/db": "5.41.0-dbt.0",
|
60
|
+
"@webiny/project-utils": "5.41.0-dbt.0",
|
61
61
|
"jest": "29.7.0",
|
62
62
|
"jest-dynalite": "3.6.1",
|
63
63
|
"rimraf": "5.0.5",
|
64
64
|
"ttypescript": "1.5.15",
|
65
|
-
"typescript": "4.
|
65
|
+
"typescript": "4.9.5"
|
66
66
|
},
|
67
67
|
"publishConfig": {
|
68
68
|
"access": "public",
|
@@ -72,5 +72,5 @@
|
|
72
72
|
"build": "yarn webiny run build",
|
73
73
|
"watch": "yarn webiny run watch"
|
74
74
|
},
|
75
|
-
"gitHead": "
|
75
|
+
"gitHead": "bbaec4dd1685579548c08bbde386aee5d96b80f8"
|
76
76
|
}
|
package/types.d.ts
CHANGED
@@ -71,7 +71,7 @@ export interface ImportExportTaskStorageOperationsListParams {
|
|
71
71
|
* @category StorageOperations
|
72
72
|
* @category ImportExportTaskStorageOperations
|
73
73
|
*/
|
74
|
-
export
|
74
|
+
export type ImportExportTaskStorageOperationsListResponse = [ImportExportTask[], MetaResponse];
|
75
75
|
/**
|
76
76
|
* @category StorageOperations
|
77
77
|
* @category ImportExportTaskStorageOperations
|
@@ -128,7 +128,7 @@ export interface ImportExportTaskStorageOperationsListSubTaskParams {
|
|
128
128
|
* @category StorageOperations
|
129
129
|
* @category ImportExportTaskStorageOperations
|
130
130
|
*/
|
131
|
-
export
|
131
|
+
export type ImportExportTaskStorageOperationsListSubTaskResponse = [
|
132
132
|
ImportExportTask[],
|
133
133
|
MetaResponse
|
134
134
|
];
|