@gpt-core/admin 0.5.6 → 0.5.7

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/index.d.mts CHANGED
@@ -3000,6 +3000,10 @@ type PostAdminApplicationsData = {
3000
3000
  body: {
3001
3001
  data: {
3002
3002
  attributes?: {
3003
+ /**
3004
+ * Optional manual API key override (for system seeds)
3005
+ */
3006
+ api_key?: string | unknown;
3003
3007
  api_key_type: "server" | "system" | "application";
3004
3008
  /**
3005
3009
  * Credits allocated to new tenants registering via this application
@@ -21627,6 +21631,10 @@ type PostAdminPricingRulesData = {
21627
21631
  body: {
21628
21632
  data: {
21629
21633
  attributes?: {
21634
+ /**
21635
+ * Optional: Link pricing rule to a specific application
21636
+ */
21637
+ application_id?: string | unknown;
21630
21638
  cost_credits: string;
21631
21639
  group_id?: string | unknown;
21632
21640
  service: string;
package/dist/index.d.ts CHANGED
@@ -3000,6 +3000,10 @@ type PostAdminApplicationsData = {
3000
3000
  body: {
3001
3001
  data: {
3002
3002
  attributes?: {
3003
+ /**
3004
+ * Optional manual API key override (for system seeds)
3005
+ */
3006
+ api_key?: string | unknown;
3003
3007
  api_key_type: "server" | "system" | "application";
3004
3008
  /**
3005
3009
  * Credits allocated to new tenants registering via this application
@@ -21627,6 +21631,10 @@ type PostAdminPricingRulesData = {
21627
21631
  body: {
21628
21632
  data: {
21629
21633
  attributes?: {
21634
+ /**
21635
+ * Optional: Link pricing rule to a specific application
21636
+ */
21637
+ application_id?: string | unknown;
21630
21638
  cost_credits: string;
21631
21639
  group_id?: string | unknown;
21632
21640
  service: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "description": "TypeScript SDK for GPT Core Admin API - Platform administration and ISV management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",