@strapi/core 0.0.0-next.4052765aa209dd4f3d92b81baee295fc0213c04c → 0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de
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/loaders/plugins/get-enabled-plugins.js +1 -1
- package/dist/loaders/plugins/get-enabled-plugins.js.map +1 -1
- package/dist/loaders/plugins/get-enabled-plugins.mjs +1 -1
- package/dist/loaders/plugins/get-enabled-plugins.mjs.map +1 -1
- package/dist/migrations/database/5.0.0-discard-drafts.d.ts.map +1 -1
- package/dist/migrations/database/5.0.0-discard-drafts.js +14 -2
- package/dist/migrations/database/5.0.0-discard-drafts.js.map +1 -1
- package/dist/migrations/database/5.0.0-discard-drafts.mjs +14 -2
- package/dist/migrations/database/5.0.0-discard-drafts.mjs.map +1 -1
- package/dist/services/cron.js +9 -4
- package/dist/services/cron.js.map +1 -1
- package/dist/services/cron.mjs +9 -4
- package/dist/services/cron.mjs.map +1 -1
- package/dist/services/document-service/common.d.ts +1 -1
- package/dist/services/document-service/common.d.ts.map +1 -1
- package/dist/services/document-service/common.js.map +1 -1
- package/dist/services/document-service/common.mjs.map +1 -1
- package/dist/services/document-service/entries.d.ts +2 -2
- package/dist/services/document-service/entries.d.ts.map +1 -1
- package/dist/services/document-service/entries.js +6 -7
- package/dist/services/document-service/entries.js.map +1 -1
- package/dist/services/document-service/entries.mjs +1 -2
- package/dist/services/document-service/entries.mjs.map +1 -1
- package/dist/services/document-service/index.d.ts +2 -1
- package/dist/services/document-service/index.d.ts.map +1 -1
- package/dist/services/document-service/index.js +3 -2
- package/dist/services/document-service/index.js.map +1 -1
- package/dist/services/document-service/index.mjs +3 -2
- package/dist/services/document-service/index.mjs.map +1 -1
- package/dist/services/document-service/repository.d.ts.map +1 -1
- package/dist/services/document-service/repository.js +21 -6
- package/dist/services/document-service/repository.js.map +1 -1
- package/dist/services/document-service/repository.mjs +21 -6
- package/dist/services/document-service/repository.mjs.map +1 -1
- package/dist/services/document-service/transform/id-map.d.ts.map +1 -1
- package/dist/services/document-service/transform/id-map.js +13 -4
- package/dist/services/document-service/transform/id-map.js.map +1 -1
- package/dist/services/document-service/transform/id-map.mjs +14 -5
- package/dist/services/document-service/transform/id-map.mjs.map +1 -1
- package/dist/services/document-service/transform/relations/extract/data-ids.d.ts.map +1 -1
- package/dist/services/document-service/transform/relations/extract/data-ids.js +13 -6
- package/dist/services/document-service/transform/relations/extract/data-ids.js.map +1 -1
- package/dist/services/document-service/transform/relations/extract/data-ids.mjs +13 -6
- package/dist/services/document-service/transform/relations/extract/data-ids.mjs.map +1 -1
- package/dist/services/document-service/transform/relations/transform/data-ids.d.ts.map +1 -1
- package/dist/services/document-service/transform/relations/transform/data-ids.js +16 -6
- package/dist/services/document-service/transform/relations/transform/data-ids.js.map +1 -1
- package/dist/services/document-service/transform/relations/transform/data-ids.mjs +17 -7
- package/dist/services/document-service/transform/relations/transform/data-ids.mjs.map +1 -1
- package/dist/services/document-service/transform/relations/utils/map-relation.d.ts.map +1 -1
- package/dist/services/document-service/transform/relations/utils/map-relation.js +0 -4
- package/dist/services/document-service/transform/relations/utils/map-relation.js.map +1 -1
- package/dist/services/document-service/transform/relations/utils/map-relation.mjs +0 -4
- package/dist/services/document-service/transform/relations/utils/map-relation.mjs.map +1 -1
- package/dist/services/document-service/utils/populate.d.ts.map +1 -1
- package/dist/services/document-service/utils/populate.js +1 -1
- package/dist/services/document-service/utils/populate.js.map +1 -1
- package/dist/services/document-service/utils/populate.mjs +1 -1
- package/dist/services/document-service/utils/populate.mjs.map +1 -1
- package/dist/services/document-service/utils/unidirectional-relations.d.ts +11 -8
- package/dist/services/document-service/utils/unidirectional-relations.d.ts.map +1 -1
- package/dist/services/document-service/utils/unidirectional-relations.js +26 -14
- package/dist/services/document-service/utils/unidirectional-relations.js.map +1 -1
- package/dist/services/document-service/utils/unidirectional-relations.mjs +27 -15
- package/dist/services/document-service/utils/unidirectional-relations.mjs.map +1 -1
- package/dist/utils/transform-content-types-to-models.d.ts +353 -21
- package/dist/utils/transform-content-types-to-models.d.ts.map +1 -1
- package/package.json +15 -15
@@ -1,5 +1,5 @@
|
|
1
|
-
import { keyBy } from "lodash/fp";
|
2
|
-
const load = async (uid,
|
1
|
+
import { omit, keyBy } from "lodash/fp";
|
2
|
+
const load = async (uid, { oldVersions, newVersions }) => {
|
3
3
|
const updates = [];
|
4
4
|
await strapi.db.transaction(async ({ trx }) => {
|
5
5
|
const contentTypes = Object.values(strapi.contentTypes);
|
@@ -7,21 +7,33 @@ const load = async (uid, oldEntries) => {
|
|
7
7
|
for (const model of [...contentTypes, ...components]) {
|
8
8
|
const dbModel = strapi.db.metadata.get(model.uid);
|
9
9
|
for (const attribute of Object.values(dbModel.attributes)) {
|
10
|
-
if (attribute.type !== "relation")
|
11
|
-
continue;
|
12
|
-
if (attribute.target !== uid)
|
13
|
-
continue;
|
14
|
-
if (attribute.inversedBy || attribute.mappedBy)
|
10
|
+
if (attribute.type !== "relation" || attribute.target !== uid || attribute.inversedBy || attribute.mappedBy) {
|
15
11
|
continue;
|
12
|
+
}
|
16
13
|
const joinTable = attribute.joinTable;
|
17
|
-
if (!joinTable)
|
18
|
-
continue;
|
19
|
-
const { name } = joinTable.inverseJoinColumn;
|
20
|
-
const oldEntriesIds = oldEntries.map((entry) => entry.id);
|
21
|
-
const relations = await strapi.db.getConnection().select("*").from(joinTable.name).whereIn(name, oldEntriesIds).transacting(trx);
|
22
|
-
if (relations.length === 0)
|
14
|
+
if (!joinTable) {
|
23
15
|
continue;
|
24
|
-
|
16
|
+
}
|
17
|
+
const { name: sourceColumnName } = joinTable.joinColumn;
|
18
|
+
const { name: targetColumnName } = joinTable.inverseJoinColumn;
|
19
|
+
const ids = oldVersions.map((entry) => entry.id);
|
20
|
+
const oldVersionsRelations = await strapi.db.getConnection().select("*").from(joinTable.name).whereIn(targetColumnName, ids).transacting(trx);
|
21
|
+
if (oldVersionsRelations.length > 0) {
|
22
|
+
updates.push({ joinTable, relations: oldVersionsRelations });
|
23
|
+
}
|
24
|
+
if (!model.options?.draftAndPublish) {
|
25
|
+
const ids2 = newVersions.map((entry) => entry.id);
|
26
|
+
const newVersionsRelations = await strapi.db.getConnection().select("*").from(joinTable.name).whereIn(targetColumnName, ids2).transacting(trx);
|
27
|
+
if (newVersionsRelations.length > 0) {
|
28
|
+
const discardToAdd = newVersionsRelations.filter((relation) => {
|
29
|
+
const matchingOldVerion = oldVersionsRelations.find((oldRelation) => {
|
30
|
+
return oldRelation[sourceColumnName] === relation[sourceColumnName];
|
31
|
+
});
|
32
|
+
return !matchingOldVerion;
|
33
|
+
}).map(omit("id"));
|
34
|
+
updates.push({ joinTable, relations: discardToAdd });
|
35
|
+
}
|
36
|
+
}
|
25
37
|
}
|
26
38
|
}
|
27
39
|
});
|
@@ -41,8 +53,8 @@ const sync = async (oldEntries, newEntries, oldRelations) => {
|
|
41
53
|
);
|
42
54
|
await strapi.db.transaction(async ({ trx }) => {
|
43
55
|
for (const { joinTable, relations } of oldRelations) {
|
56
|
+
const column = joinTable.inverseJoinColumn.name;
|
44
57
|
const newRelations = relations.map((relation) => {
|
45
|
-
const column = joinTable.inverseJoinColumn.name;
|
46
58
|
const newId = oldEntriesMap[relation[column]];
|
47
59
|
return { ...relation, [column]: newId };
|
48
60
|
});
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"unidirectional-relations.mjs","sources":["../../../../src/services/document-service/utils/unidirectional-relations.ts"],"sourcesContent":["/* eslint-disable no-continue */\nimport { keyBy } from 'lodash/fp';\n\nimport { UID, Schema } from '@strapi/types';\n\n/**\n * Loads lingering relations that need to be updated when overriding a published or draft entry.\n * This is necessary because the relations are uni-directional and the target entry is not aware of the source entry.\n * This is not the case for bi-directional relations, where the target entry is also linked to the source entry.\n
|
1
|
+
{"version":3,"file":"unidirectional-relations.mjs","sources":["../../../../src/services/document-service/utils/unidirectional-relations.ts"],"sourcesContent":["/* eslint-disable no-continue */\nimport { keyBy, omit } from 'lodash/fp';\n\nimport { UID, Schema } from '@strapi/types';\n\ninterface LoadContext {\n oldVersions: { id: string; locale: string }[];\n newVersions: { id: string; locale: string }[];\n}\n\n/**\n * Loads lingering relations that need to be updated when overriding a published or draft entry.\n * This is necessary because the relations are uni-directional and the target entry is not aware of the source entry.\n * This is not the case for bi-directional relations, where the target entry is also linked to the source entry.\n */\nconst load = async (uid: UID.ContentType, { oldVersions, newVersions }: LoadContext) => {\n const updates = [] as any;\n\n // Iterate all components and content types to find relations that need to be updated\n await strapi.db.transaction(async ({ trx }) => {\n const contentTypes = Object.values(strapi.contentTypes) as Schema.ContentType[];\n const components = Object.values(strapi.components) as Schema.Component[];\n\n for (const model of [...contentTypes, ...components]) {\n const dbModel = strapi.db.metadata.get(model.uid);\n\n for (const attribute of Object.values(dbModel.attributes) as any) {\n /**\n * Only consider unidirectional relations\n */\n if (\n attribute.type !== 'relation' ||\n attribute.target !== uid ||\n attribute.inversedBy ||\n attribute.mappedBy\n ) {\n continue;\n }\n\n // TODO: joinColumn relations\n const joinTable = attribute.joinTable;\n if (!joinTable) {\n continue;\n }\n\n const { name: sourceColumnName } = joinTable.joinColumn;\n const { name: targetColumnName } = joinTable.inverseJoinColumn;\n\n /**\n * Load all relations that need to be updated\n */\n // NOTE: when the model has draft and publish, we can assume relation are only draft to draft & published to published\n const ids = oldVersions.map((entry) => entry.id);\n\n const oldVersionsRelations = await strapi.db\n .getConnection()\n .select('*')\n .from(joinTable.name)\n .whereIn(targetColumnName, ids)\n .transacting(trx);\n\n if (oldVersionsRelations.length > 0) {\n updates.push({ joinTable, relations: oldVersionsRelations });\n }\n\n /**\n * if publishing\n * if published version exists\n * updated published versions links\n * else\n * create link to newly published version\n *\n * if discarding\n * if published version link exists & not draft version link\n * create link to new draft version\n */\n\n if (!model.options?.draftAndPublish) {\n const ids = newVersions.map((entry) => entry.id);\n\n const newVersionsRelations = await strapi.db\n .getConnection()\n .select('*')\n .from(joinTable.name)\n .whereIn(targetColumnName, ids)\n .transacting(trx);\n\n if (newVersionsRelations.length > 0) {\n // when publishing a draft that doesn't have a published version yet,\n // copy the links to the draft over to the published version\n // when discarding a published version, if no drafts exists\n const discardToAdd = newVersionsRelations\n .filter((relation) => {\n const matchingOldVerion = oldVersionsRelations.find((oldRelation) => {\n return oldRelation[sourceColumnName] === relation[sourceColumnName];\n });\n\n return !matchingOldVerion;\n })\n .map(omit('id'));\n\n updates.push({ joinTable, relations: discardToAdd });\n }\n }\n }\n }\n });\n\n return updates;\n};\n\n/**\n * Updates uni directional relations to target the right entries when overriding published or draft entries.\n *\n * @param oldEntries The old entries that are being overridden\n * @param newEntries The new entries that are overriding the old ones\n * @param oldRelations The relations that were previously loaded with `load` @see load\n */\nconst sync = async (\n oldEntries: { id: string; locale: string }[],\n newEntries: { id: string; locale: string }[],\n oldRelations: { joinTable: any; relations: any[] }[]\n) => {\n /**\n * Create a map of old entry ids to new entry ids\n *\n * Will be used to update the relation target ids\n */\n const newEntryByLocale = keyBy('locale', newEntries);\n const oldEntriesMap = oldEntries.reduce(\n (acc, entry) => {\n const newEntry = newEntryByLocale[entry.locale];\n if (!newEntry) return acc;\n acc[entry.id] = newEntry.id;\n return acc;\n },\n {} as Record<string, string>\n );\n\n await strapi.db.transaction(async ({ trx }) => {\n // Iterate old relations that are deleted and insert the new ones\n for (const { joinTable, relations } of oldRelations) {\n // Update old ids with the new ones\n const column = joinTable.inverseJoinColumn.name;\n\n const newRelations = relations.map((relation) => {\n const newId = oldEntriesMap[relation[column]];\n return { ...relation, [column]: newId };\n });\n\n // Insert those relations into the join table\n await trx.batchInsert(joinTable.name, newRelations, 1000);\n }\n });\n};\n\nexport { load, sync };\n"],"names":["ids"],"mappings":";AAeA,MAAM,OAAO,OAAO,KAAsB,EAAE,aAAa,kBAA+B;AACtF,QAAM,UAAU,CAAA;AAGhB,QAAM,OAAO,GAAG,YAAY,OAAO,EAAE,UAAU;AAC7C,UAAM,eAAe,OAAO,OAAO,OAAO,YAAY;AACtD,UAAM,aAAa,OAAO,OAAO,OAAO,UAAU;AAElD,eAAW,SAAS,CAAC,GAAG,cAAc,GAAG,UAAU,GAAG;AACpD,YAAM,UAAU,OAAO,GAAG,SAAS,IAAI,MAAM,GAAG;AAEhD,iBAAW,aAAa,OAAO,OAAO,QAAQ,UAAU,GAAU;AAK9D,YAAA,UAAU,SAAS,cACnB,UAAU,WAAW,OACrB,UAAU,cACV,UAAU,UACV;AACA;AAAA,QACF;AAGA,cAAM,YAAY,UAAU;AAC5B,YAAI,CAAC,WAAW;AACd;AAAA,QACF;AAEA,cAAM,EAAE,MAAM,qBAAqB,UAAU;AAC7C,cAAM,EAAE,MAAM,qBAAqB,UAAU;AAM7C,cAAM,MAAM,YAAY,IAAI,CAAC,UAAU,MAAM,EAAE;AAE/C,cAAM,uBAAuB,MAAM,OAAO,GACvC,gBACA,OAAO,GAAG,EACV,KAAK,UAAU,IAAI,EACnB,QAAQ,kBAAkB,GAAG,EAC7B,YAAY,GAAG;AAEd,YAAA,qBAAqB,SAAS,GAAG;AACnC,kBAAQ,KAAK,EAAE,WAAW,WAAW,qBAAsB,CAAA;AAAA,QAC7D;AAcI,YAAA,CAAC,MAAM,SAAS,iBAAiB;AACnC,gBAAMA,OAAM,YAAY,IAAI,CAAC,UAAU,MAAM,EAAE;AAE/C,gBAAM,uBAAuB,MAAM,OAAO,GACvC,gBACA,OAAO,GAAG,EACV,KAAK,UAAU,IAAI,EACnB,QAAQ,kBAAkBA,IAAG,EAC7B,YAAY,GAAG;AAEd,cAAA,qBAAqB,SAAS,GAAG;AAInC,kBAAM,eAAe,qBAClB,OAAO,CAAC,aAAa;AACpB,oBAAM,oBAAoB,qBAAqB,KAAK,CAAC,gBAAgB;AACnE,uBAAO,YAAY,gBAAgB,MAAM,SAAS,gBAAgB;AAAA,cAAA,CACnE;AAED,qBAAO,CAAC;AAAA,YACT,CAAA,EACA,IAAI,KAAK,IAAI,CAAC;AAEjB,oBAAQ,KAAK,EAAE,WAAW,WAAW,aAAc,CAAA;AAAA,UACrD;AAAA,QACF;AAAA,MACF;AAAA,IACF;AAAA,EAAA,CACD;AAEM,SAAA;AACT;AASA,MAAM,OAAO,OACX,YACA,YACA,iBACG;AAMG,QAAA,mBAAmB,MAAM,UAAU,UAAU;AACnD,QAAM,gBAAgB,WAAW;AAAA,IAC/B,CAAC,KAAK,UAAU;AACR,YAAA,WAAW,iBAAiB,MAAM,MAAM;AAC9C,UAAI,CAAC;AAAiB,eAAA;AAClB,UAAA,MAAM,EAAE,IAAI,SAAS;AAClB,aAAA;AAAA,IACT;AAAA,IACA,CAAC;AAAA,EAAA;AAGH,QAAM,OAAO,GAAG,YAAY,OAAO,EAAE,UAAU;AAE7C,eAAW,EAAE,WAAW,UAAU,KAAK,cAAc;AAE7C,YAAA,SAAS,UAAU,kBAAkB;AAE3C,YAAM,eAAe,UAAU,IAAI,CAAC,aAAa;AAC/C,cAAM,QAAQ,cAAc,SAAS,MAAM,CAAC;AAC5C,eAAO,EAAE,GAAG,UAAU,CAAC,MAAM,GAAG,MAAM;AAAA,MAAA,CACvC;AAGD,YAAM,IAAI,YAAY,UAAU,MAAM,cAAc,GAAI;AAAA,IAC1D;AAAA,EAAA,CACD;AACH;"}
|
@@ -20,47 +20,379 @@ export declare const getComponentJoinColumnInverseName: (identifiers: Identifier
|
|
20
20
|
export declare const getComponentTypeColumn: (identifiers: Identifiers) => string;
|
21
21
|
export declare const getComponentFkIndexName: (contentType: string, identifiers: Identifiers) => string;
|
22
22
|
export type LoadedContentTypeModel = Struct.ContentTypeSchema & Required<Pick<Struct.ContentTypeSchema, 'collectionName' | 'uid' | 'modelName'>> & Pick<Model, 'lifecycles'>;
|
23
|
-
export declare const transformAttribute: (name: string, attribute: Schema.Attribute.AnyAttribute, contentType: LoadedContentTypeModel, identifiers: Identifiers) =>
|
23
|
+
export declare const transformAttribute: (name: string, attribute: Schema.Attribute.AnyAttribute, contentType: LoadedContentTypeModel, identifiers: Identifiers) => {
|
24
|
+
type: "biginteger";
|
25
|
+
pluginOptions?: object | undefined;
|
26
|
+
searchable?: boolean | undefined;
|
27
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
28
|
+
configurable?: boolean | undefined;
|
29
|
+
default?: string | (() => string) | undefined;
|
30
|
+
min?: string | undefined;
|
31
|
+
max?: string | undefined;
|
32
|
+
private?: boolean | undefined;
|
33
|
+
required?: boolean | undefined;
|
34
|
+
writable?: boolean | undefined;
|
35
|
+
visible?: boolean | undefined;
|
36
|
+
unique?: boolean | undefined;
|
37
|
+
} | {
|
38
|
+
type: "boolean";
|
39
|
+
pluginOptions?: object | undefined;
|
40
|
+
searchable?: boolean | undefined;
|
41
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
42
|
+
configurable?: boolean | undefined;
|
43
|
+
default?: boolean | (() => boolean) | undefined;
|
44
|
+
private?: boolean | undefined;
|
45
|
+
required?: boolean | undefined;
|
46
|
+
writable?: boolean | undefined;
|
47
|
+
visible?: boolean | undefined;
|
48
|
+
} | {
|
49
|
+
type: "blocks";
|
50
|
+
pluginOptions?: object | undefined;
|
51
|
+
searchable?: boolean | undefined;
|
52
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
53
|
+
configurable?: boolean | undefined;
|
54
|
+
private?: boolean | undefined;
|
55
|
+
required?: boolean | undefined;
|
56
|
+
writable?: boolean | undefined;
|
57
|
+
visible?: boolean | undefined;
|
58
|
+
} | {
|
59
|
+
type: "datetime";
|
60
|
+
pluginOptions?: object | undefined;
|
61
|
+
searchable?: boolean | undefined;
|
62
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
63
|
+
configurable?: boolean | undefined;
|
64
|
+
default?: Schema.Attribute.DateTimeValue | (() => Schema.Attribute.DateTimeValue) | undefined;
|
65
|
+
private?: boolean | undefined;
|
66
|
+
required?: boolean | undefined;
|
67
|
+
unique?: boolean | undefined;
|
68
|
+
writable?: boolean | undefined;
|
69
|
+
visible?: boolean | undefined;
|
70
|
+
} | {
|
71
|
+
type: "date";
|
72
|
+
pluginOptions?: object | undefined;
|
73
|
+
searchable?: boolean | undefined;
|
74
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
75
|
+
configurable?: boolean | undefined;
|
76
|
+
default?: Schema.Attribute.DateValue | (() => Schema.Attribute.DateValue) | undefined;
|
77
|
+
private?: boolean | undefined;
|
78
|
+
required?: boolean | undefined;
|
79
|
+
unique?: boolean | undefined;
|
80
|
+
writable?: boolean | undefined;
|
81
|
+
visible?: boolean | undefined;
|
82
|
+
} | {
|
83
|
+
type: "decimal";
|
84
|
+
pluginOptions?: object | undefined;
|
85
|
+
searchable?: boolean | undefined;
|
86
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
87
|
+
configurable?: boolean | undefined;
|
88
|
+
default?: number | (() => number) | undefined;
|
89
|
+
min?: number | undefined;
|
90
|
+
max?: number | undefined;
|
91
|
+
private?: boolean | undefined;
|
92
|
+
required?: boolean | undefined;
|
93
|
+
writable?: boolean | undefined;
|
94
|
+
visible?: boolean | undefined;
|
95
|
+
unique?: boolean | undefined;
|
96
|
+
} | {
|
97
|
+
type: "email";
|
98
|
+
pluginOptions?: object | undefined;
|
99
|
+
searchable?: boolean | undefined;
|
100
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
101
|
+
configurable?: boolean | undefined;
|
102
|
+
default?: string | (() => string) | undefined;
|
103
|
+
minLength?: number | undefined;
|
104
|
+
maxLength?: number | undefined;
|
105
|
+
private?: boolean | undefined;
|
106
|
+
required?: boolean | undefined;
|
107
|
+
unique?: boolean | undefined;
|
108
|
+
writable?: boolean | undefined;
|
109
|
+
visible?: boolean | undefined;
|
110
|
+
} | {
|
111
|
+
type: "enumeration";
|
112
|
+
pluginOptions?: object | undefined;
|
113
|
+
searchable?: boolean | undefined;
|
114
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
115
|
+
enum: string[];
|
116
|
+
enumName?: string | undefined;
|
117
|
+
configurable?: boolean | undefined;
|
118
|
+
default?: string | (() => string) | undefined;
|
119
|
+
private?: boolean | undefined;
|
120
|
+
required?: boolean | undefined;
|
121
|
+
writable?: boolean | undefined;
|
122
|
+
visible?: boolean | undefined;
|
123
|
+
} | {
|
124
|
+
type: "float";
|
125
|
+
pluginOptions?: object | undefined;
|
126
|
+
searchable?: boolean | undefined;
|
127
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
128
|
+
configurable?: boolean | undefined;
|
129
|
+
default?: number | (() => number) | undefined;
|
130
|
+
min?: number | undefined;
|
131
|
+
max?: number | undefined;
|
132
|
+
private?: boolean | undefined;
|
133
|
+
required?: boolean | undefined;
|
134
|
+
writable?: boolean | undefined;
|
135
|
+
visible?: boolean | undefined;
|
136
|
+
unique?: boolean | undefined;
|
137
|
+
} | {
|
138
|
+
type: "integer";
|
139
|
+
pluginOptions?: object | undefined;
|
140
|
+
searchable?: boolean | undefined;
|
141
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
142
|
+
configurable?: boolean | undefined;
|
143
|
+
default?: number | (() => number) | undefined;
|
144
|
+
min?: number | undefined;
|
145
|
+
max?: number | undefined;
|
146
|
+
private?: boolean | undefined;
|
147
|
+
required?: boolean | undefined;
|
148
|
+
writable?: boolean | undefined;
|
149
|
+
visible?: boolean | undefined;
|
150
|
+
unique?: boolean | undefined;
|
151
|
+
} | {
|
152
|
+
type: "json";
|
153
|
+
pluginOptions?: object | undefined;
|
154
|
+
searchable?: boolean | undefined;
|
155
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
156
|
+
configurable?: boolean | undefined;
|
157
|
+
required?: boolean | undefined;
|
158
|
+
private?: boolean | undefined;
|
159
|
+
writable?: boolean | undefined;
|
160
|
+
visible?: boolean | undefined;
|
161
|
+
default?: import("@strapi/types/dist/utils").JSONPrimitive | (() => import("@strapi/types/dist/utils").JSONPrimitive) | undefined;
|
162
|
+
} | {
|
163
|
+
type: "password";
|
164
|
+
pluginOptions?: object | undefined;
|
165
|
+
searchable?: boolean | undefined;
|
166
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
167
|
+
configurable?: boolean | undefined;
|
168
|
+
default?: string | (() => string) | undefined;
|
169
|
+
minLength?: number | undefined;
|
170
|
+
maxLength?: number | undefined;
|
171
|
+
private?: boolean | undefined;
|
172
|
+
required?: boolean | undefined;
|
173
|
+
writable?: boolean | undefined;
|
174
|
+
visible?: boolean | undefined;
|
175
|
+
} | {
|
176
|
+
type: "relation";
|
177
|
+
pluginOptions?: object | undefined;
|
178
|
+
searchable?: boolean | undefined;
|
179
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
180
|
+
configurable?: boolean | undefined;
|
181
|
+
private?: boolean | undefined;
|
182
|
+
writable?: boolean | undefined;
|
183
|
+
visible?: boolean | undefined;
|
184
|
+
required?: boolean | undefined;
|
24
185
|
useJoinTable?: boolean | undefined;
|
25
|
-
} & {
|
26
186
|
relation: "morphToOne";
|
27
|
-
}
|
187
|
+
} | {
|
188
|
+
type: "relation";
|
189
|
+
pluginOptions?: object | undefined;
|
190
|
+
searchable?: boolean | undefined;
|
191
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
192
|
+
configurable?: boolean | undefined;
|
193
|
+
private?: boolean | undefined;
|
194
|
+
writable?: boolean | undefined;
|
195
|
+
visible?: boolean | undefined;
|
196
|
+
required?: boolean | undefined;
|
28
197
|
useJoinTable?: boolean | undefined;
|
29
|
-
} & {
|
30
198
|
relation: "morphToMany";
|
31
|
-
}
|
199
|
+
} | {
|
200
|
+
type: "relation";
|
201
|
+
pluginOptions?: object | undefined;
|
202
|
+
searchable?: boolean | undefined;
|
203
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
204
|
+
target: import("@strapi/types/dist/uid").ContentType;
|
205
|
+
inversedBy?: string | undefined;
|
206
|
+
mappedBy?: string | undefined;
|
207
|
+
configurable?: boolean | undefined;
|
208
|
+
private?: boolean | undefined;
|
209
|
+
writable?: boolean | undefined;
|
210
|
+
visible?: boolean | undefined;
|
211
|
+
required?: boolean | undefined;
|
32
212
|
useJoinTable?: boolean | undefined;
|
33
|
-
} & {
|
34
213
|
relation: "oneToOne";
|
35
|
-
}
|
214
|
+
} | {
|
215
|
+
type: "relation";
|
216
|
+
pluginOptions?: object | undefined;
|
217
|
+
searchable?: boolean | undefined;
|
218
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
219
|
+
target: import("@strapi/types/dist/uid").ContentType;
|
220
|
+
inversedBy?: string | undefined;
|
221
|
+
mappedBy?: string | undefined;
|
222
|
+
configurable?: boolean | undefined;
|
223
|
+
private?: boolean | undefined;
|
224
|
+
writable?: boolean | undefined;
|
225
|
+
visible?: boolean | undefined;
|
226
|
+
required?: boolean | undefined;
|
36
227
|
useJoinTable?: boolean | undefined;
|
37
|
-
} & {
|
38
228
|
relation: "oneToMany";
|
39
|
-
}
|
229
|
+
} | {
|
230
|
+
type: "relation";
|
231
|
+
pluginOptions?: object | undefined;
|
232
|
+
searchable?: boolean | undefined;
|
233
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
234
|
+
target: import("@strapi/types/dist/uid").ContentType;
|
235
|
+
inversedBy?: string | undefined;
|
236
|
+
mappedBy?: string | undefined;
|
237
|
+
configurable?: boolean | undefined;
|
238
|
+
private?: boolean | undefined;
|
239
|
+
writable?: boolean | undefined;
|
240
|
+
visible?: boolean | undefined;
|
241
|
+
required?: boolean | undefined;
|
40
242
|
useJoinTable?: boolean | undefined;
|
41
|
-
} & {
|
42
243
|
relation: "manyToOne";
|
43
|
-
}
|
244
|
+
} | {
|
245
|
+
type: "relation";
|
246
|
+
pluginOptions?: object | undefined;
|
247
|
+
searchable?: boolean | undefined;
|
248
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
249
|
+
target: import("@strapi/types/dist/uid").ContentType;
|
250
|
+
inversedBy?: string | undefined;
|
251
|
+
mappedBy?: string | undefined;
|
252
|
+
configurable?: boolean | undefined;
|
253
|
+
private?: boolean | undefined;
|
254
|
+
writable?: boolean | undefined;
|
255
|
+
visible?: boolean | undefined;
|
256
|
+
required?: boolean | undefined;
|
44
257
|
useJoinTable?: boolean | undefined;
|
45
|
-
} & {
|
46
258
|
relation: "manyToMany";
|
47
|
-
}
|
259
|
+
} | {
|
260
|
+
type: "relation";
|
261
|
+
pluginOptions?: object | undefined;
|
262
|
+
searchable?: boolean | undefined;
|
263
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
264
|
+
target: import("@strapi/types/dist/uid").ContentType;
|
265
|
+
configurable?: boolean | undefined;
|
266
|
+
private?: boolean | undefined;
|
267
|
+
writable?: boolean | undefined;
|
268
|
+
visible?: boolean | undefined;
|
269
|
+
required?: boolean | undefined;
|
48
270
|
useJoinTable?: boolean | undefined;
|
49
|
-
} & {
|
50
271
|
relation: "oneWay";
|
51
|
-
}
|
272
|
+
} | {
|
273
|
+
type: "relation";
|
274
|
+
pluginOptions?: object | undefined;
|
275
|
+
searchable?: boolean | undefined;
|
276
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
277
|
+
target: import("@strapi/types/dist/uid").ContentType;
|
278
|
+
configurable?: boolean | undefined;
|
279
|
+
private?: boolean | undefined;
|
280
|
+
writable?: boolean | undefined;
|
281
|
+
visible?: boolean | undefined;
|
282
|
+
required?: boolean | undefined;
|
52
283
|
useJoinTable?: boolean | undefined;
|
53
|
-
} & {
|
54
284
|
relation: "manyWay";
|
55
|
-
}
|
285
|
+
} | {
|
286
|
+
type: "relation";
|
287
|
+
pluginOptions?: object | undefined;
|
288
|
+
searchable?: boolean | undefined;
|
289
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
290
|
+
target: import("@strapi/types/dist/uid").ContentType;
|
291
|
+
morphBy?: string | undefined;
|
292
|
+
configurable?: boolean | undefined;
|
293
|
+
private?: boolean | undefined;
|
294
|
+
writable?: boolean | undefined;
|
295
|
+
visible?: boolean | undefined;
|
296
|
+
required?: boolean | undefined;
|
56
297
|
useJoinTable?: boolean | undefined;
|
57
|
-
} & {
|
58
298
|
relation: "morphOne";
|
59
|
-
}
|
299
|
+
} | {
|
300
|
+
type: "relation";
|
301
|
+
pluginOptions?: object | undefined;
|
302
|
+
searchable?: boolean | undefined;
|
303
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
304
|
+
target: import("@strapi/types/dist/uid").ContentType;
|
305
|
+
morphBy?: string | undefined;
|
306
|
+
configurable?: boolean | undefined;
|
307
|
+
private?: boolean | undefined;
|
308
|
+
writable?: boolean | undefined;
|
309
|
+
visible?: boolean | undefined;
|
310
|
+
required?: boolean | undefined;
|
60
311
|
useJoinTable?: boolean | undefined;
|
61
|
-
} & {
|
62
312
|
relation: "morphMany";
|
63
|
-
}
|
313
|
+
} | {
|
314
|
+
type: "richtext";
|
315
|
+
pluginOptions?: object | undefined;
|
316
|
+
searchable?: boolean | undefined;
|
317
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
318
|
+
configurable?: boolean | undefined;
|
319
|
+
default?: string | (() => string) | undefined;
|
320
|
+
minLength?: number | undefined;
|
321
|
+
maxLength?: number | undefined;
|
322
|
+
private?: boolean | undefined;
|
323
|
+
required?: boolean | undefined;
|
324
|
+
writable?: boolean | undefined;
|
325
|
+
visible?: boolean | undefined;
|
326
|
+
} | {
|
327
|
+
type: "string";
|
328
|
+
pluginOptions?: object | undefined;
|
329
|
+
searchable?: boolean | undefined;
|
330
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
331
|
+
regex?: RegExp | undefined;
|
332
|
+
configurable?: boolean | undefined;
|
333
|
+
default?: string | (() => string) | undefined;
|
334
|
+
minLength?: number | undefined;
|
335
|
+
maxLength?: number | undefined;
|
336
|
+
private?: boolean | undefined;
|
337
|
+
unique?: boolean | undefined;
|
338
|
+
required?: boolean | undefined;
|
339
|
+
writable?: boolean | undefined;
|
340
|
+
visible?: boolean | undefined;
|
341
|
+
} | {
|
342
|
+
type: "text";
|
343
|
+
pluginOptions?: object | undefined;
|
344
|
+
searchable?: boolean | undefined;
|
345
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
346
|
+
regex?: RegExp | undefined;
|
347
|
+
configurable?: boolean | undefined;
|
348
|
+
default?: string | (() => string) | undefined;
|
349
|
+
minLength?: number | undefined;
|
350
|
+
maxLength?: number | undefined;
|
351
|
+
private?: boolean | undefined;
|
352
|
+
unique?: boolean | undefined;
|
353
|
+
required?: boolean | undefined;
|
354
|
+
writable?: boolean | undefined;
|
355
|
+
visible?: boolean | undefined;
|
356
|
+
} | {
|
357
|
+
type: "time";
|
358
|
+
pluginOptions?: object | undefined;
|
359
|
+
searchable?: boolean | undefined;
|
360
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
361
|
+
configurable?: boolean | undefined;
|
362
|
+
default?: Schema.Attribute.TimeValue | (() => Schema.Attribute.TimeValue) | undefined;
|
363
|
+
private?: boolean | undefined;
|
364
|
+
required?: boolean | undefined;
|
365
|
+
unique?: boolean | undefined;
|
366
|
+
writable?: boolean | undefined;
|
367
|
+
visible?: boolean | undefined;
|
368
|
+
} | {
|
369
|
+
type: "timestamp";
|
370
|
+
pluginOptions?: object | undefined;
|
371
|
+
searchable?: boolean | undefined;
|
372
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
373
|
+
configurable?: boolean | undefined;
|
374
|
+
default?: Schema.Attribute.TimestampValue | (() => Schema.Attribute.TimestampValue) | undefined;
|
375
|
+
private?: boolean | undefined;
|
376
|
+
required?: boolean | undefined;
|
377
|
+
unique?: boolean | undefined;
|
378
|
+
writable?: boolean | undefined;
|
379
|
+
visible?: boolean | undefined;
|
380
|
+
} | {
|
381
|
+
type: "uid";
|
382
|
+
pluginOptions?: object | undefined;
|
383
|
+
searchable?: boolean | undefined;
|
384
|
+
column?: Partial<Schema.Attribute.Column> | undefined;
|
385
|
+
targetField?: string | undefined;
|
386
|
+
options?: Schema.Attribute.UIDOptions | undefined;
|
387
|
+
configurable?: boolean | undefined;
|
388
|
+
default?: string | (() => string) | undefined;
|
389
|
+
minLength?: number | undefined;
|
390
|
+
maxLength?: number | undefined;
|
391
|
+
private?: boolean | undefined;
|
392
|
+
required?: boolean | undefined;
|
393
|
+
writable?: boolean | undefined;
|
394
|
+
visible?: boolean | undefined;
|
395
|
+
} | {
|
64
396
|
type: string;
|
65
397
|
relation: string;
|
66
398
|
target: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"transform-content-types-to-models.d.ts","sourceRoot":"","sources":["../../src/utils/transform-content-types-to-models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,KAAK,EAAE,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAChE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAIhD;;;;;;;;;;;GAWG;AAEH,eAAO,MAAM,yBAAyB,mBAAoB,MAAM,eAAe,WAAW,WAKzF,CAAC;AAEF,eAAO,MAAM,kBAAkB,mBAAoB,MAAM,eAAe,WAAW,WAKlF,CAAC;AAEF,eAAO,MAAM,gCAAgC,gBAAiB,WAAW,WAKxE,CAAC;AAEF,eAAO,MAAM,iCAAiC,gBAAiB,WAAW,WAKzE,CAAC;AAEF,eAAO,MAAM,sBAAsB,gBAAiB,WAAW,WAE9D,CAAC;AAEF,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,eAAe,WAAW,WAMpF,CAAC;AAIF,MAAM,MAAM,sBAAsB,GAAG,MAAM,CAAC,iBAAiB,GAC3D,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,iBAAiB,EAAE,gBAAgB,GAAG,KAAK,GAAG,WAAW,CAAC,CAAC,GAChF,IAAI,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;AAG5B,eAAO,MAAM,kBAAkB,SACvB,MAAM,aACD,OAAO,SAAS,CAAC,YAAY,eAC3B,sBAAsB,eACtB,WAAW
|
1
|
+
{"version":3,"file":"transform-content-types-to-models.d.ts","sourceRoot":"","sources":["../../src/utils/transform-content-types-to-models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,KAAK,EAAE,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAChE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAIhD;;;;;;;;;;;GAWG;AAEH,eAAO,MAAM,yBAAyB,mBAAoB,MAAM,eAAe,WAAW,WAKzF,CAAC;AAEF,eAAO,MAAM,kBAAkB,mBAAoB,MAAM,eAAe,WAAW,WAKlF,CAAC;AAEF,eAAO,MAAM,gCAAgC,gBAAiB,WAAW,WAKxE,CAAC;AAEF,eAAO,MAAM,iCAAiC,gBAAiB,WAAW,WAKzE,CAAC;AAEF,eAAO,MAAM,sBAAsB,gBAAiB,WAAW,WAE9D,CAAC;AAEF,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,eAAe,WAAW,WAMpF,CAAC;AAIF,MAAM,MAAM,sBAAsB,GAAG,MAAM,CAAC,iBAAiB,GAC3D,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,iBAAiB,EAAE,gBAAgB,GAAG,KAAK,GAAG,WAAW,CAAC,CAAC,GAChF,IAAI,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;AAG5B,eAAO,MAAM,kBAAkB,SACvB,MAAM,aACD,OAAO,SAAS,CAAC,YAAY,eAC3B,sBAAsB,eACtB,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+FzB,CAAC;AAEF,eAAO,MAAM,mBAAmB,gBACjB,sBAAsB,eACtB,WAAW,OAazB,CAAC;AAEF,eAAO,MAAM,iBAAiB,gBACf,sBAAsB;UACc,aAAa,GAAG,WAAW;CAI7E,CAAC;AAEF,eAAO,MAAM,gBAAgB,iBAAW,CAAC;AAgFzC,eAAO,MAAM,6BAA6B,iBAC1B,sBAAsB,EAAE,eACzB,WAAW,KACvB,KAAK,EAkEP,CAAC"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@strapi/core",
|
3
|
-
"version": "0.0.0-next.
|
3
|
+
"version": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
4
4
|
"description": "Core of Strapi",
|
5
5
|
"homepage": "https://strapi.io",
|
6
6
|
"bugs": {
|
@@ -53,17 +53,17 @@
|
|
53
53
|
},
|
54
54
|
"dependencies": {
|
55
55
|
"@koa/cors": "5.0.0",
|
56
|
-
"@koa/router": "12.0.
|
56
|
+
"@koa/router": "12.0.2",
|
57
57
|
"@paralleldrive/cuid2": "2.2.2",
|
58
|
-
"@strapi/admin": "0.0.0-next.
|
59
|
-
"@strapi/database": "0.0.0-next.
|
60
|
-
"@strapi/generators": "0.0.0-next.
|
61
|
-
"@strapi/logger": "0.0.0-next.
|
58
|
+
"@strapi/admin": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
59
|
+
"@strapi/database": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
60
|
+
"@strapi/generators": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
61
|
+
"@strapi/logger": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
62
62
|
"@strapi/pack-up": "5.0.0",
|
63
|
-
"@strapi/permissions": "0.0.0-next.
|
64
|
-
"@strapi/types": "0.0.0-next.
|
65
|
-
"@strapi/typescript-utils": "0.0.0-next.
|
66
|
-
"@strapi/utils": "0.0.0-next.
|
63
|
+
"@strapi/permissions": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
64
|
+
"@strapi/types": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
65
|
+
"@strapi/typescript-utils": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
66
|
+
"@strapi/utils": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
67
67
|
"bcryptjs": "2.4.3",
|
68
68
|
"boxen": "5.1.2",
|
69
69
|
"chalk": "4.1.2",
|
@@ -102,7 +102,7 @@
|
|
102
102
|
"resolve.exports": "2.0.2",
|
103
103
|
"semver": "7.5.4",
|
104
104
|
"statuses": "2.0.1",
|
105
|
-
"typescript": "5.
|
105
|
+
"typescript": "5.3.2",
|
106
106
|
"undici": "6.19.2",
|
107
107
|
"yup": "0.32.9"
|
108
108
|
},
|
@@ -126,13 +126,13 @@
|
|
126
126
|
"@types/node": "18.19.24",
|
127
127
|
"@types/node-schedule": "2.1.7",
|
128
128
|
"@types/statuses": "2.0.1",
|
129
|
-
"eslint-config-custom": "0.0.0-next.
|
129
|
+
"eslint-config-custom": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de",
|
130
130
|
"supertest": "6.3.3",
|
131
|
-
"tsconfig": "0.0.0-next.
|
131
|
+
"tsconfig": "0.0.0-next.4119cc523a8fec549bb2f1869c6e789650f7f4de"
|
132
132
|
},
|
133
133
|
"engines": {
|
134
|
-
"node": ">=18.0.0 <=
|
134
|
+
"node": ">=18.0.0 <=22.x.x",
|
135
135
|
"npm": ">=6.0.0"
|
136
136
|
},
|
137
|
-
"gitHead": "
|
137
|
+
"gitHead": "4119cc523a8fec549bb2f1869c6e789650f7f4de"
|
138
138
|
}
|