@ductape/sdk 0.0.4-v56 → 0.0.4-v59

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.
@@ -68,7 +68,7 @@ export interface IProductsBuilderService {
68
68
  addApp(app: IProductApp, throwErrorIfExists?: boolean): Promise<void>;
69
69
  createFeature(data: Partial<IProductFeature>, throwErrorIfExists?: boolean): Promise<void>;
70
70
  updateFeature(tag: string, data: Partial<IProductFeature>): Promise<void>;
71
- fetchFeature(tag: string): Promise<IProductFeature>;
71
+ fetchFeature(tag: string): Promise<IProductFeature | null>;
72
72
  fetchFeatures(): Promise<Array<IProductFeature>>;
73
73
  createDatabase(data: Partial<IProductDatabase>, throwErrorIfExists?: boolean): Promise<void>;
74
74
  updateDatabase(tag: string, data: Partial<IProductDatabase>): Promise<void>;
@@ -99,7 +99,7 @@ export interface IProductsBuilderService {
99
99
  deleteGraphAction(graphTag: string, actionTag: string): Promise<void>;
100
100
  createJob(data: Partial<IProductJobs>, throwErrorIfExists?: boolean): Promise<void>;
101
101
  updateJob(tag: string, data: Partial<IProductJobs>): Promise<void>;
102
- fetchJob(tag: string): Promise<IProductJobs>;
102
+ fetchJob(tag: string): Promise<IProductJobs | null>;
103
103
  fetchJobs(): Promise<Array<IProductJobs>>;
104
104
  createHealthcheck(data: Partial<IProductAppHealth>): Promise<void>;
105
105
  updateHealthcheck(tag: string, data: Partial<IProductAppHealth>): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ductape/sdk",
3
- "version": "0.0.4-v56",
3
+ "version": "0.0.4-v59",
4
4
  "description": "sdk for building ductaped products",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",