ultracart_rest_api_v2_typescript 4.0.36-RC → 4.0.39-RC

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.
Files changed (38) hide show
  1. package/.openapi-generator/FILES +5 -0
  2. package/README.md +5 -2
  3. package/dist/apis/ConversationApi.d.ts +9 -9
  4. package/dist/apis/ConversationApi.js +6 -4
  5. package/dist/models/AutoOrderItem.d.ts +12 -0
  6. package/dist/models/AutoOrderItem.js +4 -0
  7. package/dist/models/ConversationAgentAuth.d.ts +57 -0
  8. package/dist/models/ConversationAgentAuth.js +52 -0
  9. package/dist/models/ConversationAgentAuthResponse.d.ts +15 -11
  10. package/dist/models/ConversationAgentAuthResponse.js +14 -10
  11. package/dist/models/ConversationMessage.d.ts +7 -0
  12. package/dist/models/ConversationMessage.js +3 -0
  13. package/dist/models/ConversationMessageTransportStatus.d.ts +33 -0
  14. package/dist/models/ConversationMessageTransportStatus.js +44 -0
  15. package/dist/models/ConversationMultimediaUploadUrl.d.ts +33 -0
  16. package/dist/models/ConversationMultimediaUploadUrl.js +44 -0
  17. package/dist/models/ConversationMultimediaUploadUrlResponse.d.ts +55 -0
  18. package/dist/models/ConversationMultimediaUploadUrlResponse.js +54 -0
  19. package/dist/models/ConversationResponse.d.ts +55 -0
  20. package/dist/models/ConversationResponse.js +54 -0
  21. package/dist/models/ConversationStartResponse.d.ts +3 -8
  22. package/dist/models/ConversationStartResponse.js +3 -4
  23. package/dist/models/EmailCommseqPostcard.d.ts +1 -1
  24. package/dist/models/index.d.ts +5 -0
  25. package/dist/models/index.js +5 -0
  26. package/package.json +1 -1
  27. package/src/apis/ConversationApi.ts +18 -14
  28. package/src/models/AutoOrderItem.ts +16 -0
  29. package/src/models/ConversationAgentAuth.ts +96 -0
  30. package/src/models/ConversationAgentAuthResponse.ts +46 -21
  31. package/src/models/ConversationMessage.ts +15 -0
  32. package/src/models/ConversationMessageTransportStatus.ts +64 -0
  33. package/src/models/ConversationMultimediaUploadUrl.ts +64 -0
  34. package/src/models/ConversationMultimediaUploadUrlResponse.ts +113 -0
  35. package/src/models/ConversationResponse.ts +113 -0
  36. package/src/models/ConversationStartResponse.ts +11 -12
  37. package/src/models/EmailCommseqPostcard.ts +1 -1
  38. package/src/models/index.ts +5 -0
@@ -140,9 +140,14 @@ src/models/CheckoutSetupBrowserKeyResponse.ts
140
140
  src/models/CheckoutStateProvinceResponse.ts
141
141
  src/models/CityStateZip.ts
142
142
  src/models/Conversation.ts
143
+ src/models/ConversationAgentAuth.ts
143
144
  src/models/ConversationAgentAuthResponse.ts
144
145
  src/models/ConversationMessage.ts
146
+ src/models/ConversationMessageTransportStatus.ts
147
+ src/models/ConversationMultimediaUploadUrl.ts
148
+ src/models/ConversationMultimediaUploadUrlResponse.ts
145
149
  src/models/ConversationParticipant.ts
150
+ src/models/ConversationResponse.ts
146
151
  src/models/ConversationStartRequest.ts
147
152
  src/models/ConversationStartResponse.ts
148
153
  src/models/ConversationSummary.ts
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@4.0.36-RC
1
+ ## ultracart_rest_api_v2_typescript@4.0.39-RC
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@4.0.36-RC --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.39-RC --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,9 @@ Not every change is committed to every SDK.
54
54
 
55
55
  | Version | Date | Comments |
