@connectedxm/admin-sdk 6.6.2 → 6.7.3
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/.openapi-generator/FILES +8 -3
- package/AdminApi.ts +3 -9
- package/README.md +16 -6
- package/api.ts +1073 -832
- package/dist/AdminApi.d.ts +2 -4
- package/dist/AdminApi.js +1 -3
- package/dist/api.d.ts +550 -432
- package/dist/api.js +773 -608
- package/dist/esm/AdminApi.d.ts +2 -4
- package/dist/esm/AdminApi.js +2 -4
- package/dist/esm/api.d.ts +550 -432
- package/dist/esm/api.js +759 -586
- package/docs/AccountsApi.md +64 -0
- package/docs/ActivitiesApi.md +3 -0
- package/docs/BaseOrganizationModuleSettings.md +20 -0
- package/docs/BaseOrganizationModuleSettingsTranslation.md +22 -0
- package/docs/EventAttendeeCreateInputs.md +20 -0
- package/docs/EventsAttendeesApi.md +7 -6
- package/docs/Organization.md +0 -16
- package/docs/OrganizationModuleSettings.md +36 -0
- package/docs/OrganizationModuleSettingsTranslation.md +24 -0
- package/docs/OrganizationModuleSettingsTranslationUpdateInputs.md +20 -0
- package/docs/OrganizationModuleSettingsUpdateInputs.md +34 -0
- package/docs/OrganizationModulesSettingsApi.md +105 -0
- package/docs/OrganizationUpdateInputs.md +0 -16
- package/docs/SupportApi.md +241 -0
- package/docs/SupportMessagesApi.md +64 -0
- package/docs/SupportNotesApi.md +64 -0
- package/docs/SupportTicketState.md +2 -0
- package/package.json +1 -1
- package/docs/SupportticketsApi.md +0 -248
- package/docs/SupportticketsMessagesApi.md +0 -71
- package/docs/SupportticketsNotesApi.md +0 -71
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
# SupportticketsMessagesApi
|
|
2
|
-
|
|
3
|
-
All URIs are relative to *https://admin-api.connected.dev*
|
|
4
|
-
|
|
5
|
-
|Method | HTTP request | Description|
|
|
6
|
-
|------------- | ------------- | -------------|
|
|
7
|
-
|[**getSupportTicketMessages**](#getsupportticketmessages) | **GET** /supportTickets/{supportTicketId}/messages | Get Support Ticket Messages|
|
|
8
|
-
|
|
9
|
-
# **getSupportTicketMessages**
|
|
10
|
-
> GetAccountInvitations200Response getSupportTicketMessages()
|
|
11
|
-
|
|
12
|
-
Get Support Ticket Messages endpoint
|
|
13
|
-
|
|
14
|
-
### Example
|
|
15
|
-
|
|
16
|
-
```typescript
|
|
17
|
-
import {
|
|
18
|
-
SupportticketsMessagesApi,
|
|
19
|
-
Configuration
|
|
20
|
-
} from '@connectedxm/admin-sdk';
|
|
21
|
-
|
|
22
|
-
const configuration = new Configuration();
|
|
23
|
-
const apiInstance = new SupportticketsMessagesApi(configuration);
|
|
24
|
-
|
|
25
|
-
let supportTicketId: string; //The supportTicket identifier (default to undefined)
|
|
26
|
-
let page: number; //Page number (optional) (default to 1)
|
|
27
|
-
let pageSize: number; //Number of items per page (optional) (default to 25)
|
|
28
|
-
let orderBy: string; //Field to order by (optional) (default to undefined)
|
|
29
|
-
let search: string; //Search query (optional) (default to undefined)
|
|
30
|
-
|
|
31
|
-
const { status, data } = await apiInstance.getSupportTicketMessages(
|
|
32
|
-
supportTicketId,
|
|
33
|
-
page,
|
|
34
|
-
pageSize,
|
|
35
|
-
orderBy,
|
|
36
|
-
search
|
|
37
|
-
);
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
### Parameters
|
|
41
|
-
|
|
42
|
-
|Name | Type | Description | Notes|
|
|
43
|
-
|------------- | ------------- | ------------- | -------------|
|
|
44
|
-
| **supportTicketId** | [**string**] | The supportTicket identifier | defaults to undefined|
|
|
45
|
-
| **page** | [**number**] | Page number | (optional) defaults to 1|
|
|
46
|
-
| **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
|
|
47
|
-
| **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
|
|
48
|
-
| **search** | [**string**] | Search query | (optional) defaults to undefined|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
### Return type
|
|
52
|
-
|
|
53
|
-
**GetAccountInvitations200Response**
|
|
54
|
-
|
|
55
|
-
### Authorization
|
|
56
|
-
|
|
57
|
-
[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)
|
|
58
|
-
|
|
59
|
-
### HTTP request headers
|
|
60
|
-
|
|
61
|
-
- **Content-Type**: Not defined
|
|
62
|
-
- **Accept**: application/json
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
### HTTP response details
|
|
66
|
-
| Status code | Description | Response headers |
|
|
67
|
-
|-------------|-------------|------------------|
|
|
68
|
-
|**200** | Successful response | - |
|
|
69
|
-
|
|
70
|
-
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
71
|
-
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
# SupportticketsNotesApi
|
|
2
|
-
|
|
3
|
-
All URIs are relative to *https://admin-api.connected.dev*
|
|
4
|
-
|
|
5
|
-
|Method | HTTP request | Description|
|
|
6
|
-
|------------- | ------------- | -------------|
|
|
7
|
-
|[**getSupportTicketNotes**](#getsupportticketnotes) | **GET** /supportTickets/{supportTicketId}/notes | Get Support Ticket Notes|
|
|
8
|
-
|
|
9
|
-
# **getSupportTicketNotes**
|
|
10
|
-
> GetAccountInvitations200Response getSupportTicketNotes()
|
|
11
|
-
|
|
12
|
-
Get Support Ticket Notes endpoint
|
|
13
|
-
|
|
14
|
-
### Example
|
|
15
|
-
|
|
16
|
-
```typescript
|
|
17
|
-
import {
|
|
18
|
-
SupportticketsNotesApi,
|
|
19
|
-
Configuration
|
|
20
|
-
} from '@connectedxm/admin-sdk';
|
|
21
|
-
|
|
22
|
-
const configuration = new Configuration();
|
|
23
|
-
const apiInstance = new SupportticketsNotesApi(configuration);
|
|
24
|
-
|
|
25
|
-
let supportTicketId: string; //The supportTicket identifier (default to undefined)
|
|
26
|
-
let page: number; //Page number (optional) (default to 1)
|
|
27
|
-
let pageSize: number; //Number of items per page (optional) (default to 25)
|
|
28
|
-
let orderBy: string; //Field to order by (optional) (default to undefined)
|
|
29
|
-
let search: string; //Search query (optional) (default to undefined)
|
|
30
|
-
|
|
31
|
-
const { status, data } = await apiInstance.getSupportTicketNotes(
|
|
32
|
-
supportTicketId,
|
|
33
|
-
page,
|
|
34
|
-
pageSize,
|
|
35
|
-
orderBy,
|
|
36
|
-
search
|
|
37
|
-
);
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
### Parameters
|
|
41
|
-
|
|
42
|
-
|Name | Type | Description | Notes|
|
|
43
|
-
|------------- | ------------- | ------------- | -------------|
|
|
44
|
-
| **supportTicketId** | [**string**] | The supportTicket identifier | defaults to undefined|
|
|
45
|
-
| **page** | [**number**] | Page number | (optional) defaults to 1|
|
|
46
|
-
| **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
|
|
47
|
-
| **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
|
|
48
|
-
| **search** | [**string**] | Search query | (optional) defaults to undefined|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
### Return type
|
|
52
|
-
|
|
53
|
-
**GetAccountInvitations200Response**
|
|
54
|
-
|
|
55
|
-
### Authorization
|
|
56
|
-
|
|
57
|
-
[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)
|
|
58
|
-
|
|
59
|
-
### HTTP request headers
|
|
60
|
-
|
|
61
|
-
- **Content-Type**: Not defined
|
|
62
|
-
- **Accept**: application/json
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
### HTTP response details
|
|
66
|
-
| Status code | Description | Response headers |
|
|
67
|
-
|-------------|-------------|------------------|
|
|
68
|
-
|**200** | Successful response | - |
|
|
69
|
-
|
|
70
|
-
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
71
|
-
|