@wastesentry/trak-client 0.1.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.
Files changed (131) hide show
  1. package/.openapi-generator/FILES +120 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/apis/DefaultApi.ts +176 -0
  5. package/apis/InfoApi.ts +80 -0
  6. package/apis/ManifestApi.ts +604 -0
  7. package/apis/MyProfileApi.ts +63 -0
  8. package/apis/OrgsApi.ts +172 -0
  9. package/apis/PegasusApi.ts +336 -0
  10. package/apis/ProfileApi.ts +229 -0
  11. package/apis/SiteApi.ts +108 -0
  12. package/apis/SitesApi.ts +119 -0
  13. package/apis/SyncApi.ts +55 -0
  14. package/apis/TeamsApi.ts +673 -0
  15. package/apis/index.ts +12 -0
  16. package/docs/AdditionalInfo.md +41 -0
  17. package/docs/DefaultApi.md +235 -0
  18. package/docs/ESignature.md +43 -0
  19. package/docs/Handler.md +41 -0
  20. package/docs/HandlerSearch.md +34 -0
  21. package/docs/HandlerSearchSiteTypeEnum.md +31 -0
  22. package/docs/InfoApi.md +81 -0
  23. package/docs/Invitation.md +42 -0
  24. package/docs/LockReasonEnum.md +31 -0
  25. package/docs/Manifest.md +93 -0
  26. package/docs/ManifestApi.md +907 -0
  27. package/docs/ManifestPhone.md +35 -0
  28. package/docs/Membership.md +42 -0
  29. package/docs/Mtn.md +39 -0
  30. package/docs/MyProfileApi.md +73 -0
  31. package/docs/NullEnum.md +30 -0
  32. package/docs/OpenInvitation.md +38 -0
  33. package/docs/Org.md +39 -0
  34. package/docs/OrgsApi.md +232 -0
  35. package/docs/PaginatedInvitationList.md +38 -0
  36. package/docs/PaginatedMtnList.md +38 -0
  37. package/docs/PaginatedOrgList.md +38 -0
  38. package/docs/PaginatedSiteList.md +38 -0
  39. package/docs/PaginatedTeamList.md +38 -0
  40. package/docs/PaperSignature.md +35 -0
  41. package/docs/PatchedInvitation.md +42 -0
  42. package/docs/PatchedProfile.md +35 -0
  43. package/docs/PatchedRcrainfoProfile.md +45 -0
  44. package/docs/PatchedTeam.md +48 -0
  45. package/docs/Price.md +42 -0
  46. package/docs/Profile.md +35 -0
  47. package/docs/ProfileApi.md +241 -0
  48. package/docs/QuickerSign.md +43 -0
  49. package/docs/RcraAddress.md +45 -0
  50. package/docs/RcraContact.md +43 -0
  51. package/docs/RcraPhone.md +35 -0
  52. package/docs/RcraSite.md +57 -0
  53. package/docs/RcraSitePermission.md +45 -0
  54. package/docs/RcraSiteSiteTypeEnum.md +31 -0
  55. package/docs/RcrainfoProfile.md +45 -0
  56. package/docs/RoleEnum.md +31 -0
  57. package/docs/Signer.md +49 -0
  58. package/docs/Site.md +35 -0
  59. package/docs/SiteApi.md +147 -0
  60. package/docs/SiteManifestSyncRequest.md +32 -0
  61. package/docs/SiteManifestSyncResponse.md +32 -0
  62. package/docs/SitesApi.md +155 -0
  63. package/docs/StatusC23Enum.md +31 -0
  64. package/docs/Subscription.md +51 -0
  65. package/docs/SubscriptionItem.md +36 -0
  66. package/docs/SubscriptionStatusEnum.md +31 -0
  67. package/docs/SyncApi.md +73 -0
  68. package/docs/Team.md +48 -0
  69. package/docs/TeamsApi.md +965 -0
  70. package/docs/TrakUser.md +43 -0
  71. package/docs/Transporter.md +41 -0
  72. package/docs/UserInvitationsResponse.md +32 -0
  73. package/docs/WasteLine.md +55 -0
  74. package/index.ts +5 -0
  75. package/models/AdditionalInfo.ts +96 -0
  76. package/models/AggregateEmployeeData.ts +83 -0
  77. package/models/DepartmentEnum.ts +59 -0
  78. package/models/ESignature.ts +112 -0
  79. package/models/Employee.ts +125 -0
  80. package/models/Handler.ts +126 -0
  81. package/models/HandlerSearch.ts +84 -0
  82. package/models/HandlerSearchSiteTypeEnum.ts +57 -0
  83. package/models/Invitation.ts +116 -0
  84. package/models/LockReasonEnum.ts +55 -0
  85. package/models/Manifest.ts +353 -0
  86. package/models/ManifestPhone.ts +73 -0
  87. package/models/Membership.ts +115 -0
  88. package/models/Mtn.ts +98 -0
  89. package/models/NullEnum.ts +50 -0
  90. package/models/OpenInvitation.ts +88 -0
  91. package/models/Org.ts +88 -0
  92. package/models/PaginatedEmployeeList.ts +98 -0
  93. package/models/PaginatedInvitationList.ts +98 -0
  94. package/models/PaginatedMtnList.ts +98 -0
  95. package/models/PaginatedOrgList.ts +98 -0
  96. package/models/PaginatedSiteList.ts +98 -0
  97. package/models/PaginatedTeamList.ts +98 -0
  98. package/models/PaperSignature.ts +74 -0
  99. package/models/PatchedEmployee.ts +118 -0
  100. package/models/PatchedInvitation.ts +112 -0
  101. package/models/PatchedProfile.ts +79 -0
  102. package/models/PatchedRcrainfoProfile.ts +119 -0
  103. package/models/PatchedTeam.ts +143 -0
  104. package/models/Price.ts +106 -0
  105. package/models/Profile.ts +80 -0
  106. package/models/QuickerSign.ts +108 -0
  107. package/models/RcraAddress.ts +113 -0
  108. package/models/RcraContact.ts +112 -0
  109. package/models/RcraPhone.ts +73 -0
  110. package/models/RcraSite.ts +200 -0
  111. package/models/RcraSitePermission.ts +121 -0
  112. package/models/RcraSiteSiteTypeEnum.ts +57 -0
  113. package/models/RcrainfoProfile.ts +120 -0
  114. package/models/RoleEnum.ts +53 -0
  115. package/models/Signer.ts +136 -0
  116. package/models/Site.ts +81 -0
  117. package/models/SiteManifestSyncRequest.ts +65 -0
  118. package/models/SiteManifestSyncResponse.ts +65 -0
  119. package/models/StatusC23Enum.ts +67 -0
  120. package/models/StatusEnum.ts +63 -0
  121. package/models/Subscription.ts +168 -0
  122. package/models/SubscriptionItem.ts +90 -0
  123. package/models/SubscriptionStatusEnum.ts +63 -0
  124. package/models/Team.ts +151 -0
  125. package/models/TrakUser.ts +106 -0
  126. package/models/Transporter.ts +120 -0
  127. package/models/UserInvitationsResponse.ts +73 -0
  128. package/models/WasteLine.ts +157 -0
  129. package/models/index.ts +50 -0
  130. package/package.json +17 -0
  131. package/runtime.ts +432 -0
