@overmap-ai/core 1.0.28-integrate-forms.7 → 1.0.28-integrate-forms.8
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/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/store/slices/categorySlice.d.ts +22 -22
- package/dist/store/slices/issueSlice.d.ts +22 -22
- package/dist/store/slices/projectFileSlice.d.ts +22 -22
- package/dist/store/slices/workspaceSlice.d.ts +22 -22
- package/dist/store/store.d.ts +66 -66
- package/package.json +1 -1
|
@@ -42,28 +42,28 @@ export declare const categorySlice: import("@reduxjs/toolkit").Slice<CategorySta
|
|
|
42
42
|
export declare const setCategories: import("@reduxjs/toolkit").ActionCreatorWithPayload<Category[], "categories/setCategories">, addCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<Category, "categories/addCategory">, replaceCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<Category, "categories/replaceCategory">, patchCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<Offline<Partial<Category>>, "categories/patchCategory">, removeCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "categories/removeCategory">, hideCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<string | null, "categories/hideCategory">, hideAllCategories: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"categories/hideAllCategories">, unhideCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<string | null, "categories/unhideCategory">, unhideAllCategories: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"categories/unhideAllCategories">, removeColor: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "categories/removeColor">, addOrReplaceCategories: import("@reduxjs/toolkit").ActionCreatorWithPayload<Category[], "categories/addOrReplaceCategories">;
|
|
43
43
|
export declare const selectCategoryMapping: (state: RootState) => Record<string, Category>;
|
|
44
44
|
export declare const selectCategories: ((state: import("redux").EmptyObject & {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
45
|
+
versioning: import('../slices/versioningSlice').VersioningState;
|
|
46
|
+
fileReducer: import('..').FileState;
|
|
47
|
+
authReducer: import('..').AuthState;
|
|
48
|
+
categoryReducer: CategoryState;
|
|
49
|
+
componentReducer: import('..').ComponentState;
|
|
50
|
+
componentStageCompletionReducer: import('..').ComponentStageCompletionState;
|
|
51
|
+
componentStageReducer: import('..').ComponentStageState;
|
|
52
|
+
componentTypeReducer: import('..').ComponentTypeState;
|
|
53
|
+
issueReducer: import('..').IssueState;
|
|
54
|
+
mapReducer: import('..').MapState;
|
|
55
|
+
organizationReducer: import('..').OrganizationState;
|
|
56
|
+
outboxReducer: import('..').OutboxState;
|
|
57
|
+
projectReducer: import('..').ProjectState;
|
|
58
|
+
projectAccessReducer: import('..').ProjectAccessState;
|
|
59
|
+
organizationAccessReducer: import('..').OrganizationAccessState;
|
|
60
|
+
projectFileReducer: import('..').ProjectFileState;
|
|
61
|
+
rehydratedReducer: import('..').RehydratedState;
|
|
62
|
+
settingReducer: import('..').SettingState;
|
|
63
|
+
userFormReducer: import('..').UserFormState;
|
|
64
|
+
userReducer: import('..').UserState;
|
|
65
|
+
workspaceReducer: import('..').WorkspaceState;
|
|
66
|
+
emailDomainsReducer: import('..').EmailDomainState;
|
|
67
67
|
} & {
|
|
68
68
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
69
69
|
}) => Category[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, Category>, args_1: string | null) => Category[], {
|
|
@@ -78,28 +78,28 @@ export declare const selectFileAttachmentsOfIssue: (args: string) => (state: Roo
|
|
|
78
78
|
export declare const selectIssue: SelectorWithArgs<string, Stored<Issue> | undefined>;
|
|
79
79
|
export declare const selectIsFetchingInitialData: (state: RootState) => boolean;
|
|
80
80
|
export declare const selectAllAttachments: ((state: import("redux").EmptyObject & {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
81
|
+
versioning: import('../slices/versioningSlice.ts').VersioningState;
|
|
82
|
+
fileReducer: import("index.ts").FileState;
|
|
83
|
+
authReducer: import("index.ts").AuthState;
|
|
84
|
+
categoryReducer: import("./categorySlice.ts").CategoryState;
|
|
85
|
+
componentReducer: import("index.ts").ComponentState;
|
|
86
|
+
componentStageCompletionReducer: import("index.ts").ComponentStageCompletionState;
|
|
87
|
+
componentStageReducer: import("index.ts").ComponentStageState;
|
|
88
|
+
componentTypeReducer: import("index.ts").ComponentTypeState;
|
|
89
|
+
issueReducer: IssueState;
|
|
90
|
+
mapReducer: import("index.ts").MapState;
|
|
91
|
+
organizationReducer: import("index.ts").OrganizationState;
|
|
92
|
+
outboxReducer: import("index.ts").OutboxState;
|
|
93
|
+
projectReducer: import("index.ts").ProjectState;
|
|
94
|
+
projectAccessReducer: import("index.ts").ProjectAccessState;
|
|
95
|
+
organizationAccessReducer: import("index.ts").OrganizationAccessState;
|
|
96
|
+
projectFileReducer: import("index.ts").ProjectFileState;
|
|
97
|
+
rehydratedReducer: import("index.ts").RehydratedState;
|
|
98
|
+
settingReducer: import("index.ts").SettingState;
|
|
99
|
+
userFormReducer: import("index.ts").UserFormState;
|
|
100
|
+
userReducer: import("index.ts").UserState;
|
|
101
|
+
workspaceReducer: import("./workspaceSlice.ts").WorkspaceState;
|
|
102
|
+
emailDomainsReducer: import("index.ts").EmailDomainState;
|
|
103
103
|
} & {
|
|
104
104
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
105
105
|
}) => Stored<IssueAttachment>[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, Stored<IssueAttachment>>) => Stored<IssueAttachment>[], {
|
|
@@ -50,28 +50,28 @@ export declare const selectEnabledProjectFiles: (state: RootState) => Record<str
|
|
|
50
50
|
export declare const selectProjectFileVisibility: Selector<Record<string, boolean>>;
|
|
51
51
|
export declare const selectEnabledProjectFileMapping: (state: RootState) => Record<string, ProjectFile>;
|
|
52
52
|
export declare const selectProjectFiles: ((state: import("redux").EmptyObject & {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
53
|
+
versioning: import('../slices/versioningSlice.ts').VersioningState;
|
|
54
|
+
fileReducer: import("index.ts").FileState;
|
|
55
|
+
authReducer: import("index.ts").AuthState;
|
|
56
|
+
categoryReducer: import("index.ts").CategoryState;
|
|
57
|
+
componentReducer: import("index.ts").ComponentState;
|
|
58
|
+
componentStageCompletionReducer: import("index.ts").ComponentStageCompletionState;
|
|
59
|
+
componentStageReducer: import("index.ts").ComponentStageState;
|
|
60
|
+
componentTypeReducer: import("index.ts").ComponentTypeState;
|
|
61
|
+
issueReducer: import("index.ts").IssueState;
|
|
62
|
+
mapReducer: import("index.ts").MapState;
|
|
63
|
+
organizationReducer: import("index.ts").OrganizationState;
|
|
64
|
+
outboxReducer: import("index.ts").OutboxState;
|
|
65
|
+
projectReducer: import("./projectSlice.ts").ProjectState;
|
|
66
|
+
projectAccessReducer: import("index.ts").ProjectAccessState;
|
|
67
|
+
organizationAccessReducer: import("index.ts").OrganizationAccessState;
|
|
68
|
+
projectFileReducer: ProjectFileState;
|
|
69
|
+
rehydratedReducer: import("index.ts").RehydratedState;
|
|
70
|
+
settingReducer: import("index.ts").SettingState;
|
|
71
|
+
userFormReducer: import("index.ts").UserFormState;
|
|
72
|
+
userReducer: import("index.ts").UserState;
|
|
73
|
+
workspaceReducer: import("index.ts").WorkspaceState;
|
|
74
|
+
emailDomainsReducer: import("index.ts").EmailDomainState;
|
|
75
75
|
} & {
|
|
76
76
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
77
77
|
}) => ProjectFile[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, ProjectFile>, args_1: number | null) => ProjectFile[], {
|
|
@@ -28,28 +28,28 @@ export declare const workspaceSlice: import("@reduxjs/toolkit").Slice<WorkspaceS
|
|
|
28
28
|
export declare const setWorkspaces: import("@reduxjs/toolkit").ActionCreatorWithPayload<Record<string, Workspace>, "workspace/setWorkspaces">, addOrReplaceWorkspaces: import("@reduxjs/toolkit").ActionCreatorWithPayload<Record<string, Workspace>, "workspace/addOrReplaceWorkspaces">, addWorkspace: import("@reduxjs/toolkit").ActionCreatorWithPayload<Workspace, "workspace/addWorkspace">, setActiveWorkspaceId: import("@reduxjs/toolkit").ActionCreatorWithPayload<string | null, "workspace/setActiveWorkspaceId">, removeWorkspace: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "workspace/removeWorkspace">;
|
|
29
29
|
export declare const selectWorkspaceMapping: Selector<Record<string, Workspace>>;
|
|
30
30
|
export declare const selectWorkspaces: ((state: import("redux").EmptyObject & {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
31
|
+
versioning: import('../slices/versioningSlice').VersioningState;
|
|
32
|
+
fileReducer: import('..').FileState;
|
|
33
|
+
authReducer: import('..').AuthState;
|
|
34
|
+
categoryReducer: import('..').CategoryState;
|
|
35
|
+
componentReducer: import('..').ComponentState;
|
|
36
|
+
componentStageCompletionReducer: import('..').ComponentStageCompletionState;
|
|
37
|
+
componentStageReducer: import('..').ComponentStageState;
|
|
38
|
+
componentTypeReducer: import('..').ComponentTypeState;
|
|
39
|
+
issueReducer: import('..').IssueState;
|
|
40
|
+
mapReducer: import('..').MapState;
|
|
41
|
+
organizationReducer: import('..').OrganizationState;
|
|
42
|
+
outboxReducer: import('..').OutboxState;
|
|
43
|
+
projectReducer: import('..').ProjectState;
|
|
44
|
+
projectAccessReducer: import('..').ProjectAccessState;
|
|
45
|
+
organizationAccessReducer: import('..').OrganizationAccessState;
|
|
46
|
+
projectFileReducer: import('..').ProjectFileState;
|
|
47
|
+
rehydratedReducer: import('..').RehydratedState;
|
|
48
|
+
settingReducer: import('..').SettingState;
|
|
49
|
+
userFormReducer: import('..').UserFormState;
|
|
50
|
+
userReducer: import('..').UserState;
|
|
51
|
+
workspaceReducer: WorkspaceState;
|
|
52
|
+
emailDomainsReducer: import('..').EmailDomainState;
|
|
53
53
|
} & {
|
|
54
54
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
55
55
|
}) => Workspace[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, Workspace>) => Workspace[], {
|
package/dist/store/store.d.ts
CHANGED
|
@@ -5,52 +5,52 @@ import request from "superagent";
|
|
|
5
5
|
import { type OfflineMetaEffect, type OvermapSDK, RequestDetails } from "../sdk";
|
|
6
6
|
import { RootState } from "../typings";
|
|
7
7
|
export declare const overmapReducers: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
8
|
+
versioning: Reducer<import("./slices/versioningSlice").VersioningState>;
|
|
9
|
+
fileReducer: Reducer<import('./slices/fileSlice.ts').FileState>;
|
|
10
|
+
authReducer: Reducer<import('./slices/authSlice.ts').AuthState>;
|
|
11
|
+
categoryReducer: Reducer<import('./slices/categorySlice.ts').CategoryState>;
|
|
12
|
+
componentReducer: Reducer<import('./slices/componentSlice.ts').ComponentState>;
|
|
13
|
+
componentStageCompletionReducer: Reducer<import('./slices/ComponentStageCompletionSlice.ts').ComponentStageCompletionState>;
|
|
14
|
+
componentStageReducer: Reducer<import('./slices/componentStageSlice.ts').ComponentStageState>;
|
|
15
|
+
componentTypeReducer: Reducer<import('./slices/componentTypeSlice.ts').ComponentTypeState>;
|
|
16
|
+
issueReducer: Reducer<import('./slices/issueSlice.ts').IssueState>;
|
|
17
|
+
mapReducer: Reducer<import('./slices/mapSlice.ts').MapState>;
|
|
18
|
+
organizationReducer: Reducer<import('./slices/organizationSlice.ts').OrganizationState>;
|
|
19
|
+
outboxReducer: Reducer<import('./slices/outboxSlice.ts').OutboxState>;
|
|
20
|
+
projectReducer: Reducer<import('./slices/projectSlice.ts').ProjectState>;
|
|
21
|
+
projectAccessReducer: Reducer<import('./slices/projectAccessSlice.ts').ProjectAccessState>;
|
|
22
|
+
organizationAccessReducer: Reducer<import('./slices/organizationAccessSlice.ts').OrganizationAccessState>;
|
|
23
|
+
projectFileReducer: Reducer<import('./slices/projectFileSlice.ts').ProjectFileState>;
|
|
24
|
+
rehydratedReducer: Reducer<import('./slices/rehydratedSlice.ts').RehydratedState>;
|
|
25
|
+
settingReducer: Reducer<import('./slices/settingsSlice.ts').SettingState>;
|
|
26
|
+
userFormReducer: Reducer<import('./slices/userFormSlice.ts').UserFormState>;
|
|
27
|
+
userReducer: Reducer<import('./slices/userSlice.ts').UserState>;
|
|
28
|
+
workspaceReducer: Reducer<import('./slices/workspaceSlice.ts').WorkspaceState>;
|
|
29
|
+
emailDomainsReducer: Reducer<import('./slices/emailDomainsSlice.ts').EmailDomainState>;
|
|
30
30
|
};
|
|
31
31
|
export declare const overmapReducer: Reducer<import("redux").CombinedState<{
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
32
|
+
versioning: import("./slices/versioningSlice").VersioningState;
|
|
33
|
+
fileReducer: import('./slices/fileSlice.ts').FileState;
|
|
34
|
+
authReducer: import('./slices/authSlice.ts').AuthState;
|
|
35
|
+
categoryReducer: import('./slices/categorySlice.ts').CategoryState;
|
|
36
|
+
componentReducer: import('./slices/componentSlice.ts').ComponentState;
|
|
37
|
+
componentStageCompletionReducer: import('./slices/ComponentStageCompletionSlice.ts').ComponentStageCompletionState;
|
|
38
|
+
componentStageReducer: import('./slices/componentStageSlice.ts').ComponentStageState;
|
|
39
|
+
componentTypeReducer: import('./slices/componentTypeSlice.ts').ComponentTypeState;
|
|
40
|
+
issueReducer: import('./slices/issueSlice.ts').IssueState;
|
|
41
|
+
mapReducer: import('./slices/mapSlice.ts').MapState;
|
|
42
|
+
organizationReducer: import('./slices/organizationSlice.ts').OrganizationState;
|
|
43
|
+
outboxReducer: import('./slices/outboxSlice.ts').OutboxState;
|
|
44
|
+
projectReducer: import('./slices/projectSlice.ts').ProjectState;
|
|
45
|
+
projectAccessReducer: import('./slices/projectAccessSlice.ts').ProjectAccessState;
|
|
46
|
+
organizationAccessReducer: import('./slices/organizationAccessSlice.ts').OrganizationAccessState;
|
|
47
|
+
projectFileReducer: import('./slices/projectFileSlice.ts').ProjectFileState;
|
|
48
|
+
rehydratedReducer: import('./slices/rehydratedSlice.ts').RehydratedState;
|
|
49
|
+
settingReducer: import('./slices/settingsSlice.ts').SettingState;
|
|
50
|
+
userFormReducer: import('./slices/userFormSlice.ts').UserFormState;
|
|
51
|
+
userReducer: import('./slices/userSlice.ts').UserState;
|
|
52
|
+
workspaceReducer: import('./slices/workspaceSlice.ts').WorkspaceState;
|
|
53
|
+
emailDomainsReducer: import('./slices/emailDomainsSlice.ts').EmailDomainState;
|
|
54
54
|
}>, AnyAction>;
|
|
55
55
|
export declare const resetStore = "RESET";
|
|
56
56
|
export declare const rootReducer: Reducer<RootState>;
|
|
@@ -71,28 +71,28 @@ export declare const dequeue: Config["queue"]["dequeue"];
|
|
|
71
71
|
*/
|
|
72
72
|
export declare const overmapEnhancer: (...args: any[]) => unknown;
|
|
73
73
|
export declare const defaultStore: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore<import("redux").EmptyObject & {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
74
|
+
versioning: import("./slices/versioningSlice").VersioningState;
|
|
75
|
+
fileReducer: import('./slices/fileSlice.ts').FileState;
|
|
76
|
+
authReducer: import('./slices/authSlice.ts').AuthState;
|
|
77
|
+
categoryReducer: import('./slices/categorySlice.ts').CategoryState;
|
|
78
|
+
componentReducer: import('./slices/componentSlice.ts').ComponentState;
|
|
79
|
+
componentStageCompletionReducer: import('./slices/ComponentStageCompletionSlice.ts').ComponentStageCompletionState;
|
|
80
|
+
componentStageReducer: import('./slices/componentStageSlice.ts').ComponentStageState;
|
|
81
|
+
componentTypeReducer: import('./slices/componentTypeSlice.ts').ComponentTypeState;
|
|
82
|
+
issueReducer: import('./slices/issueSlice.ts').IssueState;
|
|
83
|
+
mapReducer: import('./slices/mapSlice.ts').MapState;
|
|
84
|
+
organizationReducer: import('./slices/organizationSlice.ts').OrganizationState;
|
|
85
|
+
outboxReducer: import('./slices/outboxSlice.ts').OutboxState;
|
|
86
|
+
projectReducer: import('./slices/projectSlice.ts').ProjectState;
|
|
87
|
+
projectAccessReducer: import('./slices/projectAccessSlice.ts').ProjectAccessState;
|
|
88
|
+
organizationAccessReducer: import('./slices/organizationAccessSlice.ts').OrganizationAccessState;
|
|
89
|
+
projectFileReducer: import('./slices/projectFileSlice.ts').ProjectFileState;
|
|
90
|
+
rehydratedReducer: import('./slices/rehydratedSlice.ts').RehydratedState;
|
|
91
|
+
settingReducer: import('./slices/settingsSlice.ts').SettingState;
|
|
92
|
+
userFormReducer: import('./slices/userFormSlice.ts').UserFormState;
|
|
93
|
+
userReducer: import('./slices/userSlice.ts').UserState;
|
|
94
|
+
workspaceReducer: import('./slices/workspaceSlice.ts').WorkspaceState;
|
|
95
|
+
emailDomainsReducer: import('./slices/emailDomainsSlice.ts').EmailDomainState;
|
|
96
96
|
} & {
|
|
97
97
|
offline: OfflineState;
|
|
98
98
|
}, AnyAction, import("@reduxjs/toolkit").MiddlewareArray<[import("@reduxjs/toolkit").ThunkMiddleware<RootState, AnyAction>]>>;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Core functionality for Overmap",
|
|
4
4
|
"author": "Wôrdn Inc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
|
-
"version": "1.0.28-integrate-forms.
|
|
6
|
+
"version": "1.0.28-integrate-forms.8",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|