56
56
  | --: | :-: | --- |
57
+ | 4.0.39-RC | 07/21/2022 | conversation response types improvements |
58
+ | 4.0.38-RC | 07/21/2022 | conversation bugfix for poor response objects |
59
+ | 4.0.37-RC | 07/20/2022 | conversation participant name added |
57
60
  | 4.0.36-RC | 07/18/2022 | twilio dev |
58
61
  | 4.0.35-RC | 07/14/2022 | Add channel storefront_oid to the customer activity record |
59
62
  | 4.0.34-RC | 07/11/2022 | Customer API - mergeCustomer method |
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import { Conversation, ConversationAgentAuthResponse, ConversationStartRequest, ConversationStartResponse, ConversationsResponse } from '../models';
13
+ import { ConversationAgentAuthResponse, ConversationMultimediaUploadUrlResponse, ConversationResponse, ConversationStartRequest, ConversationStartResponse, ConversationsResponse } from '../models';
14
14
  export interface GetConversationRequest {
15
15
  conversationUuid: string;
16
16
  }
@@ -58,12 +58,12 @@ export interface ConversationApiInterface {
58
58
  * @throws {RequiredError}
59
59
  * @memberof ConversationApiInterface
60
60
  */
61
- getConversationRaw(requestParameters: GetConversationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Conversation>>;
61
+ getConversationRaw(requestParameters: GetConversationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ConversationResponse>>;
62
62
  /**
63
63
  * Retrieve a conversation including the participants and messages
64
64
  * Retrieve a conversation
65
65
  */
66
- getConversation(requestParameters: GetConversationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Conversation>;
66
+ getConversation(requestParameters: GetConversationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ConversationResponse>;
67
67
  /**
68
68
  * Get a presigned conersation multimedia upload URL
69
69
  * @summary Get a presigned conersation multimedia upload URL
@@ -72,12 +72,12 @@ export interface ConversationApiInterface {
72
72
  * @throws {RequiredError}
73
73
  * @memberof ConversationApiInterface
74
74
  */
75
- getConversationMultimediaUploadUrlRaw(requestParameters: GetConversationMultimediaUploadUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
75
+ getConversationMultimediaUploadUrlRaw(requestParameters: GetConversationMultimediaUploadUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ConversationMultimediaUploadUrlResponse>>;
76
76
  /**
77
77
  * Get a presigned conersation multimedia upload URL
78
78
  * Get a presigned conersation multimedia upload URL
79
79
  */
80
- getConversationMultimediaUploadUrl(requestParameters: GetConversationMultimediaUploadUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
80
+ getConversationMultimediaUploadUrl(requestParameters: GetConversationMultimediaUploadUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ConversationMultimediaUploadUrlResponse>;
81
81
  /**
82
82
  * Retrieve a list of conversation summaries that are ordered newest to oldest, include the most recent message and whether its been read.
83
83
  * @summary Retrieve a list of conversation summaries newest to oldest
@@ -154,22 +154,22 @@ export declare class ConversationApi extends runtime.BaseAPI implements Conversa
154
154
  * Retrieve a conversation including the participants and messages
155
155
  * Retrieve a conversation
156
156
  */
157
- getConversationRaw(requestParameters: GetConversationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Conversation>>;
157
+ getConversationRaw(requestParameters: GetConversationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ConversationResponse>>;
158
158
  /**
159
159
  * Retrieve a conversation including the participants and messages
160
160
  * Retrieve a conversation
161
161
  */
162
- getConversation(requestParameters: GetConversationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Conversation>;
162
+ getConversation(requestParameters: GetConversationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ConversationResponse>;
163
163
  /**
164
164
  * Get a presigned conersation multimedia upload URL
165
165
  * Get a presigned conersation multimedia upload URL
166
166
  */
167
- getConversationMultimediaUploadUrlRaw(requestParameters: GetConversationMultimediaUploadUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
167
+ getConversationMultimediaUploadUrlRaw(requestParameters: GetConversationMultimediaUploadUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ConversationMultimediaUploadUrlResponse>>;
168
168
  /**
169
169
  * Get a presigned conersation multimedia upload URL
170
170
  * Get a presigned conersation multimedia upload URL
171
171
  */
172
- getConversationMultimediaUploadUrl(requestParameters: GetConversationMultimediaUploadUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
172
+ getConversationMultimediaUploadUrl(requestParameters: GetConversationMultimediaUploadUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ConversationMultimediaUploadUrlResponse>;
173
173
  /**
174
174
  * Retrieve a list of conversation summaries that are ordered newest to oldest, include the most recent message and whether its been read.
175
175
  * Retrieve a list of conversation summaries newest to oldest
@@ -167,7 +167,7 @@ var ConversationApi = /** @class */ (function (_super) {
167
167
  }, initOverrides)];
168
168
  case 3:
169
169
  response = _c.sent();
170
- return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, models_1.ConversationFromJSON)(jsonValue); })];
170
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, models_1.ConversationResponseFromJSON)(jsonValue); })];
171
171
  }
172
172
  });
173
173
  });
@@ -226,7 +226,7 @@ var ConversationApi = /** @class */ (function (_super) {
226
226
  }, initOverrides)];
227
227
  case 3:
228
228
  response = _c.sent();
229
- return [2 /*return*/, new runtime.VoidApiResponse(response)];
229
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, models_1.ConversationMultimediaUploadUrlResponseFromJSON)(jsonValue); })];
230
230
  }
