@gpt-core/admin 0.9.18 → 0.9.19

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
@@ -8295,11 +8295,19 @@ type PostAdminTenantPricingOverridesData = {
8295
8295
  data: {
8296
8296
  attributes?: {
8297
8297
  application_id: string;
8298
+ /**
8299
+ * When this override expires. NULL means no expiration.
8300
+ */
8301
+ expires_at?: unknown;
8298
8302
  floor_price?: {
8299
8303
  amount: string;
8300
8304
  currency: string;
8301
8305
  } | unknown;
8302
8306
  margin_percent?: number | unknown;
8307
+ /**
8308
+ * Audit trail: why this override was created (e.g., 'Volume discount', 'Promotional pricing')
8309
+ */
8310
+ reason?: string | unknown;
8303
8311
  service_id: string;
8304
8312
  tenant_id: string;
8305
8313
  };
@@ -12383,11 +12391,19 @@ type PatchAdminTenantPricingOverridesByIdData = {
12383
12391
  body?: {
12384
12392
  data: {
12385
12393
  attributes?: {
12394
+ /**
12395
+ * When this override expires. NULL means no expiration.
12396
+ */
12397
+ expires_at?: unknown;
12386
12398
  floor_price?: {
12387
12399
  amount: string;
12388
12400
  currency: string;
12389
12401
  } | unknown;
12390
12402
  margin_percent?: number | unknown;
12403
+ /**
12404
+ * Audit trail: why this override was created (e.g., 'Volume discount', 'Promotional pricing')
12405
+ */
12406
+ reason?: string | unknown;
12391
12407
  };
12392
12408
  id: string;
12393
12409
  relationships?: {
@@ -17014,7 +17030,10 @@ type PostAdminPricingStrategiesData = {
17014
17030
  body: {
17015
17031
  data: {
17016
17032
  attributes?: {
17017
- application_id: string;
17033
+ /**
17034
+ * Application ID. NULL means platform default.
17035
+ */
17036
+ application_id?: string | unknown;
17018
17037
  /**
17019
17038
  * The minimum price per unit for this service
17020
17039
  */
package/dist/index.d.ts CHANGED
@@ -8295,11 +8295,19 @@ type PostAdminTenantPricingOverridesData = {
8295
8295
  data: {
8296
8296
  attributes?: {
8297
8297
  application_id: string;
8298
+ /**
8299
+ * When this override expires. NULL means no expiration.
8300
+ */
8301
+ expires_at?: unknown;
8298
8302
  floor_price?: {
8299
8303
  amount: string;
8300
8304
  currency: string;
8301
8305
  } | unknown;
8302
8306
  margin_percent?: number | unknown;
8307
+ /**
8308
+ * Audit trail: why this override was created (e.g., 'Volume discount', 'Promotional pricing')
8309
+ */
8310
+ reason?: string | unknown;
8303
8311
  service_id: string;
8304
8312
  tenant_id: string;
8305
8313
  };
@@ -12383,11 +12391,19 @@ type PatchAdminTenantPricingOverridesByIdData = {
12383
12391
  body?: {
12384
12392
  data: {
12385
12393
  attributes?: {
12394
+ /**
12395
+ * When this override expires. NULL means no expiration.
12396
+ */
12397
+ expires_at?: unknown;
12386
12398
  floor_price?: {
12387
12399
  amount: string;
12388
12400
  currency: string;
12389
12401
  } | unknown;
12390
12402
  margin_percent?: number | unknown;
12403
+ /**
12404
+ * Audit trail: why this override was created (e.g., 'Volume discount', 'Promotional pricing')
12405
+ */
12406
+ reason?: string | unknown;
12391
12407
  };
12392
12408
  id: string;
12393
12409
  relationships?: {
@@ -17014,7 +17030,10 @@ type PostAdminPricingStrategiesData = {
17014
17030
  body: {
17015
17031
  data: {
17016
17032
  attributes?: {
17017
- application_id: string;
17033
+ /**
17034
+ * Application ID. NULL means platform default.
17035
+ */
17036
+ application_id?: string | unknown;
17018
17037
  /**
17019
17038
  * The minimum price per unit for this service
17020
17039
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.9.18",
3
+ "version": "0.9.19",
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",