@burdenoff/microfe-billing 2026.516.1 → 2026.517.2
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/billing/modules/usage/hooks/useUsage.d.ts +3 -0
- package/dist/billing/modules/usage/hooks/useUsage.d.ts.map +1 -1
- package/dist/billing/modules/usage/hooks/useUsage.js +4 -1
- package/dist/billing/modules/usage/hooks/useUsage.js.map +1 -1
- package/dist/billing/modules/usage/pages/UsagePage.d.ts.map +1 -1
- package/dist/billing/modules/usage/pages/UsagePage.js +41 -19
- package/dist/billing/modules/usage/pages/UsagePage.js.map +1 -1
- package/dist/generated/global-operations.d.ts +3 -0
- package/dist/generated/global-operations.d.ts.map +1 -1
- package/dist/generated/global-operations.js +3 -0
- package/dist/generated/global-operations.js.map +1 -1
- package/dist/generated/global-types.d.ts +341 -1392
- package/dist/generated/global-types.d.ts.map +1 -1
- package/dist/generated/global-types.js.map +1 -1
- package/dist/generated/wspace-types.d.ts +2907 -11652
- package/dist/generated/wspace-types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -249,22 +249,7 @@ export declare enum ActorType {
|
|
|
249
249
|
/** Human user */
|
|
250
250
|
User = "USER"
|
|
251
251
|
}
|
|
252
|
-
/**
|
|
253
|
-
* Specific adapter/provider type for each ChannelPlatform.
|
|
254
|
-
* ChannelPlatform = High-level category (EMAIL, SMS, PUSH, etc.)
|
|
255
|
-
* AdapterType = Specific provider implementation
|
|
256
|
-
*
|
|
257
|
-
* Currently supported adapters (must match Prisma schema):
|
|
258
|
-
* EMAIL: AWS_SES, AZURE_ACS
|
|
259
|
-
* SMS: AWS_SNS, TWILIO_SMS
|
|
260
|
-
* WHATSAPP: WHATSAPP_CLOUD, WHATSAPP_TWILIO
|
|
261
|
-
* SLACK: SLACK_BOT
|
|
262
|
-
* TEAMS: TEAMS_BOT
|
|
263
|
-
* DISCORD: DISCORD_BOT
|
|
264
|
-
* PUSH: FCM
|
|
265
|
-
* INAPP: INAPP_NATIVE
|
|
266
|
-
* WEBHOOK: WEBHOOK_HTTP
|
|
267
|
-
*/
|
|
252
|
+
/** Specific adapter/provider type for each ChannelPlatform. ChannelPlatform = High-level category (EMAIL, SMS, PUSH, etc.) AdapterType = Specific provider implementation Currently supported adapters (must match Prisma schema): EMAIL: AWS_SES, AZURE_ACS SMS: AWS_SNS, TWILIO_SMS WHATSAPP: WHATSAPP_CLOUD, WHATSAPP_TWILIO SLACK: SLACK_BOT TEAMS: TEAMS_BOT DISCORD: DISCORD_BOT PUSH: FCM INAPP: INAPP_NATIVE WEBHOOK: WEBHOOK_HTTP */
|
|
268
253
|
export declare enum AdapterType {
|
|
269
254
|
/** Amazon Simple Email Service */
|
|
270
255
|
AwsSes = "AWS_SES",
|
|
@@ -389,19 +374,13 @@ export type Addon = {
|
|
|
389
374
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
390
375
|
/** The currency in which the addon is priced. Defaults to 'USD'. */
|
|
391
376
|
currency?: Maybe<Scalars['String']['output']>;
|
|
392
|
-
/**
|
|
393
|
-
* Prices for all supported currencies with beautiful rounding.
|
|
394
|
-
* Example: { "USD": 2.00, "INR": 199, "EUR": 1.99, "GBP": 1.79 }
|
|
395
|
-
*/
|
|
377
|
+
/** Prices for all supported currencies with beautiful rounding. Example: { "USD": 2.00, "INR": 199, "EUR": 1.99, "GBP": 1.79 } */
|
|
396
378
|
currencyPrices?: Maybe<Scalars['JSON']['output']>;
|
|
397
379
|
/** The duration for which the addon is valid (e.g., monthly, yearly). Defaults to 'monthly'. */
|
|
398
380
|
duration?: Maybe<PlanDuration>;
|
|
399
381
|
/** A list of features provided by this addon, such as extra quotas or special services. */
|
|
400
382
|
features?: Maybe<Array<Maybe<SubscriptionFeatures>>>;
|
|
401
|
-
/**
|
|
402
|
-
* Geography-specific price overrides. The billing account's country/state/region plus
|
|
403
|
-
* currency decide whether one of these overrides applies.
|
|
404
|
-
*/
|
|
383
|
+
/** Geography-specific price overrides. The billing account's country/state/region plus currency decide whether one of these overrides applies. */
|
|
405
384
|
geoPricingOverrides: Array<GeoPricingOverride>;
|
|
406
385
|
/** The unique identifier for the Addon, automatically generated as a UUID. */
|
|
407
386
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -418,10 +397,7 @@ export type Addon = {
|
|
|
418
397
|
/** The timestamp when the addon was last updated. */
|
|
419
398
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
420
399
|
};
|
|
421
|
-
/**
|
|
422
|
-
* Tracks historical price changes for an Addon.
|
|
423
|
-
* A new record is created whenever an addon's price is updated.
|
|
424
|
-
*/
|
|
400
|
+
/** Tracks historical price changes for an Addon. A new record is created whenever an addon's price is updated. */
|
|
425
401
|
export type AddonPriceHistory = {
|
|
426
402
|
__typename?: 'AddonPriceHistory';
|
|
427
403
|
/** The addon this price change belongs to */
|
|
@@ -467,11 +443,7 @@ export type AddonSubscription = {
|
|
|
467
443
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
468
444
|
};
|
|
469
445
|
export type AddonsFilter = {
|
|
470
|
-
/**
|
|
471
|
-
* Include free addons (price = 0) in the response.
|
|
472
|
-
* Defaults to true. Set to false on user-facing browse pages
|
|
473
|
-
* since free addons are auto-assigned and cannot be purchased.
|
|
474
|
-
*/
|
|
446
|
+
/** Include free addons (price = 0) in the response. Defaults to true. Set to false on user-facing browse pages since free addons are auto-assigned and cannot be purchased. */
|
|
475
447
|
includeFree?: InputMaybe<Scalars['Boolean']['input']>;
|
|
476
448
|
/** Filter addons by product ID. When set, only addons with this productID are returned. */
|
|
477
449
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -690,11 +662,7 @@ export type AgentProfile = {
|
|
|
690
662
|
createdAt: Scalars['DateTime']['output'];
|
|
691
663
|
currentChats: Scalars['Int']['output'];
|
|
692
664
|
currentTickets: Scalars['Int']['output'];
|
|
693
|
-
/**
|
|
694
|
-
* Anonymized display alias surfaced to end-users in support conversations.
|
|
695
|
-
* Stable per agent (deterministic-on-first-use) so the same agent always shows
|
|
696
|
-
* the same alias to a given user. Real userId / user are admin-only.
|
|
697
|
-
*/
|
|
665
|
+
/** Anonymized display alias surfaced to end-users in support conversations. Stable per agent (deterministic-on-first-use) so the same agent always shows the same alias to a given user. Real userId / user are admin-only. */
|
|
698
666
|
displayAlias?: Maybe<Scalars['String']['output']>;
|
|
699
667
|
id: Scalars['ID']['output'];
|
|
700
668
|
isAvailable: Scalars['Boolean']['output'];
|
|
@@ -1144,10 +1112,7 @@ export type Application = {
|
|
|
1144
1112
|
/** Structured tag assignments via wspace-tags-svc. Resource type: APPLICATION. */
|
|
1145
1113
|
tagAssignments: Array<ApplicationTagAssignment>;
|
|
1146
1114
|
/**
|
|
1147
|
-
* Legacy free-text tag list. Maintained for backwards compatibility while
|
|
1148
|
-
* consumers migrate to `tagAssignments`. New writes should use the
|
|
1149
|
-
* `addTagToApplication` / `removeTagFromApplication` mutations and consume
|
|
1150
|
-
* `tagAssignments` (resolved via wspace-tags-svc).
|
|
1115
|
+
* Legacy free-text tag list. Maintained for backwards compatibility while consumers migrate to `tagAssignments`. New writes should use the `addTagToApplication` / `removeTagFromApplication` mutations and consume `tagAssignments` (resolved via wspace-tags-svc).
|
|
1151
1116
|
* @deprecated Use tagAssignments for structured tag data via wspace-tags-svc
|
|
1152
1117
|
*/
|
|
1153
1118
|
tags: Array<Scalars['String']['output']>;
|
|
@@ -1208,10 +1173,7 @@ export type ApplicationScope = {
|
|
|
1208
1173
|
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
1209
1174
|
scope: Scalars['String']['output'];
|
|
1210
1175
|
};
|
|
1211
|
-
/**
|
|
1212
|
-
* Tag assignment binding a UniversalTag to an Application. Mirrors the universal
|
|
1213
|
-
* tag-assignment shape from wspace-tags-svc.UniversalTagAssignment.
|
|
1214
|
-
*/
|
|
1176
|
+
/** Tag assignment binding a UniversalTag to an Application. Mirrors the universal tag-assignment shape from wspace-tags-svc.UniversalTagAssignment. */
|
|
1215
1177
|
export type ApplicationTagAssignment = {
|
|
1216
1178
|
__typename?: 'ApplicationTagAssignment';
|
|
1217
1179
|
assignedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -1416,10 +1378,7 @@ export type AuthMethodConfigInput = {
|
|
|
1416
1378
|
samlEntityId?: InputMaybe<Scalars['String']['input']>;
|
|
1417
1379
|
samlSsoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1418
1380
|
};
|
|
1419
|
-
/**
|
|
1420
|
-
* Authentication response with optional MFA challenge support
|
|
1421
|
-
* When requiresMFA is true, user/tokens will be null until MFA verification
|
|
1422
|
-
*/
|
|
1381
|
+
/** Authentication response with optional MFA challenge support When requiresMFA is true, user/tokens will be null until MFA verification */
|
|
1423
1382
|
export type AuthPayload = {
|
|
1424
1383
|
__typename?: 'AuthPayload';
|
|
1425
1384
|
accessToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -1521,10 +1480,7 @@ export type BatchOperationResult = {
|
|
|
1521
1480
|
failedIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1522
1481
|
success: Scalars['Boolean']['output'];
|
|
1523
1482
|
};
|
|
1524
|
-
/**
|
|
1525
|
-
* BillingAccount entity - resolvable via Federation Gateway.
|
|
1526
|
-
* Other services (e.g., store-svc) can reference BillingAccount by id.
|
|
1527
|
-
*/
|
|
1483
|
+
/** BillingAccount entity - resolvable via Federation Gateway. Other services (e.g., store-svc) can reference BillingAccount by id. */
|
|
1528
1484
|
export type BillingAccount = {
|
|
1529
1485
|
__typename?: 'BillingAccount';
|
|
1530
1486
|
/** The billing addresses associated with this billing account */
|
|
@@ -1655,10 +1611,7 @@ export type BillingOrder = {
|
|
|
1655
1611
|
/** External order ID from the service (e.g., "store-order-12345") */
|
|
1656
1612
|
id: Scalars['ID']['output'];
|
|
1657
1613
|
items: Scalars['JSON']['output'];
|
|
1658
|
-
/**
|
|
1659
|
-
* Tax is calculated at payment time and stored in Transaction/Payment, not BillingOrder.
|
|
1660
|
-
* Tax info can be found in metadata.paymentTaxAmount, metadata.paymentTaxRate, metadata.paymentTotal
|
|
1661
|
-
*/
|
|
1614
|
+
/** Tax is calculated at payment time and stored in Transaction/Payment, not BillingOrder. Tax info can be found in metadata.paymentTaxAmount, metadata.paymentTaxRate, metadata.paymentTotal */
|
|
1662
1615
|
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
1663
1616
|
orgId: Scalars['String']['output'];
|
|
1664
1617
|
status: BillingOrderStatus;
|
|
@@ -2048,28 +2001,15 @@ export type ChangePasswordInput = {
|
|
|
2048
2001
|
/** Channel represents a configured connection to a communication platform */
|
|
2049
2002
|
export type Channel = {
|
|
2050
2003
|
__typename?: 'Channel';
|
|
2051
|
-
/**
|
|
2052
|
-
* Specific adapter type (SENDGRID, AWS_SES, TWILIO, etc.)
|
|
2053
|
-
* Used for priority-based fallback delivery.
|
|
2054
|
-
*/
|
|
2004
|
+
/** Specific adapter type (SENDGRID, AWS_SES, TWILIO, etc.) Used for priority-based fallback delivery. */
|
|
2055
2005
|
adapterType?: Maybe<AdapterType>;
|
|
2056
|
-
/**
|
|
2057
|
-
* Channel type discriminator — determines delivery behaviour.
|
|
2058
|
-
* NOTIFICATION (EMAIL, SMS): outbound-only, adapter failover supported.
|
|
2059
|
-
* COMMUNICATION (SLACK, TEAMS, DISCORD, WHATSAPP, WEBCHAT, INAPP, WEBHOOK): bi-directional.
|
|
2060
|
-
*/
|
|
2006
|
+
/** Channel type discriminator — determines delivery behaviour. NOTIFICATION (EMAIL, SMS): outbound-only, adapter failover supported. COMMUNICATION (SLACK, TEAMS, DISCORD, WHATSAPP, WEBCHAT, INAPP, WEBHOOK): bi-directional. */
|
|
2061
2007
|
channelType: ChannelType;
|
|
2062
|
-
/**
|
|
2063
|
-
* Typed channel configuration.
|
|
2064
|
-
* Returns structured configuration with defaults applied.
|
|
2065
|
-
*/
|
|
2008
|
+
/** Typed channel configuration. Returns structured configuration with defaults applied. */
|
|
2066
2009
|
config: ChannelConfig;
|
|
2067
2010
|
/** Channel connection (authenticated credentials) */
|
|
2068
2011
|
connection?: Maybe<ChannelConnection>;
|
|
2069
|
-
/**
|
|
2070
|
-
* Real-time connection health (system-monitored: HEALTHY, DEGRADED, UNHEALTHY).
|
|
2071
|
-
* Updated automatically based on API calls and health checks.
|
|
2072
|
-
*/
|
|
2012
|
+
/** Real-time connection health (system-monitored: HEALTHY, DEGRADED, UNHEALTHY). Updated automatically based on API calls and health checks. */
|
|
2073
2013
|
connectionHealth: ConnectionHealth;
|
|
2074
2014
|
/** Number of consecutive API failures (resets to 0 on success) */
|
|
2075
2015
|
consecutiveFailures: Scalars['Int']['output'];
|
|
@@ -2101,16 +2041,9 @@ export type Channel = {
|
|
|
2101
2041
|
organizationId: Scalars['ID']['output'];
|
|
2102
2042
|
/** Communication platform (Slack, Teams, Discord, etc.) */
|
|
2103
2043
|
platform: ChannelPlatform;
|
|
2104
|
-
/**
|
|
2105
|
-
* Platform-specific configuration (webhook URLs, channel IDs, etc.)
|
|
2106
|
-
* Raw JSON for backward compatibility.
|
|
2107
|
-
*/
|
|
2044
|
+
/** Platform-specific configuration (webhook URLs, channel IDs, etc.) Raw JSON for backward compatibility. */
|
|
2108
2045
|
platformConfig?: Maybe<Scalars['JSON']['output']>;
|
|
2109
|
-
/**
|
|
2110
|
-
* Priority for fallback ordering (lower = higher priority, tried first).
|
|
2111
|
-
* Example: SendGrid(1) → AWS SES(2) → Azure ACS(3)
|
|
2112
|
-
* All ACTIVE channels are included in the failover chain.
|
|
2113
|
-
*/
|
|
2046
|
+
/** Priority for fallback ordering (lower = higher priority, tried first). Example: SendGrid(1) → AWS SES(2) → Azure ACS(3) All ACTIVE channels are included in the failover chain. */
|
|
2114
2047
|
priority: Scalars['Int']['output'];
|
|
2115
2048
|
/** Current channel status (admin-controlled: ACTIVE, INACTIVE, etc.) */
|
|
2116
2049
|
status: ChannelStatus;
|
|
@@ -2136,10 +2069,7 @@ export declare enum ChannelAuthType {
|
|
|
2136
2069
|
/** Webhook-only (no authentication) */
|
|
2137
2070
|
Webhook = "WEBHOOK"
|
|
2138
2071
|
}
|
|
2139
|
-
/**
|
|
2140
|
-
* Channel configuration settings.
|
|
2141
|
-
* Strongly-typed configuration instead of generic JSON.
|
|
2142
|
-
*/
|
|
2072
|
+
/** Channel configuration settings. Strongly-typed configuration instead of generic JSON. */
|
|
2143
2073
|
export type ChannelConfig = {
|
|
2144
2074
|
__typename?: 'ChannelConfig';
|
|
2145
2075
|
/** Default workflow ID to execute for incoming messages (if any) */
|
|
@@ -2156,10 +2086,7 @@ export type ChannelConfig = {
|
|
|
2156
2086
|
platformSettings?: Maybe<Scalars['JSON']['output']>;
|
|
2157
2087
|
/** Rate limit: maximum messages per hour for this channel. */
|
|
2158
2088
|
rateLimitPerHour?: Maybe<Scalars['Int']['output']>;
|
|
2159
|
-
/**
|
|
2160
|
-
* Rate limit: maximum messages per minute for this channel.
|
|
2161
|
-
* Platform-specific limits apply (e.g., Slack: 60/min, WhatsApp: varies).
|
|
2162
|
-
*/
|
|
2089
|
+
/** Rate limit: maximum messages per minute for this channel. Platform-specific limits apply (e.g., Slack: 60/min, WhatsApp: varies). */
|
|
2163
2090
|
rateLimitPerMinute?: Maybe<Scalars['Int']['output']>;
|
|
2164
2091
|
/** Webhook URL for receiving platform events */
|
|
2165
2092
|
webhookUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -2185,10 +2112,7 @@ export type ChannelConfigInput = {
|
|
|
2185
2112
|
/** Webhook URL */
|
|
2186
2113
|
webhookUrl?: InputMaybe<Scalars['String']['input']>;
|
|
2187
2114
|
};
|
|
2188
|
-
/**
|
|
2189
|
-
* ChannelConnection represents an authenticated connection to a platform
|
|
2190
|
-
* All credentials are encrypted with AES-256-GCM
|
|
2191
|
-
*/
|
|
2115
|
+
/** ChannelConnection represents an authenticated connection to a platform All credentials are encrypted with AES-256-GCM */
|
|
2192
2116
|
export type ChannelConnection = {
|
|
2193
2117
|
__typename?: 'ChannelConnection';
|
|
2194
2118
|
/** Authentication type used */
|
|
@@ -2215,10 +2139,7 @@ export type ChannelConnection = {
|
|
|
2215
2139
|
lastTestedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2216
2140
|
/** Whether OAuth tokens need refresh (within 24h of expiry) */
|
|
2217
2141
|
needsTokenRefresh: Scalars['Boolean']['output'];
|
|
2218
|
-
/**
|
|
2219
|
-
* Platform-specific metadata (channel IDs, team info, etc.)
|
|
2220
|
-
* NOTE: Non-sensitive data only
|
|
2221
|
-
*/
|
|
2142
|
+
/** Platform-specific metadata (channel IDs, team info, etc.) NOTE: Non-sensitive data only */
|
|
2222
2143
|
platformMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
2223
2144
|
/** Tag assignments for this connection (stub — returns empty until wspace-tags-svc supports org-scoped assignments) */
|
|
2224
2145
|
tagAssignments: Array<ChannelConnectionTagAssignment>;
|
|
@@ -2229,10 +2150,7 @@ export type ChannelConnection = {
|
|
|
2229
2150
|
/** Last update timestamp */
|
|
2230
2151
|
updatedAt: Scalars['DateTime']['output'];
|
|
2231
2152
|
};
|
|
2232
|
-
/**
|
|
2233
|
-
* Paginated list of channel connections with cursor support.
|
|
2234
|
-
* Pass `nextCursor` from a previous response as `cursor` in the next call.
|
|
2235
|
-
*/
|
|
2153
|
+
/** Paginated list of channel connections with cursor support. Pass `nextCursor` from a previous response as `cursor` in the next call. */
|
|
2236
2154
|
export type ChannelConnectionList = {
|
|
2237
2155
|
__typename?: 'ChannelConnectionList';
|
|
2238
2156
|
hasMore: Scalars['Boolean']['output'];
|
|
@@ -2316,14 +2234,7 @@ export type ChannelDeliveryInput = {
|
|
|
2316
2234
|
connectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
2317
2235
|
/** Notification content */
|
|
2318
2236
|
content: ChannelDeliveryContentInput;
|
|
2319
|
-
/**
|
|
2320
|
-
* Internal Botlit user ID. When provided, the service automatically resolves
|
|
2321
|
-
* the user's DM conversation ID from their UserPlatformConnection record and
|
|
2322
|
-
* uses it as the delivery recipient. Requires the user to have connected via
|
|
2323
|
-
* OAuth (dmAllowed=true) with notificationsEnabled=true.
|
|
2324
|
-
*
|
|
2325
|
-
* Either `recipient` or `internalUserId` must be provided.
|
|
2326
|
-
*/
|
|
2237
|
+
/** Internal Botlit user ID. When provided, the service automatically resolves the user's DM conversation ID from their UserPlatformConnection record and uses it as the delivery recipient. Requires the user to have connected via OAuth (dmAllowed=true) with notificationsEnabled=true. Either `recipient` or `internalUserId` must be provided. */
|
|
2327
2238
|
internalUserId?: InputMaybe<Scalars['ID']['input']>;
|
|
2328
2239
|
/** Optional reference to originating notification in notification-svc */
|
|
2329
2240
|
notificationId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2333,18 +2244,7 @@ export type ChannelDeliveryInput = {
|
|
|
2333
2244
|
organizationId: Scalars['ID']['input'];
|
|
2334
2245
|
/** Target delivery platform (EMAIL, SMS, PUSH, SLACK, TEAMS, etc.) */
|
|
2335
2246
|
platform: ChannelPlatform;
|
|
2336
|
-
/**
|
|
2337
|
-
* Recipient identifier based on platform:
|
|
2338
|
-
* - EMAIL: email address
|
|
2339
|
-
* - SMS: phone number (E.164 format)
|
|
2340
|
-
* - PUSH: device token
|
|
2341
|
-
* - SLACK/TEAMS/DISCORD: user ID or channel ID
|
|
2342
|
-
* - WHATSAPP: phone number
|
|
2343
|
-
* - WEBHOOK: webhook URL
|
|
2344
|
-
* - INAPP: user ID
|
|
2345
|
-
*
|
|
2346
|
-
* Either `recipient` or `internalUserId` must be provided.
|
|
2347
|
-
*/
|
|
2247
|
+
/** Recipient identifier based on platform: - EMAIL: email address - SMS: phone number (E.164 format) - PUSH: device token - SLACK/TEAMS/DISCORD: user ID or channel ID - WHATSAPP: phone number - WEBHOOK: webhook URL - INAPP: user ID Either `recipient` or `internalUserId` must be provided. */
|
|
2348
2248
|
recipient?: InputMaybe<Scalars['String']['input']>;
|
|
2349
2249
|
};
|
|
2350
2250
|
/** Delivery options for channel delivery */
|
|
@@ -2415,10 +2315,7 @@ export declare enum ChannelExportFormat {
|
|
|
2415
2315
|
/** JSON-Lines; one row per line (streaming-friendly). */
|
|
2416
2316
|
Jsonl = "JSONL"
|
|
2417
2317
|
}
|
|
2418
|
-
/**
|
|
2419
|
-
* Export job descriptor returned by channel export mutations.
|
|
2420
|
-
* Poll `channelExportJob(id:)` until status=COMPLETED, then GET downloadUrl.
|
|
2421
|
-
*/
|
|
2318
|
+
/** Export job descriptor returned by channel export mutations. Poll `channelExportJob(id:)` until status=COMPLETED, then GET downloadUrl. */
|
|
2422
2319
|
export type ChannelExportJob = {
|
|
2423
2320
|
__typename?: 'ChannelExportJob';
|
|
2424
2321
|
byteSize?: Maybe<Scalars['Int']['output']>;
|
|
@@ -2491,6 +2388,8 @@ export type ChannelHealthUpdate = {
|
|
|
2491
2388
|
channel: Channel;
|
|
2492
2389
|
/** Channel ID that changed */
|
|
2493
2390
|
channelId: Scalars['ID']['output'];
|
|
2391
|
+
/** New health status alias for frontend compatibility (same as newHealth) */
|
|
2392
|
+
currentHealth: ConnectionHealth;
|
|
2494
2393
|
/** Error details if health degraded to UNHEALTHY */
|
|
2495
2394
|
error?: Maybe<Scalars['String']['output']>;
|
|
2496
2395
|
/** New health status (after the change) */
|
|
@@ -2499,6 +2398,8 @@ export type ChannelHealthUpdate = {
|
|
|
2499
2398
|
previousHealth: ConnectionHealth;
|
|
2500
2399
|
/** Reason for the health change (if available) */
|
|
2501
2400
|
reason?: Maybe<Scalars['String']['output']>;
|
|
2401
|
+
/** Timestamp alias for frontend compatibility (same as changedAt) */
|
|
2402
|
+
timestamp: Scalars['DateTime']['output'];
|
|
2502
2403
|
};
|
|
2503
2404
|
/** Channel list response with pagination */
|
|
2504
2405
|
export type ChannelList = {
|
|
@@ -2507,11 +2408,7 @@ export type ChannelList = {
|
|
|
2507
2408
|
hasMore: Scalars['Boolean']['output'];
|
|
2508
2409
|
/** List of channels */
|
|
2509
2410
|
items: Array<Channel>;
|
|
2510
|
-
/**
|
|
2511
|
-
* Opaque cursor for fetching the next page (base64 last-id with stable id-tiebreaker).
|
|
2512
|
-
* Pass via `pagination.cursor` on the next call. Null when no more results.
|
|
2513
|
-
* Non-breaking: offset pagination still works for existing clients.
|
|
2514
|
-
*/
|
|
2411
|
+
/** Opaque cursor for fetching the next page (base64 last-id with stable id-tiebreaker). Pass via `pagination.cursor` on the next call. Null when no more results. Non-breaking: offset pagination still works for existing clients. */
|
|
2515
2412
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
2516
2413
|
/** Total count (for pagination) */
|
|
2517
2414
|
total: Scalars['Int']['output'];
|
|
@@ -2655,32 +2552,11 @@ export type ChannelTagAssignment = {
|
|
|
2655
2552
|
tag?: Maybe<UniversalTag>;
|
|
2656
2553
|
tagId: Scalars['ID']['output'];
|
|
2657
2554
|
};
|
|
2658
|
-
/**
|
|
2659
|
-
* Channel type discriminator — determines delivery behaviour and webhook handling.
|
|
2660
|
-
*
|
|
2661
|
-
* NOTIFICATION channels (EMAIL, SMS) are outbound-only:
|
|
2662
|
-
* - Support priority-based failover across adapters.
|
|
2663
|
-
* - No inbound webhook processing.
|
|
2664
|
-
* - No DM conversations.
|
|
2665
|
-
* - Recipient resolved via externalEmail (email) or externalUserId (phone).
|
|
2666
|
-
*
|
|
2667
|
-
* COMMUNICATION channels (SLACK, TEAMS, DISCORD, WHATSAPP, WEBCHAT, INAPP, WEBHOOK)
|
|
2668
|
-
* are bi-directional:
|
|
2669
|
-
* - Inbound webhooks processed and forwarded to conversations-svc.
|
|
2670
|
-
* - DM conversations tracked via dmConversationId.
|
|
2671
|
-
* - Recipient resolved via dmConversationId set during OAuth / pairing.
|
|
2672
|
-
*/
|
|
2555
|
+
/** Channel type discriminator — determines delivery behaviour and webhook handling. NOTIFICATION channels (EMAIL, SMS) are outbound-only: - Support priority-based failover across adapters. - No inbound webhook processing. - No DM conversations. - Recipient resolved via externalEmail (email) or externalUserId (phone). COMMUNICATION channels (SLACK, TEAMS, DISCORD, WHATSAPP, WEBCHAT, INAPP, WEBHOOK) are bi-directional: - Inbound webhooks processed and forwarded to conversations-svc. - DM conversations tracked via dmConversationId. - Recipient resolved via dmConversationId set during OAuth / pairing. */
|
|
2673
2556
|
export declare enum ChannelType {
|
|
2674
|
-
/**
|
|
2675
|
-
* Bi-directional platform channels: SLACK, TEAMS, DISCORD,
|
|
2676
|
-
* WHATSAPP, WEBCHAT, INAPP, WEBHOOK.
|
|
2677
|
-
* Processes inbound webhooks and supports DM conversations.
|
|
2678
|
-
*/
|
|
2557
|
+
/** Bi-directional platform channels: SLACK, TEAMS, DISCORD, WHATSAPP, WEBCHAT, INAPP, WEBHOOK. Processes inbound webhooks and supports DM conversations. */
|
|
2679
2558
|
Communication = "COMMUNICATION",
|
|
2680
|
-
/**
|
|
2681
|
-
* Outbound-only delivery channels: EMAIL, SMS.
|
|
2682
|
-
* Supports adapter-level failover (e.g. AWS SES → Azure ACS).
|
|
2683
|
-
*/
|
|
2559
|
+
/** Outbound-only delivery channels: EMAIL, SMS. Supports adapter-level failover (e.g. AWS SES → Azure ACS). */
|
|
2684
2560
|
Notification = "NOTIFICATION"
|
|
2685
2561
|
}
|
|
2686
2562
|
export type Charge = {
|
|
@@ -2800,16 +2676,7 @@ export type ConfigureWorkspaceInput = {
|
|
|
2800
2676
|
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
2801
2677
|
region?: InputMaybe<Scalars['String']['input']>;
|
|
2802
2678
|
};
|
|
2803
|
-
/**
|
|
2804
|
-
* Real-time health status of a channel's connection.
|
|
2805
|
-
* Monitored by the system based on API calls and health checks.
|
|
2806
|
-
*
|
|
2807
|
-
* - `status` = Admin-controlled (ACTIVE, INACTIVE, ARCHIVED)
|
|
2808
|
-
* - `connectionHealth` = System-monitored (HEALTHY, DEGRADED, UNHEALTHY)
|
|
2809
|
-
*
|
|
2810
|
-
* Example: Channel status = ACTIVE but connectionHealth = UNHEALTHY
|
|
2811
|
-
* means admin enabled the channel but the API is down.
|
|
2812
|
-
*/
|
|
2679
|
+
/** Real-time health status of a channel's connection. Monitored by the system based on API calls and health checks. - `status` = Admin-controlled (ACTIVE, INACTIVE, ARCHIVED) - `connectionHealth` = System-monitored (HEALTHY, DEGRADED, UNHEALTHY) Example: Channel status = ACTIVE but connectionHealth = UNHEALTHY means admin enabled the channel but the API is down. */
|
|
2813
2680
|
export declare enum ConnectionHealth {
|
|
2814
2681
|
/** Partial failures, high latency, or rate limiting */
|
|
2815
2682
|
Degraded = "DEGRADED",
|
|
@@ -2844,6 +2711,8 @@ export type ConnectionStatusChangedEvent = {
|
|
|
2844
2711
|
changedAt: Scalars['DateTime']['output'];
|
|
2845
2712
|
channelId: Scalars['ID']['output'];
|
|
2846
2713
|
connectionId: Scalars['ID']['output'];
|
|
2714
|
+
/** Connection ID (alias: id) */
|
|
2715
|
+
id: Scalars['ID']['output'];
|
|
2847
2716
|
isActive: Scalars['Boolean']['output'];
|
|
2848
2717
|
isHealthy: Scalars['Boolean']['output'];
|
|
2849
2718
|
organizationId: Scalars['ID']['output'];
|
|
@@ -2971,10 +2840,7 @@ export declare enum ContentVisibility {
|
|
|
2971
2840
|
Internal = "INTERNAL",
|
|
2972
2841
|
Public = "PUBLIC"
|
|
2973
2842
|
}
|
|
2974
|
-
/**
|
|
2975
|
-
* Context filter input for querying records by context.
|
|
2976
|
-
* Supports exact match filtering on context fields.
|
|
2977
|
-
*/
|
|
2843
|
+
/** Context filter input for querying records by context. Supports exact match filtering on context fields. */
|
|
2978
2844
|
export type ContextFilterInput = {
|
|
2979
2845
|
/** Filter by organization ID */
|
|
2980
2846
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2985,10 +2851,7 @@ export type ContextFilterInput = {
|
|
|
2985
2851
|
/** Filter by workspace ID */
|
|
2986
2852
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
2987
2853
|
};
|
|
2988
|
-
/**
|
|
2989
|
-
* Operation context for filtering and scoping data.
|
|
2990
|
-
* All fields are optional and can be extended as needed.
|
|
2991
|
-
*/
|
|
2854
|
+
/** Operation context for filtering and scoping data. All fields are optional and can be extended as needed. */
|
|
2992
2855
|
export type ContextInput = {
|
|
2993
2856
|
/** Additional custom context as JSON */
|
|
2994
2857
|
custom?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -3262,12 +3125,7 @@ export type CreateCategoryInput = {
|
|
|
3262
3125
|
export type CreateChannelInput = {
|
|
3263
3126
|
/** Specific adapter type (SENDGRID, AWS_SES, TWILIO, etc.) */
|
|
3264
3127
|
adapterType?: InputMaybe<AdapterType>;
|
|
3265
|
-
/**
|
|
3266
|
-
* Channel type: NOTIFICATION (EMAIL/SMS) or COMMUNICATION (SLACK/TEAMS/etc).
|
|
3267
|
-
* If omitted, defaults based on platform:
|
|
3268
|
-
* EMAIL, SMS → NOTIFICATION
|
|
3269
|
-
* All others → COMMUNICATION
|
|
3270
|
-
*/
|
|
3128
|
+
/** Channel type: NOTIFICATION (EMAIL/SMS) or COMMUNICATION (SLACK/TEAMS/etc). If omitted, defaults based on platform: EMAIL, SMS → NOTIFICATION All others → COMMUNICATION */
|
|
3271
3129
|
channelType?: InputMaybe<ChannelType>;
|
|
3272
3130
|
/** Operation context for scoping */
|
|
3273
3131
|
context?: InputMaybe<ContextInput>;
|
|
@@ -3281,11 +3139,7 @@ export type CreateChannelInput = {
|
|
|
3281
3139
|
platform: ChannelPlatform;
|
|
3282
3140
|
/** Platform-specific configuration (webhook URLs, etc.) */
|
|
3283
3141
|
platformConfig?: InputMaybe<Scalars['JSON']['input']>;
|
|
3284
|
-
/**
|
|
3285
|
-
* Priority for fallback ordering (lower = higher priority).
|
|
3286
|
-
* Default is 100. Use 1 for highest priority.
|
|
3287
|
-
* All ACTIVE channels are included in the failover chain.
|
|
3288
|
-
*/
|
|
3142
|
+
/** Priority for fallback ordering (lower = higher priority). Default is 100. Use 1 for highest priority. All ACTIVE channels are included in the failover chain. */
|
|
3289
3143
|
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
3290
3144
|
/** Channel status (default: ACTIVE) */
|
|
3291
3145
|
status?: InputMaybe<ChannelStatus>;
|
|
@@ -3993,10 +3847,7 @@ export type CreateStoreOrderInput = {
|
|
|
3993
3847
|
lineItems: Array<StoreLineItemInput>;
|
|
3994
3848
|
/** Additional metadata */
|
|
3995
3849
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
3996
|
-
/**
|
|
3997
|
-
* Total product cost (sum of all line items)
|
|
3998
|
-
* Note: Currency, tax, and final billing amount calculated by billing service
|
|
3999
|
-
*/
|
|
3850
|
+
/** Total product cost (sum of all line items) Note: Currency, tax, and final billing amount calculated by billing service */
|
|
4000
3851
|
total: Scalars['Float']['input'];
|
|
4001
3852
|
};
|
|
4002
3853
|
export type CreateSubscriptionInput = {
|
|
@@ -4284,10 +4135,7 @@ export type CreditRate = {
|
|
|
4284
4135
|
rateUSD: Scalars['Float']['output'];
|
|
4285
4136
|
updatedAt: Scalars['DateTime']['output'];
|
|
4286
4137
|
};
|
|
4287
|
-
/**
|
|
4288
|
-
* CreditTransaction entity - resolvable via Federation Gateway.
|
|
4289
|
-
* Other services (e.g., store-svc) can reference CreditTransaction by id.
|
|
4290
|
-
*/
|
|
4138
|
+
/** CreditTransaction entity - resolvable via Federation Gateway. Other services (e.g., store-svc) can reference CreditTransaction by id. */
|
|
4291
4139
|
export type CreditTransaction = {
|
|
4292
4140
|
__typename?: 'CreditTransaction';
|
|
4293
4141
|
amount: Scalars['Float']['output'];
|
|
@@ -4494,10 +4342,7 @@ export type DeleteUserResult = {
|
|
|
4494
4342
|
message: Scalars['String']['output'];
|
|
4495
4343
|
success: Scalars['Boolean']['output'];
|
|
4496
4344
|
};
|
|
4497
|
-
/**
|
|
4498
|
-
* Paginated list of delivery attempts with cursor support.
|
|
4499
|
-
* Pass `nextCursor` from a previous response as `cursor` in the next call.
|
|
4500
|
-
*/
|
|
4345
|
+
/** Paginated list of delivery attempts with cursor support. Pass `nextCursor` from a previous response as `cursor` in the next call. */
|
|
4501
4346
|
export type DeliveryAttemptList = {
|
|
4502
4347
|
__typename?: 'DeliveryAttemptList';
|
|
4503
4348
|
hasMore: Scalars['Boolean']['output'];
|
|
@@ -4565,6 +4410,13 @@ export declare enum DeliveryStatus {
|
|
|
4565
4410
|
/** Successfully sent */
|
|
4566
4411
|
Sent = "SENT"
|
|
4567
4412
|
}
|
|
4413
|
+
/** Delivery updated event payload emitted on delivery status changes. */
|
|
4414
|
+
export type DeliveryUpdatedEvent = {
|
|
4415
|
+
__typename?: 'DeliveryUpdatedEvent';
|
|
4416
|
+
channelId: Scalars['ID']['output'];
|
|
4417
|
+
id: Scalars['ID']['output'];
|
|
4418
|
+
status: DeliveryStatus;
|
|
4419
|
+
};
|
|
4568
4420
|
export type DependencyTriggeredUpdate = {
|
|
4569
4421
|
__typename?: 'DependencyTriggeredUpdate';
|
|
4570
4422
|
dependencyCount: Scalars['Int']['output'];
|
|
@@ -5016,22 +4868,13 @@ export declare enum DevportalExportFormat {
|
|
|
5016
4868
|
/** JSON-Lines; one row per line (good for streaming consumers). */
|
|
5017
4869
|
Jsonl = "JSONL"
|
|
5018
4870
|
}
|
|
5019
|
-
/**
|
|
5020
|
-
* Export job descriptor returned from any of the entity-specific export
|
|
5021
|
-
* mutations. For small exports the job typically transitions to COMPLETED
|
|
5022
|
-
* synchronously (within the request); larger exports may return CREATED and
|
|
5023
|
-
* require the caller to poll `devportalExportJob(id:)`.
|
|
5024
|
-
*/
|
|
4871
|
+
/** Export job descriptor returned from any of the entity-specific export mutations. For small exports the job typically transitions to COMPLETED synchronously (within the request); larger exports may return CREATED and require the caller to poll `devportalExportJob(id:)`. */
|
|
5025
4872
|
export type DevportalExportJob = {
|
|
5026
4873
|
__typename?: 'DevportalExportJob';
|
|
5027
4874
|
byteSize?: Maybe<Scalars['Int']['output']>;
|
|
5028
4875
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5029
4876
|
createdAt: Scalars['DateTime']['output'];
|
|
5030
|
-
/**
|
|
5031
|
-
* Stable URL the caller can GET to retrieve the full payload. Today this is
|
|
5032
|
-
* a presigned-style URL hosted by devportal-svc itself; once the platform
|
|
5033
|
-
* S3 wiring lands it will be a true presigned S3 URL with TTL.
|
|
5034
|
-
*/
|
|
4877
|
+
/** Stable URL the caller can GET to retrieve the full payload. Today this is a presigned-style URL hosted by devportal-svc itself; once the platform S3 wiring lands it will be a true presigned S3 URL with TTL. */
|
|
5035
4878
|
downloadUrl?: Maybe<Scalars['String']['output']>;
|
|
5036
4879
|
/** ISO timestamp when downloadUrl expires (24h default). */
|
|
5037
4880
|
downloadUrlExpiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -5161,16 +5004,9 @@ export type EffectivePermissions = {
|
|
|
5161
5004
|
actorId: Scalars['String']['output'];
|
|
5162
5005
|
/** Cache key for debugging and invalidation */
|
|
5163
5006
|
cacheKey?: Maybe<Scalars['String']['output']>;
|
|
5164
|
-
/**
|
|
5165
|
-
* When this permission set should be considered stale.
|
|
5166
|
-
* Frontend should refresh after this time.
|
|
5167
|
-
*/
|
|
5007
|
+
/** When this permission set should be considered stale. Frontend should refresh after this time. */
|
|
5168
5008
|
expiresAt: Scalars['DateTime']['output'];
|
|
5169
|
-
/**
|
|
5170
|
-
* Flat permission strings for easy frontend matching.
|
|
5171
|
-
* Format: "{resourceType}:{action}" e.g., ["project:read", "project:write", "task:*"]
|
|
5172
|
-
* Includes wildcards for ADMIN level (e.g., "project:*")
|
|
5173
|
-
*/
|
|
5009
|
+
/** Flat permission strings for easy frontend matching. Format: "{resourceType}:{action}" e.g., ["project:read", "project:write", "task:*"] Includes wildcards for ADMIN level (e.g., "project:*") */
|
|
5174
5010
|
permissionStrings: Array<Scalars['String']['output']>;
|
|
5175
5011
|
/** Resource types and their effective levels */
|
|
5176
5012
|
permissions: Array<EffectiveResourcePermission>;
|
|
@@ -5475,10 +5311,7 @@ export type FailedBillingOrderCallbacksResponse = {
|
|
|
5475
5311
|
orders: Array<BillingOrder>;
|
|
5476
5312
|
totalCount: Scalars['Int']['output'];
|
|
5477
5313
|
};
|
|
5478
|
-
/**
|
|
5479
|
-
* Platform-wide feature flag definition.
|
|
5480
|
-
* Managed by super admins. Can be scoped to a product and category.
|
|
5481
|
-
*/
|
|
5314
|
+
/** Platform-wide feature flag definition. Managed by super admins. Can be scoped to a product and category. */
|
|
5482
5315
|
export type FeatureFlag = {
|
|
5483
5316
|
__typename?: 'FeatureFlag';
|
|
5484
5317
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -5506,10 +5339,7 @@ export type FeatureFlagBulkEvaluation = {
|
|
|
5506
5339
|
__typename?: 'FeatureFlagBulkEvaluation';
|
|
5507
5340
|
evaluations: Array<FeatureFlagEvaluation>;
|
|
5508
5341
|
};
|
|
5509
|
-
/**
|
|
5510
|
-
* Result of evaluating a single feature flag for a specific context.
|
|
5511
|
-
* Compatible with OpenFeature ResolutionDetails.
|
|
5512
|
-
*/
|
|
5342
|
+
/** Result of evaluating a single feature flag for a specific context. Compatible with OpenFeature ResolutionDetails. */
|
|
5513
5343
|
export type FeatureFlagEvaluation = {
|
|
5514
5344
|
__typename?: 'FeatureFlagEvaluation';
|
|
5515
5345
|
errorCode?: Maybe<Scalars['String']['output']>;
|
|
@@ -5655,10 +5485,7 @@ export type GetStoreProductTagsInput = {
|
|
|
5655
5485
|
};
|
|
5656
5486
|
export type GrantAppWorkspaceAccessInput = {
|
|
5657
5487
|
appId: Scalars['ID']['input'];
|
|
5658
|
-
/**
|
|
5659
|
-
* Optional subset of the app's global scopes. Empty array means the
|
|
5660
|
-
* authorization inherits the app's full scope list.
|
|
5661
|
-
*/
|
|
5488
|
+
/** Optional subset of the app's global scopes. Empty array means the authorization inherits the app's full scope list. */
|
|
5662
5489
|
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5663
5490
|
tenantId: Scalars['ID']['input'];
|
|
5664
5491
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -5689,31 +5516,13 @@ export type GrantDelegationInput = {
|
|
|
5689
5516
|
userId?: InputMaybe<Scalars['String']['input']>;
|
|
5690
5517
|
workspaceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5691
5518
|
};
|
|
5692
|
-
/**
|
|
5693
|
-
* GraphQL callback configuration for external service notifications
|
|
5694
|
-
* Supports two authentication methods (controlled by CALLBACK_AUTH_METHOD env var):
|
|
5695
|
-
* 1. token (default): Direct HTTP with authToken
|
|
5696
|
-
* 2. internal-gateway: Service credentials via internal gateway
|
|
5697
|
-
*/
|
|
5519
|
+
/** GraphQL callback configuration for external service notifications Supports two authentication methods (controlled by CALLBACK_AUTH_METHOD env var): 1. token (default): Direct HTTP with authToken 2. internal-gateway: Service credentials via internal gateway */
|
|
5698
5520
|
export type GraphQlCallbackInput = {
|
|
5699
|
-
/**
|
|
5700
|
-
* Authentication token for callback (optional)
|
|
5701
|
-
* Required only when CALLBACK_AUTH_METHOD=token (default)
|
|
5702
|
-
* Not needed when CALLBACK_AUTH_METHOD=internal-gateway
|
|
5703
|
-
* Example: Bearer store-service-webhook-secret-xyz
|
|
5704
|
-
*/
|
|
5521
|
+
/** Authentication token for callback (optional) Required only when CALLBACK_AUTH_METHOD=token (default) Not needed when CALLBACK_AUTH_METHOD=internal-gateway Example: Bearer store-service-webhook-secret-xyz */
|
|
5705
5522
|
authToken?: InputMaybe<Scalars['String']['input']>;
|
|
5706
|
-
/**
|
|
5707
|
-
* GraphQL endpoint URL of the external service
|
|
5708
|
-
* Must be HTTPS and match BILLING_CALLBACK_ALLOWED_ENDPOINTS/HOSTS/SUFFIXES.
|
|
5709
|
-
* Localhost is allowed only outside production for local development.
|
|
5710
|
-
* Example: https://graphqlworkspaces.burdenoff.com/workspaces/graphql
|
|
5711
|
-
*/
|
|
5523
|
+
/** GraphQL endpoint URL of the external service Must be HTTPS and match BILLING_CALLBACK_ALLOWED_ENDPOINTS/HOSTS/SUFFIXES. Localhost is allowed only outside production for local development. Example: https://graphqlworkspaces.burdenoff.com/workspaces/graphql */
|
|
5712
5524
|
endpoint: Scalars['String']['input'];
|
|
5713
|
-
/**
|
|
5714
|
-
* Name of the GraphQL mutation to call on payment completion
|
|
5715
|
-
* Example: updateOrderPaymentStatus
|
|
5716
|
-
*/
|
|
5525
|
+
/** Name of the GraphQL mutation to call on payment completion Example: updateOrderPaymentStatus */
|
|
5717
5526
|
mutationName: Scalars['String']['input'];
|
|
5718
5527
|
};
|
|
5719
5528
|
export type Group = {
|
|
@@ -5963,10 +5772,7 @@ export type InitiatePaymentInput = {
|
|
|
5963
5772
|
amount: Scalars['Float']['input'];
|
|
5964
5773
|
/** For PLAN purchase: enable automatic renewal when subscription expires */
|
|
5965
5774
|
autoRenew?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5966
|
-
/**
|
|
5967
|
-
* For PLAN purchase with autoRenew: payment method ID to use for auto-renewal
|
|
5968
|
-
* Must be a verified saved payment method. Required if autoRenew is true.
|
|
5969
|
-
*/
|
|
5775
|
+
/** For PLAN purchase with autoRenew: payment method ID to use for auto-renewal Must be a verified saved payment method. Required if autoRenew is true. */
|
|
5970
5776
|
autoRenewPaymentMethodId?: InputMaybe<Scalars['ID']['input']>;
|
|
5971
5777
|
/** Billing account ID (required for tax calculation) */
|
|
5972
5778
|
billingAccountId: Scalars['ID']['input'];
|
|
@@ -5974,11 +5780,7 @@ export type InitiatePaymentInput = {
|
|
|
5974
5780
|
creditAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
5975
5781
|
/** Currency code (e.g., INR, USD) */
|
|
5976
5782
|
currency: Scalars['String']['input'];
|
|
5977
|
-
/**
|
|
5978
|
-
* For PLAN downgrade: the active higher-tier subscription ID being replaced.
|
|
5979
|
-
* Old subscription is left active until natural expiry — no cancellation, no refund.
|
|
5980
|
-
* User retains old plan quotas during overlap; continues on new plan after expiry.
|
|
5981
|
-
*/
|
|
5783
|
+
/** For PLAN downgrade: the active higher-tier subscription ID being replaced. Old subscription is left active until natural expiry — no cancellation, no refund. User retains old plan quotas during overlap; continues on new plan after expiry. */
|
|
5982
5784
|
downgradeFromSubscriptionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5983
5785
|
/** For PLAN purchase: whether this is an annual subscription (12 months with discount) */
|
|
5984
5786
|
isAnnual?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6004,16 +5806,9 @@ export type InitiatePaymentInput = {
|
|
|
6004
5806
|
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
6005
5807
|
/** Whether to save the card for future purchases (only for new card payments) */
|
|
6006
5808
|
saveCard?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6007
|
-
/**
|
|
6008
|
-
* For ADDON purchase: subscription ID to attach addon to.
|
|
6009
|
-
* Required if billing account has multiple active subscriptions.
|
|
6010
|
-
* If only one active subscription exists, it will be auto-selected.
|
|
6011
|
-
*/
|
|
5809
|
+
/** For ADDON purchase: subscription ID to attach addon to. Required if billing account has multiple active subscriptions. If only one active subscription exists, it will be auto-selected. */
|
|
6012
5810
|
subscriptionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6013
|
-
/**
|
|
6014
|
-
* For PLAN upgrade: the subscription ID being upgraded from.
|
|
6015
|
-
* If provided, this is an upgrade - old quotas will be moved to new subscription.
|
|
6016
|
-
*/
|
|
5811
|
+
/** For PLAN upgrade: the subscription ID being upgraded from. If provided, this is an upgrade - old quotas will be moved to new subscription. */
|
|
6017
5812
|
upgradeFromSubscriptionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6018
5813
|
};
|
|
6019
5814
|
/** Response from initiatePayment mutation */
|
|
@@ -6392,10 +6187,7 @@ export type KerberosConfigInput = {
|
|
|
6392
6187
|
realm: Scalars['String']['input'];
|
|
6393
6188
|
servicePrincipal: Scalars['String']['input'];
|
|
6394
6189
|
};
|
|
6395
|
-
/**
|
|
6396
|
-
* KeyboardShortcut entity - defines a keyboard shortcut action.
|
|
6397
|
-
* Shortcuts can be global (all products) or product-specific.
|
|
6398
|
-
*/
|
|
6190
|
+
/** KeyboardShortcut entity - defines a keyboard shortcut action. Shortcuts can be global (all products) or product-specific. */
|
|
6399
6191
|
export type KeyboardShortcut = {
|
|
6400
6192
|
__typename?: 'KeyboardShortcut';
|
|
6401
6193
|
/** Category for grouping (e.g., "Navigation", "Actions", "UI", "Help") */
|
|
@@ -6745,10 +6537,7 @@ export type MessageAttachmentInput = {
|
|
|
6745
6537
|
/** Attachment URL */
|
|
6746
6538
|
url: Scalars['String']['input'];
|
|
6747
6539
|
};
|
|
6748
|
-
/**
|
|
6749
|
-
* MessageDeliveryAttempt represents a single delivery attempt (transient, 7-day TTL)
|
|
6750
|
-
* Used for debugging and monitoring only
|
|
6751
|
-
*/
|
|
6540
|
+
/** MessageDeliveryAttempt represents a single delivery attempt (transient, 7-day TTL) Used for debugging and monitoring only */
|
|
6752
6541
|
export type MessageDeliveryAttempt = {
|
|
6753
6542
|
__typename?: 'MessageDeliveryAttempt';
|
|
6754
6543
|
/** Associated channel */
|
|
@@ -6822,10 +6611,7 @@ export type MonthlyEarning = {
|
|
|
6822
6611
|
orders: Scalars['Int']['output'];
|
|
6823
6612
|
year: Scalars['Int']['output'];
|
|
6824
6613
|
};
|
|
6825
|
-
/**
|
|
6826
|
-
* Input for delivering a notification across multiple platforms and recipients simultaneously.
|
|
6827
|
-
* The service fans out per-platform in parallel with independent failover per platform.
|
|
6828
|
-
*/
|
|
6614
|
+
/** Input for delivering a notification across multiple platforms and recipients simultaneously. The service fans out per-platform in parallel with independent failover per platform. */
|
|
6829
6615
|
export type MultiPlatformDeliveryInput = {
|
|
6830
6616
|
/** Notification content (same content sent to all platforms/recipients) */
|
|
6831
6617
|
content: ChannelDeliveryContentInput;
|
|
@@ -6854,10 +6640,7 @@ export type MultiPlatformDeliveryResult = {
|
|
|
6854
6640
|
/** Total number of recipients across all platforms */
|
|
6855
6641
|
totalRecipients: Scalars['Int']['output'];
|
|
6856
6642
|
};
|
|
6857
|
-
/**
|
|
6858
|
-
* Per-recipient addresses for multi-platform delivery.
|
|
6859
|
-
* Populate the field that matches each target platform.
|
|
6860
|
-
*/
|
|
6643
|
+
/** Per-recipient addresses for multi-platform delivery. Populate the field that matches each target platform. */
|
|
6861
6644
|
export type MultiPlatformRecipientInput = {
|
|
6862
6645
|
/** Email address (for EMAIL platform) */
|
|
6863
6646
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6879,15 +6662,9 @@ export type MultiPlatformRecipientInput = {
|
|
|
6879
6662
|
/** Root mutation type */
|
|
6880
6663
|
export type Mutation = {
|
|
6881
6664
|
__typename?: 'Mutation';
|
|
6882
|
-
/**
|
|
6883
|
-
* Placeholder field to allow empty Mutation type extension.
|
|
6884
|
-
* Must be @shareable since it exists in multiple subgraphs.
|
|
6885
|
-
*/
|
|
6665
|
+
/** Placeholder field to allow empty Mutation type extension. Must be @shareable since it exists in multiple subgraphs. */
|
|
6886
6666
|
_empty?: Maybe<Scalars['String']['output']>;
|
|
6887
|
-
/**
|
|
6888
|
-
* Placeholder mutation (extended by modules)
|
|
6889
|
-
* @rbac(public: true, scopeType: "global")
|
|
6890
|
-
*/
|
|
6667
|
+
/** Placeholder mutation (extended by modules) @rbac(public: true, scopeType: "global") */
|
|
6891
6668
|
_placeholder?: Maybe<Scalars['String']['output']>;
|
|
6892
6669
|
_privacyEcho?: Maybe<Scalars['String']['output']>;
|
|
6893
6670
|
/** Accept an organization invitation */
|
|
@@ -6923,11 +6700,7 @@ export type Mutation = {
|
|
|
6923
6700
|
addReleaseTesters: Array<ReleaseTrackUser>;
|
|
6924
6701
|
addSubscribersToList: NewsletterList;
|
|
6925
6702
|
addSuppression: NewsletterSuppression;
|
|
6926
|
-
/**
|
|
6927
|
-
* Bind a tag to an Application. The tag must already exist in wspace-tags-svc.
|
|
6928
|
-
* Currently a stub-adapter no-op until the global-layer integration with
|
|
6929
|
-
* wspace-tags-svc lands (see tracker).
|
|
6930
|
-
*/
|
|
6703
|
+
/** Bind a tag to an Application. The tag must already exist in wspace-tags-svc. Currently a stub-adapter no-op until the global-layer integration with wspace-tags-svc lands (see tracker). */
|
|
6931
6704
|
addTagToApplication: ApplicationTagAssignment;
|
|
6932
6705
|
addTicketTags: SupportTicket;
|
|
6933
6706
|
/** Add an item to the cart (creates cart if needed) */
|
|
@@ -6955,10 +6728,7 @@ export type Mutation = {
|
|
|
6955
6728
|
approveReview: ProductReview;
|
|
6956
6729
|
approveTranslation: Translation;
|
|
6957
6730
|
approveWaitlist: NewsletterWaitlist;
|
|
6958
|
-
/**
|
|
6959
|
-
* Soft archive a billing account. Financial history is preserved and the account is removed
|
|
6960
|
-
* from active billing operations.
|
|
6961
|
-
*/
|
|
6731
|
+
/** Soft archive a billing account. Financial history is preserved and the account is removed from active billing operations. */
|
|
6962
6732
|
archiveBillingAccount: BillingAccount;
|
|
6963
6733
|
/** Archive a channel */
|
|
6964
6734
|
archiveChannel: Channel;
|
|
@@ -6973,14 +6743,7 @@ export type Mutation = {
|
|
|
6973
6743
|
archiveTour: Tour;
|
|
6974
6744
|
/** Archive a workspace */
|
|
6975
6745
|
archiveWorkspace: Workspace;
|
|
6976
|
-
/**
|
|
6977
|
-
* Assign the "Authenticated User" role to a user at the global scope.
|
|
6978
|
-
* This should be called when a new user signs up to give them basic platform access.
|
|
6979
|
-
* This mutation is idempotent - calling it multiple times for the same user is safe.
|
|
6980
|
-
*
|
|
6981
|
-
* SECURITY: This mutation is restricted to service and super_admin actors only.
|
|
6982
|
-
* It should be called by global-auth-svc when a user signs up, not directly by users.
|
|
6983
|
-
*/
|
|
6746
|
+
/** Assign the "Authenticated User" role to a user at the global scope. This should be called when a new user signs up to give them basic platform access. This mutation is idempotent - calling it multiple times for the same user is safe. SECURITY: This mutation is restricted to service and super_admin actors only. It should be called by global-auth-svc when a user signs up, not directly by users. */
|
|
6984
6747
|
assignAuthenticatedUserRole: AssignAuthenticatedUserRoleResult;
|
|
6985
6748
|
assignEntitlementSeat: ProductEntitlement;
|
|
6986
6749
|
/** Assign a role to an actor */
|
|
@@ -6991,18 +6754,9 @@ export type Mutation = {
|
|
|
6991
6754
|
assignTagToUser: UserTagAssignment;
|
|
6992
6755
|
/** Attach media to a tour step */
|
|
6993
6756
|
attachMediaToStep: TourStepMedia;
|
|
6994
|
-
/**
|
|
6995
|
-
* Erase the subject's auth-layer data. With dryRun=true, returns counts
|
|
6996
|
-
* without mutating. Sessions and refresh tokens are always purged; the
|
|
6997
|
-
* User row is anonymised (email/name nulled, status=DEACTIVATED) rather
|
|
6998
|
-
* than deleted to preserve referential integrity for audit logs.
|
|
6999
|
-
*/
|
|
6757
|
+
/** Erase the subject's auth-layer data. With dryRun=true, returns counts without mutating. Sessions and refresh tokens are always purged; the User row is anonymised (email/name nulled, status=DEACTIVATED) rather than deleted to preserve referential integrity for audit logs. */
|
|
7000
6758
|
authEraseSubject: AuthEraseResult;
|
|
7001
|
-
/**
|
|
7002
|
-
* Export the subject's auth-layer data (account, sessions, MFA settings,
|
|
7003
|
-
* OAuth accounts, app delegations, audit log entries owned by the user).
|
|
7004
|
-
* Idempotent — repeated calls return identical bundles.
|
|
7005
|
-
*/
|
|
6759
|
+
/** Export the subject's auth-layer data (account, sessions, MFA settings, OAuth accounts, app delegations, audit log entries owned by the user). Idempotent — repeated calls return identical bundles. */
|
|
7006
6760
|
authExportSubject: Scalars['JSON']['output'];
|
|
7007
6761
|
authenticate: AuthResult;
|
|
7008
6762
|
authenticateAPIKey: AuthResult;
|
|
@@ -7037,10 +6791,7 @@ export type Mutation = {
|
|
|
7037
6791
|
bulkDeleteActivityLogs: Scalars['Int']['output'];
|
|
7038
6792
|
bulkPauseSchedules: SchedulerBulkOperationResult;
|
|
7039
6793
|
bulkResumeSchedules: SchedulerBulkOperationResult;
|
|
7040
|
-
/**
|
|
7041
|
-
* Bulk set user's opt-in/out preference for multiple feature flags.
|
|
7042
|
-
* RBAC is scoped to the target workspace via `input.workspaceId`.
|
|
7043
|
-
*/
|
|
6794
|
+
/** Bulk set user's opt-in/out preference for multiple feature flags. RBAC is scoped to the target workspace via `input.workspaceId`. */
|
|
7044
6795
|
bulkSetUserFeatureFlagPreferences: Array<UserFeatureFlagPreference>;
|
|
7045
6796
|
bulkUpdateSchedules: SchedulerBulkOperationResult;
|
|
7046
6797
|
bulkUpdateTranslations: BulkOperationResult;
|
|
@@ -7059,24 +6810,12 @@ export type Mutation = {
|
|
|
7059
6810
|
cancelPayout: DeveloperOrgPayout;
|
|
7060
6811
|
/** Cancel a scheduled notification */
|
|
7061
6812
|
cancelScheduledNotification: Scalars['Boolean']['output'];
|
|
7062
|
-
/**
|
|
7063
|
-
* Cancel a subscription - disables auto-renewal but keeps subscription active until endDate.
|
|
7064
|
-
* The subscription will not renew when it expires.
|
|
7065
|
-
*/
|
|
6813
|
+
/** Cancel a subscription - disables auto-renewal but keeps subscription active until endDate. The subscription will not renew when it expires. */
|
|
7066
6814
|
cancelSubscription: BillingSubscription;
|
|
7067
6815
|
changePassword: Scalars['Boolean']['output'];
|
|
7068
|
-
/**
|
|
7069
|
-
* Erase channel-layer subject data. With dryRun=true returns counts.
|
|
7070
|
-
* Per-user platform connections are PURGED (OAuth tokens etc).
|
|
7071
|
-
* Delivery / webhook / suppression rows are anonymised but retained for
|
|
7072
|
-
* spam-complaint / abuse forensics (`retainedForLegalReason: "abuse-2yr"`).
|
|
7073
|
-
*/
|
|
6816
|
+
/** Erase channel-layer subject data. With dryRun=true returns counts. Per-user platform connections are PURGED (OAuth tokens etc). Delivery / webhook / suppression rows are anonymised but retained for spam-complaint / abuse forensics (`retainedForLegalReason: "abuse-2yr"`). */
|
|
7074
6817
|
channelEraseSubject: ChannelEraseResult;
|
|
7075
|
-
/**
|
|
7076
|
-
* Export the subject's channel-layer data: per-user platform connections,
|
|
7077
|
-
* delivery attempts addressed to the subject, webhook events, and any
|
|
7078
|
-
* channel rows the subject created.
|
|
7079
|
-
*/
|
|
6818
|
+
/** Export the subject's channel-layer data: per-user platform connections, delivery attempts addressed to the subject, webhook events, and any channel rows the subject created. */
|
|
7080
6819
|
channelExportSubject: Scalars['JSON']['output'];
|
|
7081
6820
|
/** Check push MFA challenge status (polling) */
|
|
7082
6821
|
checkPushMFAStatus: PushMfaStatus;
|
|
@@ -7117,10 +6856,7 @@ export type Mutation = {
|
|
|
7117
6856
|
createAutomationStep: AutomationStep;
|
|
7118
6857
|
/** Create a new billing account for the current org (from context) */
|
|
7119
6858
|
createBillingAccount: BillingAccount;
|
|
7120
|
-
/**
|
|
7121
|
-
* Create a billing order for external service (e.g., store)
|
|
7122
|
-
* Stores order details + GraphQL callback endpoint for payment notifications
|
|
7123
|
-
*/
|
|
6859
|
+
/** Create a billing order for external service (e.g., store) Stores order details + GraphQL callback endpoint for payment notifications */
|
|
7124
6860
|
createBillingOrder: CreateBillingOrderResponse;
|
|
7125
6861
|
createCampaign: NewsletterCampaign;
|
|
7126
6862
|
createCannedResponse: CannedResponse;
|
|
@@ -7186,10 +6922,7 @@ export type Mutation = {
|
|
|
7186
6922
|
createProduct: StoreProduct;
|
|
7187
6923
|
createProductEntitlement: ProductEntitlement;
|
|
7188
6924
|
createPromoCode: PromoCode;
|
|
7189
|
-
/**
|
|
7190
|
-
* Create a support ticket from a public/unauthenticated source (e.g. website contact form).
|
|
7191
|
-
* Does not require authentication.
|
|
7192
|
-
*/
|
|
6925
|
+
/** Create a support ticket from a public/unauthenticated source (e.g. website contact form). Does not require authentication. */
|
|
7193
6926
|
createPublicSupportTicket: SupportTicket;
|
|
7194
6927
|
createQuota: Scalars['Boolean']['output'];
|
|
7195
6928
|
createRecurringBillingPlan: RecurringBillingPlan;
|
|
@@ -7240,15 +6973,9 @@ export type Mutation = {
|
|
|
7240
6973
|
createTourTemplate: TourTemplate;
|
|
7241
6974
|
createTranslation: Translation;
|
|
7242
6975
|
createTranslationKey: TranslationKey;
|
|
7243
|
-
/**
|
|
7244
|
-
* Create complete tenant structure for a new user (tenant, org, workspace)
|
|
7245
|
-
* This is typically called after user email verification
|
|
7246
|
-
*/
|
|
6976
|
+
/** Create complete tenant structure for a new user (tenant, org, workspace) This is typically called after user email verification */
|
|
7247
6977
|
createUserTenantStructure: CreateUserTenantStructureResponse;
|
|
7248
|
-
/**
|
|
7249
|
-
* Create a visibility rule for a resource.
|
|
7250
|
-
* Auto-registers the resource if not already registered.
|
|
7251
|
-
*/
|
|
6978
|
+
/** Create a visibility rule for a resource. Auto-registers the resource if not already registered. */
|
|
7252
6979
|
createVisibilityRule: VisibilityRule;
|
|
7253
6980
|
createWebhook: Webhook;
|
|
7254
6981
|
/** Create a new workspace */
|
|
@@ -7270,16 +6997,9 @@ export type Mutation = {
|
|
|
7270
6997
|
deactivateResource: Scalars['Boolean']['output'];
|
|
7271
6998
|
/** Deactivate a tour schedule */
|
|
7272
6999
|
deactivateTourSchedule: TourSchedule;
|
|
7273
|
-
/**
|
|
7274
|
-
* Pure quota decrement — called by wspace-activity-svc after writing a UsageRecord.
|
|
7275
|
-
* Only decrements QuotaAssignment.limits.value. Does NOT write back to activity-svc.
|
|
7276
|
-
* Requires the quotaAssignmentId already resolved by checkQuotaExhausted.
|
|
7277
|
-
*/
|
|
7000
|
+
/** Pure quota decrement — called by wspace-activity-svc after writing a UsageRecord. Only decrements QuotaAssignment.limits.value. Does NOT write back to activity-svc. Requires the quotaAssignmentId already resolved by checkQuotaExhausted. */
|
|
7278
7001
|
decrementQuota: Scalars['Boolean']['output'];
|
|
7279
|
-
/**
|
|
7280
|
-
* Delete current user's account permanently
|
|
7281
|
-
* Requires password confirmation
|
|
7282
|
-
*/
|
|
7002
|
+
/** Delete current user's account permanently Requires password confirmation */
|
|
7283
7003
|
deleteAccount: AccountActionResult;
|
|
7284
7004
|
deleteActivityLog: Scalars['Boolean']['output'];
|
|
7285
7005
|
deleteAffiliateCode: Scalars['Boolean']['output'];
|
|
@@ -7307,10 +7027,7 @@ export type Mutation = {
|
|
|
7307
7027
|
deleteDiscount: Scalars['Boolean']['output'];
|
|
7308
7028
|
/** Delete an entitlement */
|
|
7309
7029
|
deleteEntitlement: Scalars['Boolean']['output'];
|
|
7310
|
-
/**
|
|
7311
|
-
* Delete external OIDC configuration
|
|
7312
|
-
* Admin only
|
|
7313
|
-
*/
|
|
7030
|
+
/** Delete external OIDC configuration Admin only */
|
|
7314
7031
|
deleteExternalOIDCConfig: AccountActionResult;
|
|
7315
7032
|
deleteFAQ: Scalars['Boolean']['output'];
|
|
7316
7033
|
/** Delete a feature flag (super admin only) */
|
|
@@ -7401,21 +7118,11 @@ export type Mutation = {
|
|
|
7401
7118
|
/** Soft-delete a user platform connection */
|
|
7402
7119
|
deleteUserPlatformConnection: Scalars['Boolean']['output'];
|
|
7403
7120
|
deleteWebhook: Scalars['Boolean']['output'];
|
|
7404
|
-
/**
|
|
7405
|
-
* Deliver the same notification to multiple recipients in bulk.
|
|
7406
|
-
* More efficient than multiple single calls for broadcast scenarios.
|
|
7407
|
-
*/
|
|
7121
|
+
/** Deliver the same notification to multiple recipients in bulk. More efficient than multiple single calls for broadcast scenarios. */
|
|
7408
7122
|
deliverBulkNotification: BulkChannelDeliveryResult;
|
|
7409
|
-
/**
|
|
7410
|
-
* Deliver a notification across multiple platforms and multiple recipients in one call.
|
|
7411
|
-
* Fans out per-platform in parallel (Promise.allSettled) with independent failover per platform.
|
|
7412
|
-
* Adapters that natively support multi-recipient (SES, ACS) send one API call; others loop concurrently.
|
|
7413
|
-
*/
|
|
7123
|
+
/** Deliver a notification across multiple platforms and multiple recipients in one call. Fans out per-platform in parallel (Promise.allSettled) with independent failover per platform. Adapters that natively support multi-recipient (SES, ACS) send one API call; others loop concurrently. */
|
|
7414
7124
|
deliverMultiPlatformNotification: MultiPlatformDeliveryResult;
|
|
7415
|
-
/**
|
|
7416
|
-
* Deliver a notification to a single recipient via Channel service.
|
|
7417
|
-
* Called by global-notification-svc to deliver through platform adapters.
|
|
7418
|
-
*/
|
|
7125
|
+
/** Deliver a notification to a single recipient via Channel service. Called by global-notification-svc to deliver through platform adapters. */
|
|
7419
7126
|
deliverNotification: ChannelDeliveryResult;
|
|
7420
7127
|
deprecateApplicationVersion: ApplicationVersion;
|
|
7421
7128
|
deprecateProduct: StoreProduct;
|
|
@@ -7437,11 +7144,7 @@ export type Mutation = {
|
|
|
7437
7144
|
enableMFA: Scalars['Boolean']['output'];
|
|
7438
7145
|
enableMaintenanceMode: MaintenanceModeStatus;
|
|
7439
7146
|
enrollSubscriberInAutomation: AutomationSubscriber;
|
|
7440
|
-
/**
|
|
7441
|
-
* Anonymise the subject on the billing layer. With dryRun=true, returns
|
|
7442
|
-
* what would change without mutating. Financial records (Transaction,
|
|
7443
|
-
* Invoice, Payment) are RETAINED for the statutory 7-year window.
|
|
7444
|
-
*/
|
|
7147
|
+
/** Anonymise the subject on the billing layer. With dryRun=true, returns what would change without mutating. Financial records (Transaction, Invoice, Payment) are RETAINED for the statutory 7-year window. */
|
|
7445
7148
|
eraseSubject: EraseResult;
|
|
7446
7149
|
escalateSupportTicket: SupportTicket;
|
|
7447
7150
|
/** Exchange app token for app-as-user token (Token Exchange flow) */
|
|
@@ -7461,11 +7164,7 @@ export type Mutation = {
|
|
|
7461
7164
|
exportDeveloperOrganizations: DevportalExportJob;
|
|
7462
7165
|
/** Export per-organization revenue rows matching the optional filter. */
|
|
7463
7166
|
exportRevenue: DevportalExportJob;
|
|
7464
|
-
/**
|
|
7465
|
-
* Export the subject's billing-layer data (billing accounts, subscriptions,
|
|
7466
|
-
* invoices, payment methods on file, transaction history, credits, usage).
|
|
7467
|
-
* Idempotent.
|
|
7468
|
-
*/
|
|
7167
|
+
/** Export the subject's billing-layer data (billing accounts, subscriptions, invoices, payment methods on file, transaction history, credits, usage). Idempotent. */
|
|
7469
7168
|
exportSubject: Scalars['JSON']['output'];
|
|
7470
7169
|
/** Export webhook event records matching the filter. */
|
|
7471
7170
|
exportWebhookEvents: ChannelExportJob;
|
|
@@ -7482,10 +7181,7 @@ export type Mutation = {
|
|
|
7482
7181
|
generateHMACSecret: HmacCredentialResult;
|
|
7483
7182
|
/** Generate an invoice for a subscription */
|
|
7484
7183
|
generateInvoice: Invoice;
|
|
7485
|
-
/**
|
|
7486
|
-
* Generate OIDC authorization URL for SSO login
|
|
7487
|
-
* Returns URL to redirect user to the IdP
|
|
7488
|
-
*/
|
|
7184
|
+
/** Generate OIDC authorization URL for SSO login Returns URL to redirect user to the IdP */
|
|
7489
7185
|
generateOIDCAuthUrl: OidcAuthUrlResult;
|
|
7490
7186
|
/** Generate passkey authentication options (for login) */
|
|
7491
7187
|
generatePasskeyAuthenticationOptions: PasskeyAuthenticationOptions;
|
|
@@ -7500,11 +7196,7 @@ export type Mutation = {
|
|
|
7500
7196
|
/** Generate challenge message for wallet signature */
|
|
7501
7197
|
generateWalletChallenge: WalletChallengeResult;
|
|
7502
7198
|
getSupportAttachmentPartUploadUrls: Array<SupportAttachmentPresignedPart>;
|
|
7503
|
-
/**
|
|
7504
|
-
* Grant an app access to act on a specific workspace. Idempotent: re-granting
|
|
7505
|
-
* an ACTIVE authorization updates its scopes; re-granting a REVOKED one flips
|
|
7506
|
-
* it back to ACTIVE and clears the revoke fields.
|
|
7507
|
-
*/
|
|
7199
|
+
/** Grant an app access to act on a specific workspace. Idempotent: re-granting an ACTIVE authorization updates its scopes; re-granting a REVOKED one flips it back to ACTIVE and clears the revoke fields. */
|
|
7508
7200
|
grantAppWorkspaceAccess: AppWorkspaceAuthorization;
|
|
7509
7201
|
grantConsent: ConsentRecord;
|
|
7510
7202
|
grantCredits: CreditTransaction;
|
|
@@ -7518,63 +7210,29 @@ export type Mutation = {
|
|
|
7518
7210
|
/** Mark webhook as ignored */
|
|
7519
7211
|
ignoreWebhook: Scalars['Boolean']['output'];
|
|
7520
7212
|
importSubscribers: ImportSubscribersResult;
|
|
7521
|
-
/**
|
|
7522
|
-
* Initialize billing roles for a billing account by cloning billing role templates.
|
|
7523
|
-
* Use this when a new billing account is created.
|
|
7524
|
-
*
|
|
7525
|
-
* Returns the number of roles created (0 if roles already exist).
|
|
7526
|
-
*/
|
|
7213
|
+
/** Initialize billing roles for a billing account by cloning billing role templates. Use this when a new billing account is created. Returns the number of roles created (0 if roles already exist). */
|
|
7527
7214
|
initializeBillingRoles: InitializeBillingRolesResult;
|
|
7528
|
-
/**
|
|
7529
|
-
* Initialize organization roles by cloning organization role templates.
|
|
7530
|
-
* Use this when a new organization is created. The creator will be assigned the Owner role.
|
|
7531
|
-
*
|
|
7532
|
-
* Returns the number of roles created (0 if roles already exist).
|
|
7533
|
-
*
|
|
7534
|
-
* SECURITY: This mutation is restricted to service and super_admin actors only.
|
|
7535
|
-
* It should be called by global-tenant-svc when an organization is created, not directly by users.
|
|
7536
|
-
*/
|
|
7215
|
+
/** Initialize organization roles by cloning organization role templates. Use this when a new organization is created. The creator will be assigned the Owner role. Returns the number of roles created (0 if roles already exist). SECURITY: This mutation is restricted to service and super_admin actors only. It should be called by global-tenant-svc when an organization is created, not directly by users. */
|
|
7537
7216
|
initializeOrganizationRoles: InitializeOrganizationRolesResult;
|
|
7538
7217
|
/** Initiate Kerberos SPNEGO authentication */
|
|
7539
7218
|
initiateKerberosAuth: KerberosChallengeResult;
|
|
7540
7219
|
/** Initiate NTLM authentication (returns Type 2 challenge) */
|
|
7541
7220
|
initiateNTLMChallenge: NtlmChallengeResult;
|
|
7542
|
-
/**
|
|
7543
|
-
* Initiate a payment for credits, plans, or addons
|
|
7544
|
-
* This creates a Stripe PaymentIntent or Razorpay Order with tax included
|
|
7545
|
-
* Returns client secret (Stripe) or order ID (Razorpay) for frontend to complete payment
|
|
7546
|
-
*/
|
|
7221
|
+
/** Initiate a payment for credits, plans, or addons This creates a Stripe PaymentIntent or Razorpay Order with tax included Returns client secret (Stripe) or order ID (Razorpay) for frontend to complete payment */
|
|
7547
7222
|
initiatePayment: InitiatePaymentResponse;
|
|
7548
7223
|
/** Install an application */
|
|
7549
7224
|
installApp: AppInstallation;
|
|
7550
|
-
/**
|
|
7551
|
-
* Install a purchased app to a workspace.
|
|
7552
|
-
* Validates that the product was purchased before allowing installation.
|
|
7553
|
-
* If orderId is not provided, will find the most recent processed order for this product.
|
|
7554
|
-
*/
|
|
7225
|
+
/** Install a purchased app to a workspace. Validates that the product was purchased before allowing installation. If orderId is not provided, will find the most recent processed order for this product. */
|
|
7555
7226
|
installPurchasedApp: InstallPurchasedAppResult;
|
|
7556
7227
|
/** Invite a user to join an organization */
|
|
7557
7228
|
inviteDeveloperOrgMember: DeveloperOrgInvitation;
|
|
7558
7229
|
/** Invite a user to an organization by email */
|
|
7559
7230
|
inviteOrganizationMember: OrganizationInvite;
|
|
7560
|
-
/**
|
|
7561
|
-
* Public endpoint — no authentication required. Email is normalized (trimmed, lowercased).
|
|
7562
|
-
* Must be protected by API gateway rate limiting (recommended: 5 req/min per IP).
|
|
7563
|
-
*/
|
|
7231
|
+
/** Public endpoint — no authentication required. Email is normalized (trimmed, lowercased). Must be protected by API gateway rate limiting (recommended: 5 req/min per IP). */
|
|
7564
7232
|
joinWaitlist: NewsletterWaitlist;
|
|
7565
7233
|
/** Leave an organization */
|
|
7566
7234
|
leaveDeveloperOrganization: Scalars['Boolean']['output'];
|
|
7567
|
-
/**
|
|
7568
|
-
* Link a personal integration connection (from wspace-integrations-svc) to a bot channel.
|
|
7569
|
-
* Called by microfe-botlit after the user completes OAuth in microfe-integrations.
|
|
7570
|
-
*
|
|
7571
|
-
* Steps performed internally:
|
|
7572
|
-
* 1. Fetch IntegrationConnection data from wspace-integrations-svc via internal GQL
|
|
7573
|
-
* 2. Extract platform identity (slackUserId / msUserId / discordUserId / phone) from metadata
|
|
7574
|
-
* 3. Open a DM conversation using the bot token from ChannelConnection
|
|
7575
|
-
* 4. Upsert UserPlatformConnection (source=OAUTH, dmAllowed=true, dmConversationId set)
|
|
7576
|
-
* 5. Send welcome DM (Slack / Teams / Discord where supported)
|
|
7577
|
-
*/
|
|
7235
|
+
/** Link a personal integration connection (from wspace-integrations-svc) to a bot channel. Called by microfe-botlit after the user completes OAuth in microfe-integrations. Steps performed internally: 1. Fetch IntegrationConnection data from wspace-integrations-svc via internal GQL 2. Extract platform identity (slackUserId / msUserId / discordUserId / phone) from metadata 3. Open a DM conversation using the bot token from ChannelConnection 4. Upsert UserPlatformConnection (source=OAUTH, dmAllowed=true, dmConversationId set) 5. Send welcome DM (Slack / Teams / Discord where supported) */
|
|
7578
7236
|
linkIntegrationConnection: UserPlatformConnection;
|
|
7579
7237
|
linkTickets: TicketLink;
|
|
7580
7238
|
/** Link wallet to existing user account */
|
|
@@ -7598,18 +7256,9 @@ export type Mutation = {
|
|
|
7598
7256
|
mergeTickets: SupportTicket;
|
|
7599
7257
|
/** Moderate a review (admin) */
|
|
7600
7258
|
moderateAppReview: AppReview;
|
|
7601
|
-
/**
|
|
7602
|
-
* Erase newsletter subscriber data. With dryRun=true returns counts.
|
|
7603
|
-
* Subscriber + per-list rows + automation enrolments PURGED.
|
|
7604
|
-
* Suppression entry ANONYMISED (email hashed) — kept to honour CAN-SPAM
|
|
7605
|
-
* unsubscribe permanence. Bounce/complaint/consent-audit rows anonymised
|
|
7606
|
-
* but retained for deliverability forensics.
|
|
7607
|
-
*/
|
|
7259
|
+
/** Erase newsletter subscriber data. With dryRun=true returns counts. Subscriber + per-list rows + automation enrolments PURGED. Suppression entry ANONYMISED (email hashed) — kept to honour CAN-SPAM unsubscribe permanence. Bounce/complaint/consent-audit rows anonymised but retained for deliverability forensics. */
|
|
7608
7260
|
newsletterEraseSubject: NewsletterEraseResult;
|
|
7609
|
-
/**
|
|
7610
|
-
* Export the subject's newsletter data: subscriber rows, per-list memberships,
|
|
7611
|
-
* consent ledger entries, automation enrolments, waitlist entries.
|
|
7612
|
-
*/
|
|
7261
|
+
/** Export the subject's newsletter data: subscriber rows, per-list memberships, consent ledger entries, automation enrolments, waitlist entries. */
|
|
7613
7262
|
newsletterExportSubject: Scalars['JSON']['output'];
|
|
7614
7263
|
openCircuitBreaker: CircuitBreakerState;
|
|
7615
7264
|
/** Pause a subscription */
|
|
@@ -7629,11 +7278,7 @@ export type Mutation = {
|
|
|
7629
7278
|
processScheduledNotifications: Scalars['Int']['output'];
|
|
7630
7279
|
/** Process a webhook manually (for retry) */
|
|
7631
7280
|
processWebhook: WebhookProcessingResult;
|
|
7632
|
-
/**
|
|
7633
|
-
* Switch a tenant to DEDICATED mode and begin provisioning.
|
|
7634
|
-
* Sets status to PROVISIONING until endpoint is set.
|
|
7635
|
-
* If endpoint is provided, sets status directly to ACTIVE.
|
|
7636
|
-
*/
|
|
7281
|
+
/** Switch a tenant to DEDICATED mode and begin provisioning. Sets status to PROVISIONING until endpoint is set. If endpoint is provided, sets status directly to ACTIVE. */
|
|
7637
7282
|
provisionDedicatedTenant: Tenant;
|
|
7638
7283
|
/** Public unsubscribe via HMAC-signed token from email link. No authentication required. */
|
|
7639
7284
|
publicUnsubscribeByToken: Scalars['Boolean']['output'];
|
|
@@ -7693,10 +7338,7 @@ export type Mutation = {
|
|
|
7693
7338
|
/** Reject an organization invite (must be logged in as the invited user) */
|
|
7694
7339
|
rejectOrganizationInvite: OrganizationInvite;
|
|
7695
7340
|
rejectPayoutRequest: PayoutRequest;
|
|
7696
|
-
/**
|
|
7697
|
-
* Admin rejects a submitted product with a mandatory reason. Publisher can
|
|
7698
|
-
* edit and resubmit afterwards.
|
|
7699
|
-
*/
|
|
7341
|
+
/** Admin rejects a submitted product with a mandatory reason. Publisher can edit and resubmit afterwards. */
|
|
7700
7342
|
rejectProduct: StoreProduct;
|
|
7701
7343
|
rejectPublisher: Publisher;
|
|
7702
7344
|
rejectReview: ProductReview;
|
|
@@ -7733,24 +7375,15 @@ export type Mutation = {
|
|
|
7733
7375
|
/** Remove a tag from a user */
|
|
7734
7376
|
removeTagFromUser: AccountActionResult;
|
|
7735
7377
|
removeTicketTags: SupportTicket;
|
|
7736
|
-
/**
|
|
7737
|
-
* Remove user's preference for a feature flag (reverts to default).
|
|
7738
|
-
* RBAC is scoped to the target workspace.
|
|
7739
|
-
*/
|
|
7378
|
+
/** Remove user's preference for a feature flag (reverts to default). RBAC is scoped to the target workspace. */
|
|
7740
7379
|
removeUserFeatureFlagPreference: Scalars['Boolean']['output'];
|
|
7741
7380
|
/** Remove a visibility rule */
|
|
7742
7381
|
removeVisibilityRule: Scalars['Boolean']['output'];
|
|
7743
|
-
/**
|
|
7744
|
-
* Remove a workspace override, reverting to the platform default.
|
|
7745
|
-
* RBAC is scoped to the target workspace.
|
|
7746
|
-
*/
|
|
7382
|
+
/** Remove a workspace override, reverting to the platform default. RBAC is scoped to the target workspace. */
|
|
7747
7383
|
removeWorkspaceFeatureFlagOverride: Scalars['Boolean']['output'];
|
|
7748
7384
|
/** Remove a member from a workspace */
|
|
7749
7385
|
removeWorkspaceMember: Scalars['Boolean']['output'];
|
|
7750
|
-
/**
|
|
7751
|
-
* Remove workspace metadata (membership and routing)
|
|
7752
|
-
* Note: This only removes metadata. Use workspaces service to delete actual workspace content.
|
|
7753
|
-
*/
|
|
7386
|
+
/** Remove workspace metadata (membership and routing) Note: This only removes metadata. Use workspaces service to delete actual workspace content. */
|
|
7754
7387
|
removeWorkspaceMetadata: Scalars['Boolean']['output'];
|
|
7755
7388
|
/** Rename a passkey */
|
|
7756
7389
|
renamePasskey: PasskeyInfo;
|
|
@@ -7768,10 +7401,7 @@ export type Mutation = {
|
|
|
7768
7401
|
replaceChannelTags: Array<ChannelTagAssignment>;
|
|
7769
7402
|
/** Replace all tags on a store product */
|
|
7770
7403
|
replaceStoreProductTags: Array<StoreProductTagAssignment>;
|
|
7771
|
-
/**
|
|
7772
|
-
* Send an email reply to a contact inquiry. The reply is sent via the notification
|
|
7773
|
-
* pipeline (notification-svc → channel-svc → email provider). Auto-updates status to REVIEWED.
|
|
7774
|
-
*/
|
|
7404
|
+
/** Send an email reply to a contact inquiry. The reply is sent via the notification pipeline (notification-svc → channel-svc → email provider). Auto-updates status to REVIEWED. */
|
|
7775
7405
|
replyToContactInquiry: ContactInquiryReplyResult;
|
|
7776
7406
|
replyToReview: ProductReviewReply;
|
|
7777
7407
|
/** Report a review */
|
|
@@ -7779,10 +7409,7 @@ export type Mutation = {
|
|
|
7779
7409
|
/** Reprocess a failed webhook event */
|
|
7780
7410
|
reprocessWebhook: WebhookProcessingResult;
|
|
7781
7411
|
requestBillingPayout: PayoutRequest;
|
|
7782
|
-
/**
|
|
7783
|
-
* Request a credit withdrawal. Converts purchased + earned credits to a PayoutRequest
|
|
7784
|
-
* denominated in USD at the current credit rate. Uses the specified payout account for payment.
|
|
7785
|
-
*/
|
|
7412
|
+
/** Request a credit withdrawal. Converts purchased + earned credits to a PayoutRequest denominated in USD at the current credit rate. Uses the specified payout account for payment. */
|
|
7786
7413
|
requestCreditWithdrawal: PayoutRequest;
|
|
7787
7414
|
/** Request a manual payout (devportal legacy alias) */
|
|
7788
7415
|
requestDeveloperOrgPayout: DeveloperOrgPayout;
|
|
@@ -7826,10 +7453,7 @@ export type Mutation = {
|
|
|
7826
7453
|
resumeSLA: SupportTicket;
|
|
7827
7454
|
resumeScheduledJob: ScheduledJob;
|
|
7828
7455
|
retireSubprocessor: Subprocessor;
|
|
7829
|
-
/**
|
|
7830
|
-
* Manually retry GraphQL callback for a failed billing order (admin only)
|
|
7831
|
-
* Useful for retrying after fixing issues in external service
|
|
7832
|
-
*/
|
|
7456
|
+
/** Manually retry GraphQL callback for a failed billing order (admin only) Useful for retrying after fixing issues in external service */
|
|
7833
7457
|
retryBillingOrderCallback: RetryBillingOrderCallbackResponse;
|
|
7834
7458
|
/** Retry a failed delivery attempt */
|
|
7835
7459
|
retryDelivery: MessageDeliveryResult;
|
|
@@ -7842,15 +7466,9 @@ export type Mutation = {
|
|
|
7842
7466
|
revertTranslation: Translation;
|
|
7843
7467
|
reviewTranslation: Translation;
|
|
7844
7468
|
revokeAPIKey: Scalars['Boolean']['output'];
|
|
7845
|
-
/**
|
|
7846
|
-
* Revoke all sessions except the current one.
|
|
7847
|
-
* Returns the number of sessions that were revoked.
|
|
7848
|
-
*/
|
|
7469
|
+
/** Revoke all sessions except the current one. Returns the number of sessions that were revoked. */
|
|
7849
7470
|
revokeAllSessions: RevokeAllSessionsResult;
|
|
7850
|
-
/**
|
|
7851
|
-
* Revoke an app's access to a workspace. Returns false if the row was already
|
|
7852
|
-
* REVOKED or never existed.
|
|
7853
|
-
*/
|
|
7471
|
+
/** Revoke an app's access to a workspace. Returns false if the row was already REVOKED or never existed. */
|
|
7854
7472
|
revokeAppWorkspaceAccess: Scalars['Boolean']['output'];
|
|
7855
7473
|
revokeConsent: NewsletterConsent;
|
|
7856
7474
|
revokeDelegation: Scalars['Boolean']['output'];
|
|
@@ -7859,17 +7477,11 @@ export type Mutation = {
|
|
|
7859
7477
|
revokeHMACCredential: Scalars['Boolean']['output'];
|
|
7860
7478
|
revokeLicense: ProductEntitlement;
|
|
7861
7479
|
revokeSeat: LicenseSeat;
|
|
7862
|
-
/**
|
|
7863
|
-
* Revoke (log out) a specific session by ID.
|
|
7864
|
-
* Returns true if the session was successfully revoked.
|
|
7865
|
-
*/
|
|
7480
|
+
/** Revoke (log out) a specific session by ID. Returns true if the session was successfully revoked. */
|
|
7866
7481
|
revokeSession: Scalars['Boolean']['output'];
|
|
7867
7482
|
/** Revoke a signed cookie session */
|
|
7868
7483
|
revokeSignedCookieSession: Scalars['Boolean']['output'];
|
|
7869
|
-
/**
|
|
7870
|
-
* Revoke a user's platform connection (sets dmAllowed = false, clears tokens).
|
|
7871
|
-
* Does NOT delete the record — keeps presence history intact.
|
|
7872
|
-
*/
|
|
7484
|
+
/** Revoke a user's platform connection (sets dmAllowed = false, clears tokens). Does NOT delete the record — keeps presence history intact. */
|
|
7873
7485
|
revokeUserPlatformConnection: UserPlatformConnection;
|
|
7874
7486
|
rollbackRelease: ProductRelease;
|
|
7875
7487
|
rotateAPIKey: ApiKeyRotateResult;
|
|
@@ -7886,11 +7498,7 @@ export type Mutation = {
|
|
|
7886
7498
|
scheduleNewsletter: Newsletter;
|
|
7887
7499
|
/** Schedule a notification for future delivery */
|
|
7888
7500
|
scheduleNotification: ScheduledNotification;
|
|
7889
|
-
/**
|
|
7890
|
-
* Seed default feature flags across all products.
|
|
7891
|
-
* Creates all default flags if they don't already exist. Returns the count of newly created flags.
|
|
7892
|
-
* Skips flags that already exist (by key uniqueness).
|
|
7893
|
-
*/
|
|
7501
|
+
/** Seed default feature flags across all products. Creates all default flags if they don't already exist. Returns the count of newly created flags. Skips flags that already exist (by key uniqueness). */
|
|
7894
7502
|
seedDefaultFeatureFlags: Scalars['Int']['output'];
|
|
7895
7503
|
/** Bulk create default shortcuts for a product */
|
|
7896
7504
|
seedDefaultShortcuts: Scalars['Int']['output'];
|
|
@@ -7909,11 +7517,7 @@ export type Mutation = {
|
|
|
7909
7517
|
setAgentOnline: AgentProfile;
|
|
7910
7518
|
/** Set or update billing address for a billing account */
|
|
7911
7519
|
setBillingAddress: BillingAddress;
|
|
7912
|
-
/**
|
|
7913
|
-
* Set a billing account as the default for an org.
|
|
7914
|
-
* Only one billing account can be default per org.
|
|
7915
|
-
* If another account is currently default, it will be unset.
|
|
7916
|
-
*/
|
|
7520
|
+
/** Set a billing account as the default for an org. Only one billing account can be default per org. If another account is currently default, it will be unset. */
|
|
7917
7521
|
setDefaultBillingAccount: BillingAccount;
|
|
7918
7522
|
setDefaultLanguage: Language;
|
|
7919
7523
|
/** Set a payment method as default */
|
|
@@ -7924,21 +7528,12 @@ export type Mutation = {
|
|
|
7924
7528
|
setNotificationTopicSubscription: NotificationTopicSubscription;
|
|
7925
7529
|
/** Set default permission level for a role on a resource type */
|
|
7926
7530
|
setRoleDefaultPermission: Role;
|
|
7927
|
-
/**
|
|
7928
|
-
* Set or update the endpoint URL for a DEDICATED tenant.
|
|
7929
|
-
* Transitions PROVISIONING → ACTIVE when endpoint is set.
|
|
7930
|
-
*/
|
|
7531
|
+
/** Set or update the endpoint URL for a DEDICATED tenant. Transitions PROVISIONING → ACTIVE when endpoint is set. */
|
|
7931
7532
|
setTenantEndpoint: Tenant;
|
|
7932
|
-
/**
|
|
7933
|
-
* Set user's opt-in/out preference for a previewable feature flag.
|
|
7934
|
-
* RBAC is scoped to the target workspace via `input.workspaceId`.
|
|
7935
|
-
*/
|
|
7533
|
+
/** Set user's opt-in/out preference for a previewable feature flag. RBAC is scoped to the target workspace via `input.workspaceId`. */
|
|
7936
7534
|
setUserFeatureFlagPreference: UserFeatureFlagPreference;
|
|
7937
7535
|
setUserLanguagePreference: UserLanguagePreference;
|
|
7938
|
-
/**
|
|
7939
|
-
* Set workspace-level override for a feature flag (super admin or workspace admin).
|
|
7940
|
-
* RBAC is scoped to the target workspace via `input.workspaceId`.
|
|
7941
|
-
*/
|
|
7536
|
+
/** Set workspace-level override for a feature flag (super admin or workspace admin). RBAC is scoped to the target workspace via `input.workspaceId`. */
|
|
7942
7537
|
setWorkspaceFeatureFlagOverride: WorkspaceFeatureFlagOverride;
|
|
7943
7538
|
setupMFA: MfaSetupResult;
|
|
7944
7539
|
sideloadApp: StoreAppInstallation;
|
|
@@ -7959,42 +7554,19 @@ export type Mutation = {
|
|
|
7959
7554
|
/** Mark a tour as started for a user */
|
|
7960
7555
|
startTour: TourUserProgress;
|
|
7961
7556
|
submitApplication: Application;
|
|
7962
|
-
/**
|
|
7963
|
-
* Submit an application to the store for review. Awaits the store-svc
|
|
7964
|
-
* submit call and returns the application with the resulting store
|
|
7965
|
-
* submission metadata attached to `metadata.storeSubmissionStatus`.
|
|
7966
|
-
*
|
|
7967
|
-
* The target store's requiresApproval flag decides whether the submission
|
|
7968
|
-
* lands in PENDING_REVIEW (public default) or is auto-published (private
|
|
7969
|
-
* registries that trust their publishers).
|
|
7970
|
-
*/
|
|
7557
|
+
/** Submit an application to the store for review. Awaits the store-svc submit call and returns the application with the resulting store submission metadata attached to `metadata.storeSubmissionStatus`. The target store's requiresApproval flag decides whether the submission lands in PENDING_REVIEW (public default) or is auto-published (private registries that trust their publishers). */
|
|
7971
7558
|
submitApplicationForReview: Application;
|
|
7972
|
-
/**
|
|
7973
|
-
* Submit a contact inquiry from a public website (no authentication required).
|
|
7974
|
-
* Validates reCAPTCHA token server-side using the product's secret key
|
|
7975
|
-
* fetched from the tenant service via internal gateway.
|
|
7976
|
-
*/
|
|
7559
|
+
/** Submit a contact inquiry from a public website (no authentication required). Validates reCAPTCHA token server-side using the product's secret key fetched from the tenant service via internal gateway. */
|
|
7977
7560
|
submitContactInquiry: SubmitContactInquiryResult;
|
|
7978
|
-
/**
|
|
7979
|
-
* Submit a product to its target store for review. The store's
|
|
7980
|
-
* requiresApproval flag decides whether the product goes to PENDING_REVIEW
|
|
7981
|
-
* or is auto-published.
|
|
7982
|
-
*/
|
|
7561
|
+
/** Submit a product to its target store for review. The store's requiresApproval flag decides whether the product goes to PENDING_REVIEW or is auto-published. */
|
|
7983
7562
|
submitProduct: StoreProduct;
|
|
7984
7563
|
submitPublisherVerification: Publisher;
|
|
7985
7564
|
submitSatisfactionSurvey: CustomerSatisfactionSurvey;
|
|
7986
7565
|
subscribe: NewsletterSubscriber;
|
|
7987
7566
|
subscribeToStore: UserStoreSubscription;
|
|
7988
|
-
/**
|
|
7989
|
-
* Anonymise the subject across support records. With dryRun=true returns
|
|
7990
|
-
* counts without mutating. Ticket bodies and agent resolution history are
|
|
7991
|
-
* retained for legal-claims defence (`retainedForLegalReason: "claims-3yr"`).
|
|
7992
|
-
*/
|
|
7567
|
+
/** Anonymise the subject across support records. With dryRun=true returns counts without mutating. Ticket bodies and agent resolution history are retained for legal-claims defence (`retainedForLegalReason: "claims-3yr"`). */
|
|
7993
7568
|
supportEraseSubject: SupportEraseResult;
|
|
7994
|
-
/**
|
|
7995
|
-
* Export the subject's support data: tickets they raised, messages they
|
|
7996
|
-
* authored, contact inquiries, CSAT surveys submitted.
|
|
7997
|
-
*/
|
|
7569
|
+
/** Export the subject's support data: tickets they raised, messages they authored, contact inquiries, CSAT surveys submitted. */
|
|
7998
7570
|
supportExportSubject: Scalars['JSON']['output'];
|
|
7999
7571
|
suppressIdentifier: SuppressionEntry;
|
|
8000
7572
|
/** Suspend an installation (admin) */
|
|
@@ -8007,17 +7579,9 @@ export type Mutation = {
|
|
|
8007
7579
|
suspendTenant: Tenant;
|
|
8008
7580
|
/** Suspend a workspace */
|
|
8009
7581
|
suspendWorkspace: Workspace;
|
|
8010
|
-
/**
|
|
8011
|
-
* Sync tour steps (smart update in ONE call)
|
|
8012
|
-
* Send all desired steps, backend handles: update existing, create new, delete removed
|
|
8013
|
-
*/
|
|
7582
|
+
/** Sync tour steps (smart update in ONE call) Send all desired steps, backend handles: update existing, create new, delete removed */
|
|
8014
7583
|
syncTourSteps: Array<TourStep>;
|
|
8015
|
-
/**
|
|
8016
|
-
* Sync workspace metadata from workspace layer to global layer.
|
|
8017
|
-
* Called by wspace-workspace-svc when a workspace is created directly via workspace layer.
|
|
8018
|
-
* This is the reverse of syncFromGlobal - it syncs global ← wspace.
|
|
8019
|
-
* Creates workspace metadata + owner membership in global-tenant-svc.
|
|
8020
|
-
*/
|
|
7584
|
+
/** Sync workspace metadata from workspace layer to global layer. Called by wspace-workspace-svc when a workspace is created directly via workspace layer. This is the reverse of syncFromGlobal - it syncs global ← wspace. Creates workspace metadata + owner membership in global-tenant-svc. */
|
|
8021
7585
|
syncWorkspaceFromWspace: SyncWorkspaceFromWspaceResponse;
|
|
8022
7586
|
tagChannel: ChannelTagAssignment;
|
|
8023
7587
|
tagChannelConnection: ChannelConnectionTagAssignment;
|
|
@@ -8133,15 +7697,9 @@ export type Mutation = {
|
|
|
8133
7697
|
updateKeyboardShortcut: KeyboardShortcut;
|
|
8134
7698
|
updateKnowledgeBaseArticle: KnowledgeBaseArticle;
|
|
8135
7699
|
updateLanguage: Language;
|
|
8136
|
-
/**
|
|
8137
|
-
* Update the current user's dashboard widget layout preferences.
|
|
8138
|
-
* Replaces the dashboard.widgets array within preferences.
|
|
8139
|
-
*/
|
|
7700
|
+
/** Update the current user's dashboard widget layout preferences. Replaces the dashboard.widgets array within preferences. */
|
|
8140
7701
|
updateMyDashboardPreferences: Scalars['JSON']['output'];
|
|
8141
|
-
/**
|
|
8142
|
-
* Update the current user's general preferences.
|
|
8143
|
-
* Merges the provided JSON into the existing preferences field.
|
|
8144
|
-
*/
|
|
7702
|
+
/** Update the current user's general preferences. Merges the provided JSON into the existing preferences field. */
|
|
8145
7703
|
updateMyPreferences: UserPreference;
|
|
8146
7704
|
updateNewsletter: Newsletter;
|
|
8147
7705
|
updateNewsletterAutomation: NewsletterAutomation;
|
|
@@ -8190,18 +7748,11 @@ export type Mutation = {
|
|
|
8190
7748
|
updateScheduleTemplate: ScheduleTemplate;
|
|
8191
7749
|
updateScheduledJob: ScheduledJob;
|
|
8192
7750
|
updateStore: Store;
|
|
8193
|
-
/**
|
|
8194
|
-
* Update order payment status (called by billing service callback)
|
|
8195
|
-
*
|
|
8196
|
-
* This is a PUBLIC mutation called by the billing service after payment completion
|
|
8197
|
-
*/
|
|
7751
|
+
/** Update order payment status (called by billing service callback) This is a PUBLIC mutation called by the billing service after payment completion */
|
|
8198
7752
|
updateStoreOrderPaymentStatus: UpdateStoreOrderPaymentStatusResponse;
|
|
8199
7753
|
updateSubprocessor: Subprocessor;
|
|
8200
7754
|
updateSubscriber: NewsletterSubscriber;
|
|
8201
|
-
/**
|
|
8202
|
-
* Update the seat count on an active PER_SEAT subscription.
|
|
8203
|
-
* Syncs quantity to the payment gateway and updates the seat quota ceiling.
|
|
8204
|
-
*/
|
|
7755
|
+
/** Update the seat count on an active PER_SEAT subscription. Syncs quantity to the payment gateway and updates the seat quota ceiling. */
|
|
8205
7756
|
updateSubscriptionSeats: BillingSubscription;
|
|
8206
7757
|
updateSupportMessage: SupportMessage;
|
|
8207
7758
|
updateSupportTicket: SupportTicket;
|
|
@@ -8243,17 +7794,11 @@ export type Mutation = {
|
|
|
8243
7794
|
/** Upload tour media */
|
|
8244
7795
|
uploadTourMedia: TourMedia;
|
|
8245
7796
|
upsertComplianceSettings: NewsletterComplianceSettings;
|
|
8246
|
-
/**
|
|
8247
|
-
* Create or update external OIDC configuration (Google, Microsoft, etc.)
|
|
8248
|
-
* Admin only
|
|
8249
|
-
*/
|
|
7797
|
+
/** Create or update external OIDC configuration (Google, Microsoft, etc.) Admin only */
|
|
8250
7798
|
upsertExternalOIDCConfig: ExternalOidcConfiguration;
|
|
8251
7799
|
/** Create or update fulfillment details for an order (admin) */
|
|
8252
7800
|
upsertOrderFulfillment: OrderFulfillment;
|
|
8253
|
-
/**
|
|
8254
|
-
* Upsert a platform connection from a passively-observed webhook event (source = SEEN).
|
|
8255
|
-
* Used by WebhookProcessor to track users without granting DM access.
|
|
8256
|
-
*/
|
|
7801
|
+
/** Upsert a platform connection from a passively-observed webhook event (source = SEEN). Used by WebhookProcessor to track users without granting DM access. */
|
|
8257
7802
|
upsertSeenUser: UserPlatformConnection;
|
|
8258
7803
|
useCannedResponse: CannedResponse;
|
|
8259
7804
|
validateApiKey: TokenValidationResponse;
|
|
@@ -8274,17 +7819,7 @@ export type Mutation = {
|
|
|
8274
7819
|
/** Verify a payment method (micro-deposits) */
|
|
8275
7820
|
verifyPaymentMethod: DeveloperOrgPaymentMethod;
|
|
8276
7821
|
verifyPublisherPayoutMethod: PublisherPayoutMethod;
|
|
8277
|
-
/**
|
|
8278
|
-
* Verify a WhatsApp pairing code entered by the user in the dashboard.
|
|
8279
|
-
* Called by wspace-integrations-svc during its CUSTOM auth step.
|
|
8280
|
-
*
|
|
8281
|
-
* Looks up the UserPlatformConnection (source=SEEN) for the channel + phone number,
|
|
8282
|
-
* checks the pairing code matches and has not expired, then:
|
|
8283
|
-
* - Sets pairingStatus = APPROVED
|
|
8284
|
-
* - Sets dmAllowed = true
|
|
8285
|
-
* - Sets dmConversationId to the WhatsApp JID format
|
|
8286
|
-
* Returns true on success, throws on failure.
|
|
8287
|
-
*/
|
|
7822
|
+
/** Verify a WhatsApp pairing code entered by the user in the dashboard. Called by wspace-integrations-svc during its CUSTOM auth step. Looks up the UserPlatformConnection (source=SEEN) for the channel + phone number, checks the pairing code matches and has not expired, then: - Sets pairingStatus = APPROVED - Sets dmAllowed = true - Sets dmConversationId to the WhatsApp JID format Returns true on success, throws on failure. */
|
|
8288
7823
|
verifyWhatsAppPairingCode: Scalars['Boolean']['output'];
|
|
8289
7824
|
/** Void an invoice */
|
|
8290
7825
|
voidInvoice: Invoice;
|
|
@@ -8773,7 +8308,6 @@ export type MutationCompleteStepArgs = {
|
|
|
8773
8308
|
};
|
|
8774
8309
|
/** Root mutation type */
|
|
8775
8310
|
export type MutationCompleteSupportAttachmentUploadArgs = {
|
|
8776
|
-
folderId: Scalars['ID']['input'];
|
|
8777
8311
|
sessionId: Scalars['ID']['input'];
|
|
8778
8312
|
ticketId: Scalars['ID']['input'];
|
|
8779
8313
|
};
|
|
@@ -11682,12 +11216,7 @@ export type MutationVoteOnAppReviewArgs = {
|
|
|
11682
11216
|
export type MutationWithdrawConsentArgs = {
|
|
11683
11217
|
input: WithdrawConsentInput;
|
|
11684
11218
|
};
|
|
11685
|
-
/**
|
|
11686
|
-
* Filter inputs for `myContactInquiries`.
|
|
11687
|
-
* Search and email-filter are deliberately not exposed — the query is already
|
|
11688
|
-
* scoped to the caller's email, so a full-text search across `name`/`subject`
|
|
11689
|
-
* would only surface inquiries the caller already owns.
|
|
11690
|
-
*/
|
|
11219
|
+
/** Filter inputs for `myContactInquiries`. Search and email-filter are deliberately not exposed — the query is already scoped to the caller's email, so a full-text search across `name`/`subject` would only surface inquiries the caller already owns. */
|
|
11691
11220
|
export type MyContactInquiryFilterInput = {
|
|
11692
11221
|
/** Filter by product ID */
|
|
11693
11222
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11808,11 +11337,7 @@ export type NewsletterConsent = {
|
|
|
11808
11337
|
subscriberId: Scalars['String']['output'];
|
|
11809
11338
|
userAgent?: Maybe<Scalars['String']['output']>;
|
|
11810
11339
|
};
|
|
11811
|
-
/**
|
|
11812
|
-
* Newsletter-specific context output type.
|
|
11813
|
-
* Returns the stored context for each record.
|
|
11814
|
-
* Module-specific to avoid federation conflicts with OperationContext in other subgraphs.
|
|
11815
|
-
*/
|
|
11340
|
+
/** Newsletter-specific context output type. Returns the stored context for each record. Module-specific to avoid federation conflicts with OperationContext in other subgraphs. */
|
|
11816
11341
|
export type NewsletterContext = {
|
|
11817
11342
|
__typename?: 'NewsletterContext';
|
|
11818
11343
|
/** Additional custom context as JSON */
|
|
@@ -11830,10 +11355,7 @@ export type NewsletterContext = {
|
|
|
11830
11355
|
/** Workspace ID for workspace-level scoping */
|
|
11831
11356
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
11832
11357
|
};
|
|
11833
|
-
/**
|
|
11834
|
-
* Newsletter context filter input for querying records by context.
|
|
11835
|
-
* Supports exact match filtering on context fields.
|
|
11836
|
-
*/
|
|
11358
|
+
/** Newsletter context filter input for querying records by context. Supports exact match filtering on context fields. */
|
|
11837
11359
|
export type NewsletterContextFilterInput = {
|
|
11838
11360
|
/** Filter by organization ID */
|
|
11839
11361
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -11848,10 +11370,7 @@ export type NewsletterContextFilterInput = {
|
|
|
11848
11370
|
/** Filter by workspace ID */
|
|
11849
11371
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
11850
11372
|
};
|
|
11851
|
-
/**
|
|
11852
|
-
* Newsletter context input for filtering and scoping data.
|
|
11853
|
-
* All fields are optional and can be extended as needed.
|
|
11854
|
-
*/
|
|
11373
|
+
/** Newsletter context input for filtering and scoping data. All fields are optional and can be extended as needed. */
|
|
11855
11374
|
export type NewsletterContextInput = {
|
|
11856
11375
|
/** Additional custom context as JSON */
|
|
11857
11376
|
custom?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -12498,10 +12017,7 @@ export type OidcHybridConfig = {
|
|
|
12498
12017
|
supportedGrantTypes: Array<Scalars['String']['output']>;
|
|
12499
12018
|
supportedResponseTypes: Array<Scalars['String']['output']>;
|
|
12500
12019
|
};
|
|
12501
|
-
/**
|
|
12502
|
-
* Operation context output type.
|
|
12503
|
-
* Returns the stored context for each record.
|
|
12504
|
-
*/
|
|
12020
|
+
/** Operation context output type. Returns the stored context for each record. */
|
|
12505
12021
|
export type OperationContext = {
|
|
12506
12022
|
__typename?: 'OperationContext';
|
|
12507
12023
|
/** App ID for app-level scoping */
|
|
@@ -12651,10 +12167,7 @@ export type OrderStatusUpdatedEvent = {
|
|
|
12651
12167
|
updatedAt: Scalars['String']['output'];
|
|
12652
12168
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
12653
12169
|
};
|
|
12654
|
-
/**
|
|
12655
|
-
* Organization type stub - represents an organization entity from another service
|
|
12656
|
-
* This service doesn't own the Organization model, but references it
|
|
12657
|
-
*/
|
|
12170
|
+
/** Organization type stub - represents an organization entity from another service This service doesn't own the Organization model, but references it */
|
|
12658
12171
|
export type Organization = {
|
|
12659
12172
|
__typename?: 'Organization';
|
|
12660
12173
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -12716,11 +12229,7 @@ export type OrganizationAuditLogPageInfo = {
|
|
|
12716
12229
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
12717
12230
|
hasNextPage: Scalars['Boolean']['output'];
|
|
12718
12231
|
};
|
|
12719
|
-
/**
|
|
12720
|
-
* Inline export payload for `exportOrganizationsCsv`. Returns CSV text along
|
|
12721
|
-
* with a count of rows and a flag if the result was capped at the requested
|
|
12722
|
-
* limit. Pattern mirrors `TenantExport` from the tenant module.
|
|
12723
|
-
*/
|
|
12232
|
+
/** Inline export payload for `exportOrganizationsCsv`. Returns CSV text along with a count of rows and a flag if the result was capped at the requested limit. Pattern mirrors `TenantExport` from the tenant module. */
|
|
12724
12233
|
export type OrganizationCsvExport = {
|
|
12725
12234
|
__typename?: 'OrganizationCsvExport';
|
|
12726
12235
|
csv: Scalars['String']['output'];
|
|
@@ -12816,10 +12325,7 @@ export type PageInfo = {
|
|
|
12816
12325
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
12817
12326
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
12818
12327
|
};
|
|
12819
|
-
/**
|
|
12820
|
-
* Response type for getTransactionsByBillingAccount query
|
|
12821
|
-
* Contains basic billing account info and paginated transactions
|
|
12822
|
-
*/
|
|
12328
|
+
/** Response type for getTransactionsByBillingAccount query Contains basic billing account info and paginated transactions */
|
|
12823
12329
|
export type PaginatedBillingAccountTransactions = {
|
|
12824
12330
|
__typename?: 'PaginatedBillingAccountTransactions';
|
|
12825
12331
|
/** Billing-specific email (for invoices) */
|
|
@@ -13058,10 +12564,7 @@ export declare enum PaymentMethodType {
|
|
|
13058
12564
|
Paypal = "PAYPAL",
|
|
13059
12565
|
Wallet = "WALLET"
|
|
13060
12566
|
}
|
|
13061
|
-
/**
|
|
13062
|
-
* Payment provider configuration for frontend integration
|
|
13063
|
-
* Contains only public keys safe to expose to the client
|
|
13064
|
-
*/
|
|
12567
|
+
/** Payment provider configuration for frontend integration Contains only public keys safe to expose to the client */
|
|
13065
12568
|
export type PaymentProviderConfig = {
|
|
13066
12569
|
__typename?: 'PaymentProviderConfig';
|
|
13067
12570
|
/** Whether Razorpay is configured and available */
|
|
@@ -13311,19 +12814,13 @@ export type Plan = {
|
|
|
13311
12814
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
13312
12815
|
/** The currency in which the plan is priced. Defaults to 'USD'. */
|
|
13313
12816
|
currency?: Maybe<Scalars['String']['output']>;
|
|
13314
|
-
/**
|
|
13315
|
-
* Prices for all supported currencies with beautiful rounding.
|
|
13316
|
-
* Example: { "USD": 2.00, "INR": 199, "EUR": 1.99, "GBP": 1.79 }
|
|
13317
|
-
*/
|
|
12817
|
+
/** Prices for all supported currencies with beautiful rounding. Example: { "USD": 2.00, "INR": 199, "EUR": 1.99, "GBP": 1.79 } */
|
|
13318
12818
|
currencyPrices?: Maybe<Scalars['JSON']['output']>;
|
|
13319
12819
|
/** The duration for which the plan is valid (e.g., monthly, yearly). Defaults to 'monthly'. */
|
|
13320
12820
|
duration?: Maybe<PlanDuration>;
|
|
13321
12821
|
/** A list of features provided by this plan, such as quotas or special services. */
|
|
13322
12822
|
features?: Maybe<Array<Maybe<SubscriptionFeatures>>>;
|
|
13323
|
-
/**
|
|
13324
|
-
* Geography-specific price overrides. The billing account's country/state/region plus
|
|
13325
|
-
* currency decide whether one of these overrides applies.
|
|
13326
|
-
*/
|
|
12823
|
+
/** Geography-specific price overrides. The billing account's country/state/region plus currency decide whether one of these overrides applies. */
|
|
13327
12824
|
geoPricingOverrides: Array<GeoPricingOverride>;
|
|
13328
12825
|
/** The unique identifier for the Plan, automatically generated as a UUID. */
|
|
13329
12826
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -13341,15 +12838,9 @@ export type Plan = {
|
|
|
13341
12838
|
price?: Maybe<Scalars['Float']['output']>;
|
|
13342
12839
|
/** Historical record of price changes for this plan */
|
|
13343
12840
|
priceHistory: Array<PlanPriceHistory>;
|
|
13344
|
-
/**
|
|
13345
|
-
* Per-seat rate used when pricingModel is PER_SEAT.
|
|
13346
|
-
* Total charge = pricePerSeat × seatCount.
|
|
13347
|
-
*/
|
|
12841
|
+
/** Per-seat rate used when pricingModel is PER_SEAT. Total charge = pricePerSeat × seatCount. */
|
|
13348
12842
|
pricePerSeat?: Maybe<Scalars['Float']['output']>;
|
|
13349
|
-
/**
|
|
13350
|
-
* Whether this plan bills at a flat rate or per seat.
|
|
13351
|
-
* PER_SEAT plans pass seatCount as quantity to Stripe/Razorpay.
|
|
13352
|
-
*/
|
|
12843
|
+
/** Whether this plan bills at a flat rate or per seat. PER_SEAT plans pass seatCount as quantity to Stripe/Razorpay. */
|
|
13353
12844
|
pricingModel?: Maybe<PlanPricingModel>;
|
|
13354
12845
|
/** Which product the plan belongs to (reference to product microservice) */
|
|
13355
12846
|
productID?: Maybe<Scalars['String']['output']>;
|
|
@@ -13362,10 +12853,7 @@ export declare enum PlanDuration {
|
|
|
13362
12853
|
Monthly = "monthly",
|
|
13363
12854
|
Yearly = "yearly"
|
|
13364
12855
|
}
|
|
13365
|
-
/**
|
|
13366
|
-
* Tracks historical price changes for a Plan.
|
|
13367
|
-
* A new record is created whenever a plan's price is updated.
|
|
13368
|
-
*/
|
|
12856
|
+
/** Tracks historical price changes for a Plan. A new record is created whenever a plan's price is updated. */
|
|
13369
12857
|
export type PlanPriceHistory = {
|
|
13370
12858
|
__typename?: 'PlanPriceHistory';
|
|
13371
12859
|
/** Who made the price change (actor ID) */
|
|
@@ -13397,11 +12885,7 @@ export type PlanQuotaInput = {
|
|
|
13397
12885
|
quotaId: Scalars['ID']['input'];
|
|
13398
12886
|
};
|
|
13399
12887
|
export type PlansFilter = {
|
|
13400
|
-
/**
|
|
13401
|
-
* Include free plans (price = 0) in the response.
|
|
13402
|
-
* Defaults to true. Set to false on user-facing browse pages
|
|
13403
|
-
* since free plans are auto-assigned and cannot be purchased.
|
|
13404
|
-
*/
|
|
12888
|
+
/** Include free plans (price = 0) in the response. Defaults to true. Set to false on user-facing browse pages since free plans are auto-assigned and cannot be purchased. */
|
|
13405
12889
|
includeFree?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13406
12890
|
/** Filter plans by product ID. When set, only plans with this productID are returned. */
|
|
13407
12891
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -13418,10 +12902,7 @@ export type PlatformDeliveryResult = {
|
|
|
13418
12902
|
/** Whether at least one recipient was delivered successfully */
|
|
13419
12903
|
success: Scalars['Boolean']['output'];
|
|
13420
12904
|
};
|
|
13421
|
-
/**
|
|
13422
|
-
* PlatformProduct entity - resolvable via Federation Gateway.
|
|
13423
|
-
* Other services can reference PlatformProduct by id or slug.
|
|
13424
|
-
*/
|
|
12905
|
+
/** PlatformProduct entity - resolvable via Federation Gateway. Other services can reference PlatformProduct by id or slug. */
|
|
13425
12906
|
export type PlatformProduct = {
|
|
13426
12907
|
__typename?: 'PlatformProduct';
|
|
13427
12908
|
/** Number of active users */
|
|
@@ -13462,11 +12943,7 @@ export type PlatformProduct = {
|
|
|
13462
12943
|
ogImage?: Maybe<Scalars['String']['output']>;
|
|
13463
12944
|
/** Google Play Store URL */
|
|
13464
12945
|
playStoreUrl?: Maybe<Scalars['String']['output']>;
|
|
13465
|
-
/**
|
|
13466
|
-
* reCAPTCHA secret key (server-side) for backend verification.
|
|
13467
|
-
* Only accessible via internal gateway (platformProduct query requires auth).
|
|
13468
|
-
* The publicProduct query does NOT resolve this field.
|
|
13469
|
-
*/
|
|
12946
|
+
/** reCAPTCHA secret key (server-side) for backend verification. Only accessible via internal gateway (platformProduct query requires auth). The publicProduct query does NOT resolve this field. */
|
|
13470
12947
|
recaptchaSecretKey?: Maybe<Scalars['String']['output']>;
|
|
13471
12948
|
/** reCAPTCHA site key (public) for frontend verification */
|
|
13472
12949
|
recaptchaSiteKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -13669,10 +13146,7 @@ export type ProductChartSnapshot = {
|
|
|
13669
13146
|
storeId?: Maybe<Scalars['ID']['output']>;
|
|
13670
13147
|
window: Scalars['String']['output'];
|
|
13671
13148
|
};
|
|
13672
|
-
/**
|
|
13673
|
-
* A content page (privacy policy, terms of service, etc.) stored in markdown format.
|
|
13674
|
-
* Supports global defaults (productId = null) and per-product overrides.
|
|
13675
|
-
*/
|
|
13149
|
+
/** A content page (privacy policy, terms of service, etc.) stored in markdown format. Supports global defaults (productId = null) and per-product overrides. */
|
|
13676
13150
|
export type ProductContentPage = {
|
|
13677
13151
|
__typename?: 'ProductContentPage';
|
|
13678
13152
|
content: Scalars['String']['output'];
|
|
@@ -14065,15 +13539,9 @@ export type PushMfaStatus = {
|
|
|
14065
13539
|
/** Root query type */
|
|
14066
13540
|
export type Query = {
|
|
14067
13541
|
__typename?: 'Query';
|
|
14068
|
-
/**
|
|
14069
|
-
* Placeholder field to allow empty Query type extension.
|
|
14070
|
-
* Must be @shareable since it exists in multiple subgraphs.
|
|
14071
|
-
*/
|
|
13542
|
+
/** Placeholder field to allow empty Query type extension. Must be @shareable since it exists in multiple subgraphs. */
|
|
14072
13543
|
_empty?: Maybe<Scalars['String']['output']>;
|
|
14073
|
-
/**
|
|
14074
|
-
* Health check for the service
|
|
14075
|
-
* @rbac(public: true, scopeType: "global")
|
|
14076
|
-
*/
|
|
13544
|
+
/** Health check for the service @rbac(public: true, scopeType: "global") */
|
|
14077
13545
|
_health: Scalars['String']['output'];
|
|
14078
13546
|
_newsletterSubscriptionsPlaceholder?: Maybe<Scalars['String']['output']>;
|
|
14079
13547
|
_privacyHealth?: Maybe<Scalars['String']['output']>;
|
|
@@ -14081,10 +13549,7 @@ export type Query = {
|
|
|
14081
13549
|
actionDefinitions: Array<ActionDefinition>;
|
|
14082
13550
|
/** Get all active schedules (for background processing) */
|
|
14083
13551
|
activeSchedules: Array<TourSchedule>;
|
|
14084
|
-
/**
|
|
14085
|
-
* Get all active sessions for the current user.
|
|
14086
|
-
* The `isCurrent` field indicates which session belongs to this request.
|
|
14087
|
-
*/
|
|
13552
|
+
/** Get all active sessions for the current user. The `isCurrent` field indicates which session belongs to this request. */
|
|
14088
13553
|
activeSessions: SessionConnection;
|
|
14089
13554
|
activityLog?: Maybe<ActivityLog>;
|
|
14090
13555
|
activityLogs: ActivityLogConnection;
|
|
@@ -14109,6 +13574,10 @@ export type Query = {
|
|
|
14109
13574
|
agentProfile?: Maybe<AgentProfile>;
|
|
14110
13575
|
agentProfileByUserId?: Maybe<AgentProfile>;
|
|
14111
13576
|
agentProfiles: AgentProfileConnection;
|
|
13577
|
+
/** Admin query: list all organizations in the platform (optionally filtered). Requires global 'organization:read' permission — super admins and platform admins only. For end-user "my orgs" access use myOrganizations instead. */
|
|
13578
|
+
allOrganizations: OrganizationList;
|
|
13579
|
+
/** Admin query: list all workspaces in the platform (optionally filtered). Requires global 'workspace:read' permission — super admins and platform admins only. For end-user "my workspaces" access use myWorkspaces instead. */
|
|
13580
|
+
allWorkspaces: WorkspaceList;
|
|
14112
13581
|
app?: Maybe<App>;
|
|
14113
13582
|
/** List API keys for a specific app */
|
|
14114
13583
|
appApiKeys: ApiKeyConnection;
|
|
@@ -14133,10 +13602,7 @@ export type Query = {
|
|
|
14133
13602
|
application?: Maybe<Application>;
|
|
14134
13603
|
applicationAnalytics: Array<ApplicationAnalytics>;
|
|
14135
13604
|
applications: ApplicationConnection;
|
|
14136
|
-
/**
|
|
14137
|
-
* Internal: get all approved waitlist entries for an email.
|
|
14138
|
-
* Used by tenant-svc for product access checks.
|
|
14139
|
-
*/
|
|
13605
|
+
/** Internal: get all approved waitlist entries for an email. Used by tenant-svc for product access checks. */
|
|
14140
13606
|
approvedWaitlistProducts: Array<NewsletterWaitlist>;
|
|
14141
13607
|
appsActingAsCurrentUser: AppConnection;
|
|
14142
13608
|
auditLogs: AuditLogConnection;
|
|
@@ -14148,44 +13614,12 @@ export type Query = {
|
|
|
14148
13614
|
automationSubscribers: Array<AutomationSubscriber>;
|
|
14149
13615
|
availableAgents: Array<AgentProfile>;
|
|
14150
13616
|
availableAuthMethods: Array<AuthMethod>;
|
|
14151
|
-
/**
|
|
14152
|
-
* Get available preview features the user can opt-in to within a workspace.
|
|
14153
|
-
* Returns only flags that are previewable, active, and allowed by workspace admin.
|
|
14154
|
-
* Bounded by limit/offset to avoid unbounded fetches.
|
|
14155
|
-
*/
|
|
13617
|
+
/** Get available preview features the user can opt-in to within a workspace. Returns only flags that are previewable, active, and allowed by workspace admin. Bounded by limit/offset to avoid unbounded fetches. */
|
|
14156
13618
|
availableFeaturePreviews: Array<FeatureFlag>;
|
|
14157
13619
|
bounceStats: BounceStats;
|
|
14158
|
-
/**
|
|
14159
|
-
* Browse store products with unified filtering, sorting, and pagination.
|
|
14160
|
-
* Search is treated as a filter - all filters combine with AND logic.
|
|
14161
|
-
*
|
|
14162
|
-
* Example usage:
|
|
14163
|
-
* ```graphql
|
|
14164
|
-
* query {
|
|
14165
|
-
* browseStore(input: {
|
|
14166
|
-
* filter: {
|
|
14167
|
-
* search: "ai notification"
|
|
14168
|
-
* type: NODE
|
|
14169
|
-
* pricingModel: FREE
|
|
14170
|
-
* minRating: 4.0
|
|
14171
|
-
* compatibleWith: "workspaces"
|
|
14172
|
-
* }
|
|
14173
|
-
* sortBy: RELEVANCE
|
|
14174
|
-
* pagination: { limit: 20, offset: 0 }
|
|
14175
|
-
* }) {
|
|
14176
|
-
* products { id name rating downloads }
|
|
14177
|
-
* totalCount
|
|
14178
|
-
* hasMore
|
|
14179
|
-
* facets { categories { value count } }
|
|
14180
|
-
* }
|
|
14181
|
-
* }
|
|
14182
|
-
* ```
|
|
14183
|
-
*/
|
|
13620
|
+
/** Browse store products with unified filtering, sorting, and pagination. Search is treated as a filter - all filters combine with AND logic. Example usage: ```graphql query { browseStore(input: { filter: { search: "ai notification" type: NODE pricingModel: FREE minRating: 4.0 compatibleWith: "workspaces" } sortBy: RELEVANCE pagination: { limit: 20, offset: 0 } }) { products { id name rating downloads } totalCount hasMore facets { categories { value count } } } } ``` */
|
|
14184
13621
|
browseStore: BrowseStoreResult;
|
|
14185
|
-
/**
|
|
14186
|
-
* Calculate tax for a purchase (preview without creating payment)
|
|
14187
|
-
* Used by checkout to show tax breakdown before payment
|
|
14188
|
-
*/
|
|
13622
|
+
/** Calculate tax for a purchase (preview without creating payment) Used by checkout to show tax breakdown before payment */
|
|
14189
13623
|
calculateTax: TaxCalculationResult;
|
|
14190
13624
|
campaign?: Maybe<NewsletterCampaign>;
|
|
14191
13625
|
campaignBounces: Array<NewsletterBounce>;
|
|
@@ -14212,10 +13646,7 @@ export type Query = {
|
|
|
14212
13646
|
checkPermissions: Array<PermissionCheckResult>;
|
|
14213
13647
|
/** Check if a plan has an entitlement for a specific store item */
|
|
14214
13648
|
checkPlanEntitlement?: Maybe<SubscriptionEntitlement>;
|
|
14215
|
-
/**
|
|
14216
|
-
* Check if the current user can access a specific product.
|
|
14217
|
-
* Returns access status and reason.
|
|
14218
|
-
*/
|
|
13649
|
+
/** Check if the current user can access a specific product. Returns access status and reason. */
|
|
14219
13650
|
checkProductAccess: ProductAccessResult;
|
|
14220
13651
|
checkQuotaExhausted: QuotaCheckResult;
|
|
14221
13652
|
/** Check if an actor can see a resource */
|
|
@@ -14225,10 +13656,7 @@ export type Query = {
|
|
|
14225
13656
|
circuitBreakerStatus?: Maybe<CircuitBreakerState>;
|
|
14226
13657
|
compareVariants: VariantComparisonResult;
|
|
14227
13658
|
complaintStats: ComplaintStats;
|
|
14228
|
-
/**
|
|
14229
|
-
* Returns compliance-related audit events (consent changes, suppressions, bounces, complaints)
|
|
14230
|
-
* for a given platform product, sorted by most recent first.
|
|
14231
|
-
*/
|
|
13659
|
+
/** Returns compliance-related audit events (consent changes, suppressions, bounces, complaints) for a given platform product, sorted by most recent first. */
|
|
14232
13660
|
complianceAuditLog: Array<ComplianceAuditLogEntry>;
|
|
14233
13661
|
complianceSettings?: Maybe<NewsletterComplianceSettings>;
|
|
14234
13662
|
consentLedger: ConsentRecordConnection;
|
|
@@ -14239,17 +13667,11 @@ export type Query = {
|
|
|
14239
13667
|
contactInquiry?: Maybe<ContactInquiry>;
|
|
14240
13668
|
/** Get a single content page by ID */
|
|
14241
13669
|
contentPage?: Maybe<ProductContentPage>;
|
|
14242
|
-
/**
|
|
14243
|
-
* Get a content page by slug and optional product ID.
|
|
14244
|
-
* If productId is null, returns the global default page.
|
|
14245
|
-
*/
|
|
13670
|
+
/** Get a content page by slug and optional product ID. If productId is null, returns the global default page. */
|
|
14246
13671
|
contentPageBySlug?: Maybe<ProductContentPage>;
|
|
14247
13672
|
/** List content pages with optional filtering by product */
|
|
14248
13673
|
contentPages: ProductContentPageList;
|
|
14249
|
-
/**
|
|
14250
|
-
* Convert an amount from one currency to another (uses live exchange rates)
|
|
14251
|
-
* Default fromCurrency is USD
|
|
14252
|
-
*/
|
|
13674
|
+
/** Convert an amount from one currency to another (uses live exchange rates) Default fromCurrency is USD */
|
|
14253
13675
|
convertCurrency: CurrencyConversion;
|
|
14254
13676
|
currentUser?: Maybe<User>;
|
|
14255
13677
|
currentUserApps: AppConnection;
|
|
@@ -14322,26 +13744,12 @@ export type Query = {
|
|
|
14322
13744
|
estimateNewsletterRecipients: NewsletterRecipientEstimate;
|
|
14323
13745
|
/** Estimate shipping for an order with a specific method */
|
|
14324
13746
|
estimateOrderShipping: OrderShippingEstimate;
|
|
14325
|
-
/**
|
|
14326
|
-
* Evaluate feature flags for the current actor in a workspace context.
|
|
14327
|
-
* Used by frontend providers for bulk flag evaluation.
|
|
14328
|
-
* Returns OpenFeature-compatible ResolutionDetails for each flag.
|
|
14329
|
-
* RBAC is scoped to the target workspace via `input.workspaceId`.
|
|
14330
|
-
*/
|
|
13747
|
+
/** Evaluate feature flags for the current actor in a workspace context. Used by frontend providers for bulk flag evaluation. Returns OpenFeature-compatible ResolutionDetails for each flag. RBAC is scoped to the target workspace via `input.workspaceId`. */
|
|
14331
13748
|
evaluateFeatureFlags: FeatureFlagBulkEvaluation;
|
|
14332
|
-
/**
|
|
14333
|
-
* Synchronous super_admin export of organizations as a CSV string. Returns
|
|
14334
|
-
* inline CSV (RFC-4180 with CWE-1236 protection) plus row count and a
|
|
14335
|
-
* truncated flag indicating the result was capped at the requested limit.
|
|
14336
|
-
*/
|
|
13749
|
+
/** Synchronous super_admin export of organizations as a CSV string. Returns inline CSV (RFC-4180 with CWE-1236 protection) plus row count and a truncated flag indicating the result was capped at the requested limit. */
|
|
14337
13750
|
exportOrganizationsCsv: OrganizationCsvExport;
|
|
14338
13751
|
exportSubscribers: Array<ExportSubscriber>;
|
|
14339
|
-
/**
|
|
14340
|
-
* Synchronous superadmin export of tenants as a CSV string. The wspace-export-svc
|
|
14341
|
-
* pipeline is workspace-scoped (every entity needs `workspace_id`) and therefore
|
|
14342
|
-
* cannot host a global tenant export. Returning the data inline keeps the surface
|
|
14343
|
-
* small; switch to a global-export-svc when the row volume warrants async jobs.
|
|
14344
|
-
*/
|
|
13752
|
+
/** Synchronous superadmin export of tenants as a CSV string. The wspace-export-svc pipeline is workspace-scoped (every entity needs `workspace_id`) and therefore cannot host a global tenant export. Returning the data inline keeps the surface small; switch to a global-export-svc when the row volume warrants async jobs. */
|
|
14345
13753
|
exportTenantsCsv: TenantExport;
|
|
14346
13754
|
exportTranslations: TranslationsExport;
|
|
14347
13755
|
faq?: Maybe<Faq>;
|
|
@@ -14354,15 +13762,9 @@ export type Query = {
|
|
|
14354
13762
|
/** List feature flags with optional filtering (super admin only) */
|
|
14355
13763
|
featureFlags: FeatureFlagList;
|
|
14356
13764
|
featuredProducts: Array<StoreProduct>;
|
|
14357
|
-
/**
|
|
14358
|
-
* Get available filter options for a given context.
|
|
14359
|
-
* Useful for populating filter dropdowns in UI.
|
|
14360
|
-
*/
|
|
13765
|
+
/** Get available filter options for a given context. Useful for populating filter dropdowns in UI. */
|
|
14361
13766
|
filterOptions: FilterOptionsResult;
|
|
14362
|
-
/**
|
|
14363
|
-
* Get active subscriptions for a billing account (optimized for dashboard)
|
|
14364
|
-
* Only returns subscriptions with status = 'active'
|
|
14365
|
-
*/
|
|
13767
|
+
/** Get active subscriptions for a billing account (optimized for dashboard) Only returns subscriptions with status = 'active' */
|
|
14366
13768
|
getActiveSubscriptions: Array<BillingSubscription>;
|
|
14367
13769
|
/** Get the price change history for a specific addon */
|
|
14368
13770
|
getAddonPriceHistory: Array<AddonPriceHistory>;
|
|
@@ -14380,11 +13782,7 @@ export type Query = {
|
|
|
14380
13782
|
/** Get a billing account by ID */
|
|
14381
13783
|
getBillingAccount?: Maybe<BillingAccount>;
|
|
14382
13784
|
getBillingAccountCreditTransactions: PaginatedCreditTransactions;
|
|
14383
|
-
/**
|
|
14384
|
-
* Get usage summary for all quotas of a billing account.
|
|
14385
|
-
* Returns both subscription (PRODUCT_SPECIFIC) and pooled quotas.
|
|
14386
|
-
* If productId is provided, filters subscription quotas by that product.
|
|
14387
|
-
*/
|
|
13785
|
+
/** Get usage summary for all quotas of a billing account. Returns both subscription (PRODUCT_SPECIFIC) and pooled quotas. If productId is provided, filters subscription quotas by that product. */
|
|
14388
13786
|
getBillingAccountQuotasSummary: BillingAccountQuotasSummary;
|
|
14389
13787
|
/** Get all billing accounts for the current org (from context) */
|
|
14390
13788
|
getBillingAccountsByOrg: Array<BillingAccount>;
|
|
@@ -14397,24 +13795,14 @@ export type Query = {
|
|
|
14397
13795
|
/** Get a channel by ID */
|
|
14398
13796
|
getChannel?: Maybe<Channel>;
|
|
14399
13797
|
getChannelConnectionTags: Array<ChannelConnectionTagAssignment>;
|
|
14400
|
-
/**
|
|
14401
|
-
* Get recent delivery attempts for a channel.
|
|
14402
|
-
* Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`.
|
|
14403
|
-
* Falls back to offset when `cursor` is absent.
|
|
14404
|
-
*/
|
|
13798
|
+
/** Get recent delivery attempts for a channel. Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`. Falls back to offset when `cursor` is absent. */
|
|
14405
13799
|
getChannelDeliveryAttempts: DeliveryAttemptList;
|
|
14406
|
-
/**
|
|
14407
|
-
* Get organization-level channel settings.
|
|
14408
|
-
* Returns defaults when no settings have been saved yet.
|
|
14409
|
-
*/
|
|
13800
|
+
/** Get organization-level channel settings. Returns defaults when no settings have been saved yet. */
|
|
14410
13801
|
getChannelOrgSettings: ChannelOrgSettings;
|
|
14411
13802
|
/** Get channel statistics */
|
|
14412
13803
|
getChannelStats: ChannelStats;
|
|
14413
13804
|
getChannelTags: Array<ChannelTagAssignment>;
|
|
14414
|
-
/**
|
|
14415
|
-
* Get recent webhook events for a channel.
|
|
14416
|
-
* Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`.
|
|
14417
|
-
*/
|
|
13805
|
+
/** Get recent webhook events for a channel. Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`. */
|
|
14418
13806
|
getChannelWebhookEvents: WebhookEventList;
|
|
14419
13807
|
/** Get all channels with optional filtering */
|
|
14420
13808
|
getChannels: ChannelList;
|
|
@@ -14422,29 +13810,19 @@ export type Query = {
|
|
|
14422
13810
|
getChannelsByOrganization: ChannelList;
|
|
14423
13811
|
/** Get channels by platform */
|
|
14424
13812
|
getChannelsByPlatform: ChannelList;
|
|
14425
|
-
/**
|
|
14426
|
-
* Get channels for failover (sorted by priority, ascending).
|
|
14427
|
-
* Returns channels for a platform that are enabled for failover.
|
|
14428
|
-
* Used by delivery logic for priority-based fallback.
|
|
14429
|
-
*/
|
|
13813
|
+
/** Get channels for failover (sorted by priority, ascending). Returns channels for a platform that are enabled for failover. Used by delivery logic for priority-based fallback. */
|
|
14430
13814
|
getChannelsForFailover: Array<Channel>;
|
|
14431
13815
|
/** Get a charge by ID */
|
|
14432
13816
|
getCharge?: Maybe<Charge>;
|
|
14433
13817
|
/** Get all charges for the current org (from context), optionally filtered by status */
|
|
14434
13818
|
getCharges: Array<Charge>;
|
|
14435
|
-
/**
|
|
14436
|
-
* Get a connection by ID
|
|
14437
|
-
* NOTE: Credentials are never returned in queries
|
|
14438
|
-
*/
|
|
13819
|
+
/** Get a connection by ID NOTE: Credentials are never returned in queries */
|
|
14439
13820
|
getConnection?: Maybe<ChannelConnection>;
|
|
14440
13821
|
/** Get connection by channel ID */
|
|
14441
13822
|
getConnectionByChannel?: Maybe<ChannelConnection>;
|
|
14442
13823
|
/** Get connection status summary */
|
|
14443
13824
|
getConnectionStatus: ConnectionStatus;
|
|
14444
|
-
/**
|
|
14445
|
-
* Get all connections for an organization.
|
|
14446
|
-
* Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`.
|
|
14447
|
-
*/
|
|
13825
|
+
/** Get all connections for an organization. Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`. */
|
|
14448
13826
|
getConnectionsByOrganization: ChannelConnectionList;
|
|
14449
13827
|
getCostOfCredits: CreditCost;
|
|
14450
13828
|
/** Get a coupon by ID */
|
|
@@ -14453,22 +13831,14 @@ export type Query = {
|
|
|
14453
13831
|
getCouponByCode?: Maybe<Coupon>;
|
|
14454
13832
|
/** Get coupon usage history */
|
|
14455
13833
|
getCouponUsageHistory: CouponUsageListResponse;
|
|
14456
|
-
/**
|
|
14457
|
-
* Get credit balance broken down by type (purchased, earned, granted, withdrawable).
|
|
14458
|
-
* Computed from the transaction ledger — use this for withdrawal eligibility checks.
|
|
14459
|
-
*/
|
|
13834
|
+
/** Get credit balance broken down by type (purchased, earned, granted, withdrawable). Computed from the transaction ledger — use this for withdrawal eligibility checks. */
|
|
14460
13835
|
getCreditBalanceByType: CreditBalanceByType;
|
|
14461
13836
|
/** Get credit notes for the current org (from context) */
|
|
14462
13837
|
getCreditNotes: Array<CreditNote>;
|
|
14463
13838
|
getCreditTransactionDetails: CreditTransaction;
|
|
14464
13839
|
/** Get the default/first billing account for the current org (from context) */
|
|
14465
13840
|
getDefaultBillingAccount?: Maybe<BillingAccount>;
|
|
14466
|
-
/**
|
|
14467
|
-
* Get the default billing account for a specific organization by orgId.
|
|
14468
|
-
* Returns the billing account where isDefault = true for the given orgId.
|
|
14469
|
-
* If no default is set, returns the first active billing account.
|
|
14470
|
-
* Used by gateway for automatic billing account resolution in usage tracking.
|
|
14471
|
-
*/
|
|
13841
|
+
/** Get the default billing account for a specific organization by orgId. Returns the billing account where isDefault = true for the given orgId. If no default is set, returns the first active billing account. Used by gateway for automatic billing account resolution in usage tracking. */
|
|
14472
13842
|
getDefaultBillingAccountByOrgId?: Maybe<BillingAccount>;
|
|
14473
13843
|
/** Get the default payment method for a billing account */
|
|
14474
13844
|
getDefaultPaymentMethod?: Maybe<PaymentMethod>;
|
|
@@ -14486,20 +13856,11 @@ export type Query = {
|
|
|
14486
13856
|
getEntitlement?: Maybe<SubscriptionEntitlement>;
|
|
14487
13857
|
/** Get external OIDC configuration for a tenant (Google, Microsoft, etc.) */
|
|
14488
13858
|
getExternalOIDCConfig?: Maybe<ExternalOidcConfiguration>;
|
|
14489
|
-
/**
|
|
14490
|
-
* Get billing orders with failed callbacks (admin only)
|
|
14491
|
-
* Useful for monitoring and manual retry
|
|
14492
|
-
*/
|
|
13859
|
+
/** Get billing orders with failed callbacks (admin only) Useful for monitoring and manual retry */
|
|
14493
13860
|
getFailedBillingOrderCallbacks: FailedBillingOrderCallbacksResponse;
|
|
14494
|
-
/**
|
|
14495
|
-
* Get failed delivery attempts for retry.
|
|
14496
|
-
* Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`.
|
|
14497
|
-
*/
|
|
13861
|
+
/** Get failed delivery attempts for retry. Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`. */
|
|
14498
13862
|
getFailedDeliveryAttempts: DeliveryAttemptList;
|
|
14499
|
-
/**
|
|
14500
|
-
* Get failed webhook events for retry.
|
|
14501
|
-
* Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`.
|
|
14502
|
-
*/
|
|
13863
|
+
/** Get failed webhook events for retry. Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`. */
|
|
14503
13864
|
getFailedWebhookEvents: WebhookEventList;
|
|
14504
13865
|
/** Get an invoice by ID */
|
|
14505
13866
|
getInvoice?: Maybe<Invoice>;
|
|
@@ -14525,10 +13886,7 @@ export type Query = {
|
|
|
14525
13886
|
getPaymentFailures: Array<PaymentFailure>;
|
|
14526
13887
|
/** Get payment methods for a billing account */
|
|
14527
13888
|
getPaymentMethods: Array<PaymentMethod>;
|
|
14528
|
-
/**
|
|
14529
|
-
* Get payment provider configuration for frontend integration
|
|
14530
|
-
* Returns public keys only (safe to expose to client)
|
|
14531
|
-
*/
|
|
13889
|
+
/** Get payment provider configuration for frontend integration Returns public keys only (safe to expose to client) */
|
|
14532
13890
|
getPaymentProviderConfig: PaymentProviderConfig;
|
|
14533
13891
|
/** Get all payments for the current org (from context), optionally filtered by status */
|
|
14534
13892
|
getPayments: Array<Payment>;
|
|
@@ -14551,10 +13909,7 @@ export type Query = {
|
|
|
14551
13909
|
getReferralCodeByCode?: Maybe<ReferralCode>;
|
|
14552
13910
|
/** Get a single refund record by ID */
|
|
14553
13911
|
getRefundRecord?: Maybe<RefundRecord>;
|
|
14554
|
-
/**
|
|
14555
|
-
* Get refund records with filters and pagination (for admin dashboard).
|
|
14556
|
-
* Uses orgId from context by default. Super admins can override with orgIdFilter.
|
|
14557
|
-
*/
|
|
13912
|
+
/** Get refund records with filters and pagination (for admin dashboard). Uses orgId from context by default. Super admins can override with orgIdFilter. */
|
|
14558
13913
|
getRefundRecords: PaginatedRefundRecords;
|
|
14559
13914
|
/** Get refund statistics (counts and amounts) */
|
|
14560
13915
|
getRefundStats: RefundStats;
|
|
@@ -14571,12 +13926,7 @@ export type Query = {
|
|
|
14571
13926
|
getStoreProductTags: Array<StoreProductTagAssignment>;
|
|
14572
13927
|
/** Get a subscription by ID */
|
|
14573
13928
|
getSubscription?: Maybe<BillingSubscription>;
|
|
14574
|
-
/**
|
|
14575
|
-
* Enhanced subscription overview with better pagination and filtering
|
|
14576
|
-
* @param includeExpired - Include past/canceled/expired subscriptions (default: false)
|
|
14577
|
-
* @param onlyExpired - Only fetch past subscriptions for lazy loading (default: false)
|
|
14578
|
-
* @param searchQuery - Search quotas by name in database (case-insensitive)
|
|
14579
|
-
*/
|
|
13929
|
+
/** Enhanced subscription overview with better pagination and filtering @param includeExpired - Include past/canceled/expired subscriptions (default: false) @param onlyExpired - Only fetch past subscriptions for lazy loading (default: false) @param searchQuery - Search quotas by name in database (case-insensitive) */
|
|
14580
13930
|
getSubscriptionUsageOverview?: Maybe<Array<SubscriptionWithQuotas>>;
|
|
14581
13931
|
getSubscriptionUsages: SubscriptionQuotaUsageWithFilter;
|
|
14582
13932
|
/** Get tax rates */
|
|
@@ -14599,10 +13949,7 @@ export type Query = {
|
|
|
14599
13949
|
getWebhookStats: WebhookStats;
|
|
14600
13950
|
/** Health check endpoint */
|
|
14601
13951
|
health: HealthStatus;
|
|
14602
|
-
/**
|
|
14603
|
-
* Get grouped products for homepage.
|
|
14604
|
-
* Optionally filter by compatible product (e.g., "bigconsole", "fluidgrids").
|
|
14605
|
-
*/
|
|
13952
|
+
/** Get grouped products for homepage. Optionally filter by compatible product (e.g., "bigconsole", "fluidgrids"). */
|
|
14606
13953
|
homeGroupedProducts: GroupedStoreProducts;
|
|
14607
13954
|
homepageSections: Array<HomepageSection>;
|
|
14608
13955
|
i18nModule?: Maybe<I18nModule>;
|
|
@@ -14617,12 +13964,7 @@ export type Query = {
|
|
|
14617
13964
|
/** Initiate HTTP Digest auth challenge */
|
|
14618
13965
|
initiateDigestChallenge: DigestChallengeResult;
|
|
14619
13966
|
inventoryAdjustments: Array<InventoryAdjustment>;
|
|
14620
|
-
/**
|
|
14621
|
-
* Fast check for a single (app, workspace) pair. Used by wspace-auth-svc via
|
|
14622
|
-
* the internal global gateway before issuing a workspace token to an app
|
|
14623
|
-
* actor. Public (no actor RBAC) because the internal gateway is the only
|
|
14624
|
-
* caller and it trusts the x-actor-* headers it injects.
|
|
14625
|
-
*/
|
|
13967
|
+
/** Fast check for a single (app, workspace) pair. Used by wspace-auth-svc via the internal global gateway before issuing a workspace token to an app actor. Public (no actor RBAC) because the internal gateway is the only caller and it trusts the x-actor-* headers it injects. */
|
|
14626
13968
|
isAppAuthorizedForWorkspace: Scalars['Boolean']['output'];
|
|
14627
13969
|
isAppInstalled?: Maybe<StoreAppInstallation>;
|
|
14628
13970
|
isEmailSuppressed: Scalars['Boolean']['output'];
|
|
@@ -14643,27 +13985,15 @@ export type Query = {
|
|
|
14643
13985
|
listCoupons: CouponsListResponse;
|
|
14644
13986
|
/** List all referral codes (admin) */
|
|
14645
13987
|
listReferralCodes: ReferralCodesListResponse;
|
|
14646
|
-
/**
|
|
14647
|
-
* List all platform connections for a channel.
|
|
14648
|
-
* Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`.
|
|
14649
|
-
*/
|
|
13988
|
+
/** List all platform connections for a channel. Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`. */
|
|
14650
13989
|
listUserPlatformConnectionsByChannel: UserPlatformConnectionList;
|
|
14651
|
-
/**
|
|
14652
|
-
* List all platform connections for an organization.
|
|
14653
|
-
* Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`.
|
|
14654
|
-
*/
|
|
13990
|
+
/** List all platform connections for an organization. Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`. */
|
|
14655
13991
|
listUserPlatformConnectionsByOrganization: UserPlatformConnectionList;
|
|
14656
|
-
/**
|
|
14657
|
-
* List all platform connections for a given internal user.
|
|
14658
|
-
* Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`.
|
|
14659
|
-
*/
|
|
13992
|
+
/** List all platform connections for a given internal user. Supports cursor pagination — pass `cursor` from the previous page's `nextCursor`. */
|
|
14660
13993
|
listUserPlatformConnectionsByUser: UserPlatformConnectionList;
|
|
14661
13994
|
lookupAffiliateCode?: Maybe<AffiliateCode>;
|
|
14662
13995
|
lowStockProducts: Array<LowStockProduct>;
|
|
14663
|
-
/**
|
|
14664
|
-
* Returns products the current user can access based on their actor type,
|
|
14665
|
-
* email domain, and waitlist approval status. Used by app shells for nav.
|
|
14666
|
-
*/
|
|
13996
|
+
/** Returns products the current user can access based on their actor type, email domain, and waitlist approval status. Used by app shells for nav. */
|
|
14667
13997
|
myAccessibleProducts: PlatformProductList;
|
|
14668
13998
|
myActivityLogs: ActivityLogConnection;
|
|
14669
13999
|
myAffiliateCodes: AffiliateCodeConnection;
|
|
@@ -14674,28 +14004,13 @@ export type Query = {
|
|
|
14674
14004
|
myAppInstallations: AppInstallationConnection;
|
|
14675
14005
|
/** Get my review for an application */
|
|
14676
14006
|
myAppReview?: Maybe<AppReview>;
|
|
14677
|
-
/**
|
|
14678
|
-
* Get all workspaces the actor is authorized to access
|
|
14679
|
-
* Returns list with basic routing details (name, workspaceId, publicUrl)
|
|
14680
|
-
*/
|
|
14007
|
+
/** Get all workspaces the actor is authorized to access Returns list with basic routing details (name, workspaceId, publicUrl) */
|
|
14681
14008
|
myAuthorizedWorkspaces: WorkspaceRoutingList;
|
|
14682
14009
|
/** Get the current user's active cart */
|
|
14683
14010
|
myCart?: Maybe<Cart>;
|
|
14684
|
-
/**
|
|
14685
|
-
* Get the authenticated caller's own contact inquiries.
|
|
14686
|
-
*
|
|
14687
|
-
* Matches by email (case-insensitive). The public `submitContactInquiry`
|
|
14688
|
-
* mutation stores submissions with `createdBy = "anonymous"`, so there is no
|
|
14689
|
-
* userId to filter on; scoping by the gateway-forwarded email is the only
|
|
14690
|
-
* reliable way to link a signed-in user back to their earlier anonymous
|
|
14691
|
-
* submissions.
|
|
14692
|
-
*/
|
|
14011
|
+
/** Get the authenticated caller's own contact inquiries. Matches by email (case-insensitive). The public `submitContactInquiry` mutation stores submissions with `createdBy = "anonymous"`, so there is no userId to filter on; scoping by the gateway-forwarded email is the only reliable way to link a signed-in user back to their earlier anonymous submissions. */
|
|
14693
14012
|
myContactInquiries: ContactInquiryList;
|
|
14694
|
-
/**
|
|
14695
|
-
* Get the current user's dashboard widget layout preferences.
|
|
14696
|
-
* Returns the dashboard configuration JSON from preferences,
|
|
14697
|
-
* or null if no customization has been saved (frontend uses defaults).
|
|
14698
|
-
*/
|
|
14013
|
+
/** Get the current user's dashboard widget layout preferences. Returns the dashboard configuration JSON from preferences, or null if no customization has been saved (frontend uses defaults). */
|
|
14699
14014
|
myDashboardPreferences?: Maybe<Scalars['JSON']['output']>;
|
|
14700
14015
|
/** Get my developer organizations (where I'm a member) */
|
|
14701
14016
|
myDeveloperOrganizations: Array<DeveloperOrganization>;
|
|
@@ -14710,9 +14025,9 @@ export type Query = {
|
|
|
14710
14025
|
myNotificationCountsByChannel: NotificationChannelCounts;
|
|
14711
14026
|
/** Get all orders for the authenticated user */
|
|
14712
14027
|
myOrders: Array<StoreOrder>;
|
|
14713
|
-
/** Get invites for the current authenticated user (invitee view) */
|
|
14028
|
+
/** Get invites for the current authenticated user (invitee view). Membership-scoped: the resolver filters by actorId (invitee). Any authenticated user may call this; no RBAC permission is checked. */
|
|
14714
14029
|
myOrganizationInvites: OrganizationInviteList;
|
|
14715
|
-
/** Get organizations where the current user is a member */
|
|
14030
|
+
/** Get organizations where the current user is a member (owned + added to). Membership-scoped: the resolver filters by actorId, so the returned set IS the access list. Any authenticated user may call this; no RBAC permission is checked. */
|
|
14716
14031
|
myOrganizations: OrganizationList;
|
|
14717
14032
|
/** List user's registered passkeys */
|
|
14718
14033
|
myPasskeys: Array<PasskeyInfo>;
|
|
@@ -14720,25 +14035,16 @@ export type Query = {
|
|
|
14720
14035
|
myPayoutRequests: PayoutRequestConnection;
|
|
14721
14036
|
/** Get my pending invitations */
|
|
14722
14037
|
myPendingInvitations: Array<DeveloperOrgInvitation>;
|
|
14723
|
-
/**
|
|
14724
|
-
* Get current user's permissions in a scope (self-service).
|
|
14725
|
-
* Returns full permission details including roles, permission strings, and cache TTL.
|
|
14726
|
-
*/
|
|
14038
|
+
/** Get current user's permissions in a scope (self-service). Returns full permission details including roles, permission strings, and cache TTL. */
|
|
14727
14039
|
myPermissions: EffectivePermissions;
|
|
14728
|
-
/**
|
|
14729
|
-
* Get the current user's full preferences record.
|
|
14730
|
-
* Creates a default record if none exists.
|
|
14731
|
-
*/
|
|
14040
|
+
/** Get the current user's full preferences record. Creates a default record if none exists. */
|
|
14732
14041
|
myPreferences?: Maybe<UserPreference>;
|
|
14733
14042
|
/** List user's registered public keys */
|
|
14734
14043
|
myPublicKeys: Array<PublicKeyInfo>;
|
|
14735
14044
|
/** Get the current user's publisher profile, or null if none exists yet. */
|
|
14736
14045
|
myPublisher?: Maybe<Publisher>;
|
|
14737
14046
|
myReviews: Array<ProductReview>;
|
|
14738
|
-
/**
|
|
14739
|
-
* Get current user's roles in a scope (lightweight, self-service).
|
|
14740
|
-
* Use this for quick role checks without fetching full permissions.
|
|
14741
|
-
*/
|
|
14047
|
+
/** Get current user's roles in a scope (lightweight, self-service). Use this for quick role checks without fetching full permissions. */
|
|
14742
14048
|
myRoles: MyRolesResult;
|
|
14743
14049
|
myStoreAppInstallations: StoreAppInstallationConnection;
|
|
14744
14050
|
/** Stores the current user is subscribed to (auto-includes public stores). */
|
|
@@ -14749,24 +14055,14 @@ export type Query = {
|
|
|
14749
14055
|
myTenants: TenantList;
|
|
14750
14056
|
/** Get unread notification count for authenticated user */
|
|
14751
14057
|
myUnreadNotificationCount: Scalars['Int']['output'];
|
|
14752
|
-
/**
|
|
14753
|
-
* Get the current authenticated user's platform connection for a given channel.
|
|
14754
|
-
* Uses the actor's internal user ID from request context — no internalUserId
|
|
14755
|
-
* argument needed. Returns null if the user has not connected this channel.
|
|
14756
|
-
*/
|
|
14058
|
+
/** Get the current authenticated user's platform connection for a given channel. Uses the actor's internal user ID from request context — no internalUserId argument needed. Returns null if the user has not connected this channel. */
|
|
14757
14059
|
myUserPlatformConnection?: Maybe<UserPlatformConnection>;
|
|
14758
|
-
/**
|
|
14759
|
-
* Public: check waitlist status by email + product. Returns null if not on waitlist.
|
|
14760
|
-
* Rate-limited at API gateway level.
|
|
14761
|
-
*/
|
|
14060
|
+
/** Public: check waitlist status by email + product. Returns null if not on waitlist. Rate-limited at API gateway level. */
|
|
14762
14061
|
myWaitlistStatus?: Maybe<NewsletterWaitlist>;
|
|
14763
14062
|
/** List user's linked wallets */
|
|
14764
14063
|
myWallets: Array<WalletInfo>;
|
|
14765
14064
|
myWishlist: Array<UserWishlist>;
|
|
14766
|
-
/**
|
|
14767
|
-
* Get workspaces where the current user is a member
|
|
14768
|
-
* Self-service query - returns only the authenticated user's workspaces
|
|
14769
|
-
*/
|
|
14065
|
+
/** Get workspaces where the current user is a member (owned + added to). Membership-scoped: the resolver filters by actorId, so the returned set IS the access list. Any authenticated user may call this; no RBAC permission is checked. */
|
|
14770
14066
|
myWorkspaces: WorkspaceList;
|
|
14771
14067
|
newsletter?: Maybe<Newsletter>;
|
|
14772
14068
|
newsletterAutomation?: Maybe<NewsletterAutomation>;
|
|
@@ -14816,11 +14112,7 @@ export type Query = {
|
|
|
14816
14112
|
orderFulfillment?: Maybe<OrderFulfillment>;
|
|
14817
14113
|
/** Get a single organization by ID */
|
|
14818
14114
|
organization?: Maybe<Organization>;
|
|
14819
|
-
/**
|
|
14820
|
-
* Paginated keyset connection over the persistent OrganizationAuditLog table.
|
|
14821
|
-
* Returns audit events for a single organization, newest first. Supports
|
|
14822
|
-
* optional filtering by `action` (event name) and `actorId`.
|
|
14823
|
-
*/
|
|
14115
|
+
/** Paginated keyset connection over the persistent OrganizationAuditLog table. Returns audit events for a single organization, newest first. Supports optional filtering by `action` (event name) and `actorId`. */
|
|
14824
14116
|
organizationAuditLogsConnection: OrganizationAuditLogConnection;
|
|
14825
14117
|
/** Get an organization by slug within a tenant */
|
|
14826
14118
|
organizationBySlug?: Maybe<Organization>;
|
|
@@ -14829,7 +14121,10 @@ export type Query = {
|
|
|
14829
14121
|
/** Get members of an organization */
|
|
14830
14122
|
organizationMembers: OrganizationMemberList;
|
|
14831
14123
|
organizationScheduleQuotas: OrganizationScheduleQuotas;
|
|
14832
|
-
/**
|
|
14124
|
+
/**
|
|
14125
|
+
* List all organizations with optional filtering and pagination
|
|
14126
|
+
* @deprecated Dual-personality query. Use 'allOrganizations' for admin/global access or 'myOrganizations' for membership-scoped access. Scheduled for removal.
|
|
14127
|
+
*/
|
|
14833
14128
|
organizations: OrganizationList;
|
|
14834
14129
|
payoutRunHistory: Array<PayoutRunLog>;
|
|
14835
14130
|
/** Publishers awaiting verification review (admin queue). */
|
|
@@ -14867,52 +14162,25 @@ export type Query = {
|
|
|
14867
14162
|
productOrders: ItemOrdersList;
|
|
14868
14163
|
productReleases: Array<ProductRelease>;
|
|
14869
14164
|
productReviews: Array<ProductReview>;
|
|
14870
|
-
/**
|
|
14871
|
-
* Get shortcuts for a specific product (includes global shortcuts).
|
|
14872
|
-
* Bounded by limit/offset to avoid unbounded fetches.
|
|
14873
|
-
*/
|
|
14165
|
+
/** Get shortcuts for a specific product (includes global shortcuts). Bounded by limit/offset to avoid unbounded fetches. */
|
|
14874
14166
|
productShortcuts: Array<KeyboardShortcut>;
|
|
14875
14167
|
/** Get product-level tour statistics */
|
|
14876
14168
|
productTourStatistics: ProductTourStatistics;
|
|
14877
14169
|
products: Array<StoreProduct>;
|
|
14878
14170
|
pseudoLocaleStats: PseudoLocaleStats;
|
|
14879
|
-
/**
|
|
14880
|
-
* Get all active addons for a specific product (public, no authentication required).
|
|
14881
|
-
* Used by product website pricing pages.
|
|
14882
|
-
* Only returns active addons.
|
|
14883
|
-
*/
|
|
14171
|
+
/** Get all active addons for a specific product (public, no authentication required). Used by product website pricing pages. Only returns active addons. */
|
|
14884
14172
|
publicAddons: Array<Addon>;
|
|
14885
|
-
/**
|
|
14886
|
-
* Get a public content page by slug and optional product ID.
|
|
14887
|
-
* Only returns pages with visibility=PUBLIC and isPublished=true.
|
|
14888
|
-
*/
|
|
14173
|
+
/** Get a public content page by slug and optional product ID. Only returns pages with visibility=PUBLIC and isPublished=true. */
|
|
14889
14174
|
publicContentPage?: Maybe<ProductContentPage>;
|
|
14890
|
-
/**
|
|
14891
|
-
* List public content pages for a product.
|
|
14892
|
-
* Only returns pages with visibility=PUBLIC and isPublished=true.
|
|
14893
|
-
*/
|
|
14175
|
+
/** List public content pages for a product. Only returns pages with visibility=PUBLIC and isPublished=true. */
|
|
14894
14176
|
publicContentPages: ProductContentPageList;
|
|
14895
|
-
/**
|
|
14896
|
-
* Get all active plans for a specific product (public, no authentication required).
|
|
14897
|
-
* Used by product website pricing pages.
|
|
14898
|
-
* Only returns active plans with their features.
|
|
14899
|
-
*/
|
|
14177
|
+
/** Get all active plans for a specific product (public, no authentication required). Used by product website pricing pages. Only returns active plans with their features. */
|
|
14900
14178
|
publicPlans: Array<Plan>;
|
|
14901
|
-
/**
|
|
14902
|
-
* Get a platform product by slug (public, no auth required).
|
|
14903
|
-
* Returns only ACTIVE or WAITLIST products.
|
|
14904
|
-
* Does NOT expose sensitive fields like recaptchaSecretKey.
|
|
14905
|
-
*/
|
|
14179
|
+
/** Get a platform product by slug (public, no auth required). Returns only ACTIVE or WAITLIST products. Does NOT expose sensitive fields like recaptchaSecretKey. */
|
|
14906
14180
|
publicProduct?: Maybe<PlatformProduct>;
|
|
14907
|
-
/**
|
|
14908
|
-
* Get all platform products (public, no auth required).
|
|
14909
|
-
* Returns only ACTIVE or WAITLIST products (WAITLIST products are visible for waitlist signup).
|
|
14910
|
-
*/
|
|
14181
|
+
/** Get all platform products (public, no auth required). Returns only ACTIVE or WAITLIST products (WAITLIST products are visible for waitlist signup). */
|
|
14911
14182
|
publicProducts: PlatformProductList;
|
|
14912
|
-
/**
|
|
14913
|
-
* Resolve a public content page for a product with template variable replacement.
|
|
14914
|
-
* Only returns pages with visibility=PUBLIC and isPublished=true.
|
|
14915
|
-
*/
|
|
14183
|
+
/** Resolve a public content page for a product with template variable replacement. Only returns pages with visibility=PUBLIC and isPublished=true. */
|
|
14916
14184
|
publicResolvedContentPage?: Maybe<ProductContentPage>;
|
|
14917
14185
|
publicScheduleTemplates: ScheduleTemplateConnection;
|
|
14918
14186
|
publishedProducts: Array<StoreProduct>;
|
|
@@ -14927,11 +14195,7 @@ export type Query = {
|
|
|
14927
14195
|
recentArticles: Array<KnowledgeBaseArticle>;
|
|
14928
14196
|
releaseAuditEvents: Array<ProductReleaseAuditEvent>;
|
|
14929
14197
|
releaseTracks: Array<ReleaseTrack>;
|
|
14930
|
-
/**
|
|
14931
|
-
* Resolve the effective content page for a product.
|
|
14932
|
-
* Returns the product-specific page if it exists, otherwise the global default.
|
|
14933
|
-
* Template variables in content (e.g. {{productName}}) are replaced with product data.
|
|
14934
|
-
*/
|
|
14198
|
+
/** Resolve the effective content page for a product. Returns the product-specific page if it exists, otherwise the global default. Template variables in content (e.g. {{productName}}) are replaced with product data. */
|
|
14935
14199
|
resolvedContentPage?: Maybe<ProductContentPage>;
|
|
14936
14200
|
/** Get a specific registered resource by ID */
|
|
14937
14201
|
resource?: Maybe<Resource>;
|
|
@@ -14967,11 +14231,7 @@ export type Query = {
|
|
|
14967
14231
|
searchFAQs: Array<Faq>;
|
|
14968
14232
|
searchKnowledgeBase: Array<KnowledgeBaseArticle>;
|
|
14969
14233
|
searchProducts: Array<StoreProduct>;
|
|
14970
|
-
/**
|
|
14971
|
-
* Get search suggestions for autocomplete.
|
|
14972
|
-
* Returns suggestions from product names, tags, categories, and authors.
|
|
14973
|
-
* Uses trigram matching for fuzzy search.
|
|
14974
|
-
*/
|
|
14234
|
+
/** Get search suggestions for autocomplete. Returns suggestions from product names, tags, categories, and authors. Uses trigram matching for fuzzy search. */
|
|
14975
14235
|
searchSuggestions: Array<SearchSuggestion>;
|
|
14976
14236
|
searchTicketTemplates: Array<TicketTemplate>;
|
|
14977
14237
|
searchTickets: Array<SupportTicket>;
|
|
@@ -14983,26 +14243,7 @@ export type Query = {
|
|
|
14983
14243
|
/** Fetch a store by id or slug. */
|
|
14984
14244
|
store?: Maybe<Store>;
|
|
14985
14245
|
storeAppInstallation?: Maybe<StoreAppInstallation>;
|
|
14986
|
-
/**
|
|
14987
|
-
* Get detailed product information for the app details page.
|
|
14988
|
-
* Includes product data, reviews, related products, publisher info, and version history.
|
|
14989
|
-
* Automatically increments view count.
|
|
14990
|
-
*
|
|
14991
|
-
* Example usage:
|
|
14992
|
-
* ```graphql
|
|
14993
|
-
* query {
|
|
14994
|
-
* storeProductDetails(input: { id: "product-123" }) {
|
|
14995
|
-
* product { id name description manifest rating downloads }
|
|
14996
|
-
* reviews { id rating comment }
|
|
14997
|
-
* relatedProducts { id name icon }
|
|
14998
|
-
* publisher { id name isVerified }
|
|
14999
|
-
* versions { id version status }
|
|
15000
|
-
* userReview { id rating }
|
|
15001
|
-
* isPurchased
|
|
15002
|
-
* }
|
|
15003
|
-
* }
|
|
15004
|
-
* ```
|
|
15005
|
-
*/
|
|
14246
|
+
/** Get detailed product information for the app details page. Includes product data, reviews, related products, publisher info, and version history. Automatically increments view count. Example usage: ```graphql query { storeProductDetails(input: { id: "product-123" }) { product { id name description manifest rating downloads } reviews { id rating comment } relatedProducts { id name icon } publisher { id name isVerified } versions { id version status } userReview { id rating } isPurchased } } ``` */
|
|
15006
14247
|
storeProductDetails: StoreProductDetailsResult;
|
|
15007
14248
|
/** List all stores the caller can see. */
|
|
15008
14249
|
stores: Array<Store>;
|
|
@@ -15032,11 +14273,7 @@ export type Query = {
|
|
|
15032
14273
|
tenant?: Maybe<Tenant>;
|
|
15033
14274
|
/** Get a tenant by slug */
|
|
15034
14275
|
tenantBySlug?: Maybe<Tenant>;
|
|
15035
|
-
/**
|
|
15036
|
-
* Get tenant routing info by ID.
|
|
15037
|
-
* Lightweight query for gateway routing decisions.
|
|
15038
|
-
* Returns type (SHARED/DEDICATED), endpoint, and status.
|
|
15039
|
-
*/
|
|
14276
|
+
/** Get tenant routing info by ID. Lightweight query for gateway routing decisions. Returns type (SHARED/DEDICATED), endpoint, and status. */
|
|
15040
14277
|
tenantRoutingInfo?: Maybe<TenantRoutingInfo>;
|
|
15041
14278
|
/** List all tenants with optional filtering and pagination */
|
|
15042
14279
|
tenants: TenantList;
|
|
@@ -15076,12 +14313,7 @@ export type Query = {
|
|
|
15076
14313
|
tourUserProgressList: Array<TourUserProgress>;
|
|
15077
14314
|
/** Get tours with optional filtering and pagination */
|
|
15078
14315
|
tours: ToursResponse;
|
|
15079
|
-
/**
|
|
15080
|
-
* Get tours for a specific context (product/module/page).
|
|
15081
|
-
* Public endpoint consumed by frontend SDKs without authentication
|
|
15082
|
-
* (the resolver returns published, active, in-window tours and uses an
|
|
15083
|
-
* anonymous actor id). See spec global-specs/modules/tours/RBAC.md:34.
|
|
15084
|
-
*/
|
|
14316
|
+
/** Get tours for a specific context (product/module/page). Public endpoint consumed by frontend SDKs without authentication (the resolver returns published, active, in-window tours and uses an anonymous actor id). See spec global-specs/modules/tours/RBAC.md:34. */
|
|
15085
14317
|
toursForContext: Array<Tour>;
|
|
15086
14318
|
translation?: Maybe<Translation>;
|
|
15087
14319
|
translationAudit: TranslationAuditList;
|
|
@@ -15092,19 +14324,13 @@ export type Query = {
|
|
|
15092
14324
|
translationKeys: TranslationKeyList;
|
|
15093
14325
|
translationStats: Scalars['JSON']['output'];
|
|
15094
14326
|
translations: TranslationList;
|
|
15095
|
-
/**
|
|
15096
|
-
* Get popular/trending search terms.
|
|
15097
|
-
* Useful for showing suggestions when search input is empty.
|
|
15098
|
-
*/
|
|
14327
|
+
/** Get popular/trending search terms. Useful for showing suggestions when search input is empty. */
|
|
15099
14328
|
trendingSearches: Array<Scalars['String']['output']>;
|
|
15100
14329
|
/** Get a user by ID (admin only) */
|
|
15101
14330
|
user?: Maybe<User>;
|
|
15102
14331
|
/** Get total count of users (for analytics) */
|
|
15103
14332
|
userCount: Scalars['Int']['output'];
|
|
15104
|
-
/**
|
|
15105
|
-
* Get a user's feature flag preferences in a workspace.
|
|
15106
|
-
* Bounded by limit/offset to avoid unbounded fetches.
|
|
15107
|
-
*/
|
|
14333
|
+
/** Get a user's feature flag preferences in a workspace. Bounded by limit/offset to avoid unbounded fetches. */
|
|
15108
14334
|
userFeatureFlagPreferences: Array<UserFeatureFlagPreference>;
|
|
15109
14335
|
userLanguagePreference?: Maybe<UserLanguagePreference>;
|
|
15110
14336
|
/** Check if the current user has reviewed a specific product */
|
|
@@ -15117,10 +14343,7 @@ export type Query = {
|
|
|
15117
14343
|
users: UserConnection;
|
|
15118
14344
|
/** Validate a coupon code for a specific order */
|
|
15119
14345
|
validateCoupon: ValidateCouponResponse;
|
|
15120
|
-
/**
|
|
15121
|
-
* Validate a license key without modifying state. Used by vibecontrols
|
|
15122
|
-
* agents + wspace services to check license validity before plugin load.
|
|
15123
|
-
*/
|
|
14346
|
+
/** Validate a license key without modifying state. Used by vibecontrols agents + wspace services to check license validity before plugin load. */
|
|
15124
14347
|
validateLicense: LicenseValidationResult;
|
|
15125
14348
|
validatePromoCode: PromoCodeValidationResult;
|
|
15126
14349
|
/** Get visibility rules for a resource */
|
|
@@ -15138,27 +14361,20 @@ export type Query = {
|
|
|
15138
14361
|
workspaceAnalyticsSummary: WorkspaceTourAnalyticsSummary;
|
|
15139
14362
|
/** Get a workspace by slug within a tenant */
|
|
15140
14363
|
workspaceBySlug?: Maybe<Workspace>;
|
|
15141
|
-
/**
|
|
15142
|
-
* Get workspace overrides for a specific workspace.
|
|
15143
|
-
* Bounded by limit/offset to avoid unbounded fetches.
|
|
15144
|
-
*/
|
|
14364
|
+
/** Get workspace overrides for a specific workspace. Bounded by limit/offset to avoid unbounded fetches. */
|
|
15145
14365
|
workspaceFeatureFlagOverrides: Array<WorkspaceFeatureFlagOverride>;
|
|
15146
14366
|
/** Get members of a workspace */
|
|
15147
14367
|
workspaceMembers: WorkspaceMemberList;
|
|
15148
|
-
/**
|
|
15149
|
-
* Get public details of a workspace by ID
|
|
15150
|
-
* Returns public info if actor is authorized
|
|
15151
|
-
*/
|
|
14368
|
+
/** Get public details of a workspace by ID Returns public info if actor is authorized */
|
|
15152
14369
|
workspacePublicDetails?: Maybe<WorkspacePublicDetails>;
|
|
15153
|
-
/**
|
|
15154
|
-
* Get workspace routing info by ID
|
|
15155
|
-
* Returns workspace name, endpoint (publicUrl), region for routing purposes
|
|
15156
|
-
* Requires actor to be a member of the workspace
|
|
15157
|
-
*/
|
|
14370
|
+
/** Get workspace routing info by ID Returns workspace name, endpoint (publicUrl), region for routing purposes Requires actor to be a member of the workspace */
|
|
15158
14371
|
workspaceRouting?: Maybe<WorkspaceRouting>;
|
|
15159
14372
|
/** Get workspace store orders with pagination */
|
|
15160
14373
|
workspaceStoreOrders: StoreOrdersResult;
|
|
15161
|
-
/**
|
|
14374
|
+
/**
|
|
14375
|
+
* List all workspaces with optional filtering and pagination.
|
|
14376
|
+
* @deprecated Dual-personality query. Use 'allWorkspaces' for admin/global access or 'myWorkspaces' for membership-scoped access. Scheduled for removal.
|
|
14377
|
+
*/
|
|
15162
14378
|
workspaces: WorkspaceList;
|
|
15163
14379
|
};
|
|
15164
14380
|
/** Root query type */
|
|
@@ -15260,6 +14476,18 @@ export type QueryAgentProfilesArgs = {
|
|
|
15260
14476
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
15261
14477
|
};
|
|
15262
14478
|
/** Root query type */
|
|
14479
|
+
export type QueryAllOrganizationsArgs = {
|
|
14480
|
+
filter?: InputMaybe<OrganizationFilterInput>;
|
|
14481
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
14482
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
14483
|
+
};
|
|
14484
|
+
/** Root query type */
|
|
14485
|
+
export type QueryAllWorkspacesArgs = {
|
|
14486
|
+
filter?: InputMaybe<WorkspaceFilterInput>;
|
|
14487
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
14488
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
14489
|
+
};
|
|
14490
|
+
/** Root query type */
|
|
15263
14491
|
export type QueryAppArgs = {
|
|
15264
14492
|
id: Scalars['ID']['input'];
|
|
15265
14493
|
};
|
|
@@ -17593,12 +16821,7 @@ export type Quota = {
|
|
|
17593
16821
|
name?: Maybe<Scalars['String']['output']>;
|
|
17594
16822
|
/** Defines whether this quota template is pooled (shared across products) or product-specific. */
|
|
17595
16823
|
quotaType?: Maybe<QuotaType>;
|
|
17596
|
-
/**
|
|
17597
|
-
* When does usage reset for assignments of this quota?
|
|
17598
|
-
* NEVER = static limit (seats, agents, storage cap)
|
|
17599
|
-
* DAILY = resets each day at midnight UTC (API requests/day, AI sessions/day)
|
|
17600
|
-
* MONTHLY = resets at the start of each billing cycle
|
|
17601
|
-
*/
|
|
16824
|
+
/** When does usage reset for assignments of this quota? NEVER = static limit (seats, agents, storage cap) DAILY = resets each day at midnight UTC (API requests/day, AI sessions/day) MONTHLY = resets at the start of each billing cycle */
|
|
17602
16825
|
resetPeriod?: Maybe<QuotaResetPeriod>;
|
|
17603
16826
|
/** A Quota is reusable or not (e.g., bot,seats). */
|
|
17604
16827
|
reusable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -17623,11 +16846,7 @@ export type QuotaAssignment = {
|
|
|
17623
16846
|
endtime?: Maybe<Scalars['DateTime']['output']>;
|
|
17624
16847
|
/** The unique identifier for the QuotaAssignment, automatically generated as a UUID. */
|
|
17625
16848
|
id?: Maybe<Scalars['ID']['output']>;
|
|
17626
|
-
/**
|
|
17627
|
-
* When limits were last restored to their original value by the reset job.
|
|
17628
|
-
* Null means this assignment has never been reset in-place.
|
|
17629
|
-
* The daily QuotaResetWorkflow uses this to find assignments that need resetting.
|
|
17630
|
-
*/
|
|
16849
|
+
/** When limits were last restored to their original value by the reset job. Null means this assignment has never been reset in-place. The daily QuotaResetWorkflow uses this to find assignments that need resetting. */
|
|
17631
16850
|
lastResetAt?: Maybe<Scalars['DateTime']['output']>;
|
|
17632
16851
|
/** A JSON object defining the limits associated with the assigned quota (e.g., data caps, usage limits). */
|
|
17633
16852
|
limits?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -17635,10 +16854,7 @@ export type QuotaAssignment = {
|
|
|
17635
16854
|
name?: Maybe<Scalars['String']['output']>;
|
|
17636
16855
|
/** The type of quota - POOLED (billing account level) or PRODUCT_SPECIFIC (subscription level). */
|
|
17637
16856
|
quotaType?: Maybe<QuotaType>;
|
|
17638
|
-
/**
|
|
17639
|
-
* Copied from parent Quota.resetPeriod at creation. Tells the reset job how often
|
|
17640
|
-
* limits.value should be restored. DAILY = restore every midnight UTC.
|
|
17641
|
-
*/
|
|
16857
|
+
/** Copied from parent Quota.resetPeriod at creation. Tells the reset job how often limits.value should be restored. DAILY = restore every midnight UTC. */
|
|
17642
16858
|
resetPeriod?: Maybe<QuotaResetPeriod>;
|
|
17643
16859
|
/** A Quota is reusable or not (e.g., bot,seats). */
|
|
17644
16860
|
reusable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -17655,6 +16871,7 @@ export type QuotaAssignment = {
|
|
|
17655
16871
|
};
|
|
17656
16872
|
export type QuotaAssignmentSummary = {
|
|
17657
16873
|
__typename?: 'QuotaAssignmentSummary';
|
|
16874
|
+
context?: Maybe<Scalars['JSON']['output']>;
|
|
17658
16875
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
17659
16876
|
currentUsageSum?: Maybe<Scalars['Int']['output']>;
|
|
17660
16877
|
endtime?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -17667,6 +16884,7 @@ export type QuotaAssignmentSummary = {
|
|
|
17667
16884
|
/** Summary of a single quota assignment with usage details */
|
|
17668
16885
|
export type QuotaAssignmentUsageSummary = {
|
|
17669
16886
|
__typename?: 'QuotaAssignmentUsageSummary';
|
|
16887
|
+
context?: Maybe<Scalars['JSON']['output']>;
|
|
17670
16888
|
createdAt: Scalars['DateTime']['output'];
|
|
17671
16889
|
endtime: Scalars['DateTime']['output'];
|
|
17672
16890
|
id: Scalars['ID']['output'];
|
|
@@ -18203,18 +17421,10 @@ export type RegisterProductAssetInput = {
|
|
|
18203
17421
|
caption?: InputMaybe<Scalars['String']['input']>;
|
|
18204
17422
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
18205
17423
|
fileType: ProductAssetType;
|
|
18206
|
-
/**
|
|
18207
|
-
* File ID returned from wspace-files-svc's completeUpload mutation.
|
|
18208
|
-
* The browser uploads the file directly to files-svc, then calls this
|
|
18209
|
-
* mutation to link it to the product.
|
|
18210
|
-
*/
|
|
17424
|
+
/** File ID returned from wspace-files-svc's completeUpload mutation. The browser uploads the file directly to files-svc, then calls this mutation to link it to the product. */
|
|
18211
17425
|
filesSvcId: Scalars['ID']['input'];
|
|
18212
17426
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
18213
|
-
/**
|
|
18214
|
-
* If true (default), marks previous assets of the same fileType+locale as
|
|
18215
|
-
* no longer current. Set to false to keep multiple live copies (e.g. when
|
|
18216
|
-
* building a screenshot gallery).
|
|
18217
|
-
*/
|
|
17427
|
+
/** If true (default), marks previous assets of the same fileType+locale as no longer current. Set to false to keep multiple live copies (e.g. when building a screenshot gallery). */
|
|
18218
17428
|
makeCurrent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18219
17429
|
mimeType?: InputMaybe<Scalars['String']['input']>;
|
|
18220
17430
|
orderIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18348,11 +17558,7 @@ export type ResolveContextWidgetConversationInput = {
|
|
|
18348
17558
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
18349
17559
|
workspaceId: Scalars['ID']['input'];
|
|
18350
17560
|
};
|
|
18351
|
-
/**
|
|
18352
|
-
* Registered resource with custom permission configurations.
|
|
18353
|
-
* Resources are only registered when they have non-default permissions
|
|
18354
|
-
* (overrides, visibility rules, or scoped assignments).
|
|
18355
|
-
*/
|
|
17561
|
+
/** Registered resource with custom permission configurations. Resources are only registered when they have non-default permissions (overrides, visibility rules, or scoped assignments). */
|
|
18356
17562
|
export type Resource = {
|
|
18357
17563
|
__typename?: 'Resource';
|
|
18358
17564
|
children: Array<Resource>;
|
|
@@ -19238,32 +18444,17 @@ export type SpendCreditResponse = {
|
|
|
19238
18444
|
export type SpendCreditsInput = {
|
|
19239
18445
|
addOnIds?: InputMaybe<Array<InputMaybe<AddOnInputPayment>>>;
|
|
19240
18446
|
billingAccountId: Scalars['String']['input'];
|
|
19241
|
-
/**
|
|
19242
|
-
* For plan downgrades — the active higher-tier subscription ID.
|
|
19243
|
-
* Old subscription's auto-renewal is cancelled so it won't charge again;
|
|
19244
|
-
* it stays active until natural expiry and then the new plan continues.
|
|
19245
|
-
*/
|
|
18447
|
+
/** For plan downgrades — the active higher-tier subscription ID. Old subscription's auto-renewal is cancelled so it won't charge again; it stays active until natural expiry and then the new plan continues. */
|
|
19246
18448
|
downgradeFromSubscriptionId?: InputMaybe<Scalars['String']['input']>;
|
|
19247
18449
|
isAnnual?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19248
18450
|
/** Order ID to purchase using credits (for store orders, etc.) */
|
|
19249
18451
|
orderId?: InputMaybe<Scalars['String']['input']>;
|
|
19250
18452
|
planId?: InputMaybe<Scalars['String']['input']>;
|
|
19251
|
-
/**
|
|
19252
|
-
* Number of seats for PER_SEAT plans. Stored on the created subscription.
|
|
19253
|
-
* Credits required = pricePerSeat × seatCount × creditsPerUSD (instead of plan.price).
|
|
19254
|
-
* Ignored for FLAT_RATE plans.
|
|
19255
|
-
*/
|
|
18453
|
+
/** Number of seats for PER_SEAT plans. Stored on the created subscription. Credits required = pricePerSeat × seatCount × creditsPerUSD (instead of plan.price). Ignored for FLAT_RATE plans. */
|
|
19256
18454
|
seatCount?: InputMaybe<Scalars['Int']['input']>;
|
|
19257
|
-
/**
|
|
19258
|
-
* For addon purchases - the subscription ID to attach addons to.
|
|
19259
|
-
* Required if billing account has multiple active subscriptions.
|
|
19260
|
-
* If only one active subscription exists, it will be auto-selected.
|
|
19261
|
-
*/
|
|
18455
|
+
/** For addon purchases - the subscription ID to attach addons to. Required if billing account has multiple active subscriptions. If only one active subscription exists, it will be auto-selected. */
|
|
19262
18456
|
subscriptionId?: InputMaybe<Scalars['String']['input']>;
|
|
19263
|
-
/**
|
|
19264
|
-
* For plan upgrades - the subscription ID to upgrade from.
|
|
19265
|
-
* Old quotas will be moved to the new subscription.
|
|
19266
|
-
*/
|
|
18457
|
+
/** For plan upgrades - the subscription ID to upgrade from. Old quotas will be moved to the new subscription. */
|
|
19267
18458
|
upgradeFromSubscriptionId?: InputMaybe<Scalars['String']['input']>;
|
|
19268
18459
|
};
|
|
19269
18460
|
export type Store = {
|
|
@@ -19327,10 +18518,7 @@ export type StoreFacets = {
|
|
|
19327
18518
|
/** Available types with counts */
|
|
19328
18519
|
types: Array<FacetCount>;
|
|
19329
18520
|
};
|
|
19330
|
-
/**
|
|
19331
|
-
* Unified filter input for browsing/searching store products.
|
|
19332
|
-
* All filters combine with AND logic - search is treated as a filter.
|
|
19333
|
-
*/
|
|
18521
|
+
/** Unified filter input for browsing/searching store products. All filters combine with AND logic - search is treated as a filter. */
|
|
19334
18522
|
export type StoreFilterInput = {
|
|
19335
18523
|
/** Filter by author name (partial match) */
|
|
19336
18524
|
authorName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19340,10 +18528,7 @@ export type StoreFilterInput = {
|
|
|
19340
18528
|
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19341
18529
|
/** Filter by exact category match (e.g., "Customer Support", "Notification") */
|
|
19342
18530
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
19343
|
-
/**
|
|
19344
|
-
* Filter by compatible product (e.g., "workspaces", "fluidgrids", "bigconsole")
|
|
19345
|
-
* Products must be compatible with this product.
|
|
19346
|
-
*/
|
|
18531
|
+
/** Filter by compatible product (e.g., "workspaces", "fluidgrids", "bigconsole") Products must be compatible with this product. */
|
|
19347
18532
|
compatibleWith?: InputMaybe<Scalars['String']['input']>;
|
|
19348
18533
|
/** Filter only featured products */
|
|
19349
18534
|
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -19373,24 +18558,11 @@ export type StoreFilterInput = {
|
|
|
19373
18558
|
publisherId?: InputMaybe<Scalars['String']['input']>;
|
|
19374
18559
|
/** Filter products that require shipping */
|
|
19375
18560
|
requiresShipping?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19376
|
-
/**
|
|
19377
|
-
* Full-text search query. Searches across:
|
|
19378
|
-
* - name (highest priority)
|
|
19379
|
-
* - description
|
|
19380
|
-
* - tags
|
|
19381
|
-
* - authorName, category (lowest priority)
|
|
19382
|
-
* Uses PostgreSQL tsvector with weighted ranking.
|
|
19383
|
-
*/
|
|
18561
|
+
/** Full-text search query. Searches across: - name (highest priority) - description - tags - authorName, category (lowest priority) Uses PostgreSQL tsvector with weighted ranking. */
|
|
19384
18562
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
19385
18563
|
/** Filter by product status (defaults to PUBLISHED for consumer queries) */
|
|
19386
18564
|
status?: InputMaybe<ProductStatus>;
|
|
19387
|
-
/**
|
|
19388
|
-
* Filter by type-specific subtype.
|
|
19389
|
-
* Examples:
|
|
19390
|
-
* - For AGENT: "task_automation", "conversational", "research"
|
|
19391
|
-
* - For NODE: "action", "trigger", "integration", "ai"
|
|
19392
|
-
* - For WIDGET: "chart", "metric", "table", "map"
|
|
19393
|
-
*/
|
|
18565
|
+
/** Filter by type-specific subtype. Examples: - For AGENT: "task_automation", "conversational", "research" - For NODE: "action", "trigger", "integration", "ai" - For WIDGET: "chart", "metric", "table", "map" */
|
|
19394
18566
|
subType?: InputMaybe<Scalars['String']['input']>;
|
|
19395
18567
|
/** Filter by multiple subtypes (OR within this filter) */
|
|
19396
18568
|
subTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -19415,12 +18587,7 @@ export declare enum StoreInstallationStatus {
|
|
|
19415
18587
|
Pending = "PENDING",
|
|
19416
18588
|
Uninstalled = "UNINSTALLED"
|
|
19417
18589
|
}
|
|
19418
|
-
/**
|
|
19419
|
-
* StoreItem entity reference.
|
|
19420
|
-
* The actual StoreItem is defined in the Store service.
|
|
19421
|
-
* In Federation 2 setup, this will be marked with @key directive.
|
|
19422
|
-
* For now, this is a reference type that returns the itemId for the Gateway to resolve.
|
|
19423
|
-
*/
|
|
18590
|
+
/** StoreItem entity reference. The actual StoreItem is defined in the Store service. In Federation 2 setup, this will be marked with @key directive. For now, this is a reference type that returns the itemId for the Gateway to resolve. */
|
|
19424
18591
|
export type StoreItem = {
|
|
19425
18592
|
__typename?: 'StoreItem';
|
|
19426
18593
|
/** The unique identifier for the store item */
|
|
@@ -19447,11 +18614,7 @@ export type StoreLineItemInput = {
|
|
|
19447
18614
|
/** Product version at time of purchase */
|
|
19448
18615
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
19449
18616
|
};
|
|
19450
|
-
/**
|
|
19451
|
-
* External entity stub for StoreOrder from store-svc.
|
|
19452
|
-
* Federation gateway will resolve full StoreOrder data from store-svc.
|
|
19453
|
-
* Used by: BillingAccount.storeOrders (if extended), Transaction.storeOrder
|
|
19454
|
-
*/
|
|
18617
|
+
/** External entity stub for StoreOrder from store-svc. Federation gateway will resolve full StoreOrder data from store-svc. Used by: BillingAccount.storeOrders (if extended), Transaction.storeOrder */
|
|
19455
18618
|
export type StoreOrder = {
|
|
19456
18619
|
__typename?: 'StoreOrder';
|
|
19457
18620
|
appliedEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19462,11 +18625,7 @@ export type StoreOrder = {
|
|
|
19462
18625
|
/** Context JSON (must include workspace_id) */
|
|
19463
18626
|
context: Scalars['JSON']['output'];
|
|
19464
18627
|
createdAt: Scalars['DateTime']['output'];
|
|
19465
|
-
/**
|
|
19466
|
-
* Currency captured when the store order was created.
|
|
19467
|
-
* Billing may still convert at payment time, but this is the canonical
|
|
19468
|
-
* order currency for checkout display and reconciliation.
|
|
19469
|
-
*/
|
|
18628
|
+
/** Currency captured when the store order was created. Billing may still convert at payment time, but this is the canonical order currency for checkout display and reconciliation. */
|
|
19470
18629
|
currency: Scalars['String']['output'];
|
|
19471
18630
|
/** Fulfillment tracking for physical orders */
|
|
19472
18631
|
fulfillment?: Maybe<OrderFulfillment>;
|
|
@@ -19479,10 +18638,7 @@ export type StoreOrder = {
|
|
|
19479
18638
|
/** When payment was completed (null if still pending) */
|
|
19480
18639
|
purchasedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19481
18640
|
status: OrderStatus;
|
|
19482
|
-
/**
|
|
19483
|
-
* Total product cost (sum of line items)
|
|
19484
|
-
* Note: Currency, tax, and final billing amount handled by billing service
|
|
19485
|
-
*/
|
|
18641
|
+
/** Total product cost (sum of line items) Note: Currency, tax, and final billing amount handled by billing service */
|
|
19486
18642
|
total: Scalars['Float']['output'];
|
|
19487
18643
|
transaction?: Maybe<Transaction>;
|
|
19488
18644
|
/** Transaction ID from billing service (set after payment) */
|
|
@@ -19506,11 +18662,7 @@ export type StorePaginationInput = {
|
|
|
19506
18662
|
/** Number of items to skip (for offset pagination) */
|
|
19507
18663
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
19508
18664
|
};
|
|
19509
|
-
/**
|
|
19510
|
-
* External entity stub for StoreProduct from store-svc.
|
|
19511
|
-
* Federation gateway will resolve full StoreProduct data from store-svc.
|
|
19512
|
-
* Used by: SubscriptionEntitlement.storeProduct
|
|
19513
|
-
*/
|
|
18665
|
+
/** External entity stub for StoreProduct from store-svc. Federation gateway will resolve full StoreProduct data from store-svc. Used by: SubscriptionEntitlement.storeProduct */
|
|
19514
18666
|
export type StoreProduct = {
|
|
19515
18667
|
__typename?: 'StoreProduct';
|
|
19516
18668
|
/** Allow orders when out of stock (physical products) */
|
|
@@ -19520,10 +18672,7 @@ export type StoreProduct = {
|
|
|
19520
18672
|
/** Brand name (physical products) */
|
|
19521
18673
|
brand?: Maybe<Scalars['String']['output']>;
|
|
19522
18674
|
category?: Maybe<Scalars['String']['output']>;
|
|
19523
|
-
/**
|
|
19524
|
-
* Compatible products (from manifest.compatibility.products)
|
|
19525
|
-
* Examples: ["fluidgrids", "workspaces", "bigconsole", "botlit"]
|
|
19526
|
-
*/
|
|
18675
|
+
/** Compatible products (from manifest.compatibility.products) Examples: ["fluidgrids", "workspaces", "bigconsole", "botlit"] */
|
|
19527
18676
|
compatibleProducts: Array<Scalars['String']['output']>;
|
|
19528
18677
|
content?: Maybe<Scalars['JSON']['output']>;
|
|
19529
18678
|
context?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -19542,15 +18691,9 @@ export type StoreProduct = {
|
|
|
19542
18691
|
height?: Maybe<Scalars['Float']['output']>;
|
|
19543
18692
|
icon?: Maybe<Scalars['String']['output']>;
|
|
19544
18693
|
id: Scalars['ID']['output'];
|
|
19545
|
-
/**
|
|
19546
|
-
* Integration dependencies (from manifest.dependencies.integrations)
|
|
19547
|
-
* Examples: ["slack", "sendgrid", "zendesk", "salesforce"]
|
|
19548
|
-
*/
|
|
18694
|
+
/** Integration dependencies (from manifest.dependencies.integrations) Examples: ["slack", "sendgrid", "zendesk", "salesforce"] */
|
|
19549
18695
|
integrationDeps: Array<Scalars['String']['output']>;
|
|
19550
|
-
/**
|
|
19551
|
-
* Whether this product is already purchased by the current billing account.
|
|
19552
|
-
* Computed field based on billingAccountId context.
|
|
19553
|
-
*/
|
|
18696
|
+
/** Whether this product is already purchased by the current billing account. Computed field based on billingAccountId context. */
|
|
19554
18697
|
isPurchased?: Maybe<Scalars['Boolean']['output']>;
|
|
19555
18698
|
/** Product length (physical products) */
|
|
19556
18699
|
length?: Maybe<Scalars['Float']['output']>;
|
|
@@ -19581,10 +18724,7 @@ export type StoreProduct = {
|
|
|
19581
18724
|
rating?: Maybe<Scalars['Float']['output']>;
|
|
19582
18725
|
rejectedReason?: Maybe<Scalars['String']['output']>;
|
|
19583
18726
|
repositoryUrl?: Maybe<Scalars['String']['output']>;
|
|
19584
|
-
/**
|
|
19585
|
-
* Required permissions (from manifest.permissions)
|
|
19586
|
-
* Examples: ["network.outbound", "database.write", "notification.email"]
|
|
19587
|
-
*/
|
|
18727
|
+
/** Required permissions (from manifest.permissions) Examples: ["network.outbound", "database.write", "notification.email"] */
|
|
19588
18728
|
requiredPermissions: Array<Scalars['String']['output']>;
|
|
19589
18729
|
/** Whether this product requires shipping (physical products) */
|
|
19590
18730
|
requiresShipping?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -19603,13 +18743,7 @@ export type StoreProduct = {
|
|
|
19603
18743
|
/** Current stock quantity (physical products) */
|
|
19604
18744
|
stockQuantity?: Maybe<Scalars['Int']['output']>;
|
|
19605
18745
|
storeId?: Maybe<Scalars['ID']['output']>;
|
|
19606
|
-
/**
|
|
19607
|
-
* Type-specific subtype from manifest.json.
|
|
19608
|
-
* Examples:
|
|
19609
|
-
* - Agent: task_automation, conversational, research, code_assistant
|
|
19610
|
-
* - Node: action, transform, trigger, logic, integration, data, notification, ai
|
|
19611
|
-
* - Widget: chart, metric, table, map, form, text, custom
|
|
19612
|
-
*/
|
|
18746
|
+
/** Type-specific subtype from manifest.json. Examples: - Agent: task_automation, conversational, research, code_assistant - Node: action, transform, trigger, logic, integration, data, notification, ai - Widget: chart, metric, table, map, form, text, custom */
|
|
19613
18747
|
subType?: Maybe<Scalars['String']['output']>;
|
|
19614
18748
|
submittedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19615
18749
|
submittedBy?: Maybe<Scalars['String']['output']>;
|
|
@@ -19735,10 +18869,7 @@ export type SubmissionStatusUpdatedEvent = {
|
|
|
19735
18869
|
submissionId: Scalars['ID']['output'];
|
|
19736
18870
|
updatedAt: Scalars['String']['output'];
|
|
19737
18871
|
};
|
|
19738
|
-
/**
|
|
19739
|
-
* Input for submitting a contact inquiry from a public website.
|
|
19740
|
-
* reCAPTCHA token is required only when CAPTCHA_ENABLED=true.
|
|
19741
|
-
*/
|
|
18872
|
+
/** Input for submitting a contact inquiry from a public website. reCAPTCHA token is required only when CAPTCHA_ENABLED=true. */
|
|
19742
18873
|
export type SubmitContactInquiryInput = {
|
|
19743
18874
|
/** Company name (optional) */
|
|
19744
18875
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19883,55 +19014,31 @@ export type Subscription = {
|
|
|
19883
19014
|
_emptyBilling?: Maybe<Scalars['String']['output']>;
|
|
19884
19015
|
_emptyDevportal?: Maybe<Scalars['String']['output']>;
|
|
19885
19016
|
_emptyI18n?: Maybe<Scalars['String']['output']>;
|
|
19886
|
-
/**
|
|
19887
|
-
* Placeholder field to allow empty Subscription type extension.
|
|
19888
|
-
* Each module has a unique placeholder to avoid naming conflicts across subgraphs.
|
|
19889
|
-
*/
|
|
19017
|
+
/** Placeholder field to allow empty Subscription type extension. Each module has a unique placeholder to avoid naming conflicts across subgraphs. */
|
|
19890
19018
|
_emptyNewsletter?: Maybe<Scalars['String']['output']>;
|
|
19891
19019
|
_emptyNotification?: Maybe<Scalars['String']['output']>;
|
|
19892
|
-
/**
|
|
19893
|
-
* Placeholder field to allow empty Subscription type extension.
|
|
19894
|
-
* Each module has a unique placeholder to avoid naming conflicts across subgraphs.
|
|
19895
|
-
*/
|
|
19020
|
+
/** Placeholder field to allow empty Subscription type extension. Each module has a unique placeholder to avoid naming conflicts across subgraphs. */
|
|
19896
19021
|
_emptySupport?: Maybe<Scalars['String']['output']>;
|
|
19897
19022
|
_emptyTours?: Maybe<Scalars['String']['output']>;
|
|
19898
|
-
/**
|
|
19899
|
-
* Placeholder subscription (extended by modules)
|
|
19900
|
-
* @rbac(public: true, scopeType: "global")
|
|
19901
|
-
*/
|
|
19023
|
+
/** Placeholder subscription (extended by modules) @rbac(public: true, scopeType: "global") */
|
|
19902
19024
|
_placeholder?: Maybe<Scalars['String']['output']>;
|
|
19903
19025
|
agentStatusChanged: AgentProfile;
|
|
19904
|
-
/**
|
|
19905
|
-
* Fires whenever the AppReview lifecycle changes for a given application
|
|
19906
|
-
* (submission -> moderation -> publish/reject).
|
|
19907
|
-
*/
|
|
19026
|
+
/** Fires whenever the AppReview lifecycle changes for a given application (submission -> moderation -> publish/reject). */
|
|
19908
19027
|
appReviewStatusChanged: AppReview;
|
|
19909
|
-
/**
|
|
19910
|
-
* Subscribe to channel health changes.
|
|
19911
|
-
* Emits when a channel's connectionHealth status changes (HEALTHY → DEGRADED, etc.)
|
|
19912
|
-
*
|
|
19913
|
-
* Use cases:
|
|
19914
|
-
* - Real-time dashboard updates showing channel health
|
|
19915
|
-
* - Alerting systems monitoring channel availability
|
|
19916
|
-
* - Auto-failover logic reacting to health degradation
|
|
19917
|
-
*/
|
|
19028
|
+
/** Subscribe to channel health changes. Emits when a channel's connectionHealth status changes (HEALTHY → DEGRADED, etc.) Use cases: - Real-time dashboard updates showing channel health - Alerting systems monitoring channel availability - Auto-failover logic reacting to health degradation */
|
|
19918
19029
|
channelHealthChanged: ChannelHealthUpdate;
|
|
19919
|
-
/**
|
|
19920
|
-
* Subscribe to connection-status changes for a channel.
|
|
19921
|
-
* Emits when isActive or isHealthy flips on the channel's connection.
|
|
19922
|
-
*/
|
|
19030
|
+
/** Subscribe to connection-status changes for an organization. Emits when isActive or isHealthy flips on any channel connection in the org. Pass either organizationId (to watch all connections in the org) or channelId (to watch a specific channel's connection — deprecated arg, kept for backward compat). */
|
|
19923
19031
|
connectionStatusChanged: ConnectionStatusChangedEvent;
|
|
19924
19032
|
/** Emits the deleted content-page id. */
|
|
19925
19033
|
contentPageDeleted: Scalars['ID']['output'];
|
|
19926
19034
|
/** Notifies clients when a content page is created or updated. */
|
|
19927
19035
|
contentPageUpdated: ProductContentPage;
|
|
19928
19036
|
coverageChanged: CoverageChangeEvent;
|
|
19037
|
+
/** Subscribe to delivery status updates for a channel. Emits when a message delivery attempt changes status (SENDING, SENT, FAILED, etc.) */
|
|
19038
|
+
deliveryUpdated: DeliveryUpdatedEvent;
|
|
19929
19039
|
dependencyTriggered: DependencyTriggeredUpdate;
|
|
19930
19040
|
executionUpdated: ExecutionUpdate;
|
|
19931
|
-
/**
|
|
19932
|
-
* Notifies clients when a feature flag definition is created or updated.
|
|
19933
|
-
* Subscribers can pass `flagKey` to receive only matching events.
|
|
19934
|
-
*/
|
|
19041
|
+
/** Notifies clients when a feature flag definition is created or updated. Subscribers can pass `flagKey` to receive only matching events. */
|
|
19935
19042
|
featureFlagChanged: FeatureFlag;
|
|
19936
19043
|
/** Emits the deleted feature-flag id so clients can drop it from their cache. */
|
|
19937
19044
|
featureFlagDeleted: Scalars['ID']['output'];
|
|
@@ -19939,54 +19046,33 @@ export type Subscription = {
|
|
|
19939
19046
|
/** Subscribe to app installation status changes for a workspace. */
|
|
19940
19047
|
installationStatusUpdated?: Maybe<InstallationStatusUpdatedEvent>;
|
|
19941
19048
|
jobStatusUpdated: JobStatusUpdate;
|
|
19942
|
-
/**
|
|
19943
|
-
* Notifies clients when a keyboard shortcut is created, updated, or toggled.
|
|
19944
|
-
* Subscribers can pass `productId` to scope the stream to a single product.
|
|
19945
|
-
*/
|
|
19049
|
+
/** Notifies clients when a keyboard shortcut is created, updated, or toggled. Subscribers can pass `productId` to scope the stream to a single product. */
|
|
19946
19050
|
keyboardShortcutChanged: KeyboardShortcut;
|
|
19947
19051
|
/** Emits the deleted shortcut id so clients can drop it from their cache. */
|
|
19948
19052
|
keyboardShortcutDeleted: Scalars['ID']['output'];
|
|
19949
19053
|
/** Subscribe to license entitlement status changes. */
|
|
19950
19054
|
licenseStatusUpdated?: Maybe<LicenseStatusUpdatedEvent>;
|
|
19951
19055
|
metricsUpdated: SchedulerMetricsUpdate;
|
|
19952
|
-
/**
|
|
19953
|
-
* Live stream of the authenticated caller's unread notification count.
|
|
19954
|
-
* Mirrors the result of `myUnreadNotificationCount` and replaces 30s
|
|
19955
|
-
* polling on the FE NotificationCenter — backend publishes on every
|
|
19956
|
-
* notification create / read / archive / delete.
|
|
19957
|
-
*/
|
|
19056
|
+
/** Live stream of the authenticated caller's unread notification count. Mirrors the result of `myUnreadNotificationCount` and replaces 30s polling on the FE NotificationCenter — backend publishes on every notification create / read / archive / delete. */
|
|
19958
19057
|
myUnreadNotificationCountStream: Scalars['Int']['output'];
|
|
19959
19058
|
newTicketInQueue: SupportTicket;
|
|
19960
19059
|
/** Subscribe to new notifications for the authenticated user */
|
|
19961
19060
|
notificationReceived?: Maybe<Notification>;
|
|
19962
|
-
/**
|
|
19963
|
-
* Subscribe to delivery status updates for a notification.
|
|
19964
|
-
* Useful for real-time tracking of delivery progress.
|
|
19965
|
-
*/
|
|
19061
|
+
/** Subscribe to delivery status updates for a notification. Useful for real-time tracking of delivery progress. */
|
|
19966
19062
|
onDeliveryStatusUpdate: ChannelDeliveryStatusUpdate;
|
|
19967
19063
|
/** Subscribe to order status changes for a specific order or workspace. */
|
|
19968
19064
|
orderStatusUpdated?: Maybe<OrderStatusUpdatedEvent>;
|
|
19969
19065
|
/** Emits the deleted product id so clients can drop it from their cache. */
|
|
19970
19066
|
productDeleted: Scalars['ID']['output'];
|
|
19971
|
-
/**
|
|
19972
|
-
* Notifies clients when a platform product is created or updated.
|
|
19973
|
-
* Fires on create + update mutations; deletes are reported via `productDeleted`.
|
|
19974
|
-
*/
|
|
19067
|
+
/** Notifies clients when a platform product is created or updated. Fires on create + update mutations; deletes are reported via `productDeleted`. */
|
|
19975
19068
|
productUpdated: PlatformProduct;
|
|
19976
|
-
/**
|
|
19977
|
-
* Fires when the per-organization revenue rollup recomputes
|
|
19978
|
-
* (currently every cron tick or after a settled sale).
|
|
19979
|
-
*/
|
|
19069
|
+
/** Fires when the per-organization revenue rollup recomputes (currently every cron tick or after a settled sale). */
|
|
19980
19070
|
revenueUpdated: DeveloperOrgRevenueAnalytics;
|
|
19981
19071
|
/** Subscribe to publisher submission status changes. */
|
|
19982
19072
|
submissionStatusUpdated?: Maybe<SubmissionStatusUpdatedEvent>;
|
|
19983
19073
|
/** Stream of soft-deleted tenant ids. */
|
|
19984
19074
|
tenantDeleted: Scalars['ID']['output'];
|
|
19985
|
-
/**
|
|
19986
|
-
* Stream of tenant lifecycle changes (create/update/configure/suspend/activate/
|
|
19987
|
-
* provision/endpoint-set). Backed by an in-memory pubsub fed by the matching
|
|
19988
|
-
* mutations. Lets the admin tenant list refresh in real time without polling.
|
|
19989
|
-
*/
|
|
19075
|
+
/** Stream of tenant lifecycle changes (create/update/configure/suspend/activate/ provision/endpoint-set). Backed by an in-memory pubsub fed by the matching mutations. Lets the admin tenant list refresh in real time without polling. */
|
|
19990
19076
|
tenantUpdated: Tenant;
|
|
19991
19077
|
ticketMessageAdded: SupportMessage;
|
|
19992
19078
|
ticketUpdated: SupportTicket;
|
|
@@ -19994,16 +19080,9 @@ export type Subscription = {
|
|
|
19994
19080
|
translationUpdated: TranslationUpdateEvent;
|
|
19995
19081
|
/** Subscribe to unread count changes for the authenticated user */
|
|
19996
19082
|
unreadCountUpdated?: Maybe<Scalars['Int']['output']>;
|
|
19997
|
-
/**
|
|
19998
|
-
* Fires on every WebhookDelivery state transition for the given webhook
|
|
19999
|
-
* (PENDING -> DELIVERING -> DELIVERED|FAILED|RETRYING).
|
|
20000
|
-
*/
|
|
19083
|
+
/** Fires on every WebhookDelivery state transition for the given webhook (PENDING -> DELIVERING -> DELIVERED|FAILED|RETRYING). */
|
|
20001
19084
|
webhookDeliveryUpdated: WebhookDelivery;
|
|
20002
|
-
/**
|
|
20003
|
-
* Subscribe to webhook events received by a channel.
|
|
20004
|
-
* Emits when a new WebhookEvent row is persisted (before downstream processing).
|
|
20005
|
-
* Resolver-level filter scopes to the requested channelId.
|
|
20006
|
-
*/
|
|
19085
|
+
/** Subscribe to webhook events received by a channel. Emits when a new WebhookEvent row is persisted (before downstream processing). Resolver-level filter scopes to the requested channelId. */
|
|
20007
19086
|
webhookReceived: WebhookReceivedEvent;
|
|
20008
19087
|
};
|
|
20009
19088
|
/** Root subscription type */
|
|
@@ -20016,7 +19095,8 @@ export type SubscriptionChannelHealthChangedArgs = {
|
|
|
20016
19095
|
};
|
|
20017
19096
|
/** Root subscription type */
|
|
20018
19097
|
export type SubscriptionConnectionStatusChangedArgs = {
|
|
20019
|
-
channelId
|
|
19098
|
+
channelId?: InputMaybe<Scalars['ID']['input']>;
|
|
19099
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
20020
19100
|
};
|
|
20021
19101
|
/** Root subscription type */
|
|
20022
19102
|
export type SubscriptionContentPageUpdatedArgs = {
|
|
@@ -20027,6 +19107,10 @@ export type SubscriptionCoverageChangedArgs = {
|
|
|
20027
19107
|
productCode: Scalars['String']['input'];
|
|
20028
19108
|
};
|
|
20029
19109
|
/** Root subscription type */
|
|
19110
|
+
export type SubscriptionDeliveryUpdatedArgs = {
|
|
19111
|
+
channelId: Scalars['ID']['input'];
|
|
19112
|
+
};
|
|
19113
|
+
/** Root subscription type */
|
|
20030
19114
|
export type SubscriptionDependencyTriggeredArgs = {
|
|
20031
19115
|
scheduleId?: InputMaybe<Scalars['ID']['input']>;
|
|
20032
19116
|
};
|
|
@@ -20128,10 +19212,7 @@ export type SubscriptionWebhookDeliveryUpdatedArgs = {
|
|
|
20128
19212
|
export type SubscriptionWebhookReceivedArgs = {
|
|
20129
19213
|
channelId: Scalars['ID']['input'];
|
|
20130
19214
|
};
|
|
20131
|
-
/**
|
|
20132
|
-
* SubscriptionEntitlement defines what store items a plan grants access to.
|
|
20133
|
-
* This allows plans to provide discounts or free access to store items.
|
|
20134
|
-
*/
|
|
19215
|
+
/** SubscriptionEntitlement defines what store items a plan grants access to. This allows plans to provide discounts or free access to store items. */
|
|
20135
19216
|
export type SubscriptionEntitlement = {
|
|
20136
19217
|
__typename?: 'SubscriptionEntitlement';
|
|
20137
19218
|
/** The type of access granted (FREE_ACCESS or DISCOUNT) */
|
|
@@ -20146,10 +19227,7 @@ export type SubscriptionEntitlement = {
|
|
|
20146
19227
|
id: Scalars['ID']['output'];
|
|
20147
19228
|
/** Reference to the store item entity (resolved via Federation) */
|
|
20148
19229
|
item?: Maybe<StoreItem>;
|
|
20149
|
-
/**
|
|
20150
|
-
* Reference to the store item (external entity from Store service)
|
|
20151
|
-
* Resolved via Federation 2 Gateway
|
|
20152
|
-
*/
|
|
19230
|
+
/** Reference to the store item (external entity from Store service) Resolved via Federation 2 Gateway */
|
|
20153
19231
|
itemId: Scalars['String']['output'];
|
|
20154
19232
|
/** The plan that grants this entitlement */
|
|
20155
19233
|
plan: Plan;
|
|
@@ -20238,7 +19316,10 @@ export type SupportAttachmentPresignedPart = {
|
|
|
20238
19316
|
};
|
|
20239
19317
|
export type SupportAttachmentUploadSession = {
|
|
20240
19318
|
__typename?: 'SupportAttachmentUploadSession';
|
|
19319
|
+
attachmentId: Scalars['ID']['output'];
|
|
19320
|
+
/** @deprecated Support attachments no longer use files-module folders. */
|
|
20241
19321
|
folderId: Scalars['ID']['output'];
|
|
19322
|
+
/** @deprecated Support attachments are stored directly in support-owned S3 prefixes. */
|
|
20242
19323
|
folderPath: Scalars['String']['output'];
|
|
20243
19324
|
partSize: Scalars['Int']['output'];
|
|
20244
19325
|
presignedUrls: Array<SupportAttachmentPresignedPart>;
|
|
@@ -20247,25 +19328,14 @@ export type SupportAttachmentUploadSession = {
|
|
|
20247
19328
|
uploadType: Scalars['String']['output'];
|
|
20248
19329
|
uploadUrl?: Maybe<Scalars['String']['output']>;
|
|
20249
19330
|
};
|
|
20250
|
-
/**
|
|
20251
|
-
* Privacy-preserving author projection for SupportMessage. End-users only ever see
|
|
20252
|
-
* the anonymized alias + generated avatar for agent authors; super_admin / service
|
|
20253
|
-
* actors (admin app) see the real identity.
|
|
20254
|
-
*/
|
|
19331
|
+
/** Privacy-preserving author projection for SupportMessage. End-users only ever see the anonymized alias + generated avatar for agent authors; super_admin / service actors (admin app) see the real identity. */
|
|
20255
19332
|
export type SupportAuthor = {
|
|
20256
19333
|
__typename?: 'SupportAuthor';
|
|
20257
19334
|
avatar: Scalars['String']['output'];
|
|
20258
19335
|
displayName: Scalars['String']['output'];
|
|
20259
|
-
/**
|
|
20260
|
-
* Stable opaque identifier safe for both viewer scopes. For agent authors viewed
|
|
20261
|
-
* by an end-user this is the AgentProfile id (NOT the underlying userId); for
|
|
20262
|
-
* admin viewers and customer authors it is the underlying actor id.
|
|
20263
|
-
*/
|
|
19336
|
+
/** Stable opaque identifier safe for both viewer scopes. For agent authors viewed by an end-user this is the AgentProfile id (NOT the underlying userId); for admin viewers and customer authors it is the underlying actor id. */
|
|
20264
19337
|
id: Scalars['ID']['output'];
|
|
20265
|
-
/**
|
|
20266
|
-
* True when the viewer was scoped down to the anonymized projection. Admins see
|
|
20267
|
-
* this as false; end-users see it as true for agent authors.
|
|
20268
|
-
*/
|
|
19338
|
+
/** True when the viewer was scoped down to the anonymized projection. Admins see this as false; end-users see it as true for agent authors. */
|
|
20269
19339
|
isAnonymized: Scalars['Boolean']['output'];
|
|
20270
19340
|
/** AGENT | CUSTOMER | SYSTEM — drives UI styling without leaking identity. */
|
|
20271
19341
|
kind: SupportAuthorKind;
|
|
@@ -20275,11 +19345,7 @@ export declare enum SupportAuthorKind {
|
|
|
20275
19345
|
Customer = "CUSTOMER",
|
|
20276
19346
|
System = "SYSTEM"
|
|
20277
19347
|
}
|
|
20278
|
-
/**
|
|
20279
|
-
* Support-specific context output type.
|
|
20280
|
-
* Returns the stored context for each record.
|
|
20281
|
-
* Uses a unique type name to avoid federation conflicts with other services.
|
|
20282
|
-
*/
|
|
19348
|
+
/** Support-specific context output type. Returns the stored context for each record. Uses a unique type name to avoid federation conflicts with other services. */
|
|
20283
19349
|
export type SupportContext = {
|
|
20284
19350
|
__typename?: 'SupportContext';
|
|
20285
19351
|
custom?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -20290,11 +19356,7 @@ export type SupportContext = {
|
|
|
20290
19356
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
20291
19357
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
20292
19358
|
};
|
|
20293
|
-
/**
|
|
20294
|
-
* Context filter input for querying records by context.
|
|
20295
|
-
* Supports exact match filtering on context fields.
|
|
20296
|
-
* Note: tenantId filtering is applied automatically from context.tenant?.id.
|
|
20297
|
-
*/
|
|
19359
|
+
/** Context filter input for querying records by context. Supports exact match filtering on context fields. Note: tenantId filtering is applied automatically from context.tenant?.id. */
|
|
20298
19360
|
export type SupportContextFilterInput = {
|
|
20299
19361
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
20300
19362
|
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -20302,11 +19364,7 @@ export type SupportContextFilterInput = {
|
|
|
20302
19364
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
20303
19365
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
20304
19366
|
};
|
|
20305
|
-
/**
|
|
20306
|
-
* Support context input for filtering and scoping data.
|
|
20307
|
-
* All fields are optional and can be extended as needed.
|
|
20308
|
-
* Note: tenantId is derived from context.tenant?.id (gateway header), not from client input.
|
|
20309
|
-
*/
|
|
19367
|
+
/** Support context input for filtering and scoping data. All fields are optional and can be extended as needed. Note: tenantId is derived from context.tenant?.id (gateway header), not from client input. */
|
|
20310
19368
|
export type SupportContextInput = {
|
|
20311
19369
|
custom?: InputMaybe<Scalars['JSON']['input']>;
|
|
20312
19370
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -20335,10 +19393,7 @@ export type SupportMessage = {
|
|
|
20335
19393
|
__typename?: 'SupportMessage';
|
|
20336
19394
|
attachmentCount: Scalars['Int']['output'];
|
|
20337
19395
|
attachments: Array<Scalars['String']['output']>;
|
|
20338
|
-
/**
|
|
20339
|
-
* Privacy-aware author projection. Returns the anonymized alias + avatar for
|
|
20340
|
-
* end-users; admin app (super_admin / service) sees the real identity.
|
|
20341
|
-
*/
|
|
19396
|
+
/** Privacy-aware author projection. Returns the anonymized alias + avatar for end-users; admin app (super_admin / service) sees the real identity. */
|
|
20342
19397
|
author: SupportAuthor;
|
|
20343
19398
|
authorId: Scalars['String']['output'];
|
|
20344
19399
|
/** Contextual IDs for filtering and scoping (workspaceId, userId, projectId, etc.) */
|
|
@@ -20552,10 +19607,7 @@ export type SyncTourStepInput = {
|
|
|
20552
19607
|
waitForSelector?: InputMaybe<Scalars['String']['input']>;
|
|
20553
19608
|
waitForTimeout?: InputMaybe<Scalars['Int']['input']>;
|
|
20554
19609
|
};
|
|
20555
|
-
/**
|
|
20556
|
-
* Input for syncing workspace from workspace layer to global layer
|
|
20557
|
-
* Called by wspace-workspace-svc after creating a workspace directly
|
|
20558
|
-
*/
|
|
19610
|
+
/** Input for syncing workspace from workspace layer to global layer Called by wspace-workspace-svc after creating a workspace directly */
|
|
20559
19611
|
export type SyncWorkspaceFromWspaceInput = {
|
|
20560
19612
|
/** Workspace name */
|
|
20561
19613
|
name: Scalars['String']['input'];
|
|
@@ -20650,20 +19702,13 @@ export type TemplateNotificationResult = {
|
|
|
20650
19702
|
/** Number of notifications successfully triggered */
|
|
20651
19703
|
totalTriggered: Scalars['Int']['output'];
|
|
20652
19704
|
};
|
|
20653
|
-
/**
|
|
20654
|
-
* Tenant type stub - represents a tenant entity from the tenant service
|
|
20655
|
-
* This service doesn't own the Tenant model, but references it
|
|
20656
|
-
*/
|
|
19705
|
+
/** Tenant type stub - represents a tenant entity from the tenant service This service doesn't own the Tenant model, but references it */
|
|
20657
19706
|
export type Tenant = {
|
|
20658
19707
|
__typename?: 'Tenant';
|
|
20659
19708
|
config?: Maybe<TenantConfig>;
|
|
20660
19709
|
createdAt: Scalars['DateTime']['output'];
|
|
20661
19710
|
customDomain?: Maybe<Scalars['String']['output']>;
|
|
20662
|
-
/**
|
|
20663
|
-
* Service routing endpoint for dedicated tenants
|
|
20664
|
-
* For SHARED tenants, this is null (uses default service)
|
|
20665
|
-
* For DEDICATED tenants, this points to the dedicated service instance
|
|
20666
|
-
*/
|
|
19711
|
+
/** Service routing endpoint for dedicated tenants For SHARED tenants, this is null (uses default service) For DEDICATED tenants, this points to the dedicated service instance */
|
|
20667
19712
|
endpoint?: Maybe<Scalars['String']['output']>;
|
|
20668
19713
|
id: Scalars['ID']['output'];
|
|
20669
19714
|
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -20686,10 +19731,7 @@ export type TenantConfig = {
|
|
|
20686
19731
|
features?: Maybe<Scalars['JSON']['output']>;
|
|
20687
19732
|
region?: Maybe<Scalars['String']['output']>;
|
|
20688
19733
|
};
|
|
20689
|
-
/**
|
|
20690
|
-
* Inline export payload for `exportTenantsCsv`. Returns CSV text along with a
|
|
20691
|
-
* count of rows and a flag if the result was capped at the requested limit.
|
|
20692
|
-
*/
|
|
19734
|
+
/** Inline export payload for `exportTenantsCsv`. Returns CSV text along with a count of rows and a flag if the result was capped at the requested limit. */
|
|
20693
19735
|
export type TenantExport = {
|
|
20694
19736
|
__typename?: 'TenantExport';
|
|
20695
19737
|
csv: Scalars['String']['output'];
|
|
@@ -20713,10 +19755,7 @@ export type TenantList = {
|
|
|
20713
19755
|
offset: Scalars['Int']['output'];
|
|
20714
19756
|
total: Scalars['Int']['output'];
|
|
20715
19757
|
};
|
|
20716
|
-
/**
|
|
20717
|
-
* Lightweight tenant routing info used by gateways to decide
|
|
20718
|
-
* whether to proxy requests to a dedicated tenant endpoint.
|
|
20719
|
-
*/
|
|
19758
|
+
/** Lightweight tenant routing info used by gateways to decide whether to proxy requests to a dedicated tenant endpoint. */
|
|
20720
19759
|
export type TenantRoutingInfo = {
|
|
20721
19760
|
__typename?: 'TenantRoutingInfo';
|
|
20722
19761
|
endpoint?: Maybe<Scalars['String']['output']>;
|
|
@@ -20891,13 +19930,7 @@ export type Tour = {
|
|
|
20891
19930
|
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
20892
19931
|
mobileConfig?: Maybe<Scalars['JSON']['output']>;
|
|
20893
19932
|
moduleId?: Maybe<Scalars['String']['output']>;
|
|
20894
|
-
/**
|
|
20895
|
-
* The current authenticated user's progress for this tour, or null if the
|
|
20896
|
-
* user has not interacted with it yet. Resolves to the most recent
|
|
20897
|
-
* TourUserProgress row for the requesting actor. Used by the TourTrigger
|
|
20898
|
-
* dropdown to render per-tour status chips (Completed / In progress /
|
|
20899
|
-
* Skipped) without requiring a second round-trip.
|
|
20900
|
-
*/
|
|
19933
|
+
/** The current authenticated user's progress for this tour, or null if the user has not interacted with it yet. Resolves to the most recent TourUserProgress row for the requesting actor. Used by the TourTrigger dropdown to render per-tour status chips (Completed / In progress / Skipped) without requiring a second round-trip. */
|
|
20901
19934
|
myProgress?: Maybe<TourUserProgress>;
|
|
20902
19935
|
name: Scalars['String']['output'];
|
|
20903
19936
|
pageId?: Maybe<Scalars['String']['output']>;
|
|
@@ -21170,12 +20203,7 @@ export declare enum TourUserStatus {
|
|
|
21170
20203
|
NotStarted = "NOT_STARTED",
|
|
21171
20204
|
Skipped = "SKIPPED"
|
|
21172
20205
|
}
|
|
21173
|
-
/**
|
|
21174
|
-
* Tours-specific context output type.
|
|
21175
|
-
* Returns the stored context for each record.
|
|
21176
|
-
* Uses a unique type name to avoid federation conflicts with other services.
|
|
21177
|
-
* Must be @shareable since context types may exist in multiple subgraphs.
|
|
21178
|
-
*/
|
|
20206
|
+
/** Tours-specific context output type. Returns the stored context for each record. Uses a unique type name to avoid federation conflicts with other services. Must be @shareable since context types may exist in multiple subgraphs. */
|
|
21179
20207
|
export type ToursContext = {
|
|
21180
20208
|
__typename?: 'ToursContext';
|
|
21181
20209
|
/** Additional custom context as JSON */
|
|
@@ -21208,10 +20236,7 @@ export type ToursResponse = {
|
|
|
21208
20236
|
total: Scalars['Int']['output'];
|
|
21209
20237
|
tours: Array<Tour>;
|
|
21210
20238
|
};
|
|
21211
|
-
/**
|
|
21212
|
-
* Transaction entity - resolvable via Federation Gateway.
|
|
21213
|
-
* Other services (e.g., store-svc) can reference Transaction by id.
|
|
21214
|
-
*/
|
|
20239
|
+
/** Transaction entity - resolvable via Federation Gateway. Other services (e.g., store-svc) can reference Transaction by id. */
|
|
21215
20240
|
export type Transaction = {
|
|
21216
20241
|
__typename?: 'Transaction';
|
|
21217
20242
|
amount: Scalars['Float']['output'];
|
|
@@ -21660,10 +20685,7 @@ export type UpdateChannelInput = {
|
|
|
21660
20685
|
export type UpdateConnectionInput = {
|
|
21661
20686
|
/** Operation context for scoping */
|
|
21662
20687
|
context?: InputMaybe<ContextInput>;
|
|
21663
|
-
/**
|
|
21664
|
-
* Platform-specific credentials (API keys, tokens, etc.)
|
|
21665
|
-
* Will be encrypted before storage.
|
|
21666
|
-
*/
|
|
20688
|
+
/** Platform-specific credentials (API keys, tokens, etc.) Will be encrypted before storage. */
|
|
21667
20689
|
credentials?: InputMaybe<Scalars['JSON']['input']>;
|
|
21668
20690
|
/** Connection status */
|
|
21669
20691
|
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -22243,10 +21265,7 @@ export type UpdateSubscriptionInput = {
|
|
|
22243
21265
|
export type UpdateSubscriptionSeatsInput = {
|
|
22244
21266
|
/** Billing account that owns this subscription. */
|
|
22245
21267
|
billingAccountId: Scalars['ID']['input'];
|
|
22246
|
-
/**
|
|
22247
|
-
* New seat count. Must be >= plan.minSeats. Applied immediately on Stripe (with proration)
|
|
22248
|
-
* and at next cycle on Razorpay (proration delta charged as a separate one-time order).
|
|
22249
|
-
*/
|
|
21268
|
+
/** New seat count. Must be >= plan.minSeats. Applied immediately on Stripe (with proration) and at next cycle on Razorpay (proration delta charged as a separate one-time order). */
|
|
22250
21269
|
seatCount: Scalars['Int']['input'];
|
|
22251
21270
|
subscriptionId: Scalars['ID']['input'];
|
|
22252
21271
|
};
|
|
@@ -22399,6 +21418,7 @@ export type UpdateTranslationKeyInput = {
|
|
|
22399
21418
|
};
|
|
22400
21419
|
/** Input for updating user profile information */
|
|
22401
21420
|
export type UpdateUserInput = {
|
|
21421
|
+
avatar?: InputMaybe<Scalars['String']['input']>;
|
|
22402
21422
|
firstName?: InputMaybe<Scalars['String']['input']>;
|
|
22403
21423
|
language?: InputMaybe<Scalars['String']['input']>;
|
|
22404
21424
|
lastName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22584,15 +21604,12 @@ export type UsageTrends = {
|
|
|
22584
21604
|
/** Predicted usage for next period */
|
|
22585
21605
|
predictedUsage?: Maybe<Scalars['Float']['output']>;
|
|
22586
21606
|
};
|
|
22587
|
-
/**
|
|
22588
|
-
* User type stub - represents a user entity from the auth/user service
|
|
22589
|
-
* This service doesn't own the User model, but references it in usage tracking
|
|
22590
|
-
* Federation gateway will resolve full User data from auth/user service.
|
|
22591
|
-
*/
|
|
21607
|
+
/** User type stub - represents a user entity from the auth/user service This service doesn't own the User model, but references it in usage tracking Federation gateway will resolve full User data from auth/user service. */
|
|
22592
21608
|
export type User = {
|
|
22593
21609
|
__typename?: 'User';
|
|
22594
21610
|
/** Tickets assigned to this user (if support agent) */
|
|
22595
21611
|
assignedTickets: SupportTicketConnection;
|
|
21612
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
22596
21613
|
createdAt: Scalars['DateTime']['output'];
|
|
22597
21614
|
defaultWorkspaceId?: Maybe<Scalars['String']['output']>;
|
|
22598
21615
|
email: Scalars['String']['output'];
|
|
@@ -22616,21 +21633,13 @@ export type User = {
|
|
|
22616
21633
|
updatedAt: Scalars['DateTime']['output'];
|
|
22617
21634
|
username: Scalars['String']['output'];
|
|
22618
21635
|
};
|
|
22619
|
-
/**
|
|
22620
|
-
* User type stub - represents a user entity from the auth/user service
|
|
22621
|
-
* This service doesn't own the User model, but references it in usage tracking
|
|
22622
|
-
* Federation gateway will resolve full User data from auth/user service.
|
|
22623
|
-
*/
|
|
21636
|
+
/** User type stub - represents a user entity from the auth/user service This service doesn't own the User model, but references it in usage tracking Federation gateway will resolve full User data from auth/user service. */
|
|
22624
21637
|
export type UserAssignedTicketsArgs = {
|
|
22625
21638
|
filter?: InputMaybe<SupportTicketFilterInput>;
|
|
22626
21639
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
22627
21640
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
22628
21641
|
};
|
|
22629
|
-
/**
|
|
22630
|
-
* User type stub - represents a user entity from the auth/user service
|
|
22631
|
-
* This service doesn't own the User model, but references it in usage tracking
|
|
22632
|
-
* Federation gateway will resolve full User data from auth/user service.
|
|
22633
|
-
*/
|
|
21642
|
+
/** User type stub - represents a user entity from the auth/user service This service doesn't own the User model, but references it in usage tracking Federation gateway will resolve full User data from auth/user service. */
|
|
22634
21643
|
export type UserTicketsArgs = {
|
|
22635
21644
|
filter?: InputMaybe<SupportTicketFilterInput>;
|
|
22636
21645
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -22684,17 +21693,10 @@ export type UserLanguagePreference = {
|
|
|
22684
21693
|
updatedAt: Scalars['DateTime']['output'];
|
|
22685
21694
|
userId: Scalars['String']['output'];
|
|
22686
21695
|
};
|
|
22687
|
-
/**
|
|
22688
|
-
* UserPlatformConnection represents a verified user identity on a communication platform.
|
|
22689
|
-
* It serves as the DM authorization allowlist and notification delivery target.
|
|
22690
|
-
* Replaces the former ChannelUser model.
|
|
22691
|
-
*/
|
|
21696
|
+
/** UserPlatformConnection represents a verified user identity on a communication platform. It serves as the DM authorization allowlist and notification delivery target. Replaces the former ChannelUser model. */
|
|
22692
21697
|
export type UserPlatformConnection = {
|
|
22693
21698
|
__typename?: 'UserPlatformConnection';
|
|
22694
|
-
/**
|
|
22695
|
-
* Whether the user has a valid DM conversation target
|
|
22696
|
-
* (dmAllowed = true AND dmConversationId is set)
|
|
22697
|
-
*/
|
|
21699
|
+
/** Whether the user has a valid DM conversation target (dmAllowed = true AND dmConversationId is set) */
|
|
22698
21700
|
canReceiveDm: Scalars['Boolean']['output'];
|
|
22699
21701
|
/** Associated channel */
|
|
22700
21702
|
channel: Channel;
|
|
@@ -22710,16 +21712,9 @@ export type UserPlatformConnection = {
|
|
|
22710
21712
|
customStatus?: Maybe<Scalars['String']['output']>;
|
|
22711
21713
|
/** When this record was soft-deleted (null = active) */
|
|
22712
21714
|
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
22713
|
-
/**
|
|
22714
|
-
* Whether DMs to/from this user are allowed.
|
|
22715
|
-
* Only true when source = OAUTH or PAIRED; never for SEEN.
|
|
22716
|
-
*/
|
|
21715
|
+
/** Whether DMs to/from this user are allowed. Only true when source = OAUTH or PAIRED; never for SEEN. */
|
|
22717
21716
|
dmAllowed: Scalars['Boolean']['output'];
|
|
22718
|
-
/**
|
|
22719
|
-
* Platform-specific DM conversation ID.
|
|
22720
|
-
* Slack: D0A1B2C3 | Teams: conversation reference JSON |
|
|
22721
|
-
* WhatsApp: JID | Discord: N/A | Google Chat: space name
|
|
22722
|
-
*/
|
|
21717
|
+
/** Platform-specific DM conversation ID. Slack: D0A1B2C3 | Teams: conversation reference JSON | WhatsApp: JID | Discord: N/A | Google Chat: space name */
|
|
22723
21718
|
dmConversationId?: Maybe<Scalars['String']['output']>;
|
|
22724
21719
|
/** Platform avatar URL */
|
|
22725
21720
|
externalAvatarUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -22735,12 +21730,7 @@ export type UserPlatformConnection = {
|
|
|
22735
21730
|
externalUsername?: Maybe<Scalars['String']['output']>;
|
|
22736
21731
|
/** Unique connection ID */
|
|
22737
21732
|
id: Scalars['ID']['output'];
|
|
22738
|
-
/**
|
|
22739
|
-
* Opaque reference to the IntegrationConnection in wspace-integrations-svc
|
|
22740
|
-
* that holds this user's personal OAuth token. Set after the user completes
|
|
22741
|
-
* the OAuth flow in microfe-integrations and clicks "Link to bot channel".
|
|
22742
|
-
* Null for connections created via the legacy Slack OAuth flow.
|
|
22743
|
-
*/
|
|
21733
|
+
/** Opaque reference to the IntegrationConnection in wspace-integrations-svc that holds this user's personal OAuth token. Set after the user completes the OAuth flow in microfe-integrations and clicks "Link to bot channel". Null for connections created via the legacy Slack OAuth flow. */
|
|
22744
21734
|
integrationConnectionId?: Maybe<Scalars['ID']['output']>;
|
|
22745
21735
|
/** Internal Botlit user ID (opaque reference) */
|
|
22746
21736
|
internalUserId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -22758,10 +21748,7 @@ export type UserPlatformConnection = {
|
|
|
22758
21748
|
organizationId: Scalars['ID']['output'];
|
|
22759
21749
|
/** When pairing was approved */
|
|
22760
21750
|
pairingApprovedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
22761
|
-
/**
|
|
22762
|
-
* 8-character pairing code (WhatsApp / Discord only).
|
|
22763
|
-
* Only present when pairingStatus = PENDING.
|
|
22764
|
-
*/
|
|
21751
|
+
/** 8-character pairing code (WhatsApp / Discord only). Only present when pairingStatus = PENDING. */
|
|
22765
21752
|
pairingCode?: Maybe<Scalars['String']['output']>;
|
|
22766
21753
|
/** When the pairing code expires (1-hour TTL from generation) */
|
|
22767
21754
|
pairingCodeExpiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -22779,10 +21766,7 @@ export type UserPlatformConnection = {
|
|
|
22779
21766
|
source: UserPlatformSource;
|
|
22780
21767
|
/** Last update timestamp */
|
|
22781
21768
|
updatedAt: Scalars['DateTime']['output'];
|
|
22782
|
-
/**
|
|
22783
|
-
* User's personal OAuth token expiry (AES-256-GCM encrypted at rest)
|
|
22784
|
-
* NOTE: The token itself is never returned by queries; only the expiry is exposed.
|
|
22785
|
-
*/
|
|
21769
|
+
/** User's personal OAuth token expiry (AES-256-GCM encrypted at rest) NOTE: The token itself is never returned by queries; only the expiry is exposed. */
|
|
22786
21770
|
userTokenExpiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
22787
21771
|
/** Scopes granted by the user's personal OAuth token */
|
|
22788
21772
|
userTokenScope?: Maybe<Scalars['String']['output']>;
|
|
@@ -22806,10 +21790,7 @@ export type UserPlatformConnectionFilterInput = {
|
|
|
22806
21790
|
/** Filter by connection source */
|
|
22807
21791
|
source?: InputMaybe<UserPlatformSource>;
|
|
22808
21792
|
};
|
|
22809
|
-
/**
|
|
22810
|
-
* Paginated list of user platform connections with cursor support.
|
|
22811
|
-
* Pass `nextCursor` from a previous response as `cursor` in the next call.
|
|
22812
|
-
*/
|
|
21793
|
+
/** Paginated list of user platform connections with cursor support. Pass `nextCursor` from a previous response as `cursor` in the next call. */
|
|
22813
21794
|
export type UserPlatformConnectionList = {
|
|
22814
21795
|
__typename?: 'UserPlatformConnectionList';
|
|
22815
21796
|
hasMore: Scalars['Boolean']['output'];
|
|
@@ -22817,35 +21798,20 @@ export type UserPlatformConnectionList = {
|
|
|
22817
21798
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
22818
21799
|
total: Scalars['Int']['output'];
|
|
22819
21800
|
};
|
|
22820
|
-
/**
|
|
22821
|
-
* How a UserPlatformConnection was established.
|
|
22822
|
-
* Controls whether dmAllowed can be set to true.
|
|
22823
|
-
*/
|
|
21801
|
+
/** How a UserPlatformConnection was established. Controls whether dmAllowed can be set to true. */
|
|
22824
21802
|
export declare enum UserPlatformSource {
|
|
22825
21803
|
/** Bulk-imported user record (e.g. from CSV or directory sync). */
|
|
22826
21804
|
Import = "IMPORT",
|
|
22827
21805
|
/** Admin manually added the user (back-office operation). */
|
|
22828
21806
|
Manual = "MANUAL",
|
|
22829
|
-
/**
|
|
22830
|
-
* Connected via dashboard OAuth flow (Slack, Teams, Google Chat).
|
|
22831
|
-
* Grants dmAllowed = true immediately after token exchange.
|
|
22832
|
-
*/
|
|
21807
|
+
/** Connected via dashboard OAuth flow (Slack, Teams, Google Chat). Grants dmAllowed = true immediately after token exchange. */
|
|
22833
21808
|
Oauth = "OAUTH",
|
|
22834
|
-
/**
|
|
22835
|
-
* Connected via pairing code (WhatsApp, Discord).
|
|
22836
|
-
* Grants dmAllowed = true once the user approves the pairing code in the dashboard.
|
|
22837
|
-
*/
|
|
21809
|
+
/** Connected via pairing code (WhatsApp, Discord). Grants dmAllowed = true once the user approves the pairing code in the dashboard. */
|
|
22838
21810
|
Paired = "PAIRED",
|
|
22839
|
-
/**
|
|
22840
|
-
* Passively observed from an inbound webhook event.
|
|
22841
|
-
* Never grants dmAllowed = true automatically.
|
|
22842
|
-
*/
|
|
21811
|
+
/** Passively observed from an inbound webhook event. Never grants dmAllowed = true automatically. */
|
|
22843
21812
|
Seen = "SEEN"
|
|
22844
21813
|
}
|
|
22845
|
-
/**
|
|
22846
|
-
* User preference record storing theme, notification settings,
|
|
22847
|
-
* dashboard customization, and other user-specific configuration.
|
|
22848
|
-
*/
|
|
21814
|
+
/** User preference record storing theme, notification settings, dashboard customization, and other user-specific configuration. */
|
|
22849
21815
|
export type UserPreference = {
|
|
22850
21816
|
__typename?: 'UserPreference';
|
|
22851
21817
|
accessibility?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -22858,10 +21824,7 @@ export type UserPreference = {
|
|
|
22858
21824
|
updatedAt: Scalars['DateTime']['output'];
|
|
22859
21825
|
userId: Scalars['String']['output'];
|
|
22860
21826
|
};
|
|
22861
|
-
/**
|
|
22862
|
-
* User presence status on the communication platform.
|
|
22863
|
-
* Synced from platform webhooks or periodic polling.
|
|
22864
|
-
*/
|
|
21827
|
+
/** User presence status on the communication platform. Synced from platform webhooks or periodic polling. */
|
|
22865
21828
|
export declare enum UserPresenceStatus {
|
|
22866
21829
|
/** User is away or idle */
|
|
22867
21830
|
Away = "AWAY",
|
|
@@ -23152,10 +22115,7 @@ export declare enum WebhookDeliveryStatus {
|
|
|
23152
22115
|
Pending = "PENDING",
|
|
23153
22116
|
Retrying = "RETRYING"
|
|
23154
22117
|
}
|
|
23155
|
-
/**
|
|
23156
|
-
* WebhookEvent represents a received webhook (transient, 7-day TTL)
|
|
23157
|
-
* Used for debugging and monitoring only
|
|
23158
|
-
*/
|
|
22118
|
+
/** WebhookEvent represents a received webhook (transient, 7-day TTL) Used for debugging and monitoring only */
|
|
23159
22119
|
export type WebhookEvent = {
|
|
23160
22120
|
__typename?: 'WebhookEvent';
|
|
23161
22121
|
/** Associated channel */
|
|
@@ -23191,10 +22151,7 @@ export type WebhookEvent = {
|
|
|
23191
22151
|
/** Last update timestamp */
|
|
23192
22152
|
updatedAt: Scalars['DateTime']['output'];
|
|
23193
22153
|
};
|
|
23194
|
-
/**
|
|
23195
|
-
* Paginated list of webhook events with cursor support.
|
|
23196
|
-
* Pass `nextCursor` from a previous response as `cursor` in the next call.
|
|
23197
|
-
*/
|
|
22154
|
+
/** Paginated list of webhook events with cursor support. Pass `nextCursor` from a previous response as `cursor` in the next call. */
|
|
23198
22155
|
export type WebhookEventList = {
|
|
23199
22156
|
__typename?: 'WebhookEventList';
|
|
23200
22157
|
hasMore: Scalars['Boolean']['output'];
|
|
@@ -23322,18 +22279,11 @@ export type WithdrawConsentInput = {
|
|
|
23322
22279
|
subjectId: Scalars['ID']['input'];
|
|
23323
22280
|
subjectType: Scalars['String']['input'];
|
|
23324
22281
|
};
|
|
23325
|
-
/**
|
|
23326
|
-
* Workspace type stub - represents a workspace entity from the workspace service
|
|
23327
|
-
* This service doesn't own the Workspace model, but references it
|
|
23328
|
-
*/
|
|
22282
|
+
/** Workspace type stub - represents a workspace entity from the workspace service This service doesn't own the Workspace model, but references it */
|
|
23329
22283
|
export type Workspace = {
|
|
23330
22284
|
__typename?: 'Workspace';
|
|
23331
22285
|
createdAt: Scalars['DateTime']['output'];
|
|
23332
|
-
/**
|
|
23333
|
-
* Service routing endpoint for dedicated tenants
|
|
23334
|
-
* For SHARED tenants, this is null (uses default workspace service)
|
|
23335
|
-
* For DEDICATED tenants, this points to the dedicated workspace service instance
|
|
23336
|
-
*/
|
|
22286
|
+
/** Service routing endpoint for dedicated tenants For SHARED tenants, this is null (uses default workspace service) For DEDICATED tenants, this points to the dedicated workspace service instance */
|
|
23337
22287
|
endpoint?: Maybe<Scalars['String']['output']>;
|
|
23338
22288
|
id: Scalars['ID']['output'];
|
|
23339
22289
|
/** Member count */
|
|
@@ -23354,10 +22304,7 @@ export type Workspace = {
|
|
|
23354
22304
|
type: WorkspaceType;
|
|
23355
22305
|
updatedAt: Scalars['DateTime']['output'];
|
|
23356
22306
|
};
|
|
23357
|
-
/**
|
|
23358
|
-
* Workspace-level override for a feature flag.
|
|
23359
|
-
* Workspace admins can disable flags or control user opt-in for their workspace.
|
|
23360
|
-
*/
|
|
22307
|
+
/** Workspace-level override for a feature flag. Workspace admins can disable flags or control user opt-in for their workspace. */
|
|
23361
22308
|
export type WorkspaceFeatureFlagOverride = {
|
|
23362
22309
|
__typename?: 'WorkspaceFeatureFlagOverride';
|
|
23363
22310
|
allowUserOptIn: Scalars['Boolean']['output'];
|
|
@@ -23485,6 +22432,7 @@ export type CreatePlanInput = {
|
|
|
23485
22432
|
quotas: Array<PlanQuotaInput>;
|
|
23486
22433
|
};
|
|
23487
22434
|
export type CreateQuotaInput = {
|
|
22435
|
+
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
23488
22436
|
limits: Scalars['JSON']['input'];
|
|
23489
22437
|
name: Scalars['String']['input'];
|
|
23490
22438
|
quotaType?: InputMaybe<QuotaType>;
|
|
@@ -23519,6 +22467,7 @@ export type UpdatePlanInput = {
|
|
|
23519
22467
|
quotas: Array<PlanQuotaInput>;
|
|
23520
22468
|
};
|
|
23521
22469
|
export type UpdateQuotaInput = {
|
|
22470
|
+
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
23522
22471
|
id: Scalars['String']['input'];
|
|
23523
22472
|
isActive: Scalars['Boolean']['input'];
|
|
23524
22473
|
limits?: InputMaybe<Scalars['JSON']['input']>;
|