@lessly/sdk-app 60.0.0 → 61.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +53 -2
- package/dist/_types/gen/client.gen.d.ts +532 -559
- package/dist/_types/gen/manifest.gen.d.ts +3 -1
- package/dist/_types/gen/types.gen.d.ts +0 -192
- package/dist/_types/index.d.ts +1 -1
- package/dist/_types/runtime/request.d.ts +3 -3
- package/dist/_types/runtime/types.d.ts +31 -2
- package/dist/index.cjs +1064 -105
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10082 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -12
- package/src/gen/bindings.gen.ts +1061 -113
- package/src/gen/client.gen.ts +531 -582
- package/src/gen/manifest.gen.ts +536 -1
- package/src/gen/types.gen.ts +0 -227
- package/dist/_types/gen/playground/connect.gen.d.ts +0 -3
- package/dist/_types/gen/playground/index.d.ts +0 -3
- package/dist/_types/gen/playground/queryOptions.gen.d.ts +0 -50
- package/dist/chunk-SOHPEC6O.js +0 -9134
- package/dist/chunk-SOHPEC6O.js.map +0 -1
- package/dist/playground/index.cjs +0 -81
- package/dist/playground/index.cjs.map +0 -1
- package/dist/playground/index.d.cts +0 -1
- package/dist/playground/index.d.ts +0 -1
- package/dist/playground/index.js +0 -58
- package/dist/playground/index.js.map +0 -1
- package/src/gen/playground/connect.gen.ts +0 -9
- package/src/gen/playground/index.ts +0 -4
- package/src/gen/playground/queryOptions.gen.ts +0 -86
package/src/gen/client.gen.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// AUTOGENERATED by scripts/generate.ts — do not edit.
|
|
2
|
+
import type { Operation } from '../runtime/types';
|
|
2
3
|
import type {
|
|
3
4
|
AnalyticsCatalogGetInput,
|
|
4
5
|
AnalyticsCatalogGetOutput,
|
|
@@ -742,30 +743,6 @@ import type {
|
|
|
742
743
|
OrganizationSupportThreadReplyOutput,
|
|
743
744
|
OrganizationSupportThreadsListInput,
|
|
744
745
|
OrganizationSupportThreadsListOutput,
|
|
745
|
-
PlaygroundAnalyticsOverviewInput,
|
|
746
|
-
PlaygroundAnalyticsOverviewOutput,
|
|
747
|
-
PlaygroundBillingEntitlementsInput,
|
|
748
|
-
PlaygroundBillingEntitlementsOutput,
|
|
749
|
-
PlaygroundBillingRecordUsageInput,
|
|
750
|
-
PlaygroundBillingRecordUsageOutput,
|
|
751
|
-
PlaygroundClickupCreateTaskInput,
|
|
752
|
-
PlaygroundClickupCreateTaskOutput,
|
|
753
|
-
PlaygroundClickupGetLastWebhookInput,
|
|
754
|
-
PlaygroundClickupGetLastWebhookOutput,
|
|
755
|
-
PlaygroundClickupGetOverviewInput,
|
|
756
|
-
PlaygroundClickupGetOverviewOutput,
|
|
757
|
-
PlaygroundGdriveGetLastChangeInput,
|
|
758
|
-
PlaygroundGdriveGetLastChangeOutput,
|
|
759
|
-
PlaygroundGdriveReadFileInput,
|
|
760
|
-
PlaygroundGdriveReadFileOutput,
|
|
761
|
-
PlaygroundGoogleadsReadCustomerInput,
|
|
762
|
-
PlaygroundGoogleadsReadCustomerOutput,
|
|
763
|
-
PlaygroundLifecycleGetStateInput,
|
|
764
|
-
PlaygroundLifecycleGetStateOutput,
|
|
765
|
-
PlaygroundLifecycleListEventsInput,
|
|
766
|
-
PlaygroundLifecycleListEventsOutput,
|
|
767
|
-
PlaygroundWebhookGetLastInput,
|
|
768
|
-
PlaygroundWebhookGetLastOutput,
|
|
769
746
|
RealtimeArchiveExportInput,
|
|
770
747
|
RealtimeArchiveExportOutput,
|
|
771
748
|
RealtimeArchiveExportStatusInput,
|
|
@@ -1089,996 +1066,968 @@ import type {
|
|
|
1089
1066
|
export interface GeneratedClient {
|
|
1090
1067
|
analytics: {
|
|
1091
1068
|
catalog: {
|
|
1092
|
-
get(input: AnalyticsCatalogGetInput)
|
|
1069
|
+
get: ((input: AnalyticsCatalogGetInput) => Promise<AnalyticsCatalogGetOutput>) & Operation;
|
|
1093
1070
|
};
|
|
1094
1071
|
dashboard: {
|
|
1095
|
-
create(input: AnalyticsDashboardCreateInput)
|
|
1096
|
-
delete(input: AnalyticsDashboardDeleteInput)
|
|
1097
|
-
get(input: AnalyticsDashboardGetInput)
|
|
1098
|
-
list(input: AnalyticsDashboardListInput)
|
|
1099
|
-
run(input: AnalyticsDashboardRunInput)
|
|
1100
|
-
update(input: AnalyticsDashboardUpdateInput)
|
|
1072
|
+
create: ((input: AnalyticsDashboardCreateInput) => Promise<AnalyticsDashboardCreateOutput>) & Operation;
|
|
1073
|
+
delete: ((input: AnalyticsDashboardDeleteInput) => Promise<AnalyticsDashboardDeleteOutput>) & Operation;
|
|
1074
|
+
get: ((input: AnalyticsDashboardGetInput) => Promise<AnalyticsDashboardGetOutput>) & Operation;
|
|
1075
|
+
list: ((input: AnalyticsDashboardListInput) => Promise<AnalyticsDashboardListOutput>) & Operation;
|
|
1076
|
+
run: ((input: AnalyticsDashboardRunInput) => Promise<AnalyticsDashboardRunOutput>) & Operation;
|
|
1077
|
+
update: ((input: AnalyticsDashboardUpdateInput) => Promise<AnalyticsDashboardUpdateOutput>) & Operation;
|
|
1101
1078
|
};
|
|
1102
1079
|
funnel: {
|
|
1103
|
-
run(input: AnalyticsFunnelRunInput)
|
|
1080
|
+
run: ((input: AnalyticsFunnelRunInput) => Promise<AnalyticsFunnelRunOutput>) & Operation;
|
|
1104
1081
|
};
|
|
1105
1082
|
insight: {
|
|
1106
|
-
create(input: AnalyticsInsightCreateInput)
|
|
1107
|
-
delete(input: AnalyticsInsightDeleteInput)
|
|
1108
|
-
get(input: AnalyticsInsightGetInput)
|
|
1109
|
-
list(input: AnalyticsInsightListInput)
|
|
1110
|
-
run(input: AnalyticsInsightRunInput)
|
|
1111
|
-
update(input: AnalyticsInsightUpdateInput)
|
|
1083
|
+
create: ((input: AnalyticsInsightCreateInput) => Promise<AnalyticsInsightCreateOutput>) & Operation;
|
|
1084
|
+
delete: ((input: AnalyticsInsightDeleteInput) => Promise<AnalyticsInsightDeleteOutput>) & Operation;
|
|
1085
|
+
get: ((input: AnalyticsInsightGetInput) => Promise<AnalyticsInsightGetOutput>) & Operation;
|
|
1086
|
+
list: ((input: AnalyticsInsightListInput) => Promise<AnalyticsInsightListOutput>) & Operation;
|
|
1087
|
+
run: ((input: AnalyticsInsightRunInput) => Promise<AnalyticsInsightRunOutput>) & Operation;
|
|
1088
|
+
update: ((input: AnalyticsInsightUpdateInput) => Promise<AnalyticsInsightUpdateOutput>) & Operation;
|
|
1112
1089
|
};
|
|
1113
1090
|
metric: {
|
|
1114
|
-
query(input: AnalyticsMetricQueryInput)
|
|
1091
|
+
query: ((input: AnalyticsMetricQueryInput) => Promise<AnalyticsMetricQueryOutput>) & Operation;
|
|
1115
1092
|
};
|
|
1116
1093
|
person: {
|
|
1117
|
-
timeline(input: AnalyticsPersonTimelineInput)
|
|
1094
|
+
timeline: ((input: AnalyticsPersonTimelineInput) => Promise<AnalyticsPersonTimelineOutput>) & Operation;
|
|
1118
1095
|
};
|
|
1119
1096
|
query: {
|
|
1120
|
-
run(input: AnalyticsQueryRunInput)
|
|
1097
|
+
run: ((input: AnalyticsQueryRunInput) => Promise<AnalyticsQueryRunOutput>) & Operation;
|
|
1121
1098
|
};
|
|
1122
1099
|
retention: {
|
|
1123
|
-
run(input: AnalyticsRetentionRunInput)
|
|
1100
|
+
run: ((input: AnalyticsRetentionRunInput) => Promise<AnalyticsRetentionRunOutput>) & Operation;
|
|
1124
1101
|
};
|
|
1125
1102
|
};
|
|
1126
1103
|
brain: {
|
|
1127
1104
|
backup: {
|
|
1128
|
-
create(input: BrainBackupCreateInput)
|
|
1129
|
-
restore(input: BrainBackupRestoreInput)
|
|
1130
|
-
status(input: BrainBackupStatusInput)
|
|
1105
|
+
create: ((input: BrainBackupCreateInput) => Promise<BrainBackupCreateOutput>) & Operation;
|
|
1106
|
+
restore: ((input: BrainBackupRestoreInput) => Promise<BrainBackupRestoreOutput>) & Operation;
|
|
1107
|
+
status: ((input: BrainBackupStatusInput) => Promise<BrainBackupStatusOutput>) & Operation;
|
|
1131
1108
|
};
|
|
1132
1109
|
backups: {
|
|
1133
|
-
list(input: BrainBackupsListInput)
|
|
1110
|
+
list: ((input: BrainBackupsListInput) => Promise<BrainBackupsListOutput>) & Operation;
|
|
1134
1111
|
};
|
|
1135
1112
|
'clickup-channels': {
|
|
1136
|
-
list(input: BrainClickupChannelsListInput)
|
|
1113
|
+
list: ((input: BrainClickupChannelsListInput) => Promise<BrainClickupChannelsListOutput>) & Operation;
|
|
1137
1114
|
};
|
|
1138
1115
|
'clickup-connections': {
|
|
1139
|
-
list(input: BrainClickupConnectionsListInput)
|
|
1116
|
+
list: ((input: BrainClickupConnectionsListInput) => Promise<BrainClickupConnectionsListOutput>) & Operation;
|
|
1140
1117
|
};
|
|
1141
1118
|
'clickup-lists': {
|
|
1142
|
-
list(input: BrainClickupListsListInput)
|
|
1119
|
+
list: ((input: BrainClickupListsListInput) => Promise<BrainClickupListsListOutput>) & Operation;
|
|
1143
1120
|
};
|
|
1144
1121
|
'clickup-spaces': {
|
|
1145
|
-
list(input: BrainClickupSpacesListInput)
|
|
1122
|
+
list: ((input: BrainClickupSpacesListInput) => Promise<BrainClickupSpacesListOutput>) & Operation;
|
|
1146
1123
|
};
|
|
1147
1124
|
cognition: {
|
|
1148
|
-
digest(input: BrainCognitionDigestInput)
|
|
1149
|
-
status(input: BrainCognitionStatusInput)
|
|
1150
|
-
sweep(input: BrainCognitionSweepInput)
|
|
1125
|
+
digest: ((input: BrainCognitionDigestInput) => Promise<BrainCognitionDigestOutput>) & Operation;
|
|
1126
|
+
status: ((input: BrainCognitionStatusInput) => Promise<BrainCognitionStatusOutput>) & Operation;
|
|
1127
|
+
sweep: ((input: BrainCognitionSweepInput) => Promise<BrainCognitionSweepOutput>) & Operation;
|
|
1151
1128
|
};
|
|
1152
1129
|
'connector-branches': {
|
|
1153
|
-
list(input: BrainConnectorBranchesListInput)
|
|
1130
|
+
list: ((input: BrainConnectorBranchesListInput) => Promise<BrainConnectorBranchesListOutput>) & Operation;
|
|
1154
1131
|
};
|
|
1155
1132
|
'connector-connections': {
|
|
1156
|
-
list(input: BrainConnectorConnectionsListInput)
|
|
1133
|
+
list: ((input: BrainConnectorConnectionsListInput) => Promise<BrainConnectorConnectionsListOutput>) & Operation;
|
|
1157
1134
|
};
|
|
1158
1135
|
'connector-repos': {
|
|
1159
|
-
list(input: BrainConnectorReposListInput)
|
|
1136
|
+
list: ((input: BrainConnectorReposListInput) => Promise<BrainConnectorReposListOutput>) & Operation;
|
|
1160
1137
|
};
|
|
1161
1138
|
daemon: {
|
|
1162
|
-
create(input: BrainDaemonCreateInput)
|
|
1163
|
-
get(input: BrainDaemonGetInput)
|
|
1164
|
-
reingest(input: BrainDaemonReingestInput)
|
|
1165
|
-
remove(input: BrainDaemonRemoveInput)
|
|
1166
|
-
run(input: BrainDaemonRunInput)
|
|
1167
|
-
runs(input: BrainDaemonRunsInput)
|
|
1168
|
-
status(input: BrainDaemonStatusInput)
|
|
1169
|
-
update(input: BrainDaemonUpdateInput)
|
|
1139
|
+
create: ((input: BrainDaemonCreateInput) => Promise<BrainDaemonCreateOutput>) & Operation;
|
|
1140
|
+
get: ((input: BrainDaemonGetInput) => Promise<BrainDaemonGetOutput>) & Operation;
|
|
1141
|
+
reingest: ((input: BrainDaemonReingestInput) => Promise<BrainDaemonReingestOutput>) & Operation;
|
|
1142
|
+
remove: ((input: BrainDaemonRemoveInput) => Promise<BrainDaemonRemoveOutput>) & Operation;
|
|
1143
|
+
run: ((input: BrainDaemonRunInput) => Promise<BrainDaemonRunOutput>) & Operation;
|
|
1144
|
+
runs: ((input: BrainDaemonRunsInput) => Promise<BrainDaemonRunsOutput>) & Operation;
|
|
1145
|
+
status: ((input: BrainDaemonStatusInput) => Promise<BrainDaemonStatusOutput>) & Operation;
|
|
1146
|
+
update: ((input: BrainDaemonUpdateInput) => Promise<BrainDaemonUpdateOutput>) & Operation;
|
|
1170
1147
|
};
|
|
1171
1148
|
'daemon-batch': {
|
|
1172
|
-
status(input: BrainDaemonBatchStatusInput)
|
|
1149
|
+
status: ((input: BrainDaemonBatchStatusInput) => Promise<BrainDaemonBatchStatusOutput>) & Operation;
|
|
1173
1150
|
};
|
|
1174
1151
|
'daemon-run': {
|
|
1175
|
-
items(input: BrainDaemonRunItemsInput)
|
|
1152
|
+
items: ((input: BrainDaemonRunItemsInput) => Promise<BrainDaemonRunItemsOutput>) & Operation;
|
|
1176
1153
|
};
|
|
1177
1154
|
daemons: {
|
|
1178
|
-
list(input: BrainDaemonsListInput)
|
|
1155
|
+
list: ((input: BrainDaemonsListInput) => Promise<BrainDaemonsListOutput>) & Operation;
|
|
1179
1156
|
};
|
|
1180
1157
|
'gdrive-connections': {
|
|
1181
|
-
list(input: BrainGdriveConnectionsListInput)
|
|
1158
|
+
list: ((input: BrainGdriveConnectionsListInput) => Promise<BrainGdriveConnectionsListOutput>) & Operation;
|
|
1182
1159
|
};
|
|
1183
1160
|
knowledge: {
|
|
1184
|
-
graph(input: BrainKnowledgeGraphInput)
|
|
1185
|
-
neighborhood(input: BrainKnowledgeNeighborhoodInput)
|
|
1186
|
-
relations(input: BrainKnowledgeRelationsInput)
|
|
1187
|
-
search(input: BrainKnowledgeSearchInput)
|
|
1161
|
+
graph: ((input: BrainKnowledgeGraphInput) => Promise<BrainKnowledgeGraphOutput>) & Operation;
|
|
1162
|
+
neighborhood: ((input: BrainKnowledgeNeighborhoodInput) => Promise<BrainKnowledgeNeighborhoodOutput>) & Operation;
|
|
1163
|
+
relations: ((input: BrainKnowledgeRelationsInput) => Promise<BrainKnowledgeRelationsOutput>) & Operation;
|
|
1164
|
+
search: ((input: BrainKnowledgeSearchInput) => Promise<BrainKnowledgeSearchOutput>) & Operation;
|
|
1188
1165
|
};
|
|
1189
1166
|
'knowledge-entity': {
|
|
1190
|
-
memories(input: BrainKnowledgeEntityMemoriesInput)
|
|
1167
|
+
memories: ((input: BrainKnowledgeEntityMemoriesInput) => Promise<BrainKnowledgeEntityMemoriesOutput>) & Operation;
|
|
1191
1168
|
};
|
|
1192
1169
|
memory: {
|
|
1193
|
-
add(input: BrainMemoryAddInput)
|
|
1194
|
-
delete(input: BrainMemoryDeleteInput)
|
|
1195
|
-
get(input: BrainMemoryGetInput)
|
|
1196
|
-
list(input: BrainMemoryListInput)
|
|
1197
|
-
search(input: BrainMemorySearchInput)
|
|
1198
|
-
stats(input: BrainMemoryStatsInput)
|
|
1199
|
-
update(input: BrainMemoryUpdateInput)
|
|
1170
|
+
add: ((input: BrainMemoryAddInput) => Promise<BrainMemoryAddOutput>) & Operation;
|
|
1171
|
+
delete: ((input: BrainMemoryDeleteInput) => Promise<BrainMemoryDeleteOutput>) & Operation;
|
|
1172
|
+
get: ((input: BrainMemoryGetInput) => Promise<BrainMemoryGetOutput>) & Operation;
|
|
1173
|
+
list: ((input: BrainMemoryListInput) => Promise<BrainMemoryListOutput>) & Operation;
|
|
1174
|
+
search: ((input: BrainMemorySearchInput) => Promise<BrainMemorySearchOutput>) & Operation;
|
|
1175
|
+
stats: ((input: BrainMemoryStatsInput) => Promise<BrainMemoryStatsOutput>) & Operation;
|
|
1176
|
+
update: ((input: BrainMemoryUpdateInput) => Promise<BrainMemoryUpdateOutput>) & Operation;
|
|
1200
1177
|
};
|
|
1201
1178
|
'product-shared-memory': {
|
|
1202
|
-
reset(input: BrainProductSharedMemoryResetInput)
|
|
1179
|
+
reset: ((input: BrainProductSharedMemoryResetInput) => Promise<BrainProductSharedMemoryResetOutput>) & Operation;
|
|
1203
1180
|
};
|
|
1204
1181
|
restore: {
|
|
1205
|
-
status(input: BrainRestoreStatusInput)
|
|
1182
|
+
status: ((input: BrainRestoreStatusInput) => Promise<BrainRestoreStatusOutput>) & Operation;
|
|
1206
1183
|
};
|
|
1207
1184
|
usage: {
|
|
1208
|
-
report(input: BrainUsageReportInput)
|
|
1185
|
+
report: ((input: BrainUsageReportInput) => Promise<BrainUsageReportOutput>) & Operation;
|
|
1209
1186
|
};
|
|
1210
1187
|
};
|
|
1211
1188
|
consent: {
|
|
1212
1189
|
'config-cookie-domain': {
|
|
1213
|
-
upsert(input: ConsentConfigCookieDomainUpsertInput)
|
|
1190
|
+
upsert: ((input: ConsentConfigCookieDomainUpsertInput) => Promise<ConsentConfigCookieDomainUpsertOutput>) & Operation;
|
|
1214
1191
|
};
|
|
1215
1192
|
'config-customization': {
|
|
1216
|
-
upsert(input: ConsentConfigCustomizationUpsertInput)
|
|
1193
|
+
upsert: ((input: ConsentConfigCustomizationUpsertInput) => Promise<ConsentConfigCustomizationUpsertOutput>) & Operation;
|
|
1217
1194
|
};
|
|
1218
1195
|
'config-floating-icon': {
|
|
1219
|
-
upsert(input: ConsentConfigFloatingIconUpsertInput)
|
|
1196
|
+
upsert: ((input: ConsentConfigFloatingIconUpsertInput) => Promise<ConsentConfigFloatingIconUpsertOutput>) & Operation;
|
|
1220
1197
|
};
|
|
1221
1198
|
'config-theme': {
|
|
1222
|
-
upsert(input: ConsentConfigThemeUpsertInput)
|
|
1199
|
+
upsert: ((input: ConsentConfigThemeUpsertInput) => Promise<ConsentConfigThemeUpsertOutput>) & Operation;
|
|
1223
1200
|
};
|
|
1224
1201
|
'dashboard-config': {
|
|
1225
|
-
get(input: ConsentDashboardConfigGetInput)
|
|
1202
|
+
get: ((input: ConsentDashboardConfigGetInput) => Promise<ConsentDashboardConfigGetOutput>) & Operation;
|
|
1226
1203
|
};
|
|
1227
1204
|
'dashboard-decisions': {
|
|
1228
|
-
list(input: ConsentDashboardDecisionsListInput)
|
|
1205
|
+
list: ((input: ConsentDashboardDecisionsListInput) => Promise<ConsentDashboardDecisionsListOutput>) & Operation;
|
|
1229
1206
|
};
|
|
1230
1207
|
'dashboard-embed-snippet': {
|
|
1231
|
-
get(input: ConsentDashboardEmbedSnippetGetInput)
|
|
1208
|
+
get: ((input: ConsentDashboardEmbedSnippetGetInput) => Promise<ConsentDashboardEmbedSnippetGetOutput>) & Operation;
|
|
1232
1209
|
};
|
|
1233
1210
|
'dashboard-stats': {
|
|
1234
|
-
get(input: ConsentDashboardStatsGetInput)
|
|
1211
|
+
get: ((input: ConsentDashboardStatsGetInput) => Promise<ConsentDashboardStatsGetOutput>) & Operation;
|
|
1235
1212
|
};
|
|
1236
1213
|
embed: {
|
|
1237
|
-
get(input: ConsentEmbedGetInput)
|
|
1214
|
+
get: ((input: ConsentEmbedGetInput) => Promise<ConsentEmbedGetOutput>) & Operation;
|
|
1238
1215
|
};
|
|
1239
1216
|
providers: {
|
|
1240
|
-
create(input: ConsentProvidersCreateInput)
|
|
1241
|
-
delete(input: ConsentProvidersDeleteInput)
|
|
1242
|
-
list(input: ConsentProvidersListInput)
|
|
1243
|
-
update(input: ConsentProvidersUpdateInput)
|
|
1217
|
+
create: ((input: ConsentProvidersCreateInput) => Promise<ConsentProvidersCreateOutput>) & Operation;
|
|
1218
|
+
delete: ((input: ConsentProvidersDeleteInput) => Promise<ConsentProvidersDeleteOutput>) & Operation;
|
|
1219
|
+
list: ((input: ConsentProvidersListInput) => Promise<ConsentProvidersListOutput>) & Operation;
|
|
1220
|
+
update: ((input: ConsentProvidersUpdateInput) => Promise<ConsentProvidersUpdateOutput>) & Operation;
|
|
1244
1221
|
};
|
|
1245
1222
|
records: {
|
|
1246
|
-
export(input: ConsentRecordsExportInput)
|
|
1223
|
+
export: ((input: ConsentRecordsExportInput) => Promise<ConsentRecordsExportOutput>) & Operation;
|
|
1247
1224
|
};
|
|
1248
1225
|
stats: {
|
|
1249
|
-
get(input: ConsentStatsGetInput)
|
|
1226
|
+
get: ((input: ConsentStatsGetInput) => Promise<ConsentStatsGetOutput>) & Operation;
|
|
1250
1227
|
};
|
|
1251
1228
|
};
|
|
1252
1229
|
content: {
|
|
1253
1230
|
channels: {
|
|
1254
|
-
bind(input: ContentChannelsBindInput)
|
|
1255
|
-
get(input: ContentChannelsGetInput)
|
|
1256
|
-
list(input: ContentChannelsListInput)
|
|
1257
|
-
resume(input: ContentChannelsResumeInput)
|
|
1258
|
-
unbind(input: ContentChannelsUnbindInput)
|
|
1259
|
-
update(input: ContentChannelsUpdateInput)
|
|
1231
|
+
bind: ((input: ContentChannelsBindInput) => Promise<ContentChannelsBindOutput>) & Operation;
|
|
1232
|
+
get: ((input: ContentChannelsGetInput) => Promise<ContentChannelsGetOutput>) & Operation;
|
|
1233
|
+
list: ((input: ContentChannelsListInput) => Promise<ContentChannelsListOutput>) & Operation;
|
|
1234
|
+
resume: ((input: ContentChannelsResumeInput) => Promise<ContentChannelsResumeOutput>) & Operation;
|
|
1235
|
+
unbind: ((input: ContentChannelsUnbindInput) => Promise<ContentChannelsUnbindOutput>) & Operation;
|
|
1236
|
+
update: ((input: ContentChannelsUpdateInput) => Promise<ContentChannelsUpdateOutput>) & Operation;
|
|
1260
1237
|
};
|
|
1261
1238
|
media: {
|
|
1262
|
-
finalize(input: ContentMediaFinalizeInput)
|
|
1263
|
-
get(input: ContentMediaGetInput)
|
|
1264
|
-
list(input: ContentMediaListInput)
|
|
1265
|
-
upload(input: ContentMediaUploadInput)
|
|
1239
|
+
finalize: ((input: ContentMediaFinalizeInput) => Promise<ContentMediaFinalizeOutput>) & Operation;
|
|
1240
|
+
get: ((input: ContentMediaGetInput) => Promise<ContentMediaGetOutput>) & Operation;
|
|
1241
|
+
list: ((input: ContentMediaListInput) => Promise<ContentMediaListOutput>) & Operation;
|
|
1242
|
+
upload: ((input: ContentMediaUploadInput) => Promise<ContentMediaUploadOutput>) & Operation;
|
|
1266
1243
|
};
|
|
1267
1244
|
'media-create-upload': {
|
|
1268
|
-
url(input: ContentMediaCreateUploadUrlInput)
|
|
1245
|
+
url: ((input: ContentMediaCreateUploadUrlInput) => Promise<ContentMediaCreateUploadUrlOutput>) & Operation;
|
|
1269
1246
|
};
|
|
1270
1247
|
'metrics-channel': {
|
|
1271
|
-
series(input: ContentMetricsChannelSeriesInput)
|
|
1248
|
+
series: ((input: ContentMetricsChannelSeriesInput) => Promise<ContentMetricsChannelSeriesOutput>) & Operation;
|
|
1272
1249
|
};
|
|
1273
1250
|
'metrics-post': {
|
|
1274
|
-
series(input: ContentMetricsPostSeriesInput)
|
|
1251
|
+
series: ((input: ContentMetricsPostSeriesInput) => Promise<ContentMetricsPostSeriesOutput>) & Operation;
|
|
1275
1252
|
};
|
|
1276
1253
|
posts: {
|
|
1277
|
-
approve(input: ContentPostsApproveInput)
|
|
1278
|
-
create(input: ContentPostsCreateInput)
|
|
1279
|
-
get(input: ContentPostsGetInput)
|
|
1280
|
-
list(input: ContentPostsListInput)
|
|
1281
|
-
submit(input: ContentPostsSubmitInput)
|
|
1282
|
-
update(input: ContentPostsUpdateInput)
|
|
1283
|
-
versions(input: ContentPostsVersionsInput)
|
|
1254
|
+
approve: ((input: ContentPostsApproveInput) => Promise<ContentPostsApproveOutput>) & Operation;
|
|
1255
|
+
create: ((input: ContentPostsCreateInput) => Promise<ContentPostsCreateOutput>) & Operation;
|
|
1256
|
+
get: ((input: ContentPostsGetInput) => Promise<ContentPostsGetOutput>) & Operation;
|
|
1257
|
+
list: ((input: ContentPostsListInput) => Promise<ContentPostsListOutput>) & Operation;
|
|
1258
|
+
submit: ((input: ContentPostsSubmitInput) => Promise<ContentPostsSubmitOutput>) & Operation;
|
|
1259
|
+
update: ((input: ContentPostsUpdateInput) => Promise<ContentPostsUpdateOutput>) & Operation;
|
|
1260
|
+
versions: ((input: ContentPostsVersionsInput) => Promise<ContentPostsVersionsOutput>) & Operation;
|
|
1284
1261
|
};
|
|
1285
1262
|
'posts-attach': {
|
|
1286
|
-
media(input: ContentPostsAttachMediaInput)
|
|
1263
|
+
media: ((input: ContentPostsAttachMediaInput) => Promise<ContentPostsAttachMediaOutput>) & Operation;
|
|
1287
1264
|
};
|
|
1288
1265
|
'posts-detach': {
|
|
1289
|
-
media(input: ContentPostsDetachMediaInput)
|
|
1266
|
+
media: ((input: ContentPostsDetachMediaInput) => Promise<ContentPostsDetachMediaOutput>) & Operation;
|
|
1290
1267
|
};
|
|
1291
1268
|
publications: {
|
|
1292
|
-
cancel(input: ContentPublicationsCancelInput)
|
|
1293
|
-
confirm(input: ContentPublicationsConfirmInput)
|
|
1294
|
-
get(input: ContentPublicationsGetInput)
|
|
1295
|
-
list(input: ContentPublicationsListInput)
|
|
1296
|
-
publish(input: ContentPublicationsPublishInput)
|
|
1297
|
-
remind(input: ContentPublicationsRemindInput)
|
|
1298
|
-
reschedule(input: ContentPublicationsRescheduleInput)
|
|
1299
|
-
schedule(input: ContentPublicationsScheduleInput)
|
|
1300
|
-
validate(input: ContentPublicationsValidateInput)
|
|
1269
|
+
cancel: ((input: ContentPublicationsCancelInput) => Promise<ContentPublicationsCancelOutput>) & Operation;
|
|
1270
|
+
confirm: ((input: ContentPublicationsConfirmInput) => Promise<ContentPublicationsConfirmOutput>) & Operation;
|
|
1271
|
+
get: ((input: ContentPublicationsGetInput) => Promise<ContentPublicationsGetOutput>) & Operation;
|
|
1272
|
+
list: ((input: ContentPublicationsListInput) => Promise<ContentPublicationsListOutput>) & Operation;
|
|
1273
|
+
publish: ((input: ContentPublicationsPublishInput) => Promise<ContentPublicationsPublishOutput>) & Operation;
|
|
1274
|
+
remind: ((input: ContentPublicationsRemindInput) => Promise<ContentPublicationsRemindOutput>) & Operation;
|
|
1275
|
+
reschedule: ((input: ContentPublicationsRescheduleInput) => Promise<ContentPublicationsRescheduleOutput>) & Operation;
|
|
1276
|
+
schedule: ((input: ContentPublicationsScheduleInput) => Promise<ContentPublicationsScheduleOutput>) & Operation;
|
|
1277
|
+
validate: ((input: ContentPublicationsValidateInput) => Promise<ContentPublicationsValidateOutput>) & Operation;
|
|
1301
1278
|
};
|
|
1302
1279
|
};
|
|
1303
1280
|
deployment: {
|
|
1304
1281
|
alert: {
|
|
1305
|
-
create(input: DeploymentAlertCreateInput)
|
|
1306
|
-
delete(input: DeploymentAlertDeleteInput)
|
|
1307
|
-
list(input: DeploymentAlertListInput)
|
|
1308
|
-
update(input: DeploymentAlertUpdateInput)
|
|
1282
|
+
create: ((input: DeploymentAlertCreateInput) => Promise<DeploymentAlertCreateOutput>) & Operation;
|
|
1283
|
+
delete: ((input: DeploymentAlertDeleteInput) => Promise<DeploymentAlertDeleteOutput>) & Operation;
|
|
1284
|
+
list: ((input: DeploymentAlertListInput) => Promise<DeploymentAlertListOutput>) & Operation;
|
|
1285
|
+
update: ((input: DeploymentAlertUpdateInput) => Promise<DeploymentAlertUpdateOutput>) & Operation;
|
|
1309
1286
|
};
|
|
1310
1287
|
'alert-events': {
|
|
1311
|
-
list(input: DeploymentAlertEventsListInput)
|
|
1288
|
+
list: ((input: DeploymentAlertEventsListInput) => Promise<DeploymentAlertEventsListOutput>) & Operation;
|
|
1312
1289
|
};
|
|
1313
1290
|
analytics: {
|
|
1314
|
-
query(input: DeploymentAnalyticsQueryInput)
|
|
1291
|
+
query: ((input: DeploymentAnalyticsQueryInput) => Promise<DeploymentAnalyticsQueryOutput>) & Operation;
|
|
1315
1292
|
};
|
|
1316
1293
|
build: {
|
|
1317
|
-
get(input: DeploymentBuildGetInput)
|
|
1318
|
-
list(input: DeploymentBuildListInput)
|
|
1319
|
-
logs(input: DeploymentBuildLogsInput)
|
|
1294
|
+
get: ((input: DeploymentBuildGetInput) => Promise<DeploymentBuildGetOutput>) & Operation;
|
|
1295
|
+
list: ((input: DeploymentBuildListInput) => Promise<DeploymentBuildListOutput>) & Operation;
|
|
1296
|
+
logs: ((input: DeploymentBuildLogsInput) => Promise<DeploymentBuildLogsOutput>) & Operation;
|
|
1320
1297
|
};
|
|
1321
1298
|
canvas: {
|
|
1322
|
-
get(input: DeploymentCanvasGetInput)
|
|
1299
|
+
get: ((input: DeploymentCanvasGetInput) => Promise<DeploymentCanvasGetOutput>) & Operation;
|
|
1323
1300
|
};
|
|
1324
1301
|
'canvas-move': {
|
|
1325
|
-
node(input: DeploymentCanvasMoveNodeInput)
|
|
1302
|
+
node: ((input: DeploymentCanvasMoveNodeInput) => Promise<DeploymentCanvasMoveNodeOutput>) & Operation;
|
|
1326
1303
|
};
|
|
1327
1304
|
'cloud-sql': {
|
|
1328
|
-
logs(input: DeploymentCloudSqlLogsInput)
|
|
1305
|
+
logs: ((input: DeploymentCloudSqlLogsInput) => Promise<DeploymentCloudSqlLogsOutput>) & Operation;
|
|
1329
1306
|
};
|
|
1330
1307
|
'cloud-sql-backfill-log': {
|
|
1331
|
-
flags(input: DeploymentCloudSqlBackfillLogFlagsInput)
|
|
1308
|
+
flags: ((input: DeploymentCloudSqlBackfillLogFlagsInput) => Promise<DeploymentCloudSqlBackfillLogFlagsOutput>) & Operation;
|
|
1332
1309
|
};
|
|
1333
1310
|
'cloud-sql-database': {
|
|
1334
|
-
attach(input: DeploymentCloudSqlDatabaseAttachInput)
|
|
1335
|
-
create(input: DeploymentCloudSqlDatabaseCreateInput)
|
|
1336
|
-
delete(input: DeploymentCloudSqlDatabaseDeleteInput)
|
|
1337
|
-
detach(input: DeploymentCloudSqlDatabaseDetachInput)
|
|
1338
|
-
get(input: DeploymentCloudSqlDatabaseGetInput)
|
|
1339
|
-
list(input: DeploymentCloudSqlDatabaseListInput)
|
|
1311
|
+
attach: ((input: DeploymentCloudSqlDatabaseAttachInput) => Promise<DeploymentCloudSqlDatabaseAttachOutput>) & Operation;
|
|
1312
|
+
create: ((input: DeploymentCloudSqlDatabaseCreateInput) => Promise<DeploymentCloudSqlDatabaseCreateOutput>) & Operation;
|
|
1313
|
+
delete: ((input: DeploymentCloudSqlDatabaseDeleteInput) => Promise<DeploymentCloudSqlDatabaseDeleteOutput>) & Operation;
|
|
1314
|
+
detach: ((input: DeploymentCloudSqlDatabaseDetachInput) => Promise<DeploymentCloudSqlDatabaseDetachOutput>) & Operation;
|
|
1315
|
+
get: ((input: DeploymentCloudSqlDatabaseGetInput) => Promise<DeploymentCloudSqlDatabaseGetOutput>) & Operation;
|
|
1316
|
+
list: ((input: DeploymentCloudSqlDatabaseListInput) => Promise<DeploymentCloudSqlDatabaseListOutput>) & Operation;
|
|
1340
1317
|
};
|
|
1341
1318
|
'cloud-sql-instance': {
|
|
1342
|
-
backup(input: DeploymentCloudSqlInstanceBackupInput)
|
|
1343
|
-
create(input: DeploymentCloudSqlInstanceCreateInput)
|
|
1344
|
-
delete(input: DeploymentCloudSqlInstanceDeleteInput)
|
|
1345
|
-
get(input: DeploymentCloudSqlInstanceGetInput)
|
|
1346
|
-
list(input: DeploymentCloudSqlInstanceListInput)
|
|
1347
|
-
resize(input: DeploymentCloudSqlInstanceResizeInput)
|
|
1348
|
-
restore(input: DeploymentCloudSqlInstanceRestoreInput)
|
|
1319
|
+
backup: ((input: DeploymentCloudSqlInstanceBackupInput) => Promise<DeploymentCloudSqlInstanceBackupOutput>) & Operation;
|
|
1320
|
+
create: ((input: DeploymentCloudSqlInstanceCreateInput) => Promise<DeploymentCloudSqlInstanceCreateOutput>) & Operation;
|
|
1321
|
+
delete: ((input: DeploymentCloudSqlInstanceDeleteInput) => Promise<DeploymentCloudSqlInstanceDeleteOutput>) & Operation;
|
|
1322
|
+
get: ((input: DeploymentCloudSqlInstanceGetInput) => Promise<DeploymentCloudSqlInstanceGetOutput>) & Operation;
|
|
1323
|
+
list: ((input: DeploymentCloudSqlInstanceListInput) => Promise<DeploymentCloudSqlInstanceListOutput>) & Operation;
|
|
1324
|
+
resize: ((input: DeploymentCloudSqlInstanceResizeInput) => Promise<DeploymentCloudSqlInstanceResizeOutput>) & Operation;
|
|
1325
|
+
restore: ((input: DeploymentCloudSqlInstanceRestoreInput) => Promise<DeploymentCloudSqlInstanceRestoreOutput>) & Operation;
|
|
1349
1326
|
};
|
|
1350
1327
|
'cloud-sql-instance-backup': {
|
|
1351
|
-
list(input: DeploymentCloudSqlInstanceBackupListInput)
|
|
1328
|
+
list: ((input: DeploymentCloudSqlInstanceBackupListInput) => Promise<DeploymentCloudSqlInstanceBackupListOutput>) & Operation;
|
|
1352
1329
|
};
|
|
1353
1330
|
deployment: {
|
|
1354
|
-
cancel(input: DeploymentDeploymentCancelInput)
|
|
1355
|
-
get(input: DeploymentDeploymentGetInput)
|
|
1356
|
-
list(input: DeploymentDeploymentListInput)
|
|
1331
|
+
cancel: ((input: DeploymentDeploymentCancelInput) => Promise<DeploymentDeploymentCancelOutput>) & Operation;
|
|
1332
|
+
get: ((input: DeploymentDeploymentGetInput) => Promise<DeploymentDeploymentGetOutput>) & Operation;
|
|
1333
|
+
list: ((input: DeploymentDeploymentListInput) => Promise<DeploymentDeploymentListOutput>) & Operation;
|
|
1357
1334
|
};
|
|
1358
1335
|
domain: {
|
|
1359
|
-
add(input: DeploymentDomainAddInput)
|
|
1360
|
-
get(input: DeploymentDomainGetInput)
|
|
1361
|
-
list(input: DeploymentDomainListInput)
|
|
1362
|
-
remove(input: DeploymentDomainRemoveInput)
|
|
1363
|
-
verify(input: DeploymentDomainVerifyInput)
|
|
1336
|
+
add: ((input: DeploymentDomainAddInput) => Promise<DeploymentDomainAddOutput>) & Operation;
|
|
1337
|
+
get: ((input: DeploymentDomainGetInput) => Promise<DeploymentDomainGetOutput>) & Operation;
|
|
1338
|
+
list: ((input: DeploymentDomainListInput) => Promise<DeploymentDomainListOutput>) & Operation;
|
|
1339
|
+
remove: ((input: DeploymentDomainRemoveInput) => Promise<DeploymentDomainRemoveOutput>) & Operation;
|
|
1340
|
+
verify: ((input: DeploymentDomainVerifyInput) => Promise<DeploymentDomainVerifyOutput>) & Operation;
|
|
1364
1341
|
};
|
|
1365
1342
|
'domain-allowed': {
|
|
1366
|
-
list(input: DeploymentDomainAllowedListInput)
|
|
1343
|
+
list: ((input: DeploymentDomainAllowedListInput) => Promise<DeploymentDomainAllowedListOutput>) & Operation;
|
|
1367
1344
|
};
|
|
1368
1345
|
'domain-list-by': {
|
|
1369
|
-
service(input: DeploymentDomainListByServiceInput)
|
|
1346
|
+
service: ((input: DeploymentDomainListByServiceInput) => Promise<DeploymentDomainListByServiceOutput>) & Operation;
|
|
1370
1347
|
};
|
|
1371
1348
|
'domain-redirect': {
|
|
1372
|
-
www(input: DeploymentDomainRedirectWwwInput)
|
|
1349
|
+
www: ((input: DeploymentDomainRedirectWwwInput) => Promise<DeploymentDomainRedirectWwwOutput>) & Operation;
|
|
1373
1350
|
};
|
|
1374
1351
|
'domain-routes': {
|
|
1375
|
-
add(input: DeploymentDomainRoutesAddInput)
|
|
1376
|
-
list(input: DeploymentDomainRoutesListInput)
|
|
1377
|
-
remove(input: DeploymentDomainRoutesRemoveInput)
|
|
1378
|
-
update(input: DeploymentDomainRoutesUpdateInput)
|
|
1352
|
+
add: ((input: DeploymentDomainRoutesAddInput) => Promise<DeploymentDomainRoutesAddOutput>) & Operation;
|
|
1353
|
+
list: ((input: DeploymentDomainRoutesListInput) => Promise<DeploymentDomainRoutesListOutput>) & Operation;
|
|
1354
|
+
remove: ((input: DeploymentDomainRoutesRemoveInput) => Promise<DeploymentDomainRoutesRemoveOutput>) & Operation;
|
|
1355
|
+
update: ((input: DeploymentDomainRoutesUpdateInput) => Promise<DeploymentDomainRoutesUpdateOutput>) & Operation;
|
|
1379
1356
|
};
|
|
1380
1357
|
environment: {
|
|
1381
|
-
create(input: DeploymentEnvironmentCreateInput)
|
|
1382
|
-
delete(input: DeploymentEnvironmentDeleteInput)
|
|
1383
|
-
fork(input: DeploymentEnvironmentForkInput)
|
|
1384
|
-
get(input: DeploymentEnvironmentGetInput)
|
|
1385
|
-
list(input: DeploymentEnvironmentListInput)
|
|
1386
|
-
reconcile(input: DeploymentEnvironmentReconcileInput)
|
|
1387
|
-
update(input: DeploymentEnvironmentUpdateInput)
|
|
1358
|
+
create: ((input: DeploymentEnvironmentCreateInput) => Promise<DeploymentEnvironmentCreateOutput>) & Operation;
|
|
1359
|
+
delete: ((input: DeploymentEnvironmentDeleteInput) => Promise<DeploymentEnvironmentDeleteOutput>) & Operation;
|
|
1360
|
+
fork: ((input: DeploymentEnvironmentForkInput) => Promise<DeploymentEnvironmentForkOutput>) & Operation;
|
|
1361
|
+
get: ((input: DeploymentEnvironmentGetInput) => Promise<DeploymentEnvironmentGetOutput>) & Operation;
|
|
1362
|
+
list: ((input: DeploymentEnvironmentListInput) => Promise<DeploymentEnvironmentListOutput>) & Operation;
|
|
1363
|
+
reconcile: ((input: DeploymentEnvironmentReconcileInput) => Promise<DeploymentEnvironmentReconcileOutput>) & Operation;
|
|
1364
|
+
update: ((input: DeploymentEnvironmentUpdateInput) => Promise<DeploymentEnvironmentUpdateOutput>) & Operation;
|
|
1388
1365
|
};
|
|
1389
1366
|
'events-list-by': {
|
|
1390
|
-
environment(input: DeploymentEventsListByEnvironmentInput)
|
|
1391
|
-
service(input: DeploymentEventsListByServiceInput)
|
|
1367
|
+
environment: ((input: DeploymentEventsListByEnvironmentInput) => Promise<DeploymentEventsListByEnvironmentOutput>) & Operation;
|
|
1368
|
+
service: ((input: DeploymentEventsListByServiceInput) => Promise<DeploymentEventsListByServiceOutput>) & Operation;
|
|
1392
1369
|
};
|
|
1393
1370
|
job: {
|
|
1394
|
-
run(input: DeploymentJobRunInput)
|
|
1371
|
+
run: ((input: DeploymentJobRunInput) => Promise<DeploymentJobRunOutput>) & Operation;
|
|
1395
1372
|
};
|
|
1396
1373
|
'job-run': {
|
|
1397
|
-
logs(input: DeploymentJobRunLogsInput)
|
|
1374
|
+
logs: ((input: DeploymentJobRunLogsInput) => Promise<DeploymentJobRunLogsOutput>) & Operation;
|
|
1398
1375
|
};
|
|
1399
1376
|
'job-runs': {
|
|
1400
|
-
list(input: DeploymentJobRunsListInput)
|
|
1377
|
+
list: ((input: DeploymentJobRunsListInput) => Promise<DeploymentJobRunsListOutput>) & Operation;
|
|
1401
1378
|
};
|
|
1402
1379
|
'managed-service': {
|
|
1403
|
-
backup(input: DeploymentManagedServiceBackupInput)
|
|
1404
|
-
delete(input: DeploymentManagedServiceDeleteInput)
|
|
1405
|
-
get(input: DeploymentManagedServiceGetInput)
|
|
1406
|
-
list(input: DeploymentManagedServiceListInput)
|
|
1407
|
-
logs(input: DeploymentManagedServiceLogsInput)
|
|
1408
|
-
provision(input: DeploymentManagedServiceProvisionInput)
|
|
1409
|
-
reconcile(input: DeploymentManagedServiceReconcileInput)
|
|
1410
|
-
resize(input: DeploymentManagedServiceResizeInput)
|
|
1411
|
-
restore(input: DeploymentManagedServiceRestoreInput)
|
|
1412
|
-
start(input: DeploymentManagedServiceStartInput)
|
|
1413
|
-
stop(input: DeploymentManagedServiceStopInput)
|
|
1414
|
-
types(input: DeploymentManagedServiceTypesInput)
|
|
1380
|
+
backup: ((input: DeploymentManagedServiceBackupInput) => Promise<DeploymentManagedServiceBackupOutput>) & Operation;
|
|
1381
|
+
delete: ((input: DeploymentManagedServiceDeleteInput) => Promise<DeploymentManagedServiceDeleteOutput>) & Operation;
|
|
1382
|
+
get: ((input: DeploymentManagedServiceGetInput) => Promise<DeploymentManagedServiceGetOutput>) & Operation;
|
|
1383
|
+
list: ((input: DeploymentManagedServiceListInput) => Promise<DeploymentManagedServiceListOutput>) & Operation;
|
|
1384
|
+
logs: ((input: DeploymentManagedServiceLogsInput) => Promise<DeploymentManagedServiceLogsOutput>) & Operation;
|
|
1385
|
+
provision: ((input: DeploymentManagedServiceProvisionInput) => Promise<DeploymentManagedServiceProvisionOutput>) & Operation;
|
|
1386
|
+
reconcile: ((input: DeploymentManagedServiceReconcileInput) => Promise<DeploymentManagedServiceReconcileOutput>) & Operation;
|
|
1387
|
+
resize: ((input: DeploymentManagedServiceResizeInput) => Promise<DeploymentManagedServiceResizeOutput>) & Operation;
|
|
1388
|
+
restore: ((input: DeploymentManagedServiceRestoreInput) => Promise<DeploymentManagedServiceRestoreOutput>) & Operation;
|
|
1389
|
+
start: ((input: DeploymentManagedServiceStartInput) => Promise<DeploymentManagedServiceStartOutput>) & Operation;
|
|
1390
|
+
stop: ((input: DeploymentManagedServiceStopInput) => Promise<DeploymentManagedServiceStopOutput>) & Operation;
|
|
1391
|
+
types: ((input: DeploymentManagedServiceTypesInput) => Promise<DeploymentManagedServiceTypesOutput>) & Operation;
|
|
1415
1392
|
};
|
|
1416
1393
|
'managed-service-backup': {
|
|
1417
|
-
list(input: DeploymentManagedServiceBackupListInput)
|
|
1394
|
+
list: ((input: DeploymentManagedServiceBackupListInput) => Promise<DeploymentManagedServiceBackupListOutput>) & Operation;
|
|
1418
1395
|
};
|
|
1419
1396
|
'managed-service-connect': {
|
|
1420
|
-
info(input: DeploymentManagedServiceConnectInfoInput)
|
|
1397
|
+
info: ((input: DeploymentManagedServiceConnectInfoInput) => Promise<DeploymentManagedServiceConnectInfoOutput>) & Operation;
|
|
1421
1398
|
};
|
|
1422
1399
|
metrics: {
|
|
1423
|
-
get(input: DeploymentMetricsGetInput)
|
|
1400
|
+
get: ((input: DeploymentMetricsGetInput) => Promise<DeploymentMetricsGetOutput>) & Operation;
|
|
1424
1401
|
};
|
|
1425
1402
|
'preview-environment': {
|
|
1426
|
-
create(input: DeploymentPreviewEnvironmentCreateInput)
|
|
1427
|
-
delete(input: DeploymentPreviewEnvironmentDeleteInput)
|
|
1428
|
-
list(input: DeploymentPreviewEnvironmentListInput)
|
|
1403
|
+
create: ((input: DeploymentPreviewEnvironmentCreateInput) => Promise<DeploymentPreviewEnvironmentCreateOutput>) & Operation;
|
|
1404
|
+
delete: ((input: DeploymentPreviewEnvironmentDeleteInput) => Promise<DeploymentPreviewEnvironmentDeleteOutput>) & Operation;
|
|
1405
|
+
list: ((input: DeploymentPreviewEnvironmentListInput) => Promise<DeploymentPreviewEnvironmentListOutput>) & Operation;
|
|
1429
1406
|
};
|
|
1430
1407
|
'preview-policy': {
|
|
1431
|
-
get(input: DeploymentPreviewPolicyGetInput)
|
|
1432
|
-
set(input: DeploymentPreviewPolicySetInput)
|
|
1408
|
+
get: ((input: DeploymentPreviewPolicyGetInput) => Promise<DeploymentPreviewPolicyGetOutput>) & Operation;
|
|
1409
|
+
set: ((input: DeploymentPreviewPolicySetInput) => Promise<DeploymentPreviewPolicySetOutput>) & Operation;
|
|
1433
1410
|
};
|
|
1434
1411
|
service: {
|
|
1435
|
-
create(input: DeploymentServiceCreateInput)
|
|
1436
|
-
delete(input: DeploymentServiceDeleteInput)
|
|
1437
|
-
exec(input: DeploymentServiceExecInput)
|
|
1438
|
-
get(input: DeploymentServiceGetInput)
|
|
1439
|
-
list(input: DeploymentServiceListInput)
|
|
1440
|
-
logs(input: DeploymentServiceLogsInput)
|
|
1441
|
-
redeploy(input: DeploymentServiceRedeployInput)
|
|
1442
|
-
restart(input: DeploymentServiceRestartInput)
|
|
1443
|
-
rollback(input: DeploymentServiceRollbackInput)
|
|
1444
|
-
scale(input: DeploymentServiceScaleInput)
|
|
1445
|
-
update(input: DeploymentServiceUpdateInput)
|
|
1446
|
-
wake(input: DeploymentServiceWakeInput)
|
|
1412
|
+
create: ((input: DeploymentServiceCreateInput) => Promise<DeploymentServiceCreateOutput>) & Operation;
|
|
1413
|
+
delete: ((input: DeploymentServiceDeleteInput) => Promise<DeploymentServiceDeleteOutput>) & Operation;
|
|
1414
|
+
exec: ((input: DeploymentServiceExecInput) => Promise<DeploymentServiceExecOutput>) & Operation;
|
|
1415
|
+
get: ((input: DeploymentServiceGetInput) => Promise<DeploymentServiceGetOutput>) & Operation;
|
|
1416
|
+
list: ((input: DeploymentServiceListInput) => Promise<DeploymentServiceListOutput>) & Operation;
|
|
1417
|
+
logs: ((input: DeploymentServiceLogsInput) => Promise<DeploymentServiceLogsOutput>) & Operation;
|
|
1418
|
+
redeploy: ((input: DeploymentServiceRedeployInput) => Promise<DeploymentServiceRedeployOutput>) & Operation;
|
|
1419
|
+
restart: ((input: DeploymentServiceRestartInput) => Promise<DeploymentServiceRestartOutput>) & Operation;
|
|
1420
|
+
rollback: ((input: DeploymentServiceRollbackInput) => Promise<DeploymentServiceRollbackOutput>) & Operation;
|
|
1421
|
+
scale: ((input: DeploymentServiceScaleInput) => Promise<DeploymentServiceScaleOutput>) & Operation;
|
|
1422
|
+
update: ((input: DeploymentServiceUpdateInput) => Promise<DeploymentServiceUpdateOutput>) & Operation;
|
|
1423
|
+
wake: ((input: DeploymentServiceWakeInput) => Promise<DeploymentServiceWakeOutput>) & Operation;
|
|
1447
1424
|
};
|
|
1448
1425
|
ssh: {
|
|
1449
|
-
command(input: DeploymentSshCommandInput)
|
|
1426
|
+
command: ((input: DeploymentSshCommandInput) => Promise<DeploymentSshCommandOutput>) & Operation;
|
|
1450
1427
|
};
|
|
1451
1428
|
'ssh-key': {
|
|
1452
|
-
delete(input: DeploymentSshKeyDeleteInput)
|
|
1453
|
-
list(input: DeploymentSshKeyListInput)
|
|
1454
|
-
register(input: DeploymentSshKeyRegisterInput)
|
|
1429
|
+
delete: ((input: DeploymentSshKeyDeleteInput) => Promise<DeploymentSshKeyDeleteOutput>) & Operation;
|
|
1430
|
+
list: ((input: DeploymentSshKeyListInput) => Promise<DeploymentSshKeyListOutput>) & Operation;
|
|
1431
|
+
register: ((input: DeploymentSshKeyRegisterInput) => Promise<DeploymentSshKeyRegisterOutput>) & Operation;
|
|
1455
1432
|
};
|
|
1456
1433
|
suspension: {
|
|
1457
|
-
get(input: DeploymentSuspensionGetInput)
|
|
1434
|
+
get: ((input: DeploymentSuspensionGetInput) => Promise<DeploymentSuspensionGetOutput>) & Operation;
|
|
1458
1435
|
};
|
|
1459
1436
|
variable: {
|
|
1460
|
-
list(input: DeploymentVariableListInput)
|
|
1461
|
-
set(input: DeploymentVariableSetInput)
|
|
1462
|
-
unset(input: DeploymentVariableUnsetInput)
|
|
1437
|
+
list: ((input: DeploymentVariableListInput) => Promise<DeploymentVariableListOutput>) & Operation;
|
|
1438
|
+
set: ((input: DeploymentVariableSetInput) => Promise<DeploymentVariableSetOutput>) & Operation;
|
|
1439
|
+
unset: ((input: DeploymentVariableUnsetInput) => Promise<DeploymentVariableUnsetOutput>) & Operation;
|
|
1463
1440
|
};
|
|
1464
1441
|
'variable-list': {
|
|
1465
|
-
env(input: DeploymentVariableListEnvInput)
|
|
1466
|
-
product(input: DeploymentVariableListProductInput)
|
|
1442
|
+
env: ((input: DeploymentVariableListEnvInput) => Promise<DeploymentVariableListEnvOutput>) & Operation;
|
|
1443
|
+
product: ((input: DeploymentVariableListProductInput) => Promise<DeploymentVariableListProductOutput>) & Operation;
|
|
1467
1444
|
};
|
|
1468
1445
|
'variable-set': {
|
|
1469
|
-
env(input: DeploymentVariableSetEnvInput)
|
|
1470
|
-
product(input: DeploymentVariableSetProductInput)
|
|
1446
|
+
env: ((input: DeploymentVariableSetEnvInput) => Promise<DeploymentVariableSetEnvOutput>) & Operation;
|
|
1447
|
+
product: ((input: DeploymentVariableSetProductInput) => Promise<DeploymentVariableSetProductOutput>) & Operation;
|
|
1471
1448
|
};
|
|
1472
1449
|
'variable-unset': {
|
|
1473
|
-
env(input: DeploymentVariableUnsetEnvInput)
|
|
1474
|
-
product(input: DeploymentVariableUnsetProductInput)
|
|
1450
|
+
env: ((input: DeploymentVariableUnsetEnvInput) => Promise<DeploymentVariableUnsetEnvOutput>) & Operation;
|
|
1451
|
+
product: ((input: DeploymentVariableUnsetProductInput) => Promise<DeploymentVariableUnsetProductOutput>) & Operation;
|
|
1475
1452
|
};
|
|
1476
1453
|
'vcs-branch': {
|
|
1477
|
-
list(input: DeploymentVcsBranchListInput)
|
|
1454
|
+
list: ((input: DeploymentVcsBranchListInput) => Promise<DeploymentVcsBranchListOutput>) & Operation;
|
|
1478
1455
|
};
|
|
1479
1456
|
'vcs-connection': {
|
|
1480
|
-
list(input: DeploymentVcsConnectionListInput)
|
|
1457
|
+
list: ((input: DeploymentVcsConnectionListInput) => Promise<DeploymentVcsConnectionListOutput>) & Operation;
|
|
1481
1458
|
};
|
|
1482
1459
|
'vcs-repo': {
|
|
1483
|
-
list(input: DeploymentVcsRepoListInput)
|
|
1460
|
+
list: ((input: DeploymentVcsRepoListInput) => Promise<DeploymentVcsRepoListOutput>) & Operation;
|
|
1484
1461
|
};
|
|
1485
1462
|
volume: {
|
|
1486
|
-
create(input: DeploymentVolumeCreateInput)
|
|
1487
|
-
delete(input: DeploymentVolumeDeleteInput)
|
|
1488
|
-
detach(input: DeploymentVolumeDetachInput)
|
|
1489
|
-
get(input: DeploymentVolumeGetInput)
|
|
1490
|
-
list(input: DeploymentVolumeListInput)
|
|
1491
|
-
resize(input: DeploymentVolumeResizeInput)
|
|
1463
|
+
create: ((input: DeploymentVolumeCreateInput) => Promise<DeploymentVolumeCreateOutput>) & Operation;
|
|
1464
|
+
delete: ((input: DeploymentVolumeDeleteInput) => Promise<DeploymentVolumeDeleteOutput>) & Operation;
|
|
1465
|
+
detach: ((input: DeploymentVolumeDetachInput) => Promise<DeploymentVolumeDetachOutput>) & Operation;
|
|
1466
|
+
get: ((input: DeploymentVolumeGetInput) => Promise<DeploymentVolumeGetOutput>) & Operation;
|
|
1467
|
+
list: ((input: DeploymentVolumeListInput) => Promise<DeploymentVolumeListOutput>) & Operation;
|
|
1468
|
+
resize: ((input: DeploymentVolumeResizeInput) => Promise<DeploymentVolumeResizeOutput>) & Operation;
|
|
1492
1469
|
};
|
|
1493
1470
|
};
|
|
1494
1471
|
mail: {
|
|
1495
1472
|
apikey: {
|
|
1496
|
-
create(input: MailApikeyCreateInput)
|
|
1497
|
-
delete(input: MailApikeyDeleteInput)
|
|
1498
|
-
list(input: MailApikeyListInput)
|
|
1473
|
+
create: ((input: MailApikeyCreateInput) => Promise<MailApikeyCreateOutput>) & Operation;
|
|
1474
|
+
delete: ((input: MailApikeyDeleteInput) => Promise<MailApikeyDeleteOutput>) & Operation;
|
|
1475
|
+
list: ((input: MailApikeyListInput) => Promise<MailApikeyListOutput>) & Operation;
|
|
1499
1476
|
};
|
|
1500
1477
|
audience: {
|
|
1501
|
-
create(input: MailAudienceCreateInput)
|
|
1502
|
-
delete(input: MailAudienceDeleteInput)
|
|
1503
|
-
get(input: MailAudienceGetInput)
|
|
1504
|
-
list(input: MailAudienceListInput)
|
|
1505
|
-
update(input: MailAudienceUpdateInput)
|
|
1478
|
+
create: ((input: MailAudienceCreateInput) => Promise<MailAudienceCreateOutput>) & Operation;
|
|
1479
|
+
delete: ((input: MailAudienceDeleteInput) => Promise<MailAudienceDeleteOutput>) & Operation;
|
|
1480
|
+
get: ((input: MailAudienceGetInput) => Promise<MailAudienceGetOutput>) & Operation;
|
|
1481
|
+
list: ((input: MailAudienceListInput) => Promise<MailAudienceListOutput>) & Operation;
|
|
1482
|
+
update: ((input: MailAudienceUpdateInput) => Promise<MailAudienceUpdateOutput>) & Operation;
|
|
1506
1483
|
};
|
|
1507
1484
|
broadcast: {
|
|
1508
|
-
cancel(input: MailBroadcastCancelInput)
|
|
1509
|
-
create(input: MailBroadcastCreateInput)
|
|
1510
|
-
delete(input: MailBroadcastDeleteInput)
|
|
1511
|
-
get(input: MailBroadcastGetInput)
|
|
1512
|
-
list(input: MailBroadcastListInput)
|
|
1513
|
-
queue(input: MailBroadcastQueueInput)
|
|
1514
|
-
stats(input: MailBroadcastStatsInput)
|
|
1515
|
-
update(input: MailBroadcastUpdateInput)
|
|
1485
|
+
cancel: ((input: MailBroadcastCancelInput) => Promise<MailBroadcastCancelOutput>) & Operation;
|
|
1486
|
+
create: ((input: MailBroadcastCreateInput) => Promise<MailBroadcastCreateOutput>) & Operation;
|
|
1487
|
+
delete: ((input: MailBroadcastDeleteInput) => Promise<MailBroadcastDeleteOutput>) & Operation;
|
|
1488
|
+
get: ((input: MailBroadcastGetInput) => Promise<MailBroadcastGetOutput>) & Operation;
|
|
1489
|
+
list: ((input: MailBroadcastListInput) => Promise<MailBroadcastListOutput>) & Operation;
|
|
1490
|
+
queue: ((input: MailBroadcastQueueInput) => Promise<MailBroadcastQueueOutput>) & Operation;
|
|
1491
|
+
stats: ((input: MailBroadcastStatsInput) => Promise<MailBroadcastStatsOutput>) & Operation;
|
|
1492
|
+
update: ((input: MailBroadcastUpdateInput) => Promise<MailBroadcastUpdateOutput>) & Operation;
|
|
1516
1493
|
};
|
|
1517
1494
|
contact: {
|
|
1518
|
-
create(input: MailContactCreateInput)
|
|
1519
|
-
delete(input: MailContactDeleteInput)
|
|
1520
|
-
get(input: MailContactGetInput)
|
|
1521
|
-
list(input: MailContactListInput)
|
|
1522
|
-
update(input: MailContactUpdateInput)
|
|
1495
|
+
create: ((input: MailContactCreateInput) => Promise<MailContactCreateOutput>) & Operation;
|
|
1496
|
+
delete: ((input: MailContactDeleteInput) => Promise<MailContactDeleteOutput>) & Operation;
|
|
1497
|
+
get: ((input: MailContactGetInput) => Promise<MailContactGetOutput>) & Operation;
|
|
1498
|
+
list: ((input: MailContactListInput) => Promise<MailContactListOutput>) & Operation;
|
|
1499
|
+
update: ((input: MailContactUpdateInput) => Promise<MailContactUpdateOutput>) & Operation;
|
|
1523
1500
|
};
|
|
1524
1501
|
domain: {
|
|
1525
|
-
create(input: MailDomainCreateInput)
|
|
1526
|
-
delete(input: MailDomainDeleteInput)
|
|
1527
|
-
get(input: MailDomainGetInput)
|
|
1528
|
-
list(input: MailDomainListInput)
|
|
1529
|
-
update(input: MailDomainUpdateInput)
|
|
1530
|
-
verify(input: MailDomainVerifyInput)
|
|
1502
|
+
create: ((input: MailDomainCreateInput) => Promise<MailDomainCreateOutput>) & Operation;
|
|
1503
|
+
delete: ((input: MailDomainDeleteInput) => Promise<MailDomainDeleteOutput>) & Operation;
|
|
1504
|
+
get: ((input: MailDomainGetInput) => Promise<MailDomainGetOutput>) & Operation;
|
|
1505
|
+
list: ((input: MailDomainListInput) => Promise<MailDomainListOutput>) & Operation;
|
|
1506
|
+
update: ((input: MailDomainUpdateInput) => Promise<MailDomainUpdateOutput>) & Operation;
|
|
1507
|
+
verify: ((input: MailDomainVerifyInput) => Promise<MailDomainVerifyOutput>) & Operation;
|
|
1531
1508
|
};
|
|
1532
1509
|
'domain-allowed': {
|
|
1533
|
-
list(input: MailDomainAllowedListInput)
|
|
1510
|
+
list: ((input: MailDomainAllowedListInput) => Promise<MailDomainAllowedListOutput>) & Operation;
|
|
1534
1511
|
};
|
|
1535
1512
|
email: {
|
|
1536
|
-
cancel(input: MailEmailCancelInput)
|
|
1537
|
-
get(input: MailEmailGetInput)
|
|
1538
|
-
send(input: MailEmailSendInput)
|
|
1539
|
-
update(input: MailEmailUpdateInput)
|
|
1513
|
+
cancel: ((input: MailEmailCancelInput) => Promise<MailEmailCancelOutput>) & Operation;
|
|
1514
|
+
get: ((input: MailEmailGetInput) => Promise<MailEmailGetOutput>) & Operation;
|
|
1515
|
+
send: ((input: MailEmailSendInput) => Promise<MailEmailSendOutput>) & Operation;
|
|
1516
|
+
update: ((input: MailEmailUpdateInput) => Promise<MailEmailUpdateOutput>) & Operation;
|
|
1540
1517
|
};
|
|
1541
1518
|
'email-send': {
|
|
1542
|
-
batch(input: MailEmailSendBatchInput)
|
|
1519
|
+
batch: ((input: MailEmailSendBatchInput) => Promise<MailEmailSendBatchOutput>) & Operation;
|
|
1543
1520
|
};
|
|
1544
1521
|
reputation: {
|
|
1545
|
-
get(input: MailReputationGetInput)
|
|
1522
|
+
get: ((input: MailReputationGetInput) => Promise<MailReputationGetOutput>) & Operation;
|
|
1546
1523
|
};
|
|
1547
1524
|
stats: {
|
|
1548
|
-
get(input: MailStatsGetInput)
|
|
1525
|
+
get: ((input: MailStatsGetInput) => Promise<MailStatsGetOutput>) & Operation;
|
|
1549
1526
|
};
|
|
1550
1527
|
suppression: {
|
|
1551
|
-
add(input: MailSuppressionAddInput)
|
|
1552
|
-
list(input: MailSuppressionListInput)
|
|
1553
|
-
remove(input: MailSuppressionRemoveInput)
|
|
1528
|
+
add: ((input: MailSuppressionAddInput) => Promise<MailSuppressionAddOutput>) & Operation;
|
|
1529
|
+
list: ((input: MailSuppressionListInput) => Promise<MailSuppressionListOutput>) & Operation;
|
|
1530
|
+
remove: ((input: MailSuppressionRemoveInput) => Promise<MailSuppressionRemoveOutput>) & Operation;
|
|
1554
1531
|
};
|
|
1555
1532
|
template: {
|
|
1556
|
-
create(input: MailTemplateCreateInput)
|
|
1557
|
-
delete(input: MailTemplateDeleteInput)
|
|
1558
|
-
get(input: MailTemplateGetInput)
|
|
1559
|
-
list(input: MailTemplateListInput)
|
|
1560
|
-
publish(input: MailTemplatePublishInput)
|
|
1561
|
-
update(input: MailTemplateUpdateInput)
|
|
1533
|
+
create: ((input: MailTemplateCreateInput) => Promise<MailTemplateCreateOutput>) & Operation;
|
|
1534
|
+
delete: ((input: MailTemplateDeleteInput) => Promise<MailTemplateDeleteOutput>) & Operation;
|
|
1535
|
+
get: ((input: MailTemplateGetInput) => Promise<MailTemplateGetOutput>) & Operation;
|
|
1536
|
+
list: ((input: MailTemplateListInput) => Promise<MailTemplateListOutput>) & Operation;
|
|
1537
|
+
publish: ((input: MailTemplatePublishInput) => Promise<MailTemplatePublishOutput>) & Operation;
|
|
1538
|
+
update: ((input: MailTemplateUpdateInput) => Promise<MailTemplateUpdateOutput>) & Operation;
|
|
1562
1539
|
};
|
|
1563
1540
|
usage: {
|
|
1564
|
-
get(input: MailUsageGetInput)
|
|
1541
|
+
get: ((input: MailUsageGetInput) => Promise<MailUsageGetOutput>) & Operation;
|
|
1565
1542
|
};
|
|
1566
1543
|
webhook: {
|
|
1567
|
-
create(input: MailWebhookCreateInput)
|
|
1568
|
-
delete(input: MailWebhookDeleteInput)
|
|
1569
|
-
get(input: MailWebhookGetInput)
|
|
1570
|
-
list(input: MailWebhookListInput)
|
|
1571
|
-
update(input: MailWebhookUpdateInput)
|
|
1544
|
+
create: ((input: MailWebhookCreateInput) => Promise<MailWebhookCreateOutput>) & Operation;
|
|
1545
|
+
delete: ((input: MailWebhookDeleteInput) => Promise<MailWebhookDeleteOutput>) & Operation;
|
|
1546
|
+
get: ((input: MailWebhookGetInput) => Promise<MailWebhookGetOutput>) & Operation;
|
|
1547
|
+
list: ((input: MailWebhookListInput) => Promise<MailWebhookListOutput>) & Operation;
|
|
1548
|
+
update: ((input: MailWebhookUpdateInput) => Promise<MailWebhookUpdateOutput>) & Operation;
|
|
1572
1549
|
};
|
|
1573
1550
|
'webhook-deliveries': {
|
|
1574
|
-
list(input: MailWebhookDeliveriesListInput)
|
|
1551
|
+
list: ((input: MailWebhookDeliveriesListInput) => Promise<MailWebhookDeliveriesListOutput>) & Operation;
|
|
1575
1552
|
};
|
|
1576
1553
|
};
|
|
1577
1554
|
observe: {
|
|
1578
1555
|
alerts: {
|
|
1579
|
-
create(input: ObserveAlertsCreateInput)
|
|
1580
|
-
delete(input: ObserveAlertsDeleteInput)
|
|
1581
|
-
get(input: ObserveAlertsGetInput)
|
|
1582
|
-
list(input: ObserveAlertsListInput)
|
|
1583
|
-
update(input: ObserveAlertsUpdateInput)
|
|
1556
|
+
create: ((input: ObserveAlertsCreateInput) => Promise<ObserveAlertsCreateOutput>) & Operation;
|
|
1557
|
+
delete: ((input: ObserveAlertsDeleteInput) => Promise<ObserveAlertsDeleteOutput>) & Operation;
|
|
1558
|
+
get: ((input: ObserveAlertsGetInput) => Promise<ObserveAlertsGetOutput>) & Operation;
|
|
1559
|
+
list: ((input: ObserveAlertsListInput) => Promise<ObserveAlertsListOutput>) & Operation;
|
|
1560
|
+
update: ((input: ObserveAlertsUpdateInput) => Promise<ObserveAlertsUpdateOutput>) & Operation;
|
|
1584
1561
|
};
|
|
1585
1562
|
'alerts-events': {
|
|
1586
|
-
list(input: ObserveAlertsEventsListInput)
|
|
1563
|
+
list: ((input: ObserveAlertsEventsListInput) => Promise<ObserveAlertsEventsListOutput>) & Operation;
|
|
1587
1564
|
};
|
|
1588
1565
|
artifacts: {
|
|
1589
|
-
delete(input: ObserveArtifactsDeleteInput)
|
|
1590
|
-
list(input: ObserveArtifactsListInput)
|
|
1591
|
-
resolve(input: ObserveArtifactsResolveInput)
|
|
1566
|
+
delete: ((input: ObserveArtifactsDeleteInput) => Promise<ObserveArtifactsDeleteOutput>) & Operation;
|
|
1567
|
+
list: ((input: ObserveArtifactsListInput) => Promise<ObserveArtifactsListOutput>) & Operation;
|
|
1568
|
+
resolve: ((input: ObserveArtifactsResolveInput) => Promise<ObserveArtifactsResolveOutput>) & Operation;
|
|
1592
1569
|
};
|
|
1593
1570
|
issues: {
|
|
1594
|
-
archive(input: ObserveIssuesArchiveInput)
|
|
1595
|
-
assign(input: ObserveIssuesAssignInput)
|
|
1596
|
-
event(input: ObserveIssuesEventInput)
|
|
1597
|
-
events(input: ObserveIssuesEventsInput)
|
|
1598
|
-
get(input: ObserveIssuesGetInput)
|
|
1599
|
-
histogram(input: ObserveIssuesHistogramInput)
|
|
1600
|
-
list(input: ObserveIssuesListInput)
|
|
1601
|
-
resolve(input: ObserveIssuesResolveInput)
|
|
1571
|
+
archive: ((input: ObserveIssuesArchiveInput) => Promise<ObserveIssuesArchiveOutput>) & Operation;
|
|
1572
|
+
assign: ((input: ObserveIssuesAssignInput) => Promise<ObserveIssuesAssignOutput>) & Operation;
|
|
1573
|
+
event: ((input: ObserveIssuesEventInput) => Promise<ObserveIssuesEventOutput>) & Operation;
|
|
1574
|
+
events: ((input: ObserveIssuesEventsInput) => Promise<ObserveIssuesEventsOutput>) & Operation;
|
|
1575
|
+
get: ((input: ObserveIssuesGetInput) => Promise<ObserveIssuesGetOutput>) & Operation;
|
|
1576
|
+
histogram: ((input: ObserveIssuesHistogramInput) => Promise<ObserveIssuesHistogramOutput>) & Operation;
|
|
1577
|
+
list: ((input: ObserveIssuesListInput) => Promise<ObserveIssuesListOutput>) & Operation;
|
|
1578
|
+
resolve: ((input: ObserveIssuesResolveInput) => Promise<ObserveIssuesResolveOutput>) & Operation;
|
|
1602
1579
|
};
|
|
1603
1580
|
keys: {
|
|
1604
|
-
create(input: ObserveKeysCreateInput)
|
|
1605
|
-
list(input: ObserveKeysListInput)
|
|
1606
|
-
revoke(input: ObserveKeysRevokeInput)
|
|
1581
|
+
create: ((input: ObserveKeysCreateInput) => Promise<ObserveKeysCreateOutput>) & Operation;
|
|
1582
|
+
list: ((input: ObserveKeysListInput) => Promise<ObserveKeysListOutput>) & Operation;
|
|
1583
|
+
revoke: ((input: ObserveKeysRevokeInput) => Promise<ObserveKeysRevokeOutput>) & Operation;
|
|
1607
1584
|
};
|
|
1608
1585
|
logs: {
|
|
1609
|
-
facets(input: ObserveLogsFacetsInput)
|
|
1610
|
-
search(input: ObserveLogsSearchInput)
|
|
1611
|
-
tail(input: ObserveLogsTailInput)
|
|
1586
|
+
facets: ((input: ObserveLogsFacetsInput) => Promise<ObserveLogsFacetsOutput>) & Operation;
|
|
1587
|
+
search: ((input: ObserveLogsSearchInput) => Promise<ObserveLogsSearchOutput>) & Operation;
|
|
1588
|
+
tail: ((input: ObserveLogsTailInput) => Promise<ObserveLogsTailOutput>) & Operation;
|
|
1612
1589
|
};
|
|
1613
1590
|
metrics: {
|
|
1614
|
-
list(input: ObserveMetricsListInput)
|
|
1615
|
-
query(input: ObserveMetricsQueryInput)
|
|
1591
|
+
list: ((input: ObserveMetricsListInput) => Promise<ObserveMetricsListOutput>) & Operation;
|
|
1592
|
+
query: ((input: ObserveMetricsQueryInput) => Promise<ObserveMetricsQueryOutput>) & Operation;
|
|
1616
1593
|
};
|
|
1617
1594
|
traces: {
|
|
1618
|
-
get(input: ObserveTracesGetInput)
|
|
1619
|
-
search(input: ObserveTracesSearchInput)
|
|
1595
|
+
get: ((input: ObserveTracesGetInput) => Promise<ObserveTracesGetOutput>) & Operation;
|
|
1596
|
+
search: ((input: ObserveTracesSearchInput) => Promise<ObserveTracesSearchOutput>) & Operation;
|
|
1620
1597
|
};
|
|
1621
1598
|
webhooks: {
|
|
1622
|
-
create(input: ObserveWebhooksCreateInput)
|
|
1623
|
-
delete(input: ObserveWebhooksDeleteInput)
|
|
1624
|
-
get(input: ObserveWebhooksGetInput)
|
|
1625
|
-
list(input: ObserveWebhooksListInput)
|
|
1626
|
-
redeliver(input: ObserveWebhooksRedeliverInput)
|
|
1627
|
-
update(input: ObserveWebhooksUpdateInput)
|
|
1599
|
+
create: ((input: ObserveWebhooksCreateInput) => Promise<ObserveWebhooksCreateOutput>) & Operation;
|
|
1600
|
+
delete: ((input: ObserveWebhooksDeleteInput) => Promise<ObserveWebhooksDeleteOutput>) & Operation;
|
|
1601
|
+
get: ((input: ObserveWebhooksGetInput) => Promise<ObserveWebhooksGetOutput>) & Operation;
|
|
1602
|
+
list: ((input: ObserveWebhooksListInput) => Promise<ObserveWebhooksListOutput>) & Operation;
|
|
1603
|
+
redeliver: ((input: ObserveWebhooksRedeliverInput) => Promise<ObserveWebhooksRedeliverOutput>) & Operation;
|
|
1604
|
+
update: ((input: ObserveWebhooksUpdateInput) => Promise<ObserveWebhooksUpdateOutput>) & Operation;
|
|
1628
1605
|
};
|
|
1629
1606
|
'webhooks-deliveries': {
|
|
1630
|
-
list(input: ObserveWebhooksDeliveriesListInput)
|
|
1607
|
+
list: ((input: ObserveWebhooksDeliveriesListInput) => Promise<ObserveWebhooksDeliveriesListOutput>) & Operation;
|
|
1631
1608
|
};
|
|
1632
1609
|
'webhooks-rotate': {
|
|
1633
|
-
secret(input: ObserveWebhooksRotateSecretInput)
|
|
1610
|
+
secret: ((input: ObserveWebhooksRotateSecretInput) => Promise<ObserveWebhooksRotateSecretOutput>) & Operation;
|
|
1634
1611
|
};
|
|
1635
1612
|
};
|
|
1636
1613
|
organization: {
|
|
1637
|
-
create(input: OrganizationCreateInput)
|
|
1638
|
-
list(input: OrganizationListInput)
|
|
1639
|
-
select(input: OrganizationSelectInput)
|
|
1614
|
+
create: ((input: OrganizationCreateInput) => Promise<OrganizationCreateOutput>) & Operation;
|
|
1615
|
+
list: ((input: OrganizationListInput) => Promise<OrganizationListOutput>) & Operation;
|
|
1616
|
+
select: ((input: OrganizationSelectInput) => Promise<OrganizationSelectOutput>) & Operation;
|
|
1640
1617
|
auth: {
|
|
1641
|
-
me(input: OrganizationAuthMeInput)
|
|
1618
|
+
me: ((input: OrganizationAuthMeInput) => Promise<OrganizationAuthMeOutput>) & Operation;
|
|
1642
1619
|
};
|
|
1643
1620
|
'billing-budgets': {
|
|
1644
|
-
get(input: OrganizationBillingBudgetsGetInput)
|
|
1645
|
-
set(input: OrganizationBillingBudgetsSetInput)
|
|
1621
|
+
get: ((input: OrganizationBillingBudgetsGetInput) => Promise<OrganizationBillingBudgetsGetOutput>) & Operation;
|
|
1622
|
+
set: ((input: OrganizationBillingBudgetsSetInput) => Promise<OrganizationBillingBudgetsSetOutput>) & Operation;
|
|
1646
1623
|
};
|
|
1647
1624
|
'billing-caps': {
|
|
1648
|
-
clear(input: OrganizationBillingCapsClearInput)
|
|
1649
|
-
set(input: OrganizationBillingCapsSetInput)
|
|
1625
|
+
clear: ((input: OrganizationBillingCapsClearInput) => Promise<OrganizationBillingCapsClearOutput>) & Operation;
|
|
1626
|
+
set: ((input: OrganizationBillingCapsSetInput) => Promise<OrganizationBillingCapsSetOutput>) & Operation;
|
|
1650
1627
|
};
|
|
1651
1628
|
bindings: {
|
|
1652
|
-
list(input: OrganizationBindingsListInput)
|
|
1629
|
+
list: ((input: OrganizationBindingsListInput) => Promise<OrganizationBindingsListOutput>) & Operation;
|
|
1653
1630
|
};
|
|
1654
1631
|
clickup: {
|
|
1655
|
-
install(input: OrganizationClickupInstallInput)
|
|
1656
|
-
'list-installations'(input: OrganizationClickupListInstallationsInput)
|
|
1632
|
+
install: ((input: OrganizationClickupInstallInput) => Promise<OrganizationClickupInstallOutput>) & Operation;
|
|
1633
|
+
'list-installations': ((input: OrganizationClickupListInstallationsInput) => Promise<OrganizationClickupListInstallationsOutput>) & Operation;
|
|
1657
1634
|
};
|
|
1658
1635
|
cloudflare: {
|
|
1659
|
-
install(input: OrganizationCloudflareInstallInput)
|
|
1636
|
+
install: ((input: OrganizationCloudflareInstallInput) => Promise<OrganizationCloudflareInstallOutput>) & Operation;
|
|
1660
1637
|
};
|
|
1661
1638
|
connectors: {
|
|
1662
|
-
'approve-request'(input: OrganizationConnectorsApproveRequestInput)
|
|
1663
|
-
attach(input: OrganizationConnectorsAttachInput)
|
|
1664
|
-
delete(input: OrganizationConnectorsDeleteInput)
|
|
1665
|
-
'deny-request'(input: OrganizationConnectorsDenyRequestInput)
|
|
1666
|
-
detach(input: OrganizationConnectorsDetachInput)
|
|
1667
|
-
list(input: OrganizationConnectorsListInput)
|
|
1668
|
-
'list-attachments'(input: OrganizationConnectorsListAttachmentsInput)
|
|
1669
|
-
'list-available'(input: OrganizationConnectorsListAvailableInput)
|
|
1670
|
-
'list-org'(input: OrganizationConnectorsListOrgInput)
|
|
1671
|
-
'list-requests'(input: OrganizationConnectorsListRequestsInput)
|
|
1672
|
-
remove(input: OrganizationConnectorsRemoveInput)
|
|
1673
|
-
request(input: OrganizationConnectorsRequestInput)
|
|
1639
|
+
'approve-request': ((input: OrganizationConnectorsApproveRequestInput) => Promise<OrganizationConnectorsApproveRequestOutput>) & Operation;
|
|
1640
|
+
attach: ((input: OrganizationConnectorsAttachInput) => Promise<OrganizationConnectorsAttachOutput>) & Operation;
|
|
1641
|
+
delete: ((input: OrganizationConnectorsDeleteInput) => Promise<OrganizationConnectorsDeleteOutput>) & Operation;
|
|
1642
|
+
'deny-request': ((input: OrganizationConnectorsDenyRequestInput) => Promise<OrganizationConnectorsDenyRequestOutput>) & Operation;
|
|
1643
|
+
detach: ((input: OrganizationConnectorsDetachInput) => Promise<OrganizationConnectorsDetachOutput>) & Operation;
|
|
1644
|
+
list: ((input: OrganizationConnectorsListInput) => Promise<OrganizationConnectorsListOutput>) & Operation;
|
|
1645
|
+
'list-attachments': ((input: OrganizationConnectorsListAttachmentsInput) => Promise<OrganizationConnectorsListAttachmentsOutput>) & Operation;
|
|
1646
|
+
'list-available': ((input: OrganizationConnectorsListAvailableInput) => Promise<OrganizationConnectorsListAvailableOutput>) & Operation;
|
|
1647
|
+
'list-org': ((input: OrganizationConnectorsListOrgInput) => Promise<OrganizationConnectorsListOrgOutput>) & Operation;
|
|
1648
|
+
'list-requests': ((input: OrganizationConnectorsListRequestsInput) => Promise<OrganizationConnectorsListRequestsOutput>) & Operation;
|
|
1649
|
+
remove: ((input: OrganizationConnectorsRemoveInput) => Promise<OrganizationConnectorsRemoveOutput>) & Operation;
|
|
1650
|
+
request: ((input: OrganizationConnectorsRequestInput) => Promise<OrganizationConnectorsRequestOutput>) & Operation;
|
|
1674
1651
|
};
|
|
1675
1652
|
domains: {
|
|
1676
|
-
add(input: OrganizationDomainsAddInput)
|
|
1677
|
-
get(input: OrganizationDomainsGetInput)
|
|
1678
|
-
list(input: OrganizationDomainsListInput)
|
|
1679
|
-
remove(input: OrganizationDomainsRemoveInput)
|
|
1680
|
-
'set-mode'(input: OrganizationDomainsSetModeInput)
|
|
1653
|
+
add: ((input: OrganizationDomainsAddInput) => Promise<OrganizationDomainsAddOutput>) & Operation;
|
|
1654
|
+
get: ((input: OrganizationDomainsGetInput) => Promise<OrganizationDomainsGetOutput>) & Operation;
|
|
1655
|
+
list: ((input: OrganizationDomainsListInput) => Promise<OrganizationDomainsListOutput>) & Operation;
|
|
1656
|
+
remove: ((input: OrganizationDomainsRemoveInput) => Promise<OrganizationDomainsRemoveOutput>) & Operation;
|
|
1657
|
+
'set-mode': ((input: OrganizationDomainsSetModeInput) => Promise<OrganizationDomainsSetModeOutput>) & Operation;
|
|
1681
1658
|
};
|
|
1682
1659
|
extensions: {
|
|
1683
|
-
'list-installed'(input: OrganizationExtensionsListInstalledInput)
|
|
1660
|
+
'list-installed': ((input: OrganizationExtensionsListInstalledInput) => Promise<OrganizationExtensionsListInstalledOutput>) & Operation;
|
|
1684
1661
|
};
|
|
1685
1662
|
feedback: {
|
|
1686
|
-
submit(input: OrganizationFeedbackSubmitInput)
|
|
1663
|
+
submit: ((input: OrganizationFeedbackSubmitInput) => Promise<OrganizationFeedbackSubmitOutput>) & Operation;
|
|
1687
1664
|
};
|
|
1688
1665
|
gdrive: {
|
|
1689
|
-
install(input: OrganizationGdriveInstallInput)
|
|
1666
|
+
install: ((input: OrganizationGdriveInstallInput) => Promise<OrganizationGdriveInstallOutput>) & Operation;
|
|
1690
1667
|
};
|
|
1691
1668
|
github: {
|
|
1692
|
-
install(input: OrganizationGithubInstallInput)
|
|
1693
|
-
'list-installations'(input: OrganizationGithubListInstallationsInput)
|
|
1669
|
+
install: ((input: OrganizationGithubInstallInput) => Promise<OrganizationGithubInstallOutput>) & Operation;
|
|
1670
|
+
'list-installations': ((input: OrganizationGithubListInstallationsInput) => Promise<OrganizationGithubListInstallationsOutput>) & Operation;
|
|
1694
1671
|
};
|
|
1695
1672
|
googleads: {
|
|
1696
|
-
install(input: OrganizationGoogleadsInstallInput)
|
|
1673
|
+
install: ((input: OrganizationGoogleadsInstallInput) => Promise<OrganizationGoogleadsInstallOutput>) & Operation;
|
|
1697
1674
|
};
|
|
1698
1675
|
member: {
|
|
1699
|
-
'accept-invite'(input: OrganizationMemberAcceptInviteInput)
|
|
1700
|
-
invite(input: OrganizationMemberInviteInput)
|
|
1701
|
-
list(input: OrganizationMemberListInput)
|
|
1702
|
-
'list-invitations'(input: OrganizationMemberListInvitationsInput)
|
|
1703
|
-
'list-product-access'(input: OrganizationMemberListProductAccessInput)
|
|
1704
|
-
remove(input: OrganizationMemberRemoveInput)
|
|
1705
|
-
'revoke-invitation'(input: OrganizationMemberRevokeInvitationInput)
|
|
1706
|
-
'set-role'(input: OrganizationMemberSetRoleInput)
|
|
1707
|
-
'share-product'(input: OrganizationMemberShareProductInput)
|
|
1708
|
-
'unshare-product'(input: OrganizationMemberUnshareProductInput)
|
|
1676
|
+
'accept-invite': ((input: OrganizationMemberAcceptInviteInput) => Promise<OrganizationMemberAcceptInviteOutput>) & Operation;
|
|
1677
|
+
invite: ((input: OrganizationMemberInviteInput) => Promise<OrganizationMemberInviteOutput>) & Operation;
|
|
1678
|
+
list: ((input: OrganizationMemberListInput) => Promise<OrganizationMemberListOutput>) & Operation;
|
|
1679
|
+
'list-invitations': ((input: OrganizationMemberListInvitationsInput) => Promise<OrganizationMemberListInvitationsOutput>) & Operation;
|
|
1680
|
+
'list-product-access': ((input: OrganizationMemberListProductAccessInput) => Promise<OrganizationMemberListProductAccessOutput>) & Operation;
|
|
1681
|
+
remove: ((input: OrganizationMemberRemoveInput) => Promise<OrganizationMemberRemoveOutput>) & Operation;
|
|
1682
|
+
'revoke-invitation': ((input: OrganizationMemberRevokeInvitationInput) => Promise<OrganizationMemberRevokeInvitationOutput>) & Operation;
|
|
1683
|
+
'set-role': ((input: OrganizationMemberSetRoleInput) => Promise<OrganizationMemberSetRoleOutput>) & Operation;
|
|
1684
|
+
'share-product': ((input: OrganizationMemberShareProductInput) => Promise<OrganizationMemberShareProductOutput>) & Operation;
|
|
1685
|
+
'unshare-product': ((input: OrganizationMemberUnshareProductInput) => Promise<OrganizationMemberUnshareProductOutput>) & Operation;
|
|
1709
1686
|
};
|
|
1710
1687
|
members: {
|
|
1711
|
-
'assign-role'(input: OrganizationMembersAssignRoleInput)
|
|
1688
|
+
'assign-role': ((input: OrganizationMembersAssignRoleInput) => Promise<OrganizationMembersAssignRoleOutput>) & Operation;
|
|
1712
1689
|
};
|
|
1713
1690
|
permission: {
|
|
1714
|
-
catalog(input: OrganizationPermissionCatalogInput)
|
|
1691
|
+
catalog: ((input: OrganizationPermissionCatalogInput) => Promise<OrganizationPermissionCatalogOutput>) & Operation;
|
|
1715
1692
|
};
|
|
1716
1693
|
product: {
|
|
1717
|
-
create(input: OrganizationProductCreateInput)
|
|
1718
|
-
list(input: OrganizationProductListInput)
|
|
1719
|
-
'list-access'(input: OrganizationProductListAccessInput)
|
|
1720
|
-
'list-members'(input: OrganizationProductListMembersInput)
|
|
1721
|
-
'list-roles'(input: OrganizationProductListRolesInput)
|
|
1722
|
-
'revoke-access'(input: OrganizationProductRevokeAccessInput)
|
|
1723
|
-
select(input: OrganizationProductSelectInput)
|
|
1724
|
-
'set-access'(input: OrganizationProductSetAccessInput)
|
|
1725
|
-
update(input: OrganizationProductUpdateInput)
|
|
1694
|
+
create: ((input: OrganizationProductCreateInput) => Promise<OrganizationProductCreateOutput>) & Operation;
|
|
1695
|
+
list: ((input: OrganizationProductListInput) => Promise<OrganizationProductListOutput>) & Operation;
|
|
1696
|
+
'list-access': ((input: OrganizationProductListAccessInput) => Promise<OrganizationProductListAccessOutput>) & Operation;
|
|
1697
|
+
'list-members': ((input: OrganizationProductListMembersInput) => Promise<OrganizationProductListMembersOutput>) & Operation;
|
|
1698
|
+
'list-roles': ((input: OrganizationProductListRolesInput) => Promise<OrganizationProductListRolesOutput>) & Operation;
|
|
1699
|
+
'revoke-access': ((input: OrganizationProductRevokeAccessInput) => Promise<OrganizationProductRevokeAccessOutput>) & Operation;
|
|
1700
|
+
select: ((input: OrganizationProductSelectInput) => Promise<OrganizationProductSelectOutput>) & Operation;
|
|
1701
|
+
'set-access': ((input: OrganizationProductSetAccessInput) => Promise<OrganizationProductSetAccessOutput>) & Operation;
|
|
1702
|
+
update: ((input: OrganizationProductUpdateInput) => Promise<OrganizationProductUpdateOutput>) & Operation;
|
|
1726
1703
|
};
|
|
1727
1704
|
'public-keys': {
|
|
1728
|
-
create(input: OrganizationPublicKeysCreateInput)
|
|
1729
|
-
list(input: OrganizationPublicKeysListInput)
|
|
1730
|
-
revoke(input: OrganizationPublicKeysRevokeInput)
|
|
1731
|
-
'update-scope'(input: OrganizationPublicKeysUpdateScopeInput)
|
|
1705
|
+
create: ((input: OrganizationPublicKeysCreateInput) => Promise<OrganizationPublicKeysCreateOutput>) & Operation;
|
|
1706
|
+
list: ((input: OrganizationPublicKeysListInput) => Promise<OrganizationPublicKeysListOutput>) & Operation;
|
|
1707
|
+
revoke: ((input: OrganizationPublicKeysRevokeInput) => Promise<OrganizationPublicKeysRevokeOutput>) & Operation;
|
|
1708
|
+
'update-scope': ((input: OrganizationPublicKeysUpdateScopeInput) => Promise<OrganizationPublicKeysUpdateScopeOutput>) & Operation;
|
|
1732
1709
|
};
|
|
1733
1710
|
'public-routes': {
|
|
1734
|
-
list(input: OrganizationPublicRoutesListInput)
|
|
1711
|
+
list: ((input: OrganizationPublicRoutesListInput) => Promise<OrganizationPublicRoutesListOutput>) & Operation;
|
|
1735
1712
|
};
|
|
1736
1713
|
roles: {
|
|
1737
|
-
create(input: OrganizationRolesCreateInput)
|
|
1738
|
-
delete(input: OrganizationRolesDeleteInput)
|
|
1739
|
-
get(input: OrganizationRolesGetInput)
|
|
1740
|
-
list(input: OrganizationRolesListInput)
|
|
1741
|
-
update(input: OrganizationRolesUpdateInput)
|
|
1714
|
+
create: ((input: OrganizationRolesCreateInput) => Promise<OrganizationRolesCreateOutput>) & Operation;
|
|
1715
|
+
delete: ((input: OrganizationRolesDeleteInput) => Promise<OrganizationRolesDeleteOutput>) & Operation;
|
|
1716
|
+
get: ((input: OrganizationRolesGetInput) => Promise<OrganizationRolesGetOutput>) & Operation;
|
|
1717
|
+
list: ((input: OrganizationRolesListInput) => Promise<OrganizationRolesListOutput>) & Operation;
|
|
1718
|
+
update: ((input: OrganizationRolesUpdateInput) => Promise<OrganizationRolesUpdateOutput>) & Operation;
|
|
1742
1719
|
};
|
|
1743
1720
|
'security-mfa': {
|
|
1744
|
-
enable(input: OrganizationSecurityMfaEnableInput)
|
|
1721
|
+
enable: ((input: OrganizationSecurityMfaEnableInput) => Promise<OrganizationSecurityMfaEnableOutput>) & Operation;
|
|
1745
1722
|
};
|
|
1746
1723
|
'support-thread': {
|
|
1747
|
-
create(input: OrganizationSupportThreadCreateInput)
|
|
1748
|
-
get(input: OrganizationSupportThreadGetInput)
|
|
1749
|
-
reply(input: OrganizationSupportThreadReplyInput)
|
|
1724
|
+
create: ((input: OrganizationSupportThreadCreateInput) => Promise<OrganizationSupportThreadCreateOutput>) & Operation;
|
|
1725
|
+
get: ((input: OrganizationSupportThreadGetInput) => Promise<OrganizationSupportThreadGetOutput>) & Operation;
|
|
1726
|
+
reply: ((input: OrganizationSupportThreadReplyInput) => Promise<OrganizationSupportThreadReplyOutput>) & Operation;
|
|
1750
1727
|
};
|
|
1751
1728
|
'support-threads': {
|
|
1752
|
-
list(input: OrganizationSupportThreadsListInput)
|
|
1753
|
-
};
|
|
1754
|
-
};
|
|
1755
|
-
playground: {
|
|
1756
|
-
analytics: {
|
|
1757
|
-
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
1758
|
-
};
|
|
1759
|
-
billing: {
|
|
1760
|
-
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
1761
|
-
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
1762
|
-
};
|
|
1763
|
-
clickup: {
|
|
1764
|
-
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
1765
|
-
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
1766
|
-
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
1767
|
-
};
|
|
1768
|
-
gdrive: {
|
|
1769
|
-
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
1770
|
-
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
1771
|
-
};
|
|
1772
|
-
googleads: {
|
|
1773
|
-
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
1774
|
-
};
|
|
1775
|
-
lifecycle: {
|
|
1776
|
-
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
1777
|
-
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
1778
|
-
};
|
|
1779
|
-
webhook: {
|
|
1780
|
-
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
1729
|
+
list: ((input: OrganizationSupportThreadsListInput) => Promise<OrganizationSupportThreadsListOutput>) & Operation;
|
|
1781
1730
|
};
|
|
1782
1731
|
};
|
|
1783
1732
|
realtime: {
|
|
1784
1733
|
archive: {
|
|
1785
|
-
export(input: RealtimeArchiveExportInput)
|
|
1786
|
-
get(input: RealtimeArchiveGetInput)
|
|
1734
|
+
export: ((input: RealtimeArchiveExportInput) => Promise<RealtimeArchiveExportOutput>) & Operation;
|
|
1735
|
+
get: ((input: RealtimeArchiveGetInput) => Promise<RealtimeArchiveGetOutput>) & Operation;
|
|
1787
1736
|
};
|
|
1788
1737
|
'archive-export': {
|
|
1789
|
-
status(input: RealtimeArchiveExportStatusInput)
|
|
1738
|
+
status: ((input: RealtimeArchiveExportStatusInput) => Promise<RealtimeArchiveExportStatusOutput>) & Operation;
|
|
1790
1739
|
};
|
|
1791
1740
|
grant: {
|
|
1792
|
-
create(input: RealtimeGrantCreateInput)
|
|
1793
|
-
list(input: RealtimeGrantListInput)
|
|
1794
|
-
revoke(input: RealtimeGrantRevokeInput)
|
|
1741
|
+
create: ((input: RealtimeGrantCreateInput) => Promise<RealtimeGrantCreateOutput>) & Operation;
|
|
1742
|
+
list: ((input: RealtimeGrantListInput) => Promise<RealtimeGrantListOutput>) & Operation;
|
|
1743
|
+
revoke: ((input: RealtimeGrantRevokeInput) => Promise<RealtimeGrantRevokeOutput>) & Operation;
|
|
1795
1744
|
};
|
|
1796
1745
|
history: {
|
|
1797
|
-
get(input: RealtimeHistoryGetInput)
|
|
1746
|
+
get: ((input: RealtimeHistoryGetInput) => Promise<RealtimeHistoryGetOutput>) & Operation;
|
|
1798
1747
|
};
|
|
1799
1748
|
messages: {
|
|
1800
|
-
publish(input: RealtimeMessagesPublishInput)
|
|
1749
|
+
publish: ((input: RealtimeMessagesPublishInput) => Promise<RealtimeMessagesPublishOutput>) & Operation;
|
|
1801
1750
|
};
|
|
1802
1751
|
namespace: {
|
|
1803
|
-
create(input: RealtimeNamespaceCreateInput)
|
|
1804
|
-
delete(input: RealtimeNamespaceDeleteInput)
|
|
1805
|
-
get(input: RealtimeNamespaceGetInput)
|
|
1806
|
-
list(input: RealtimeNamespaceListInput)
|
|
1807
|
-
update(input: RealtimeNamespaceUpdateInput)
|
|
1752
|
+
create: ((input: RealtimeNamespaceCreateInput) => Promise<RealtimeNamespaceCreateOutput>) & Operation;
|
|
1753
|
+
delete: ((input: RealtimeNamespaceDeleteInput) => Promise<RealtimeNamespaceDeleteOutput>) & Operation;
|
|
1754
|
+
get: ((input: RealtimeNamespaceGetInput) => Promise<RealtimeNamespaceGetOutput>) & Operation;
|
|
1755
|
+
list: ((input: RealtimeNamespaceListInput) => Promise<RealtimeNamespaceListOutput>) & Operation;
|
|
1756
|
+
update: ((input: RealtimeNamespaceUpdateInput) => Promise<RealtimeNamespaceUpdateOutput>) & Operation;
|
|
1808
1757
|
};
|
|
1809
1758
|
presence: {
|
|
1810
|
-
enter(input: RealtimePresenceEnterInput)
|
|
1811
|
-
get(input: RealtimePresenceGetInput)
|
|
1812
|
-
leave(input: RealtimePresenceLeaveInput)
|
|
1813
|
-
stats(input: RealtimePresenceStatsInput)
|
|
1814
|
-
update(input: RealtimePresenceUpdateInput)
|
|
1759
|
+
enter: ((input: RealtimePresenceEnterInput) => Promise<RealtimePresenceEnterOutput>) & Operation;
|
|
1760
|
+
get: ((input: RealtimePresenceGetInput) => Promise<RealtimePresenceGetOutput>) & Operation;
|
|
1761
|
+
leave: ((input: RealtimePresenceLeaveInput) => Promise<RealtimePresenceLeaveOutput>) & Operation;
|
|
1762
|
+
stats: ((input: RealtimePresenceStatsInput) => Promise<RealtimePresenceStatsOutput>) & Operation;
|
|
1763
|
+
update: ((input: RealtimePresenceUpdateInput) => Promise<RealtimePresenceUpdateOutput>) & Operation;
|
|
1815
1764
|
};
|
|
1816
1765
|
'public-access': {
|
|
1817
|
-
status(input: RealtimePublicAccessStatusInput)
|
|
1766
|
+
status: ((input: RealtimePublicAccessStatusInput) => Promise<RealtimePublicAccessStatusOutput>) & Operation;
|
|
1818
1767
|
};
|
|
1819
1768
|
status: {
|
|
1820
|
-
get(input: RealtimeStatusGetInput)
|
|
1769
|
+
get: ((input: RealtimeStatusGetInput) => Promise<RealtimeStatusGetOutput>) & Operation;
|
|
1821
1770
|
};
|
|
1822
1771
|
tokens: {
|
|
1823
|
-
create(input: RealtimeTokensCreateInput)
|
|
1772
|
+
create: ((input: RealtimeTokensCreateInput) => Promise<RealtimeTokensCreateOutput>) & Operation;
|
|
1824
1773
|
};
|
|
1825
1774
|
webhook: {
|
|
1826
|
-
create(input: RealtimeWebhookCreateInput)
|
|
1827
|
-
delete(input: RealtimeWebhookDeleteInput)
|
|
1828
|
-
get(input: RealtimeWebhookGetInput)
|
|
1829
|
-
list(input: RealtimeWebhookListInput)
|
|
1830
|
-
update(input: RealtimeWebhookUpdateInput)
|
|
1775
|
+
create: ((input: RealtimeWebhookCreateInput) => Promise<RealtimeWebhookCreateOutput>) & Operation;
|
|
1776
|
+
delete: ((input: RealtimeWebhookDeleteInput) => Promise<RealtimeWebhookDeleteOutput>) & Operation;
|
|
1777
|
+
get: ((input: RealtimeWebhookGetInput) => Promise<RealtimeWebhookGetOutput>) & Operation;
|
|
1778
|
+
list: ((input: RealtimeWebhookListInput) => Promise<RealtimeWebhookListOutput>) & Operation;
|
|
1779
|
+
update: ((input: RealtimeWebhookUpdateInput) => Promise<RealtimeWebhookUpdateOutput>) & Operation;
|
|
1831
1780
|
};
|
|
1832
1781
|
'webhook-deliveries': {
|
|
1833
|
-
list(input: RealtimeWebhookDeliveriesListInput)
|
|
1782
|
+
list: ((input: RealtimeWebhookDeliveriesListInput) => Promise<RealtimeWebhookDeliveriesListOutput>) & Operation;
|
|
1834
1783
|
};
|
|
1835
1784
|
'webhook-secret': {
|
|
1836
|
-
rotate(input: RealtimeWebhookSecretRotateInput)
|
|
1785
|
+
rotate: ((input: RealtimeWebhookSecretRotateInput) => Promise<RealtimeWebhookSecretRotateOutput>) & Operation;
|
|
1837
1786
|
};
|
|
1838
1787
|
};
|
|
1839
1788
|
support: {
|
|
1840
1789
|
agent: {
|
|
1841
|
-
create(input: SupportAgentCreateInput)
|
|
1842
|
-
get(input: SupportAgentGetInput)
|
|
1843
|
-
list(input: SupportAgentListInput)
|
|
1844
|
-
update(input: SupportAgentUpdateInput)
|
|
1790
|
+
create: ((input: SupportAgentCreateInput) => Promise<SupportAgentCreateOutput>) & Operation;
|
|
1791
|
+
get: ((input: SupportAgentGetInput) => Promise<SupportAgentGetOutput>) & Operation;
|
|
1792
|
+
list: ((input: SupportAgentListInput) => Promise<SupportAgentListOutput>) & Operation;
|
|
1793
|
+
update: ((input: SupportAgentUpdateInput) => Promise<SupportAgentUpdateOutput>) & Operation;
|
|
1845
1794
|
};
|
|
1846
1795
|
attachment: {
|
|
1847
|
-
create(input: SupportAttachmentCreateInput)
|
|
1848
|
-
finalize(input: SupportAttachmentFinalizeInput)
|
|
1796
|
+
create: ((input: SupportAttachmentCreateInput) => Promise<SupportAttachmentCreateOutput>) & Operation;
|
|
1797
|
+
finalize: ((input: SupportAttachmentFinalizeInput) => Promise<SupportAttachmentFinalizeOutput>) & Operation;
|
|
1849
1798
|
};
|
|
1850
1799
|
label: {
|
|
1851
|
-
create(input: SupportLabelCreateInput)
|
|
1852
|
-
list(input: SupportLabelListInput)
|
|
1800
|
+
create: ((input: SupportLabelCreateInput) => Promise<SupportLabelCreateOutput>) & Operation;
|
|
1801
|
+
list: ((input: SupportLabelListInput) => Promise<SupportLabelListOutput>) & Operation;
|
|
1853
1802
|
};
|
|
1854
1803
|
message: {
|
|
1855
|
-
create(input: SupportMessageCreateInput)
|
|
1856
|
-
list(input: SupportMessageListInput)
|
|
1804
|
+
create: ((input: SupportMessageCreateInput) => Promise<SupportMessageCreateOutput>) & Operation;
|
|
1805
|
+
list: ((input: SupportMessageListInput) => Promise<SupportMessageListOutput>) & Operation;
|
|
1857
1806
|
};
|
|
1858
1807
|
response: {
|
|
1859
|
-
escalate(input: SupportResponseEscalateInput)
|
|
1860
|
-
get(input: SupportResponseGetInput)
|
|
1861
|
-
list(input: SupportResponseListInput)
|
|
1808
|
+
escalate: ((input: SupportResponseEscalateInput) => Promise<SupportResponseEscalateOutput>) & Operation;
|
|
1809
|
+
get: ((input: SupportResponseGetInput) => Promise<SupportResponseGetOutput>) & Operation;
|
|
1810
|
+
list: ((input: SupportResponseListInput) => Promise<SupportResponseListOutput>) & Operation;
|
|
1862
1811
|
};
|
|
1863
1812
|
rule: {
|
|
1864
|
-
create(input: SupportRuleCreateInput)
|
|
1865
|
-
delete(input: SupportRuleDeleteInput)
|
|
1866
|
-
get(input: SupportRuleGetInput)
|
|
1867
|
-
list(input: SupportRuleListInput)
|
|
1868
|
-
update(input: SupportRuleUpdateInput)
|
|
1813
|
+
create: ((input: SupportRuleCreateInput) => Promise<SupportRuleCreateOutput>) & Operation;
|
|
1814
|
+
delete: ((input: SupportRuleDeleteInput) => Promise<SupportRuleDeleteOutput>) & Operation;
|
|
1815
|
+
get: ((input: SupportRuleGetInput) => Promise<SupportRuleGetOutput>) & Operation;
|
|
1816
|
+
list: ((input: SupportRuleListInput) => Promise<SupportRuleListOutput>) & Operation;
|
|
1817
|
+
update: ((input: SupportRuleUpdateInput) => Promise<SupportRuleUpdateOutput>) & Operation;
|
|
1869
1818
|
};
|
|
1870
1819
|
status: {
|
|
1871
|
-
archive(input: SupportStatusArchiveInput)
|
|
1872
|
-
create(input: SupportStatusCreateInput)
|
|
1873
|
-
list(input: SupportStatusListInput)
|
|
1874
|
-
update(input: SupportStatusUpdateInput)
|
|
1820
|
+
archive: ((input: SupportStatusArchiveInput) => Promise<SupportStatusArchiveOutput>) & Operation;
|
|
1821
|
+
create: ((input: SupportStatusCreateInput) => Promise<SupportStatusCreateOutput>) & Operation;
|
|
1822
|
+
list: ((input: SupportStatusListInput) => Promise<SupportStatusListOutput>) & Operation;
|
|
1823
|
+
update: ((input: SupportStatusUpdateInput) => Promise<SupportStatusUpdateOutput>) & Operation;
|
|
1875
1824
|
};
|
|
1876
1825
|
survey: {
|
|
1877
|
-
archive(input: SupportSurveyArchiveInput)
|
|
1878
|
-
create(input: SupportSurveyCreateInput)
|
|
1879
|
-
get(input: SupportSurveyGetInput)
|
|
1880
|
-
list(input: SupportSurveyListInput)
|
|
1881
|
-
publish(input: SupportSurveyPublishInput)
|
|
1882
|
-
stats(input: SupportSurveyStatsInput)
|
|
1883
|
-
unpublish(input: SupportSurveyUnpublishInput)
|
|
1884
|
-
update(input: SupportSurveyUpdateInput)
|
|
1826
|
+
archive: ((input: SupportSurveyArchiveInput) => Promise<SupportSurveyArchiveOutput>) & Operation;
|
|
1827
|
+
create: ((input: SupportSurveyCreateInput) => Promise<SupportSurveyCreateOutput>) & Operation;
|
|
1828
|
+
get: ((input: SupportSurveyGetInput) => Promise<SupportSurveyGetOutput>) & Operation;
|
|
1829
|
+
list: ((input: SupportSurveyListInput) => Promise<SupportSurveyListOutput>) & Operation;
|
|
1830
|
+
publish: ((input: SupportSurveyPublishInput) => Promise<SupportSurveyPublishOutput>) & Operation;
|
|
1831
|
+
stats: ((input: SupportSurveyStatsInput) => Promise<SupportSurveyStatsOutput>) & Operation;
|
|
1832
|
+
unpublish: ((input: SupportSurveyUnpublishInput) => Promise<SupportSurveyUnpublishOutput>) & Operation;
|
|
1833
|
+
update: ((input: SupportSurveyUpdateInput) => Promise<SupportSurveyUpdateOutput>) & Operation;
|
|
1885
1834
|
};
|
|
1886
1835
|
thread: {
|
|
1887
|
-
assign(input: SupportThreadAssignInput)
|
|
1888
|
-
create(input: SupportThreadCreateInput)
|
|
1889
|
-
get(input: SupportThreadGetInput)
|
|
1890
|
-
list(input: SupportThreadListInput)
|
|
1891
|
-
update(input: SupportThreadUpdateInput)
|
|
1836
|
+
assign: ((input: SupportThreadAssignInput) => Promise<SupportThreadAssignOutput>) & Operation;
|
|
1837
|
+
create: ((input: SupportThreadCreateInput) => Promise<SupportThreadCreateOutput>) & Operation;
|
|
1838
|
+
get: ((input: SupportThreadGetInput) => Promise<SupportThreadGetOutput>) & Operation;
|
|
1839
|
+
list: ((input: SupportThreadListInput) => Promise<SupportThreadListOutput>) & Operation;
|
|
1840
|
+
update: ((input: SupportThreadUpdateInput) => Promise<SupportThreadUpdateOutput>) & Operation;
|
|
1892
1841
|
};
|
|
1893
1842
|
'thread-status': {
|
|
1894
|
-
set(input: SupportThreadStatusSetInput)
|
|
1843
|
+
set: ((input: SupportThreadStatusSetInput) => Promise<SupportThreadStatusSetOutput>) & Operation;
|
|
1895
1844
|
};
|
|
1896
1845
|
webhook: {
|
|
1897
|
-
create(input: SupportWebhookCreateInput)
|
|
1898
|
-
delete(input: SupportWebhookDeleteInput)
|
|
1899
|
-
get(input: SupportWebhookGetInput)
|
|
1900
|
-
list(input: SupportWebhookListInput)
|
|
1901
|
-
redeliver(input: SupportWebhookRedeliverInput)
|
|
1902
|
-
update(input: SupportWebhookUpdateInput)
|
|
1846
|
+
create: ((input: SupportWebhookCreateInput) => Promise<SupportWebhookCreateOutput>) & Operation;
|
|
1847
|
+
delete: ((input: SupportWebhookDeleteInput) => Promise<SupportWebhookDeleteOutput>) & Operation;
|
|
1848
|
+
get: ((input: SupportWebhookGetInput) => Promise<SupportWebhookGetOutput>) & Operation;
|
|
1849
|
+
list: ((input: SupportWebhookListInput) => Promise<SupportWebhookListOutput>) & Operation;
|
|
1850
|
+
redeliver: ((input: SupportWebhookRedeliverInput) => Promise<SupportWebhookRedeliverOutput>) & Operation;
|
|
1851
|
+
update: ((input: SupportWebhookUpdateInput) => Promise<SupportWebhookUpdateOutput>) & Operation;
|
|
1903
1852
|
};
|
|
1904
1853
|
'webhook-deliveries': {
|
|
1905
|
-
list(input: SupportWebhookDeliveriesListInput)
|
|
1854
|
+
list: ((input: SupportWebhookDeliveriesListInput) => Promise<SupportWebhookDeliveriesListOutput>) & Operation;
|
|
1906
1855
|
};
|
|
1907
1856
|
'webhook-rotate': {
|
|
1908
|
-
secret(input: SupportWebhookRotateSecretInput)
|
|
1857
|
+
secret: ((input: SupportWebhookRotateSecretInput) => Promise<SupportWebhookRotateSecretOutput>) & Operation;
|
|
1909
1858
|
};
|
|
1910
1859
|
};
|
|
1911
1860
|
tracking: {
|
|
1912
1861
|
domains: {
|
|
1913
|
-
create(input: TrackingDomainsCreateInput)
|
|
1914
|
-
delete(input: TrackingDomainsDeleteInput)
|
|
1915
|
-
get(input: TrackingDomainsGetInput)
|
|
1916
|
-
list(input: TrackingDomainsListInput)
|
|
1917
|
-
verify(input: TrackingDomainsVerifyInput)
|
|
1862
|
+
create: ((input: TrackingDomainsCreateInput) => Promise<TrackingDomainsCreateOutput>) & Operation;
|
|
1863
|
+
delete: ((input: TrackingDomainsDeleteInput) => Promise<TrackingDomainsDeleteOutput>) & Operation;
|
|
1864
|
+
get: ((input: TrackingDomainsGetInput) => Promise<TrackingDomainsGetOutput>) & Operation;
|
|
1865
|
+
list: ((input: TrackingDomainsListInput) => Promise<TrackingDomainsListOutput>) & Operation;
|
|
1866
|
+
verify: ((input: TrackingDomainsVerifyInput) => Promise<TrackingDomainsVerifyOutput>) & Operation;
|
|
1918
1867
|
};
|
|
1919
1868
|
'event-names': {
|
|
1920
|
-
archive(input: TrackingEventNamesArchiveInput)
|
|
1921
|
-
list(input: TrackingEventNamesListInput)
|
|
1922
|
-
unarchive(input: TrackingEventNamesUnarchiveInput)
|
|
1869
|
+
archive: ((input: TrackingEventNamesArchiveInput) => Promise<TrackingEventNamesArchiveOutput>) & Operation;
|
|
1870
|
+
list: ((input: TrackingEventNamesListInput) => Promise<TrackingEventNamesListOutput>) & Operation;
|
|
1871
|
+
unarchive: ((input: TrackingEventNamesUnarchiveInput) => Promise<TrackingEventNamesUnarchiveOutput>) & Operation;
|
|
1923
1872
|
};
|
|
1924
1873
|
'googleads-connection': {
|
|
1925
|
-
status(input: TrackingGoogleadsConnectionStatusInput)
|
|
1874
|
+
status: ((input: TrackingGoogleadsConnectionStatusInput) => Promise<TrackingGoogleadsConnectionStatusOutput>) & Operation;
|
|
1926
1875
|
};
|
|
1927
1876
|
'googleads-conversion': {
|
|
1928
|
-
actions(input: TrackingGoogleadsConversionActionsInput)
|
|
1877
|
+
actions: ((input: TrackingGoogleadsConversionActionsInput) => Promise<TrackingGoogleadsConversionActionsOutput>) & Operation;
|
|
1929
1878
|
};
|
|
1930
1879
|
'googleads-feedback': {
|
|
1931
|
-
run(input: TrackingGoogleadsFeedbackRunInput)
|
|
1932
|
-
status(input: TrackingGoogleadsFeedbackStatusInput)
|
|
1933
|
-
uploads(input: TrackingGoogleadsFeedbackUploadsInput)
|
|
1880
|
+
run: ((input: TrackingGoogleadsFeedbackRunInput) => Promise<TrackingGoogleadsFeedbackRunOutput>) & Operation;
|
|
1881
|
+
status: ((input: TrackingGoogleadsFeedbackStatusInput) => Promise<TrackingGoogleadsFeedbackStatusOutput>) & Operation;
|
|
1882
|
+
uploads: ((input: TrackingGoogleadsFeedbackUploadsInput) => Promise<TrackingGoogleadsFeedbackUploadsOutput>) & Operation;
|
|
1934
1883
|
};
|
|
1935
1884
|
'googleads-feedback-config': {
|
|
1936
|
-
get(input: TrackingGoogleadsFeedbackConfigGetInput)
|
|
1937
|
-
set(input: TrackingGoogleadsFeedbackConfigSetInput)
|
|
1885
|
+
get: ((input: TrackingGoogleadsFeedbackConfigGetInput) => Promise<TrackingGoogleadsFeedbackConfigGetOutput>) & Operation;
|
|
1886
|
+
set: ((input: TrackingGoogleadsFeedbackConfigSetInput) => Promise<TrackingGoogleadsFeedbackConfigSetOutput>) & Operation;
|
|
1938
1887
|
};
|
|
1939
1888
|
'googleads-roas': {
|
|
1940
|
-
report(input: TrackingGoogleadsRoasReportInput)
|
|
1889
|
+
report: ((input: TrackingGoogleadsRoasReportInput) => Promise<TrackingGoogleadsRoasReportOutput>) & Operation;
|
|
1941
1890
|
};
|
|
1942
1891
|
'googleads-sync': {
|
|
1943
|
-
now(input: TrackingGoogleadsSyncNowInput)
|
|
1892
|
+
now: ((input: TrackingGoogleadsSyncNowInput) => Promise<TrackingGoogleadsSyncNowOutput>) & Operation;
|
|
1944
1893
|
};
|
|
1945
1894
|
'googleads-tracking': {
|
|
1946
|
-
health(input: TrackingGoogleadsTrackingHealthInput)
|
|
1895
|
+
health: ((input: TrackingGoogleadsTrackingHealthInput) => Promise<TrackingGoogleadsTrackingHealthOutput>) & Operation;
|
|
1947
1896
|
};
|
|
1948
1897
|
'googleads-us-vs': {
|
|
1949
|
-
platform(input: TrackingGoogleadsUsVsPlatformInput)
|
|
1898
|
+
platform: ((input: TrackingGoogleadsUsVsPlatformInput) => Promise<TrackingGoogleadsUsVsPlatformOutput>) & Operation;
|
|
1950
1899
|
};
|
|
1951
1900
|
identity: {
|
|
1952
|
-
health(input: TrackingIdentityHealthInput)
|
|
1901
|
+
health: ((input: TrackingIdentityHealthInput) => Promise<TrackingIdentityHealthOutput>) & Operation;
|
|
1953
1902
|
};
|
|
1954
1903
|
'install-domains': {
|
|
1955
|
-
create(input: TrackingInstallDomainsCreateInput)
|
|
1956
|
-
delete(input: TrackingInstallDomainsDeleteInput)
|
|
1957
|
-
list(input: TrackingInstallDomainsListInput)
|
|
1904
|
+
create: ((input: TrackingInstallDomainsCreateInput) => Promise<TrackingInstallDomainsCreateOutput>) & Operation;
|
|
1905
|
+
delete: ((input: TrackingInstallDomainsDeleteInput) => Promise<TrackingInstallDomainsDeleteOutput>) & Operation;
|
|
1906
|
+
list: ((input: TrackingInstallDomainsListInput) => Promise<TrackingInstallDomainsListOutput>) & Operation;
|
|
1958
1907
|
};
|
|
1959
1908
|
'link-domains': {
|
|
1960
|
-
create(input: TrackingLinkDomainsCreateInput)
|
|
1961
|
-
delete(input: TrackingLinkDomainsDeleteInput)
|
|
1962
|
-
list(input: TrackingLinkDomainsListInput)
|
|
1909
|
+
create: ((input: TrackingLinkDomainsCreateInput) => Promise<TrackingLinkDomainsCreateOutput>) & Operation;
|
|
1910
|
+
delete: ((input: TrackingLinkDomainsDeleteInput) => Promise<TrackingLinkDomainsDeleteOutput>) & Operation;
|
|
1911
|
+
list: ((input: TrackingLinkDomainsListInput) => Promise<TrackingLinkDomainsListOutput>) & Operation;
|
|
1963
1912
|
};
|
|
1964
1913
|
'live-events': {
|
|
1965
|
-
list(input: TrackingLiveEventsListInput)
|
|
1914
|
+
list: ((input: TrackingLiveEventsListInput) => Promise<TrackingLiveEventsListOutput>) & Operation;
|
|
1966
1915
|
};
|
|
1967
1916
|
profiles: {
|
|
1968
|
-
delete(input: TrackingProfilesDeleteInput)
|
|
1969
|
-
export(input: TrackingProfilesExportInput)
|
|
1970
|
-
get(input: TrackingProfilesGetInput)
|
|
1971
|
-
list(input: TrackingProfilesListInput)
|
|
1917
|
+
delete: ((input: TrackingProfilesDeleteInput) => Promise<TrackingProfilesDeleteOutput>) & Operation;
|
|
1918
|
+
export: ((input: TrackingProfilesExportInput) => Promise<TrackingProfilesExportOutput>) & Operation;
|
|
1919
|
+
get: ((input: TrackingProfilesGetInput) => Promise<TrackingProfilesGetOutput>) & Operation;
|
|
1920
|
+
list: ((input: TrackingProfilesListInput) => Promise<TrackingProfilesListOutput>) & Operation;
|
|
1972
1921
|
};
|
|
1973
1922
|
'reports-attributed': {
|
|
1974
|
-
journey(input: TrackingReportsAttributedJourneyInput)
|
|
1923
|
+
journey: ((input: TrackingReportsAttributedJourneyInput) => Promise<TrackingReportsAttributedJourneyOutput>) & Operation;
|
|
1975
1924
|
};
|
|
1976
1925
|
'reports-event': {
|
|
1977
|
-
volume(input: TrackingReportsEventVolumeInput)
|
|
1926
|
+
volume: ((input: TrackingReportsEventVolumeInput) => Promise<TrackingReportsEventVolumeOutput>) & Operation;
|
|
1978
1927
|
};
|
|
1979
1928
|
'reports-revenue-by': {
|
|
1980
|
-
source(input: TrackingReportsRevenueBySourceInput)
|
|
1929
|
+
source: ((input: TrackingReportsRevenueBySourceInput) => Promise<TrackingReportsRevenueBySourceOutput>) & Operation;
|
|
1981
1930
|
};
|
|
1982
1931
|
'reports-source': {
|
|
1983
|
-
people(input: TrackingReportsSourcePeopleInput)
|
|
1932
|
+
people: ((input: TrackingReportsSourcePeopleInput) => Promise<TrackingReportsSourcePeopleOutput>) & Operation;
|
|
1984
1933
|
};
|
|
1985
1934
|
snippets: {
|
|
1986
|
-
get(input: TrackingSnippetsGetInput)
|
|
1935
|
+
get: ((input: TrackingSnippetsGetInput) => Promise<TrackingSnippetsGetOutput>) & Operation;
|
|
1987
1936
|
};
|
|
1988
1937
|
};
|
|
1989
1938
|
users: {
|
|
1990
1939
|
apikeys: {
|
|
1991
|
-
create(input: UsersApikeysCreateInput)
|
|
1992
|
-
list(input: UsersApikeysListInput)
|
|
1993
|
-
revoke(input: UsersApikeysRevokeInput)
|
|
1940
|
+
create: ((input: UsersApikeysCreateInput) => Promise<UsersApikeysCreateOutput>) & Operation;
|
|
1941
|
+
list: ((input: UsersApikeysListInput) => Promise<UsersApikeysListOutput>) & Operation;
|
|
1942
|
+
revoke: ((input: UsersApikeysRevokeInput) => Promise<UsersApikeysRevokeOutput>) & Operation;
|
|
1994
1943
|
};
|
|
1995
1944
|
audit: {
|
|
1996
|
-
list(input: UsersAuditListInput)
|
|
1945
|
+
list: ((input: UsersAuditListInput) => Promise<UsersAuditListOutput>) & Operation;
|
|
1997
1946
|
};
|
|
1998
1947
|
config: {
|
|
1999
|
-
get(input: UsersConfigGetInput)
|
|
2000
|
-
upsert(input: UsersConfigUpsertInput)
|
|
1948
|
+
get: ((input: UsersConfigGetInput) => Promise<UsersConfigGetOutput>) & Operation;
|
|
1949
|
+
upsert: ((input: UsersConfigUpsertInput) => Promise<UsersConfigUpsertOutput>) & Operation;
|
|
2001
1950
|
};
|
|
2002
1951
|
factors: {
|
|
2003
|
-
list(input: UsersFactorsListInput)
|
|
2004
|
-
reset(input: UsersFactorsResetInput)
|
|
1952
|
+
list: ((input: UsersFactorsListInput) => Promise<UsersFactorsListOutput>) & Operation;
|
|
1953
|
+
reset: ((input: UsersFactorsResetInput) => Promise<UsersFactorsResetOutput>) & Operation;
|
|
2005
1954
|
};
|
|
2006
1955
|
keys: {
|
|
2007
|
-
list(input: UsersKeysListInput)
|
|
2008
|
-
revoke(input: UsersKeysRevokeInput)
|
|
2009
|
-
rotate(input: UsersKeysRotateInput)
|
|
1956
|
+
list: ((input: UsersKeysListInput) => Promise<UsersKeysListOutput>) & Operation;
|
|
1957
|
+
revoke: ((input: UsersKeysRevokeInput) => Promise<UsersKeysRevokeOutput>) & Operation;
|
|
1958
|
+
rotate: ((input: UsersKeysRotateInput) => Promise<UsersKeysRotateOutput>) & Operation;
|
|
2010
1959
|
};
|
|
2011
1960
|
'ops-retention': {
|
|
2012
|
-
get(input: UsersOpsRetentionGetInput)
|
|
1961
|
+
get: ((input: UsersOpsRetentionGetInput) => Promise<UsersOpsRetentionGetOutput>) & Operation;
|
|
2013
1962
|
};
|
|
2014
1963
|
'ops-slo': {
|
|
2015
|
-
get(input: UsersOpsSloGetInput)
|
|
1964
|
+
get: ((input: UsersOpsSloGetInput) => Promise<UsersOpsSloGetOutput>) & Operation;
|
|
2016
1965
|
};
|
|
2017
1966
|
passkeys: {
|
|
2018
|
-
list(input: UsersPasskeysListInput)
|
|
2019
|
-
revoke(input: UsersPasskeysRevokeInput)
|
|
1967
|
+
list: ((input: UsersPasskeysListInput) => Promise<UsersPasskeysListOutput>) & Operation;
|
|
1968
|
+
revoke: ((input: UsersPasskeysRevokeInput) => Promise<UsersPasskeysRevokeOutput>) & Operation;
|
|
2020
1969
|
};
|
|
2021
1970
|
sessions: {
|
|
2022
|
-
get(input: UsersSessionsGetInput)
|
|
2023
|
-
impersonate(input: UsersSessionsImpersonateInput)
|
|
2024
|
-
list(input: UsersSessionsListInput)
|
|
2025
|
-
revoke(input: UsersSessionsRevokeInput)
|
|
1971
|
+
get: ((input: UsersSessionsGetInput) => Promise<UsersSessionsGetOutput>) & Operation;
|
|
1972
|
+
impersonate: ((input: UsersSessionsImpersonateInput) => Promise<UsersSessionsImpersonateOutput>) & Operation;
|
|
1973
|
+
list: ((input: UsersSessionsListInput) => Promise<UsersSessionsListOutput>) & Operation;
|
|
1974
|
+
revoke: ((input: UsersSessionsRevokeInput) => Promise<UsersSessionsRevokeOutput>) & Operation;
|
|
2026
1975
|
};
|
|
2027
1976
|
stats: {
|
|
2028
|
-
get(input: UsersStatsGetInput)
|
|
1977
|
+
get: ((input: UsersStatsGetInput) => Promise<UsersStatsGetOutput>) & Operation;
|
|
2029
1978
|
};
|
|
2030
1979
|
users: {
|
|
2031
|
-
ban(input: UsersUsersBanInput)
|
|
2032
|
-
create(input: UsersUsersCreateInput)
|
|
2033
|
-
delete(input: UsersUsersDeleteInput)
|
|
2034
|
-
erase(input: UsersUsersEraseInput)
|
|
2035
|
-
export(input: UsersUsersExportInput)
|
|
2036
|
-
get(input: UsersUsersGetInput)
|
|
2037
|
-
import(input: UsersUsersImportInput)
|
|
2038
|
-
invite(input: UsersUsersInviteInput)
|
|
2039
|
-
list(input: UsersUsersListInput)
|
|
2040
|
-
unban(input: UsersUsersUnbanInput)
|
|
2041
|
-
update(input: UsersUsersUpdateInput)
|
|
1980
|
+
ban: ((input: UsersUsersBanInput) => Promise<UsersUsersBanOutput>) & Operation;
|
|
1981
|
+
create: ((input: UsersUsersCreateInput) => Promise<UsersUsersCreateOutput>) & Operation;
|
|
1982
|
+
delete: ((input: UsersUsersDeleteInput) => Promise<UsersUsersDeleteOutput>) & Operation;
|
|
1983
|
+
erase: ((input: UsersUsersEraseInput) => Promise<UsersUsersEraseOutput>) & Operation;
|
|
1984
|
+
export: ((input: UsersUsersExportInput) => Promise<UsersUsersExportOutput>) & Operation;
|
|
1985
|
+
get: ((input: UsersUsersGetInput) => Promise<UsersUsersGetOutput>) & Operation;
|
|
1986
|
+
import: ((input: UsersUsersImportInput) => Promise<UsersUsersImportOutput>) & Operation;
|
|
1987
|
+
invite: ((input: UsersUsersInviteInput) => Promise<UsersUsersInviteOutput>) & Operation;
|
|
1988
|
+
list: ((input: UsersUsersListInput) => Promise<UsersUsersListOutput>) & Operation;
|
|
1989
|
+
unban: ((input: UsersUsersUnbanInput) => Promise<UsersUsersUnbanOutput>) & Operation;
|
|
1990
|
+
update: ((input: UsersUsersUpdateInput) => Promise<UsersUsersUpdateOutput>) & Operation;
|
|
2042
1991
|
};
|
|
2043
1992
|
'users-set-primary': {
|
|
2044
|
-
identifier(input: UsersUsersSetPrimaryIdentifierInput)
|
|
1993
|
+
identifier: ((input: UsersUsersSetPrimaryIdentifierInput) => Promise<UsersUsersSetPrimaryIdentifierOutput>) & Operation;
|
|
2045
1994
|
};
|
|
2046
1995
|
waitlist: {
|
|
2047
|
-
erase(input: UsersWaitlistEraseInput)
|
|
2048
|
-
funnel(input: UsersWaitlistFunnelInput)
|
|
2049
|
-
import(input: UsersWaitlistImportInput)
|
|
2050
|
-
invite(input: UsersWaitlistInviteInput)
|
|
2051
|
-
list(input: UsersWaitlistListInput)
|
|
1996
|
+
erase: ((input: UsersWaitlistEraseInput) => Promise<UsersWaitlistEraseOutput>) & Operation;
|
|
1997
|
+
funnel: ((input: UsersWaitlistFunnelInput) => Promise<UsersWaitlistFunnelOutput>) & Operation;
|
|
1998
|
+
import: ((input: UsersWaitlistImportInput) => Promise<UsersWaitlistImportOutput>) & Operation;
|
|
1999
|
+
invite: ((input: UsersWaitlistInviteInput) => Promise<UsersWaitlistInviteOutput>) & Operation;
|
|
2000
|
+
list: ((input: UsersWaitlistListInput) => Promise<UsersWaitlistListOutput>) & Operation;
|
|
2052
2001
|
};
|
|
2053
2002
|
webhooks: {
|
|
2054
|
-
create(input: UsersWebhooksCreateInput)
|
|
2055
|
-
delete(input: UsersWebhooksDeleteInput)
|
|
2056
|
-
get(input: UsersWebhooksGetInput)
|
|
2057
|
-
list(input: UsersWebhooksListInput)
|
|
2058
|
-
update(input: UsersWebhooksUpdateInput)
|
|
2003
|
+
create: ((input: UsersWebhooksCreateInput) => Promise<UsersWebhooksCreateOutput>) & Operation;
|
|
2004
|
+
delete: ((input: UsersWebhooksDeleteInput) => Promise<UsersWebhooksDeleteOutput>) & Operation;
|
|
2005
|
+
get: ((input: UsersWebhooksGetInput) => Promise<UsersWebhooksGetOutput>) & Operation;
|
|
2006
|
+
list: ((input: UsersWebhooksListInput) => Promise<UsersWebhooksListOutput>) & Operation;
|
|
2007
|
+
update: ((input: UsersWebhooksUpdateInput) => Promise<UsersWebhooksUpdateOutput>) & Operation;
|
|
2059
2008
|
};
|
|
2060
2009
|
'webhooks-deliveries': {
|
|
2061
|
-
list(input: UsersWebhooksDeliveriesListInput)
|
|
2010
|
+
list: ((input: UsersWebhooksDeliveriesListInput) => Promise<UsersWebhooksDeliveriesListOutput>) & Operation;
|
|
2062
2011
|
};
|
|
2063
2012
|
'webhooks-rotate': {
|
|
2064
|
-
secret(input: UsersWebhooksRotateSecretInput)
|
|
2013
|
+
secret: ((input: UsersWebhooksRotateSecretInput) => Promise<UsersWebhooksRotateSecretOutput>) & Operation;
|
|
2065
2014
|
};
|
|
2066
2015
|
};
|
|
2067
2016
|
waitlist: {
|
|
2068
2017
|
config: {
|
|
2069
|
-
get(input: WaitlistConfigGetInput)
|
|
2070
|
-
upsert(input: WaitlistConfigUpsertInput)
|
|
2018
|
+
get: ((input: WaitlistConfigGetInput) => Promise<WaitlistConfigGetOutput>) & Operation;
|
|
2019
|
+
upsert: ((input: WaitlistConfigUpsertInput) => Promise<WaitlistConfigUpsertOutput>) & Operation;
|
|
2071
2020
|
};
|
|
2072
2021
|
embed: {
|
|
2073
|
-
get(input: WaitlistEmbedGetInput)
|
|
2022
|
+
get: ((input: WaitlistEmbedGetInput) => Promise<WaitlistEmbedGetOutput>) & Operation;
|
|
2074
2023
|
};
|
|
2075
2024
|
invites: {
|
|
2076
|
-
send(input: WaitlistInvitesSendInput)
|
|
2025
|
+
send: ((input: WaitlistInvitesSendInput) => Promise<WaitlistInvitesSendOutput>) & Operation;
|
|
2077
2026
|
};
|
|
2078
2027
|
signups: {
|
|
2079
|
-
erase(input: WaitlistSignupsEraseInput)
|
|
2080
|
-
funnel(input: WaitlistSignupsFunnelInput)
|
|
2081
|
-
list(input: WaitlistSignupsListInput)
|
|
2028
|
+
erase: ((input: WaitlistSignupsEraseInput) => Promise<WaitlistSignupsEraseOutput>) & Operation;
|
|
2029
|
+
funnel: ((input: WaitlistSignupsFunnelInput) => Promise<WaitlistSignupsFunnelOutput>) & Operation;
|
|
2030
|
+
list: ((input: WaitlistSignupsListInput) => Promise<WaitlistSignupsListOutput>) & Operation;
|
|
2082
2031
|
};
|
|
2083
2032
|
};
|
|
2084
2033
|
}
|