@autohq/cli 0.1.503 → 0.1.504

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.
@@ -30866,7 +30866,7 @@ Object.assign(lookup, {
30866
30866
  // package.json
30867
30867
  var package_default = {
30868
30868
  name: "@autohq/cli",
30869
- version: "0.1.503",
30869
+ version: "0.1.504",
30870
30870
  license: "SEE LICENSE IN README.md",
30871
30871
  publishConfig: {
30872
30872
  access: "public"
@@ -38795,6 +38795,7 @@ var UserSubscriptionFundingCandidateSchema = external_exports.object({
38795
38795
  ownerUserId: UserIdSchema,
38796
38796
  status: UserSubscriptionCredentialStatusSchema,
38797
38797
  policyMode: UserSubscriptionPolicyModeSchema,
38798
+ allowAgentAttribution: external_exports.boolean().default(false),
38798
38799
  ownerIsScopeMember: external_exports.boolean()
38799
38800
  }).strict();
38800
38801
  var UserSubscriptionFundingDecisionInputSchema = external_exports.object({
@@ -38802,9 +38803,11 @@ var UserSubscriptionFundingDecisionInputSchema = external_exports.object({
38802
38803
  provider: ModelApiTokenProviderSchema,
38803
38804
  model: external_exports.string().trim().min(1),
38804
38805
  requester: RequesterSchema.nullable(),
38806
+ qualifiedRequesterUserId: UserIdSchema.nullable().default(null),
38805
38807
  automationOwnerUserId: UserIdSchema.nullable(),
38806
38808
  organizationMemberCount: external_exports.number().int().positive(),
38807
38809
  userSubscription: UserSubscriptionFundingCandidateSchema.nullable(),
38810
+ subscriptionRejectionReason: external_exports.enum(["agent_attribution_disabled", "agent_attribution_untrusted"]).nullable().default(null),
38808
38811
  tenantProviderGrantId: ProviderGrantIdSchema.nullable()
38809
38812
  }).strict();
38810
38813
  var USER_SUBSCRIPTION_REJECTION_REASONS = [
@@ -38814,6 +38817,8 @@ var USER_SUBSCRIPTION_REJECTION_REASONS = [
38814
38817
  "ineligible_harness",
38815
38818
  "ineligible_provider",
38816
38819
  "ineligible_model",
38820
+ "agent_attribution_disabled",
38821
+ "agent_attribution_untrusted",
38817
38822
  "policy_not_applicable"
38818
38823
  ];
38819
38824
  var UserSubscriptionRejectionReasonSchema = external_exports.enum(
package/dist/index.js CHANGED
@@ -60811,6 +60811,7 @@ var init_user_subscriptions = __esm({
60811
60811
  ownerUserId: UserIdSchema,
60812
60812
  status: UserSubscriptionCredentialStatusSchema,
60813
60813
  policyMode: UserSubscriptionPolicyModeSchema,
60814
+ allowAgentAttribution: external_exports.boolean().default(false),
60814
60815
  ownerIsScopeMember: external_exports.boolean()
60815
60816
  }).strict();
60816
60817
  UserSubscriptionFundingDecisionInputSchema = external_exports.object({
@@ -60818,9 +60819,11 @@ var init_user_subscriptions = __esm({
60818
60819
  provider: ModelApiTokenProviderSchema,
60819
60820
  model: external_exports.string().trim().min(1),
60820
60821
  requester: RequesterSchema.nullable(),
60822
+ qualifiedRequesterUserId: UserIdSchema.nullable().default(null),
60821
60823
  automationOwnerUserId: UserIdSchema.nullable(),
60822
60824
  organizationMemberCount: external_exports.number().int().positive(),
60823
60825
  userSubscription: UserSubscriptionFundingCandidateSchema.nullable(),
60826
+ subscriptionRejectionReason: external_exports.enum(["agent_attribution_disabled", "agent_attribution_untrusted"]).nullable().default(null),
60824
60827
  tenantProviderGrantId: ProviderGrantIdSchema.nullable()
60825
60828
  }).strict();
60826
60829
  USER_SUBSCRIPTION_REJECTION_REASONS = [
@@ -60830,6 +60833,8 @@ var init_user_subscriptions = __esm({
60830
60833
  "ineligible_harness",
60831
60834
  "ineligible_provider",
60832
60835
  "ineligible_model",
60836
+ "agent_attribution_disabled",
60837
+ "agent_attribution_untrusted",
60833
60838
  "policy_not_applicable"
60834
60839
  ];
60835
60840
  UserSubscriptionRejectionReasonSchema = external_exports.enum(
@@ -63714,7 +63719,7 @@ var init_package = __esm({
63714
63719
  "package.json"() {
63715
63720
  package_default = {
63716
63721
  name: "@autohq/cli",
63717
- version: "0.1.503",
63722
+ version: "0.1.504",
63718
63723
  license: "SEE LICENSE IN README.md",
63719
63724
  publishConfig: {
63720
63725
  access: "public"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autohq/cli",
3
- "version": "0.1.503",
3
+ "version": "0.1.504",
4
4
  "license": "SEE LICENSE IN README.md",
5
5
  "publishConfig": {
6
6
  "access": "public"