@epilot/customer-portal-client 0.40.0 → 0.40.1
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/definition.js +1 -1
- package/dist/openapi-runtime.json +74 -0
- package/dist/openapi.d.ts +1280 -208
- package/package.json +1 -1
- package/src/openapi-runtime.json +74 -0
- package/src/openapi.json +599 -18
package/dist/openapi.d.ts
CHANGED
|
@@ -13,6 +13,9 @@ declare namespace Components {
|
|
|
13
13
|
* Error message
|
|
14
14
|
*/
|
|
15
15
|
message?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Machine-readable cause, when the API can name one. `PORTAL_USER_PENDING_ACTIVATION` means the portal user is authenticated but not mapped to a contact yet, so re-authenticating will not help.
|
|
18
|
+
*/
|
|
16
19
|
reason: "invalid_token";
|
|
17
20
|
}
|
|
18
21
|
export type Conflict = Schemas.ErrorResp;
|
|
@@ -31,6 +34,9 @@ declare namespace Components {
|
|
|
31
34
|
export type InternalServerError = Schemas.ErrorResp;
|
|
32
35
|
export type InvalidRequest = Schemas.ErrorResp;
|
|
33
36
|
export type InvalidRequestCreateMeterReading = {
|
|
37
|
+
/**
|
|
38
|
+
* Machine-readable cause, when the API can name one. `PORTAL_USER_PENDING_ACTIVATION` means the portal user is authenticated but not mapped to a contact yet, so re-authenticating will not help.
|
|
39
|
+
*/
|
|
34
40
|
reason?: "plausibility_check_failed" | "contract_period" | "no_counter" | "no_direction" | "timestamp_future" | "less_than_previous" | "greater_than_subsequent" | "meter_decommissioned" | "plausibility_check_failed";
|
|
35
41
|
upper_limit: number;
|
|
36
42
|
lower_limit: number;
|
|
@@ -1453,6 +1459,10 @@ declare namespace Components {
|
|
|
1453
1459
|
global_blocks?: {
|
|
1454
1460
|
[name: string]: Block;
|
|
1455
1461
|
};
|
|
1462
|
+
/**
|
|
1463
|
+
* Configures which 360 events generate an in-app notification for the portal user. Each enabled trigger renders the referenced notification template and creates a notification addressed to the portal user. Admin/builder-only — never exposed via the public portal config.
|
|
1464
|
+
*/
|
|
1465
|
+
notification_triggers?: NotificationTriggerConfig[];
|
|
1456
1466
|
}
|
|
1457
1467
|
export interface CommonConfigAttributesV3 {
|
|
1458
1468
|
/**
|
|
@@ -2947,6 +2957,22 @@ declare namespace Components {
|
|
|
2947
2957
|
*/
|
|
2948
2958
|
auto_create_cognito_user?: boolean;
|
|
2949
2959
|
}
|
|
2960
|
+
/**
|
|
2961
|
+
* Linearized portal workflows of a single entity
|
|
2962
|
+
*/
|
|
2963
|
+
export interface EntityPortalWorkflows {
|
|
2964
|
+
entity_id: string;
|
|
2965
|
+
/**
|
|
2966
|
+
* Empty when the entity has no portal-relevant workflow
|
|
2967
|
+
*/
|
|
2968
|
+
portal_workflows: /**
|
|
2969
|
+
* A portal-facing projection of a workflow execution (V1 or V2), with the execution
|
|
2970
|
+
* graph already linearized by the Workflows API into a flat, ordered list of
|
|
2971
|
+
* portal-visible tasks.
|
|
2972
|
+
*
|
|
2973
|
+
*/
|
|
2974
|
+
PortalWorkflow[];
|
|
2975
|
+
}
|
|
2950
2976
|
/**
|
|
2951
2977
|
* Response for entity get request
|
|
2952
2978
|
*/
|
|
@@ -3299,6 +3325,10 @@ declare namespace Components {
|
|
|
3299
3325
|
* Error message
|
|
3300
3326
|
*/
|
|
3301
3327
|
message?: string;
|
|
3328
|
+
/**
|
|
3329
|
+
* Machine-readable cause, when the API can name one. `PORTAL_USER_PENDING_ACTIVATION` means the portal user is authenticated but not mapped to a contact yet, so re-authenticating will not help.
|
|
3330
|
+
*/
|
|
3331
|
+
reason?: string;
|
|
3302
3332
|
}
|
|
3303
3333
|
/**
|
|
3304
3334
|
* example:
|
|
@@ -4716,6 +4746,20 @@ declare namespace Components {
|
|
|
4716
4746
|
*/
|
|
4717
4747
|
is_new?: boolean;
|
|
4718
4748
|
}
|
|
4749
|
+
export interface FilePreviewResult {
|
|
4750
|
+
/**
|
|
4751
|
+
* What kind of preview (if any) is available. "pdf" covers both native PDFs and Office documents that were converted to PDF server-side. "unsupported" means no preview is available and the caller should fall back to download.
|
|
4752
|
+
*/
|
|
4753
|
+
kind: "pdf" | "image" | "unsupported";
|
|
4754
|
+
/**
|
|
4755
|
+
* A Content-Disposition: inline URL to render in a preview viewer. Present only when kind is "pdf" or "image". Short-lived — do not cache across dialog opens.
|
|
4756
|
+
*/
|
|
4757
|
+
url?: string; // uri
|
|
4758
|
+
/**
|
|
4759
|
+
* Optional download URL for the file, returned for any kind — including "unsupported" — whenever the file entity exposes one. It is only a Content-Disposition: attachment URL for files with access_control "private", where it is a short-lived signed URL; for any other access level it is the file entity's plain public/CDN object URL, which carries no attachment disposition and may render inline in the browser. Absent when the file entity exposes no usable URL, so clients must handle it being missing.
|
|
4760
|
+
*/
|
|
4761
|
+
download_url?: string; // uri
|
|
4762
|
+
}
|
|
4719
4763
|
export interface Grant {
|
|
4720
4764
|
/**
|
|
4721
4765
|
* Action for granting permission
|
|
@@ -5014,7 +5058,7 @@ declare namespace Components {
|
|
|
5014
5058
|
/**
|
|
5015
5059
|
* If the value is not provided, the system will be set with the time the request is processed.
|
|
5016
5060
|
* example:
|
|
5017
|
-
* 2022-10-
|
|
5061
|
+
* 2022-10-10T00:00:00.000Z
|
|
5018
5062
|
*/
|
|
5019
5063
|
timestamp?: string;
|
|
5020
5064
|
/**
|
|
@@ -5291,6 +5335,26 @@ declare namespace Components {
|
|
|
5291
5335
|
*/
|
|
5292
5336
|
client_secret?: string;
|
|
5293
5337
|
}
|
|
5338
|
+
export interface NotificationTriggerConfig {
|
|
5339
|
+
/**
|
|
5340
|
+
* The 360 event that fires this notification trigger.
|
|
5341
|
+
*/
|
|
5342
|
+
trigger_type: "entity_created" | "entity_assigned" | "workflow_step_overdue";
|
|
5343
|
+
/**
|
|
5344
|
+
* For `entity_created` / `entity_assigned` triggers, the entity schema slug (e.g. `opportunity`, `order`) whose creation or assignment fires this trigger. Ignored for other trigger types.
|
|
5345
|
+
* example:
|
|
5346
|
+
* opportunity
|
|
5347
|
+
*/
|
|
5348
|
+
entity_schema?: string;
|
|
5349
|
+
/**
|
|
5350
|
+
* Whether this trigger is active.
|
|
5351
|
+
*/
|
|
5352
|
+
enabled?: boolean;
|
|
5353
|
+
/**
|
|
5354
|
+
* Entity id of the notification_template to render for this trigger.
|
|
5355
|
+
*/
|
|
5356
|
+
template_id?: string; // uuid
|
|
5357
|
+
}
|
|
5294
5358
|
/**
|
|
5295
5359
|
* OIDC provider configuration. Values are resolved at SSO invocation time
|
|
5296
5360
|
* (login / callback), so the fields below may reference org env vars via
|
|
@@ -5677,6 +5741,44 @@ declare namespace Components {
|
|
|
5677
5741
|
*/
|
|
5678
5742
|
minNativeVersion?: string;
|
|
5679
5743
|
}
|
|
5744
|
+
export interface OutstandingTask {
|
|
5745
|
+
/**
|
|
5746
|
+
* ID of the entity the task belongs to
|
|
5747
|
+
*/
|
|
5748
|
+
entity_id: string;
|
|
5749
|
+
/**
|
|
5750
|
+
* Schema slug of the entity (opportunity, order or contract)
|
|
5751
|
+
*/
|
|
5752
|
+
entity_schema: string;
|
|
5753
|
+
/**
|
|
5754
|
+
* Title (_title) of the entity
|
|
5755
|
+
*/
|
|
5756
|
+
entity_title: string;
|
|
5757
|
+
/**
|
|
5758
|
+
* Workflow execution id
|
|
5759
|
+
*/
|
|
5760
|
+
workflow_id: string;
|
|
5761
|
+
/**
|
|
5762
|
+
* Workflow execution / template name
|
|
5763
|
+
*/
|
|
5764
|
+
workflow_name: string;
|
|
5765
|
+
/**
|
|
5766
|
+
* Task (step) id within the workflow execution
|
|
5767
|
+
*/
|
|
5768
|
+
step_id: string;
|
|
5769
|
+
/**
|
|
5770
|
+
* Task (step) name
|
|
5771
|
+
*/
|
|
5772
|
+
step_name: string;
|
|
5773
|
+
/**
|
|
5774
|
+
* Journey id the customer needs to fill out
|
|
5775
|
+
*/
|
|
5776
|
+
journey_id: string;
|
|
5777
|
+
/**
|
|
5778
|
+
* Whether submitting the journey from the portal should auto-complete the task. When false, an internal user completes it.
|
|
5779
|
+
*/
|
|
5780
|
+
complete_task_automatically?: boolean;
|
|
5781
|
+
}
|
|
5680
5782
|
export interface Page {
|
|
5681
5783
|
[name: string]: any;
|
|
5682
5784
|
/**
|
|
@@ -6487,6 +6589,10 @@ declare namespace Components {
|
|
|
6487
6589
|
global_blocks?: {
|
|
6488
6590
|
[name: string]: Block;
|
|
6489
6591
|
};
|
|
6592
|
+
/**
|
|
6593
|
+
* Configures which 360 events generate an in-app notification for the portal user. Each enabled trigger renders the referenced notification template and creates a notification addressed to the portal user. Admin/builder-only — never exposed via the public portal config.
|
|
6594
|
+
*/
|
|
6595
|
+
notification_triggers?: NotificationTriggerConfig[];
|
|
6490
6596
|
/**
|
|
6491
6597
|
* ID of the organization
|
|
6492
6598
|
* example:
|
|
@@ -6581,9 +6687,10 @@ declare namespace Components {
|
|
|
6581
6687
|
* providers not in the list are deleted. Omit the field to leave SSO
|
|
6582
6688
|
* configuration unchanged; send an empty array to remove all providers.
|
|
6583
6689
|
*
|
|
6584
|
-
*
|
|
6585
|
-
*
|
|
6586
|
-
* `
|
|
6690
|
+
* Secrets: a provider sent without `oidc_config.client_secret` keeps the
|
|
6691
|
+
* stored secret for the same slug; an explicit empty string clears it.
|
|
6692
|
+
* `getPortalConfigV3` returns providers with raw secrets redacted;
|
|
6693
|
+
* `{{ env.VAR }}` references pass through.
|
|
6587
6694
|
*
|
|
6588
6695
|
*/
|
|
6589
6696
|
identity_providers?: ProviderPublicConfig[];
|
|
@@ -7207,6 +7314,57 @@ declare namespace Components {
|
|
|
7207
7314
|
* 453ad7bf-86d5-46c8-8252-bcc868df5e3c
|
|
7208
7315
|
*/
|
|
7209
7316
|
export type PortalId = string;
|
|
7317
|
+
/**
|
|
7318
|
+
* A 360 notification addressed to a portal user.
|
|
7319
|
+
*/
|
|
7320
|
+
export interface PortalNotification {
|
|
7321
|
+
/**
|
|
7322
|
+
* Stable string identifier of the notification (the numeric notification id as a string).
|
|
7323
|
+
* example:
|
|
7324
|
+
* 1234567890
|
|
7325
|
+
*/
|
|
7326
|
+
id: string;
|
|
7327
|
+
/**
|
|
7328
|
+
* Numeric id of the notification, used to mark it as read.
|
|
7329
|
+
* example:
|
|
7330
|
+
* 1234567890
|
|
7331
|
+
*/
|
|
7332
|
+
notification_id?: number;
|
|
7333
|
+
/**
|
|
7334
|
+
* Type of notification.
|
|
7335
|
+
* example:
|
|
7336
|
+
* workflow_step_overdue
|
|
7337
|
+
*/
|
|
7338
|
+
type?: string;
|
|
7339
|
+
/**
|
|
7340
|
+
* Localized, already-rendered notification title.
|
|
7341
|
+
*/
|
|
7342
|
+
title?: {
|
|
7343
|
+
en?: string;
|
|
7344
|
+
de?: string;
|
|
7345
|
+
};
|
|
7346
|
+
/**
|
|
7347
|
+
* Localized, already-rendered notification message.
|
|
7348
|
+
*/
|
|
7349
|
+
message?: {
|
|
7350
|
+
en?: string;
|
|
7351
|
+
de?: string;
|
|
7352
|
+
};
|
|
7353
|
+
/**
|
|
7354
|
+
* When the notification was created.
|
|
7355
|
+
*/
|
|
7356
|
+
created_at?: string; // date-time
|
|
7357
|
+
/**
|
|
7358
|
+
* Whether the notification has been read by the user.
|
|
7359
|
+
* example:
|
|
7360
|
+
* false
|
|
7361
|
+
*/
|
|
7362
|
+
read: boolean;
|
|
7363
|
+
/**
|
|
7364
|
+
* Optional URL the notification points to.
|
|
7365
|
+
*/
|
|
7366
|
+
redirect_url?: string;
|
|
7367
|
+
}
|
|
7210
7368
|
/**
|
|
7211
7369
|
* Portal-specific (ECP / installer) display config of a workflow task
|
|
7212
7370
|
*/
|
|
@@ -8101,7 +8259,10 @@ declare namespace Components {
|
|
|
8101
8259
|
use_case_slug: string;
|
|
8102
8260
|
}
|
|
8103
8261
|
export type Source = "ECP" | "ERP" | "360" | "journey-submission";
|
|
8104
|
-
|
|
8262
|
+
/**
|
|
8263
|
+
* Optional configuration item that a portal swap can additionally include. The swap always transfers the pages and the functional experience config that keep the portal working. These items are opt-in on top of that and are OFF by default. Domain and access/security settings (domain, cognito_details, auth_settings) can never be swapped and are therefore not part of this enum.
|
|
8264
|
+
*/
|
|
8265
|
+
export type SwappableConfig = "email_templates";
|
|
8105
8266
|
export type TariffType = "ht" | "nt";
|
|
8106
8267
|
export interface TeaserWidget {
|
|
8107
8268
|
id: string;
|
|
@@ -8199,9 +8360,10 @@ declare namespace Components {
|
|
|
8199
8360
|
* providers not in the list are deleted. Omit the field to leave SSO
|
|
8200
8361
|
* configuration unchanged; send an empty array to remove all providers.
|
|
8201
8362
|
*
|
|
8202
|
-
*
|
|
8203
|
-
*
|
|
8204
|
-
* `
|
|
8363
|
+
* Secrets: a provider sent without `oidc_config.client_secret` keeps the
|
|
8364
|
+
* stored secret for the same slug; an explicit empty string clears it.
|
|
8365
|
+
* `getPortalConfigV3` returns providers with raw secrets redacted;
|
|
8366
|
+
* `{{ env.VAR }}` references pass through.
|
|
8205
8367
|
*
|
|
8206
8368
|
*/
|
|
8207
8369
|
identity_providers?: /**
|
|
@@ -8267,9 +8429,10 @@ declare namespace Components {
|
|
|
8267
8429
|
* providers not in the list are deleted. Omit the field to leave SSO
|
|
8268
8430
|
* configuration unchanged; send an empty array to remove all providers.
|
|
8269
8431
|
*
|
|
8270
|
-
*
|
|
8271
|
-
*
|
|
8272
|
-
* `
|
|
8432
|
+
* Secrets: a provider sent without `oidc_config.client_secret` keeps the
|
|
8433
|
+
* stored secret for the same slug; an explicit empty string clears it.
|
|
8434
|
+
* `getPortalConfigV3` returns providers with raw secrets redacted;
|
|
8435
|
+
* `{{ env.VAR }}` references pass through.
|
|
8273
8436
|
*
|
|
8274
8437
|
*/
|
|
8275
8438
|
identity_providers?: /**
|
|
@@ -8806,6 +8969,10 @@ declare namespace Components {
|
|
|
8806
8969
|
global_blocks?: {
|
|
8807
8970
|
[name: string]: Block;
|
|
8808
8971
|
};
|
|
8972
|
+
/**
|
|
8973
|
+
* Configures which 360 events generate an in-app notification for the portal user. Each enabled trigger renders the referenced notification template and creates a notification addressed to the portal user. Admin/builder-only — never exposed via the public portal config.
|
|
8974
|
+
*/
|
|
8975
|
+
notification_triggers?: NotificationTriggerConfig[];
|
|
8809
8976
|
}
|
|
8810
8977
|
export interface UpsertPortalConfigV3 {
|
|
8811
8978
|
/**
|
|
@@ -8854,9 +9021,10 @@ declare namespace Components {
|
|
|
8854
9021
|
* providers not in the list are deleted. Omit the field to leave SSO
|
|
8855
9022
|
* configuration unchanged; send an empty array to remove all providers.
|
|
8856
9023
|
*
|
|
8857
|
-
*
|
|
8858
|
-
*
|
|
8859
|
-
* `
|
|
9024
|
+
* Secrets: a provider sent without `oidc_config.client_secret` keeps the
|
|
9025
|
+
* stored secret for the same slug; an explicit empty string clears it.
|
|
9026
|
+
* `getPortalConfigV3` returns providers with raw secrets redacted;
|
|
9027
|
+
* `{{ env.VAR }}` references pass through.
|
|
8860
9028
|
*
|
|
8861
9029
|
*/
|
|
8862
9030
|
identity_providers?: /**
|
|
@@ -11743,170 +11911,785 @@ declare namespace Paths {
|
|
|
11743
11911
|
export type $500 = Components.Responses.InternalServerError;
|
|
11744
11912
|
}
|
|
11745
11913
|
}
|
|
11746
|
-
namespace
|
|
11747
|
-
|
|
11748
|
-
|
|
11749
|
-
|
|
11750
|
-
|
|
11751
|
-
|
|
11752
|
-
|
|
11753
|
-
|
|
11754
|
-
|
|
11755
|
-
|
|
11756
|
-
|
|
11757
|
-
|
|
11758
|
-
|
|
11759
|
-
|
|
11760
|
-
|
|
11761
|
-
|
|
11762
|
-
|
|
11763
|
-
|
|
11764
|
-
|
|
11765
|
-
|
|
11766
|
-
|
|
11767
|
-
|
|
11768
|
-
|
|
11769
|
-
|
|
11770
|
-
|
|
11771
|
-
|
|
11772
|
-
|
|
11773
|
-
|
|
11774
|
-
|
|
11775
|
-
|
|
11776
|
-
|
|
11777
|
-
|
|
11778
|
-
|
|
11779
|
-
|
|
11780
|
-
|
|
11781
|
-
|
|
11782
|
-
|
|
11783
|
-
|
|
11784
|
-
|
|
11785
|
-
|
|
11786
|
-
|
|
11787
|
-
|
|
11788
|
-
|
|
11789
|
-
|
|
11790
|
-
|
|
11791
|
-
|
|
11792
|
-
|
|
11793
|
-
|
|
11794
|
-
|
|
11795
|
-
|
|
11796
|
-
|
|
11797
|
-
|
|
11798
|
-
|
|
11799
|
-
|
|
11800
|
-
|
|
11801
|
-
|
|
11802
|
-
|
|
11803
|
-
|
|
11804
|
-
|
|
11805
|
-
|
|
11806
|
-
|
|
11807
|
-
|
|
11808
|
-
|
|
11809
|
-
|
|
11810
|
-
|
|
11811
|
-
|
|
11812
|
-
|
|
11813
|
-
|
|
11814
|
-
|
|
11815
|
-
|
|
11816
|
-
|
|
11817
|
-
|
|
11818
|
-
|
|
11819
|
-
|
|
11820
|
-
|
|
11821
|
-
|
|
11822
|
-
|
|
11823
|
-
|
|
11824
|
-
|
|
11825
|
-
|
|
11826
|
-
|
|
11827
|
-
|
|
11828
|
-
|
|
11829
|
-
|
|
11830
|
-
|
|
11831
|
-
|
|
11832
|
-
|
|
11833
|
-
|
|
11834
|
-
|
|
11835
|
-
|
|
11836
|
-
|
|
11837
|
-
|
|
11838
|
-
|
|
11839
|
-
|
|
11840
|
-
|
|
11841
|
-
|
|
11842
|
-
|
|
11843
|
-
|
|
11844
|
-
|
|
11845
|
-
|
|
11846
|
-
|
|
11847
|
-
|
|
11848
|
-
|
|
11849
|
-
|
|
11850
|
-
|
|
11851
|
-
|
|
11852
|
-
|
|
11853
|
-
|
|
11854
|
-
|
|
11855
|
-
|
|
11856
|
-
|
|
11857
|
-
|
|
11858
|
-
|
|
11859
|
-
|
|
11860
|
-
|
|
11861
|
-
|
|
11862
|
-
|
|
11863
|
-
|
|
11864
|
-
|
|
11865
|
-
|
|
11866
|
-
|
|
11867
|
-
|
|
11868
|
-
|
|
11869
|
-
|
|
11870
|
-
|
|
11871
|
-
|
|
11872
|
-
|
|
11873
|
-
|
|
11874
|
-
|
|
11875
|
-
|
|
11876
|
-
|
|
11877
|
-
|
|
11878
|
-
|
|
11879
|
-
|
|
11880
|
-
|
|
11881
|
-
|
|
11882
|
-
|
|
11883
|
-
|
|
11884
|
-
|
|
11885
|
-
|
|
11886
|
-
|
|
11887
|
-
|
|
11888
|
-
|
|
11889
|
-
|
|
11890
|
-
|
|
11891
|
-
|
|
11892
|
-
|
|
11893
|
-
|
|
11894
|
-
|
|
11895
|
-
|
|
11896
|
-
|
|
11897
|
-
|
|
11898
|
-
|
|
11899
|
-
|
|
11900
|
-
|
|
11901
|
-
|
|
11902
|
-
|
|
11903
|
-
|
|
11904
|
-
|
|
11905
|
-
|
|
11906
|
-
|
|
11907
|
-
|
|
11908
|
-
|
|
11909
|
-
|
|
11914
|
+
namespace GetEntityPortalWorkflowsBatch {
|
|
11915
|
+
export interface RequestBody {
|
|
11916
|
+
entities: [
|
|
11917
|
+
{
|
|
11918
|
+
/**
|
|
11919
|
+
* ID of the entity
|
|
11920
|
+
*/
|
|
11921
|
+
id: string;
|
|
11922
|
+
/**
|
|
11923
|
+
* Schema slug of the entity
|
|
11924
|
+
* example:
|
|
11925
|
+
* order
|
|
11926
|
+
*/
|
|
11927
|
+
slug: string;
|
|
11928
|
+
},
|
|
11929
|
+
{
|
|
11930
|
+
/**
|
|
11931
|
+
* ID of the entity
|
|
11932
|
+
*/
|
|
11933
|
+
id: string;
|
|
11934
|
+
/**
|
|
11935
|
+
* Schema slug of the entity
|
|
11936
|
+
* example:
|
|
11937
|
+
* order
|
|
11938
|
+
*/
|
|
11939
|
+
slug: string;
|
|
11940
|
+
}?,
|
|
11941
|
+
{
|
|
11942
|
+
/**
|
|
11943
|
+
* ID of the entity
|
|
11944
|
+
*/
|
|
11945
|
+
id: string;
|
|
11946
|
+
/**
|
|
11947
|
+
* Schema slug of the entity
|
|
11948
|
+
* example:
|
|
11949
|
+
* order
|
|
11950
|
+
*/
|
|
11951
|
+
slug: string;
|
|
11952
|
+
}?,
|
|
11953
|
+
{
|
|
11954
|
+
/**
|
|
11955
|
+
* ID of the entity
|
|
11956
|
+
*/
|
|
11957
|
+
id: string;
|
|
11958
|
+
/**
|
|
11959
|
+
* Schema slug of the entity
|
|
11960
|
+
* example:
|
|
11961
|
+
* order
|
|
11962
|
+
*/
|
|
11963
|
+
slug: string;
|
|
11964
|
+
}?,
|
|
11965
|
+
{
|
|
11966
|
+
/**
|
|
11967
|
+
* ID of the entity
|
|
11968
|
+
*/
|
|
11969
|
+
id: string;
|
|
11970
|
+
/**
|
|
11971
|
+
* Schema slug of the entity
|
|
11972
|
+
* example:
|
|
11973
|
+
* order
|
|
11974
|
+
*/
|
|
11975
|
+
slug: string;
|
|
11976
|
+
}?,
|
|
11977
|
+
{
|
|
11978
|
+
/**
|
|
11979
|
+
* ID of the entity
|
|
11980
|
+
*/
|
|
11981
|
+
id: string;
|
|
11982
|
+
/**
|
|
11983
|
+
* Schema slug of the entity
|
|
11984
|
+
* example:
|
|
11985
|
+
* order
|
|
11986
|
+
*/
|
|
11987
|
+
slug: string;
|
|
11988
|
+
}?,
|
|
11989
|
+
{
|
|
11990
|
+
/**
|
|
11991
|
+
* ID of the entity
|
|
11992
|
+
*/
|
|
11993
|
+
id: string;
|
|
11994
|
+
/**
|
|
11995
|
+
* Schema slug of the entity
|
|
11996
|
+
* example:
|
|
11997
|
+
* order
|
|
11998
|
+
*/
|
|
11999
|
+
slug: string;
|
|
12000
|
+
}?,
|
|
12001
|
+
{
|
|
12002
|
+
/**
|
|
12003
|
+
* ID of the entity
|
|
12004
|
+
*/
|
|
12005
|
+
id: string;
|
|
12006
|
+
/**
|
|
12007
|
+
* Schema slug of the entity
|
|
12008
|
+
* example:
|
|
12009
|
+
* order
|
|
12010
|
+
*/
|
|
12011
|
+
slug: string;
|
|
12012
|
+
}?,
|
|
12013
|
+
{
|
|
12014
|
+
/**
|
|
12015
|
+
* ID of the entity
|
|
12016
|
+
*/
|
|
12017
|
+
id: string;
|
|
12018
|
+
/**
|
|
12019
|
+
* Schema slug of the entity
|
|
12020
|
+
* example:
|
|
12021
|
+
* order
|
|
12022
|
+
*/
|
|
12023
|
+
slug: string;
|
|
12024
|
+
}?,
|
|
12025
|
+
{
|
|
12026
|
+
/**
|
|
12027
|
+
* ID of the entity
|
|
12028
|
+
*/
|
|
12029
|
+
id: string;
|
|
12030
|
+
/**
|
|
12031
|
+
* Schema slug of the entity
|
|
12032
|
+
* example:
|
|
12033
|
+
* order
|
|
12034
|
+
*/
|
|
12035
|
+
slug: string;
|
|
12036
|
+
}?,
|
|
12037
|
+
{
|
|
12038
|
+
/**
|
|
12039
|
+
* ID of the entity
|
|
12040
|
+
*/
|
|
12041
|
+
id: string;
|
|
12042
|
+
/**
|
|
12043
|
+
* Schema slug of the entity
|
|
12044
|
+
* example:
|
|
12045
|
+
* order
|
|
12046
|
+
*/
|
|
12047
|
+
slug: string;
|
|
12048
|
+
}?,
|
|
12049
|
+
{
|
|
12050
|
+
/**
|
|
12051
|
+
* ID of the entity
|
|
12052
|
+
*/
|
|
12053
|
+
id: string;
|
|
12054
|
+
/**
|
|
12055
|
+
* Schema slug of the entity
|
|
12056
|
+
* example:
|
|
12057
|
+
* order
|
|
12058
|
+
*/
|
|
12059
|
+
slug: string;
|
|
12060
|
+
}?,
|
|
12061
|
+
{
|
|
12062
|
+
/**
|
|
12063
|
+
* ID of the entity
|
|
12064
|
+
*/
|
|
12065
|
+
id: string;
|
|
12066
|
+
/**
|
|
12067
|
+
* Schema slug of the entity
|
|
12068
|
+
* example:
|
|
12069
|
+
* order
|
|
12070
|
+
*/
|
|
12071
|
+
slug: string;
|
|
12072
|
+
}?,
|
|
12073
|
+
{
|
|
12074
|
+
/**
|
|
12075
|
+
* ID of the entity
|
|
12076
|
+
*/
|
|
12077
|
+
id: string;
|
|
12078
|
+
/**
|
|
12079
|
+
* Schema slug of the entity
|
|
12080
|
+
* example:
|
|
12081
|
+
* order
|
|
12082
|
+
*/
|
|
12083
|
+
slug: string;
|
|
12084
|
+
}?,
|
|
12085
|
+
{
|
|
12086
|
+
/**
|
|
12087
|
+
* ID of the entity
|
|
12088
|
+
*/
|
|
12089
|
+
id: string;
|
|
12090
|
+
/**
|
|
12091
|
+
* Schema slug of the entity
|
|
12092
|
+
* example:
|
|
12093
|
+
* order
|
|
12094
|
+
*/
|
|
12095
|
+
slug: string;
|
|
12096
|
+
}?,
|
|
12097
|
+
{
|
|
12098
|
+
/**
|
|
12099
|
+
* ID of the entity
|
|
12100
|
+
*/
|
|
12101
|
+
id: string;
|
|
12102
|
+
/**
|
|
12103
|
+
* Schema slug of the entity
|
|
12104
|
+
* example:
|
|
12105
|
+
* order
|
|
12106
|
+
*/
|
|
12107
|
+
slug: string;
|
|
12108
|
+
}?,
|
|
12109
|
+
{
|
|
12110
|
+
/**
|
|
12111
|
+
* ID of the entity
|
|
12112
|
+
*/
|
|
12113
|
+
id: string;
|
|
12114
|
+
/**
|
|
12115
|
+
* Schema slug of the entity
|
|
12116
|
+
* example:
|
|
12117
|
+
* order
|
|
12118
|
+
*/
|
|
12119
|
+
slug: string;
|
|
12120
|
+
}?,
|
|
12121
|
+
{
|
|
12122
|
+
/**
|
|
12123
|
+
* ID of the entity
|
|
12124
|
+
*/
|
|
12125
|
+
id: string;
|
|
12126
|
+
/**
|
|
12127
|
+
* Schema slug of the entity
|
|
12128
|
+
* example:
|
|
12129
|
+
* order
|
|
12130
|
+
*/
|
|
12131
|
+
slug: string;
|
|
12132
|
+
}?,
|
|
12133
|
+
{
|
|
12134
|
+
/**
|
|
12135
|
+
* ID of the entity
|
|
12136
|
+
*/
|
|
12137
|
+
id: string;
|
|
12138
|
+
/**
|
|
12139
|
+
* Schema slug of the entity
|
|
12140
|
+
* example:
|
|
12141
|
+
* order
|
|
12142
|
+
*/
|
|
12143
|
+
slug: string;
|
|
12144
|
+
}?,
|
|
12145
|
+
{
|
|
12146
|
+
/**
|
|
12147
|
+
* ID of the entity
|
|
12148
|
+
*/
|
|
12149
|
+
id: string;
|
|
12150
|
+
/**
|
|
12151
|
+
* Schema slug of the entity
|
|
12152
|
+
* example:
|
|
12153
|
+
* order
|
|
12154
|
+
*/
|
|
12155
|
+
slug: string;
|
|
12156
|
+
}?,
|
|
12157
|
+
{
|
|
12158
|
+
/**
|
|
12159
|
+
* ID of the entity
|
|
12160
|
+
*/
|
|
12161
|
+
id: string;
|
|
12162
|
+
/**
|
|
12163
|
+
* Schema slug of the entity
|
|
12164
|
+
* example:
|
|
12165
|
+
* order
|
|
12166
|
+
*/
|
|
12167
|
+
slug: string;
|
|
12168
|
+
}?,
|
|
12169
|
+
{
|
|
12170
|
+
/**
|
|
12171
|
+
* ID of the entity
|
|
12172
|
+
*/
|
|
12173
|
+
id: string;
|
|
12174
|
+
/**
|
|
12175
|
+
* Schema slug of the entity
|
|
12176
|
+
* example:
|
|
12177
|
+
* order
|
|
12178
|
+
*/
|
|
12179
|
+
slug: string;
|
|
12180
|
+
}?,
|
|
12181
|
+
{
|
|
12182
|
+
/**
|
|
12183
|
+
* ID of the entity
|
|
12184
|
+
*/
|
|
12185
|
+
id: string;
|
|
12186
|
+
/**
|
|
12187
|
+
* Schema slug of the entity
|
|
12188
|
+
* example:
|
|
12189
|
+
* order
|
|
12190
|
+
*/
|
|
12191
|
+
slug: string;
|
|
12192
|
+
}?,
|
|
12193
|
+
{
|
|
12194
|
+
/**
|
|
12195
|
+
* ID of the entity
|
|
12196
|
+
*/
|
|
12197
|
+
id: string;
|
|
12198
|
+
/**
|
|
12199
|
+
* Schema slug of the entity
|
|
12200
|
+
* example:
|
|
12201
|
+
* order
|
|
12202
|
+
*/
|
|
12203
|
+
slug: string;
|
|
12204
|
+
}?,
|
|
12205
|
+
{
|
|
12206
|
+
/**
|
|
12207
|
+
* ID of the entity
|
|
12208
|
+
*/
|
|
12209
|
+
id: string;
|
|
12210
|
+
/**
|
|
12211
|
+
* Schema slug of the entity
|
|
12212
|
+
* example:
|
|
12213
|
+
* order
|
|
12214
|
+
*/
|
|
12215
|
+
slug: string;
|
|
12216
|
+
}?,
|
|
12217
|
+
{
|
|
12218
|
+
/**
|
|
12219
|
+
* ID of the entity
|
|
12220
|
+
*/
|
|
12221
|
+
id: string;
|
|
12222
|
+
/**
|
|
12223
|
+
* Schema slug of the entity
|
|
12224
|
+
* example:
|
|
12225
|
+
* order
|
|
12226
|
+
*/
|
|
12227
|
+
slug: string;
|
|
12228
|
+
}?,
|
|
12229
|
+
{
|
|
12230
|
+
/**
|
|
12231
|
+
* ID of the entity
|
|
12232
|
+
*/
|
|
12233
|
+
id: string;
|
|
12234
|
+
/**
|
|
12235
|
+
* Schema slug of the entity
|
|
12236
|
+
* example:
|
|
12237
|
+
* order
|
|
12238
|
+
*/
|
|
12239
|
+
slug: string;
|
|
12240
|
+
}?,
|
|
12241
|
+
{
|
|
12242
|
+
/**
|
|
12243
|
+
* ID of the entity
|
|
12244
|
+
*/
|
|
12245
|
+
id: string;
|
|
12246
|
+
/**
|
|
12247
|
+
* Schema slug of the entity
|
|
12248
|
+
* example:
|
|
12249
|
+
* order
|
|
12250
|
+
*/
|
|
12251
|
+
slug: string;
|
|
12252
|
+
}?,
|
|
12253
|
+
{
|
|
12254
|
+
/**
|
|
12255
|
+
* ID of the entity
|
|
12256
|
+
*/
|
|
12257
|
+
id: string;
|
|
12258
|
+
/**
|
|
12259
|
+
* Schema slug of the entity
|
|
12260
|
+
* example:
|
|
12261
|
+
* order
|
|
12262
|
+
*/
|
|
12263
|
+
slug: string;
|
|
12264
|
+
}?,
|
|
12265
|
+
{
|
|
12266
|
+
/**
|
|
12267
|
+
* ID of the entity
|
|
12268
|
+
*/
|
|
12269
|
+
id: string;
|
|
12270
|
+
/**
|
|
12271
|
+
* Schema slug of the entity
|
|
12272
|
+
* example:
|
|
12273
|
+
* order
|
|
12274
|
+
*/
|
|
12275
|
+
slug: string;
|
|
12276
|
+
}?,
|
|
12277
|
+
{
|
|
12278
|
+
/**
|
|
12279
|
+
* ID of the entity
|
|
12280
|
+
*/
|
|
12281
|
+
id: string;
|
|
12282
|
+
/**
|
|
12283
|
+
* Schema slug of the entity
|
|
12284
|
+
* example:
|
|
12285
|
+
* order
|
|
12286
|
+
*/
|
|
12287
|
+
slug: string;
|
|
12288
|
+
}?,
|
|
12289
|
+
{
|
|
12290
|
+
/**
|
|
12291
|
+
* ID of the entity
|
|
12292
|
+
*/
|
|
12293
|
+
id: string;
|
|
12294
|
+
/**
|
|
12295
|
+
* Schema slug of the entity
|
|
12296
|
+
* example:
|
|
12297
|
+
* order
|
|
12298
|
+
*/
|
|
12299
|
+
slug: string;
|
|
12300
|
+
}?,
|
|
12301
|
+
{
|
|
12302
|
+
/**
|
|
12303
|
+
* ID of the entity
|
|
12304
|
+
*/
|
|
12305
|
+
id: string;
|
|
12306
|
+
/**
|
|
12307
|
+
* Schema slug of the entity
|
|
12308
|
+
* example:
|
|
12309
|
+
* order
|
|
12310
|
+
*/
|
|
12311
|
+
slug: string;
|
|
12312
|
+
}?,
|
|
12313
|
+
{
|
|
12314
|
+
/**
|
|
12315
|
+
* ID of the entity
|
|
12316
|
+
*/
|
|
12317
|
+
id: string;
|
|
12318
|
+
/**
|
|
12319
|
+
* Schema slug of the entity
|
|
12320
|
+
* example:
|
|
12321
|
+
* order
|
|
12322
|
+
*/
|
|
12323
|
+
slug: string;
|
|
12324
|
+
}?,
|
|
12325
|
+
{
|
|
12326
|
+
/**
|
|
12327
|
+
* ID of the entity
|
|
12328
|
+
*/
|
|
12329
|
+
id: string;
|
|
12330
|
+
/**
|
|
12331
|
+
* Schema slug of the entity
|
|
12332
|
+
* example:
|
|
12333
|
+
* order
|
|
12334
|
+
*/
|
|
12335
|
+
slug: string;
|
|
12336
|
+
}?,
|
|
12337
|
+
{
|
|
12338
|
+
/**
|
|
12339
|
+
* ID of the entity
|
|
12340
|
+
*/
|
|
12341
|
+
id: string;
|
|
12342
|
+
/**
|
|
12343
|
+
* Schema slug of the entity
|
|
12344
|
+
* example:
|
|
12345
|
+
* order
|
|
12346
|
+
*/
|
|
12347
|
+
slug: string;
|
|
12348
|
+
}?,
|
|
12349
|
+
{
|
|
12350
|
+
/**
|
|
12351
|
+
* ID of the entity
|
|
12352
|
+
*/
|
|
12353
|
+
id: string;
|
|
12354
|
+
/**
|
|
12355
|
+
* Schema slug of the entity
|
|
12356
|
+
* example:
|
|
12357
|
+
* order
|
|
12358
|
+
*/
|
|
12359
|
+
slug: string;
|
|
12360
|
+
}?,
|
|
12361
|
+
{
|
|
12362
|
+
/**
|
|
12363
|
+
* ID of the entity
|
|
12364
|
+
*/
|
|
12365
|
+
id: string;
|
|
12366
|
+
/**
|
|
12367
|
+
* Schema slug of the entity
|
|
12368
|
+
* example:
|
|
12369
|
+
* order
|
|
12370
|
+
*/
|
|
12371
|
+
slug: string;
|
|
12372
|
+
}?,
|
|
12373
|
+
{
|
|
12374
|
+
/**
|
|
12375
|
+
* ID of the entity
|
|
12376
|
+
*/
|
|
12377
|
+
id: string;
|
|
12378
|
+
/**
|
|
12379
|
+
* Schema slug of the entity
|
|
12380
|
+
* example:
|
|
12381
|
+
* order
|
|
12382
|
+
*/
|
|
12383
|
+
slug: string;
|
|
12384
|
+
}?,
|
|
12385
|
+
{
|
|
12386
|
+
/**
|
|
12387
|
+
* ID of the entity
|
|
12388
|
+
*/
|
|
12389
|
+
id: string;
|
|
12390
|
+
/**
|
|
12391
|
+
* Schema slug of the entity
|
|
12392
|
+
* example:
|
|
12393
|
+
* order
|
|
12394
|
+
*/
|
|
12395
|
+
slug: string;
|
|
12396
|
+
}?,
|
|
12397
|
+
{
|
|
12398
|
+
/**
|
|
12399
|
+
* ID of the entity
|
|
12400
|
+
*/
|
|
12401
|
+
id: string;
|
|
12402
|
+
/**
|
|
12403
|
+
* Schema slug of the entity
|
|
12404
|
+
* example:
|
|
12405
|
+
* order
|
|
12406
|
+
*/
|
|
12407
|
+
slug: string;
|
|
12408
|
+
}?,
|
|
12409
|
+
{
|
|
12410
|
+
/**
|
|
12411
|
+
* ID of the entity
|
|
12412
|
+
*/
|
|
12413
|
+
id: string;
|
|
12414
|
+
/**
|
|
12415
|
+
* Schema slug of the entity
|
|
12416
|
+
* example:
|
|
12417
|
+
* order
|
|
12418
|
+
*/
|
|
12419
|
+
slug: string;
|
|
12420
|
+
}?,
|
|
12421
|
+
{
|
|
12422
|
+
/**
|
|
12423
|
+
* ID of the entity
|
|
12424
|
+
*/
|
|
12425
|
+
id: string;
|
|
12426
|
+
/**
|
|
12427
|
+
* Schema slug of the entity
|
|
12428
|
+
* example:
|
|
12429
|
+
* order
|
|
12430
|
+
*/
|
|
12431
|
+
slug: string;
|
|
12432
|
+
}?,
|
|
12433
|
+
{
|
|
12434
|
+
/**
|
|
12435
|
+
* ID of the entity
|
|
12436
|
+
*/
|
|
12437
|
+
id: string;
|
|
12438
|
+
/**
|
|
12439
|
+
* Schema slug of the entity
|
|
12440
|
+
* example:
|
|
12441
|
+
* order
|
|
12442
|
+
*/
|
|
12443
|
+
slug: string;
|
|
12444
|
+
}?,
|
|
12445
|
+
{
|
|
12446
|
+
/**
|
|
12447
|
+
* ID of the entity
|
|
12448
|
+
*/
|
|
12449
|
+
id: string;
|
|
12450
|
+
/**
|
|
12451
|
+
* Schema slug of the entity
|
|
12452
|
+
* example:
|
|
12453
|
+
* order
|
|
12454
|
+
*/
|
|
12455
|
+
slug: string;
|
|
12456
|
+
}?,
|
|
12457
|
+
{
|
|
12458
|
+
/**
|
|
12459
|
+
* ID of the entity
|
|
12460
|
+
*/
|
|
12461
|
+
id: string;
|
|
12462
|
+
/**
|
|
12463
|
+
* Schema slug of the entity
|
|
12464
|
+
* example:
|
|
12465
|
+
* order
|
|
12466
|
+
*/
|
|
12467
|
+
slug: string;
|
|
12468
|
+
}?,
|
|
12469
|
+
{
|
|
12470
|
+
/**
|
|
12471
|
+
* ID of the entity
|
|
12472
|
+
*/
|
|
12473
|
+
id: string;
|
|
12474
|
+
/**
|
|
12475
|
+
* Schema slug of the entity
|
|
12476
|
+
* example:
|
|
12477
|
+
* order
|
|
12478
|
+
*/
|
|
12479
|
+
slug: string;
|
|
12480
|
+
}?,
|
|
12481
|
+
{
|
|
12482
|
+
/**
|
|
12483
|
+
* ID of the entity
|
|
12484
|
+
*/
|
|
12485
|
+
id: string;
|
|
12486
|
+
/**
|
|
12487
|
+
* Schema slug of the entity
|
|
12488
|
+
* example:
|
|
12489
|
+
* order
|
|
12490
|
+
*/
|
|
12491
|
+
slug: string;
|
|
12492
|
+
}?,
|
|
12493
|
+
{
|
|
12494
|
+
/**
|
|
12495
|
+
* ID of the entity
|
|
12496
|
+
*/
|
|
12497
|
+
id: string;
|
|
12498
|
+
/**
|
|
12499
|
+
* Schema slug of the entity
|
|
12500
|
+
* example:
|
|
12501
|
+
* order
|
|
12502
|
+
*/
|
|
12503
|
+
slug: string;
|
|
12504
|
+
}?,
|
|
12505
|
+
{
|
|
12506
|
+
/**
|
|
12507
|
+
* ID of the entity
|
|
12508
|
+
*/
|
|
12509
|
+
id: string;
|
|
12510
|
+
/**
|
|
12511
|
+
* Schema slug of the entity
|
|
12512
|
+
* example:
|
|
12513
|
+
* order
|
|
12514
|
+
*/
|
|
12515
|
+
slug: string;
|
|
12516
|
+
}?
|
|
12517
|
+
];
|
|
12518
|
+
}
|
|
12519
|
+
namespace Responses {
|
|
12520
|
+
export interface $200 {
|
|
12521
|
+
results?: /* Linearized portal workflows of a single entity */ Components.Schemas.EntityPortalWorkflows[];
|
|
12522
|
+
}
|
|
12523
|
+
export type $400 = Components.Responses.InvalidRequest;
|
|
12524
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
12525
|
+
export type $403 = Components.Responses.Forbidden;
|
|
12526
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
12527
|
+
}
|
|
12528
|
+
}
|
|
12529
|
+
namespace GetEntityWorkflows {
|
|
12530
|
+
namespace Parameters {
|
|
12531
|
+
/**
|
|
12532
|
+
* ID of the entity
|
|
12533
|
+
* example:
|
|
12534
|
+
* abc123
|
|
12535
|
+
*/
|
|
12536
|
+
export type Id = string;
|
|
12537
|
+
/**
|
|
12538
|
+
* Schema slug of the entity
|
|
12539
|
+
* example:
|
|
12540
|
+
* contact
|
|
12541
|
+
*/
|
|
12542
|
+
export type Slug = string;
|
|
12543
|
+
}
|
|
12544
|
+
export interface PathParameters {
|
|
12545
|
+
slug: /**
|
|
12546
|
+
* Schema slug of the entity
|
|
12547
|
+
* example:
|
|
12548
|
+
* contact
|
|
12549
|
+
*/
|
|
12550
|
+
Parameters.Slug;
|
|
12551
|
+
id: /**
|
|
12552
|
+
* ID of the entity
|
|
12553
|
+
* example:
|
|
12554
|
+
* abc123
|
|
12555
|
+
*/
|
|
12556
|
+
Parameters.Id;
|
|
12557
|
+
}
|
|
12558
|
+
namespace Responses {
|
|
12559
|
+
export interface $200 {
|
|
12560
|
+
workflow_executions?: /**
|
|
12561
|
+
* example:
|
|
12562
|
+
* {
|
|
12563
|
+
* "id": "8gja72h6kas6h",
|
|
12564
|
+
* "name": "Lead Qualification",
|
|
12565
|
+
* "trigger": "MANUAL",
|
|
12566
|
+
* "status": "STARTED",
|
|
12567
|
+
* "creationTime": "2021-04-27T12:01:13.000Z",
|
|
12568
|
+
* "lastUpdateTime": "2021-04-27T12:01:13.000Z",
|
|
12569
|
+
* "dueDate": "2021-04-27T12:01:13.000Z",
|
|
12570
|
+
* "assignedTo": [
|
|
12571
|
+
* "252",
|
|
12572
|
+
* "29052"
|
|
12573
|
+
* ],
|
|
12574
|
+
* "flow": [
|
|
12575
|
+
* {
|
|
12576
|
+
* "id": "sectionId1",
|
|
12577
|
+
* "name": "Initial Information Gathering",
|
|
12578
|
+
* "steps": [
|
|
12579
|
+
* {
|
|
12580
|
+
* "id": "sada5641f3a21",
|
|
12581
|
+
* "name": "Call client and confirm address and product",
|
|
12582
|
+
* "status": "ASSIGNED",
|
|
12583
|
+
* "assignedTo": [
|
|
12584
|
+
* "11"
|
|
12585
|
+
* ]
|
|
12586
|
+
* },
|
|
12587
|
+
* {
|
|
12588
|
+
* "id": "sada5641f3a22",
|
|
12589
|
+
* "name": "Check product availability",
|
|
12590
|
+
* "status": "UNASSIGNED"
|
|
12591
|
+
* },
|
|
12592
|
+
* {
|
|
12593
|
+
* "id": "sada5641f3a23",
|
|
12594
|
+
* "name": "Send email confirming contact with the client",
|
|
12595
|
+
* "status": "SKIPPED"
|
|
12596
|
+
* }
|
|
12597
|
+
* ]
|
|
12598
|
+
* },
|
|
12599
|
+
* {
|
|
12600
|
+
* "id": "firstLevelStepId1",
|
|
12601
|
+
* "name": "Print and send catalog",
|
|
12602
|
+
* "status": "SKIPPED",
|
|
12603
|
+
* "dueDate": "2023-01-15T20:00:00"
|
|
12604
|
+
* }
|
|
12605
|
+
* ]
|
|
12606
|
+
* }
|
|
12607
|
+
*/
|
|
12608
|
+
Components.Schemas.WorkflowExecution[];
|
|
12609
|
+
}
|
|
12610
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
12611
|
+
export type $403 = Components.Responses.Forbidden;
|
|
12612
|
+
export type $404 = Components.Responses.NotFound;
|
|
12613
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
12614
|
+
}
|
|
12615
|
+
}
|
|
12616
|
+
namespace GetExport {
|
|
12617
|
+
namespace Parameters {
|
|
12618
|
+
export type JobId = string;
|
|
12619
|
+
}
|
|
12620
|
+
export interface PathParameters {
|
|
12621
|
+
jobId: Parameters.JobId;
|
|
12622
|
+
}
|
|
12623
|
+
namespace Responses {
|
|
12624
|
+
export interface $200 {
|
|
12625
|
+
jobId?: string;
|
|
12626
|
+
status?: "queued" | "running" | "ready" | "failed" | "expired";
|
|
12627
|
+
downloadUrl?: string;
|
|
12628
|
+
error?: string;
|
|
12629
|
+
}
|
|
12630
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
12631
|
+
export interface $404 {
|
|
12632
|
+
}
|
|
12633
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
12634
|
+
}
|
|
12635
|
+
}
|
|
12636
|
+
namespace GetExternalLinks {
|
|
12637
|
+
namespace Parameters {
|
|
12638
|
+
export type ContactId = /**
|
|
12639
|
+
* Entity ID
|
|
12640
|
+
* example:
|
|
12641
|
+
* 5da0a718-c822-403d-9f5d-20d4584e0528
|
|
12642
|
+
*/
|
|
12643
|
+
Components.Schemas.EntityId /* uuid */;
|
|
12644
|
+
export type Origin = /* Origin of the portal */ Components.Schemas.Origin;
|
|
12645
|
+
}
|
|
12646
|
+
export interface QueryParameters {
|
|
12647
|
+
origin?: Parameters.Origin;
|
|
12648
|
+
contactId?: Parameters.ContactId;
|
|
12649
|
+
}
|
|
12650
|
+
namespace Responses {
|
|
12651
|
+
export type $200 = Components.Schemas.ExternalLink[];
|
|
12652
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
12653
|
+
export type $403 = Components.Responses.Forbidden;
|
|
12654
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
12655
|
+
}
|
|
12656
|
+
}
|
|
12657
|
+
namespace GetExternalLinksV3 {
|
|
12658
|
+
namespace Parameters {
|
|
12659
|
+
export type ContactId = /**
|
|
12660
|
+
* Entity ID
|
|
12661
|
+
* example:
|
|
12662
|
+
* 5da0a718-c822-403d-9f5d-20d4584e0528
|
|
12663
|
+
*/
|
|
12664
|
+
Components.Schemas.EntityId /* uuid */;
|
|
12665
|
+
export type PortalId = /**
|
|
12666
|
+
* ID of the portal
|
|
12667
|
+
* example:
|
|
12668
|
+
* 453ad7bf-86d5-46c8-8252-bcc868df5e3c
|
|
12669
|
+
*/
|
|
12670
|
+
Components.Schemas.PortalId;
|
|
12671
|
+
}
|
|
12672
|
+
export interface QueryParameters {
|
|
12673
|
+
portal_id?: Parameters.PortalId;
|
|
12674
|
+
contactId?: Parameters.ContactId;
|
|
12675
|
+
}
|
|
12676
|
+
namespace Responses {
|
|
12677
|
+
export type $200 = Components.Schemas.ExternalLink[];
|
|
12678
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
12679
|
+
export type $403 = Components.Responses.Forbidden;
|
|
12680
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
12681
|
+
}
|
|
12682
|
+
}
|
|
12683
|
+
namespace GetFileById {
|
|
12684
|
+
namespace Parameters {
|
|
12685
|
+
export type Id = /**
|
|
12686
|
+
* Entity ID
|
|
12687
|
+
* example:
|
|
12688
|
+
* 5da0a718-c822-403d-9f5d-20d4584e0528
|
|
12689
|
+
*/
|
|
12690
|
+
Components.Schemas.EntityId /* uuid */;
|
|
12691
|
+
}
|
|
12692
|
+
export interface PathParameters {
|
|
11910
12693
|
id: Parameters.Id;
|
|
11911
12694
|
}
|
|
11912
12695
|
namespace Responses {
|
|
@@ -11919,6 +12702,26 @@ declare namespace Paths {
|
|
|
11919
12702
|
export type $500 = Components.Responses.InternalServerError;
|
|
11920
12703
|
}
|
|
11921
12704
|
}
|
|
12705
|
+
namespace GetFilePreview {
|
|
12706
|
+
namespace Parameters {
|
|
12707
|
+
export type Id = /**
|
|
12708
|
+
* Entity ID
|
|
12709
|
+
* example:
|
|
12710
|
+
* 5da0a718-c822-403d-9f5d-20d4584e0528
|
|
12711
|
+
*/
|
|
12712
|
+
Components.Schemas.EntityId /* uuid */;
|
|
12713
|
+
}
|
|
12714
|
+
export interface PathParameters {
|
|
12715
|
+
id: Parameters.Id;
|
|
12716
|
+
}
|
|
12717
|
+
namespace Responses {
|
|
12718
|
+
export type $200 = Components.Schemas.FilePreviewResult;
|
|
12719
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
12720
|
+
export type $403 = Components.Responses.Forbidden;
|
|
12721
|
+
export type $404 = Components.Responses.NotFound;
|
|
12722
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
12723
|
+
}
|
|
12724
|
+
}
|
|
11922
12725
|
namespace GetFilesCountByEntity {
|
|
11923
12726
|
namespace Responses {
|
|
11924
12727
|
export type $200 = Components.Schemas.EntityFileCount[];
|
|
@@ -12693,6 +13496,10 @@ declare namespace Paths {
|
|
|
12693
13496
|
global_blocks?: {
|
|
12694
13497
|
[name: string]: Components.Schemas.Block;
|
|
12695
13498
|
};
|
|
13499
|
+
/**
|
|
13500
|
+
* Configures which 360 events generate an in-app notification for the portal user. Each enabled trigger renders the referenced notification template and creates a notification addressed to the portal user. Admin/builder-only — never exposed via the public portal config.
|
|
13501
|
+
*/
|
|
13502
|
+
notification_triggers?: Components.Schemas.NotificationTriggerConfig[];
|
|
12696
13503
|
/**
|
|
12697
13504
|
* ID of the organization
|
|
12698
13505
|
* example:
|
|
@@ -13311,6 +14118,10 @@ declare namespace Paths {
|
|
|
13311
14118
|
global_blocks?: {
|
|
13312
14119
|
[name: string]: Components.Schemas.Block;
|
|
13313
14120
|
};
|
|
14121
|
+
/**
|
|
14122
|
+
* Configures which 360 events generate an in-app notification for the portal user. Each enabled trigger renders the referenced notification template and creates a notification addressed to the portal user. Admin/builder-only — never exposed via the public portal config.
|
|
14123
|
+
*/
|
|
14124
|
+
notification_triggers?: Components.Schemas.NotificationTriggerConfig[];
|
|
13314
14125
|
/**
|
|
13315
14126
|
* ID of the organization
|
|
13316
14127
|
* example:
|
|
@@ -13429,6 +14240,21 @@ declare namespace Paths {
|
|
|
13429
14240
|
export type $500 = Components.Responses.InternalServerError;
|
|
13430
14241
|
}
|
|
13431
14242
|
}
|
|
14243
|
+
namespace GetOutstandingTasks {
|
|
14244
|
+
namespace Responses {
|
|
14245
|
+
export interface $200 {
|
|
14246
|
+
tasks: Components.Schemas.OutstandingTask[];
|
|
14247
|
+
/**
|
|
14248
|
+
* example:
|
|
14249
|
+
* 0
|
|
14250
|
+
*/
|
|
14251
|
+
total: number;
|
|
14252
|
+
}
|
|
14253
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
14254
|
+
export type $403 = Components.Responses.Forbidden;
|
|
14255
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
14256
|
+
}
|
|
14257
|
+
}
|
|
13432
14258
|
namespace GetPortalConfig {
|
|
13433
14259
|
namespace Parameters {
|
|
13434
14260
|
export type Origin = /* Origin of the portal */ Components.Schemas.Origin;
|
|
@@ -13521,6 +14347,20 @@ declare namespace Paths {
|
|
|
13521
14347
|
export type $500 = Components.Responses.InternalServerError;
|
|
13522
14348
|
}
|
|
13523
14349
|
}
|
|
14350
|
+
namespace GetPortalNotificationsUnreadCount {
|
|
14351
|
+
namespace Responses {
|
|
14352
|
+
export interface $200 {
|
|
14353
|
+
/**
|
|
14354
|
+
* example:
|
|
14355
|
+
* 3
|
|
14356
|
+
*/
|
|
14357
|
+
count?: number;
|
|
14358
|
+
}
|
|
14359
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
14360
|
+
export type $403 = Components.Responses.Forbidden;
|
|
14361
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
14362
|
+
}
|
|
14363
|
+
}
|
|
13524
14364
|
namespace GetPortalPage {
|
|
13525
14365
|
namespace Responses {
|
|
13526
14366
|
export type $200 = Components.Schemas.Page;
|
|
@@ -14673,6 +15513,32 @@ declare namespace Paths {
|
|
|
14673
15513
|
export type $500 = Components.Responses.InternalServerError;
|
|
14674
15514
|
}
|
|
14675
15515
|
}
|
|
15516
|
+
namespace ListPortalNotifications {
|
|
15517
|
+
namespace Parameters {
|
|
15518
|
+
export type Cursor = string;
|
|
15519
|
+
export type Limit = number;
|
|
15520
|
+
}
|
|
15521
|
+
export interface QueryParameters {
|
|
15522
|
+
cursor?: Parameters.Cursor;
|
|
15523
|
+
limit?: Parameters.Limit;
|
|
15524
|
+
}
|
|
15525
|
+
namespace Responses {
|
|
15526
|
+
export interface $200 {
|
|
15527
|
+
/**
|
|
15528
|
+
* Base64 encoded cursor to fetch the next page. Absent when there are no more results.
|
|
15529
|
+
*/
|
|
15530
|
+
cursor?: string;
|
|
15531
|
+
/**
|
|
15532
|
+
* Total number of unread notifications for the user.
|
|
15533
|
+
*/
|
|
15534
|
+
total_unread?: number;
|
|
15535
|
+
results?: /* A 360 notification addressed to a portal user. */ Components.Schemas.PortalNotification[];
|
|
15536
|
+
}
|
|
15537
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
15538
|
+
export type $403 = Components.Responses.Forbidden;
|
|
15539
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
15540
|
+
}
|
|
15541
|
+
}
|
|
14676
15542
|
namespace LoginToPortalAsUser {
|
|
14677
15543
|
export interface RequestBody {
|
|
14678
15544
|
/**
|
|
@@ -14700,6 +15566,31 @@ declare namespace Paths {
|
|
|
14700
15566
|
}
|
|
14701
15567
|
}
|
|
14702
15568
|
}
|
|
15569
|
+
namespace MarkAllPortalNotificationsRead {
|
|
15570
|
+
namespace Responses {
|
|
15571
|
+
export interface $204 {
|
|
15572
|
+
}
|
|
15573
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
15574
|
+
export type $403 = Components.Responses.Forbidden;
|
|
15575
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
15576
|
+
}
|
|
15577
|
+
}
|
|
15578
|
+
namespace MarkPortalNotificationRead {
|
|
15579
|
+
namespace Parameters {
|
|
15580
|
+
export type Id = number;
|
|
15581
|
+
}
|
|
15582
|
+
export interface PathParameters {
|
|
15583
|
+
id: Parameters.Id;
|
|
15584
|
+
}
|
|
15585
|
+
namespace Responses {
|
|
15586
|
+
export interface $204 {
|
|
15587
|
+
}
|
|
15588
|
+
export type $400 = Components.Responses.InvalidRequest;
|
|
15589
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
15590
|
+
export type $403 = Components.Responses.Forbidden;
|
|
15591
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
15592
|
+
}
|
|
15593
|
+
}
|
|
14703
15594
|
namespace MigrateEmailTemplateReferences {
|
|
14704
15595
|
export interface RequestBody {
|
|
14705
15596
|
/**
|
|
@@ -15006,6 +15897,10 @@ declare namespace Paths {
|
|
|
15006
15897
|
* The email address registered in the journey's Login & Registration block
|
|
15007
15898
|
*/
|
|
15008
15899
|
journey_registration_email?: string;
|
|
15900
|
+
/**
|
|
15901
|
+
* The portal selected on the journey's Login & Registration block, used to target the registration link to that portal
|
|
15902
|
+
*/
|
|
15903
|
+
journey_registration_portal_id?: string;
|
|
15009
15904
|
};
|
|
15010
15905
|
};
|
|
15011
15906
|
}
|
|
@@ -15439,9 +16334,9 @@ declare namespace Paths {
|
|
|
15439
16334
|
*/
|
|
15440
16335
|
Components.Schemas.PortalId;
|
|
15441
16336
|
/**
|
|
15442
|
-
*
|
|
16337
|
+
* Optional, opt-in configuration items to additionally swap on top of the always-swapped pages and functional config. Defaults to an empty list (nothing extra swapped). Domain and access/security settings can never be swapped.
|
|
15443
16338
|
*/
|
|
15444
|
-
items_to_swap?: Components.Schemas.SwappableConfig[];
|
|
16339
|
+
items_to_swap?: /* Optional configuration item that a portal swap can additionally include. The swap always transfers the pages and the functional experience config that keep the portal working. These items are opt-in on top of that and are OFF by default. Domain and access/security settings (domain, cognito_details, auth_settings) can never be swapped and are therefore not part of this enum. */ Components.Schemas.SwappableConfig[];
|
|
15445
16340
|
}
|
|
15446
16341
|
namespace Responses {
|
|
15447
16342
|
export interface $200 {
|
|
@@ -16282,7 +17177,6 @@ declare namespace Paths {
|
|
|
16282
17177
|
}
|
|
16283
17178
|
}
|
|
16284
17179
|
|
|
16285
|
-
|
|
16286
17180
|
export interface OperationMethods {
|
|
16287
17181
|
/**
|
|
16288
17182
|
* upsertPortal - upsertPortal
|
|
@@ -16434,7 +17328,7 @@ export interface OperationMethods {
|
|
|
16434
17328
|
config?: AxiosRequestConfig
|
|
16435
17329
|
): OperationResponse<Paths.GetPublicPortalExtensionDetailsV3.Responses.$200>
|
|
16436
17330
|
/**
|
|
16437
|
-
* getConsumption -
|
|
17331
|
+
* getConsumption - getConsumption
|
|
16438
17332
|
*
|
|
16439
17333
|
* Get energy consumption data between a given time period.
|
|
16440
17334
|
*/
|
|
@@ -16444,7 +17338,7 @@ export interface OperationMethods {
|
|
|
16444
17338
|
config?: AxiosRequestConfig
|
|
16445
17339
|
): OperationResponse<Paths.GetConsumption.Responses.$200>
|
|
16446
17340
|
/**
|
|
16447
|
-
* prepareVisualizationExport -
|
|
17341
|
+
* prepareVisualizationExport - prepareVisualizationExport
|
|
16448
17342
|
*
|
|
16449
17343
|
* Asks an installed App to prepare a downloadable export of a visualization (consumption chart, dynamic tariff chart, etc.). The export is produced by the third-party App via a configured portal extension hook of type `dataExport` — this endpoint does not generate the file itself, it forwards the request to the configured hook and returns the descriptor the App provides (typically a `download_url`).
|
|
16450
17344
|
*
|
|
@@ -16455,7 +17349,7 @@ export interface OperationMethods {
|
|
|
16455
17349
|
config?: AxiosRequestConfig
|
|
16456
17350
|
): OperationResponse<Paths.PrepareVisualizationExport.Responses.$200>
|
|
16457
17351
|
/**
|
|
16458
|
-
* getVisualizationMetadata -
|
|
17352
|
+
* getVisualizationMetadata - getVisualizationMetadata
|
|
16459
17353
|
*
|
|
16460
17354
|
* Returns runtime metadata describing how a visualization (consumption / price / cost chart) should be rendered for a given portal context (meter, contract, etc). Resolves the extension's `visualizationMetadata` hook implicitly from `app_id` + `extensionId` and invokes it. Supplies the response as a structured payload that the portal uses to configure type/aggregation options, supported intervals, and the available data range.
|
|
16461
17355
|
*
|
|
@@ -16466,7 +17360,7 @@ export interface OperationMethods {
|
|
|
16466
17360
|
config?: AxiosRequestConfig
|
|
16467
17361
|
): OperationResponse<Paths.GetVisualizationMetadata.Responses.$200>
|
|
16468
17362
|
/**
|
|
16469
|
-
* getCosts -
|
|
17363
|
+
* getCosts - getCosts
|
|
16470
17364
|
*
|
|
16471
17365
|
* Get energy cost data between a given time period.
|
|
16472
17366
|
*/
|
|
@@ -16476,7 +17370,7 @@ export interface OperationMethods {
|
|
|
16476
17370
|
config?: AxiosRequestConfig
|
|
16477
17371
|
): OperationResponse<Paths.GetCosts.Responses.$200>
|
|
16478
17372
|
/**
|
|
16479
|
-
* getPrices -
|
|
17373
|
+
* getPrices - getPrices
|
|
16480
17374
|
*
|
|
16481
17375
|
* Get energy prices data between a given time period.
|
|
16482
17376
|
*/
|
|
@@ -17312,6 +18206,16 @@ export interface OperationMethods {
|
|
|
17312
18206
|
data?: any,
|
|
17313
18207
|
config?: AxiosRequestConfig
|
|
17314
18208
|
): OperationResponse<Paths.GetFileById.Responses.$200>
|
|
18209
|
+
/**
|
|
18210
|
+
* getFilePreview - getFilePreview
|
|
18211
|
+
*
|
|
18212
|
+
* resolves an in-portal preview for a file. Returns a Content-Disposition: inline URL for directly-previewable files (PDF, common image formats), or a document-api PDF conversion result for the Office formats it currently supports (docx/xls/xlsx/xlsm) -- NOT doc/csv/pptx, which document-api's conversion does not cover today. Returns { kind: "unsupported" } (no url) for anything else, so the caller can fall back to the existing download flow. An optional `download_url` is returned for all kinds — including "unsupported" — whenever the file entity exposes one, so the client can render a real anchor for its Download action; it is only a Content-Disposition: attachment URL for private files, and for other access levels it is the plain object URL, which may render inline. The previewability decision is made server-side from the file's own filename/mime_type — never trust a client-supplied kind for anything security-sensitive.
|
|
18213
|
+
*/
|
|
18214
|
+
'getFilePreview'(
|
|
18215
|
+
parameters?: Parameters<Paths.GetFilePreview.PathParameters> | null,
|
|
18216
|
+
data?: any,
|
|
18217
|
+
config?: AxiosRequestConfig
|
|
18218
|
+
): OperationResponse<Paths.GetFilePreview.Responses.$200>
|
|
17315
18219
|
/**
|
|
17316
18220
|
* trackFileDownloaded - trackFileDownloaded
|
|
17317
18221
|
*
|
|
@@ -17323,7 +18227,7 @@ export interface OperationMethods {
|
|
|
17323
18227
|
config?: AxiosRequestConfig
|
|
17324
18228
|
): OperationResponse<Paths.TrackFileDownloaded.Responses.$200>
|
|
17325
18229
|
/**
|
|
17326
|
-
* getFilesCountByEntity -
|
|
18230
|
+
* getFilesCountByEntity - getFilesCountByEntity
|
|
17327
18231
|
*
|
|
17328
18232
|
* Fetch file counts for all ECP user related entities
|
|
17329
18233
|
*/
|
|
@@ -17477,7 +18381,7 @@ export interface OperationMethods {
|
|
|
17477
18381
|
config?: AxiosRequestConfig
|
|
17478
18382
|
): OperationResponse<Paths.UpdateWorkflowStepAsDone.Responses.$200>
|
|
17479
18383
|
/**
|
|
17480
|
-
* getEntityWorkflows -
|
|
18384
|
+
* getEntityWorkflows - getEntityWorkflows
|
|
17481
18385
|
*
|
|
17482
18386
|
* Get all workflows associated with an entity (requires access to the entity)
|
|
17483
18387
|
*/
|
|
@@ -17487,7 +18391,17 @@ export interface OperationMethods {
|
|
|
17487
18391
|
config?: AxiosRequestConfig
|
|
17488
18392
|
): OperationResponse<Paths.GetEntityWorkflows.Responses.$200>
|
|
17489
18393
|
/**
|
|
17490
|
-
*
|
|
18394
|
+
* getOutstandingTasks - Get outstanding workflow tasks for the portal user
|
|
18395
|
+
*
|
|
18396
|
+
* Returns all outstanding workflow journey tasks for the authenticated portal user, across their opportunity, order and contract entities. Each task is an active workflow step that exposes a journey the customer still needs to fill out.
|
|
18397
|
+
*/
|
|
18398
|
+
'getOutstandingTasks'(
|
|
18399
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
18400
|
+
data?: any,
|
|
18401
|
+
config?: AxiosRequestConfig
|
|
18402
|
+
): OperationResponse<Paths.GetOutstandingTasks.Responses.$200>
|
|
18403
|
+
/**
|
|
18404
|
+
* getEntityPortalWorkflows - getEntityPortalWorkflows
|
|
17491
18405
|
*
|
|
17492
18406
|
* Get all portal-relevant workflows associated with an entity (requires access to the entity),
|
|
17493
18407
|
* linearized by the Workflows API into a flat, ordered list of portal-visible tasks.
|
|
@@ -17507,7 +18421,25 @@ export interface OperationMethods {
|
|
|
17507
18421
|
config?: AxiosRequestConfig
|
|
17508
18422
|
): OperationResponse<Paths.GetEntityPortalWorkflows.Responses.$200>
|
|
17509
18423
|
/**
|
|
17510
|
-
*
|
|
18424
|
+
* getEntityPortalWorkflowsBatch - getEntityPortalWorkflowsBatch
|
|
18425
|
+
*
|
|
18426
|
+
* Batch variant of `getEntityPortalWorkflows`: returns portal-relevant workflows for
|
|
18427
|
+
* up to 50 entities — schemas may differ — in a single call, each already linearized
|
|
18428
|
+
* by the Workflows API into a flat, ordered list of portal-visible tasks.
|
|
18429
|
+
*
|
|
18430
|
+
* Intended for portal list views (e.g. an entity list where every card shows its
|
|
18431
|
+
* workflow progress). Entities the portal user cannot access are omitted from the
|
|
18432
|
+
* response; an entry with an empty task list means the entity has no portal-relevant
|
|
18433
|
+
* workflow.
|
|
18434
|
+
*
|
|
18435
|
+
*/
|
|
18436
|
+
'getEntityPortalWorkflowsBatch'(
|
|
18437
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
18438
|
+
data?: Paths.GetEntityPortalWorkflowsBatch.RequestBody,
|
|
18439
|
+
config?: AxiosRequestConfig
|
|
18440
|
+
): OperationResponse<Paths.GetEntityPortalWorkflowsBatch.Responses.$200>
|
|
18441
|
+
/**
|
|
18442
|
+
* uploadMeterReadingPhoto - uploadMeterReadingPhoto
|
|
17511
18443
|
*
|
|
17512
18444
|
* Uploads a Meter Reading photo and - if enabled - gives back data extracted from the photo.
|
|
17513
18445
|
*/
|
|
@@ -17517,7 +18449,7 @@ export interface OperationMethods {
|
|
|
17517
18449
|
config?: AxiosRequestConfig
|
|
17518
18450
|
): OperationResponse<Paths.UploadMeterReadingPhoto.Responses.$200>
|
|
17519
18451
|
/**
|
|
17520
|
-
* createMeterReading -
|
|
18452
|
+
* createMeterReading - createMeterReading
|
|
17521
18453
|
*
|
|
17522
18454
|
* Inserts a new meter reading.
|
|
17523
18455
|
*/
|
|
@@ -17527,7 +18459,9 @@ export interface OperationMethods {
|
|
|
17527
18459
|
config?: AxiosRequestConfig
|
|
17528
18460
|
): OperationResponse<Paths.CreateMeterReading.Responses.$200>
|
|
17529
18461
|
/**
|
|
17530
|
-
* getAllowedMeterReadingRange -
|
|
18462
|
+
* getAllowedMeterReadingRange - getAllowedMeterReadingRange
|
|
18463
|
+
*
|
|
18464
|
+
* Get allowed reading range for all counters of a meter from the configured
|
|
17531
18465
|
* third-party plausibility check hook using 'range' mode. This endpoint requires
|
|
17532
18466
|
* a plausibility check hook to be configured for the portal.
|
|
17533
18467
|
*
|
|
@@ -17538,7 +18472,7 @@ export interface OperationMethods {
|
|
|
17538
18472
|
config?: AxiosRequestConfig
|
|
17539
18473
|
): OperationResponse<Paths.GetAllowedMeterReadingRange.Responses.$200>
|
|
17540
18474
|
/**
|
|
17541
|
-
* getMeterReadings -
|
|
18475
|
+
* getMeterReadings - getMeterReadings
|
|
17542
18476
|
*
|
|
17543
18477
|
* Fetches meter readings for a counter and optionally resolves Handlebars
|
|
17544
18478
|
* template strings against each reading object using @epilot/variables.
|
|
@@ -17785,7 +18719,7 @@ export interface OperationMethods {
|
|
|
17785
18719
|
config?: AxiosRequestConfig
|
|
17786
18720
|
): OperationResponse<Paths.GetUserEntryPoint.Responses.$200>
|
|
17787
18721
|
/**
|
|
17788
|
-
* updateCampaignPortalBlockStatus -
|
|
18722
|
+
* updateCampaignPortalBlockStatus - updateCampaignPortalBlockStatus
|
|
17789
18723
|
*
|
|
17790
18724
|
* Updates the status of a campaign portal block for multiple recipients.
|
|
17791
18725
|
*/
|
|
@@ -17794,6 +18728,46 @@ export interface OperationMethods {
|
|
|
17794
18728
|
data?: Paths.UpdateCampaignPortalBlockStatus.RequestBody,
|
|
17795
18729
|
config?: AxiosRequestConfig
|
|
17796
18730
|
): OperationResponse<Paths.UpdateCampaignPortalBlockStatus.Responses.$200>
|
|
18731
|
+
/**
|
|
18732
|
+
* listPortalNotifications - listPortalNotifications
|
|
18733
|
+
*
|
|
18734
|
+
* Lists the 360 notifications addressed to the authenticated portal user, newest first. The organization and the portal user are derived from the authenticated session, so a user can only ever read their own notifications.
|
|
18735
|
+
*/
|
|
18736
|
+
'listPortalNotifications'(
|
|
18737
|
+
parameters?: Parameters<Paths.ListPortalNotifications.QueryParameters> | null,
|
|
18738
|
+
data?: any,
|
|
18739
|
+
config?: AxiosRequestConfig
|
|
18740
|
+
): OperationResponse<Paths.ListPortalNotifications.Responses.$200>
|
|
18741
|
+
/**
|
|
18742
|
+
* getPortalNotificationsUnreadCount - getPortalNotificationsUnreadCount
|
|
18743
|
+
*
|
|
18744
|
+
* Returns the number of unread notifications for the authenticated portal user.
|
|
18745
|
+
*/
|
|
18746
|
+
'getPortalNotificationsUnreadCount'(
|
|
18747
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
18748
|
+
data?: any,
|
|
18749
|
+
config?: AxiosRequestConfig
|
|
18750
|
+
): OperationResponse<Paths.GetPortalNotificationsUnreadCount.Responses.$200>
|
|
18751
|
+
/**
|
|
18752
|
+
* markAllPortalNotificationsRead - markAllPortalNotificationsRead
|
|
18753
|
+
*
|
|
18754
|
+
* Marks all notifications of the authenticated portal user as read.
|
|
18755
|
+
*/
|
|
18756
|
+
'markAllPortalNotificationsRead'(
|
|
18757
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
18758
|
+
data?: any,
|
|
18759
|
+
config?: AxiosRequestConfig
|
|
18760
|
+
): OperationResponse<Paths.MarkAllPortalNotificationsRead.Responses.$204>
|
|
18761
|
+
/**
|
|
18762
|
+
* markPortalNotificationRead - markPortalNotificationRead
|
|
18763
|
+
*
|
|
18764
|
+
* Marks a single notification of the authenticated portal user as read.
|
|
18765
|
+
*/
|
|
18766
|
+
'markPortalNotificationRead'(
|
|
18767
|
+
parameters?: Parameters<Paths.MarkPortalNotificationRead.PathParameters> | null,
|
|
18768
|
+
data?: any,
|
|
18769
|
+
config?: AxiosRequestConfig
|
|
18770
|
+
): OperationResponse<Paths.MarkPortalNotificationRead.Responses.$204>
|
|
17797
18771
|
/**
|
|
17798
18772
|
* updateNotificationsStatus - updateNotificationsStatus
|
|
17799
18773
|
*
|
|
@@ -18179,7 +19153,7 @@ export interface PathsDictionary {
|
|
|
18179
19153
|
}
|
|
18180
19154
|
['/v2/portal/consumption']: {
|
|
18181
19155
|
/**
|
|
18182
|
-
* getConsumption -
|
|
19156
|
+
* getConsumption - getConsumption
|
|
18183
19157
|
*
|
|
18184
19158
|
* Get energy consumption data between a given time period.
|
|
18185
19159
|
*/
|
|
@@ -18191,7 +19165,7 @@ export interface PathsDictionary {
|
|
|
18191
19165
|
}
|
|
18192
19166
|
['/v2/portal/visualization:export']: {
|
|
18193
19167
|
/**
|
|
18194
|
-
* prepareVisualizationExport -
|
|
19168
|
+
* prepareVisualizationExport - prepareVisualizationExport
|
|
18195
19169
|
*
|
|
18196
19170
|
* Asks an installed App to prepare a downloadable export of a visualization (consumption chart, dynamic tariff chart, etc.). The export is produced by the third-party App via a configured portal extension hook of type `dataExport` — this endpoint does not generate the file itself, it forwards the request to the configured hook and returns the descriptor the App provides (typically a `download_url`).
|
|
18197
19171
|
*
|
|
@@ -18204,7 +19178,7 @@ export interface PathsDictionary {
|
|
|
18204
19178
|
}
|
|
18205
19179
|
['/v2/portal/visualization/metadata']: {
|
|
18206
19180
|
/**
|
|
18207
|
-
* getVisualizationMetadata -
|
|
19181
|
+
* getVisualizationMetadata - getVisualizationMetadata
|
|
18208
19182
|
*
|
|
18209
19183
|
* Returns runtime metadata describing how a visualization (consumption / price / cost chart) should be rendered for a given portal context (meter, contract, etc). Resolves the extension's `visualizationMetadata` hook implicitly from `app_id` + `extensionId` and invokes it. Supplies the response as a structured payload that the portal uses to configure type/aggregation options, supported intervals, and the available data range.
|
|
18210
19184
|
*
|
|
@@ -18217,7 +19191,7 @@ export interface PathsDictionary {
|
|
|
18217
19191
|
}
|
|
18218
19192
|
['/v2/portal/costs']: {
|
|
18219
19193
|
/**
|
|
18220
|
-
* getCosts -
|
|
19194
|
+
* getCosts - getCosts
|
|
18221
19195
|
*
|
|
18222
19196
|
* Get energy cost data between a given time period.
|
|
18223
19197
|
*/
|
|
@@ -18229,7 +19203,7 @@ export interface PathsDictionary {
|
|
|
18229
19203
|
}
|
|
18230
19204
|
['/v2/portal/prices']: {
|
|
18231
19205
|
/**
|
|
18232
|
-
* getPrices -
|
|
19206
|
+
* getPrices - getPrices
|
|
18233
19207
|
*
|
|
18234
19208
|
* Get energy prices data between a given time period.
|
|
18235
19209
|
*/
|
|
@@ -19202,6 +20176,18 @@ export interface PathsDictionary {
|
|
|
19202
20176
|
config?: AxiosRequestConfig
|
|
19203
20177
|
): OperationResponse<Paths.GetFileById.Responses.$200>
|
|
19204
20178
|
}
|
|
20179
|
+
['/v2/portal/user/file/{id}/preview']: {
|
|
20180
|
+
/**
|
|
20181
|
+
* getFilePreview - getFilePreview
|
|
20182
|
+
*
|
|
20183
|
+
* resolves an in-portal preview for a file. Returns a Content-Disposition: inline URL for directly-previewable files (PDF, common image formats), or a document-api PDF conversion result for the Office formats it currently supports (docx/xls/xlsx/xlsm) -- NOT doc/csv/pptx, which document-api's conversion does not cover today. Returns { kind: "unsupported" } (no url) for anything else, so the caller can fall back to the existing download flow. An optional `download_url` is returned for all kinds — including "unsupported" — whenever the file entity exposes one, so the client can render a real anchor for its Download action; it is only a Content-Disposition: attachment URL for private files, and for other access levels it is the plain object URL, which may render inline. The previewability decision is made server-side from the file's own filename/mime_type — never trust a client-supplied kind for anything security-sensitive.
|
|
20184
|
+
*/
|
|
20185
|
+
'get'(
|
|
20186
|
+
parameters?: Parameters<Paths.GetFilePreview.PathParameters> | null,
|
|
20187
|
+
data?: any,
|
|
20188
|
+
config?: AxiosRequestConfig
|
|
20189
|
+
): OperationResponse<Paths.GetFilePreview.Responses.$200>
|
|
20190
|
+
}
|
|
19205
20191
|
['/v2/portal/user/file/{id}/downloaded']: {
|
|
19206
20192
|
/**
|
|
19207
20193
|
* trackFileDownloaded - trackFileDownloaded
|
|
@@ -19216,7 +20202,7 @@ export interface PathsDictionary {
|
|
|
19216
20202
|
}
|
|
19217
20203
|
['/v2/portal/user/files/count-by-entity']: {
|
|
19218
20204
|
/**
|
|
19219
|
-
* getFilesCountByEntity -
|
|
20205
|
+
* getFilesCountByEntity - getFilesCountByEntity
|
|
19220
20206
|
*
|
|
19221
20207
|
* Fetch file counts for all ECP user related entities
|
|
19222
20208
|
*/
|
|
@@ -19398,7 +20384,7 @@ export interface PathsDictionary {
|
|
|
19398
20384
|
}
|
|
19399
20385
|
['/v2/portal/entity/{slug}/{id}/workflows']: {
|
|
19400
20386
|
/**
|
|
19401
|
-
* getEntityWorkflows -
|
|
20387
|
+
* getEntityWorkflows - getEntityWorkflows
|
|
19402
20388
|
*
|
|
19403
20389
|
* Get all workflows associated with an entity (requires access to the entity)
|
|
19404
20390
|
*/
|
|
@@ -19408,9 +20394,21 @@ export interface PathsDictionary {
|
|
|
19408
20394
|
config?: AxiosRequestConfig
|
|
19409
20395
|
): OperationResponse<Paths.GetEntityWorkflows.Responses.$200>
|
|
19410
20396
|
}
|
|
20397
|
+
['/v2/portal/engagement/tasks']: {
|
|
20398
|
+
/**
|
|
20399
|
+
* getOutstandingTasks - Get outstanding workflow tasks for the portal user
|
|
20400
|
+
*
|
|
20401
|
+
* Returns all outstanding workflow journey tasks for the authenticated portal user, across their opportunity, order and contract entities. Each task is an active workflow step that exposes a journey the customer still needs to fill out.
|
|
20402
|
+
*/
|
|
20403
|
+
'get'(
|
|
20404
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
20405
|
+
data?: any,
|
|
20406
|
+
config?: AxiosRequestConfig
|
|
20407
|
+
): OperationResponse<Paths.GetOutstandingTasks.Responses.$200>
|
|
20408
|
+
}
|
|
19411
20409
|
['/v2/portal/entity/{slug}/{id}/workflows/linearized']: {
|
|
19412
20410
|
/**
|
|
19413
|
-
* getEntityPortalWorkflows -
|
|
20411
|
+
* getEntityPortalWorkflows - getEntityPortalWorkflows
|
|
19414
20412
|
*
|
|
19415
20413
|
* Get all portal-relevant workflows associated with an entity (requires access to the entity),
|
|
19416
20414
|
* linearized by the Workflows API into a flat, ordered list of portal-visible tasks.
|
|
@@ -19430,9 +20428,29 @@ export interface PathsDictionary {
|
|
|
19430
20428
|
config?: AxiosRequestConfig
|
|
19431
20429
|
): OperationResponse<Paths.GetEntityPortalWorkflows.Responses.$200>
|
|
19432
20430
|
}
|
|
20431
|
+
['/v2/portal/entities/workflows/linearized/batch']: {
|
|
20432
|
+
/**
|
|
20433
|
+
* getEntityPortalWorkflowsBatch - getEntityPortalWorkflowsBatch
|
|
20434
|
+
*
|
|
20435
|
+
* Batch variant of `getEntityPortalWorkflows`: returns portal-relevant workflows for
|
|
20436
|
+
* up to 50 entities — schemas may differ — in a single call, each already linearized
|
|
20437
|
+
* by the Workflows API into a flat, ordered list of portal-visible tasks.
|
|
20438
|
+
*
|
|
20439
|
+
* Intended for portal list views (e.g. an entity list where every card shows its
|
|
20440
|
+
* workflow progress). Entities the portal user cannot access are omitted from the
|
|
20441
|
+
* response; an entry with an empty task list means the entity has no portal-relevant
|
|
20442
|
+
* workflow.
|
|
20443
|
+
*
|
|
20444
|
+
*/
|
|
20445
|
+
'post'(
|
|
20446
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
20447
|
+
data?: Paths.GetEntityPortalWorkflowsBatch.RequestBody,
|
|
20448
|
+
config?: AxiosRequestConfig
|
|
20449
|
+
): OperationResponse<Paths.GetEntityPortalWorkflowsBatch.Responses.$200>
|
|
20450
|
+
}
|
|
19433
20451
|
['/v2/portal/metering/reading/photo']: {
|
|
19434
20452
|
/**
|
|
19435
|
-
* uploadMeterReadingPhoto -
|
|
20453
|
+
* uploadMeterReadingPhoto - uploadMeterReadingPhoto
|
|
19436
20454
|
*
|
|
19437
20455
|
* Uploads a Meter Reading photo and - if enabled - gives back data extracted from the photo.
|
|
19438
20456
|
*/
|
|
@@ -19444,7 +20462,7 @@ export interface PathsDictionary {
|
|
|
19444
20462
|
}
|
|
19445
20463
|
['/v2/portal/metering/reading']: {
|
|
19446
20464
|
/**
|
|
19447
|
-
* createMeterReading -
|
|
20465
|
+
* createMeterReading - createMeterReading
|
|
19448
20466
|
*
|
|
19449
20467
|
* Inserts a new meter reading.
|
|
19450
20468
|
*/
|
|
@@ -19456,7 +20474,9 @@ export interface PathsDictionary {
|
|
|
19456
20474
|
}
|
|
19457
20475
|
['/v2/portal/metering/reading/allowed-range/{meter_id}']: {
|
|
19458
20476
|
/**
|
|
19459
|
-
* getAllowedMeterReadingRange -
|
|
20477
|
+
* getAllowedMeterReadingRange - getAllowedMeterReadingRange
|
|
20478
|
+
*
|
|
20479
|
+
* Get allowed reading range for all counters of a meter from the configured
|
|
19460
20480
|
* third-party plausibility check hook using 'range' mode. This endpoint requires
|
|
19461
20481
|
* a plausibility check hook to be configured for the portal.
|
|
19462
20482
|
*
|
|
@@ -19469,7 +20489,7 @@ export interface PathsDictionary {
|
|
|
19469
20489
|
}
|
|
19470
20490
|
['/v2/portal/metering/readings']: {
|
|
19471
20491
|
/**
|
|
19472
|
-
* getMeterReadings -
|
|
20492
|
+
* getMeterReadings - getMeterReadings
|
|
19473
20493
|
*
|
|
19474
20494
|
* Fetches meter readings for a counter and optionally resolves Handlebars
|
|
19475
20495
|
* template strings against each reading object using @epilot/variables.
|
|
@@ -19746,7 +20766,7 @@ export interface PathsDictionary {
|
|
|
19746
20766
|
}
|
|
19747
20767
|
['/v2/portal/campaign/{campaign_id}/entity:status']: {
|
|
19748
20768
|
/**
|
|
19749
|
-
* updateCampaignPortalBlockStatus -
|
|
20769
|
+
* updateCampaignPortalBlockStatus - updateCampaignPortalBlockStatus
|
|
19750
20770
|
*
|
|
19751
20771
|
* Updates the status of a campaign portal block for multiple recipients.
|
|
19752
20772
|
*/
|
|
@@ -19756,6 +20776,54 @@ export interface PathsDictionary {
|
|
|
19756
20776
|
config?: AxiosRequestConfig
|
|
19757
20777
|
): OperationResponse<Paths.UpdateCampaignPortalBlockStatus.Responses.$200>
|
|
19758
20778
|
}
|
|
20779
|
+
['/v2/portal/notifications']: {
|
|
20780
|
+
/**
|
|
20781
|
+
* listPortalNotifications - listPortalNotifications
|
|
20782
|
+
*
|
|
20783
|
+
* Lists the 360 notifications addressed to the authenticated portal user, newest first. The organization and the portal user are derived from the authenticated session, so a user can only ever read their own notifications.
|
|
20784
|
+
*/
|
|
20785
|
+
'get'(
|
|
20786
|
+
parameters?: Parameters<Paths.ListPortalNotifications.QueryParameters> | null,
|
|
20787
|
+
data?: any,
|
|
20788
|
+
config?: AxiosRequestConfig
|
|
20789
|
+
): OperationResponse<Paths.ListPortalNotifications.Responses.$200>
|
|
20790
|
+
}
|
|
20791
|
+
['/v2/portal/notifications/unread-count']: {
|
|
20792
|
+
/**
|
|
20793
|
+
* getPortalNotificationsUnreadCount - getPortalNotificationsUnreadCount
|
|
20794
|
+
*
|
|
20795
|
+
* Returns the number of unread notifications for the authenticated portal user.
|
|
20796
|
+
*/
|
|
20797
|
+
'get'(
|
|
20798
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
20799
|
+
data?: any,
|
|
20800
|
+
config?: AxiosRequestConfig
|
|
20801
|
+
): OperationResponse<Paths.GetPortalNotificationsUnreadCount.Responses.$200>
|
|
20802
|
+
}
|
|
20803
|
+
['/v2/portal/notifications/read-all']: {
|
|
20804
|
+
/**
|
|
20805
|
+
* markAllPortalNotificationsRead - markAllPortalNotificationsRead
|
|
20806
|
+
*
|
|
20807
|
+
* Marks all notifications of the authenticated portal user as read.
|
|
20808
|
+
*/
|
|
20809
|
+
'put'(
|
|
20810
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
20811
|
+
data?: any,
|
|
20812
|
+
config?: AxiosRequestConfig
|
|
20813
|
+
): OperationResponse<Paths.MarkAllPortalNotificationsRead.Responses.$204>
|
|
20814
|
+
}
|
|
20815
|
+
['/v2/portal/notifications/{id}/read']: {
|
|
20816
|
+
/**
|
|
20817
|
+
* markPortalNotificationRead - markPortalNotificationRead
|
|
20818
|
+
*
|
|
20819
|
+
* Marks a single notification of the authenticated portal user as read.
|
|
20820
|
+
*/
|
|
20821
|
+
'put'(
|
|
20822
|
+
parameters?: Parameters<Paths.MarkPortalNotificationRead.PathParameters> | null,
|
|
20823
|
+
data?: any,
|
|
20824
|
+
config?: AxiosRequestConfig
|
|
20825
|
+
): OperationResponse<Paths.MarkPortalNotificationRead.Responses.$204>
|
|
20826
|
+
}
|
|
19759
20827
|
['/v2/portal/notifications/entity:status']: {
|
|
19760
20828
|
/**
|
|
19761
20829
|
* updateNotificationsStatus - updateNotificationsStatus
|
|
@@ -19999,7 +21067,6 @@ export interface PathsDictionary {
|
|
|
19999
21067
|
|
|
20000
21068
|
export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
|
|
20001
21069
|
|
|
20002
|
-
|
|
20003
21070
|
export type AcceptanceDecision = Components.Schemas.AcceptanceDecision;
|
|
20004
21071
|
export type AccountExistsRequest = Components.Schemas.AccountExistsRequest;
|
|
20005
21072
|
export type ActionLabel = Components.Schemas.ActionLabel;
|
|
@@ -20050,6 +21117,7 @@ export type EntityGetParams = Components.Schemas.EntityGetParams;
|
|
|
20050
21117
|
export type EntityId = Components.Schemas.EntityId;
|
|
20051
21118
|
export type EntityItem = Components.Schemas.EntityItem;
|
|
20052
21119
|
export type EntityMatchingConfig = Components.Schemas.EntityMatchingConfig;
|
|
21120
|
+
export type EntityPortalWorkflows = Components.Schemas.EntityPortalWorkflows;
|
|
20053
21121
|
export type EntityResponse = Components.Schemas.EntityResponse;
|
|
20054
21122
|
export type EntityResponseGroupedWithHits = Components.Schemas.EntityResponseGroupedWithHits;
|
|
20055
21123
|
export type EntityResponseWithHits = Components.Schemas.EntityResponseWithHits;
|
|
@@ -20082,6 +21150,7 @@ export type ExtraSchemaAttributes = Components.Schemas.ExtraSchemaAttributes;
|
|
|
20082
21150
|
export type FailedRuleErrorResp = Components.Schemas.FailedRuleErrorResp;
|
|
20083
21151
|
export type File = Components.Schemas.File;
|
|
20084
21152
|
export type FileItem = Components.Schemas.FileItem;
|
|
21153
|
+
export type FilePreviewResult = Components.Schemas.FilePreviewResult;
|
|
20085
21154
|
export type Grant = Components.Schemas.Grant;
|
|
20086
21155
|
export type IdentifierAttribute = Components.Schemas.IdentifierAttribute;
|
|
20087
21156
|
export type InstallmentEvent = Components.Schemas.InstallmentEvent;
|
|
@@ -20099,6 +21168,7 @@ export type MobileConfig = Components.Schemas.MobileConfig;
|
|
|
20099
21168
|
export type MobileConfigUpdate = Components.Schemas.MobileConfigUpdate;
|
|
20100
21169
|
export type MobileOtaConfig = Components.Schemas.MobileOtaConfig;
|
|
20101
21170
|
export type MoblieOIDCConfig = Components.Schemas.MoblieOIDCConfig;
|
|
21171
|
+
export type NotificationTriggerConfig = Components.Schemas.NotificationTriggerConfig;
|
|
20102
21172
|
export type OIDCProviderConfig = Components.Schemas.OIDCProviderConfig;
|
|
20103
21173
|
export type OIDCProviderMetadata = Components.Schemas.OIDCProviderMetadata;
|
|
20104
21174
|
export type Opportunity = Components.Schemas.Opportunity;
|
|
@@ -20106,6 +21176,7 @@ export type Order = Components.Schemas.Order;
|
|
|
20106
21176
|
export type OrganizationSettings = Components.Schemas.OrganizationSettings;
|
|
20107
21177
|
export type Origin = Components.Schemas.Origin;
|
|
20108
21178
|
export type OtaPortal = Components.Schemas.OtaPortal;
|
|
21179
|
+
export type OutstandingTask = Components.Schemas.OutstandingTask;
|
|
20109
21180
|
export type Page = Components.Schemas.Page;
|
|
20110
21181
|
export type PageRequest = Components.Schemas.PageRequest;
|
|
20111
21182
|
export type PaymentWidget = Components.Schemas.PaymentWidget;
|
|
@@ -20113,6 +21184,7 @@ export type PortalConfig = Components.Schemas.PortalConfig;
|
|
|
20113
21184
|
export type PortalConfigV3 = Components.Schemas.PortalConfigV3;
|
|
20114
21185
|
export type PortalDataExportColumn = Components.Schemas.PortalDataExportColumn;
|
|
20115
21186
|
export type PortalId = Components.Schemas.PortalId;
|
|
21187
|
+
export type PortalNotification = Components.Schemas.PortalNotification;
|
|
20116
21188
|
export type PortalTaskConfig = Components.Schemas.PortalTaskConfig;
|
|
20117
21189
|
export type PortalUser = Components.Schemas.PortalUser;
|
|
20118
21190
|
export type PortalUserRegistrationStatus = Components.Schemas.PortalUserRegistrationStatus;
|