231
231
  });
232
232
  });
@@ -237,12 +237,14 @@ var ConversationApi = /** @class */ (function (_super) {
237
237
  */
238
238
  ConversationApi.prototype.getConversationMultimediaUploadUrl = function (requestParameters, initOverrides) {
239
239
  return __awaiter(this, void 0, void 0, function () {
240
+ var response;
240
241
  return __generator(this, function (_a) {
241
242
  switch (_a.label) {
242
243
  case 0: return [4 /*yield*/, this.getConversationMultimediaUploadUrlRaw(requestParameters, initOverrides)];
243
244
  case 1:
244
- _a.sent();
245
- return [2 /*return*/];
245
+ response = _a.sent();
246
+ return [4 /*yield*/, response.value()];
247
+ case 2: return [2 /*return*/, _a.sent()];
246
248
  }
247
249
  });
248
250
  });
@@ -60,6 +60,12 @@ export interface AutoOrderItem {
60
60
  * @memberof AutoOrderItem
61
61
  */
62
62
  auto_order_item_oid?: number;
63
+ /**
64
+ * Date/time of the first order of this item. Null if item added to auto order and has not been rebilled yet.
65
+ * @type {string}
66
+ * @memberof AutoOrderItem
67
+ */
68
+ first_order_dts?: string;
63
69
  /**
64
70
  * Frequency of the rebill if not a fixed schedule
65
71
  * @type {string}
@@ -126,6 +132,12 @@ export interface AutoOrderItem {
126
132
  * @memberof AutoOrderItem
127
133
  */
128
134
  original_quantity?: number;
135
+ /**
136
+ * True if paused. This field is an object instead of a primitive for backwards compatibility.
137
+ * @type {boolean}
138
+ * @memberof AutoOrderItem
139
+ */
140
+ paused?: boolean;
129
141
  /**
130
142
  * The PayPal Payer ID tied to this item
131
143
  * @type {string}
@@ -52,6 +52,7 @@ function AutoOrderItemFromJSONTyped(json, ignoreDiscriminator) {
52
52
  'arbitrary_unit_cost': !(0, runtime_1.exists)(json, 'arbitrary_unit_cost') ? undefined : json['arbitrary_unit_cost'],
53
53
  'arbitrary_unit_cost_remaining_orders': !(0, runtime_1.exists)(json, 'arbitrary_unit_cost_remaining_orders') ? undefined : json['arbitrary_unit_cost_remaining_orders'],
54
54
  'auto_order_item_oid': !(0, runtime_1.exists)(json, 'auto_order_item_oid') ? undefined : json['auto_order_item_oid'],
55
+ 'first_order_dts': !(0, runtime_1.exists)(json, 'first_order_dts') ? undefined : json['first_order_dts'],
55
56
  'frequency': !(0, runtime_1.exists)(json, 'frequency') ? undefined : json['frequency'],
56
57
  'future_schedules': !(0, runtime_1.exists)(json, 'future_schedules') ? undefined : (json['future_schedules'].map(AutoOrderItemFutureSchedule_1.AutoOrderItemFutureScheduleFromJSON)),
57
58
  'last_order_dts': !(0, runtime_1.exists)(json, 'last_order_dts') ? undefined : json['last_order_dts'],
@@ -63,6 +64,7 @@ function AutoOrderItemFromJSONTyped(json, ignoreDiscriminator) {
63
64
  'options': !(0, runtime_1.exists)(json, 'options') ? undefined : (json['options'].map(AutoOrderItemOption_1.AutoOrderItemOptionFromJSON)),
64
65
  'original_item_id': !(0, runtime_1.exists)(json, 'original_item_id') ? undefined : json['original_item_id'],
65
66
  'original_quantity': !(0, runtime_1.exists)(json, 'original_quantity') ? undefined : json['original_quantity'],
67
+ 'paused': !(0, runtime_1.exists)(json, 'paused') ? undefined : json['paused'],
66
68
  'paypal_payer_id': !(0, runtime_1.exists)(json, 'paypal_payer_id') ? undefined : json['paypal_payer_id'],
67
69
  'paypal_recurring_payment_profile_id': !(0, runtime_1.exists)(json, 'paypal_recurring_payment_profile_id') ? undefined : json['paypal_recurring_payment_profile_id'],
68
70
  'preshipment_notice_sent': !(0, runtime_1.exists)(json, 'preshipment_notice_sent') ? undefined : json['preshipment_notice_sent'],
@@ -87,6 +89,7 @@ function AutoOrderItemToJSON(value) {
87
89
  'arbitrary_unit_cost': value.arbitrary_unit_cost,
88
90
  'arbitrary_unit_cost_remaining_orders': value.arbitrary_unit_cost_remaining_orders,
89
91
  'auto_order_item_oid': value.auto_order_item_oid,
92
+ 'first_order_dts': value.first_order_dts,
90
93
  'frequency': value.frequency,
91
94
  'future_schedules': value.future_schedules === undefined ? undefined : (value.future_schedules.map(AutoOrderItemFutureSchedule_1.AutoOrderItemFutureScheduleToJSON)),
92
95
  'last_order_dts': value.last_order_dts,
@@ -98,6 +101,7 @@ function AutoOrderItemToJSON(value) {
98
101
  'options': value.options === undefined ? undefined : (value.options.map(AutoOrderItemOption_1.AutoOrderItemOptionToJSON)),
99
102
  'original_item_id': value.original_item_id,
100
103
  'original_quantity': value.original_quantity,
104
+ 'paused': value.paused,
101
105
  'paypal_payer_id': value.paypal_payer_id,
102
106
  'paypal_recurring_payment_profile_id': value.paypal_recurring_payment_profile_id,
103
107
  'preshipment_notice_sent': value.preshipment_notice_sent,
@@ -0,0 +1,57 @@
1
+ /**
2
+ * UltraCart Rest API V2
3
+ * UltraCart REST API Version 2
4
+ *
5
+ * The version of the OpenAPI document: 2.0.0
6
+ * Contact: support@ultracart.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ConversationAgentAuth
16
+ */
17
+ export interface ConversationAgentAuth {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ConversationAgentAuth
22
+ */
23
+ conversation_participant_arn?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ConversationAgentAuth
28
+ */
29
+ conversation_participant_name?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof ConversationAgentAuth
34
+ */
35
+ jwt?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof ConversationAgentAuth
40
+ */
41
+ merchant_id?: string;
42
+ /**
43
+ *
44
+ * @type {Array<string>}
45
+ * @memberof ConversationAgentAuth
46
+ */
47
+ twilio_phone_numbers?: Array<string>;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof ConversationAgentAuth
52
+ */
53
+ websocket_url?: string;
54
+ }
55
+ export declare function ConversationAgentAuthFromJSON(json: any): ConversationAgentAuth;
56
+ export declare function ConversationAgentAuthFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationAgentAuth;
57
+ export declare function ConversationAgentAuthToJSON(value?: ConversationAgentAuth | null): any;
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UltraCart Rest API V2
6
+ * UltraCart REST API Version 2
7
+ *
8
+ * The version of the OpenAPI document: 2.0.0
9
+ * Contact: support@ultracart.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ConversationAgentAuthToJSON = exports.ConversationAgentAuthFromJSONTyped = exports.ConversationAgentAuthFromJSON = void 0;
17
+ var runtime_1 = require("../runtime");
18
+ function ConversationAgentAuthFromJSON(json) {
19
+ return ConversationAgentAuthFromJSONTyped(json, false);
20
+ }
21
+ exports.ConversationAgentAuthFromJSON = ConversationAgentAuthFromJSON;
22
+ function ConversationAgentAuthFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'conversation_participant_arn': !(0, runtime_1.exists)(json, 'conversation_participant_arn') ? undefined : json['conversation_participant_arn'],
28
+ 'conversation_participant_name': !(0, runtime_1.exists)(json, 'conversation_participant_name') ? undefined : json['conversation_participant_name'],
29
+ 'jwt': !(0, runtime_1.exists)(json, 'jwt') ? undefined : json['jwt'],
30
+ 'merchant_id': !(0, runtime_1.exists)(json, 'merchant_id') ? undefined : json['merchant_id'],
31
+ 'twilio_phone_numbers': !(0, runtime_1.exists)(json, 'twilio_phone_numbers') ? undefined : json['twilio_phone_numbers'],
32
+ 'websocket_url': !(0, runtime_1.exists)(json, 'websocket_url') ? undefined : json['websocket_url'],
33
+ };
34
+ }
35
+ exports.ConversationAgentAuthFromJSONTyped = ConversationAgentAuthFromJSONTyped;
36
+ function ConversationAgentAuthToJSON(value) {
37
+ if (value === undefined) {
38
+ return undefined;
39
+ }
40
+ if (value === null) {
41
+ return null;
42
+ }
43
+ return {
44
+ 'conversation_participant_arn': value.conversation_participant_arn,
45
+ 'conversation_participant_name': value.conversation_participant_name,
46
+ 'jwt': value.jwt,
47
+ 'merchant_id': value.merchant_id,
48
+ 'twilio_phone_numbers': value.twilio_phone_numbers,
49
+ 'websocket_url': value.websocket_url,
50
+ };
51
+ }
52
+ exports.ConversationAgentAuthToJSON = ConversationAgentAuthToJSON;
@@ -9,6 +9,10 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { ConversationAgentAuth } from './ConversationAgentAuth';
13
+ import { ModelError } from './ModelError';
14
+ import { ResponseMetadata } from './ResponseMetadata';
15
+ import { Warning } from './Warning';
12
16
  /**
13
17
  *
14
18
  * @export
@@ -17,34 +21,34 @@
17
21
  export interface ConversationAgentAuthResponse {
18
22
  /**
19
23
  *
20
- * @type {string}
24
+ * @type {ConversationAgentAuth}
21
25
  * @memberof ConversationAgentAuthResponse
22
26
  */
23
- conversation_participant_arn?: string;
27
+ agent_auth?: ConversationAgentAuth;
24
28
  /**
25
29
  *
26
- * @type {string}
30
+ * @type {ModelError}
27
31
  * @memberof ConversationAgentAuthResponse
28
32
  */
29
- jwt?: string;
33
+ error?: ModelError;
30
34
  /**
31
35
  *
32
- * @type {string}
36
+ * @type {ResponseMetadata}
33
37
  * @memberof ConversationAgentAuthResponse
34
38
  */
35
- merchant_id?: string;
39
+ metadata?: ResponseMetadata;
36
40
  /**
37
- *
38
- * @type {Array<string>}
41
+ * Indicates if API call was successful
42
+ * @type {boolean}
39
43
  * @memberof ConversationAgentAuthResponse
40
44
  */
41
- twilio_phone_numbers?: Array<string>;
45
+ success?: boolean;
42
46
  /**
43
47
  *
44
- * @type {string}
48
+ * @type {Warning}
45
49
  * @memberof ConversationAgentAuthResponse
46
50
  */
47
- websocket_url?: string;
51
+ warning?: Warning;
48
52
  }
49
53
  export declare function ConversationAgentAuthResponseFromJSON(json: any): ConversationAgentAuthResponse;
50
54
  export declare function ConversationAgentAuthResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationAgentAuthResponse;
@@ -15,6 +15,10 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.ConversationAgentAuthResponseToJSON = exports.ConversationAgentAuthResponseFromJSONTyped = exports.ConversationAgentAuthResponseFromJSON = void 0;
17
17
  var runtime_1 = require("../runtime");
18
+ var ConversationAgentAuth_1 = require("./ConversationAgentAuth");
19
+ var ModelError_1 = require("./ModelError");
20
+ var ResponseMetadata_1 = require("./ResponseMetadata");
21
+ var Warning_1 = require("./Warning");
18
22
  function ConversationAgentAuthResponseFromJSON(json) {
19
23
  return ConversationAgentAuthResponseFromJSONTyped(json, false);
20
24
  }
@@ -24,11 +28,11 @@ function ConversationAgentAuthResponseFromJSONTyped(json, ignoreDiscriminator) {
24
28
  return json;
25
29
  }
26
30
  return {
27
- 'conversation_participant_arn': !(0, runtime_1.exists)(json, 'conversation_participant_arn') ? undefined : json['conversation_participant_arn'],
28
- 'jwt': !(0, runtime_1.exists)(json, 'jwt') ? undefined : json['jwt'],
29
- 'merchant_id': !(0, runtime_1.exists)(json, 'merchant_id') ? undefined : json['merchant_id'],
30
- 'twilio_phone_numbers': !(0, runtime_1.exists)(json, 'twilio_phone_numbers') ? undefined : json['twilio_phone_numbers'],
31
- 'websocket_url': !(0, runtime_1.exists)(json, 'websocket_url') ? undefined : json['websocket_url'],
31
+ 'agent_auth': !(0, runtime_1.exists)(json, 'agent_auth') ? undefined : (0, ConversationAgentAuth_1.ConversationAgentAuthFromJSON)(json['agent_auth']),
32
+ 'error': !(0, runtime_1.exists)(json, 'error') ? undefined : (0, ModelError_1.ModelErrorFromJSON)(json['error']),
33
+ 'metadata': !(0, runtime_1.exists)(json, 'metadata') ? undefined : (0, ResponseMetadata_1.ResponseMetadataFromJSON)(json['metadata']),
34
+ 'success': !(0, runtime_1.exists)(json, 'success') ? undefined : json['success'],
35
+ 'warning': !(0, runtime_1.exists)(json, 'warning') ? undefined : (0, Warning_1.WarningFromJSON)(json['warning']),
32
36
  };
33
37
  }
