@epilot/app-client 0.6.3 → 0.6.4

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/openapi.d.ts CHANGED
@@ -80,6 +80,10 @@ declare namespace Components {
80
80
  dev_mode?: boolean;
81
81
  }
82
82
  export interface PatchVersionRequest {
83
+ /**
84
+ * ID of the manifest to use for this version
85
+ */
86
+ manifest_id?: string;
83
87
  /**
84
88
  * Name of the role
85
89
  */
@@ -383,6 +387,16 @@ declare namespace Components {
383
387
  * How often the subscription is billed
384
388
  */
385
389
  export type BillingFrequency = "MONTHLY" | "QUARTERLY" | "YEARLY" | "CUSTOM";
390
+ export interface BlueprintRef {
391
+ /**
392
+ * ID of the blueprint
393
+ */
394
+ manifest_id?: string;
395
+ /**
396
+ * ID of the job that created the blueprint
397
+ */
398
+ job_id?: string;
399
+ }
386
400
  export interface BooleanArg {
387
401
  type?: "boolean";
388
402
  }
@@ -552,6 +566,7 @@ declare namespace Components {
552
566
  */
553
567
  review_status?: "approved" | "rejected" | "pending";
554
568
  role?: Role;
569
+ blueprint_ref?: BlueprintRef;
555
570
  version_audit: {
556
571
  /**
557
572
  * Timestamp of the creation
@@ -725,6 +740,7 @@ declare namespace Components {
725
740
  */
726
741
  review_status?: "approved" | "rejected" | "pending";
727
742
  role?: Role;
743
+ blueprint_ref?: BlueprintRef;
728
744
  version_audit: {
729
745
  /**
730
746
  * Timestamp of the creation
@@ -954,6 +970,7 @@ declare namespace Components {
954
970
  * The name of the role the app can use to access APIs
955
971
  */
956
972
  role?: string;
973
+ blueprint_ref?: BlueprintRef;
957
974
  /**
958
975
  * Audit information for the app
959
976
  */
@@ -1236,6 +1253,7 @@ declare namespace Components {
1236
1253
  */
1237
1254
  version: string;
1238
1255
  role?: Role;
1256
+ blueprint_ref?: BlueprintRef;
1239
1257
  /**
1240
1258
  * Latest version of the app
1241
1259
  */
@@ -2380,6 +2398,7 @@ export type BaseComponentCommon = Components.Schemas.BaseComponentCommon;
2380
2398
  export type BaseCustomActionConfig = Components.Schemas.BaseCustomActionConfig;
2381
2399
  export type BatchEventRequest = Components.Schemas.BatchEventRequest;
2382
2400
  export type BillingFrequency = Components.Schemas.BillingFrequency;
2401
+ export type BlueprintRef = Components.Schemas.BlueprintRef;
2383
2402
  export type BooleanArg = Components.Schemas.BooleanArg;
2384
2403
  export type CallerIdentity = Components.Schemas.CallerIdentity;
2385
2404
  export type ComponentType = Components.Schemas.ComponentType;
package/dist/openapi.json CHANGED
@@ -1380,6 +1380,10 @@
1380
1380
  "schema": {
1381
1381
  "type": "object",
1382
1382
  "properties": {
1383
+ "manifest_id": {
1384
+ "type": "string",
1385
+ "description": "ID of the manifest to use for this version"
1386
+ },
1383
1387
  "role_id": {
1384
1388
  "nullable": true,
1385
1389
  "type": "string",
@@ -2455,6 +2459,9 @@
2455
2459
  "role": {
2456
2460
  "$ref": "#/components/schemas/Role"
2457
2461
  },
2462
+ "blueprint_ref": {
2463
+ "$ref": "#/components/schemas/BlueprintRef"
2464
+ },
2458
2465
  "version_audit": {
2459
2466
  "readOnly": true,
2460
2467
  "allOf": [
@@ -2500,6 +2507,19 @@
2500
2507
  }
2501
2508
  }
2502
2509
  },
2510
+ "BlueprintRef": {
2511
+ "type": "object",
2512
+ "properties": {
2513
+ "manifest_id": {
2514
+ "type": "string",
2515
+ "description": "ID of the blueprint"
2516
+ },
2517
+ "job_id": {
2518
+ "type": "string",
2519
+ "description": "ID of the job that created the blueprint"
2520
+ }
2521
+ }
2522
+ },
2503
2523
  "Installation": {
2504
2524
  "description": "Information about the installed app. Has configuration data of the installed version",
2505
2525
  "type": "object",
@@ -2563,6 +2583,9 @@
2563
2583
  "type": "string",
2564
2584
  "description": "The name of the role the app can use to access APIs"
2565
2585
  },
2586
+ "blueprint_ref": {
2587
+ "$ref": "#/components/schemas/BlueprintRef"
2588
+ },
2566
2589
  "installation_audit": {
2567
2590
  "readOnly": true,
2568
2591
  "allOf": [
@@ -2675,6 +2698,9 @@
2675
2698
  "role": {
2676
2699
  "$ref": "#/components/schemas/Role"
2677
2700
  },
2701
+ "blueprint_ref": {
2702
+ "$ref": "#/components/schemas/BlueprintRef"
2703
+ },
2678
2704
  "latest_version": {
2679
2705
  "type": "string",
2680
2706
  "description": "Latest version of the app",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "JavaScript client library for the epilot App API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",