@dsptch-work/api-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.
- package/LICENSE +21 -0
- package/README.md +130 -0
- package/dist/gen/client/client.gen.d.ts +2 -0
- package/dist/gen/client/client.gen.js +216 -0
- package/dist/gen/client/index.d.ts +8 -0
- package/dist/gen/client/index.js +6 -0
- package/dist/gen/client/types.gen.d.ts +120 -0
- package/dist/gen/client/types.gen.js +2 -0
- package/dist/gen/client/utils.gen.d.ts +37 -0
- package/dist/gen/client/utils.gen.js +228 -0
- package/dist/gen/client.gen.d.ts +12 -0
- package/dist/gen/client.gen.js +3 -0
- package/dist/gen/core/auth.gen.d.ts +18 -0
- package/dist/gen/core/auth.gen.js +14 -0
- package/dist/gen/core/bodySerializer.gen.d.ts +25 -0
- package/dist/gen/core/bodySerializer.gen.js +57 -0
- package/dist/gen/core/params.gen.d.ts +43 -0
- package/dist/gen/core/params.gen.js +100 -0
- package/dist/gen/core/pathSerializer.gen.d.ts +33 -0
- package/dist/gen/core/pathSerializer.gen.js +106 -0
- package/dist/gen/core/queryKeySerializer.gen.d.ts +18 -0
- package/dist/gen/core/queryKeySerializer.gen.js +92 -0
- package/dist/gen/core/serverSentEvents.gen.d.ts +71 -0
- package/dist/gen/core/serverSentEvents.gen.js +132 -0
- package/dist/gen/core/types.gen.d.ts +78 -0
- package/dist/gen/core/types.gen.js +2 -0
- package/dist/gen/core/utils.gen.d.ts +19 -0
- package/dist/gen/core/utils.gen.js +87 -0
- package/dist/gen/index.d.ts +2 -0
- package/dist/gen/index.js +2 -0
- package/dist/gen/sdk.gen.d.ts +2686 -0
- package/dist/gen/sdk.gen.js +4719 -0
- package/dist/gen/types.gen.d.ts +16974 -0
- package/dist/gen/types.gen.js +2 -0
- package/dist/gen/zod.gen.d.ts +16833 -0
- package/dist/gen/zod.gen.js +6478 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +5 -0
- package/dist/pagination.d.ts +36 -0
- package/dist/pagination.js +60 -0
- package/package.json +63 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
/**
|
|
3
|
+
* Replacer that converts non-JSON values (bigint, Date, etc.) to safe substitutes.
|
|
4
|
+
*/
|
|
5
|
+
export const queryKeyJsonReplacer = (_key, value) => {
|
|
6
|
+
if (value === undefined || typeof value === 'function' || typeof value === 'symbol') {
|
|
7
|
+
return undefined;
|
|
8
|
+
}
|
|
9
|
+
if (typeof value === 'bigint') {
|
|
10
|
+
return value.toString();
|
|
11
|
+
}
|
|
12
|
+
if (value instanceof Date) {
|
|
13
|
+
return value.toISOString();
|
|
14
|
+
}
|
|
15
|
+
return value;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Safely stringifies a value and parses it back into a JsonValue.
|
|
19
|
+
*/
|
|
20
|
+
export const stringifyToJsonValue = (input) => {
|
|
21
|
+
try {
|
|
22
|
+
const json = JSON.stringify(input, queryKeyJsonReplacer);
|
|
23
|
+
if (json === undefined) {
|
|
24
|
+
return undefined;
|
|
25
|
+
}
|
|
26
|
+
return JSON.parse(json);
|
|
27
|
+
}
|
|
28
|
+
catch {
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* Detects plain objects (including objects with a null prototype).
|
|
34
|
+
*/
|
|
35
|
+
const isPlainObject = (value) => {
|
|
36
|
+
if (value === null || typeof value !== 'object') {
|
|
37
|
+
return false;
|
|
38
|
+
}
|
|
39
|
+
const prototype = Object.getPrototypeOf(value);
|
|
40
|
+
return prototype === Object.prototype || prototype === null;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Turns URLSearchParams into a sorted JSON object for deterministic keys.
|
|
44
|
+
*/
|
|
45
|
+
const serializeSearchParams = (params) => {
|
|
46
|
+
const entries = Array.from(params.entries()).sort(([a], [b]) => a.localeCompare(b));
|
|
47
|
+
const result = {};
|
|
48
|
+
for (const [key, value] of entries) {
|
|
49
|
+
const existing = result[key];
|
|
50
|
+
if (existing === undefined) {
|
|
51
|
+
result[key] = value;
|
|
52
|
+
continue;
|
|
53
|
+
}
|
|
54
|
+
if (Array.isArray(existing)) {
|
|
55
|
+
existing.push(value);
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
result[key] = [existing, value];
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
return result;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* Normalizes any accepted value into a JSON-friendly shape for query keys.
|
|
65
|
+
*/
|
|
66
|
+
export const serializeQueryKeyValue = (value) => {
|
|
67
|
+
if (value === null) {
|
|
68
|
+
return null;
|
|
69
|
+
}
|
|
70
|
+
if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') {
|
|
71
|
+
return value;
|
|
72
|
+
}
|
|
73
|
+
if (value === undefined || typeof value === 'function' || typeof value === 'symbol') {
|
|
74
|
+
return undefined;
|
|
75
|
+
}
|
|
76
|
+
if (typeof value === 'bigint') {
|
|
77
|
+
return value.toString();
|
|
78
|
+
}
|
|
79
|
+
if (value instanceof Date) {
|
|
80
|
+
return value.toISOString();
|
|
81
|
+
}
|
|
82
|
+
if (Array.isArray(value)) {
|
|
83
|
+
return stringifyToJsonValue(value);
|
|
84
|
+
}
|
|
85
|
+
if (typeof URLSearchParams !== 'undefined' && value instanceof URLSearchParams) {
|
|
86
|
+
return serializeSearchParams(value);
|
|
87
|
+
}
|
|
88
|
+
if (isPlainObject(value)) {
|
|
89
|
+
return stringifyToJsonValue(value);
|
|
90
|
+
}
|
|
91
|
+
return undefined;
|
|
92
|
+
};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import type { Config } from './types.gen.js';
|
|
2
|
+
export type ServerSentEventsOptions<TData = unknown> = Omit<RequestInit, 'method'> & Pick<Config, 'method' | 'responseTransformer' | 'responseValidator'> & {
|
|
3
|
+
/**
|
|
4
|
+
* Fetch API implementation. You can use this option to provide a custom
|
|
5
|
+
* fetch instance.
|
|
6
|
+
*
|
|
7
|
+
* @default globalThis.fetch
|
|
8
|
+
*/
|
|
9
|
+
fetch?: typeof fetch;
|
|
10
|
+
/**
|
|
11
|
+
* Implementing clients can call request interceptors inside this hook.
|
|
12
|
+
*/
|
|
13
|
+
onRequest?: (url: string, init: RequestInit) => Promise<Request>;
|
|
14
|
+
/**
|
|
15
|
+
* Callback invoked when a network or parsing error occurs during streaming.
|
|
16
|
+
*
|
|
17
|
+
* This option applies only if the endpoint returns a stream of events.
|
|
18
|
+
*
|
|
19
|
+
* @param error The error that occurred.
|
|
20
|
+
*/
|
|
21
|
+
onSseError?: (error: unknown) => void;
|
|
22
|
+
/**
|
|
23
|
+
* Callback invoked when an event is streamed from the server.
|
|
24
|
+
*
|
|
25
|
+
* This option applies only if the endpoint returns a stream of events.
|
|
26
|
+
*
|
|
27
|
+
* @param event Event streamed from the server.
|
|
28
|
+
* @returns Nothing (void).
|
|
29
|
+
*/
|
|
30
|
+
onSseEvent?: (event: StreamEvent<TData>) => void;
|
|
31
|
+
serializedBody?: RequestInit['body'];
|
|
32
|
+
/**
|
|
33
|
+
* Default retry delay in milliseconds.
|
|
34
|
+
*
|
|
35
|
+
* This option applies only if the endpoint returns a stream of events.
|
|
36
|
+
*
|
|
37
|
+
* @default 3000
|
|
38
|
+
*/
|
|
39
|
+
sseDefaultRetryDelay?: number;
|
|
40
|
+
/**
|
|
41
|
+
* Maximum number of retry attempts before giving up.
|
|
42
|
+
*/
|
|
43
|
+
sseMaxRetryAttempts?: number;
|
|
44
|
+
/**
|
|
45
|
+
* Maximum retry delay in milliseconds.
|
|
46
|
+
*
|
|
47
|
+
* Applies only when exponential backoff is used.
|
|
48
|
+
*
|
|
49
|
+
* This option applies only if the endpoint returns a stream of events.
|
|
50
|
+
*
|
|
51
|
+
* @default 30000
|
|
52
|
+
*/
|
|
53
|
+
sseMaxRetryDelay?: number;
|
|
54
|
+
/**
|
|
55
|
+
* Optional sleep function for retry backoff.
|
|
56
|
+
*
|
|
57
|
+
* Defaults to using `setTimeout`.
|
|
58
|
+
*/
|
|
59
|
+
sseSleepFn?: (ms: number) => Promise<void>;
|
|
60
|
+
url: string;
|
|
61
|
+
};
|
|
62
|
+
export interface StreamEvent<TData = unknown> {
|
|
63
|
+
data: TData;
|
|
64
|
+
event?: string;
|
|
65
|
+
id?: string;
|
|
66
|
+
retry?: number;
|
|
67
|
+
}
|
|
68
|
+
export type ServerSentEventsResult<TData = unknown, TReturn = void, TNext = unknown> = {
|
|
69
|
+
stream: AsyncGenerator<TData extends Record<string, unknown> ? TData[keyof TData] : TData, TReturn, TNext>;
|
|
70
|
+
};
|
|
71
|
+
export declare function createSseClient<TData = unknown>({ onRequest, onSseError, onSseEvent, responseTransformer, responseValidator, sseDefaultRetryDelay, sseMaxRetryAttempts, sseMaxRetryDelay, sseSleepFn, url, ...options }: ServerSentEventsOptions): ServerSentEventsResult<TData>;
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
export function createSseClient({ onRequest, onSseError, onSseEvent, responseTransformer, responseValidator, sseDefaultRetryDelay, sseMaxRetryAttempts, sseMaxRetryDelay, sseSleepFn, url, ...options }) {
|
|
3
|
+
let lastEventId;
|
|
4
|
+
const sleep = sseSleepFn ?? ((ms) => new Promise((resolve) => setTimeout(resolve, ms)));
|
|
5
|
+
const createStream = async function* () {
|
|
6
|
+
let retryDelay = sseDefaultRetryDelay ?? 3000;
|
|
7
|
+
let attempt = 0;
|
|
8
|
+
const signal = options.signal ?? new AbortController().signal;
|
|
9
|
+
while (true) {
|
|
10
|
+
if (signal.aborted)
|
|
11
|
+
break;
|
|
12
|
+
attempt++;
|
|
13
|
+
const headers = options.headers instanceof Headers
|
|
14
|
+
? options.headers
|
|
15
|
+
: new Headers(options.headers);
|
|
16
|
+
if (lastEventId !== undefined) {
|
|
17
|
+
headers.set('Last-Event-ID', lastEventId);
|
|
18
|
+
}
|
|
19
|
+
try {
|
|
20
|
+
const requestInit = {
|
|
21
|
+
redirect: 'follow',
|
|
22
|
+
...options,
|
|
23
|
+
body: options.serializedBody,
|
|
24
|
+
headers,
|
|
25
|
+
signal,
|
|
26
|
+
};
|
|
27
|
+
let request = new Request(url, requestInit);
|
|
28
|
+
if (onRequest) {
|
|
29
|
+
request = await onRequest(url, requestInit);
|
|
30
|
+
}
|
|
31
|
+
// fetch must be assigned here, otherwise it would throw the error:
|
|
32
|
+
// TypeError: Failed to execute 'fetch' on 'Window': Illegal invocation
|
|
33
|
+
const _fetch = options.fetch ?? globalThis.fetch;
|
|
34
|
+
const response = await _fetch(request);
|
|
35
|
+
if (!response.ok)
|
|
36
|
+
throw new Error(`SSE failed: ${response.status} ${response.statusText}`);
|
|
37
|
+
if (!response.body)
|
|
38
|
+
throw new Error('No body in SSE response');
|
|
39
|
+
const reader = response.body.pipeThrough(new TextDecoderStream()).getReader();
|
|
40
|
+
let buffer = '';
|
|
41
|
+
const abortHandler = () => {
|
|
42
|
+
try {
|
|
43
|
+
reader.cancel();
|
|
44
|
+
}
|
|
45
|
+
catch {
|
|
46
|
+
// noop
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
signal.addEventListener('abort', abortHandler);
|
|
50
|
+
try {
|
|
51
|
+
while (true) {
|
|
52
|
+
const { done, value } = await reader.read();
|
|
53
|
+
if (done)
|
|
54
|
+
break;
|
|
55
|
+
buffer += value;
|
|
56
|
+
buffer = buffer.replace(/\r\n?/g, '\n'); // normalize line endings
|
|
57
|
+
const chunks = buffer.split('\n\n');
|
|
58
|
+
buffer = chunks.pop() ?? '';
|
|
59
|
+
for (const chunk of chunks) {
|
|
60
|
+
const lines = chunk.split('\n');
|
|
61
|
+
const dataLines = [];
|
|
62
|
+
let eventName;
|
|
63
|
+
for (const line of lines) {
|
|
64
|
+
if (line.startsWith('data:')) {
|
|
65
|
+
dataLines.push(line.replace(/^data:\s*/, ''));
|
|
66
|
+
}
|
|
67
|
+
else if (line.startsWith('event:')) {
|
|
68
|
+
eventName = line.replace(/^event:\s*/, '');
|
|
69
|
+
}
|
|
70
|
+
else if (line.startsWith('id:')) {
|
|
71
|
+
lastEventId = line.replace(/^id:\s*/, '');
|
|
72
|
+
}
|
|
73
|
+
else if (line.startsWith('retry:')) {
|
|
74
|
+
const parsed = Number.parseInt(line.replace(/^retry:\s*/, ''), 10);
|
|
75
|
+
if (!Number.isNaN(parsed)) {
|
|
76
|
+
retryDelay = parsed;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
let data;
|
|
81
|
+
let parsedJson = false;
|
|
82
|
+
if (dataLines.length) {
|
|
83
|
+
const rawData = dataLines.join('\n');
|
|
84
|
+
try {
|
|
85
|
+
data = JSON.parse(rawData);
|
|
86
|
+
parsedJson = true;
|
|
87
|
+
}
|
|
88
|
+
catch {
|
|
89
|
+
data = rawData;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
if (parsedJson) {
|
|
93
|
+
if (responseValidator) {
|
|
94
|
+
await responseValidator(data);
|
|
95
|
+
}
|
|
96
|
+
if (responseTransformer) {
|
|
97
|
+
data = await responseTransformer(data);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
onSseEvent?.({
|
|
101
|
+
data,
|
|
102
|
+
event: eventName,
|
|
103
|
+
id: lastEventId,
|
|
104
|
+
retry: retryDelay,
|
|
105
|
+
});
|
|
106
|
+
if (dataLines.length) {
|
|
107
|
+
yield data;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
finally {
|
|
113
|
+
signal.removeEventListener('abort', abortHandler);
|
|
114
|
+
reader.releaseLock();
|
|
115
|
+
}
|
|
116
|
+
break; // exit loop on normal completion
|
|
117
|
+
}
|
|
118
|
+
catch (error) {
|
|
119
|
+
// connection failed or aborted; retry after delay
|
|
120
|
+
onSseError?.(error);
|
|
121
|
+
if (sseMaxRetryAttempts !== undefined && attempt >= sseMaxRetryAttempts) {
|
|
122
|
+
break; // stop after firing error
|
|
123
|
+
}
|
|
124
|
+
// exponential backoff: double retry each attempt, cap at 30s
|
|
125
|
+
const backoff = Math.min(retryDelay * 2 ** (attempt - 1), sseMaxRetryDelay ?? 30000);
|
|
126
|
+
await sleep(backoff);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
};
|
|
130
|
+
const stream = createStream();
|
|
131
|
+
return { stream };
|
|
132
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { Auth, AuthToken } from './auth.gen.js';
|
|
2
|
+
import type { BodySerializer, QuerySerializer, QuerySerializerOptions } from './bodySerializer.gen.js';
|
|
3
|
+
export type HttpMethod = 'connect' | 'delete' | 'get' | 'head' | 'options' | 'patch' | 'post' | 'put' | 'trace';
|
|
4
|
+
export type Client<RequestFn = never, Config = unknown, MethodFn = never, BuildUrlFn = never, SseFn = never> = {
|
|
5
|
+
/**
|
|
6
|
+
* Returns the final request URL.
|
|
7
|
+
*/
|
|
8
|
+
buildUrl: BuildUrlFn;
|
|
9
|
+
getConfig: () => Config;
|
|
10
|
+
request: RequestFn;
|
|
11
|
+
setConfig: (config: Config) => Config;
|
|
12
|
+
} & {
|
|
13
|
+
[K in HttpMethod]: MethodFn;
|
|
14
|
+
} & ([SseFn] extends [never] ? {
|
|
15
|
+
sse?: never;
|
|
16
|
+
} : {
|
|
17
|
+
sse: {
|
|
18
|
+
[K in HttpMethod]: SseFn;
|
|
19
|
+
};
|
|
20
|
+
});
|
|
21
|
+
export interface Config {
|
|
22
|
+
/**
|
|
23
|
+
* Auth token or a function returning auth token. The resolved value will be
|
|
24
|
+
* added to the request payload as defined by its `security` array.
|
|
25
|
+
*/
|
|
26
|
+
auth?: ((auth: Auth) => Promise<AuthToken> | AuthToken) | AuthToken;
|
|
27
|
+
/**
|
|
28
|
+
* A function for serializing request body parameter. By default,
|
|
29
|
+
* {@link JSON.stringify()} will be used.
|
|
30
|
+
*/
|
|
31
|
+
bodySerializer?: BodySerializer | null;
|
|
32
|
+
/**
|
|
33
|
+
* An object containing any HTTP headers that you want to pre-populate your
|
|
34
|
+
* `Headers` object with.
|
|
35
|
+
*
|
|
36
|
+
* {@link https://developer.mozilla.org/docs/Web/API/Headers/Headers#init See more}
|
|
37
|
+
*/
|
|
38
|
+
headers?: RequestInit['headers'] | Record<string, string | number | boolean | (string | number | boolean)[] | null | undefined | unknown>;
|
|
39
|
+
/**
|
|
40
|
+
* The request method.
|
|
41
|
+
*
|
|
42
|
+
* {@link https://developer.mozilla.org/docs/Web/API/fetch#method See more}
|
|
43
|
+
*/
|
|
44
|
+
method?: Uppercase<HttpMethod>;
|
|
45
|
+
/**
|
|
46
|
+
* A function for serializing request query parameters. By default, arrays
|
|
47
|
+
* will be exploded in form style, objects will be exploded in deepObject
|
|
48
|
+
* style, and reserved characters are percent-encoded.
|
|
49
|
+
*
|
|
50
|
+
* This method will have no effect if the native `paramsSerializer()` Axios
|
|
51
|
+
* API function is used.
|
|
52
|
+
*
|
|
53
|
+
* {@link https://swagger.io/docs/specification/serialization/#query View examples}
|
|
54
|
+
*/
|
|
55
|
+
querySerializer?: QuerySerializer | QuerySerializerOptions;
|
|
56
|
+
/**
|
|
57
|
+
* A function validating request data. This is useful if you want to ensure
|
|
58
|
+
* the request conforms to the desired shape, so it can be safely sent to
|
|
59
|
+
* the server.
|
|
60
|
+
*/
|
|
61
|
+
requestValidator?: (data: unknown) => Promise<unknown>;
|
|
62
|
+
/**
|
|
63
|
+
* A function transforming response data before it's returned. This is useful
|
|
64
|
+
* for post-processing data, e.g., converting ISO strings into Date objects.
|
|
65
|
+
*/
|
|
66
|
+
responseTransformer?: (data: unknown) => Promise<unknown>;
|
|
67
|
+
/**
|
|
68
|
+
* A function validating response data. This is useful if you want to ensure
|
|
69
|
+
* the response conforms to the desired shape, so it can be safely passed to
|
|
70
|
+
* the transformers and returned to the user.
|
|
71
|
+
*/
|
|
72
|
+
responseValidator?: (data: unknown) => Promise<unknown>;
|
|
73
|
+
}
|
|
74
|
+
type IsExactlyNeverOrNeverUndefined<T> = [T] extends [never] ? true : [T] extends [never | undefined] ? [undefined] extends [T] ? false : true : false;
|
|
75
|
+
export type OmitNever<T extends Record<string, unknown>> = {
|
|
76
|
+
[K in keyof T as IsExactlyNeverOrNeverUndefined<T[K]> extends true ? never : K]: T[K];
|
|
77
|
+
};
|
|
78
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { BodySerializer, QuerySerializer } from './bodySerializer.gen.js';
|
|
2
|
+
export interface PathSerializer {
|
|
3
|
+
path: Record<string, unknown>;
|
|
4
|
+
url: string;
|
|
5
|
+
}
|
|
6
|
+
export declare const PATH_PARAM_RE: RegExp;
|
|
7
|
+
export declare const defaultPathSerializer: ({ path, url: _url }: PathSerializer) => string;
|
|
8
|
+
export declare const getUrl: ({ baseUrl, path, query, querySerializer, url: _url, }: {
|
|
9
|
+
baseUrl?: string;
|
|
10
|
+
path?: Record<string, unknown>;
|
|
11
|
+
query?: Record<string, unknown>;
|
|
12
|
+
querySerializer: QuerySerializer;
|
|
13
|
+
url: string;
|
|
14
|
+
}) => string;
|
|
15
|
+
export declare function getValidRequestBody(options: {
|
|
16
|
+
body?: unknown;
|
|
17
|
+
bodySerializer?: BodySerializer | null;
|
|
18
|
+
serializedBody?: unknown;
|
|
19
|
+
}): unknown;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
import { serializeArrayParam, serializeObjectParam, serializePrimitiveParam, } from './pathSerializer.gen.js';
|
|
3
|
+
export const PATH_PARAM_RE = /\{[^{}]+\}/g;
|
|
4
|
+
export const defaultPathSerializer = ({ path, url: _url }) => {
|
|
5
|
+
let url = _url;
|
|
6
|
+
const matches = _url.match(PATH_PARAM_RE);
|
|
7
|
+
if (matches) {
|
|
8
|
+
for (const match of matches) {
|
|
9
|
+
let explode = false;
|
|
10
|
+
let name = match.substring(1, match.length - 1);
|
|
11
|
+
let style = 'simple';
|
|
12
|
+
if (name.endsWith('*')) {
|
|
13
|
+
explode = true;
|
|
14
|
+
name = name.substring(0, name.length - 1);
|
|
15
|
+
}
|
|
16
|
+
if (name.startsWith('.')) {
|
|
17
|
+
name = name.substring(1);
|
|
18
|
+
style = 'label';
|
|
19
|
+
}
|
|
20
|
+
else if (name.startsWith(';')) {
|
|
21
|
+
name = name.substring(1);
|
|
22
|
+
style = 'matrix';
|
|
23
|
+
}
|
|
24
|
+
const value = path[name];
|
|
25
|
+
if (value === undefined || value === null) {
|
|
26
|
+
continue;
|
|
27
|
+
}
|
|
28
|
+
if (Array.isArray(value)) {
|
|
29
|
+
url = url.replace(match, serializeArrayParam({ explode, name, style, value }));
|
|
30
|
+
continue;
|
|
31
|
+
}
|
|
32
|
+
if (typeof value === 'object') {
|
|
33
|
+
url = url.replace(match, serializeObjectParam({
|
|
34
|
+
explode,
|
|
35
|
+
name,
|
|
36
|
+
style,
|
|
37
|
+
value: value,
|
|
38
|
+
valueOnly: true,
|
|
39
|
+
}));
|
|
40
|
+
continue;
|
|
41
|
+
}
|
|
42
|
+
if (style === 'matrix') {
|
|
43
|
+
url = url.replace(match, `;${serializePrimitiveParam({
|
|
44
|
+
name,
|
|
45
|
+
value: value,
|
|
46
|
+
})}`);
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
49
|
+
const replaceValue = encodeURIComponent(style === 'label' ? `.${value}` : value);
|
|
50
|
+
url = url.replace(match, replaceValue);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
return url;
|
|
54
|
+
};
|
|
55
|
+
export const getUrl = ({ baseUrl, path, query, querySerializer, url: _url, }) => {
|
|
56
|
+
const pathUrl = _url.startsWith('/') ? _url : `/${_url}`;
|
|
57
|
+
let url = (baseUrl ?? '') + pathUrl;
|
|
58
|
+
if (path) {
|
|
59
|
+
url = defaultPathSerializer({ path, url });
|
|
60
|
+
}
|
|
61
|
+
let search = query ? querySerializer(query) : '';
|
|
62
|
+
if (search.startsWith('?')) {
|
|
63
|
+
search = search.substring(1);
|
|
64
|
+
}
|
|
65
|
+
if (search) {
|
|
66
|
+
url += `?${search}`;
|
|
67
|
+
}
|
|
68
|
+
return url;
|
|
69
|
+
};
|
|
70
|
+
export function getValidRequestBody(options) {
|
|
71
|
+
const hasBody = options.body !== undefined;
|
|
72
|
+
const isSerializedBody = hasBody && options.bodySerializer;
|
|
73
|
+
if (isSerializedBody) {
|
|
74
|
+
if ('serializedBody' in options) {
|
|
75
|
+
const hasSerializedBody = options.serializedBody !== undefined && options.serializedBody !== '';
|
|
76
|
+
return hasSerializedBody ? options.serializedBody : null;
|
|
77
|
+
}
|
|
78
|
+
// not all clients implement a serializedBody property (i.e., client-axios)
|
|
79
|
+
return options.body !== '' ? options.body : null;
|
|
80
|
+
}
|
|
81
|
+
// plain/text body
|
|
82
|
+
if (hasBody) {
|
|
83
|
+
return options.body;
|
|
84
|
+
}
|
|
85
|
+
// no body was provided
|
|
86
|
+
return undefined;
|
|
87
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { ApprenticeshipApprentices, ApprenticeshipEmployers, ApprenticeshipOccupations, ApprenticeshipPrograms, ApprenticeshipWageSchedulePeriods, ApprenticeshipWageSchedules, AssetsAttributes, AssetsCategories, AssetsCustodies, AssetsEvents, AssetsFormAssignmentTriggers, AssetsInventories, AssetsItems, AssetsProducts, AssetsSites, AssetsTransfers, AssetsVendors, AtlasFeatures, AtlasSites, AttestationConfigs, Billing, CertificationPackages, Certifications, Companies, CompaniesDepartments, CompensationElements, ComplianceChecks, CustomFieldConfigurations, DirectUploads, ExternalMaps, Forms, FringeBenefitPlans, Groups, Holidays, Jobs, JobTimeCardDays, JobWageDeterminationRateRules, JobWageDeterminations, type Options, PayPeriods, PayrollRuns, PaySchedules, PaystubLineItems, Paystubs, PerDiems, PositionFunctions, PriorPeriodAdjustments, ProductionCompletions, ProductionJobScopePrices, Projects, PwaTrades, Tasks, TimeCardActuals, TimeCards, Timecodes, TimeEntries, UserCertifications, UserRoles, Users, WageDeterminations, WorkTypes } from './sdk.gen.js';
|
|
2
|
+
export type { AddUserRolesData, AddUserRolesError, AddUserRolesErrors, AddUserRolesResponse, AddUserRolesResponses, AddUsersToGroupData, AddUsersToGroupError, AddUsersToGroupErrors, AddUsersToGroupResponse, AddUsersToGroupResponses, AdjustProductInventoryData, AdjustProductInventoryError, AdjustProductInventoryErrors, AdjustProductInventoryResponse, AdjustProductInventoryResponses, ApprenticeshipApprenticeParameters, ApprenticeshipApprenticeResponseObject, ApprenticeshipOccupationParameters, ApprenticeshipOccupationResponseObject, ApprenticeshipProgramEmployerParameters, ApprenticeshipProgramEmployerResponseObject, ApprenticeshipProgramParameters, ApprenticeshipProgramResponseObject, ApprenticeshipWageScheduleParameters, ApprenticeshipWageSchedulePeriodParameters, ApprenticeshipWageSchedulePeriodResponseObject, ApprenticeshipWageScheduleResponseObject, AssetsAdjustmentParameters, AssetsAttributeParameters, AssetsAttributeResponseObject, AssetsAttributeValueObjects, AssetsCategoryParameters, AssetsCategoryResponseObject, AssetsCustodyResponseObject, AssetsDocumentParameters, AssetsDocumentResponseObject, AssetsDocumentVersionResponseObject, AssetsFormAssignmentTriggerParameters, AssetsFormAssignmentTriggerResponseObject, AssetsInventoryResponseObject, AssetsItemEventResponseObject, AssetsItemFormAssignmentParameters, AssetsItemFormAssignmentResponseObject, AssetsItemParameters, AssetsItemResponseObject, AssetsProductParameters, AssetsProductResponseObject, AssetsRestockParameters, AssetsRetirementParameters, AssetsServiceEventFullResponseObject, AssetsServiceEventParameters, AssetsServiceEventResponseObject, AssetsServiceScheduleParameters, AssetsServiceScheduleResponseObject, AssetsServiceScheduleTemplateParameters, AssetsServiceScheduleTemplateResponseObject, AssetsSiteParameters, AssetsSiteResponseObject, AssetsTransactionEventResponseObject, AssetsTransferParameters, AssetsTransferResponseObject, AssetsVendorParameters, AssetsVendorResponseObject, AttestationConfigParameters, AttestationConfigResponseObject, BillingPwaUserCountByProjectByMonthResponseObject, CancelTimecodeScheduledChangesData, CancelTimecodeScheduledChangesError, CancelTimecodeScheduledChangesErrors, CancelTimecodeScheduledChangesResponse, CancelTimecodeScheduledChangesResponses, CancelTimecodeScheduledTerminationData, CancelTimecodeScheduledTerminationError, CancelTimecodeScheduledTerminationErrors, CancelTimecodeScheduledTerminationResponse, CancelTimecodeScheduledTerminationResponses, CancelUserCompanyScheduledChangeData, CancelUserCompanyScheduledChangeError, CancelUserCompanyScheduledChangeErrors, CancelUserCompanyScheduledChangeResponse, CancelUserCompanyScheduledChangeResponses, CancelUserCompanyScheduledTerminationData, CancelUserCompanyScheduledTerminationError, CancelUserCompanyScheduledTerminationErrors, CancelUserCompanyScheduledTerminationResponse, CancelUserCompanyScheduledTerminationResponses, CertificationPackageParameters, CertificationPackageResponseObject, CertificationParameters, CertificationResponseObject, CertificationsResponseObject, ClientOptions, CompanyResponseObject, CompensationElementResponseObject, ComplianceCheckParameters, ComplianceCheckResponseObject, CreateApprenticeData, CreateApprenticeError, CreateApprenticeErrors, CreateApprenticeResponse, CreateApprenticeResponses, CreateAttestationConfigData, CreateAttestationConfigError, CreateAttestationConfigErrors, CreateAttestationConfigResponse, CreateAttestationConfigResponses, CreateAttributeData, CreateAttributeError, CreateAttributeErrors, CreateAttributeResponse, CreateAttributeResponses, CreateCategoryData, CreateCategoryError, CreateCategoryErrors, CreateCategoryResponse, CreateCategoryResponses, CreateCertificationData, CreateCertificationError, CreateCertificationErrors, CreateCertificationResponse, CreateCertificationResponses, CreateCompanyData, CreateCompanyError, CreateCompanyErrors, CreateCompanyResponse, CreateCompanyResponses, CreateCompanyUserDetailData, CreateCompanyUserDetailError, CreateCompanyUserDetailErrors, CreateCompanyUserDetailResponse, CreateCompanyUserDetailResponses, CreateCompletionData, CreateCompletionError, CreateCompletionErrors, CreateCompletionResponse, CreateCompletionResponses, CreateCustomFieldConfigData, CreateCustomFieldConfigError, CreateCustomFieldConfigErrors, CreateCustomFieldConfigResponse, CreateCustomFieldConfigResponses, CreateDepartmentData, CreateDepartmentError, CreateDepartmentErrors, CreateDepartmentResponse, CreateDepartmentResponses, CreateDirectUploadData, CreateDirectUploadError, CreateDirectUploadErrors, CreateDirectUploadResponse, CreateDirectUploadResponses, CreateDocumentData, CreateDocumentError, CreateDocumentErrors, CreateDocumentResponse, CreateDocumentResponses, CreateEmployerData, CreateEmployerError, CreateEmployerErrors, CreateEmployerResponse, CreateEmployerResponses, CreateFormAssignmentTaskData, CreateFormAssignmentTaskError, CreateFormAssignmentTaskErrors, CreateFormAssignmentTaskResponse, CreateFormAssignmentTaskResponses, CreateFormAssignmentTriggerData, CreateFormAssignmentTriggerError, CreateFormAssignmentTriggerErrors, CreateFormAssignmentTriggerResponse, CreateFormAssignmentTriggerResponses, CreateFringeBenefitPlanData, CreateFringeBenefitPlanError, CreateFringeBenefitPlanErrors, CreateFringeBenefitPlanResponse, CreateFringeBenefitPlanResponses, CreateGroupData, CreateGroupError, CreateGroupErrors, CreateGroupResponse, CreateGroupResponses, CreateHolidayData, CreateHolidayError, CreateHolidayErrors, CreateHolidayResponse, CreateHolidayResponses, CreateItemData, CreateItemError, CreateItemErrors, CreateItemFormAssignmentTaskData, CreateItemFormAssignmentTaskError, CreateItemFormAssignmentTaskErrors, CreateItemFormAssignmentTaskResponse, CreateItemFormAssignmentTaskResponses, CreateItemResponse, CreateItemResponses, CreateJobData, CreateJobError, CreateJobErrors, CreateJobResponse, CreateJobResponses, CreateJobScopePriceData, CreateJobScopePriceError, CreateJobScopePriceErrors, CreateJobScopePriceResponse, CreateJobScopePriceResponses, CreateJobTradeData, CreateJobTradeError, CreateJobTradeErrors, CreateJobTradeResponse, CreateJobTradeResponses, CreateManagerTimeCardApprovalData, CreateManagerTimeCardApprovalError, CreateManagerTimeCardApprovalErrors, CreateManagerTimeCardApprovalResponse, CreateManagerTimeCardApprovalResponses, CreateManagerTimeEntryApprovalData, CreateManagerTimeEntryApprovalError, CreateManagerTimeEntryApprovalErrors, CreateManagerTimeEntryApprovalResponse, CreateManagerTimeEntryApprovalResponses, CreateOccupationData, CreateOccupationError, CreateOccupationErrors, CreateOccupationResponse, CreateOccupationResponses, CreatePackageData, CreatePackageError, CreatePackageErrors, CreatePackageResponse, CreatePackageResponses, CreatePayrollRunData, CreatePayrollRunError, CreatePayrollRunErrors, CreatePayrollRunResponse, CreatePayrollRunResponses, CreatePaystubData, CreatePaystubError, CreatePaystubErrors, CreatePaystubLineItemData, CreatePaystubLineItemError, CreatePaystubLineItemErrors, CreatePaystubLineItemResponse, CreatePaystubLineItemResponses, CreatePaystubResponse, CreatePaystubResponses, CreatePerDiemData, CreatePerDiemError, CreatePerDiemErrors, CreatePerDiemResponse, CreatePerDiemResponses, CreatePeriodData, CreatePeriodError, CreatePeriodErrors, CreatePeriodResponse, CreatePeriodResponses, CreatePositionData, CreatePositionError, CreatePositionErrors, CreatePositionFunctionData, CreatePositionFunctionError, CreatePositionFunctionErrors, CreatePositionFunctionResponse, CreatePositionFunctionResponses, CreatePositionResponse, CreatePositionResponses, CreateProductData, CreateProductError, CreateProductErrors, CreateProductResponse, CreateProductResponses, CreateProgramData, CreateProgramError, CreateProgramErrors, CreateProgramResponse, CreateProgramResponses, CreateProjectData, CreateProjectError, CreateProjectErrors, CreateProjectResponse, CreateProjectResponses, CreateProjectTradeData, CreateProjectTradeError, CreateProjectTradeErrors, CreateProjectTradeResponse, CreateProjectTradeResponses, CreateRateRuleData, CreateRateRuleError, CreateRateRuleErrors, CreateRateRuleResponse, CreateRateRuleResponses, CreateScheduledTerminationData, CreateScheduledTerminationError, CreateScheduledTerminationErrors, CreateScheduledTerminationResponse, CreateScheduledTerminationResponses, CreateServiceEventData, CreateServiceEventError, CreateServiceEventErrors, CreateServiceEventResponse, CreateServiceEventResponses, CreateServiceScheduleData, CreateServiceScheduleError, CreateServiceScheduleErrors, CreateServiceScheduleResponse, CreateServiceScheduleResponses, CreateServiceScheduleTemplateData, CreateServiceScheduleTemplateError, CreateServiceScheduleTemplateErrors, CreateServiceScheduleTemplateResponse, CreateServiceScheduleTemplateResponses, CreateSiteData, CreateSiteError, CreateSiteErrors, CreateSiteResponse, CreateSiteResponses, CreateTimeCardPerDiemData, CreateTimeCardPerDiemError, CreateTimeCardPerDiemErrors, CreateTimeCardPerDiemResponse, CreateTimeCardPerDiemResponses, CreateTimecodeData, CreateTimecodeError, CreateTimecodeErrors, CreateTimecodeResponse, CreateTimecodeResponses, CreateTimeEntryData, CreateTimeEntryError, CreateTimeEntryErrors, CreateTimeEntryResponse, CreateTimeEntryResponses, CreateTransferData, CreateTransferError, CreateTransferErrors, CreateTransferResponse, CreateTransferResponses, CreateUserCertificationData, CreateUserCertificationError, CreateUserCertificationErrors, CreateUserCertificationResponse, CreateUserCertificationResponses, CreateUserCompanyScheduledChangeData, CreateUserCompanyScheduledChangeError, CreateUserCompanyScheduledChangeErrors, CreateUserCompanyScheduledChangeResponse, CreateUserCompanyScheduledChangeResponses, CreateUserData, CreateUserError, CreateUserErrors, CreateUserResponse, CreateUserResponses, CreateVendorData, CreateVendorError, CreateVendorErrors, CreateVendorResponse, CreateVendorResponses, CreateWageDeterminationData, CreateWageDeterminationError, CreateWageDeterminationErrors, CreateWageDeterminationResponse, CreateWageDeterminationResponses, CreateWageScheduleData, CreateWageScheduleError, CreateWageScheduleErrors, CreateWageScheduleResponse, CreateWageScheduleResponses, CreateWorkerTimeCardApprovalData, CreateWorkerTimeCardApprovalError, CreateWorkerTimeCardApprovalErrors, CreateWorkerTimeCardApprovalResponse, CreateWorkerTimeCardApprovalResponses, CustomFieldConfigParameters, CustomFieldConfigsResponseObject, DateTimeFilter, DeleteAttestationConfigData, DeleteAttestationConfigError, DeleteAttestationConfigErrors, DeleteAttestationConfigResponse, DeleteAttestationConfigResponses, DeleteAttributeData, DeleteAttributeError, DeleteAttributeErrors, DeleteAttributeResponse, DeleteAttributeResponses, DeleteCategoryData, DeleteCategoryError, DeleteCategoryErrors, DeleteCategoryResponse, DeleteCategoryResponses, DeleteCertificationData, DeleteCertificationError, DeleteCertificationErrors, DeleteCertificationResponse, DeleteCertificationResponses, DeleteCompletionData, DeleteCompletionError, DeleteCompletionErrors, DeleteCompletionResponse, DeleteCompletionResponses, DeleteCustomFieldConfigData, DeleteCustomFieldConfigError, DeleteCustomFieldConfigErrors, DeleteCustomFieldConfigResponse, DeleteCustomFieldConfigResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteEmployerData, DeleteEmployerError, DeleteEmployerErrors, DeleteEmployerResponse, DeleteEmployerResponses, DeleteFormAssignmentTriggerData, DeleteFormAssignmentTriggerError, DeleteFormAssignmentTriggerErrors, DeleteFormAssignmentTriggerResponse, DeleteFormAssignmentTriggerResponses, DeleteFringeBenefitPlanData, DeleteFringeBenefitPlanError, DeleteFringeBenefitPlanErrors, DeleteFringeBenefitPlanResponse, DeleteFringeBenefitPlanResponses, DeleteGroupData, DeleteGroupError, DeleteGroupErrors, DeleteGroupResponse, DeleteGroupResponses, DeleteHolidayData, DeleteHolidayError, DeleteHolidayErrors, DeleteHolidayResponse, DeleteHolidayResponses, DeleteItemData, DeleteItemError, DeleteItemErrors, DeleteItemResponse, DeleteItemResponses, DeleteJobScopePriceData, DeleteJobScopePriceError, DeleteJobScopePriceErrors, DeleteJobScopePriceResponse, DeleteJobScopePriceResponses, DeletePackageData, DeletePackageError, DeletePackageErrors, DeletePackageResponse, DeletePackageResponses, DeletePayrollRunData, DeletePayrollRunError, DeletePayrollRunErrors, DeletePayrollRunResponse, DeletePayrollRunResponses, DeletePaystubData, DeletePaystubError, DeletePaystubErrors, DeletePaystubLineItemData, DeletePaystubLineItemError, DeletePaystubLineItemErrors, DeletePaystubLineItemResponse, DeletePaystubLineItemResponses, DeletePaystubResponse, DeletePaystubResponses, DeletePerDiemData, DeletePerDiemError, DeletePerDiemErrors, DeletePerDiemResponse, DeletePerDiemResponses, DeletePositionFunctionData, DeletePositionFunctionError, DeletePositionFunctionErrors, DeletePositionFunctionResponse, DeletePositionFunctionResponses, DeleteProductData, DeleteProductError, DeleteProductErrors, DeleteProductResponse, DeleteProductResponses, DeleteServiceEventData, DeleteServiceEventError, DeleteServiceEventErrors, DeleteServiceEventResponse, DeleteServiceEventResponses, DeleteServiceScheduleData, DeleteServiceScheduleError, DeleteServiceScheduleErrors, DeleteServiceScheduleResponse, DeleteServiceScheduleResponses, DeleteServiceScheduleTemplateData, DeleteServiceScheduleTemplateError, DeleteServiceScheduleTemplateErrors, DeleteServiceScheduleTemplateResponse, DeleteServiceScheduleTemplateResponses, DeleteSiteData, DeleteSiteError, DeleteSiteErrors, DeleteSiteResponse, DeleteSiteResponses, DeleteTimeCardPerDiemData, DeleteTimeCardPerDiemError, DeleteTimeCardPerDiemErrors, DeleteTimeCardPerDiemResponse, DeleteTimeCardPerDiemResponses, DeleteTimeEntryData, DeleteTimeEntryError, DeleteTimeEntryErrors, DeleteTimeEntryResponse, DeleteTimeEntryResponses, DeleteUserCertificationData, DeleteUserCertificationError, DeleteUserCertificationErrors, DeleteUserCertificationResponse, DeleteUserCertificationResponses, DeleteUserRoleData, DeleteUserRoleError, DeleteUserRoleErrors, DeleteUserRoleResponse, DeleteUserRoleResponses, DeleteVendorData, DeleteVendorError, DeleteVendorErrors, DeleteVendorResponse, DeleteVendorResponses, DeleteWageDeterminationData, DeleteWageDeterminationError, DeleteWageDeterminationErrors, DeleteWageDeterminationResponse, DeleteWageDeterminationResponses, DepartmentParameters, DepartmentResponseObject, DirectUploadParameters, DirectUploadResponseObject, ErrorsObject, FeatureResponseObject, FederalJobWageDeterminationParameters, FederalJobWageDeterminationResponseObject, FormAssignmentTaskResponseObject, FormDefinitionResponseObject, FormSubmissionIndexObject, FormSubmissionResponseObject, GetAssetsSiteData, GetAssetsSiteError, GetAssetsSiteErrors, GetAssetsSiteResponse, GetAssetsSiteResponses, GetAtlasSiteData, GetAtlasSiteError, GetAtlasSiteErrors, GetAtlasSiteResponse, GetAtlasSiteResponses, GetAttestationConfigData, GetAttestationConfigError, GetAttestationConfigErrors, GetAttestationConfigResponse, GetAttestationConfigResponses, GetAttributeData, GetAttributeError, GetAttributeErrors, GetAttributeResponse, GetAttributeResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryResponse, GetCategoryResponses, GetCertificationData, GetCertificationError, GetCertificationErrors, GetCertificationResponse, GetCertificationResponses, GetCheckData, GetCheckError, GetCheckErrors, GetCheckResponse, GetCheckResponses, GetCompanyData, GetCompanyError, GetCompanyErrors, GetCompanyResponse, GetCompanyResponses, GetCompensationElementData, GetCompensationElementError, GetCompensationElementErrors, GetCompensationElementResponse, GetCompensationElementResponses, GetCompletionData, GetCompletionError, GetCompletionErrors, GetCompletionResponse, GetCompletionResponses, GetCustodyData, GetCustodyError, GetCustodyErrors, GetCustodyResponse, GetCustodyResponses, GetCustomFieldConfigData, GetCustomFieldConfigError, GetCustomFieldConfigErrors, GetCustomFieldConfigResponse, GetCustomFieldConfigResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetEventData, GetEventError, GetEventErrors, GetEventResponse, GetEventResponses, GetExternalMapData, GetExternalMapError, GetExternalMapErrors, GetExternalMapResponse, GetExternalMapResponses, GetFeatureData, GetFeatureError, GetFeatureErrors, GetFeatureResponse, GetFeatureResponses, GetFormAssignmentTaskData, GetFormAssignmentTaskError, GetFormAssignmentTaskErrors, GetFormAssignmentTaskResponse, GetFormAssignmentTaskResponses, GetFormAssignmentTriggerData, GetFormAssignmentTriggerError, GetFormAssignmentTriggerErrors, GetFormAssignmentTriggerResponse, GetFormAssignmentTriggerResponses, GetFormSubmissionData, GetFormSubmissionError, GetFormSubmissionErrors, GetFormSubmissionResponse, GetFormSubmissionResponses, GetFringeBenefitPlanData, GetFringeBenefitPlanError, GetFringeBenefitPlanErrors, GetFringeBenefitPlanResponse, GetFringeBenefitPlanResponses, GetGroupData, GetGroupError, GetGroupErrors, GetGroupResponse, GetGroupResponses, GetInventoryData, GetInventoryError, GetInventoryErrors, GetInventoryResponse, GetInventoryResponses, GetItemData, GetItemError, GetItemErrors, GetItemResponse, GetItemResponses, GetJobData, GetJobError, GetJobErrors, GetJobResponse, GetJobResponses, GetJobScopePriceData, GetJobScopePriceError, GetJobScopePriceErrors, GetJobScopePriceResponse, GetJobScopePriceResponses, GetJobTimeCardDayData, GetJobTimeCardDayError, GetJobTimeCardDayErrors, GetJobTimeCardDayResponse, GetJobTimeCardDayResponses, GetJobWageDeterminationData, GetJobWageDeterminationError, GetJobWageDeterminationErrors, GetJobWageDeterminationResponse, GetJobWageDeterminationResponses, GetPackageData, GetPackageError, GetPackageErrors, GetPackageResponse, GetPackageResponses, GetPayPeriodConfigData, GetPayPeriodConfigError, GetPayPeriodConfigErrors, GetPayPeriodConfigResponse, GetPayPeriodConfigResponses, GetPayrollRunData, GetPayrollRunError, GetPayrollRunErrors, GetPayrollRunResponse, GetPayrollRunResponses, GetPaystubData, GetPaystubError, GetPaystubErrors, GetPaystubLineItemData, GetPaystubLineItemError, GetPaystubLineItemErrors, GetPaystubLineItemResponse, GetPaystubLineItemResponses, GetPaystubResponse, GetPaystubResponses, GetPerDiemData, GetPerDiemError, GetPerDiemErrors, GetPerDiemResponse, GetPerDiemResponses, GetPositionFunctionData, GetPositionFunctionError, GetPositionFunctionErrors, GetPositionFunctionResponse, GetPositionFunctionResponses, GetPriorPeriodAdjustmentData, GetPriorPeriodAdjustmentError, GetPriorPeriodAdjustmentErrors, GetPriorPeriodAdjustmentResponse, GetPriorPeriodAdjustmentResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProjectData, GetProjectError, GetProjectErrors, GetProjectResponse, GetProjectResponses, GetRateRuleData, GetRateRuleError, GetRateRuleErrors, GetRateRuleResponse, GetRateRuleResponses, GetServiceEventData, GetServiceEventError, GetServiceEventErrors, GetServiceEventResponse, GetServiceEventResponses, GetServiceScheduleData, GetServiceScheduleError, GetServiceScheduleErrors, GetServiceScheduleResponse, GetServiceScheduleResponses, GetServiceScheduleTemplateData, GetServiceScheduleTemplateError, GetServiceScheduleTemplateErrors, GetServiceScheduleTemplateResponse, GetServiceScheduleTemplateResponses, GetTimeCardActualData, GetTimeCardActualError, GetTimeCardActualErrors, GetTimeCardActualResponse, GetTimeCardActualResponses, GetTimeCardData, GetTimeCardError, GetTimeCardErrors, GetTimeCardResponse, GetTimeCardResponses, GetTimecodeData, GetTimecodeError, GetTimecodeErrors, GetTimecodeResponse, GetTimecodeResponses, GetTradeData, GetTradeError, GetTradeErrors, GetTradeResponse, GetTradeResponses, GetTransferData, GetTransferError, GetTransferErrors, GetTransferResponse, GetTransferResponses, GetUserCertificationData, GetUserCertificationError, GetUserCertificationErrors, GetUserCertificationResponse, GetUserCertificationResponses, GetUserData, GetUserError, GetUserErrors, GetUserResponse, GetUserResponses, GetVendorData, GetVendorError, GetVendorErrors, GetVendorResponse, GetVendorResponses, GetWageDeterminationData, GetWageDeterminationError, GetWageDeterminationErrors, GetWageDeterminationResponse, GetWageDeterminationResponses, GroupParameters, GroupResponseObject, HolidayParameters, HolidayResponseObject, JobParameters, JobResponseObject, JobTemplateResponseObject, JobTimeCardDayResponseObject, JobTimeCardDaysResponseObject, JobUpdateParameters, JobWageDeterminationParameters, JobWageDeterminationResponseObject, LaborRateResponseObject, LaborRatesResponseObject, Links, ListApprenticesData, ListApprenticesError, ListApprenticesErrors, ListApprenticesResponse, ListApprenticesResponses, ListAssetsSitesData, ListAssetsSitesError, ListAssetsSitesErrors, ListAssetsSitesResponse, ListAssetsSitesResponses, ListAtlasSitesData, ListAtlasSitesError, ListAtlasSitesErrors, ListAtlasSitesResponse, ListAtlasSitesResponses, ListAttestationConfigsData, ListAttestationConfigsError, ListAttestationConfigsErrors, ListAttestationConfigsResponse, ListAttestationConfigsResponses, ListAttributesData, ListAttributesError, ListAttributesErrors, ListAttributesResponse, ListAttributesResponses, ListCategoriesData, ListCategoriesError, ListCategoriesErrors, ListCategoriesResponse, ListCategoriesResponses, ListCertificationsData, ListCertificationsError, ListCertificationsErrors, ListCertificationsResponse, ListCertificationsResponses, ListChecksData, ListChecksError, ListChecksErrors, ListChecksResponse, ListChecksResponses, ListCompaniesData, ListCompaniesError, ListCompaniesErrors, ListCompaniesResponse, ListCompaniesResponses, ListCompensationElementsData, ListCompensationElementsError, ListCompensationElementsErrors, ListCompensationElementsResponse, ListCompensationElementsResponses, ListCompletionsData, ListCompletionsError, ListCompletionsErrors, ListCompletionsResponse, ListCompletionsResponses, ListCustodiesData, ListCustodiesError, ListCustodiesErrors, ListCustodiesResponse, ListCustodiesResponses, ListCustomFieldConfigsData, ListCustomFieldConfigsError, ListCustomFieldConfigsErrors, ListCustomFieldConfigsResponse, ListCustomFieldConfigsResponses, ListDeltasData, ListDeltasError, ListDeltasErrors, ListDeltasResponse, ListDeltasResponses, ListDepartmentsData, ListDepartmentsError, ListDepartmentsErrors, ListDepartmentsResponse, ListDepartmentsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListEmployersData, ListEmployersError, ListEmployersErrors, ListEmployersResponse, ListEmployersResponses, ListEventsData, ListEventsError, ListEventsErrors, ListEventsResponse, ListEventsResponses, ListExternalMapsData, ListExternalMapsError, ListExternalMapsErrors, ListExternalMapsResponse, ListExternalMapsResponses, ListFeaturesData, ListFeaturesError, ListFeaturesErrors, ListFeaturesResponse, ListFeaturesResponses, ListFormAssignmentTasksData, ListFormAssignmentTasksError, ListFormAssignmentTasksErrors, ListFormAssignmentTasksResponse, ListFormAssignmentTasksResponses, ListFormAssignmentTriggersData, ListFormAssignmentTriggersError, ListFormAssignmentTriggersErrors, ListFormAssignmentTriggersResponse, ListFormAssignmentTriggersResponses, ListFormDefinitionsData, ListFormDefinitionsError, ListFormDefinitionsErrors, ListFormDefinitionsResponse, ListFormDefinitionsResponses, ListFormSubmissionsData, ListFormSubmissionsError, ListFormSubmissionsErrors, ListFormSubmissionsResponse, ListFormSubmissionsResponses, ListFringeBenefitPlansData, ListFringeBenefitPlansError, ListFringeBenefitPlansErrors, ListFringeBenefitPlansResponse, ListFringeBenefitPlansResponses, ListGroupsData, ListGroupsError, ListGroupsErrors, ListGroupsResponse, ListGroupsResponses, ListGroupUsersData, ListGroupUsersError, ListGroupUsersErrors, ListGroupUsersResponse, ListGroupUsersResponses, ListHolidaysData, ListHolidaysError, ListHolidaysErrors, ListHolidaysResponse, ListHolidaysResponses, ListInventoriesData, ListInventoriesError, ListInventoriesErrors, ListInventoriesResponse, ListInventoriesResponses, ListItemsData, ListItemsError, ListItemsErrors, ListItemsResponse, ListItemsResponses, ListJobScopePricesData, ListJobScopePricesError, ListJobScopePricesErrors, ListJobScopePricesResponse, ListJobScopePricesResponses, ListJobsData, ListJobsError, ListJobsErrors, ListJobsResponse, ListJobsResponses, ListJobTimeCardDaysData, ListJobTimeCardDaysError, ListJobTimeCardDaysErrors, ListJobTimeCardDaysResponse, ListJobTimeCardDaysResponses, ListJobWageDeterminationsData, ListJobWageDeterminationsError, ListJobWageDeterminationsErrors, ListJobWageDeterminationsResponse, ListJobWageDeterminationsResponses, ListLaborRatesData, ListLaborRatesError, ListLaborRatesErrors, ListLaborRatesResponse, ListLaborRatesResponses, ListOccupationsData, ListOccupationsError, ListOccupationsErrors, ListOccupationsResponse, ListOccupationsResponses, ListPackagesData, ListPackagesError, ListPackagesErrors, ListPackagesResponse, ListPackagesResponses, ListPayPeriodConfigsData, ListPayPeriodConfigsError, ListPayPeriodConfigsErrors, ListPayPeriodConfigsResponse, ListPayPeriodConfigsResponses, ListPayPeriodsData, ListPayPeriodsError, ListPayPeriodsErrors, ListPayPeriodsResponse, ListPayPeriodsResponses, ListPayrollRunsData, ListPayrollRunsError, ListPayrollRunsErrors, ListPayrollRunsResponse, ListPayrollRunsResponses, ListPaystubLineItemsData, ListPaystubLineItemsError, ListPaystubLineItemsErrors, ListPaystubLineItemsResponse, ListPaystubLineItemsResponses, ListPaystubsData, ListPaystubsError, ListPaystubsErrors, ListPaystubsResponse, ListPaystubsResponses, ListPerDiemsData, ListPerDiemsError, ListPerDiemsErrors, ListPerDiemsResponse, ListPerDiemsResponses, ListPeriodsData, ListPeriodsError, ListPeriodsErrors, ListPeriodsResponse, ListPeriodsResponses, ListPositionFunctionsData, ListPositionFunctionsError, ListPositionFunctionsErrors, ListPositionFunctionsResponse, ListPositionFunctionsResponses, ListPositionsData, ListPositionsError, ListPositionsErrors, ListPositionsResponse, ListPositionsResponses, ListPriorPeriodAdjustmentsData, ListPriorPeriodAdjustmentsError, ListPriorPeriodAdjustmentsErrors, ListPriorPeriodAdjustmentsResponse, ListPriorPeriodAdjustmentsResponses, ListProductsData, ListProductsError, ListProductsErrors, ListProductsResponse, ListProductsResponses, ListProgramsData, ListProgramsError, ListProgramsErrors, ListProgramsResponse, ListProgramsResponses, ListProjectsData, ListProjectsError, ListProjectsErrors, ListProjectsResponse, ListProjectsResponses, ListPwaUserCountsByProjectByMonthsData, ListPwaUserCountsByProjectByMonthsError, ListPwaUserCountsByProjectByMonthsErrors, ListPwaUserCountsByProjectByMonthsResponse, ListPwaUserCountsByProjectByMonthsResponses, ListRateRulesData, ListRateRulesError, ListRateRulesErrors, ListRateRulesResponse, ListRateRulesResponses, ListServiceEventsData, ListServiceEventsError, ListServiceEventsErrors, ListServiceEventsResponse, ListServiceEventsResponses, ListServiceSchedulesData, ListServiceSchedulesError, ListServiceSchedulesErrors, ListServiceSchedulesResponse, ListServiceSchedulesResponses, ListServiceScheduleTemplatesData, ListServiceScheduleTemplatesError, ListServiceScheduleTemplatesErrors, ListServiceScheduleTemplatesResponse, ListServiceScheduleTemplatesResponses, ListTemplatesData, ListTemplatesError, ListTemplatesErrors, ListTemplatesResponse, ListTemplatesResponses, ListTimeCardActualsData, ListTimeCardActualsError, ListTimeCardActualsErrors, ListTimeCardActualsResponse, ListTimeCardActualsResponses, ListTimeCardPerDiemsData, ListTimeCardPerDiemsError, ListTimeCardPerDiemsErrors, ListTimeCardPerDiemsResponse, ListTimeCardPerDiemsResponses, ListTimeCardsData, ListTimeCardsError, ListTimeCardsErrors, ListTimeCardsResponse, ListTimeCardsResponses, ListTimecodeScheduledChangesData, ListTimecodeScheduledChangesError, ListTimecodeScheduledChangesErrors, ListTimecodeScheduledChangesResponse, ListTimecodeScheduledChangesResponses, ListTimecodesData, ListTimecodesError, ListTimecodesErrors, ListTimecodesResponse, ListTimecodesResponses, ListTimeEntriesData, ListTimeEntriesError, ListTimeEntriesErrors, ListTimeEntriesResponse, ListTimeEntriesResponses, ListTradesData, ListTradesError, ListTradesErrors, ListTradesResponse, ListTradesResponses, ListTransfersData, ListTransfersError, ListTransfersErrors, ListTransfersResponse, ListTransfersResponses, ListUserCertificationsData, ListUserCertificationsError, ListUserCertificationsErrors, ListUserCertificationsResponse, ListUserCertificationsResponses, ListUserCompanyScheduledChangesData, ListUserCompanyScheduledChangesError, ListUserCompanyScheduledChangesErrors, ListUserCompanyScheduledChangesResponse, ListUserCompanyScheduledChangesResponses, ListUserRolesData, ListUserRolesError, ListUserRolesErrors, ListUserRolesResponse, ListUserRolesResponses, ListUsersData, ListUsersError, ListUsersErrors, ListUsersResponse, ListUsersResponses, ListVendorsData, ListVendorsError, ListVendorsErrors, ListVendorsResponse, ListVendorsResponses, ListVersionsData, ListVersionsError, ListVersionsErrors, ListVersionsResponse, ListVersionsResponses, ListWageDeterminationsData, ListWageDeterminationsError, ListWageDeterminationsErrors, ListWageDeterminationsResponse, ListWageDeterminationsResponses, ListWageSchedulesData, ListWageSchedulesError, ListWageSchedulesErrors, ListWageSchedulesResponse, ListWageSchedulesResponses, ListWorkTypesData, ListWorkTypesError, ListWorkTypesErrors, ListWorkTypesResponse, ListWorkTypesResponses, ManagerTimeCardApprovalParameters, ManagerTimeEntryApprovalParameters, Meta, PayPeriodConfigResponseObject, PayPeriodsResponseObject, PayrollExternalMapResponseObject, PayrollFringeBenefitPlanParameters, PayrollFringeBenefitPlanResponseObject, PayrollRunParameters, PayrollRunResponseObject, PayrollRunsResponseObject, PaystubLineItemParameters, PaystubLineItemResponseObject, PaystubLineItemsResponseObject, PaystubParameters, PaystubResponseObject, PaystubsResponseObject, PerDiemParameters, PerDiemResponseObject, PositionFunction, PositionFunctionParameters, PositionFunctionResponseObject, PositionParameters, PositionResponseObject, PositionsResponseObject, PriorPeriodAdjustmentResponseObject, ProductionCompletionBaseParameters, ProductionCompletionParameters, ProductionCompletionResponseObject, ProductionFeatureCompletionParameters, ProductionFeatureCompletionResponseObject, ProductionJobScopePriceParameters, ProductionJobScopePriceResponseObject, ProductionQuantityCompletionParameters, ProductionQuantityCompletionResponseObject, ProjectParameters, ProjectResponseObject, PwaCompanyUserDetailsParameters, PwaCompanyUserDetailsResponseObject, PwaJobDetailsResponseObject, PwaTradeParameters, PwaTradeResponseObject, RateRuleApprenticeHoursCondition, RateRuleApprenticePeriodCondition, RateRuleCondition, RateRuleDaysCondition, RateRuleEffect, RateRuleOvertimeMultiplierCondition, RateRuleParameters, RateRuleResponseObject, RateRuleSpecificDateCondition, RateRuleTimeRangeCondition, RegionalJobWageDeterminationParameters, RegionalJobWageDeterminationResponseObject, RegionalWageDeterminationFields, RemoveUserFromCompanyData, RemoveUserFromCompanyError, RemoveUserFromCompanyErrors, RemoveUserFromCompanyResponse, RemoveUserFromCompanyResponses, RemoveUserFromGroupData, RemoveUserFromGroupError, RemoveUserFromGroupErrors, RemoveUserFromGroupResponse, RemoveUserFromGroupResponses, RestockProductData, RestockProductError, RestockProductErrors, RestockProductResponse, RestockProductResponses, RetireItemData, RetireItemError, RetireItemErrors, RetireItemResponse, RetireItemResponses, ScheduleTimecodeChangeData, ScheduleTimecodeChangeError, ScheduleTimecodeChangeErrors, ScheduleTimecodeChangeResponse, ScheduleTimecodeChangeResponses, SeedServiceScheduleTemplateData, SeedServiceScheduleTemplateError, SeedServiceScheduleTemplateErrors, SeedServiceScheduleTemplateResponse, SeedServiceScheduleTemplateResponses, SetTimeCardLockData, SetTimeCardLockError, SetTimeCardLockErrors, SetTimeCardLockResponse, SetTimeCardLockResponses, SiteResponseObject, SyncServiceScheduleTemplateData, SyncServiceScheduleTemplateError, SyncServiceScheduleTemplateErrors, SyncServiceScheduleTemplateResponse, SyncServiceScheduleTemplateResponses, TerminateTimecodeData, TerminateTimecodeError, TerminateTimecodeErrors, TerminateTimecodeResponse, TerminateTimecodeResponses, TimeCardActualsResponseObject, TimeCardApprovalResponseObject, TimeCardLockParameters, TimeCardPerDiemParameters, TimeCardPerDiemResponseObject, TimeCardResponseObject, TimeCardsResponseObject, TimeCardStartDay, TimecodeParameters, TimecodeResponseObject, TimecodeScheduledChangeParameters, TimecodeTerminationParameters, TimeEntryApprovalResponseObject, TimeEntryDeltasResponse, TimeEntryIndexObject, TimeEntryParameters, TimeEntryResponseObject, UnretireItemData, UnretireItemError, UnretireItemErrors, UnretireItemResponse, UnretireItemResponses, UpdateAttributeData, UpdateAttributeError, UpdateAttributeErrors, UpdateAttributeResponse, UpdateAttributeResponses, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCertificationData, UpdateCertificationError, UpdateCertificationErrors, UpdateCertificationResponse, UpdateCertificationResponses, UpdateCheckData, UpdateCheckError, UpdateCheckErrors, UpdateCheckResponse, UpdateCheckResponses, UpdateCompanyData, UpdateCompanyError, UpdateCompanyErrors, UpdateCompanyResponse, UpdateCompanyResponses, UpdateCompanyUserDetailData, UpdateCompanyUserDetailError, UpdateCompanyUserDetailErrors, UpdateCompanyUserDetailResponse, UpdateCompanyUserDetailResponses, UpdateCompletionData, UpdateCompletionError, UpdateCompletionErrors, UpdateCompletionResponse, UpdateCompletionResponses, UpdateCustomFieldConfigData, UpdateCustomFieldConfigError, UpdateCustomFieldConfigErrors, UpdateCustomFieldConfigResponse, UpdateCustomFieldConfigResponses, UpdateDepartmentData, UpdateDepartmentError, UpdateDepartmentErrors, UpdateDepartmentResponse, UpdateDepartmentResponses, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateEmployerData, UpdateEmployerError, UpdateEmployerErrors, UpdateEmployerResponse, UpdateEmployerResponses, UpdateFormAssignmentTaskData, UpdateFormAssignmentTaskError, UpdateFormAssignmentTaskErrors, UpdateFormAssignmentTaskResponse, UpdateFormAssignmentTaskResponses, UpdateFormAssignmentTriggerData, UpdateFormAssignmentTriggerError, UpdateFormAssignmentTriggerErrors, UpdateFormAssignmentTriggerResponse, UpdateFormAssignmentTriggerResponses, UpdateFringeBenefitPlanData, UpdateFringeBenefitPlanError, UpdateFringeBenefitPlanErrors, UpdateFringeBenefitPlanResponse, UpdateFringeBenefitPlanResponses, UpdateGroupData, UpdateGroupError, UpdateGroupErrors, UpdateGroupResponse, UpdateGroupResponses, UpdateHolidayData, UpdateHolidayError, UpdateHolidayErrors, UpdateHolidayResponse, UpdateHolidayResponses, UpdateItemData, UpdateItemError, UpdateItemErrors, UpdateItemResponse, UpdateItemResponses, UpdateJobData, UpdateJobError, UpdateJobErrors, UpdateJobResponse, UpdateJobResponses, UpdateJobScopePriceData, UpdateJobScopePriceError, UpdateJobScopePriceErrors, UpdateJobScopePriceResponse, UpdateJobScopePriceResponses, UpdateOccupationData, UpdateOccupationError, UpdateOccupationErrors, UpdateOccupationResponse, UpdateOccupationResponses, UpdatePackageData, UpdatePackageError, UpdatePackageErrors, UpdatePackageResponse, UpdatePackageResponses, UpdatePayrollRunData, UpdatePayrollRunError, UpdatePayrollRunErrors, UpdatePayrollRunResponse, UpdatePayrollRunResponses, UpdatePaystubData, UpdatePaystubError, UpdatePaystubErrors, UpdatePaystubLineItemData, UpdatePaystubLineItemError, UpdatePaystubLineItemErrors, UpdatePaystubLineItemResponse, UpdatePaystubLineItemResponses, UpdatePaystubResponse, UpdatePaystubResponses, UpdatePerDiemData, UpdatePerDiemError, UpdatePerDiemErrors, UpdatePerDiemResponse, UpdatePerDiemResponses, UpdatePeriodData, UpdatePeriodError, UpdatePeriodErrors, UpdatePeriodResponse, UpdatePeriodResponses, UpdatePositionData, UpdatePositionError, UpdatePositionErrors, UpdatePositionFunctionData, UpdatePositionFunctionError, UpdatePositionFunctionErrors, UpdatePositionFunctionResponse, UpdatePositionFunctionResponses, UpdatePositionResponse, UpdatePositionResponses, UpdateProductData, UpdateProductError, UpdateProductErrors, UpdateProductResponse, UpdateProductResponses, UpdateProgramData, UpdateProgramError, UpdateProgramErrors, UpdateProgramResponse, UpdateProgramResponses, UpdateProjectData, UpdateProjectError, UpdateProjectErrors, UpdateProjectResponse, UpdateProjectResponses, UpdateScheduledChangeData, UpdateScheduledChangeError, UpdateScheduledChangeErrors, UpdateScheduledChangeResponse, UpdateScheduledChangeResponses, UpdateServiceEventData, UpdateServiceEventError, UpdateServiceEventErrors, UpdateServiceEventResponse, UpdateServiceEventResponses, UpdateServiceScheduleData, UpdateServiceScheduleError, UpdateServiceScheduleErrors, UpdateServiceScheduleResponse, UpdateServiceScheduleResponses, UpdateServiceScheduleTemplateData, UpdateServiceScheduleTemplateError, UpdateServiceScheduleTemplateErrors, UpdateServiceScheduleTemplateResponse, UpdateServiceScheduleTemplateResponses, UpdateSiteData, UpdateSiteError, UpdateSiteErrors, UpdateSiteResponse, UpdateSiteResponses, UpdateTimeCardPerDiemData, UpdateTimeCardPerDiemError, UpdateTimeCardPerDiemErrors, UpdateTimeCardPerDiemResponse, UpdateTimeCardPerDiemResponses, UpdateTimecodeData, UpdateTimecodeError, UpdateTimecodeErrors, UpdateTimecodeResponse, UpdateTimecodeResponses, UpdateTimeEntryData, UpdateTimeEntryError, UpdateTimeEntryErrors, UpdateTimeEntryResponse, UpdateTimeEntryResponses, UpdateUserCertificationData, UpdateUserCertificationError, UpdateUserCertificationErrors, UpdateUserCertificationResponse, UpdateUserCertificationResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserResponse, UpdateUserResponses, UpdateVendorData, UpdateVendorError, UpdateVendorErrors, UpdateVendorResponse, UpdateVendorResponses, UpdateWageScheduleData, UpdateWageScheduleError, UpdateWageScheduleErrors, UpdateWageScheduleResponse, UpdateWageScheduleResponses, UserCertificationParameters, UserCertificationResponseObject, UserCertificationsResponseObj, UserCompanyCreateParameters, UserCompanyParameters, UserCompanyScheduledChange, UserCompanyScheduledChangesParameters, UserCompanyScheduledChangesResponse, UserCompanyScheduledTerminationParameters, UserCompanyType, UserGroupParameters, UserGroupResponse, UserParameters, UserResponseObject, UserRoleRequest, UserRoleResponse, UserUpdateParameters, WageDeterminationResponseObject, WageDeterminationsResponseObject, WageDeterminationValidTime, WorkerTimeCardApprovalParameters, WorkTypeResponseObject } from './types.gen.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
export { ApprenticeshipApprentices, ApprenticeshipEmployers, ApprenticeshipOccupations, ApprenticeshipPrograms, ApprenticeshipWageSchedulePeriods, ApprenticeshipWageSchedules, AssetsAttributes, AssetsCategories, AssetsCustodies, AssetsEvents, AssetsFormAssignmentTriggers, AssetsInventories, AssetsItems, AssetsProducts, AssetsSites, AssetsTransfers, AssetsVendors, AtlasFeatures, AtlasSites, AttestationConfigs, Billing, CertificationPackages, Certifications, Companies, CompaniesDepartments, CompensationElements, ComplianceChecks, CustomFieldConfigurations, DirectUploads, ExternalMaps, Forms, FringeBenefitPlans, Groups, Holidays, Jobs, JobTimeCardDays, JobWageDeterminationRateRules, JobWageDeterminations, PayPeriods, PayrollRuns, PaySchedules, PaystubLineItems, Paystubs, PerDiems, PositionFunctions, PriorPeriodAdjustments, ProductionCompletions, ProductionJobScopePrices, Projects, PwaTrades, Tasks, TimeCardActuals, TimeCards, Timecodes, TimeEntries, UserCertifications, UserRoles, Users, WageDeterminations, WorkTypes } from './sdk.gen.js';
|