34
38
  exports.ConversationAgentAuthResponseFromJSONTyped = ConversationAgentAuthResponseFromJSONTyped;
@@ -40,11 +44,11 @@ function ConversationAgentAuthResponseToJSON(value) {
40
44
  return null;
41
45
  }
42
46
  return {
43
- 'conversation_participant_arn': value.conversation_participant_arn,
44
- 'jwt': value.jwt,
45
- 'merchant_id': value.merchant_id,
46
- 'twilio_phone_numbers': value.twilio_phone_numbers,
47
- 'websocket_url': value.websocket_url,
47
+ 'agent_auth': (0, ConversationAgentAuth_1.ConversationAgentAuthToJSON)(value.agent_auth),
48
+ 'error': (0, ModelError_1.ModelErrorToJSON)(value.error),
49
+ 'metadata': (0, ResponseMetadata_1.ResponseMetadataToJSON)(value.metadata),
50
+ 'success': value.success,
51
+ 'warning': (0, Warning_1.WarningToJSON)(value.warning),
48
52
  };
49
53
  }
50
54
  exports.ConversationAgentAuthResponseToJSON = ConversationAgentAuthResponseToJSON;
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { ConversationMessageTransportStatus } from './ConversationMessageTransportStatus';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -45,6 +46,12 @@ export interface ConversationMessage {
45
46
  * @memberof ConversationMessage
46
47
  */
47
48
  message_dts?: string;
49
+ /**
50
+ *
51
+ * @type {Array<ConversationMessageTransportStatus>}
52
+ * @memberof ConversationMessage
53
+ */
54
+ transport_statuses?: Array<ConversationMessageTransportStatus>;
48
55
  }
