@deenruv/replicate-plugin 1.0.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/LICENSE +23 -0
- package/README.md +43 -0
- package/dist/plugin-server/constants.d.ts +2 -0
- package/dist/plugin-server/constants.js +5 -0
- package/dist/plugin-server/controllers/replicate.d.ts +22 -0
- package/dist/plugin-server/controllers/replicate.js +56 -0
- package/dist/plugin-server/e2e/order-export.e2e.test.d.ts +1 -0
- package/dist/plugin-server/e2e/order-export.e2e.test.js +163 -0
- package/dist/plugin-server/e2e/with-token.e2e.test.d.ts +1 -0
- package/dist/plugin-server/e2e/with-token.e2e.test.js +72 -0
- package/dist/plugin-server/e2e/without-token.e2e.test.d.ts +1 -0
- package/dist/plugin-server/e2e/without-token.e2e.test.js +75 -0
- package/dist/plugin-server/entites/replicate.entity.d.ts +13 -0
- package/dist/plugin-server/entites/replicate.entity.js +41 -0
- package/dist/plugin-server/extensions/replicate.extension.d.ts +1 -0
- package/dist/plugin-server/extensions/replicate.extension.js +78 -0
- package/dist/plugin-server/graphql/generated-admin-types.d.ts +5847 -0
- package/dist/plugin-server/graphql/generated-admin-types.js +1036 -0
- package/dist/plugin-server/index.d.ts +5 -0
- package/dist/plugin-server/index.js +42 -0
- package/dist/plugin-server/resolvers/replicate-admin.resolver.d.ts +35 -0
- package/dist/plugin-server/resolvers/replicate-admin.resolver.js +84 -0
- package/dist/plugin-server/services/replicate.service.d.ts +43 -0
- package/dist/plugin-server/services/replicate.service.js +389 -0
- package/dist/plugin-server/types.d.ts +19 -0
- package/dist/plugin-server/types.js +2 -0
- package/dist/plugin-server/zeus/const.d.ts +6 -0
- package/dist/plugin-server/zeus/const.js +3777 -0
- package/dist/plugin-server/zeus/index.d.ts +19250 -0
- package/dist/plugin-server/zeus/index.js +1104 -0
- package/dist/plugin-server/zeus/typedDocumentNode.d.ts +3 -0
- package/dist/plugin-server/zeus/typedDocumentNode.js +13 -0
- package/dist/plugin-ui/components/Replicate.d.ts +2 -0
- package/dist/plugin-ui/components/Replicate.js +307 -0
- package/dist/plugin-ui/components/ReplicateUtilities.d.ts +4 -0
- package/dist/plugin-ui/components/ReplicateUtilities.js +57 -0
- package/dist/plugin-ui/components/index.d.ts +1 -0
- package/dist/plugin-ui/components/index.js +1 -0
- package/dist/plugin-ui/graphql/mutations.d.ts +11 -0
- package/dist/plugin-ui/graphql/mutations.js +11 -0
- package/dist/plugin-ui/graphql/queries.d.ts +73 -0
- package/dist/plugin-ui/graphql/queries.js +30 -0
- package/dist/plugin-ui/graphql/selectors.d.ts +24 -0
- package/dist/plugin-ui/graphql/selectors.js +17 -0
- package/dist/plugin-ui/index.d.ts +1 -0
- package/dist/plugin-ui/index.js +25 -0
- package/dist/plugin-ui/locales/en/badges.json +25 -0
- package/dist/plugin-ui/locales/en/index.d.ts +26 -0
- package/dist/plugin-ui/locales/en/index.js +2 -0
- package/dist/plugin-ui/locales/pl/badges.json +25 -0
- package/dist/plugin-ui/locales/pl/index.d.ts +26 -0
- package/dist/plugin-ui/locales/pl/index.js +2 -0
- package/dist/plugin-ui/translation-ns.d.ts +1 -0
- package/dist/plugin-ui/translation-ns.js +1 -0
- package/dist/plugin-ui/tsconfig.json +18 -0
- package/dist/plugin-ui/zeus/const.d.ts +6 -0
- package/dist/plugin-ui/zeus/const.js +3774 -0
- package/dist/plugin-ui/zeus/index.d.ts +19250 -0
- package/dist/plugin-ui/zeus/index.js +1096 -0
- package/dist/plugin-ui/zeus/typedDocumentNode.d.ts +3 -0
- package/dist/plugin-ui/zeus/typedDocumentNode.js +9 -0
- package/package.json +54 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Odznaki",
|
|
3
|
+
"description": "Odznaki które będą widoczne na zdjęciu produktu",
|
|
4
|
+
"not-found": "Nie znaleziono odznak",
|
|
5
|
+
"modal": {
|
|
6
|
+
"add": {
|
|
7
|
+
"title": "Dodaj odznakę",
|
|
8
|
+
"action": "Dodaj",
|
|
9
|
+
"success": "Dodano pomyślnie"
|
|
10
|
+
},
|
|
11
|
+
"edit": {
|
|
12
|
+
"title": "Edytuj odznakę",
|
|
13
|
+
"action": "Edytuj",
|
|
14
|
+
"success": "Edytowano pomyślnie"
|
|
15
|
+
},
|
|
16
|
+
"remove": {
|
|
17
|
+
"title": "Usuń odznakę",
|
|
18
|
+
"description": "Czy jesteś pewien, że chcesz usunąć tę odznakę?",
|
|
19
|
+
"action": "Usuń",
|
|
20
|
+
"success": "Usunięto pomyślnie"
|
|
21
|
+
},
|
|
22
|
+
"text-error": "Text field can't be empty",
|
|
23
|
+
"cancel": "Cancel"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
title: string;
|
|
3
|
+
description: string;
|
|
4
|
+
"not-found": string;
|
|
5
|
+
modal: {
|
|
6
|
+
add: {
|
|
7
|
+
title: string;
|
|
8
|
+
action: string;
|
|
9
|
+
success: string;
|
|
10
|
+
};
|
|
11
|
+
edit: {
|
|
12
|
+
title: string;
|
|
13
|
+
action: string;
|
|
14
|
+
success: string;
|
|
15
|
+
};
|
|
16
|
+
remove: {
|
|
17
|
+
title: string;
|
|
18
|
+
description: string;
|
|
19
|
+
action: string;
|
|
20
|
+
success: string;
|
|
21
|
+
};
|
|
22
|
+
"text-error": string;
|
|
23
|
+
cancel: string;
|
|
24
|
+
};
|
|
25
|
+
}[];
|
|
26
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const translationNS: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const translationNS = Symbol("replicate-plugin").toString();
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"module": "ESNext",
|
|
4
|
+
"moduleResolution": "node",
|
|
5
|
+
"target": "ES2020",
|
|
6
|
+
"jsx": "react",
|
|
7
|
+
"outDir": "../../dist/plugin-ui",
|
|
8
|
+
"importHelpers": true,
|
|
9
|
+
"declaration": true,
|
|
10
|
+
"resolveJsonModule": true,
|
|
11
|
+
"skipLibCheck": true,
|
|
12
|
+
"strict": true,
|
|
13
|
+
"noImplicitAny": true,
|
|
14
|
+
"esModuleInterop": true,
|
|
15
|
+
"allowSyntheticDefaultImports": true
|
|
16
|
+
},
|
|
17
|
+
"include": ["./**/*.tsx", "./**/*.json", "./**/*.ts"]
|
|
18
|
+
}
|