@edifice.io/client 2.0.0-develop-pedago.20250115151943 → 2.0.0-develop-pedago.20250116124516

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.
@@ -394,3 +394,5 @@ export interface ScrapbookUpdate extends UpdateParameters {
394
394
  }
395
395
  export interface ScrapbookResource extends IResource {
396
396
  }
397
+ export interface TimelineGeneratorUpdate extends UpdateParameters {
398
+ }
@@ -0,0 +1,14 @@
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edifice.io/client",
3
- "version": "2.0.0-develop-pedago.20250115151943",
3
+ "version": "2.0.0-develop-pedago.20250116124516",
4
4
  "description": "Edifice TypeScript Client",
5
5
  "homepage": "https://github.com/edificeio/edifice-frontend-framework/tree/main/packages/client#readme",
6
6
  "bugs": {
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "axios": "^1.7.7",
32
32
  "core-js": "^3.35.1",
33
- "@edifice.io/utilities": "2.0.0-develop-pedago.20250115151943"
33
+ "@edifice.io/utilities": "2.0.0-develop-pedago.20250116124516"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/jasmine": "5.1.4",