49
56
  export declare function ConversationMessageFromJSON(json: any): ConversationMessage;
50
57
  export declare function ConversationMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationMessage;
@@ -15,6 +15,7 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.ConversationMessageToJSON = exports.ConversationMessageFromJSONTyped = exports.ConversationMessageFromJSON = void 0;
17
17
  var runtime_1 = require("../runtime");
18
+ var ConversationMessageTransportStatus_1 = require("./ConversationMessageTransportStatus");
18
19
  function ConversationMessageFromJSON(json) {
19
20
  return ConversationMessageFromJSONTyped(json, false);
20
21
  }
@@ -29,6 +30,7 @@ function ConversationMessageFromJSONTyped(json, ignoreDiscriminator) {
29
30
  'body': !(0, runtime_1.exists)(json, 'body') ? undefined : json['body'],
30
31
  'media_urls': !(0, runtime_1.exists)(json, 'media_urls') ? undefined : json['media_urls'],
31
32
  'message_dts': !(0, runtime_1.exists)(json, 'message_dts') ? undefined : json['message_dts'],
33
+ 'transport_statuses': !(0, runtime_1.exists)(json, 'transport_statuses') ? undefined : (json['transport_statuses'].map(ConversationMessageTransportStatus_1.ConversationMessageTransportStatusFromJSON)),
32
34
  };
