@edifice.io/client 2.0.5-develop-pedago.20250204132346 → 2.0.5
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/globals.d.ts +0 -3
- package/dist/index.cjs +1 -1
- package/dist/index.js +364 -441
- package/dist/resources/interface.d.ts +0 -10
- package/package.json +3 -3
- package/dist/resources/services/CollaborativeEditorResourceService.d.ts +0 -14
- package/dist/resources/services/HomeworksResourceService.d.ts +0 -14
- package/dist/resources/services/TimelineGeneratorResourceService.d.ts +0 -14
|
@@ -384,17 +384,7 @@ export interface CollaborativewallUpdate extends UpdateParameters {
|
|
|
384
384
|
export interface CollaborativewallResource extends IResource {
|
|
385
385
|
'publish-type': 'RESTRAINT' | 'IMMEDIATE';
|
|
386
386
|
}
|
|
387
|
-
export interface HomeworksCreate extends CreateParameters {
|
|
388
|
-
repeats?: any[];
|
|
389
|
-
}
|
|
390
|
-
export interface HomeworksUpdate extends UpdateParameters {
|
|
391
|
-
repeats?: any[];
|
|
392
|
-
}
|
|
393
387
|
export interface ScrapbookUpdate extends UpdateParameters {
|
|
394
388
|
}
|
|
395
389
|
export interface ScrapbookResource extends IResource {
|
|
396
390
|
}
|
|
397
|
-
export interface TimelineGeneratorUpdate extends UpdateParameters {
|
|
398
|
-
}
|
|
399
|
-
export interface CollaborativeEditorUpdate extends UpdateParameters {
|
|
400
|
-
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/client",
|
|
3
|
-
"version": "2.0.5
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "Edifice TypeScript Client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"axios": "^1.7.7",
|
|
38
38
|
"core-js": "^3.35.1",
|
|
39
|
-
"@edifice.io/utilities": "2.0.5
|
|
39
|
+
"@edifice.io/utilities": "2.0.5"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/jasmine": "5.1.4",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"typedoc-plugin-markdown": "3.17.1",
|
|
49
49
|
"vite": "^5.4.11",
|
|
50
50
|
"vite-plugin-dts": "^4.1.0",
|
|
51
|
-
"@edifice.io/config": "2.0.5
|
|
51
|
+
"@edifice.io/config": "2.0.5"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build": "vite build",
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ResourceType } from '../..';
|
|
2
|
-
import { CollaborativeEditorUpdate, CreateParameters, CreateResult, UpdateResult } from '../interface';
|
|
3
|
-
import { ResourceService } from '../ResourceService';
|
|
4
|
-
export declare class CollaborativeEditorResourceService extends ResourceService {
|
|
5
|
-
create(parameters: CreateParameters): Promise<CreateResult>;
|
|
6
|
-
update(parameters: CollaborativeEditorUpdate): Promise<UpdateResult>;
|
|
7
|
-
getResourceType(): ResourceType;
|
|
8
|
-
getApplication(): string;
|
|
9
|
-
getFormUrl(): string;
|
|
10
|
-
getViewUrl(resourceId: string): string;
|
|
11
|
-
getPrintUrl(): string;
|
|
12
|
-
getEditUrl(): string;
|
|
13
|
-
getExportUrl(): string;
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ResourceType } from '../..';
|
|
2
|
-
import { HomeworksCreate, CreateResult, HomeworksUpdate, UpdateResult } from '../interface';
|
|
3
|
-
import { ResourceService } from '../ResourceService';
|
|
4
|
-
export declare class HomeworksResourceService extends ResourceService {
|
|
5
|
-
create<T extends HomeworksCreate>(parameters: T): Promise<CreateResult>;
|
|
6
|
-
update(parameters: HomeworksUpdate): Promise<UpdateResult>;
|
|
7
|
-
getResourceType(): ResourceType;
|
|
8
|
-
getApplication(): string;
|
|
9
|
-
getFormUrl(folderId?: string): string;
|
|
10
|
-
getViewUrl(resourceId: string): string;
|
|
11
|
-
getPrintUrl(resourceId: string): string;
|
|
12
|
-
getEditUrl(resourceId: string): string;
|
|
13
|
-
getExportUrl(): string;
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ResourceType } from '../..';
|
|
2
|
-
import { CreateParameters, CreateResult, TimelineGeneratorUpdate, UpdateResult } from '../interface';
|
|
3
|
-
import { ResourceService } from '../ResourceService';
|
|
4
|
-
export declare class TimelineGeneratorResourceService extends ResourceService {
|
|
5
|
-
create(parameters: CreateParameters): Promise<CreateResult>;
|
|
6
|
-
update(parameters: TimelineGeneratorUpdate): Promise<UpdateResult>;
|
|
7
|
-
getResourceType(): ResourceType;
|
|
8
|
-
getApplication(): string;
|
|
9
|
-
getFormUrl(): string;
|
|
10
|
-
getViewUrl(resourceId: string): string;
|
|
11
|
-
getPrintUrl(resourceId: string): string;
|
|
12
|
-
getEditUrl(): string;
|
|
13
|
-
getExportUrl(): string;
|
|
14
|
-
}
|