@openmeter/sdk 1.0.0-beta-503e2eb03f86 → 1.0.0-beta-5b4cfc786904

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.
@@ -9934,6 +9934,8 @@ export interface components {
9934
9934
  'BillingProfileListCustomerOverridesParams.customerName': string;
9935
9935
  /** @description Filter by customer primary email */
9936
9936
  'BillingProfileListCustomerOverridesParams.customerPrimaryEmail': string;
9937
+ /** @description Only return customers without pinned billing profiles. This implicitly sets includeAllCustomers to true. */
9938
+ 'BillingProfileListCustomerOverridesParams.customersWithoutPinnedProfile': boolean;
9937
9939
  /** @description Expand the response with additional details. */
9938
9940
  'BillingProfileListCustomerOverridesParams.expand': components['schemas']['BillingProfileCustomerOverrideExpand'][];
9939
9941
  /** @description Include customers without customer overrides.
@@ -10502,6 +10504,7 @@ export type ParameterBillingProfileListCustomerOverridesParamsCustomerId = compo
10502
10504
  export type ParameterBillingProfileListCustomerOverridesParamsCustomerKey = components['parameters']['BillingProfileListCustomerOverridesParams.customerKey'];
10503
10505
  export type ParameterBillingProfileListCustomerOverridesParamsCustomerName = components['parameters']['BillingProfileListCustomerOverridesParams.customerName'];
10504
10506
  export type ParameterBillingProfileListCustomerOverridesParamsCustomerPrimaryEmail = components['parameters']['BillingProfileListCustomerOverridesParams.customerPrimaryEmail'];
10507
+ export type ParameterBillingProfileListCustomerOverridesParamsCustomersWithoutPinnedProfile = components['parameters']['BillingProfileListCustomerOverridesParams.customersWithoutPinnedProfile'];
10505
10508
  export type ParameterBillingProfileListCustomerOverridesParamsExpand = components['parameters']['BillingProfileListCustomerOverridesParams.expand'];
10506
10509
  export type ParameterBillingProfileListCustomerOverridesParamsIncludeAllCustomers = components['parameters']['BillingProfileListCustomerOverridesParams.includeAllCustomers'];
10507
10510
  export type ParameterBillingProfileOrderByOrderingOrder = components['parameters']['BillingProfileOrderByOrdering.order'];
@@ -12081,6 +12084,8 @@ export interface operations {
12081
12084
  query?: {
12082
12085
  /** @description Filter by billing profile. */
12083
12086
  billingProfile?: components['parameters']['BillingProfileListCustomerOverridesParams.billingProfile'];
12087
+ /** @description Only return customers without pinned billing profiles. This implicitly sets includeAllCustomers to true. */
12088
+ customersWithoutPinnedProfile?: components['parameters']['BillingProfileListCustomerOverridesParams.customersWithoutPinnedProfile'];
12084
12089
  /** @description Include customers without customer overrides.
12085
12090
  *
12086
12091
  * If set to false only the customers specifically associated with a billing profile will be returned.
@@ -1615,6 +1615,10 @@ exports.listBillingProfileCustomerOverridesQueryParams = zod_1.z.object({
1615
1615
  .string()
1616
1616
  .optional()
1617
1617
  .describe('Filter by customer primary email'),
1618
+ customersWithoutPinnedProfile: zod_1.z
1619
+ .boolean()
1620
+ .optional()
1621
+ .describe('Only return customers without pinned billing profiles. This implicitly sets includeAllCustomers to true.'),
1618
1622
  expand: zod_1.z
1619
1623
  .array(zod_1.z
1620
1624
  .enum(['apps', 'customer'])
@@ -2386,6 +2386,7 @@ export declare const listBillingProfileCustomerOverridesQueryParams: zod.ZodObje
2386
2386
  customerKey: zod.ZodOptional<zod.ZodString>;
2387
2387
  customerName: zod.ZodOptional<zod.ZodString>;
2388
2388
  customerPrimaryEmail: zod.ZodOptional<zod.ZodString>;
2389
+ customersWithoutPinnedProfile: zod.ZodOptional<zod.ZodBoolean>;
2389
2390
  expand: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<["apps", "customer"]>, "many">>;
2390
2391
  includeAllCustomers: zod.ZodDefault<zod.ZodBoolean>;
2391
2392
  order: zod.ZodOptional<zod.ZodEnum<["ASC", "DESC"]>>;
@@ -2403,6 +2404,7 @@ export declare const listBillingProfileCustomerOverridesQueryParams: zod.ZodObje
2403
2404
  order?: "ASC" | "DESC" | undefined;
2404
2405
  orderBy?: "customerId" | "customerName" | "customerKey" | "customerPrimaryEmail" | "customerCreatedAt" | undefined;
2405
2406
  billingProfile?: string[] | undefined;
2407
+ customersWithoutPinnedProfile?: boolean | undefined;
2406
2408
  expand?: ("apps" | "customer")[] | undefined;
2407
2409
  }, {
2408
2410
  customerId?: string[] | undefined;
@@ -2414,6 +2416,7 @@ export declare const listBillingProfileCustomerOverridesQueryParams: zod.ZodObje
2414
2416
  order?: "ASC" | "DESC" | undefined;
2415
2417
  orderBy?: "customerId" | "customerName" | "customerKey" | "customerPrimaryEmail" | "customerCreatedAt" | undefined;
2416
2418
  billingProfile?: string[] | undefined;
2419
+ customersWithoutPinnedProfile?: boolean | undefined;
2417
2420
  expand?: ("apps" | "customer")[] | undefined;
2418
2421
  includeAllCustomers?: boolean | undefined;
2419
2422
  }>;