@@ -0,0 +1,35 @@
1
+
2
+ # ManifestPhone
3
+
4
+ Serializer for phone numbers on manifest.
5
+
6
+ ## Properties
7
+
8
+ Name | Type
9
+ ------------ | -------------
10
+ `number` | string
11
+ `extension` | string
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { ManifestPhone } from ''
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "number": null,
21
+ "extension": null,
22
+ } satisfies ManifestPhone
23
+
24
+ console.log(example)
25
+
26
+ // Convert the instance to a JSON string
27
+ const exampleJSON: string = JSON.stringify(example)
28
+ console.log(exampleJSON)
29
+
30
+ // Parse the JSON string back to an object
31
+ const exampleParsed = JSON.parse(exampleJSON) as ManifestPhone
32
+ console.log(exampleParsed)
33
+ ```
34
+
35
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
@@ -0,0 +1,42 @@
1
+
2
+ # Membership
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | number
10
+ `userId` | string
11
+ `firstName` | string
12
+ `lastName` | string
13
+ `displayName` | string
14
+ `role` | [RoleEnum](RoleEnum.md)
15
+
16
+ ## Example
17
+
18
+ ```typescript
19
+ import type { Membership } from ''
20
+
21
+ // TODO: Update the object below with actual values
22
+ const example = {
23
+ "id": null,
24
+ "userId": null,
25
+ "firstName": null,
26
+ "lastName": null,
27
+ "displayName": null,
28
+ "role": null,
29
+ } satisfies Membership
30
+
31
+ console.log(example)
32
+
33
+ // Convert the instance to a JSON string
34
+ const exampleJSON: string = JSON.stringify(example)
35
+ console.log(exampleJSON)
36
+
37
+ // Parse the JSON string back to an object
38
+ const exampleParsed = JSON.parse(exampleJSON) as Membership
39
+ console.log(exampleParsed)
40
+ ```
41
+
42
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
package/docs/Mtn.md ADDED
@@ -0,0 +1,39 @@
1
+
2
+ # Mtn
3
+
4
+ Select details of a manifest including manifest tracking number (mtn).
5
+
6
+ ## Properties
7
+
8
+ Name | Type
9
+ ------------ | -------------
10
+ `manifestTrackingNumber` | string
11
+ `status` | [StatusC23Enum](StatusC23Enum.md)
12
+ `submissionType` | string
13
+ `signatureStatus` | boolean
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { Mtn } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "manifestTrackingNumber": null,
23
+ "status": null,
24
+ "submissionType": null,
25
+ "signatureStatus": null,
26
+ } satisfies Mtn
27
+
28
+ console.log(example)
29
+
30
+ // Convert the instance to a JSON string
31
+ const exampleJSON: string = JSON.stringify(example)
32
+ console.log(exampleJSON)
33
+
34
+ // Parse the JSON string back to an object
35
+ const exampleParsed = JSON.parse(exampleJSON) as Mtn
36
+ console.log(exampleParsed)
37
+ ```
38
+
39
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
@@ -0,0 +1,73 @@
1
+ # MyProfileApi
2
+
3
+ All URIs are relative to *http://localhost*
4
+
5
+ | Method | HTTP request | Description |
6
+ |------------- | ------------- | -------------|
7
+ | [**myProfileRetrieve**](MyProfileApi.md#myprofileretrieve) | **GET** /api/v1/my-profile | |
8
+
9
+
10
+
11
+ ## myProfileRetrieve
12
+
13
+ > Profile myProfileRetrieve()
14
+
15
+
16
+
17
+ Displays a user\'s Profile.
18
+
19
+ ### Example
20
+
21
+ ```ts
22
+ import {
23
+ Configuration,
24
+ MyProfileApi,
25
+ } from '';
26
+ import type { MyProfileRetrieveRequest } from '';
27
+
28
+ async function example() {
29
+ console.log("🚀 Testing SDK...");
30
+ const config = new Configuration({
31
+ // To configure API key authorization: cookieAuth
32
+ apiKey: "YOUR API KEY",
33
+ // To configure API key authorization: ApiKeyAuth
34
+ apiKey: "YOUR API KEY",
35
+ });
36
+ const api = new MyProfileApi(config);
37
+
38
+ try {
39
+ const data = await api.myProfileRetrieve();
40
+ console.log(data);
41
+ } catch (error) {
42
+ console.error(error);
43
+ }
44
+ }
45
+
46
+ // Run the test
47
+ example().catch(console.error);
48
+ ```
49
+
50
+ ### Parameters
51
+
52
+ This endpoint does not need any parameter.
53
+
54
+ ### Return type
55
+
56
+ [**Profile**](Profile.md)
57
+
58
+ ### Authorization
59
+
60
+ [cookieAuth](../README.md#cookieAuth), [ApiKeyAuth](../README.md#ApiKeyAuth)
61
+
62
+ ### HTTP request headers
63
+
64
+ - **Content-Type**: Not defined
65
+ - **Accept**: `application/json`
66
+
67
+
68
+ ### HTTP response details
69
+ | Status code | Description | Response headers |
70
+ |-------------|-------------|------------------|
71
+ | **200** | | - |
72
+
73
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
@@ -0,0 +1,30 @@
1
+
2
+ # NullEnum
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import type { NullEnum } from ''
14
+
15
+ // TODO: Update the object below with actual values
16
+ const example = {
17
+ } satisfies NullEnum
18
+
19
+ console.log(example)
20
+
21
+ // Convert the instance to a JSON string
22
+ const exampleJSON: string = JSON.stringify(example)
23
+ console.log(exampleJSON)
24
+
25
+ // Parse the JSON string back to an object
26
+ const exampleParsed = JSON.parse(exampleJSON) as NullEnum
27
+ console.log(exampleParsed)
28
+ ```
29
+
30
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
@@ -0,0 +1,38 @@
1
+
2
+ # OpenInvitation
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | number
10
+ `teamName` | string
11
+ `email` | string
12
+ `verified` | boolean
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { OpenInvitation } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "id": null,
22
+ "teamName": null,
23
+ "email": null,
24
+ "verified": null,
25
+ } satisfies OpenInvitation
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as OpenInvitation
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
package/docs/Org.md ADDED
@@ -0,0 +1,39 @@
1
+
2
+ # Org
3
+
4
+ Organization Model Serializer.
5
+
6
+ ## Properties
7
+
8
+ Name | Type
9
+ ------------ | -------------
10
+ `name` | string
11
+ `id` | string
12
+ `slug` | string
13
+ `rcrainfoIntegrated` | boolean
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { Org } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "name": null,
23
+ "id": null,
24
+ "slug": null,
25
+ "rcrainfoIntegrated": null,
26
+ } satisfies Org
27
+
28
+ console.log(example)
29
+
30
+ // Convert the instance to a JSON string
31
+ const exampleJSON: string = JSON.stringify(example)
32
+ console.log(exampleJSON)
33
+
34
+ // Parse the JSON string back to an object
35
+ const exampleParsed = JSON.parse(exampleJSON) as Org
36
+ console.log(exampleParsed)
37
+ ```
38
+
39
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
@@ -0,0 +1,232 @@
1
+ # OrgsApi
2
+
3
+ All URIs are relative to *http://localhost*
4
+
5
+ | Method | HTTP request | Description |
6
+ |------------- | ------------- | -------------|
7
+ | [**orgsList**](OrgsApi.md#orgslist) | **GET** /api/v1/orgs | |
8
+ | [**orgsRetrieve**](OrgsApi.md#orgsretrieve) | **GET** /api/v1/orgs/{org_slug} | |
9
+ | [**orgsSitesList**](OrgsApi.md#orgssiteslist) | **GET** /api/v1/orgs/{org_slug}/sites | |
10
+
11
+
12
+
13
+ ## orgsList
14
+
15
+ > PaginatedOrgList orgsList(page)
16
+
17
+
18
+
19
+ View all organizations that the user has access to.
20
+
21
+ ### Example
22
+
23
+ ```ts
24
+ import {
25
+ Configuration,
26
+ OrgsApi,
27
+ } from '';
28
+ import type { OrgsListRequest } from '';
29
+
30
+ async function example() {
31
+ console.log("🚀 Testing SDK...");
32
+ const config = new Configuration({
33
+ // To configure API key authorization: cookieAuth
34
+ apiKey: "YOUR API KEY",
35
+ // To configure API key authorization: ApiKeyAuth
36
+ apiKey: "YOUR API KEY",
37
+ });
38
+ const api = new OrgsApi(config);
39
+
40
+ const body = {
41
+ // number | A page number within the paginated result set. (optional)
42
+ page: 56,
43
+ } satisfies OrgsListRequest;
44
+
45
+ try {
46
+ const data = await api.orgsList(body);
47
+ console.log(data);
48
+ } catch (error) {
49
+ console.error(error);
50
+ }
51
+ }
52
+
53
+ // Run the test
54
+ example().catch(console.error);
55
+ ```
56
+
57
+ ### Parameters
58
+
59
+
60
+ | Name | Type | Description | Notes |
61
+ |------------- | ------------- | ------------- | -------------|
62
+ | **page** | `number` | A page number within the paginated result set. | [Optional] [Defaults to `undefined`] |
63
+
64
+ ### Return type
65
+
66
+ [**PaginatedOrgList**](PaginatedOrgList.md)
67
+
68
+ ### Authorization
69
+
70
+ [cookieAuth](../README.md#cookieAuth), [ApiKeyAuth](../README.md#ApiKeyAuth)
71
+
72
+ ### HTTP request headers
73
+
74
+ - **Content-Type**: Not defined
75
+ - **Accept**: `application/json`
76
+
77
+
78
+ ### HTTP response details
79
+ | Status code | Description | Response headers |
80
+ |-------------|-------------|------------------|
81
+ | **200** | | - |
82
+
83
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
84
+
85
+
86
+ ## orgsRetrieve
87
+
88
+ > Org orgsRetrieve(orgSlug)
89
+
90
+
91
+
92
+ Retrieve details for a given Org.
93
+
94
+ ### Example
95
+
96
+ ```ts
97
+ import {
98
+ Configuration,
99
+ OrgsApi,
100
+ } from '';
101
+ import type { OrgsRetrieveRequest } from '';
102
+
103
+ async function example() {
104
+ console.log("🚀 Testing SDK...");
105
+ const config = new Configuration({
106
+ // To configure API key authorization: cookieAuth
107
+ apiKey: "YOUR API KEY",
108
+ // To configure API key authorization: ApiKeyAuth
109
+ apiKey: "YOUR API KEY",
110
+ });
111
+ const api = new OrgsApi(config);
112
+
113
+ const body = {
114
+ // string
115
+ orgSlug: orgSlug_example,
116
+ } satisfies OrgsRetrieveRequest;
117
+
118
+ try {
119
+ const data = await api.orgsRetrieve(body);
120
+ console.log(data);
121
+ } catch (error) {
122
+ console.error(error);
123
+ }
124
+ }
125
+
126
+ // Run the test
127
+ example().catch(console.error);
128
+ ```
129
+
130
+ ### Parameters
131
+
132
+
133
+ | Name | Type | Description | Notes |
134
+ |------------- | ------------- | ------------- | -------------|
135
+ | **orgSlug** | `string` | | [Defaults to `undefined`] |
136
+
137
+ ### Return type
138
+
139
+ [**Org**](Org.md)
140
+
141
+ ### Authorization
142
+
143
+ [cookieAuth](../README.md#cookieAuth), [ApiKeyAuth](../README.md#ApiKeyAuth)
144
+
145
+ ### HTTP request headers
146
+
147
+ - **Content-Type**: Not defined
148
+ - **Accept**: `application/json`
149
+
150
+
151
+ ### HTTP response details
152
+ | Status code | Description | Response headers |
153
+ |-------------|-------------|------------------|
154
+ | **200** | | - |
155
+
156
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
157
+
158
+
159
+ ## orgsSitesList
160
+
161
+ > PaginatedSiteList orgsSitesList(orgSlug, page)
162
+
163
+
164
+
165
+ View all sites that the user has access to.
166
+
167
+ ### Example
168
+
169
+ ```ts
170
+ import {
171
+ Configuration,
172
+ OrgsApi,
173
+ } from '';
174
+ import type { OrgsSitesListRequest } from '';
175
+
176
+ async function example() {
177
+ console.log("🚀 Testing SDK...");
178
+ const config = new Configuration({
179
+ // To configure API key authorization: cookieAuth
180
+ apiKey: "YOUR API KEY",
181
+ // To configure API key authorization: ApiKeyAuth
182
+ apiKey: "YOUR API KEY",
183
+ });
184
+ const api = new OrgsApi(config);
185
+
186
+ const body = {
187
+ // string
188
+ orgSlug: orgSlug_example,
189
+ // number | A page number within the paginated result set. (optional)
190
+ page: 56,
191
+ } satisfies OrgsSitesListRequest;
192
+
193
+ try {
194
+ const data = await api.orgsSitesList(body);
195
+ console.log(data);
196
+ } catch (error) {
197
+ console.error(error);
198
+ }
199
+ }
200
+
201
+ // Run the test
202
+ example().catch(console.error);
203
+ ```
204
+
205
+ ### Parameters
206
+
207
+
208
+ | Name | Type | Description | Notes |
209
+ |------------- | ------------- | ------------- | -------------|
210
+ | **orgSlug** | `string` | | [Defaults to `undefined`] |
211
+ | **page** | `number` | A page number within the paginated result set. | [Optional] [Defaults to `undefined`] |
212
+
213
+ ### Return type
214
+
215
+ [**PaginatedSiteList**](PaginatedSiteList.md)
216
+
217
+ ### Authorization
218
+
219
+ [cookieAuth](../README.md#cookieAuth), [ApiKeyAuth](../README.md#ApiKeyAuth)
220
+
221
+ ### HTTP request headers
222
+
223
+ - **Content-Type**: Not defined
224
+ - **Accept**: `application/json`
225
+
226
+
227
+ ### HTTP response details
228
+ | Status code | Description | Response headers |
229
+ |-------------|-------------|------------------|
230
+ | **200** | | - |
231
+
232
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
@@ -0,0 +1,38 @@
1
+
2
+ # PaginatedInvitationList
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `count` | number
10
+ `next` | string
11
+ `previous` | string
12
+ `results` | [Array<Invitation>](Invitation.md)
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { PaginatedInvitationList } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "count": 123,
22
+ "next": http://api.example.org/accounts/?page=4,
23
+ "previous": http://api.example.org/accounts/?page=2,
24
+ "results": null,
25
+ } satisfies PaginatedInvitationList
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedInvitationList
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
@@ -0,0 +1,38 @@
1
+
2
+ # PaginatedMtnList
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `count` | number
10
+ `next` | string
11
+ `previous` | string
12
+ `results` | [Array<Mtn>](Mtn.md)
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { PaginatedMtnList } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "count": 123,
22
+ "next": http://api.example.org/accounts/?page=4,
23
+ "previous": http://api.example.org/accounts/?page=2,
24
+ "results": null,
25
+ } satisfies PaginatedMtnList
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedMtnList
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
@@ -0,0 +1,38 @@
1
+
2
+ # PaginatedOrgList
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `count` | number
10
+ `next` | string
11
+ `previous` | string
12
+ `results` | [Array<Org>](Org.md)
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { PaginatedOrgList } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "count": 123,
22
+ "next": http://api.example.org/accounts/?page=4,
23
+ "previous": http://api.example.org/accounts/?page=2,
24
+ "results": null,
25
+ } satisfies PaginatedOrgList
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedOrgList
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
@@ -0,0 +1,38 @@
1
+
2
+ # PaginatedSiteList
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `count` | number
10
+ `next` | string
11
+ `previous` | string
12
+ `results` | [Array<Site>](Site.md)
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { PaginatedSiteList } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "count": 123,
22
+ "next": http://api.example.org/accounts/?page=4,
23
+ "previous": http://api.example.org/accounts/?page=2,
24
+ "results": null,
25
+ } satisfies PaginatedSiteList
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedSiteList
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)