33
35
  }
34
36
  exports.ConversationMessageFromJSONTyped = ConversationMessageFromJSONTyped;
@@ -45,6 +47,7 @@ function ConversationMessageToJSON(value) {
45
47
  'body': value.body,
46
48
  'media_urls': value.media_urls,
47
49
  'message_dts': value.message_dts,
50
+ 'transport_statuses': value.transport_statuses === undefined ? undefined : (value.transport_statuses.map(ConversationMessageTransportStatus_1.ConversationMessageTransportStatusToJSON)),
48
51
  };
49
52
  }
50
53
  exports.ConversationMessageToJSON = ConversationMessageToJSON;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * UltraCart Rest API V2
3
+ * UltraCart REST API Version 2
4
+ *
5
+ * The version of the OpenAPI document: 2.0.0
6
+ * Contact: support@ultracart.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ConversationMessageTransportStatus
16
+ */
17
+ export interface ConversationMessageTransportStatus {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ConversationMessageTransportStatus
22
+ */
23
+ conversation_participant_arn?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ConversationMessageTransportStatus
28
+ */
29
+ status?: string;
30
+ }
31
+ export declare function ConversationMessageTransportStatusFromJSON(json: any): ConversationMessageTransportStatus;
32
+ export declare function ConversationMessageTransportStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationMessageTransportStatus;
33
+ export declare function ConversationMessageTransportStatusToJSON(value?: ConversationMessageTransportStatus | null): any;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UltraCart Rest API V2
6
+ * UltraCart REST API Version 2
7
+ *
8
+ * The version of the OpenAPI document: 2.0.0
9
+ * Contact: support@ultracart.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ConversationMessageTransportStatusToJSON = exports.ConversationMessageTransportStatusFromJSONTyped = exports.ConversationMessageTransportStatusFromJSON = void 0;
17
+ var runtime_1 = require("../runtime");
18
+ function ConversationMessageTransportStatusFromJSON(json) {
19
+ return ConversationMessageTransportStatusFromJSONTyped(json, false);
20
+ }
21
+ exports.ConversationMessageTransportStatusFromJSON = ConversationMessageTransportStatusFromJSON;
22
+ function ConversationMessageTransportStatusFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'conversation_participant_arn': !(0, runtime_1.exists)(json, 'conversation_participant_arn') ? undefined : json['conversation_participant_arn'],
28
+ 'status': !(0, runtime_1.exists)(json, 'status') ? undefined : json['status'],
29
+ };
30
+ }
31
+ exports.ConversationMessageTransportStatusFromJSONTyped = ConversationMessageTransportStatusFromJSONTyped;
32
+ function ConversationMessageTransportStatusToJSON(value) {
33
+ if (value === undefined) {
34
+ return undefined;
35
+ }
36
+ if (value === null) {
37
+ return null;
38
+ }
39
+ return {
40
+ 'conversation_participant_arn': value.conversation_participant_arn,
41
+ 'status': value.status,
42
+ };
43
+ }
44
+ exports.ConversationMessageTransportStatusToJSON = ConversationMessageTransportStatusToJSON;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * UltraCart Rest API V2
3
+ * UltraCart REST API Version 2
4
+ *
5
+ * The version of the OpenAPI document: 2.0.0
6
+ * Contact: support@ultracart.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ConversationMultimediaUploadUrl
16
+ */
17
+ export interface ConversationMultimediaUploadUrl {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ConversationMultimediaUploadUrl
22
+ */
23
+ key?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ConversationMultimediaUploadUrl
28
+ */
29
+ url?: string;
30
+ }
31
+ export declare function ConversationMultimediaUploadUrlFromJSON(json: any): ConversationMultimediaUploadUrl;
32
+ export declare function ConversationMultimediaUploadUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationMultimediaUploadUrl;
33
+ export declare function ConversationMultimediaUploadUrlToJSON(value?: ConversationMultimediaUploadUrl | null): any;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UltraCart Rest API V2
6
+ * UltraCart REST API Version 2
7
+ *
8
+ * The version of the OpenAPI document: 2.0.0
9
+ * Contact: support@ultracart.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ConversationMultimediaUploadUrlToJSON = exports.ConversationMultimediaUploadUrlFromJSONTyped = exports.ConversationMultimediaUploadUrlFromJSON = void 0;
17
+ var runtime_1 = require("../runtime");
18
+ function ConversationMultimediaUploadUrlFromJSON(json) {
19
+ return ConversationMultimediaUploadUrlFromJSONTyped(json, false);
20
+ }
21
+ exports.ConversationMultimediaUploadUrlFromJSON = ConversationMultimediaUploadUrlFromJSON;
22
+ function ConversationMultimediaUploadUrlFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'key': !(0, runtime_1.exists)(json, 'key') ? undefined : json['key'],
28
+ 'url': !(0, runtime_1.exists)(json, 'url') ? undefined : json['url'],
29
+ };
30
+ }
31
+ exports.ConversationMultimediaUploadUrlFromJSONTyped = ConversationMultimediaUploadUrlFromJSONTyped;
32
+ function ConversationMultimediaUploadUrlToJSON(value) {
33
+ if (value === undefined) {
34
+ return undefined;
35
+ }
36
+ if (value === null) {
37
+ return null;
38
+ }
39
+ return {
40
+ 'key': value.key,
41
+ 'url': value.url,
42
+ };
43
+ }
44
+ exports.ConversationMultimediaUploadUrlToJSON = ConversationMultimediaUploadUrlToJSON;