ultracart_rest_api_v2_typescript 3.10.126 → 3.10.127
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/README.md +3 -2
- package/api.ts +41 -68
- package/dist/api.d.ts +41 -66
- package/dist/api.js +12 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.127
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install ultracart_rest_api_v2_typescript@3.10.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.127 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,7 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.10.127 | 03/29/2023 | internal development |
|
|
57
58
|
| 3.10.126 | 03/22/2023 | data warehouse internal dev |
|
|
58
59
|
| 3.10.125 | 03/22/2023 | dw initial framework |
|
|
59
60
|
| 3.10.124 | 03/22/2023 | order api - refundable response added manual_because_multiple_charges boolean field |
|
package/api.ts
CHANGED
|
@@ -20063,12 +20063,42 @@ export interface Experiment {
|
|
|
20063
20063
|
* @memberof Experiment
|
|
20064
20064
|
*/
|
|
20065
20065
|
objective_parameter?: string;
|
|
20066
|
+
/**
|
|
20067
|
+
* The current iteration of the OpenAI related experiment
|
|
20068
|
+
* @type {number}
|
|
20069
|
+
* @memberof Experiment
|
|
20070
|
+
*/
|
|
20071
|
+
openai_current_iteration?: number;
|
|
20072
|
+
/**
|
|
20073
|
+
* The type of OpenAI element being experimented on
|
|
20074
|
+
* @type {string}
|
|
20075
|
+
* @memberof Experiment
|
|
20076
|
+
*/
|
|
20077
|
+
openai_element_type?: Experiment.OpenaiElementTypeEnum;
|
|
20078
|
+
/**
|
|
20079
|
+
* The type of OpenAI model used
|
|
20080
|
+
* @type {string}
|
|
20081
|
+
* @memberof Experiment
|
|
20082
|
+
*/
|
|
20083
|
+
openai_model?: string;
|
|
20084
|
+
/**
|
|
20085
|
+
* The total number of iterations to perform on the experiment
|
|
20086
|
+
* @type {number}
|
|
20087
|
+
* @memberof Experiment
|
|
20088
|
+
*/
|
|
20089
|
+
openai_total_iterations?: number;
|
|
20066
20090
|
/**
|
|
20067
20091
|
* Type of optimization
|
|
20068
20092
|
* @type {string}
|
|
20069
20093
|
* @memberof Experiment
|
|
20070
20094
|
*/
|
|
20071
20095
|
optimization_type?: string;
|
|
20096
|
+
/**
|
|
20097
|
+
* Statistics p-value for the experiment
|
|
20098
|
+
* @type {number}
|
|
20099
|
+
* @memberof Experiment
|
|
20100
|
+
*/
|
|
20101
|
+
p_value?: number;
|
|
20072
20102
|
/**
|
|
20073
20103
|
* Total number of sessions in the experiment
|
|
20074
20104
|
* @type {number}
|
|
@@ -20118,6 +20148,15 @@ export interface Experiment {
|
|
|
20118
20148
|
* @namespace Experiment
|
|
20119
20149
|
*/
|
|
20120
20150
|
export namespace Experiment {
|
|
20151
|
+
/**
|
|
20152
|
+
* @export
|
|
20153
|
+
* @enum {string}
|
|
20154
|
+
*/
|
|
20155
|
+
export enum OpenaiElementTypeEnum {
|
|
20156
|
+
Headline = <any> 'headline',
|
|
20157
|
+
Text = <any> 'text',
|
|
20158
|
+
Textblock = <any> 'textblock'
|
|
20159
|
+
}
|
|
20121
20160
|
/**
|
|
20122
20161
|
* @export
|
|
20123
20162
|
* @enum {string}
|
|
@@ -33875,72 +33914,6 @@ export namespace ReportDataSetSchema {
|
|
|
33875
33914
|
}
|
|
33876
33915
|
}
|
|
33877
33916
|
|
|
33878
|
-
/**
|
|
33879
|
-
*
|
|
33880
|
-
* @export
|
|
33881
|
-
* @interface ReportDataSetSummary
|
|
33882
|
-
*/
|
|
33883
|
-
export interface ReportDataSetSummary {
|
|
33884
|
-
/**
|
|
33885
|
-
* A unique identifier assigned to the data set that is returned.
|
|
33886
|
-
* @type {string}
|
|
33887
|
-
* @memberof ReportDataSetSummary
|
|
33888
|
-
*/
|
|
33889
|
-
data_set_uuid?: string;
|
|
33890
|
-
/**
|
|
33891
|
-
* Error message if the query failed.
|
|
33892
|
-
* @type {string}
|
|
33893
|
-
* @memberof ReportDataSetSummary
|
|
33894
|
-
*/
|
|
33895
|
-
error_message?: string;
|
|
33896
|
-
/**
|
|
33897
|
-
* An identifier that can be used to help match up the returned data set
|
|
33898
|
-
* @type {string}
|
|
33899
|
-
* @memberof ReportDataSetSummary
|
|
33900
|
-
*/
|
|
33901
|
-
for_object_id?: string;
|
|
33902
|
-
/**
|
|
33903
|
-
* The type of object this data set is for
|
|
33904
|
-
* @type {string}
|
|
33905
|
-
* @memberof ReportDataSetSummary
|
|
33906
|
-
*/
|
|
33907
|
-
for_object_type?: ReportDataSetSummary.ForObjectTypeEnum;
|
|
33908
|
-
/**
|
|
33909
|
-
* The total number of results
|
|
33910
|
-
* @type {number}
|
|
33911
|
-
* @memberof ReportDataSetSummary
|
|
33912
|
-
*/
|
|
33913
|
-
max_results?: number;
|
|
33914
|
-
/**
|
|
33915
|
-
* The schema associated with the data set.
|
|
33916
|
-
* @type {Array<ReportDataSetSchema>}
|
|
33917
|
-
* @memberof ReportDataSetSummary
|
|
33918
|
-
*/
|
|
33919
|
-
schema?: Array<ReportDataSetSchema>;
|
|
33920
|
-
/**
|
|
33921
|
-
* Any other data that needs to be returned with the response to help the UI
|
|
33922
|
-
* @type {string}
|
|
33923
|
-
* @memberof ReportDataSetSummary
|
|
33924
|
-
*/
|
|
33925
|
-
user_data?: string;
|
|
33926
|
-
}
|
|
33927
|
-
|
|
33928
|
-
/**
|
|
33929
|
-
* @export
|
|
33930
|
-
* @namespace ReportDataSetSummary
|
|
33931
|
-
*/
|
|
33932
|
-
export namespace ReportDataSetSummary {
|
|
33933
|
-
/**
|
|
33934
|
-
* @export
|
|
33935
|
-
* @enum {string}
|
|
33936
|
-
*/
|
|
33937
|
-
export enum ForObjectTypeEnum {
|
|
33938
|
-
Schema = <any> 'schema',
|
|
33939
|
-
Filter = <any> 'filter',
|
|
33940
|
-
Visualization = <any> 'visualization'
|
|
33941
|
-
}
|
|
33942
|
-
}
|
|
33943
|
-
|
|
33944
33917
|
/**
|
|
33945
33918
|
*
|
|
33946
33919
|
* @export
|
|
@@ -34447,10 +34420,10 @@ export interface ReportWebsocketEvent {
|
|
|
34447
34420
|
event_type?: ReportWebsocketEvent.EventTypeEnum;
|
|
34448
34421
|
/**
|
|
34449
34422
|
*
|
|
34450
|
-
* @type {
|
|
34423
|
+
* @type {ReportDataSet}
|
|
34451
34424
|
* @memberof ReportWebsocketEvent
|
|
34452
34425
|
*/
|
|
34453
|
-
query_completion?:
|
|
34426
|
+
query_completion?: ReportDataSet;
|
|
34454
34427
|
}
|
|
34455
34428
|
|
|
34456
34429
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -19613,12 +19613,42 @@ export interface Experiment {
|
|
|
19613
19613
|
* @memberof Experiment
|
|
19614
19614
|
*/
|
|
19615
19615
|
objective_parameter?: string;
|
|
19616
|
+
/**
|
|
19617
|
+
* The current iteration of the OpenAI related experiment
|
|
19618
|
+
* @type {number}
|
|
19619
|
+
* @memberof Experiment
|
|
19620
|
+
*/
|
|
19621
|
+
openai_current_iteration?: number;
|
|
19622
|
+
/**
|
|
19623
|
+
* The type of OpenAI element being experimented on
|
|
19624
|
+
* @type {string}
|
|
19625
|
+
* @memberof Experiment
|
|
19626
|
+
*/
|
|
19627
|
+
openai_element_type?: Experiment.OpenaiElementTypeEnum;
|
|
19628
|
+
/**
|
|
19629
|
+
* The type of OpenAI model used
|
|
19630
|
+
* @type {string}
|
|
19631
|
+
* @memberof Experiment
|
|
19632
|
+
*/
|
|
19633
|
+
openai_model?: string;
|
|
19634
|
+
/**
|
|
19635
|
+
* The total number of iterations to perform on the experiment
|
|
19636
|
+
* @type {number}
|
|
19637
|
+
* @memberof Experiment
|
|
19638
|
+
*/
|
|
19639
|
+
openai_total_iterations?: number;
|
|
19616
19640
|
/**
|
|
19617
19641
|
* Type of optimization
|
|
19618
19642
|
* @type {string}
|
|
19619
19643
|
* @memberof Experiment
|
|
19620
19644
|
*/
|
|
19621
19645
|
optimization_type?: string;
|
|
19646
|
+
/**
|
|
19647
|
+
* Statistics p-value for the experiment
|
|
19648
|
+
* @type {number}
|
|
19649
|
+
* @memberof Experiment
|
|
19650
|
+
*/
|
|
19651
|
+
p_value?: number;
|
|
19622
19652
|
/**
|
|
19623
19653
|
* Total number of sessions in the experiment
|
|
19624
19654
|
* @type {number}
|
|
@@ -19667,6 +19697,15 @@ export interface Experiment {
|
|
|
19667
19697
|
* @namespace Experiment
|
|
19668
19698
|
*/
|
|
19669
19699
|
export declare namespace Experiment {
|
|
19700
|
+
/**
|
|
19701
|
+
* @export
|
|
19702
|
+
* @enum {string}
|
|
19703
|
+
*/
|
|
19704
|
+
enum OpenaiElementTypeEnum {
|
|
19705
|
+
Headline,
|
|
19706
|
+
Text,
|
|
19707
|
+
Textblock
|
|
19708
|
+
}
|
|
19670
19709
|
/**
|
|
19671
19710
|
* @export
|
|
19672
19711
|
* @enum {string}
|
|
@@ -33165,70 +33204,6 @@ export declare namespace ReportDataSetSchema {
|
|
|
33165
33204
|
TIMESTAMP
|
|
33166
33205
|
}
|
|
33167
33206
|
}
|
|
33168
|
-
/**
|
|
33169
|
-
*
|
|
33170
|
-
* @export
|
|
33171
|
-
* @interface ReportDataSetSummary
|
|
33172
|
-
*/
|
|
33173
|
-
export interface ReportDataSetSummary {
|
|
33174
|
-
/**
|
|
33175
|
-
* A unique identifier assigned to the data set that is returned.
|
|
33176
|
-
* @type {string}
|
|
33177
|
-
* @memberof ReportDataSetSummary
|
|
33178
|
-
*/
|
|
33179
|
-
data_set_uuid?: string;
|
|
33180
|
-
/**
|
|
33181
|
-
* Error message if the query failed.
|
|
33182
|
-
* @type {string}
|
|
33183
|
-
* @memberof ReportDataSetSummary
|
|
33184
|
-
*/
|
|
33185
|
-
error_message?: string;
|
|
33186
|
-
/**
|
|
33187
|
-
* An identifier that can be used to help match up the returned data set
|
|
33188
|
-
* @type {string}
|
|
33189
|
-
* @memberof ReportDataSetSummary
|
|
33190
|
-
*/
|
|
33191
|
-
for_object_id?: string;
|
|
33192
|
-
/**
|
|
33193
|
-
* The type of object this data set is for
|
|
33194
|
-
* @type {string}
|
|
33195
|
-
* @memberof ReportDataSetSummary
|
|
33196
|
-
*/
|
|
33197
|
-
for_object_type?: ReportDataSetSummary.ForObjectTypeEnum;
|
|
33198
|
-
/**
|
|
33199
|
-
* The total number of results
|
|
33200
|
-
* @type {number}
|
|
33201
|
-
* @memberof ReportDataSetSummary
|
|
33202
|
-
*/
|
|
33203
|
-
max_results?: number;
|
|
33204
|
-
/**
|
|
33205
|
-
* The schema associated with the data set.
|
|
33206
|
-
* @type {Array<ReportDataSetSchema>}
|
|
33207
|
-
* @memberof ReportDataSetSummary
|
|
33208
|
-
*/
|
|
33209
|
-
schema?: Array<ReportDataSetSchema>;
|
|
33210
|
-
/**
|
|
33211
|
-
* Any other data that needs to be returned with the response to help the UI
|
|
33212
|
-
* @type {string}
|
|
33213
|
-
* @memberof ReportDataSetSummary
|
|
33214
|
-
*/
|
|
33215
|
-
user_data?: string;
|
|
33216
|
-
}
|
|
33217
|
-
/**
|
|
33218
|
-
* @export
|
|
33219
|
-
* @namespace ReportDataSetSummary
|
|
33220
|
-
*/
|
|
33221
|
-
export declare namespace ReportDataSetSummary {
|
|
33222
|
-
/**
|
|
33223
|
-
* @export
|
|
33224
|
-
* @enum {string}
|
|
33225
|
-
*/
|
|
33226
|
-
enum ForObjectTypeEnum {
|
|
33227
|
-
Schema,
|
|
33228
|
-
Filter,
|
|
33229
|
-
Visualization
|
|
33230
|
-
}
|
|
33231
|
-
}
|
|
33232
33207
|
/**
|
|
33233
33208
|
*
|
|
33234
33209
|
* @export
|
|
@@ -33720,10 +33695,10 @@ export interface ReportWebsocketEvent {
|
|
|
33720
33695
|
event_type?: ReportWebsocketEvent.EventTypeEnum;
|
|
33721
33696
|
/**
|
|
33722
33697
|
*
|
|
33723
|
-
* @type {
|
|
33698
|
+
* @type {ReportDataSet}
|
|
33724
33699
|
* @memberof ReportWebsocketEvent
|
|
33725
33700
|
*/
|
|
33726
|
-
query_completion?:
|
|
33701
|
+
query_completion?: ReportDataSet;
|
|
33727
33702
|
}
|
|
33728
33703
|
/**
|
|
33729
33704
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -29,8 +29,8 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
29
29
|
})();
|
|
30
30
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31
31
|
exports.OrderItem = exports.OrderFraudScore = exports.OrderFormat = exports.OrderEdiDocument = exports.OrderAutoOrder = exports.OrderAffiliateLedger = exports.Order = exports.OauthTokenResponse = exports.ItemThirdPartyEmailMarketing = exports.ItemTax = exports.ItemTag = exports.ItemShippingMethod = exports.ItemShippingDestinationRestriction = exports.ItemRestrictionItem = exports.ItemRelatedItem = exports.ItemOptionValue = exports.ItemOption = exports.ItemContentMultimedia = exports.ItemAutoOrderStep = exports.Experiment = exports.EmailPerformance = exports.EmailCommseqStep = exports.Distance = exports.ConversationWebsocketMessage = exports.ConversationWebchatQueueStatusUpdateRequest = exports.ConversationWebchatQueueStatusAgent = exports.ConversationSummary = exports.ConversationSentiment = exports.ConversationMessageTransportStatus = exports.ConversationMessage = exports.ConversationEventRRWeb = exports.ConversationEngagementEquationFunction = exports.ConversationEngagement = exports.ConversationAgentProfile = exports.Conversation = exports.CheckoutHandoffRequest = exports.ChannelPartnerOrderItem = exports.ChannelPartnerOrder = exports.CartKitComponentOption = exports.CartItemOption = exports.CartItemMultimedia = exports.CartCustomerProfileCreditCard = exports.AutoOrderItemSimpleSchedule = exports.AutoOrderItem = exports.AutoOrder = exports.AffiliateLink = exports.AffiliateLedger = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = void 0;
|
|
32
|
-
exports.CustomerApiFp = exports.CustomerApiFetchParamCreator = exports.CouponApi = exports.CouponApiFactory = exports.CouponApiFp = exports.CouponApiFetchParamCreator = exports.ConversationApi = exports.ConversationApiFactory = exports.ConversationApiFp = exports.ConversationApiFetchParamCreator = exports.CheckoutApi = exports.CheckoutApiFactory = exports.CheckoutApiFp = exports.CheckoutApiFetchParamCreator = exports.ChargebackApi = exports.ChargebackApiFactory = exports.ChargebackApiFp = exports.ChargebackApiFetchParamCreator = exports.ChannelPartnerApi = exports.ChannelPartnerApiFactory = exports.ChannelPartnerApiFp = exports.ChannelPartnerApiFetchParamCreator = exports.AutoOrderApi = exports.AutoOrderApiFactory = exports.AutoOrderApiFp = exports.AutoOrderApiFetchParamCreator = exports.AffiliateApi = exports.AffiliateApiFactory = exports.AffiliateApiFp = exports.AffiliateApiFetchParamCreator = exports.Weight = exports.Webhook = exports.TempMultimedia = exports.ReportWebsocketEvent = exports.ReportPageVisualizationMetric = exports.ReportPageVisualization = exports.ReportFilter = exports.ReportExecuteQueriesRequest = exports.ReportDataSourceSchema = exports.
|
|
33
|
-
exports.WebhookApi = exports.WebhookApiFactory = exports.WebhookApiFp = exports.WebhookApiFetchParamCreator = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiFetchParamCreator = exports.TaxApi = exports.TaxApiFactory = exports.TaxApiFp = exports.TaxApiFetchParamCreator = exports.StorefrontApi = exports.StorefrontApiFactory = exports.StorefrontApiFp = exports.StorefrontApiFetchParamCreator = exports.SsoApi = exports.SsoApiFactory = exports.SsoApiFp = exports.SsoApiFetchParamCreator = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiFetchParamCreator = exports.OauthApi = exports.OauthApiFactory = exports.OauthApiFp = exports.OauthApiFetchParamCreator = exports.ItemApi = exports.ItemApiFactory = exports.ItemApiFp = exports.ItemApiFetchParamCreator = exports.IntegrationLogApi = exports.IntegrationLogApiFactory = exports.IntegrationLogApiFp = exports.IntegrationLogApiFetchParamCreator = exports.GiftCertificateApi = exports.GiftCertificateApiFactory = exports.GiftCertificateApiFp = exports.GiftCertificateApiFetchParamCreator = exports.FulfillmentApi = exports.FulfillmentApiFactory = exports.FulfillmentApiFp = exports.FulfillmentApiFetchParamCreator = exports.DatawarehouseApi = exports.DatawarehouseApiFactory = exports.DatawarehouseApiFp = exports.DatawarehouseApiFetchParamCreator = exports.CustomerApi =
|
|
32
|
+
exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiFetchParamCreator = exports.CouponApi = exports.CouponApiFactory = exports.CouponApiFp = exports.CouponApiFetchParamCreator = exports.ConversationApi = exports.ConversationApiFactory = exports.ConversationApiFp = exports.ConversationApiFetchParamCreator = exports.CheckoutApi = exports.CheckoutApiFactory = exports.CheckoutApiFp = exports.CheckoutApiFetchParamCreator = exports.ChargebackApi = exports.ChargebackApiFactory = exports.ChargebackApiFp = exports.ChargebackApiFetchParamCreator = exports.ChannelPartnerApi = exports.ChannelPartnerApiFactory = exports.ChannelPartnerApiFp = exports.ChannelPartnerApiFetchParamCreator = exports.AutoOrderApi = exports.AutoOrderApiFactory = exports.AutoOrderApiFp = exports.AutoOrderApiFetchParamCreator = exports.AffiliateApi = exports.AffiliateApiFactory = exports.AffiliateApiFp = exports.AffiliateApiFetchParamCreator = exports.Weight = exports.Webhook = exports.TempMultimedia = exports.ReportWebsocketEvent = exports.ReportPageVisualizationMetric = exports.ReportPageVisualization = exports.ReportFilter = exports.ReportExecuteQueriesRequest = exports.ReportDataSourceSchema = exports.ReportDataSetSchema = exports.ReportDataSetQuery = exports.ReportDataSet = exports.Report = exports.PointOfSaleReader = exports.OrderQuery = exports.OrderPaymentECheck = exports.OrderPaymentCreditCard = exports.OrderPayment = exports.OrderItemOption = void 0;
|
|
33
|
+
exports.WebhookApi = exports.WebhookApiFactory = exports.WebhookApiFp = exports.WebhookApiFetchParamCreator = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiFetchParamCreator = exports.TaxApi = exports.TaxApiFactory = exports.TaxApiFp = exports.TaxApiFetchParamCreator = exports.StorefrontApi = exports.StorefrontApiFactory = exports.StorefrontApiFp = exports.StorefrontApiFetchParamCreator = exports.SsoApi = exports.SsoApiFactory = exports.SsoApiFp = exports.SsoApiFetchParamCreator = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiFetchParamCreator = exports.OauthApi = exports.OauthApiFactory = exports.OauthApiFp = exports.OauthApiFetchParamCreator = exports.ItemApi = exports.ItemApiFactory = exports.ItemApiFp = exports.ItemApiFetchParamCreator = exports.IntegrationLogApi = exports.IntegrationLogApiFactory = exports.IntegrationLogApiFp = exports.IntegrationLogApiFetchParamCreator = exports.GiftCertificateApi = exports.GiftCertificateApiFactory = exports.GiftCertificateApiFp = exports.GiftCertificateApiFetchParamCreator = exports.FulfillmentApi = exports.FulfillmentApiFactory = exports.FulfillmentApiFp = exports.FulfillmentApiFetchParamCreator = exports.DatawarehouseApi = exports.DatawarehouseApiFactory = exports.DatawarehouseApiFp = exports.DatawarehouseApiFetchParamCreator = exports.CustomerApi = void 0;
|
|
34
34
|
var url = require("url");
|
|
35
35
|
var portableFetch = require("portable-fetch");
|
|
36
36
|
var BASE_PATH = "https://secure.ultracart.com/rest/v2".replace(/\/+$/, "");
|
|
@@ -721,6 +721,16 @@ var EmailPerformance;
|
|
|
721
721
|
*/
|
|
722
722
|
var Experiment;
|
|
723
723
|
(function (Experiment) {
|
|
724
|
+
/**
|
|
725
|
+
* @export
|
|
726
|
+
* @enum {string}
|
|
727
|
+
*/
|
|
728
|
+
var OpenaiElementTypeEnum;
|
|
729
|
+
(function (OpenaiElementTypeEnum) {
|
|
730
|
+
OpenaiElementTypeEnum[OpenaiElementTypeEnum["Headline"] = 'headline'] = "Headline";
|
|
731
|
+
OpenaiElementTypeEnum[OpenaiElementTypeEnum["Text"] = 'text'] = "Text";
|
|
732
|
+
OpenaiElementTypeEnum[OpenaiElementTypeEnum["Textblock"] = 'textblock'] = "Textblock";
|
|
733
|
+
})(OpenaiElementTypeEnum = Experiment.OpenaiElementTypeEnum || (Experiment.OpenaiElementTypeEnum = {}));
|
|
724
734
|
/**
|
|
725
735
|
* @export
|
|
726
736
|
* @enum {string}
|
|
@@ -1332,23 +1342,6 @@ var ReportDataSetSchema;
|
|
|
1332
1342
|
TypeEnum[TypeEnum["TIMESTAMP"] = 'TIMESTAMP'] = "TIMESTAMP";
|
|
1333
1343
|
})(TypeEnum = ReportDataSetSchema.TypeEnum || (ReportDataSetSchema.TypeEnum = {}));
|
|
1334
1344
|
})(ReportDataSetSchema = exports.ReportDataSetSchema || (exports.ReportDataSetSchema = {}));
|
|
1335
|
-
/**
|
|
1336
|
-
* @export
|
|
1337
|
-
* @namespace ReportDataSetSummary
|
|
1338
|
-
*/
|
|
1339
|
-
var ReportDataSetSummary;
|
|
1340
|
-
(function (ReportDataSetSummary) {
|
|
1341
|
-
/**
|
|
1342
|
-
* @export
|
|
1343
|
-
* @enum {string}
|
|
1344
|
-
*/
|
|
1345
|
-
var ForObjectTypeEnum;
|
|
1346
|
-
(function (ForObjectTypeEnum) {
|
|
1347
|
-
ForObjectTypeEnum[ForObjectTypeEnum["Schema"] = 'schema'] = "Schema";
|
|
1348
|
-
ForObjectTypeEnum[ForObjectTypeEnum["Filter"] = 'filter'] = "Filter";
|
|
1349
|
-
ForObjectTypeEnum[ForObjectTypeEnum["Visualization"] = 'visualization'] = "Visualization";
|
|
1350
|
-
})(ForObjectTypeEnum = ReportDataSetSummary.ForObjectTypeEnum || (ReportDataSetSummary.ForObjectTypeEnum = {}));
|
|
1351
|
-
})(ReportDataSetSummary = exports.ReportDataSetSummary || (exports.ReportDataSetSummary = {}));
|
|
1352
1345
|
/**
|
|
1353
1346
|
* @export
|
|
1354
1347
|
* @namespace ReportDataSourceSchema
|