@eide/foir-cli 0.1.42 → 0.1.43

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.
@@ -41,6 +41,8 @@ interface FoirPullConfig {
41
41
  prettier?: boolean;
42
42
  }
43
43
  interface FoirConfig {
44
+ /** Named project profile to use by default */
45
+ project?: string;
44
46
  pull?: FoirPullConfig;
45
47
  }
46
48
  /**
@@ -0,0 +1,10 @@
1
+ import {
2
+ findConfigFile,
3
+ loadConfigFile,
4
+ loadConfigProject
5
+ } from "./chunk-L642MYIL.js";
6
+ export {
7
+ findConfigFile,
8
+ loadConfigFile,
9
+ loadConfigProject
10
+ };
@@ -200,7 +200,7 @@ type Query {
200
200
  billingPlan(slug: String!): BillingPlan
201
201
  billingCustomPackages(tenantId: ID): [BillingCustomPackage!]!
202
202
  billingCustomPackage(id: ID!): BillingCustomPackage
203
- billingSubscription: BillingSubscription
203
+ billingSubscription(tenantId: ID): BillingSubscription
204
204
  billingUsageSummary(projectId: ID): BillingUsageSummary!
205
205
  billingUsageAlerts: [UsageAlert!]!
206
206
  tenantBillingStatus(status: String, limit: Int, offset: Int): TenantBillingStatusResult!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eide/foir-cli",
3
- "version": "0.1.42",
3
+ "version": "0.1.43",
4
4
  "description": "Universal platform CLI for Foir platform",
5
5
  "type": "module",
6
6
  "publishConfig": {