@teemill/platform 0.36.0 → 0.37.0
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 +9 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +9 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +9 -1
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/Enquiry.md +2 -0
- package/docs/EnquiryTracking.md +28 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/platform@0.
|
|
1
|
+
## @teemill/platform@0.37.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). 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 @teemill/platform@0.
|
|
39
|
+
npm install @teemill/platform@0.37.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -136,6 +136,7 @@ Class | Method | HTTP request | Description
|
|
|
136
136
|
- [Enquiry](docs/Enquiry.md)
|
|
137
137
|
- [EnquiryExtraInputsInner](docs/EnquiryExtraInputsInner.md)
|
|
138
138
|
- [EnquiryExtraInputsInnerValue](docs/EnquiryExtraInputsInnerValue.md)
|
|
139
|
+
- [EnquiryTracking](docs/EnquiryTracking.md)
|
|
139
140
|
- [ExportOrders202Response](docs/ExportOrders202Response.md)
|
|
140
141
|
- [Fulfiller](docs/Fulfiller.md)
|
|
141
142
|
- [FulfillerLocation](docs/FulfillerLocation.md)
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.37.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -375,6 +375,7 @@ export interface Enquiry {
|
|
|
375
375
|
* The unique id of the user who owns the enquiry
|
|
376
376
|
*/
|
|
377
377
|
'owner': string | null;
|
|
378
|
+
'tracking': EnquiryTracking;
|
|
378
379
|
}
|
|
379
380
|
|
|
380
381
|
export const EnquiryStatusEnum = {
|
|
@@ -395,6 +396,13 @@ export interface EnquiryExtraInputsInner {
|
|
|
395
396
|
*/
|
|
396
397
|
export type EnquiryExtraInputsInnerValue = Array<string | null> | string;
|
|
397
398
|
|
|
399
|
+
export interface EnquiryTracking {
|
|
400
|
+
'utmSource': string | null;
|
|
401
|
+
'utmMedium': string | null;
|
|
402
|
+
'utmCampaign': string | null;
|
|
403
|
+
'utmTerm': string | null;
|
|
404
|
+
'utmContent': string | null;
|
|
405
|
+
}
|
|
398
406
|
export interface ExportOrders202Response {
|
|
399
407
|
/**
|
|
400
408
|
* A message describing the export status
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.37.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -356,6 +356,7 @@ export interface Enquiry {
|
|
|
356
356
|
* The unique id of the user who owns the enquiry
|
|
357
357
|
*/
|
|
358
358
|
'owner': string | null;
|
|
359
|
+
'tracking': EnquiryTracking;
|
|
359
360
|
}
|
|
360
361
|
export declare const EnquiryStatusEnum: {
|
|
361
362
|
readonly New: "New";
|
|
@@ -372,6 +373,13 @@ export interface EnquiryExtraInputsInner {
|
|
|
372
373
|
* @type EnquiryExtraInputsInnerValue
|
|
373
374
|
*/
|
|
374
375
|
export type EnquiryExtraInputsInnerValue = Array<string | null> | string;
|
|
376
|
+
export interface EnquiryTracking {
|
|
377
|
+
'utmSource': string | null;
|
|
378
|
+
'utmMedium': string | null;
|
|
379
|
+
'utmCampaign': string | null;
|
|
380
|
+
'utmTerm': string | null;
|
|
381
|
+
'utmContent': string | null;
|
|
382
|
+
}
|
|
375
383
|
export interface ExportOrders202Response {
|
|
376
384
|
/**
|
|
377
385
|
* A message describing the export status
|
package/dist/api.js
CHANGED
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.37.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -356,6 +356,7 @@ export interface Enquiry {
|
|
|
356
356
|
* The unique id of the user who owns the enquiry
|
|
357
357
|
*/
|
|
358
358
|
'owner': string | null;
|
|
359
|
+
'tracking': EnquiryTracking;
|
|
359
360
|
}
|
|
360
361
|
export declare const EnquiryStatusEnum: {
|
|
361
362
|
readonly New: "New";
|
|
@@ -372,6 +373,13 @@ export interface EnquiryExtraInputsInner {
|
|
|
372
373
|
* @type EnquiryExtraInputsInnerValue
|
|
373
374
|
*/
|
|
374
375
|
export type EnquiryExtraInputsInnerValue = Array<string | null> | string;
|
|
376
|
+
export interface EnquiryTracking {
|
|
377
|
+
'utmSource': string | null;
|
|
378
|
+
'utmMedium': string | null;
|
|
379
|
+
'utmCampaign': string | null;
|
|
380
|
+
'utmTerm': string | null;
|
|
381
|
+
'utmContent': string | null;
|
|
382
|
+
}
|
|
375
383
|
export interface ExportOrders202Response {
|
|
376
384
|
/**
|
|
377
385
|
* A message describing the export status
|
package/dist/esm/api.js
CHANGED
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/docs/Enquiry.md
CHANGED
|
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
|
|
|
19
19
|
**extraInputs** | [**Array<EnquiryExtraInputsInner>**](EnquiryExtraInputsInner.md) | | [default to undefined]
|
|
20
20
|
**chatChannelRef** | **string** | Reference to the chat channel resource | [optional] [default to undefined]
|
|
21
21
|
**owner** | **string** | The unique id of the user who owns the enquiry | [default to undefined]
|
|
22
|
+
**tracking** | [**EnquiryTracking**](EnquiryTracking.md) | | [default to undefined]
|
|
22
23
|
|
|
23
24
|
## Example
|
|
24
25
|
|
|
@@ -40,6 +41,7 @@ const instance: Enquiry = {
|
|
|
40
41
|
extraInputs,
|
|
41
42
|
chatChannelRef,
|
|
42
43
|
owner,
|
|
44
|
+
tracking,
|
|
43
45
|
};
|
|
44
46
|
```
|
|
45
47
|
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# EnquiryTracking
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**utmSource** | **string** | | [default to undefined]
|
|
9
|
+
**utmMedium** | **string** | | [default to undefined]
|
|
10
|
+
**utmCampaign** | **string** | | [default to undefined]
|
|
11
|
+
**utmTerm** | **string** | | [default to undefined]
|
|
12
|
+
**utmContent** | **string** | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { EnquiryTracking } from '@teemill/platform';
|
|
18
|
+
|
|
19
|
+
const instance: EnquiryTracking = {
|
|
20
|
+
utmSource,
|
|
21
|
+
utmMedium,
|
|
22
|
+
utmCampaign,
|
|
23
|
+
utmTerm,
|
|
24
|
+
utmContent,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/index.ts
CHANGED